Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Providers/DirectoryService.cs

108 lines
3.1 KiB
C#
Raw Normal View History

using MediaBrowser.Model.Logging;
2014-02-11 16:41:01 -05:00
using System;
using System.Collections.Concurrent;
2014-02-08 17:38:02 -05:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
2017-05-26 02:48:54 -04:00
2016-10-25 15:02:04 -04:00
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2014-02-08 17:38:02 -05:00
namespace MediaBrowser.Controller.Providers
{
2014-02-10 13:39:41 -05:00
public class DirectoryService : IDirectoryService
2014-02-08 17:38:02 -05:00
{
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
2014-02-08 17:38:02 -05:00
private readonly ConcurrentDictionary<string, FileSystemMetadata[]> _cache =
new ConcurrentDictionary<string, FileSystemMetadata[]>(StringComparer.OrdinalIgnoreCase);
2014-02-08 17:38:02 -05:00
2016-08-06 17:10:18 -04:00
private readonly ConcurrentDictionary<string, FileSystemMetadata> _fileCache =
new ConcurrentDictionary<string, FileSystemMetadata>(StringComparer.OrdinalIgnoreCase);
public DirectoryService(ILogger logger, IFileSystem fileSystem)
2014-02-08 17:38:02 -05:00
{
_logger = logger;
_fileSystem = fileSystem;
2014-02-08 17:38:02 -05:00
}
2016-08-06 00:48:00 -04:00
public DirectoryService(IFileSystem fileSystem)
2015-09-13 17:32:02 -04:00
: this(new NullLogger(), fileSystem)
2014-10-25 14:32:58 -04:00
{
}
public FileSystemMetadata[] GetFileSystemEntries(string path)
2014-05-08 01:04:39 -04:00
{
return GetFileSystemEntries(path, false);
}
private FileSystemMetadata[] GetFileSystemEntries(string path, bool clearCache)
2014-02-08 17:38:02 -05:00
{
2014-12-28 12:59:40 -05:00
if (string.IsNullOrWhiteSpace(path))
{
throw new ArgumentNullException("path");
}
FileSystemMetadata[] entries;
2014-02-08 17:38:02 -05:00
2014-05-08 01:04:39 -04:00
if (clearCache)
{
FileSystemMetadata[] removed;
2014-05-08 01:04:39 -04:00
_cache.TryRemove(path, out removed);
}
2014-02-08 17:38:02 -05:00
if (!_cache.TryGetValue(path, out entries))
{
//_logger.Debug("Getting files for " + path);
2014-02-11 16:41:01 -05:00
try
{
2015-08-15 13:01:40 -07:00
// using EnumerateFileSystemInfos doesn't handle reparse points (symlinks)
entries = _fileSystem.GetFileSystemEntries(path).ToArray();
2014-02-11 16:41:01 -05:00
}
2016-10-25 15:02:04 -04:00
catch (IOException)
2014-02-11 16:41:01 -05:00
{
entries = new FileSystemMetadata[] { };
2014-02-11 16:41:01 -05:00
}
2014-02-15 11:36:09 -05:00
_cache.TryAdd(path, entries);
2014-02-08 17:38:02 -05:00
}
return entries;
}
2015-10-03 23:38:46 -04:00
public IEnumerable<FileSystemMetadata> GetFiles(string path)
2014-02-08 17:38:02 -05:00
{
2014-05-08 01:04:39 -04:00
return GetFiles(path, false);
}
2015-10-03 23:38:46 -04:00
public IEnumerable<FileSystemMetadata> GetFiles(string path, bool clearCache)
2014-05-08 01:04:39 -04:00
{
2015-11-12 15:51:39 -05:00
return GetFileSystemEntries(path, clearCache).Where(i => !i.IsDirectory);
2014-02-08 17:38:02 -05:00
}
2015-10-03 23:38:46 -04:00
public FileSystemMetadata GetFile(string path)
2014-02-08 17:38:02 -05:00
{
2016-08-06 17:10:18 -04:00
FileSystemMetadata file;
if (!_fileCache.TryGetValue(path, out file))
{
file = _fileSystem.GetFileInfo(path);
2017-07-21 15:05:52 -04:00
if (file != null && file.Exists)
2016-08-06 17:10:18 -04:00
{
_fileCache.TryAdd(path, file);
}
2017-07-21 15:05:52 -04:00
else
{
return null;
}
2016-08-06 17:10:18 -04:00
}
return file;
//return _fileSystem.GetFileInfo(path);
2014-02-08 17:38:02 -05:00
}
}
}