Enhance Cursor instance management

Improve the handling of multiple Cursor instances by implementing better workspace detection and reuse of existing windows.
This commit is contained in:
Dalton
2025-03-20 18:40:05 +08:00
parent 2c0153a9ba
commit cac0c13658
2 changed files with 137 additions and 3 deletions

View File

@@ -8,6 +8,13 @@ using System.Diagnostics;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.ComponentModel;
using Debug = UnityEngine.Debug;
using System.IO;
using SimpleJSON;
using System.Collections.Generic;
using System.Linq;
namespace Microsoft.Unity.VisualStudio.Editor
{
@@ -108,5 +115,85 @@ namespace Microsoft.Unity.VisualStudio.Editor
sb?.Append(data);
}
public static string[] GetProcessWorkspaces(Process process)
{
if (process == null)
return null;
try
{
var workspaces = new List<string>();
var userProfile = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
var cursorStoragePath = Path.Combine(userProfile, "AppData", "Roaming", "cursor", "User", "workspaceStorage");
if (Directory.Exists(cursorStoragePath))
{
foreach (var workspaceDir in Directory.GetDirectories(cursorStoragePath))
{
try
{
var workspaceStatePath = Path.Combine(workspaceDir, "workspace.json");
if (File.Exists(workspaceStatePath))
{
var content = File.ReadAllText(workspaceStatePath);
if (!string.IsNullOrEmpty(content))
{
var workspace = JSONNode.Parse(content);
if (workspace != null)
{
var folder = workspace["folder"];
if (folder != null && !string.IsNullOrEmpty(folder.Value))
{
var workspacePath = folder.Value;
if (workspacePath.StartsWith("file:///"))
{
workspacePath = Uri.UnescapeDataString(workspacePath.Substring(8));
workspaces.Add(workspacePath);
}
}
}
}
}
var windowStatePath = Path.Combine(workspaceDir, "window.json");
if (File.Exists(windowStatePath))
{
var content = File.ReadAllText(windowStatePath);
if (!string.IsNullOrEmpty(content))
{
var windowState = JSONNode.Parse(content);
if (windowState != null)
{
var workspace = windowState["workspace"];
if (workspace != null && !string.IsNullOrEmpty(workspace.Value))
{
var workspacePath = workspace.Value;
if (workspacePath.StartsWith("file:///"))
{
workspacePath = Uri.UnescapeDataString(workspacePath.Substring(8));
workspaces.Add(workspacePath);
}
}
}
}
}
}
catch (Exception ex)
{
Debug.LogWarning($"[Cursor] Error reading workspace state file: {ex.Message}");
continue;
}
}
}
return workspaces.Distinct().ToArray();
}
catch (Exception ex)
{
Debug.LogError($"[Cursor] Error getting workspace directory: {ex.Message}");
return null;
}
}
}
}