| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654 | 
							- using System;
 
- using System.Collections.Concurrent;
 
- using System.Collections.Generic;
 
- using System.IO;
 
- using System.Linq;
 
- using System.Threading.Tasks;
 
- using MediaBrowser.Controller.Configuration;
 
- using MediaBrowser.Controller.Entities;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Controller.Plugins;
 
- using MediaBrowser.Model.IO;
 
- using Microsoft.Extensions.Logging;
 
- using MediaBrowser.Model.System;
 
- using MediaBrowser.Model.Tasks;
 
- using MediaBrowser.Model.Threading;
 
- namespace Emby.Server.Implementations.IO
 
- {
 
-     public class LibraryMonitor : ILibraryMonitor
 
-     {
 
-         /// <summary>
 
-         /// The file system watchers
 
-         /// </summary>
 
-         private readonly ConcurrentDictionary<string, FileSystemWatcher> _fileSystemWatchers = new ConcurrentDictionary<string, FileSystemWatcher>(StringComparer.OrdinalIgnoreCase);
 
-         /// <summary>
 
-         /// The affected paths
 
-         /// </summary>
 
-         private readonly List<FileRefresher> _activeRefreshers = new List<FileRefresher>();
 
-         /// <summary>
 
-         /// A dynamic list of paths that should be ignored.  Added to during our own file sytem modifications.
 
-         /// </summary>
 
-         private readonly ConcurrentDictionary<string, string> _tempIgnoredPaths = new ConcurrentDictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 
-         /// <summary>
 
-         /// Any file name ending in any of these will be ignored by the watchers
 
-         /// </summary>
 
-         private readonly string[] _alwaysIgnoreFiles = new string[]
 
-         {
 
-             "small.jpg",
 
-             "albumart.jpg",
 
-             // WMC temp recording directories that will constantly be written to
 
-             "TempRec",
 
-             "TempSBE"
 
-         };
 
-         private readonly string[] _alwaysIgnoreSubstrings = new string[]
 
-         {
 
-             // Synology
 
-             "eaDir",
 
-             "#recycle",
 
-             ".wd_tv",
 
-             ".actors"
 
-         };
 
-         private readonly string[] _alwaysIgnoreExtensions = new string[]
 
-         {
 
-             // thumbs.db
 
-             ".db",
 
-             // bts sync files
 
-             ".bts",
 
-             ".sync"
 
-         };
 
-         /// <summary>
 
-         /// Add the path to our temporary ignore list.  Use when writing to a path within our listening scope.
 
-         /// </summary>
 
-         /// <param name="path">The path.</param>
 
-         private void TemporarilyIgnore(string path)
 
-         {
 
-             _tempIgnoredPaths[path] = path;
 
-         }
 
-         public void ReportFileSystemChangeBeginning(string path)
 
-         {
 
-             if (string.IsNullOrEmpty(path))
 
-             {
 
-                 throw new ArgumentNullException(nameof(path));
 
-             }
 
-             TemporarilyIgnore(path);
 
-         }
 
-         public bool IsPathLocked(string path)
 
-         {
 
-             // This method is not used by the core but it used by auto-organize
 
-             var lockedPaths = _tempIgnoredPaths.Keys.ToList();
 
-             return lockedPaths.Any(i => _fileSystem.AreEqual(i, path) || _fileSystem.ContainsSubPath(i, path));
 
-         }
 
-         public async void ReportFileSystemChangeComplete(string path, bool refreshPath)
 
-         {
 
-             if (string.IsNullOrEmpty(path))
 
-             {
 
-                 throw new ArgumentNullException(nameof(path));
 
-             }
 
-             // This is an arbitraty amount of time, but delay it because file system writes often trigger events long after the file was actually written to.
 
-             // Seeing long delays in some situations, especially over the network, sometimes up to 45 seconds
 
-             // But if we make this delay too high, we risk missing legitimate changes, such as user adding a new file, or hand-editing metadata
 
-             await Task.Delay(45000).ConfigureAwait(false);
 
-             string val;
 
-             _tempIgnoredPaths.TryRemove(path, out val);
 
-             if (refreshPath)
 
-             {
 
-                 try
 
-                 {
 
-                     ReportFileSystemChanged(path);
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     Logger.LogError(ex, "Error in ReportFileSystemChanged for {path}", path);
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Gets or sets the logger.
 
-         /// </summary>
 
-         /// <value>The logger.</value>
 
-         private ILogger Logger { get; set; }
 
-         /// <summary>
 
-         /// Gets or sets the task manager.
 
-         /// </summary>
 
-         /// <value>The task manager.</value>
 
-         private ITaskManager TaskManager { get; set; }
 
-         private ILibraryManager LibraryManager { get; set; }
 
-         private IServerConfigurationManager ConfigurationManager { get; set; }
 
-         private readonly IFileSystem _fileSystem;
 
-         private readonly ITimerFactory _timerFactory;
 
-         private readonly IEnvironmentInfo _environmentInfo;
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="LibraryMonitor" /> class.
 
-         /// </summary>
 
-         public LibraryMonitor(ILoggerFactory loggerFactory, ITaskManager taskManager, ILibraryManager libraryManager, IServerConfigurationManager configurationManager, IFileSystem fileSystem, ITimerFactory timerFactory, ISystemEvents systemEvents, IEnvironmentInfo environmentInfo)
 
-         {
 
-             if (taskManager == null)
 
-             {
 
-                 throw new ArgumentNullException(nameof(taskManager));
 
-             }
 
-             LibraryManager = libraryManager;
 
-             TaskManager = taskManager;
 
-             Logger = loggerFactory.CreateLogger(GetType().Name);
 
-             ConfigurationManager = configurationManager;
 
-             _fileSystem = fileSystem;
 
-             _timerFactory = timerFactory;
 
-             _environmentInfo = environmentInfo;
 
-             systemEvents.Resume += _systemEvents_Resume;
 
-         }
 
-         private void _systemEvents_Resume(object sender, EventArgs e)
 
-         {
 
-             Restart();
 
-         }
 
-         private void Restart()
 
-         {
 
-             Stop();
 
-             if (!_disposed)
 
-             {
 
-                 Start();
 
-             }
 
-         }
 
-         private bool IsLibraryMonitorEnabaled(BaseItem item)
 
-         {
 
-             if (item is BasePluginFolder)
 
-             {
 
-                 return false;
 
-             }
 
-             var options = LibraryManager.GetLibraryOptions(item);
 
-             if (options != null)
 
-             {
 
-                 return options.EnableRealtimeMonitor;
 
-             }
 
-             return false;
 
-         }
 
-         public void Start()
 
-         {
 
-             LibraryManager.ItemAdded += LibraryManager_ItemAdded;
 
-             LibraryManager.ItemRemoved += LibraryManager_ItemRemoved;
 
-             var pathsToWatch = new List<string> { };
 
-             var paths = LibraryManager
 
-                 .RootFolder
 
-                 .Children
 
-                 .Where(IsLibraryMonitorEnabaled)
 
-                 .OfType<Folder>()
 
-                 .SelectMany(f => f.PhysicalLocations)
 
-                 .Distinct(StringComparer.OrdinalIgnoreCase)
 
-                 .OrderBy(i => i)
 
-                 .ToList();
 
-             foreach (var path in paths)
 
-             {
 
-                 if (!ContainsParentFolder(pathsToWatch, path))
 
-                 {
 
-                     pathsToWatch.Add(path);
 
-                 }
 
-             }
 
-             foreach (var path in pathsToWatch)
 
-             {
 
-                 StartWatchingPath(path);
 
-             }
 
-         }
 
-         private void StartWatching(BaseItem item)
 
-         {
 
-             if (IsLibraryMonitorEnabaled(item))
 
-             {
 
-                 StartWatchingPath(item.Path);
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Handles the ItemRemoved event of the LibraryManager control.
 
-         /// </summary>
 
-         /// <param name="sender">The source of the event.</param>
 
-         /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
 
-         void LibraryManager_ItemRemoved(object sender, ItemChangeEventArgs e)
 
-         {
 
-             if (e.Parent is AggregateFolder)
 
-             {
 
-                 StopWatchingPath(e.Item.Path);
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Handles the ItemAdded event of the LibraryManager control.
 
-         /// </summary>
 
-         /// <param name="sender">The source of the event.</param>
 
-         /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
 
-         void LibraryManager_ItemAdded(object sender, ItemChangeEventArgs e)
 
-         {
 
-             if (e.Parent is AggregateFolder)
 
-             {
 
-                 StartWatching(e.Item);
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Examine a list of strings assumed to be file paths to see if it contains a parent of
 
-         /// the provided path.
 
-         /// </summary>
 
-         /// <param name="lst">The LST.</param>
 
-         /// <param name="path">The path.</param>
 
-         /// <returns><c>true</c> if [contains parent folder] [the specified LST]; otherwise, <c>false</c>.</returns>
 
-         /// <exception cref="System.ArgumentNullException">path</exception>
 
-         private static bool ContainsParentFolder(IEnumerable<string> lst, string path)
 
-         {
 
-             if (string.IsNullOrEmpty(path))
 
-             {
 
-                 throw new ArgumentNullException(nameof(path));
 
-             }
 
-             path = path.TrimEnd(Path.DirectorySeparatorChar);
 
-             return lst.Any(str =>
 
-             {
 
-                 //this should be a little quicker than examining each actual parent folder...
 
-                 var compare = str.TrimEnd(Path.DirectorySeparatorChar);
 
-                 return path.Equals(compare, StringComparison.OrdinalIgnoreCase) || (path.StartsWith(compare, StringComparison.OrdinalIgnoreCase) && path[compare.Length] == Path.DirectorySeparatorChar);
 
-             });
 
-         }
 
-         /// <summary>
 
-         /// Starts the watching path.
 
-         /// </summary>
 
-         /// <param name="path">The path.</param>
 
-         private void StartWatchingPath(string path)
 
-         {
 
-             if (!_fileSystem.DirectoryExists(path))
 
-             {
 
-                 // Seeing a crash in the mono runtime due to an exception being thrown on a different thread
 
-                 Logger.LogInformation("Skipping realtime monitor for {0} because the path does not exist", path);
 
-                 return;
 
-             }
 
-             if (_environmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.Windows)
 
-             {
 
-                 if (path.StartsWith("\\\\", StringComparison.OrdinalIgnoreCase) || path.StartsWith("smb://", StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     // not supported
 
-                     return;
 
-                 }
 
-             }
 
-             if (_environmentInfo.OperatingSystem == MediaBrowser.Model.System.OperatingSystem.Android)
 
-             {
 
-                 // causing crashing
 
-                 return;
 
-             }
 
-             // Already being watched
 
-             if (_fileSystemWatchers.ContainsKey(path))
 
-             {
 
-                 return;
 
-             }
 
-             // Creating a FileSystemWatcher over the LAN can take hundreds of milliseconds, so wrap it in a Task to do them all in parallel
 
-             Task.Run(() =>
 
-             {
 
-                 try
 
-                 {
 
-                     var newWatcher = new FileSystemWatcher(path, "*")
 
-                     {
 
-                         IncludeSubdirectories = true
 
-                     };
 
-                     newWatcher.InternalBufferSize = 65536;
 
-                     newWatcher.NotifyFilter = NotifyFilters.CreationTime |
 
-                         NotifyFilters.DirectoryName |
 
-                         NotifyFilters.FileName |
 
-                         NotifyFilters.LastWrite |
 
-                         NotifyFilters.Size |
 
-                         NotifyFilters.Attributes;
 
-                     newWatcher.Created += watcher_Changed;
 
-                     newWatcher.Deleted += watcher_Changed;
 
-                     newWatcher.Renamed += watcher_Changed;
 
-                     newWatcher.Changed += watcher_Changed;
 
-                     newWatcher.Error += watcher_Error;
 
-                     if (_fileSystemWatchers.TryAdd(path, newWatcher))
 
-                     {
 
-                         newWatcher.EnableRaisingEvents = true;
 
-                         Logger.LogInformation("Watching directory " + path);
 
-                     }
 
-                     else
 
-                     {
 
-                         DisposeWatcher(newWatcher, false);
 
-                     }
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     Logger.LogError(ex, "Error watching path: {path}", path);
 
-                 }
 
-             });
 
-         }
 
-         /// <summary>
 
-         /// Stops the watching path.
 
-         /// </summary>
 
-         /// <param name="path">The path.</param>
 
-         private void StopWatchingPath(string path)
 
-         {
 
-             FileSystemWatcher watcher;
 
-             if (_fileSystemWatchers.TryGetValue(path, out watcher))
 
-             {
 
-                 DisposeWatcher(watcher, true);
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Disposes the watcher.
 
-         /// </summary>
 
-         private void DisposeWatcher(FileSystemWatcher watcher, bool removeFromList)
 
-         {
 
-             try
 
-             {
 
-                 using (watcher)
 
-                 {
 
-                     Logger.LogInformation("Stopping directory watching for path {path}", watcher.Path);
 
-                     watcher.Created -= watcher_Changed;
 
-                     watcher.Deleted -= watcher_Changed;
 
-                     watcher.Renamed -= watcher_Changed;
 
-                     watcher.Changed -= watcher_Changed;
 
-                     watcher.Error -= watcher_Error;
 
-                     try
 
-                     {
 
-                         watcher.EnableRaisingEvents = false;
 
-                     }
 
-                     catch (InvalidOperationException)
 
-                     {
 
-                         // Seeing this under mono on linux sometimes
 
-                         // Collection was modified; enumeration operation may not execute.
 
-                     }
 
-                 }
 
-             }
 
-             catch (NotImplementedException)
 
-             {
 
-                 // the dispose method on FileSystemWatcher is sometimes throwing NotImplementedException on Xamarin Android
 
-             }
 
-             catch
 
-             {
 
-             }
 
-             finally
 
-             {
 
-                 if (removeFromList)
 
-                 {
 
-                     RemoveWatcherFromList(watcher);
 
-                 }
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Removes the watcher from list.
 
-         /// </summary>
 
-         /// <param name="watcher">The watcher.</param>
 
-         private void RemoveWatcherFromList(FileSystemWatcher watcher)
 
-         {
 
-             FileSystemWatcher removed;
 
-             _fileSystemWatchers.TryRemove(watcher.Path, out removed);
 
-         }
 
-         /// <summary>
 
-         /// Handles the Error event of the watcher control.
 
-         /// </summary>
 
-         /// <param name="sender">The source of the event.</param>
 
-         /// <param name="e">The <see cref="ErrorEventArgs" /> instance containing the event data.</param>
 
-         void watcher_Error(object sender, ErrorEventArgs e)
 
-         {
 
-             var ex = e.GetException();
 
-             var dw = (FileSystemWatcher)sender;
 
-             Logger.LogError(ex, "Error in Directory watcher for: {path}", dw.Path);
 
-             DisposeWatcher(dw, true);
 
-         }
 
-         /// <summary>
 
-         /// Handles the Changed event of the watcher control.
 
-         /// </summary>
 
-         /// <param name="sender">The source of the event.</param>
 
-         /// <param name="e">The <see cref="FileSystemEventArgs" /> instance containing the event data.</param>
 
-         void watcher_Changed(object sender, FileSystemEventArgs e)
 
-         {
 
-             try
 
-             {
 
-                 //logger.LogDebug("Changed detected of type " + e.ChangeType + " to " + e.FullPath);
 
-                 var path = e.FullPath;
 
-                 ReportFileSystemChanged(path);
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 Logger.LogError(ex, "Exception in ReportFileSystemChanged. Path: {FullPath}", e.FullPath);
 
-             }
 
-         }
 
-         public void ReportFileSystemChanged(string path)
 
-         {
 
-             if (string.IsNullOrEmpty(path))
 
-             {
 
-                 throw new ArgumentNullException(nameof(path));
 
-             }
 
-             var filename = Path.GetFileName(path);
 
-             var monitorPath = !string.IsNullOrEmpty(filename) &&
 
-                 !_alwaysIgnoreFiles.Contains(filename, StringComparer.OrdinalIgnoreCase) &&
 
-                 !_alwaysIgnoreExtensions.Contains(Path.GetExtension(path) ?? string.Empty, StringComparer.OrdinalIgnoreCase) &&
 
-                 _alwaysIgnoreSubstrings.All(i => path.IndexOf(i, StringComparison.OrdinalIgnoreCase) == -1);
 
-             // Ignore certain files
 
-             var tempIgnorePaths = _tempIgnoredPaths.Keys.ToList();
 
-             // If the parent of an ignored path has a change event, ignore that too
 
-             if (tempIgnorePaths.Any(i =>
 
-             {
 
-                 if (_fileSystem.AreEqual(i, path))
 
-                 {
 
-                     Logger.LogDebug("Ignoring change to {path}", path);
 
-                     return true;
 
-                 }
 
-                 if (_fileSystem.ContainsSubPath(i, path))
 
-                 {
 
-                     Logger.LogDebug("Ignoring change to {path}", path);
 
-                     return true;
 
-                 }
 
-                 // Go up a level
 
-                 var parent = _fileSystem.GetDirectoryName(i);
 
-                 if (!string.IsNullOrEmpty(parent))
 
-                 {
 
-                     if (_fileSystem.AreEqual(parent, path))
 
-                     {
 
-                         Logger.LogDebug("Ignoring change to {path}", path);
 
-                         return true;
 
-                     }
 
-                 }
 
-                 return false;
 
-             }))
 
-             {
 
-                 monitorPath = false;
 
-             }
 
-             if (monitorPath)
 
-             {
 
-                 // Avoid implicitly captured closure
 
-                 CreateRefresher(path);
 
-             }
 
-         }
 
-         private void CreateRefresher(string path)
 
-         {
 
-             var parentPath = _fileSystem.GetDirectoryName(path);
 
-             lock (_activeRefreshers)
 
-             {
 
-                 var refreshers = _activeRefreshers.ToList();
 
-                 foreach (var refresher in refreshers)
 
-                 {
 
-                     // Path is already being refreshed
 
-                     if (_fileSystem.AreEqual(path, refresher.Path))
 
-                     {
 
-                         refresher.RestartTimer();
 
-                         return;
 
-                     }
 
-                     // Parent folder is already being refreshed
 
-                     if (_fileSystem.ContainsSubPath(refresher.Path, path))
 
-                     {
 
-                         refresher.AddPath(path);
 
-                         return;
 
-                     }
 
-                     // New path is a parent
 
-                     if (_fileSystem.ContainsSubPath(path, refresher.Path))
 
-                     {
 
-                         refresher.ResetPath(path, null);
 
-                         return;
 
-                     }
 
-                     // They are siblings. Rebase the refresher to the parent folder.
 
-                     if (string.Equals(parentPath, _fileSystem.GetDirectoryName(refresher.Path), StringComparison.Ordinal))
 
-                     {
 
-                         refresher.ResetPath(parentPath, path);
 
-                         return;
 
-                     }
 
-                 }
 
-                 var newRefresher = new FileRefresher(path, _fileSystem, ConfigurationManager, LibraryManager, TaskManager, Logger, _timerFactory, _environmentInfo, LibraryManager);
 
-                 newRefresher.Completed += NewRefresher_Completed;
 
-                 _activeRefreshers.Add(newRefresher);
 
-             }
 
-         }
 
-         private void NewRefresher_Completed(object sender, EventArgs e)
 
-         {
 
-             var refresher = (FileRefresher)sender;
 
-             DisposeRefresher(refresher);
 
-         }
 
-         /// <summary>
 
-         /// Stops this instance.
 
-         /// </summary>
 
-         public void Stop()
 
-         {
 
-             LibraryManager.ItemAdded -= LibraryManager_ItemAdded;
 
-             LibraryManager.ItemRemoved -= LibraryManager_ItemRemoved;
 
-             foreach (var watcher in _fileSystemWatchers.Values.ToList())
 
-             {
 
-                 DisposeWatcher(watcher, false);
 
-             }
 
-             _fileSystemWatchers.Clear();
 
-             DisposeRefreshers();
 
-         }
 
-         private void DisposeRefresher(FileRefresher refresher)
 
-         {
 
-             lock (_activeRefreshers)
 
-             {
 
-                 refresher.Dispose();
 
-                 _activeRefreshers.Remove(refresher);
 
-             }
 
-         }
 
-         private void DisposeRefreshers()
 
-         {
 
-             lock (_activeRefreshers)
 
-             {
 
-                 foreach (var refresher in _activeRefreshers.ToList())
 
-                 {
 
-                     refresher.Dispose();
 
-                 }
 
-                 _activeRefreshers.Clear();
 
-             }
 
-         }
 
-         private bool _disposed;
 
-         /// <summary>
 
-         /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
 
-         /// </summary>
 
-         public void Dispose()
 
-         {
 
-             _disposed = true;
 
-             Dispose(true);
 
-         }
 
-         /// <summary>
 
-         /// Releases unmanaged and - optionally - managed resources.
 
-         /// </summary>
 
-         /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
 
-         protected virtual void Dispose(bool dispose)
 
-         {
 
-             if (dispose)
 
-             {
 
-                 Stop();
 
-             }
 
-         }
 
-     }
 
-     public class LibraryMonitorStartup : IServerEntryPoint
 
-     {
 
-         private readonly ILibraryMonitor _monitor;
 
-         public LibraryMonitorStartup(ILibraryMonitor monitor)
 
-         {
 
-             _monitor = monitor;
 
-         }
 
-         public void Run()
 
-         {
 
-             _monitor.Start();
 
-         }
 
-         public void Dispose()
 
-         {
 
-         }
 
-     }
 
- }
 
 
  |