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

192 lines
6.6 KiB
C#
Raw Normal View History

2013-03-04 06:43:06 +01:00
using MediaBrowser.Common.Configuration;
2013-02-21 05:37:50 +01:00
using MediaBrowser.Controller.Persistence;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
2013-02-21 21:26:35 +01:00
using MediaBrowser.Model.Logging;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
using System;
using System.Data;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Server.Implementations.Sqlite
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class SQLiteDisplayPreferencesRepository
/// </summary>
class SQLiteDisplayPreferencesRepository : SqliteRepository, IDisplayPreferencesRepository
{
/// <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-04-05 22:49:14 +02:00
/// <summary>
/// Gets a value indicating whether [enable delayed commands].
/// </summary>
/// <value><c>true</c> if [enable delayed commands]; otherwise, <c>false</c>.</value>
protected override bool EnableDelayedCommands
{
get
{
return false;
}
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// The _protobuf serializer
/// </summary>
2013-04-08 00:09:48 +02:00
private readonly IJsonSerializer _jsonSerializer;
2013-02-24 22:53:54 +01:00
/// <summary>
/// The _app paths
/// </summary>
private readonly IApplicationPaths _appPaths;
2013-02-21 21:26:35 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="SQLiteUserDataRepository" /> class.
/// </summary>
2013-02-24 22:53:54 +01:00
/// <param name="appPaths">The app paths.</param>
2013-04-08 00:09:48 +02:00
/// <param name="jsonSerializer">The json serializer.</param>
2013-04-03 04:59:27 +02:00
/// <param name="logManager">The log manager.</param>
2013-02-24 22:53:54 +01:00
/// <exception cref="System.ArgumentNullException">protobufSerializer</exception>
2013-04-08 00:09:48 +02:00
public SQLiteDisplayPreferencesRepository(IApplicationPaths appPaths, IJsonSerializer jsonSerializer, ILogManager logManager)
2013-04-03 04:59:27 +02:00
: base(logManager)
2013-02-21 21:26:35 +01:00
{
2013-04-08 00:09:48 +02:00
if (jsonSerializer == null)
2013-02-24 22:53:54 +01:00
{
2013-04-08 00:09:48 +02:00
throw new ArgumentNullException("jsonSerializer");
2013-02-24 22:53:54 +01:00
}
if (appPaths == null)
{
throw new ArgumentNullException("appPaths");
}
2013-04-08 00:09:48 +02:00
_jsonSerializer = jsonSerializer;
2013-02-24 22:53:54 +01:00
_appPaths = appPaths;
2013-02-21 21:26:35 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Opens the connection to the database
/// </summary>
/// <returns>Task.</returns>
public async Task Initialize()
{
2013-02-24 22:53:54 +01:00
var dbFile = Path.Combine(_appPaths.DataPath, "displaypreferences.db");
2013-02-21 02:33:05 +01:00
await ConnectToDB(dbFile).ConfigureAwait(false);
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 02:33:05 +01: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 02:33:05 +01:00
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
2013-04-05 22:24:46 +02:00
public async Task SaveDisplayPreferences(DisplayPreferences displayPreferences, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
if (displayPreferences == null)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException("displayPreferences");
2013-02-21 02:33:05 +01:00
}
if (displayPreferences.Id == Guid.Empty)
{
throw new ArgumentNullException("displayPreferences.Id");
}
if (cancellationToken == null)
{
throw new ArgumentNullException("cancellationToken");
}
2013-02-21 21:26:35 +01:00
2013-02-21 02:33:05 +01:00
cancellationToken.ThrowIfCancellationRequested();
2013-04-08 00:09:48 +02:00
var serialized = _jsonSerializer.SerializeToBytes(displayPreferences);
2013-04-05 22:24:46 +02:00
cancellationToken.ThrowIfCancellationRequested();
var cmd = connection.CreateCommand();
cmd.CommandText = "replace into displaypreferences (id, data) values (@1, @2)";
cmd.AddParam("@1", displayPreferences.Id);
cmd.AddParam("@2", serialized);
2013-02-21 02:33:05 +01:00
2013-04-05 22:24:46 +02:00
using (var tran = connection.BeginTransaction())
{
try
{
cmd.Transaction = tran;
await cmd.ExecuteNonQueryAsync(cancellationToken);
tran.Commit();
}
catch (OperationCanceledException)
{
tran.Rollback();
}
catch (Exception e)
{
Logger.ErrorException("Failed to commit transaction.", e);
tran.Rollback();
}
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the display preferences.
2013-02-21 02:33:05 +01: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 02:33:05 +01:00
{
if (displayPreferencesId == Guid.Empty)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException("displayPreferencesId");
2013-02-21 02:33:05 +01: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 02:33:05 +01:00
using (var reader = await cmd.ExecuteReaderAsync(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult | CommandBehavior.SingleRow).ConfigureAwait(false))
2013-02-21 02:33:05 +01:00
{
if (reader.Read())
2013-02-21 02:33:05 +01:00
{
using (var stream = GetStream(reader, 0))
{
2013-04-08 00:09:48 +02:00
return _jsonSerializer.DeserializeFromStream<DisplayPreferences>(stream);
2013-02-21 02:33:05 +01:00
}
}
}
return null;
2013-02-21 02:33:05 +01:00
}
}
}