| | 1 | | using System; |
| | 2 | | using System.Collections.Concurrent; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.IO; |
| | 5 | | using System.Linq; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | | using Emby.Server.Implementations.Library; |
| | 8 | | using MediaBrowser.Controller.Configuration; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Library; |
| | 11 | | using MediaBrowser.Model.IO; |
| | 12 | | using Microsoft.Extensions.Hosting; |
| | 13 | | using Microsoft.Extensions.Logging; |
| | 14 | |
|
| | 15 | | namespace Emby.Server.Implementations.IO |
| | 16 | | { |
| | 17 | | /// <inheritdoc cref="ILibraryMonitor" /> |
| | 18 | | public sealed class LibraryMonitor : ILibraryMonitor, IDisposable |
| | 19 | | { |
| | 20 | | private readonly ILogger<LibraryMonitor> _logger; |
| | 21 | | private readonly ILibraryManager _libraryManager; |
| | 22 | | private readonly IServerConfigurationManager _configurationManager; |
| | 23 | | private readonly IFileSystem _fileSystem; |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// The file system watchers. |
| | 27 | | /// </summary> |
| 21 | 28 | | private readonly ConcurrentDictionary<string, FileSystemWatcher> _fileSystemWatchers = new(StringComparer.Ordina |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// The affected paths. |
| | 32 | | /// </summary> |
| 21 | 33 | | private readonly List<FileRefresher> _activeRefreshers = []; |
| | 34 | |
|
| | 35 | | /// <summary> |
| | 36 | | /// A dynamic list of paths that should be ignored. Added to during our own file system modifications. |
| | 37 | | /// </summary> |
| 21 | 38 | | private readonly ConcurrentDictionary<string, string> _tempIgnoredPaths = new(StringComparer.OrdinalIgnoreCase); |
| | 39 | |
|
| | 40 | | private bool _disposed; |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Initializes a new instance of the <see cref="LibraryMonitor" /> class. |
| | 44 | | /// </summary> |
| | 45 | | /// <param name="logger">The logger.</param> |
| | 46 | | /// <param name="libraryManager">The library manager.</param> |
| | 47 | | /// <param name="configurationManager">The configuration manager.</param> |
| | 48 | | /// <param name="fileSystem">The filesystem.</param> |
| | 49 | | /// <param name="appLifetime">The <see cref="IHostApplicationLifetime"/>.</param> |
| | 50 | | public LibraryMonitor( |
| | 51 | | ILogger<LibraryMonitor> logger, |
| | 52 | | ILibraryManager libraryManager, |
| | 53 | | IServerConfigurationManager configurationManager, |
| | 54 | | IFileSystem fileSystem, |
| | 55 | | IHostApplicationLifetime appLifetime) |
| | 56 | | { |
| 21 | 57 | | _libraryManager = libraryManager; |
| 21 | 58 | | _logger = logger; |
| 21 | 59 | | _configurationManager = configurationManager; |
| 21 | 60 | | _fileSystem = fileSystem; |
| | 61 | |
|
| 21 | 62 | | appLifetime.ApplicationStarted.Register(Start); |
| 21 | 63 | | } |
| | 64 | |
|
| | 65 | | /// <inheritdoc /> |
| | 66 | | public void ReportFileSystemChangeBeginning(string path) |
| | 67 | | { |
| 0 | 68 | | ArgumentException.ThrowIfNullOrEmpty(path); |
| | 69 | |
|
| 0 | 70 | | _tempIgnoredPaths[path] = path; |
| 0 | 71 | | } |
| | 72 | |
|
| | 73 | | /// <inheritdoc /> |
| | 74 | | public async void ReportFileSystemChangeComplete(string path, bool refreshPath) |
| | 75 | | { |
| | 76 | | ArgumentException.ThrowIfNullOrEmpty(path); |
| | 77 | |
|
| | 78 | | // This is an arbitrary amount of time, but delay it because file system writes often trigger events long af |
| | 79 | | // Seeing long delays in some situations, especially over the network, sometimes up to 45 seconds |
| | 80 | | // But if we make this delay too high, we risk missing legitimate changes, such as user adding a new file, o |
| | 81 | | await Task.Delay(45000).ConfigureAwait(false); |
| | 82 | |
|
| | 83 | | _tempIgnoredPaths.TryRemove(path, out _); |
| | 84 | |
|
| | 85 | | if (refreshPath) |
| | 86 | | { |
| | 87 | | try |
| | 88 | | { |
| | 89 | | ReportFileSystemChanged(path); |
| | 90 | | } |
| | 91 | | catch (Exception ex) |
| | 92 | | { |
| | 93 | | _logger.LogError(ex, "Error in ReportFileSystemChanged for {Path}", path); |
| | 94 | | } |
| | 95 | | } |
| | 96 | | } |
| | 97 | |
|
| | 98 | | private bool IsLibraryMonitorEnabled(BaseItem item) |
| | 99 | | { |
| 40 | 100 | | if (item is BasePluginFolder) |
| | 101 | | { |
| 40 | 102 | | return false; |
| | 103 | | } |
| | 104 | |
|
| 0 | 105 | | var options = _libraryManager.GetLibraryOptions(item); |
| | 106 | |
|
| 0 | 107 | | return options is not null && options.EnableRealtimeMonitor; |
| | 108 | | } |
| | 109 | |
|
| | 110 | | /// <inheritdoc /> |
| | 111 | | public void Start() |
| | 112 | | { |
| 42 | 113 | | _libraryManager.ItemAdded += OnLibraryManagerItemAdded; |
| 42 | 114 | | _libraryManager.ItemRemoved += OnLibraryManagerItemRemoved; |
| | 115 | |
|
| 42 | 116 | | var pathsToWatch = new List<string>(); |
| | 117 | |
|
| 42 | 118 | | var paths = _libraryManager |
| 42 | 119 | | .RootFolder |
| 42 | 120 | | .Children |
| 42 | 121 | | .Where(IsLibraryMonitorEnabled) |
| 42 | 122 | | .OfType<Folder>() |
| 42 | 123 | | .SelectMany(f => f.PhysicalLocations) |
| 42 | 124 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 42 | 125 | | .Order(); |
| | 126 | |
|
| 82 | 127 | | foreach (var path in paths) |
| | 128 | | { |
| 0 | 129 | | if (!ContainsParentFolder(pathsToWatch, path)) |
| | 130 | | { |
| 0 | 131 | | pathsToWatch.Add(path); |
| | 132 | | } |
| | 133 | | } |
| | 134 | |
|
| 82 | 135 | | foreach (var path in pathsToWatch) |
| | 136 | | { |
| 0 | 137 | | StartWatchingPath(path); |
| | 138 | | } |
| 41 | 139 | | } |
| | 140 | |
|
| | 141 | | private void StartWatching(BaseItem item) |
| | 142 | | { |
| 0 | 143 | | if (IsLibraryMonitorEnabled(item)) |
| | 144 | | { |
| 0 | 145 | | StartWatchingPath(item.Path); |
| | 146 | | } |
| 0 | 147 | | } |
| | 148 | |
|
| | 149 | | /// <summary> |
| | 150 | | /// Handles the ItemRemoved event of the LibraryManager control. |
| | 151 | | /// </summary> |
| | 152 | | /// <param name="sender">The source of the event.</param> |
| | 153 | | /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param> |
| | 154 | | private void OnLibraryManagerItemRemoved(object? sender, ItemChangeEventArgs e) |
| | 155 | | { |
| 0 | 156 | | if (e.Parent is AggregateFolder) |
| | 157 | | { |
| 0 | 158 | | StopWatchingPath(e.Item.Path); |
| | 159 | | } |
| 0 | 160 | | } |
| | 161 | |
|
| | 162 | | /// <summary> |
| | 163 | | /// Handles the ItemAdded event of the LibraryManager control. |
| | 164 | | /// </summary> |
| | 165 | | /// <param name="sender">The source of the event.</param> |
| | 166 | | /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param> |
| | 167 | | private void OnLibraryManagerItemAdded(object? sender, ItemChangeEventArgs e) |
| | 168 | | { |
| 1 | 169 | | if (e.Parent is AggregateFolder) |
| | 170 | | { |
| 0 | 171 | | StartWatching(e.Item); |
| | 172 | | } |
| 1 | 173 | | } |
| | 174 | |
|
| | 175 | | /// <summary> |
| | 176 | | /// Examine a list of strings assumed to be file paths to see if it contains a parent of |
| | 177 | | /// the provided path. |
| | 178 | | /// </summary> |
| | 179 | | /// <param name="lst">The LST.</param> |
| | 180 | | /// <param name="path">The path.</param> |
| | 181 | | /// <returns><c>true</c> if [contains parent folder] [the specified LST]; otherwise, <c>false</c>.</returns> |
| | 182 | | /// <exception cref="ArgumentNullException"><paramref name="path"/> is <c>null</c>.</exception> |
| | 183 | | private static bool ContainsParentFolder(IReadOnlyList<string> lst, ReadOnlySpan<char> path) |
| | 184 | | { |
| 0 | 185 | | if (path.IsEmpty) |
| | 186 | | { |
| 0 | 187 | | throw new ArgumentException("Path can't be empty", nameof(path)); |
| | 188 | | } |
| | 189 | |
|
| 0 | 190 | | path = path.TrimEnd(Path.DirectorySeparatorChar); |
| | 191 | |
|
| 0 | 192 | | foreach (var str in lst) |
| | 193 | | { |
| | 194 | | // this should be a little quicker than examining each actual parent folder... |
| 0 | 195 | | var compare = str.AsSpan().TrimEnd(Path.DirectorySeparatorChar); |
| | 196 | |
|
| 0 | 197 | | if (path.Equals(compare, StringComparison.OrdinalIgnoreCase) |
| 0 | 198 | | || (path.StartsWith(compare, StringComparison.OrdinalIgnoreCase) && path[compare.Length] == Path.Dir |
| | 199 | | { |
| 0 | 200 | | return true; |
| | 201 | | } |
| | 202 | | } |
| | 203 | |
|
| 0 | 204 | | return false; |
| 0 | 205 | | } |
| | 206 | |
|
| | 207 | | /// <summary> |
| | 208 | | /// Starts the watching path. |
| | 209 | | /// </summary> |
| | 210 | | /// <param name="path">The path.</param> |
| | 211 | | private void StartWatchingPath(string path) |
| | 212 | | { |
| 0 | 213 | | if (!Directory.Exists(path)) |
| | 214 | | { |
| | 215 | | // Seeing a crash in the mono runtime due to an exception being thrown on a different thread |
| 0 | 216 | | _logger.LogInformation("Skipping realtime monitor for {Path} because the path does not exist", path); |
| 0 | 217 | | return; |
| | 218 | | } |
| | 219 | |
|
| | 220 | | // Already being watched |
| 0 | 221 | | if (_fileSystemWatchers.ContainsKey(path)) |
| | 222 | | { |
| 0 | 223 | | return; |
| | 224 | | } |
| | 225 | |
|
| | 226 | | // Creating a FileSystemWatcher over the LAN can take hundreds of milliseconds, so wrap it in a Task to do t |
| 0 | 227 | | Task.Run(() => |
| 0 | 228 | | { |
| 0 | 229 | | try |
| 0 | 230 | | { |
| 0 | 231 | | var newWatcher = new FileSystemWatcher(path, "*") |
| 0 | 232 | | { |
| 0 | 233 | | IncludeSubdirectories = true, |
| 0 | 234 | | InternalBufferSize = 65536, |
| 0 | 235 | | NotifyFilter = NotifyFilters.CreationTime | |
| 0 | 236 | | NotifyFilters.DirectoryName | |
| 0 | 237 | | NotifyFilters.FileName | |
| 0 | 238 | | NotifyFilters.LastWrite | |
| 0 | 239 | | NotifyFilters.Size | |
| 0 | 240 | | NotifyFilters.Attributes |
| 0 | 241 | | }; |
| 0 | 242 | |
|
| 0 | 243 | | newWatcher.Created += OnWatcherChanged; |
| 0 | 244 | | newWatcher.Deleted += OnWatcherChanged; |
| 0 | 245 | | newWatcher.Renamed += OnWatcherChanged; |
| 0 | 246 | | newWatcher.Changed += OnWatcherChanged; |
| 0 | 247 | | newWatcher.Error += OnWatcherError; |
| 0 | 248 | |
|
| 0 | 249 | | if (_fileSystemWatchers.TryAdd(path, newWatcher)) |
| 0 | 250 | | { |
| 0 | 251 | | newWatcher.EnableRaisingEvents = true; |
| 0 | 252 | | _logger.LogInformation("Watching directory {Path}", path); |
| 0 | 253 | | } |
| 0 | 254 | | else |
| 0 | 255 | | { |
| 0 | 256 | | DisposeWatcher(newWatcher, false); |
| 0 | 257 | | } |
| 0 | 258 | | } |
| 0 | 259 | | catch (Exception ex) |
| 0 | 260 | | { |
| 0 | 261 | | _logger.LogError(ex, "Error watching path: {Path}", path); |
| 0 | 262 | | } |
| 0 | 263 | | }); |
| 0 | 264 | | } |
| | 265 | |
|
| | 266 | | /// <summary> |
| | 267 | | /// Stops the watching path. |
| | 268 | | /// </summary> |
| | 269 | | /// <param name="path">The path.</param> |
| | 270 | | private void StopWatchingPath(string path) |
| | 271 | | { |
| 0 | 272 | | if (_fileSystemWatchers.TryGetValue(path, out var watcher)) |
| | 273 | | { |
| 0 | 274 | | DisposeWatcher(watcher, true); |
| | 275 | | } |
| 0 | 276 | | } |
| | 277 | |
|
| | 278 | | /// <summary> |
| | 279 | | /// Disposes the watcher. |
| | 280 | | /// </summary> |
| | 281 | | private void DisposeWatcher(FileSystemWatcher watcher, bool removeFromList) |
| | 282 | | { |
| | 283 | | try |
| | 284 | | { |
| 0 | 285 | | using (watcher) |
| | 286 | | { |
| 0 | 287 | | _logger.LogInformation("Stopping directory watching for path {Path}", watcher.Path); |
| | 288 | |
|
| 0 | 289 | | watcher.Created -= OnWatcherChanged; |
| 0 | 290 | | watcher.Deleted -= OnWatcherChanged; |
| 0 | 291 | | watcher.Renamed -= OnWatcherChanged; |
| 0 | 292 | | watcher.Changed -= OnWatcherChanged; |
| 0 | 293 | | watcher.Error -= OnWatcherError; |
| | 294 | |
|
| 0 | 295 | | watcher.EnableRaisingEvents = false; |
| 0 | 296 | | } |
| | 297 | | } |
| | 298 | | finally |
| | 299 | | { |
| 0 | 300 | | if (removeFromList) |
| | 301 | | { |
| 0 | 302 | | _fileSystemWatchers.TryRemove(watcher.Path, out _); |
| | 303 | | } |
| 0 | 304 | | } |
| 0 | 305 | | } |
| | 306 | |
|
| | 307 | | /// <summary> |
| | 308 | | /// Handles the Error event of the watcher control. |
| | 309 | | /// </summary> |
| | 310 | | /// <param name="sender">The source of the event.</param> |
| | 311 | | /// <param name="e">The <see cref="ErrorEventArgs" /> instance containing the event data.</param> |
| | 312 | | private void OnWatcherError(object sender, ErrorEventArgs e) |
| | 313 | | { |
| 0 | 314 | | var ex = e.GetException(); |
| 0 | 315 | | var dw = (FileSystemWatcher)sender; |
| | 316 | |
|
| 0 | 317 | | if (ex is UnauthorizedAccessException unauthorizedAccessException) |
| | 318 | | { |
| 0 | 319 | | _logger.LogError(unauthorizedAccessException, "Permission error for Directory watcher: {Path}", dw.Path) |
| 0 | 320 | | return; |
| | 321 | | } |
| | 322 | |
|
| 0 | 323 | | _logger.LogError(ex, "Error in Directory watcher for: {Path}", dw.Path); |
| | 324 | |
|
| 0 | 325 | | DisposeWatcher(dw, true); |
| 0 | 326 | | } |
| | 327 | |
|
| | 328 | | /// <summary> |
| | 329 | | /// Handles the Changed event of the watcher control. |
| | 330 | | /// </summary> |
| | 331 | | /// <param name="sender">The source of the event.</param> |
| | 332 | | /// <param name="e">The <see cref="FileSystemEventArgs" /> instance containing the event data.</param> |
| | 333 | | private void OnWatcherChanged(object sender, FileSystemEventArgs e) |
| | 334 | | { |
| | 335 | | try |
| | 336 | | { |
| 0 | 337 | | ReportFileSystemChanged(e.FullPath); |
| 0 | 338 | | } |
| 0 | 339 | | catch (Exception ex) |
| | 340 | | { |
| 0 | 341 | | _logger.LogError(ex, "Exception in ReportFileSystemChanged. Path: {FullPath}", e.FullPath); |
| 0 | 342 | | } |
| 0 | 343 | | } |
| | 344 | |
|
| | 345 | | /// <inheritdoc /> |
| | 346 | | public void ReportFileSystemChanged(string path) |
| | 347 | | { |
| 0 | 348 | | ArgumentException.ThrowIfNullOrEmpty(path); |
| | 349 | |
|
| 0 | 350 | | if (IgnorePatterns.ShouldIgnore(path)) |
| | 351 | | { |
| 0 | 352 | | return; |
| | 353 | | } |
| | 354 | |
|
| | 355 | | // Ignore certain files, If the parent of an ignored path has a change event, ignore that too |
| 0 | 356 | | foreach (var i in _tempIgnoredPaths.Keys) |
| | 357 | | { |
| 0 | 358 | | if (_fileSystem.AreEqual(i, path) |
| 0 | 359 | | || _fileSystem.ContainsSubPath(i, path)) |
| | 360 | | { |
| 0 | 361 | | _logger.LogDebug("Ignoring change to {Path}", path); |
| 0 | 362 | | return; |
| | 363 | | } |
| | 364 | |
|
| | 365 | | // Go up a level |
| 0 | 366 | | var parent = Path.GetDirectoryName(i); |
| 0 | 367 | | if (!string.IsNullOrEmpty(parent) && _fileSystem.AreEqual(parent, path)) |
| | 368 | | { |
| 0 | 369 | | _logger.LogDebug("Ignoring change to {Path}", path); |
| 0 | 370 | | return; |
| | 371 | | } |
| | 372 | | } |
| | 373 | |
|
| 0 | 374 | | CreateRefresher(path); |
| 0 | 375 | | } |
| | 376 | |
|
| | 377 | | private void CreateRefresher(string path) |
| | 378 | | { |
| 0 | 379 | | var parentPath = Path.GetDirectoryName(path); |
| | 380 | |
|
| 0 | 381 | | lock (_activeRefreshers) |
| | 382 | | { |
| 0 | 383 | | foreach (var refresher in _activeRefreshers) |
| | 384 | | { |
| | 385 | | // Path is already being refreshed |
| 0 | 386 | | if (_fileSystem.AreEqual(path, refresher.Path)) |
| | 387 | | { |
| 0 | 388 | | refresher.RestartTimer(); |
| 0 | 389 | | return; |
| | 390 | | } |
| | 391 | |
|
| | 392 | | // Parent folder is already being refreshed |
| 0 | 393 | | if (_fileSystem.ContainsSubPath(refresher.Path, path)) |
| | 394 | | { |
| 0 | 395 | | refresher.AddPath(path); |
| 0 | 396 | | return; |
| | 397 | | } |
| | 398 | |
|
| | 399 | | // New path is a parent |
| 0 | 400 | | if (_fileSystem.ContainsSubPath(path, refresher.Path)) |
| | 401 | | { |
| 0 | 402 | | refresher.ResetPath(path, null); |
| 0 | 403 | | return; |
| | 404 | | } |
| | 405 | |
|
| | 406 | | // They are siblings. Rebase the refresher to the parent folder. |
| 0 | 407 | | if (parentPath is not null |
| 0 | 408 | | && Path.GetDirectoryName(refresher.Path.AsSpan()).Equals(parentPath, StringComparison.Ordinal)) |
| | 409 | | { |
| 0 | 410 | | refresher.ResetPath(parentPath, path); |
| 0 | 411 | | return; |
| | 412 | | } |
| | 413 | | } |
| | 414 | |
|
| 0 | 415 | | var newRefresher = new FileRefresher(path, _configurationManager, _libraryManager, _logger); |
| 0 | 416 | | newRefresher.Completed += OnNewRefresherCompleted; |
| 0 | 417 | | _activeRefreshers.Add(newRefresher); |
| 0 | 418 | | } |
| 0 | 419 | | } |
| | 420 | |
|
| | 421 | | private void OnNewRefresherCompleted(object? sender, EventArgs e) |
| | 422 | | { |
| 0 | 423 | | if (sender is null) |
| | 424 | | { |
| 0 | 425 | | return; |
| | 426 | | } |
| | 427 | |
|
| 0 | 428 | | var refresher = (FileRefresher)sender; |
| 0 | 429 | | DisposeRefresher(refresher); |
| 0 | 430 | | } |
| | 431 | |
|
| | 432 | | /// <summary> |
| | 433 | | /// Stops this instance. |
| | 434 | | /// </summary> |
| | 435 | | public void Stop() |
| | 436 | | { |
| 45 | 437 | | _libraryManager.ItemAdded -= OnLibraryManagerItemAdded; |
| 45 | 438 | | _libraryManager.ItemRemoved -= OnLibraryManagerItemRemoved; |
| | 439 | |
|
| 90 | 440 | | foreach (var watcher in _fileSystemWatchers.Values.ToList()) |
| | 441 | | { |
| 0 | 442 | | DisposeWatcher(watcher, false); |
| | 443 | | } |
| | 444 | |
|
| 45 | 445 | | _fileSystemWatchers.Clear(); |
| 45 | 446 | | DisposeRefreshers(); |
| 45 | 447 | | } |
| | 448 | |
|
| | 449 | | private void DisposeRefresher(FileRefresher refresher) |
| | 450 | | { |
| 0 | 451 | | lock (_activeRefreshers) |
| | 452 | | { |
| 0 | 453 | | refresher.Completed -= OnNewRefresherCompleted; |
| 0 | 454 | | refresher.Dispose(); |
| 0 | 455 | | _activeRefreshers.Remove(refresher); |
| 0 | 456 | | } |
| 0 | 457 | | } |
| | 458 | |
|
| | 459 | | private void DisposeRefreshers() |
| | 460 | | { |
| 45 | 461 | | lock (_activeRefreshers) |
| | 462 | | { |
| 90 | 463 | | foreach (var refresher in _activeRefreshers) |
| | 464 | | { |
| 0 | 465 | | refresher.Completed -= OnNewRefresherCompleted; |
| 0 | 466 | | refresher.Dispose(); |
| | 467 | | } |
| | 468 | |
|
| 45 | 469 | | _activeRefreshers.Clear(); |
| 45 | 470 | | } |
| 45 | 471 | | } |
| | 472 | |
|
| | 473 | | /// <inheritdoc /> |
| | 474 | | public void Dispose() |
| | 475 | | { |
| 21 | 476 | | if (_disposed) |
| | 477 | | { |
| 0 | 478 | | return; |
| | 479 | | } |
| | 480 | |
|
| 21 | 481 | | Stop(); |
| 21 | 482 | | _disposed = true; |
| 21 | 483 | | } |
| | 484 | | } |
| | 485 | | } |