jellyfin/MediaBrowser.Controller/Providers/DirectoryService.cs

76 lines
2.2 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Collections.Concurrent;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using System.Linq;
using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.Providers
{
public class DirectoryService : IDirectoryService
{
private readonly IFileSystem _fileSystem;
private readonly ConcurrentDictionary<string, FileSystemMetadata[]> _cache = new (StringComparer.Ordinal);
2018-12-27 18:27:57 -05:00
private readonly ConcurrentDictionary<string, FileSystemMetadata> _fileCache = new (StringComparer.Ordinal);
2018-12-27 18:27:57 -05:00
private readonly ConcurrentDictionary<string, List<string>> _filePathCache = new (StringComparer.Ordinal);
2018-12-27 18:27:57 -05:00
2019-09-10 16:37:53 -04:00
public DirectoryService(IFileSystem fileSystem)
2018-12-27 18:27:57 -05:00
{
_fileSystem = fileSystem;
}
public FileSystemMetadata[] GetFileSystemEntries(string path)
{
2020-09-27 20:24:12 -04:00
return _cache.GetOrAdd(path, p => _fileSystem.GetFileSystemEntries(p).ToArray());
2018-12-27 18:27:57 -05:00
}
public List<FileSystemMetadata> GetFiles(string path)
{
var list = new List<FileSystemMetadata>();
var items = GetFileSystemEntries(path);
foreach (var item in items)
{
if (!item.IsDirectory)
{
list.Add(item);
}
}
2019-09-10 16:37:53 -04:00
2018-12-27 18:27:57 -05:00
return list;
}
2021-05-06 18:52:06 -04:00
public FileSystemMetadata? GetFile(string path)
2018-12-27 18:27:57 -05:00
{
2021-05-06 18:52:06 -04:00
if (!_fileCache.TryGetValue(path, out var result))
2018-12-27 18:27:57 -05:00
{
2021-05-06 18:52:06 -04:00
var file = _fileSystem.GetFileInfo(path);
var res = file != null && file.Exists ? file : null;
if (res != null)
{
result = res;
_fileCache.TryAdd(path, result);
}
2018-12-27 18:27:57 -05:00
}
return result;
2018-12-27 18:27:57 -05:00
}
2020-02-23 04:53:51 -05:00
public IReadOnlyList<string> GetFilePaths(string path)
=> GetFilePaths(path, false);
2018-12-27 18:27:57 -05:00
2020-02-23 04:53:51 -05:00
public IReadOnlyList<string> GetFilePaths(string path, bool clearCache)
2018-12-27 18:27:57 -05:00
{
if (clearCache)
2018-12-27 18:27:57 -05:00
{
2020-09-27 20:24:12 -04:00
_filePathCache.TryRemove(path, out _);
2018-12-27 18:27:57 -05:00
}
2020-09-27 20:34:36 -04:00
return _filePathCache.GetOrAdd(path, p => _fileSystem.GetFilePaths(p).ToList());
2018-12-27 18:27:57 -05:00
}
}
}