From bd53807b0ff2031dc6a447f200e2bd25e3586f45 Mon Sep 17 00:00:00 2001 From: kalimag Date: Sun, 27 Nov 2022 19:54:07 +0100 Subject: [PATCH] Store `LuaFile` `FileSystemWatcher` in dictionary Avoid path string comparisons, `FileSystemWatcher` events may format relative paths differently --- .../tools/Lua/LuaConsole.cs | 39 +++++++++---------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index a34e4f488a..7af29c06b0 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -31,7 +31,7 @@ namespace BizHawk.Client.EmuHawk private static readonly FilesystemFilterSet SessionsFSFilterSet = new FilesystemFilterSet(new FilesystemFilter("Lua Session Files", new[] { "luases" })); private readonly LuaAutocompleteInstaller _luaAutoInstaller = new LuaAutocompleteInstaller(); - private readonly List _watches = new List(); + private readonly Dictionary _watches = new(); private readonly int _defaultSplitDistance; @@ -261,24 +261,24 @@ namespace BizHawk.Client.EmuHawk ClearFileWatches(); foreach (var item in LuaImp.ScriptList.Where(s => !s.IsSeparator)) { - var processedPath = Config.PathEntries.TryMakeRelative(item.Path); - string pathToLoad = ProcessPath(processedPath); - - CreateFileWatcher(pathToLoad); + CreateFileWatcher(item); } } } private void ClearFileWatches() { - foreach (var watch in _watches) + foreach (var watch in _watches.Values) watch.Dispose(); _watches.Clear(); } - private void CreateFileWatcher(string path) + private void CreateFileWatcher(LuaFile item) { - var (dir, file) = path.SplitPathToDirAndFile(); + if (_watches.ContainsKey(item)) + return; + + var (dir, file) = item.Path.MakeProgramRelativePath().SplitPathToDirAndFile(); var watcher = new FileSystemWatcher { Path = dir, @@ -289,28 +289,25 @@ namespace BizHawk.Client.EmuHawk }; // TODO, Deleted and Renamed events - watcher.Changed += OnChanged; + watcher.Changed += (_, _) => OnLuaFileChanged(item); - _watches.Add(watcher); + _watches.Add(item, watcher); } - private void RemoveFileWatcher(string path) + private void RemoveFileWatcher(LuaFile item) { - var (dir, file) = path.SplitPathToDirAndFile(); - var watcher = _watches.Find(watcher => watcher.Path == dir && watcher.Filter == file); - if (watcher != null) + if (_watches.TryGetValue(item, out var watcher)) { - _watches.Remove(watcher); + _watches.Remove(item); watcher.Dispose(); } } - private void OnChanged(object source, FileSystemEventArgs e) + private void OnLuaFileChanged(LuaFile item) { - var script = LuaImp.ScriptList.FirstOrDefault(s => s.Path == e.FullPath && s.Enabled); - if (script is not null) + if (item.Enabled && LuaImp?.ScriptList.Contains(item) == true) { - RefreshLuaScript(script); + RefreshLuaScript(item); } } @@ -348,7 +345,7 @@ namespace BizHawk.Client.EmuHawk if (Settings.ReloadOnScriptFileChange) { - CreateFileWatcher(processedPath); + CreateFileWatcher(luaFile); } } @@ -374,7 +371,7 @@ namespace BizHawk.Client.EmuHawk if (!item.IsSeparator) { LuaImp.RegisteredFunctions.RemoveForFile(item, Emulator); - RemoveFileWatcher(item.Path); + RemoveFileWatcher(item); } LuaImp.ScriptList.Remove(item); }