| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.IO; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Threading; |
| | 8 | | using MediaBrowser.Controller.Configuration; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Library; |
| | 11 | | using Microsoft.Extensions.Logging; |
| | 12 | |
|
| | 13 | | namespace Emby.Server.Implementations.IO |
| | 14 | | { |
| | 15 | | public sealed class FileRefresher : IDisposable |
| | 16 | | { |
| | 17 | | private readonly ILogger _logger; |
| | 18 | | private readonly ILibraryManager _libraryManager; |
| | 19 | | private readonly IServerConfigurationManager _configurationManager; |
| | 20 | |
|
| 0 | 21 | | private readonly List<string> _affectedPaths = new(); |
| 0 | 22 | | private readonly Lock _timerLock = new(); |
| | 23 | | private Timer? _timer; |
| | 24 | | private bool _disposed; |
| | 25 | |
|
| | 26 | | public FileRefresher(string path, IServerConfigurationManager configurationManager, ILibraryManager libraryManag |
| | 27 | | { |
| 0 | 28 | | logger.LogDebug("New file refresher created for {0}", path); |
| 0 | 29 | | Path = path; |
| | 30 | |
|
| 0 | 31 | | _configurationManager = configurationManager; |
| 0 | 32 | | _libraryManager = libraryManager; |
| 0 | 33 | | _logger = logger; |
| 0 | 34 | | AddPath(path); |
| 0 | 35 | | } |
| | 36 | |
|
| | 37 | | public event EventHandler<EventArgs>? Completed; |
| | 38 | |
|
| | 39 | | public string Path { get; private set; } |
| | 40 | |
|
| | 41 | | private void AddAffectedPath(string path) |
| | 42 | | { |
| 0 | 43 | | ArgumentException.ThrowIfNullOrEmpty(path); |
| | 44 | |
|
| 0 | 45 | | if (!_affectedPaths.Contains(path, StringComparer.Ordinal)) |
| | 46 | | { |
| 0 | 47 | | _affectedPaths.Add(path); |
| | 48 | | } |
| 0 | 49 | | } |
| | 50 | |
|
| | 51 | | public void AddPath(string path) |
| | 52 | | { |
| 0 | 53 | | ArgumentException.ThrowIfNullOrEmpty(path); |
| | 54 | |
|
| | 55 | | lock (_timerLock) |
| | 56 | | { |
| 0 | 57 | | AddAffectedPath(path); |
| 0 | 58 | | } |
| | 59 | |
|
| 0 | 60 | | RestartTimer(); |
| 0 | 61 | | } |
| | 62 | |
|
| | 63 | | public void RestartTimer() |
| | 64 | | { |
| 0 | 65 | | if (_disposed) |
| | 66 | | { |
| 0 | 67 | | return; |
| | 68 | | } |
| | 69 | |
|
| | 70 | | lock (_timerLock) |
| | 71 | | { |
| 0 | 72 | | if (_disposed) |
| | 73 | | { |
| 0 | 74 | | return; |
| | 75 | | } |
| | 76 | |
|
| 0 | 77 | | if (_timer is null) |
| | 78 | | { |
| 0 | 79 | | _timer = new Timer(OnTimerCallback, null, TimeSpan.FromSeconds(_configurationManager.Configuration.L |
| | 80 | | } |
| | 81 | | else |
| | 82 | | { |
| 0 | 83 | | _timer.Change(TimeSpan.FromSeconds(_configurationManager.Configuration.LibraryMonitorDelay), TimeSpa |
| | 84 | | } |
| 0 | 85 | | } |
| 0 | 86 | | } |
| | 87 | |
|
| | 88 | | public void ResetPath(string path, string? affectedFile) |
| 0 | 89 | | { |
| | 90 | | lock (_timerLock) |
| | 91 | | { |
| 0 | 92 | | _logger.LogDebug("Resetting file refresher from {0} to {1}", Path, path); |
| | 93 | |
|
| 0 | 94 | | Path = path; |
| 0 | 95 | | AddAffectedPath(path); |
| | 96 | |
|
| 0 | 97 | | if (!string.IsNullOrEmpty(affectedFile)) |
| | 98 | | { |
| 0 | 99 | | AddAffectedPath(affectedFile); |
| | 100 | | } |
| 0 | 101 | | } |
| | 102 | |
|
| 0 | 103 | | RestartTimer(); |
| 0 | 104 | | } |
| | 105 | |
|
| | 106 | | private void OnTimerCallback(object? state) |
| 0 | 107 | | { |
| | 108 | | List<string> paths; |
| | 109 | |
|
| | 110 | | lock (_timerLock) |
| | 111 | | { |
| 0 | 112 | | paths = _affectedPaths.ToList(); |
| 0 | 113 | | } |
| | 114 | |
|
| 0 | 115 | | _logger.LogDebug("Timer stopped."); |
| | 116 | |
|
| 0 | 117 | | DisposeTimer(); |
| 0 | 118 | | Completed?.Invoke(this, EventArgs.Empty); |
| | 119 | |
|
| | 120 | | try |
| | 121 | | { |
| 0 | 122 | | ProcessPathChanges(paths); |
| 0 | 123 | | } |
| 0 | 124 | | catch (Exception ex) |
| | 125 | | { |
| 0 | 126 | | _logger.LogError(ex, "Error processing directory changes"); |
| 0 | 127 | | } |
| 0 | 128 | | } |
| | 129 | |
|
| | 130 | | private void ProcessPathChanges(List<string> paths) |
| | 131 | | { |
| 0 | 132 | | IEnumerable<BaseItem> itemsToRefresh = paths |
| 0 | 133 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 0 | 134 | | .Select(GetAffectedBaseItem) |
| 0 | 135 | | .Where(item => item is not null) |
| 0 | 136 | | .DistinctBy(x => x!.Id)!; // Removed null values in the previous .Where() |
| | 137 | |
|
| 0 | 138 | | foreach (var item in itemsToRefresh) |
| | 139 | | { |
| 0 | 140 | | if (item is AggregateFolder) |
| | 141 | | { |
| | 142 | | continue; |
| | 143 | | } |
| | 144 | |
|
| 0 | 145 | | _logger.LogInformation("{Name} ({Path}) will be refreshed.", item.Name, item.Path); |
| | 146 | |
|
| | 147 | | try |
| | 148 | | { |
| 0 | 149 | | item.ChangedExternally(); |
| 0 | 150 | | } |
| 0 | 151 | | catch (Exception ex) |
| | 152 | | { |
| 0 | 153 | | _logger.LogError(ex, "Error refreshing {Name}", item.Name); |
| 0 | 154 | | } |
| | 155 | | } |
| 0 | 156 | | } |
| | 157 | |
|
| | 158 | | /// <summary> |
| | 159 | | /// Gets the affected base item. |
| | 160 | | /// </summary> |
| | 161 | | /// <param name="path">The path.</param> |
| | 162 | | /// <returns>BaseItem.</returns> |
| | 163 | | private BaseItem? GetAffectedBaseItem(string path) |
| | 164 | | { |
| 0 | 165 | | BaseItem? item = null; |
| | 166 | |
|
| 0 | 167 | | while (item is null && !string.IsNullOrEmpty(path)) |
| | 168 | | { |
| 0 | 169 | | item = _libraryManager.FindByPath(path, null); |
| | 170 | |
|
| 0 | 171 | | path = System.IO.Path.GetDirectoryName(path) ?? string.Empty; |
| | 172 | | } |
| | 173 | |
|
| 0 | 174 | | if (item is not null) |
| | 175 | | { |
| | 176 | | // If the item has been deleted find the first valid parent that still exists |
| 0 | 177 | | while (!Directory.Exists(item.Path) && !File.Exists(item.Path)) |
| | 178 | | { |
| 0 | 179 | | item = item.GetOwner() ?? item.GetParent(); |
| | 180 | |
|
| 0 | 181 | | if (item is null) |
| | 182 | | { |
| | 183 | | break; |
| | 184 | | } |
| | 185 | | } |
| | 186 | | } |
| | 187 | |
|
| 0 | 188 | | return item; |
| | 189 | | } |
| | 190 | |
|
| | 191 | | private void DisposeTimer() |
| 0 | 192 | | { |
| | 193 | | lock (_timerLock) |
| | 194 | | { |
| 0 | 195 | | if (_timer is not null) |
| | 196 | | { |
| 0 | 197 | | _timer.Dispose(); |
| 0 | 198 | | _timer = null; |
| | 199 | | } |
| 0 | 200 | | } |
| 0 | 201 | | } |
| | 202 | |
|
| | 203 | | /// <inheritdoc /> |
| | 204 | | public void Dispose() |
| | 205 | | { |
| 0 | 206 | | if (_disposed) |
| | 207 | | { |
| 0 | 208 | | return; |
| | 209 | | } |
| | 210 | |
|
| 0 | 211 | | DisposeTimer(); |
| 0 | 212 | | _disposed = true; |
| 0 | 213 | | } |
| | 214 | | } |
| | 215 | | } |