2014-07-07 18:41:03 -07:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2014-06-29 20:04:50 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-07-07 18:41:03 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2014-01-28 11:37:01 -07:00
|
|
|
|
|
2014-06-29 20:04:50 -07:00
|
|
|
|
namespace MediaBrowser.LocalMetadata
|
2014-01-28 11:37:01 -07:00
|
|
|
|
{
|
2015-01-11 22:07:19 -07:00
|
|
|
|
public abstract class BaseXmlProvider<T> : ILocalMetadataProvider<T>, IHasChangeMonitor, IHasOrder
|
2014-02-05 21:39:16 -07:00
|
|
|
|
where T : IHasMetadata, new()
|
2014-01-28 11:37:01 -07:00
|
|
|
|
{
|
|
|
|
|
protected IFileSystem FileSystem;
|
|
|
|
|
|
2014-10-25 11:32:58 -07:00
|
|
|
|
public async Task<LocalMetadataResult<T>> GetMetadata(ItemInfo info,
|
|
|
|
|
IDirectoryService directoryService,
|
|
|
|
|
CancellationToken cancellationToken)
|
2014-02-05 21:39:16 -07:00
|
|
|
|
{
|
2014-02-08 21:52:52 -07:00
|
|
|
|
var result = new LocalMetadataResult<T>();
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
2014-10-25 11:32:58 -07:00
|
|
|
|
var file = GetXmlFile(info, directoryService);
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
|
|
|
|
if (file == null)
|
|
|
|
|
{
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var path = file.FullName;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
result.Item = new T();
|
|
|
|
|
|
2014-02-08 21:52:52 -07:00
|
|
|
|
Fetch(result, path, cancellationToken);
|
2014-02-05 21:39:16 -07:00
|
|
|
|
result.HasMetadata = true;
|
|
|
|
|
}
|
|
|
|
|
catch (FileNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
result.HasMetadata = false;
|
|
|
|
|
}
|
2014-02-10 11:39:41 -07:00
|
|
|
|
catch (DirectoryNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
result.HasMetadata = false;
|
|
|
|
|
}
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 21:52:52 -07:00
|
|
|
|
protected abstract void Fetch(LocalMetadataResult<T> result, string path, CancellationToken cancellationToken);
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
2014-01-28 11:37:01 -07:00
|
|
|
|
protected BaseXmlProvider(IFileSystem fileSystem)
|
|
|
|
|
{
|
|
|
|
|
FileSystem = fileSystem;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-12 12:56:12 -07:00
|
|
|
|
protected abstract FileSystemInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService);
|
2014-02-10 13:11:46 -07:00
|
|
|
|
|
2014-02-10 11:39:41 -07:00
|
|
|
|
public bool HasChanged(IHasMetadata item, IDirectoryService directoryService, DateTime date)
|
2014-01-28 11:37:01 -07:00
|
|
|
|
{
|
2014-02-10 13:11:46 -07:00
|
|
|
|
var file = GetXmlFile(new ItemInfo { IsInMixedFolder = item.IsInMixedFolder, Path = item.Path }, directoryService);
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
|
|
|
|
if (file == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-01-28 11:37:01 -07:00
|
|
|
|
|
2014-02-06 20:10:13 -07:00
|
|
|
|
return file.Exists && FileSystem.GetLastWriteTimeUtc(file) > date;
|
2014-01-28 11:37:01 -07:00
|
|
|
|
}
|
2014-01-29 09:16:24 -07:00
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
public string Name
|
2014-01-29 09:16:24 -07:00
|
|
|
|
{
|
2014-02-05 21:39:16 -07:00
|
|
|
|
get
|
|
|
|
|
{
|
2014-11-10 20:41:55 -07:00
|
|
|
|
return XmlProviderUtils.Name;
|
2014-02-05 21:39:16 -07:00
|
|
|
|
}
|
2014-01-29 09:16:24 -07:00
|
|
|
|
}
|
2014-11-10 20:41:55 -07:00
|
|
|
|
|
2015-01-09 22:53:35 -07:00
|
|
|
|
public int Order
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// After Nfo
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-28 11:37:01 -07:00
|
|
|
|
}
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
|
|
|
|
static class XmlProviderUtils
|
|
|
|
|
{
|
2014-11-10 20:41:55 -07:00
|
|
|
|
public static string Name
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2015-03-31 21:23:34 -07:00
|
|
|
|
return "Emby Xml";
|
2014-11-10 20:41:55 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
internal static readonly SemaphoreSlim XmlParsingResourcePool = new SemaphoreSlim(4, 4);
|
|
|
|
|
}
|
2014-01-28 11:37:01 -07:00
|
|
|
|
}
|