jellyfin/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs

210 lines
6.9 KiB
C#
Raw Normal View History

2013-03-04 05:43:06 +00:00
using MediaBrowser.Common.Configuration;
2013-02-21 04:37:50 +00:00
using MediaBrowser.Controller.Persistence;
2013-02-21 01:33:05 +00:00
using MediaBrowser.Model.Entities;
2013-02-21 20:26:35 +00:00
using MediaBrowser.Model.Logging;
2013-02-24 21:53:54 +00:00
using MediaBrowser.Model.Serialization;
2013-02-21 01:33:05 +00:00
using System;
using System.Data;
using System.Data.SQLite;
2013-02-21 01:33:05 +00:00
using System.IO;
using System.Threading;
using System.Threading.Tasks;
2013-02-24 21:53:54 +00:00
namespace MediaBrowser.Server.Implementations.Sqlite
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Class SQLiteDisplayPreferencesRepository
/// </summary>
public class SQLiteDisplayPreferencesRepository : SqliteRepository, IDisplayPreferencesRepository
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// The repository name
/// </summary>
public const string RepositoryName = "SQLite";
/// <summary>
/// Gets the name of the repository
/// </summary>
/// <value>The name.</value>
public string Name
{
get
{
return RepositoryName;
}
}
2013-02-24 21:53:54 +00:00
/// <summary>
2013-04-18 19:57:28 +00:00
/// The _json serializer
2013-02-24 21:53:54 +00:00
/// </summary>
2013-04-07 22:09:48 +00:00
private readonly IJsonSerializer _jsonSerializer;
2013-02-24 21:53:54 +00:00
/// <summary>
/// The _app paths
/// </summary>
private readonly IApplicationPaths _appPaths;
private readonly SemaphoreSlim _writeLock = new SemaphoreSlim(1, 1);
2013-02-21 20:26:35 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="SQLiteUserDataRepository" /> class.
/// </summary>
2013-02-24 21:53:54 +00:00
/// <param name="appPaths">The app paths.</param>
2013-04-07 22:09:48 +00:00
/// <param name="jsonSerializer">The json serializer.</param>
2013-04-03 02:59:27 +00:00
/// <param name="logManager">The log manager.</param>
2013-04-18 19:57:28 +00:00
/// <exception cref="System.ArgumentNullException">
/// jsonSerializer
/// or
/// appPaths
/// </exception>
2013-04-07 22:09:48 +00:00
public SQLiteDisplayPreferencesRepository(IApplicationPaths appPaths, IJsonSerializer jsonSerializer, ILogManager logManager)
2013-04-03 02:59:27 +00:00
: base(logManager)
2013-02-21 20:26:35 +00:00
{
2013-04-07 22:09:48 +00:00
if (jsonSerializer == null)
2013-02-24 21:53:54 +00:00
{
2013-04-07 22:09:48 +00:00
throw new ArgumentNullException("jsonSerializer");
2013-02-24 21:53:54 +00:00
}
if (appPaths == null)
{
throw new ArgumentNullException("appPaths");
}
2013-04-07 22:09:48 +00:00
_jsonSerializer = jsonSerializer;
2013-02-24 21:53:54 +00:00
_appPaths = appPaths;
2013-02-21 20:26:35 +00:00
}
2013-02-21 01:33:05 +00:00
/// <summary>
/// Opens the connection to the database
/// </summary>
/// <returns>Task.</returns>
public async Task Initialize()
{
2013-02-24 21:53:54 +00:00
var dbFile = Path.Combine(_appPaths.DataPath, "displaypreferences.db");
2013-02-21 01:33:05 +00:00
2013-04-15 20:33:43 +00:00
await ConnectToDb(dbFile).ConfigureAwait(false);
2013-02-21 01:33:05 +00:00
string[] queries = {
"create table if not exists displaypreferences (id GUID, data BLOB)",
"create unique index if not exists displaypreferencesindex on displaypreferences (id)",
2013-02-21 01:33:05 +00:00
"create table if not exists schema_version (table_name primary key, version)",
//pragmas
"pragma temp_store = memory"
};
RunQueries(queries);
}
/// <summary>
/// Save the display preferences associated with an item in the repo
/// </summary>
/// <param name="displayPreferences">The display preferences.</param>
2013-02-21 01:33:05 +00:00
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
2013-04-05 20:24:46 +00:00
public async Task SaveDisplayPreferences(DisplayPreferences displayPreferences, CancellationToken cancellationToken)
2013-02-21 01:33:05 +00:00
{
if (displayPreferences == null)
2013-02-21 01:33:05 +00:00
{
throw new ArgumentNullException("displayPreferences");
2013-02-21 01:33:05 +00:00
}
if (displayPreferences.Id == Guid.Empty)
{
throw new ArgumentNullException("displayPreferences.Id");
}
if (cancellationToken == null)
{
throw new ArgumentNullException("cancellationToken");
}
2013-02-21 20:26:35 +00:00
2013-02-21 01:33:05 +00:00
cancellationToken.ThrowIfCancellationRequested();
2013-04-07 22:09:48 +00:00
var serialized = _jsonSerializer.SerializeToBytes(displayPreferences);
2013-04-05 20:24:46 +00:00
await _writeLock.WaitAsync(cancellationToken).ConfigureAwait(false);
SQLiteTransaction transaction = null;
2013-04-05 20:24:46 +00:00
try
2013-04-05 20:24:46 +00:00
{
transaction = Connection.BeginTransaction();
using (var cmd = Connection.CreateCommand())
{
cmd.CommandText = "replace into displaypreferences (id, data) values (@1, @2)";
cmd.AddParam("@1", displayPreferences.Id);
cmd.AddParam("@2", serialized);
cmd.Transaction = transaction;
await cmd.ExecuteNonQueryAsync(cancellationToken);
}
transaction.Commit();
}
catch (OperationCanceledException)
{
if (transaction != null)
2013-04-05 20:24:46 +00:00
{
transaction.Rollback();
2013-04-05 20:24:46 +00:00
}
2013-05-28 17:32:50 +00:00
throw;
2013-04-05 20:24:46 +00:00
}
catch (Exception e)
{
Logger.ErrorException("Failed to save display preferences:", e);
if (transaction != null)
{
transaction.Rollback();
}
2013-05-28 17:32:50 +00:00
throw;
}
finally
{
if (transaction != null)
{
transaction.Dispose();
}
_writeLock.Release();
}
2013-02-21 01:33:05 +00:00
}
/// <summary>
/// Gets the display preferences.
2013-02-21 01:33:05 +00:00
/// </summary>
/// <param name="displayPreferencesId">The display preferences id.</param>
/// <returns>Task{DisplayPreferences}.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
public async Task<DisplayPreferences> GetDisplayPreferences(Guid displayPreferencesId)
2013-02-21 01:33:05 +00:00
{
if (displayPreferencesId == Guid.Empty)
2013-02-21 01:33:05 +00:00
{
throw new ArgumentNullException("displayPreferencesId");
2013-02-21 01:33:05 +00:00
}
var cmd = Connection.CreateCommand();
cmd.CommandText = "select data from displaypreferences where id = @id";
var idParam = cmd.Parameters.Add("@id", DbType.Guid);
idParam.Value = displayPreferencesId;
2013-02-21 01:33:05 +00:00
using (var reader = await cmd.ExecuteReaderAsync(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult | CommandBehavior.SingleRow).ConfigureAwait(false))
2013-02-21 01:33:05 +00:00
{
if (reader.Read())
2013-02-21 01:33:05 +00:00
{
using (var stream = GetStream(reader, 0))
{
2013-04-07 22:09:48 +00:00
return _jsonSerializer.DeserializeFromStream<DisplayPreferences>(stream);
2013-02-21 01:33:05 +00:00
}
}
}
return null;
2013-02-21 01:33:05 +00:00
}
}
}