From e56433a0efe5bb69e9dbab796c12f9ca56346580 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 18 Jun 2013 05:43:07 -0400 Subject: sqlite --- .../JsonDisplayPreferencesRepository.cs | 164 --------------------- 1 file changed, 164 deletions(-) delete mode 100644 MediaBrowser.Server.Implementations/Persistence/JsonDisplayPreferencesRepository.cs (limited to 'MediaBrowser.Server.Implementations/Persistence/JsonDisplayPreferencesRepository.cs') diff --git a/MediaBrowser.Server.Implementations/Persistence/JsonDisplayPreferencesRepository.cs b/MediaBrowser.Server.Implementations/Persistence/JsonDisplayPreferencesRepository.cs deleted file mode 100644 index 6ac2ff07a..000000000 --- a/MediaBrowser.Server.Implementations/Persistence/JsonDisplayPreferencesRepository.cs +++ /dev/null @@ -1,164 +0,0 @@ -using MediaBrowser.Common.Configuration; -using MediaBrowser.Controller.Persistence; -using MediaBrowser.Model.Entities; -using MediaBrowser.Model.Logging; -using MediaBrowser.Model.Serialization; -using System; -using System.Collections.Concurrent; -using System.IO; -using System.Linq; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Server.Implementations.Persistence -{ - public class JsonDisplayPreferencesRepository : IDisplayPreferencesRepository - { - private readonly ConcurrentDictionary _fileLocks = new ConcurrentDictionary(); - - private SemaphoreSlim GetLock(string filename) - { - return _fileLocks.GetOrAdd(filename, key => new SemaphoreSlim(1, 1)); - } - - /// - /// Gets the name of the repository - /// - /// The name. - public string Name - { - get - { - return "Json"; - } - } - - /// - /// The _json serializer - /// - private readonly IJsonSerializer _jsonSerializer; - - private readonly string _dataPath; - - /// - /// Initializes a new instance of the class. - /// - /// The app paths. - /// The json serializer. - /// The log manager. - /// - /// jsonSerializer - /// or - /// appPaths - /// - public JsonDisplayPreferencesRepository(IApplicationPaths appPaths, IJsonSerializer jsonSerializer, ILogManager logManager) - { - if (jsonSerializer == null) - { - throw new ArgumentNullException("jsonSerializer"); - } - if (appPaths == null) - { - throw new ArgumentNullException("appPaths"); - } - - _jsonSerializer = jsonSerializer; - _dataPath = Path.Combine(appPaths.DataPath, "display-preferences"); - } - - /// - /// Opens the connection to the database - /// - /// Task. - public Task Initialize() - { - return Task.FromResult(true); - } - - /// - /// Save the display preferences associated with an item in the repo - /// - /// The display preferences. - /// The cancellation token. - /// Task. - /// item - public async Task SaveDisplayPreferences(DisplayPreferences displayPreferences, CancellationToken cancellationToken) - { - if (displayPreferences == null) - { - throw new ArgumentNullException("displayPreferences"); - } - if (displayPreferences.Id == Guid.Empty) - { - throw new ArgumentNullException("displayPreferences.Id"); - } - if (cancellationToken == null) - { - throw new ArgumentNullException("cancellationToken"); - } - - cancellationToken.ThrowIfCancellationRequested(); - - if (!Directory.Exists(_dataPath)) - { - Directory.CreateDirectory(_dataPath); - } - - var path = Path.Combine(_dataPath, displayPreferences.Id + ".json"); - - var semaphore = GetLock(path); - - await semaphore.WaitAsync(cancellationToken).ConfigureAwait(false); - - try - { - _jsonSerializer.SerializeToFile(displayPreferences, path); - } - finally - { - semaphore.Release(); - } - } - - /// - /// Gets the display preferences. - /// - /// The display preferences id. - /// Task{DisplayPreferences}. - /// item - public Task GetDisplayPreferences(Guid displayPreferencesId) - { - if (displayPreferencesId == Guid.Empty) - { - throw new ArgumentNullException("displayPreferencesId"); - } - - return Task.Run(() => - { - var path = Path.Combine(_dataPath, displayPreferencesId + ".json"); - - try - { - return _jsonSerializer.DeserializeFromFile(path); - } - catch (IOException) - { - // File doesn't exist or is currently bring written to - return null; - } - }); - } - - public void Dispose() - { - // Wait up to two seconds for any existing writes to finish - var locks = _fileLocks.Values.ToList() - .Where(i => i.CurrentCount == 1) - .Select(i => i.WaitAsync(2000)); - - var task = Task.WhenAll(locks); - - Task.WaitAll(task); - } - } -} -- cgit v1.2.3