RiderScriptEditor.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. using System;
  2. using System.Diagnostics;
  3. using System.IO;
  4. using System.Linq;
  5. using Packages.Rider.Editor.Util;
  6. using Unity.CodeEditor;
  7. using UnityEditor;
  8. using UnityEngine;
  9. using Debug = UnityEngine.Debug;
  10. namespace Packages.Rider.Editor
  11. {
  12. [InitializeOnLoad]
  13. public class RiderScriptEditor : IExternalCodeEditor
  14. {
  15. IDiscovery m_Discoverability;
  16. IGenerator m_ProjectGeneration;
  17. RiderInitializer m_Initiliazer = new RiderInitializer();
  18. static RiderScriptEditor()
  19. {
  20. try
  21. {
  22. var projectGeneration = new ProjectGeneration();
  23. var editor = new RiderScriptEditor(new Discovery(), projectGeneration);
  24. CodeEditor.Register(editor);
  25. var path = GetEditorRealPath(CodeEditor.CurrentEditorInstallation);
  26. if (IsRiderInstallation(path))
  27. {
  28. if (!RiderScriptEditorData.instance.InitializedOnce)
  29. {
  30. var installations = editor.Installations;
  31. // is toolbox and outdated - update
  32. if (installations.Any() && RiderPathLocator.IsToolbox(path) && installations.All(a => a.Path != path))
  33. {
  34. var toolboxInstallations = installations.Where(a => a.Name.Contains("(JetBrains Toolbox)")).ToArray();
  35. if (toolboxInstallations.Any())
  36. {
  37. var newEditor = toolboxInstallations.Last().Path;
  38. CodeEditor.SetExternalScriptEditor(newEditor);
  39. path = newEditor;
  40. }
  41. else
  42. {
  43. var newEditor = installations.Last().Path;
  44. CodeEditor.SetExternalScriptEditor(newEditor);
  45. path = newEditor;
  46. }
  47. }
  48. // exists, is non toolbox and outdated - notify
  49. if (installations.Any() && FileSystemUtil.EditorPathExists(path) && installations.All(a => a.Path != path))
  50. {
  51. var newEditorName = installations.Last().Name;
  52. Debug.LogWarning($"Consider updating External Editor in Unity to Rider {newEditorName}.");
  53. }
  54. ShowWarningOnUnexpectedScriptEditor(path);
  55. RiderScriptEditorData.instance.InitializedOnce = true;
  56. }
  57. if (!FileSystemUtil.EditorPathExists(path)) // previously used rider was removed
  58. {
  59. var installations = editor.Installations;
  60. if (installations.Any())
  61. {
  62. var newEditor = installations.Last().Path;
  63. CodeEditor.SetExternalScriptEditor(newEditor);
  64. path = newEditor;
  65. }
  66. }
  67. RiderScriptEditorData.instance.Init();
  68. editor.CreateSolutionIfDoesntExist();
  69. if (RiderScriptEditorData.instance.shouldLoadEditorPlugin)
  70. {
  71. editor.m_Initiliazer.Initialize(path);
  72. }
  73. InitProjectFilesWatcher();
  74. }
  75. }
  76. catch (Exception e)
  77. {
  78. Debug.LogException(e);
  79. }
  80. }
  81. private static void ShowWarningOnUnexpectedScriptEditor(string path)
  82. {
  83. // Show warning, when Unity was started from Rider, but external editor is different https://github.com/JetBrains/resharper-unity/issues/1127
  84. var args = Environment.GetCommandLineArgs();
  85. var commandlineParser = new CommandLineParser(args);
  86. if (commandlineParser.Options.ContainsKey("-riderPath"))
  87. {
  88. var originRiderPath = commandlineParser.Options["-riderPath"];
  89. var originRealPath = GetEditorRealPath(originRiderPath);
  90. var originVersion = RiderPathLocator.GetBuildNumber(originRealPath);
  91. var version = RiderPathLocator.GetBuildNumber(path);
  92. if (originVersion != string.Empty && originVersion != version)
  93. {
  94. Debug.LogWarning("Unity was started by a version of Rider that is not the current default external editor. Advanced integration features cannot be enabled.");
  95. Debug.Log($"Unity was started by Rider {originVersion}, but external editor is set to: {path}");
  96. }
  97. }
  98. }
  99. private static void InitProjectFilesWatcher()
  100. {
  101. var watcher = new FileSystemWatcher();
  102. watcher.Path = Directory.GetCurrentDirectory();
  103. watcher.NotifyFilter = NotifyFilters.LastWrite; //Watch for changes in LastWrite times
  104. watcher.Filter = "*.*";
  105. // Add event handlers.
  106. watcher.Changed += OnChanged;
  107. watcher.Created += OnChanged;
  108. watcher.EnableRaisingEvents = true; // Begin watching.
  109. AppDomain.CurrentDomain.DomainUnload += (EventHandler) ((_, __) =>
  110. {
  111. watcher.Dispose();
  112. });
  113. }
  114. private static void OnChanged(object sender, FileSystemEventArgs e)
  115. {
  116. var extension = Path.GetExtension(e.FullPath);
  117. if (extension == ".sln" || extension == ".csproj")
  118. RiderScriptEditorData.instance.HasChanges = true;
  119. }
  120. internal static string GetEditorRealPath(string path)
  121. {
  122. if (string.IsNullOrEmpty(path))
  123. {
  124. return path;
  125. }
  126. if (!FileSystemUtil.EditorPathExists(path))
  127. return path;
  128. if (SystemInfo.operatingSystemFamily != OperatingSystemFamily.Windows)
  129. {
  130. var realPath = FileSystemUtil.GetFinalPathName(path);
  131. // case of snap installation
  132. if (SystemInfo.operatingSystemFamily == OperatingSystemFamily.Linux)
  133. {
  134. if (new FileInfo(path).Name.ToLowerInvariant() == "rider" &&
  135. new FileInfo(realPath).Name.ToLowerInvariant() == "snap")
  136. {
  137. var snapInstallPath = "/snap/rider/current/bin/rider.sh";
  138. if (new FileInfo(snapInstallPath).Exists)
  139. return snapInstallPath;
  140. }
  141. }
  142. // in case of symlink
  143. return realPath;
  144. }
  145. return path;
  146. }
  147. const string unity_generate_all = "unity_generate_all_csproj";
  148. public RiderScriptEditor(IDiscovery discovery, IGenerator projectGeneration)
  149. {
  150. m_Discoverability = discovery;
  151. m_ProjectGeneration = projectGeneration;
  152. }
  153. private static string[] defaultExtensions
  154. {
  155. get
  156. {
  157. var customExtensions = new[] {"json", "asmdef", "log", "xaml"};
  158. return EditorSettings.projectGenerationBuiltinExtensions.Concat(EditorSettings.projectGenerationUserExtensions)
  159. .Concat(customExtensions).Distinct().ToArray();
  160. }
  161. }
  162. private static string[] HandledExtensions
  163. {
  164. get
  165. {
  166. return HandledExtensionsString.Split(new[] {';'}, StringSplitOptions.RemoveEmptyEntries).Select(s => s.TrimStart('.', '*'))
  167. .ToArray();
  168. }
  169. }
  170. private static string HandledExtensionsString
  171. {
  172. get { return EditorPrefs.GetString("Rider_UserExtensions", string.Join(";", defaultExtensions));}
  173. set { EditorPrefs.SetString("Rider_UserExtensions", value); }
  174. }
  175. private static bool SupportsExtension(string path)
  176. {
  177. var extension = Path.GetExtension(path);
  178. if (string.IsNullOrEmpty(extension))
  179. return false;
  180. return HandledExtensions.Contains(extension.TrimStart('.'));
  181. }
  182. public void OnGUI()
  183. {
  184. var prevGenerate = EditorPrefs.GetBool(unity_generate_all, false);
  185. var generateAll = EditorGUILayout.Toggle("Generate all .csproj files.", prevGenerate);
  186. if (generateAll != prevGenerate)
  187. {
  188. EditorPrefs.SetBool(unity_generate_all, generateAll);
  189. }
  190. m_ProjectGeneration.GenerateAll(generateAll);
  191. if (RiderScriptEditorData.instance.shouldLoadEditorPlugin)
  192. {
  193. HandledExtensionsString = EditorGUILayout.TextField(new GUIContent("Extensions handled: "), HandledExtensionsString);
  194. }
  195. }
  196. public void SyncIfNeeded(string[] addedFiles, string[] deletedFiles, string[] movedFiles, string[] movedFromFiles,
  197. string[] importedFiles)
  198. {
  199. m_ProjectGeneration.SyncIfNeeded(addedFiles.Union(deletedFiles).Union(movedFiles).Union(movedFromFiles),
  200. importedFiles);
  201. }
  202. public void SyncAll()
  203. {
  204. AssetDatabase.Refresh();
  205. if (RiderScriptEditorData.instance.HasChanges)
  206. {
  207. m_ProjectGeneration.Sync();
  208. RiderScriptEditorData.instance.HasChanges = false;
  209. }
  210. }
  211. public void Initialize(string editorInstallationPath) // is called each time ExternalEditor is changed
  212. {
  213. RiderScriptEditorData.instance.Invalidate(editorInstallationPath);
  214. m_ProjectGeneration.Sync(); // regenerate csproj and sln for new editor
  215. }
  216. public bool OpenProject(string path, int line, int column)
  217. {
  218. if (path != "" && !SupportsExtension(path)) // Assets - Open C# Project passes empty path here
  219. {
  220. return false;
  221. }
  222. if (path == "" && SystemInfo.operatingSystemFamily == OperatingSystemFamily.MacOSX)
  223. {
  224. // there is a bug in DllImplementation - use package implementation here instead https://github.cds.internal.unity3d.com/unity/com.unity.ide.rider/issues/21
  225. return OpenOSXApp(path, line, column);
  226. }
  227. if (!IsUnityScript(path))
  228. {
  229. var fastOpenResult = EditorPluginInterop.OpenFileDllImplementation(path, line, column);
  230. if (fastOpenResult)
  231. return true;
  232. }
  233. if (SystemInfo.operatingSystemFamily == OperatingSystemFamily.MacOSX)
  234. {
  235. return OpenOSXApp(path, line, column);
  236. }
  237. var solution = GetSolutionFile(path); // TODO: If solution file doesn't exist resync.
  238. solution = solution == "" ? "" : $"\"{solution}\"";
  239. var process = new Process
  240. {
  241. StartInfo = new ProcessStartInfo
  242. {
  243. FileName = CodeEditor.CurrentEditorInstallation,
  244. Arguments = $"{solution} -l {line} \"{path}\"",
  245. UseShellExecute = true,
  246. }
  247. };
  248. process.Start();
  249. return true;
  250. }
  251. private bool OpenOSXApp(string path, int line, int column)
  252. {
  253. var solution = GetSolutionFile(path); // TODO: If solution file doesn't exist resync.
  254. solution = solution == "" ? "" : $"\"{solution}\"";
  255. var pathArguments = path == "" ? "" : $"-l {line} \"{path}\"";
  256. var process = new Process
  257. {
  258. StartInfo = new ProcessStartInfo
  259. {
  260. FileName = "open",
  261. Arguments = $"-n \"{CodeEditor.CurrentEditorInstallation}\" --args {solution} {pathArguments}",
  262. CreateNoWindow = true,
  263. UseShellExecute = true,
  264. }
  265. };
  266. process.Start();
  267. return true;
  268. }
  269. private string GetSolutionFile(string path)
  270. {
  271. if (IsUnityScript(path))
  272. {
  273. return Path.Combine(GetBaseUnityDeveloperFolder(), "Projects/CSharp/Unity.CSharpProjects.gen.sln");
  274. }
  275. var solutionFile = m_ProjectGeneration.SolutionFile();
  276. if (File.Exists(solutionFile))
  277. {
  278. return solutionFile;
  279. }
  280. return "";
  281. }
  282. static bool IsUnityScript(string path)
  283. {
  284. if (UnityEditor.Unsupported.IsDeveloperBuild())
  285. {
  286. var baseFolder = GetBaseUnityDeveloperFolder().Replace("\\", "/");
  287. var lowerPath = path.ToLowerInvariant().Replace("\\", "/");
  288. if (lowerPath.Contains((baseFolder + "/Runtime").ToLowerInvariant())
  289. || lowerPath.Contains((baseFolder + "/Editor").ToLowerInvariant()))
  290. {
  291. return true;
  292. }
  293. }
  294. return false;
  295. }
  296. static string GetBaseUnityDeveloperFolder()
  297. {
  298. return Directory.GetParent(EditorApplication.applicationPath).Parent.Parent.FullName;
  299. }
  300. public bool TryGetInstallationForPath(string editorPath, out CodeEditor.Installation installation)
  301. {
  302. if (FileSystemUtil.EditorPathExists(editorPath) && IsRiderInstallation(editorPath))
  303. {
  304. var info = new RiderPathLocator.RiderInfo(editorPath, false);
  305. installation = new CodeEditor.Installation
  306. {
  307. Name = info.Presentation,
  308. Path = info.Path
  309. };
  310. return true;
  311. }
  312. installation = default;
  313. return false;
  314. }
  315. public static bool IsRiderInstallation(string path)
  316. {
  317. if (IsAssetImportWorkerProcess())
  318. return false;
  319. if (string.IsNullOrEmpty(path))
  320. {
  321. return false;
  322. }
  323. var fileInfo = new FileInfo(path);
  324. var filename = fileInfo.Name.ToLowerInvariant();
  325. return filename.StartsWith("rider", StringComparison.Ordinal);
  326. }
  327. private static bool IsAssetImportWorkerProcess()
  328. {
  329. #if UNITY_2019_3_OR_NEWER
  330. return UnityEditor.Experimental.AssetDatabaseExperimental.IsAssetImportWorkerProcess();
  331. #else
  332. return false;
  333. #endif
  334. }
  335. public static string CurrentEditor // works fast, doesn't validate if executable really exists
  336. => EditorPrefs.GetString("kScriptsDefaultApp");
  337. public CodeEditor.Installation[] Installations => m_Discoverability.PathCallback();
  338. public void CreateSolutionIfDoesntExist()
  339. {
  340. if (!m_ProjectGeneration.HasSolutionBeenGenerated())
  341. {
  342. m_ProjectGeneration.Sync();
  343. }
  344. }
  345. }
  346. }