2015-07-20 18:32:55 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2017-05-26 06:48:54 +00:00
|
|
|
|
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
|
2016-11-03 23:35:19 +00:00
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
|
|
|
|
public class ItemDataProvider<T>
|
|
|
|
|
where T : class
|
|
|
|
|
{
|
|
|
|
|
private readonly object _fileDataLock = new object();
|
2016-02-24 05:36:58 +00:00
|
|
|
|
private List<T> _items;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
private readonly IJsonSerializer _jsonSerializer;
|
|
|
|
|
protected readonly ILogger Logger;
|
|
|
|
|
private readonly string _dataPath;
|
|
|
|
|
protected readonly Func<T, T, bool> EqualityComparer;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
|
2015-09-13 23:07:54 +00:00
|
|
|
|
public ItemDataProvider(IFileSystem fileSystem, IJsonSerializer jsonSerializer, ILogger logger, string dataPath, Func<T, T, bool> equalityComparer)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
|
|
|
|
Logger = logger;
|
|
|
|
|
_dataPath = dataPath;
|
|
|
|
|
EqualityComparer = equalityComparer;
|
|
|
|
|
_jsonSerializer = jsonSerializer;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IReadOnlyList<T> GetAll()
|
|
|
|
|
{
|
2016-02-24 05:36:58 +00:00
|
|
|
|
lock (_fileDataLock)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
2016-02-24 05:36:58 +00:00
|
|
|
|
if (_items == null)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
2016-03-13 07:34:17 +00:00
|
|
|
|
Logger.Info("Loading live tv data from {0}", _dataPath);
|
2016-02-24 05:36:58 +00:00
|
|
|
|
_items = GetItemsFromFile(_dataPath);
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
2016-03-13 07:34:17 +00:00
|
|
|
|
return _items.ToList();
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<T> GetItemsFromFile(string path)
|
|
|
|
|
{
|
|
|
|
|
var jsonFile = path + ".json";
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-03-13 03:30:23 +00:00
|
|
|
|
return _jsonSerializer.DeserializeFromFile<List<T>>(jsonFile) ?? new List<T>();
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
|
|
|
|
catch (FileNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-11-13 21:04:21 +00:00
|
|
|
|
catch (IOException)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error deserializing {0}", ex, jsonFile);
|
|
|
|
|
}
|
|
|
|
|
return new List<T>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateList(List<T> newList)
|
|
|
|
|
{
|
2016-03-13 03:30:23 +00:00
|
|
|
|
if (newList == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("newList");
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-23 23:40:54 +00:00
|
|
|
|
var file = _dataPath + ".json";
|
2017-05-04 18:14:45 +00:00
|
|
|
|
_fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(file));
|
2015-07-23 23:40:54 +00:00
|
|
|
|
|
2015-07-20 18:32:55 +00:00
|
|
|
|
lock (_fileDataLock)
|
|
|
|
|
{
|
2015-07-23 23:40:54 +00:00
|
|
|
|
_jsonSerializer.SerializeToFile(newList, file);
|
2015-07-20 18:32:55 +00:00
|
|
|
|
_items = newList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void Update(T item)
|
|
|
|
|
{
|
2016-03-13 03:30:23 +00:00
|
|
|
|
if (item == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("item");
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-20 18:32:55 +00:00
|
|
|
|
var list = GetAll().ToList();
|
|
|
|
|
|
|
|
|
|
var index = list.FindIndex(i => EqualityComparer(i, item));
|
|
|
|
|
|
|
|
|
|
if (index == -1)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("item not found");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list[index] = item;
|
|
|
|
|
|
|
|
|
|
UpdateList(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void Add(T item)
|
|
|
|
|
{
|
2016-03-13 03:30:23 +00:00
|
|
|
|
if (item == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("item");
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-20 18:32:55 +00:00
|
|
|
|
var list = GetAll().ToList();
|
|
|
|
|
|
|
|
|
|
if (list.Any(i => EqualityComparer(i, item)))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("item already exists");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list.Add(item);
|
|
|
|
|
|
|
|
|
|
UpdateList(list);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-18 04:18:51 +00:00
|
|
|
|
public void AddOrUpdate(T item)
|
|
|
|
|
{
|
|
|
|
|
var list = GetAll().ToList();
|
|
|
|
|
|
|
|
|
|
if (!list.Any(i => EqualityComparer(i, item)))
|
|
|
|
|
{
|
|
|
|
|
Add(item);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Update(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-11-21 04:55:26 +00:00
|
|
|
|
|
2015-07-20 18:32:55 +00:00
|
|
|
|
public virtual void Delete(T item)
|
|
|
|
|
{
|
|
|
|
|
var list = GetAll().Where(i => !EqualityComparer(i, item)).ToList();
|
|
|
|
|
|
|
|
|
|
UpdateList(list);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|