jellyfin/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs

636 lines
21 KiB
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
using MediaBrowser.Common.ScheduledTasks;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
2015-08-27 03:31:54 +02:00
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Model.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Logging;
2013-09-19 17:13:34 +02:00
using Microsoft.Win32;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
using MediaBrowser.Controller;
2016-10-23 21:47:34 +02:00
using MediaBrowser.Model.Tasks;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Server.Implementations.IO
2013-02-21 02:33:05 +01:00
{
public class LibraryMonitor : ILibraryMonitor
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// The file system watchers
/// </summary>
2013-09-19 17:13:34 +02:00
private readonly ConcurrentDictionary<string, FileSystemWatcher> _fileSystemWatchers = new ConcurrentDictionary<string, FileSystemWatcher>(StringComparer.OrdinalIgnoreCase);
2013-02-21 02:33:05 +01:00
/// <summary>
/// The affected paths
/// </summary>
private readonly List<FileRefresher> _activeRefreshers = new List<FileRefresher>();
2013-02-21 02:33:05 +01:00
/// <summary>
/// A dynamic list of paths that should be ignored. Added to during our own file sytem modifications.
/// </summary>
2013-04-28 15:24:20 +02:00
private readonly ConcurrentDictionary<string, string> _tempIgnoredPaths = new ConcurrentDictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2013-02-21 02:33:05 +01:00
/// <summary>
/// Any file name ending in any of these will be ignored by the watchers
/// </summary>
2014-02-26 05:38:21 +01:00
private readonly IReadOnlyList<string> _alwaysIgnoreFiles = new List<string>
{
"small.jpg",
2014-02-26 05:38:21 +01:00
"albumart.jpg",
// WMC temp recording directories that will constantly be written to
"TempRec",
2016-09-25 20:39:13 +02:00
"TempSBE"
2014-02-26 05:38:21 +01:00
};
private readonly IReadOnlyList<string> _alwaysIgnoreSubstrings = new List<string>
{
// Synology
2016-09-25 20:39:13 +02:00
"eaDir",
"#recycle",
".wd_tv",
".actors"
};
2016-08-16 19:08:37 +02:00
private readonly IReadOnlyList<string> _alwaysIgnoreExtensions = new List<string>
{
// thumbs.db
".db",
// bts sync files
2016-08-17 07:29:05 +02:00
".bts",
".sync"
2016-08-16 19:08:37 +02:00
};
2013-02-21 02:33:05 +01:00
/// <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)
2013-02-21 02:33:05 +01:00
{
_tempIgnoredPaths[path] = path;
2013-02-21 02:33:05 +01:00
}
public void ReportFileSystemChangeBeginning(string path)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException("path");
}
TemporarilyIgnore(path);
}
2016-02-24 19:45:20 +01:00
public bool IsPathLocked(string path)
{
var lockedPaths = _tempIgnoredPaths.Keys.ToList();
return lockedPaths.Any(i => string.Equals(i, path, StringComparison.OrdinalIgnoreCase) || _fileSystem.ContainsSubPath(i, path));
}
2014-01-29 06:17:58 +01:00
public async void ReportFileSystemChangeComplete(string path, bool refreshPath)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException("path");
}
2015-06-03 07:30:14 +02:00
// 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.
2015-05-24 20:33:28 +02:00
// Seeing long delays in some situations, especially over the network, sometimes up to 45 seconds
2015-06-03 07:30:14 +02:00
// But if we make this delay too high, we risk missing legitimate changes, such as user adding a new file, or hand-editing metadata
2016-07-22 07:17:09 +02:00
await Task.Delay(45000).ConfigureAwait(false);
2014-01-29 06:17:58 +01:00
string val;
_tempIgnoredPaths.TryRemove(path, out val);
if (refreshPath)
{
2016-09-15 22:30:46 +02:00
try
{
ReportFileSystemChanged(path);
}
catch (Exception ex)
{
Logger.ErrorException("Error in ReportFileSystemChanged for {0}", ex, path);
}
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the logger.
/// </summary>
/// <value>The logger.</value>
private ILogger Logger { get; set; }
2013-02-23 08:57:11 +01:00
/// <summary>
/// Gets or sets the task manager.
/// </summary>
/// <value>The task manager.</value>
private ITaskManager TaskManager { get; set; }
private ILibraryManager LibraryManager { get; set; }
2013-03-04 06:43:06 +01:00
private IServerConfigurationManager ConfigurationManager { get; set; }
2014-01-29 02:46:04 +01:00
private readonly IFileSystem _fileSystem;
2015-10-04 05:38:46 +02:00
private readonly IServerApplicationHost _appHost;
2013-02-21 02:33:05 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="LibraryMonitor" /> class.
2013-02-21 02:33:05 +01:00
/// </summary>
2015-10-04 05:38:46 +02:00
public LibraryMonitor(ILogManager logManager, ITaskManager taskManager, ILibraryManager libraryManager, IServerConfigurationManager configurationManager, IFileSystem fileSystem, IServerApplicationHost appHost)
2013-02-21 02:33:05 +01:00
{
2013-02-23 08:57:11 +01:00
if (taskManager == null)
{
throw new ArgumentNullException("taskManager");
}
2013-02-21 21:26:35 +01:00
LibraryManager = libraryManager;
2013-02-23 08:57:11 +01:00
TaskManager = taskManager;
Logger = logManager.GetLogger(GetType().Name);
2013-03-04 06:43:06 +01:00
ConfigurationManager = configurationManager;
2014-01-29 02:46:04 +01:00
_fileSystem = fileSystem;
2015-10-04 05:38:46 +02:00
_appHost = appHost;
2013-09-19 17:13:34 +02:00
SystemEvents.PowerModeChanged += SystemEvents_PowerModeChanged;
}
/// <summary>
/// Handles the PowerModeChanged event of the SystemEvents control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="PowerModeChangedEventArgs"/> instance containing the event data.</param>
void SystemEvents_PowerModeChanged(object sender, PowerModeChangedEventArgs e)
2014-01-29 21:30:26 +01:00
{
Restart();
}
private void Restart()
2013-09-19 17:13:34 +02:00
{
Stop();
Start();
2013-02-21 02:33:05 +01:00
}
2013-04-28 15:24:20 +02:00
2016-08-24 22:46:26 +02:00
private bool IsLibraryMonitorEnabaled(BaseItem item)
2014-01-29 21:30:26 +01:00
{
if (item is BasePluginFolder)
{
return false;
}
2016-08-24 22:46:26 +02:00
var options = LibraryManager.GetLibraryOptions(item);
2016-09-11 09:33:53 +02:00
if (options != null)
2014-01-29 21:30:26 +01:00
{
2016-08-24 22:46:26 +02:00
return options.EnableRealtimeMonitor;
2014-01-29 21:30:26 +01:00
}
2016-08-24 22:46:26 +02:00
2016-09-11 09:33:53 +02:00
return false;
2014-01-29 21:30:26 +01:00
}
2016-08-24 22:46:26 +02:00
public void Start()
2013-02-21 02:33:05 +01:00
{
LibraryManager.ItemAdded += LibraryManager_ItemAdded;
LibraryManager.ItemRemoved += LibraryManager_ItemRemoved;
2016-08-24 22:46:26 +02:00
var pathsToWatch = new List<string> { };
2013-02-21 02:33:05 +01:00
var paths = LibraryManager
.RootFolder
.Children
2016-08-24 22:46:26 +02:00
.Where(IsLibraryMonitorEnabaled)
.OfType<Folder>()
.SelectMany(f => f.PhysicalLocations)
.Distinct(StringComparer.OrdinalIgnoreCase)
.OrderBy(i => i)
.ToList();
2013-02-21 02:33:05 +01:00
foreach (var path in paths)
{
if (!ContainsParentFolder(pathsToWatch, path))
{
pathsToWatch.Add(path);
}
}
foreach (var path in pathsToWatch)
{
StartWatchingPath(path);
}
}
2016-08-24 22:46:26 +02:00
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)
{
2015-11-11 15:56:31 +01:00
if (e.Item.GetParent() 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)
{
2015-11-11 15:56:31 +01:00
if (e.Item.GetParent() is AggregateFolder)
{
2016-08-24 22:46:26 +02:00
StartWatching(e.Item);
}
}
2013-02-21 02:33:05 +01:00
/// <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)
{
2016-04-09 04:30:22 +02:00
if (string.IsNullOrWhiteSpace(path))
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException("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);
2016-03-27 23:11:27 +02:00
return path.Equals(compare, StringComparison.OrdinalIgnoreCase) || (path.StartsWith(compare, StringComparison.OrdinalIgnoreCase) && path[compare.Length] == Path.DirectorySeparatorChar);
2013-02-21 02:33:05 +01:00
});
}
/// <summary>
/// Starts the watching path.
/// </summary>
/// <param name="path">The path.</param>
private void StartWatchingPath(string path)
{
// 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(() =>
{
2014-03-27 20:30:21 +01:00
try
{
var newWatcher = new FileSystemWatcher(path, "*")
{
2016-01-06 23:47:32 +01:00
IncludeSubdirectories = true
2014-03-27 20:30:21 +01:00
};
2013-02-21 02:33:05 +01:00
2016-01-06 23:47:32 +01:00
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
{
newWatcher.InternalBufferSize = 32767;
}
2014-03-31 04:33:10 +02:00
newWatcher.NotifyFilter = NotifyFilters.CreationTime |
NotifyFilters.DirectoryName |
NotifyFilters.FileName |
NotifyFilters.LastWrite |
NotifyFilters.Size |
NotifyFilters.Attributes;
2013-02-21 02:33:05 +01:00
2014-03-27 20:30:21 +01:00
newWatcher.Created += watcher_Changed;
newWatcher.Deleted += watcher_Changed;
newWatcher.Renamed += watcher_Changed;
newWatcher.Changed += watcher_Changed;
newWatcher.Error += watcher_Error;
2013-02-21 02:33:05 +01:00
2013-05-05 15:40:44 +02:00
if (_fileSystemWatchers.TryAdd(path, newWatcher))
{
newWatcher.EnableRaisingEvents = true;
Logger.Info("Watching directory " + path);
}
else
{
2014-03-16 17:43:05 +01:00
Logger.Info("Unable to add directory watcher for {0}. It already exists in the dictionary.", path);
2013-05-05 15:40:44 +02:00
newWatcher.Dispose();
}
2013-02-21 02:33:05 +01:00
}
2014-03-27 20:30:21 +01:00
catch (Exception ex)
2013-02-21 02:33:05 +01:00
{
Logger.ErrorException("Error watching path: {0}", ex, path);
}
});
}
/// <summary>
/// Stops the watching path.
/// </summary>
/// <param name="path">The path.</param>
private void StopWatchingPath(string path)
{
2013-05-05 15:40:44 +02:00
FileSystemWatcher watcher;
2013-02-21 02:33:05 +01:00
2013-05-05 15:40:44 +02:00
if (_fileSystemWatchers.TryGetValue(path, out watcher))
2013-02-21 02:33:05 +01:00
{
DisposeWatcher(watcher);
}
}
/// <summary>
/// Disposes the watcher.
/// </summary>
/// <param name="watcher">The watcher.</param>
private void DisposeWatcher(FileSystemWatcher watcher)
{
2014-10-13 22:14:53 +02:00
try
{
using (watcher)
{
Logger.Info("Stopping directory watching for path {0}", watcher.Path);
2013-02-21 02:33:05 +01:00
2014-10-13 22:14:53 +02:00
watcher.EnableRaisingEvents = false;
}
}
catch
{
2015-07-28 21:42:24 +02:00
2014-10-13 22:14:53 +02:00
}
finally
{
RemoveWatcherFromList(watcher);
}
2013-05-05 15:40:44 +02:00
}
2013-02-21 02:33:05 +01:00
2013-05-05 15:40:44 +02:00
/// <summary>
/// Removes the watcher from list.
/// </summary>
/// <param name="watcher">The watcher.</param>
private void RemoveWatcherFromList(FileSystemWatcher watcher)
{
FileSystemWatcher removed;
2013-02-21 02:33:05 +01:00
2013-05-05 15:40:44 +02:00
_fileSystemWatchers.TryRemove(watcher.Path, out removed);
2013-02-21 02:33:05 +01:00
}
/// <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>
2013-09-19 17:13:34 +02:00
void watcher_Error(object sender, ErrorEventArgs e)
2013-02-21 02:33:05 +01:00
{
var ex = e.GetException();
2013-04-28 15:24:20 +02:00
var dw = (FileSystemWatcher)sender;
2013-02-21 02:33:05 +01:00
2013-04-28 15:24:20 +02:00
Logger.ErrorException("Error in Directory watcher for: " + dw.Path, ex);
2013-02-21 02:33:05 +01:00
2013-09-19 17:13:34 +02:00
DisposeWatcher(dw);
2013-02-21 02:33:05 +01:00
}
/// <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
{
2014-03-29 16:40:32 +01:00
Logger.Debug("Changed detected of type " + e.ChangeType + " to " + e.FullPath);
2014-03-27 20:30:21 +01:00
2016-09-20 21:43:27 +02:00
var path = e.FullPath;
// For deletes, use the parent path
if (e.ChangeType == WatcherChangeTypes.Deleted)
{
var parentPath = Path.GetDirectoryName(path);
if (!string.IsNullOrWhiteSpace(parentPath))
{
path = parentPath;
}
}
ReportFileSystemChanged(path);
}
catch (Exception ex)
{
2014-03-29 16:40:32 +01:00
Logger.ErrorException("Exception in ReportFileSystemChanged. Path: {0}", ex, e.FullPath);
}
}
public void ReportFileSystemChanged(string path)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException("path");
}
2014-01-29 21:30:26 +01:00
var filename = Path.GetFileName(path);
2016-08-24 22:46:26 +02:00
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);
2014-03-27 20:30:21 +01:00
// Ignore certain files
2013-05-20 01:44:05 +02:00
var tempIgnorePaths = _tempIgnoredPaths.Keys.ToList();
// If the parent of an ignored path has a change event, ignore that too
if (tempIgnorePaths.Any(i =>
2013-05-20 01:44:05 +02:00
{
if (string.Equals(i, path, StringComparison.OrdinalIgnoreCase))
{
Logger.Debug("Ignoring change to {0}", path);
return true;
}
if (_fileSystem.ContainsSubPath(i, path))
{
Logger.Debug("Ignoring change to {0}", path);
return true;
}
// Go up a level
var parent = Path.GetDirectoryName(i);
if (!string.IsNullOrEmpty(parent))
{
if (string.Equals(parent, path, StringComparison.OrdinalIgnoreCase))
{
Logger.Debug("Ignoring change to {0}", path);
return true;
}
}
return false;
}))
{
2014-03-27 20:30:21 +01:00
monitorPath = false;
2013-05-20 01:44:05 +02:00
}
2014-03-27 20:30:21 +01:00
if (monitorPath)
{
// Avoid implicitly captured closure
CreateRefresher(path);
2014-03-10 03:33:49 +01:00
}
2013-02-21 02:33:05 +01:00
}
private void CreateRefresher(string path)
2014-04-02 23:55:19 +02:00
{
var parentPath = Path.GetDirectoryName(path);
lock (_activeRefreshers)
2014-04-02 23:55:19 +02:00
{
var refreshers = _activeRefreshers.ToList();
foreach (var refresher in refreshers)
2014-04-02 23:55:19 +02:00
{
// Path is already being refreshed
if (string.Equals(path, refresher.Path, StringComparison.Ordinal))
{
refresher.RestartTimer();
return;
}
// Parent folder is already being refreshed
if (_fileSystem.ContainsSubPath(refresher.Path, path))
2014-04-02 23:55:19 +02:00
{
refresher.AddPath(path);
return;
2014-04-02 23:55:19 +02:00
}
// New path is a parent
if (_fileSystem.ContainsSubPath(path, refresher.Path))
{
refresher.ResetPath(path, null);
return;
}
2014-04-02 23:55:19 +02:00
2016-05-27 05:46:21 +02:00
// They are siblings. Rebase the refresher to the parent folder.
if (string.Equals(parentPath, Path.GetDirectoryName(refresher.Path), StringComparison.Ordinal))
{
refresher.ResetPath(parentPath, path);
return;
}
2013-05-07 20:57:27 +02:00
}
2013-04-28 15:24:20 +02:00
var newRefresher = new FileRefresher(path, _fileSystem, ConfigurationManager, LibraryManager, TaskManager, Logger);
newRefresher.Completed += NewRefresher_Completed;
_activeRefreshers.Add(newRefresher);
2013-12-30 03:41:22 +01:00
}
2013-02-21 02:33:05 +01:00
}
private void NewRefresher_Completed(object sender, EventArgs e)
2013-02-21 02:33:05 +01:00
{
var refresher = (FileRefresher)sender;
DisposeRefresher(refresher);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Stops this instance.
/// </summary>
public void Stop()
2013-02-21 02:33:05 +01:00
{
LibraryManager.ItemAdded -= LibraryManager_ItemAdded;
LibraryManager.ItemRemoved -= LibraryManager_ItemRemoved;
2013-02-21 02:33:05 +01:00
2013-05-05 15:40:44 +02:00
foreach (var watcher in _fileSystemWatchers.Values.ToList())
2013-02-21 02:33:05 +01:00
{
2016-02-26 15:50:44 +01:00
watcher.Created -= watcher_Changed;
watcher.Deleted -= watcher_Changed;
watcher.Renamed -= watcher_Changed;
2013-02-21 02:33:05 +01:00
watcher.Changed -= watcher_Changed;
2016-02-26 15:50:44 +01:00
try
{
watcher.EnableRaisingEvents = false;
}
catch (InvalidOperationException)
{
// Seeing this under mono on linux sometimes
// Collection was modified; enumeration operation may not execute.
}
2013-02-21 02:33:05 +01:00
watcher.Dispose();
}
2013-08-13 16:41:45 +02:00
_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();
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <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();
}
}
}
2015-08-27 03:31:54 +02:00
public class LibraryMonitorStartup : IServerEntryPoint
{
private readonly ILibraryMonitor _monitor;
public LibraryMonitorStartup(ILibraryMonitor monitor)
{
_monitor = monitor;
}
public void Run()
{
_monitor.Start();
}
public void Dispose()
{
}
}
2013-02-21 02:33:05 +01:00
}