jellyfin/MediaBrowser.Server.Implementations/Persistence/SqliteUserDataRepository.cs

299 lines
10 KiB
C#
Raw Normal View History

2013-06-17 22:35:43 +02:00
using MediaBrowser.Common.Configuration;
2013-02-21 05:37:50 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Persistence;
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;
2013-06-18 11:43:07 +02:00
using System.Data;
2013-02-21 02:33:05 +01:00
using System.IO;
using System.Threading;
using System.Threading.Tasks;
2013-06-17 22:35:43 +02:00
namespace MediaBrowser.Server.Implementations.Persistence
2013-02-21 02:33:05 +01:00
{
2013-06-18 21:16:27 +02:00
public class SqliteUserDataRepository : IUserDataRepository
2013-02-21 02:33:05 +01:00
{
2013-06-18 21:16:27 +02:00
private readonly ILogger _logger;
2013-09-27 17:23:27 +02:00
2013-06-18 11:43:07 +02:00
private readonly SemaphoreSlim _writeLock = new SemaphoreSlim(1, 1);
2013-09-29 17:32:50 +02:00
private IDbConnection _connection;
2013-09-27 17:23:27 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the name of the repository
/// </summary>
/// <value>The name.</value>
public string Name
{
get
{
2013-06-18 21:16:27 +02:00
return "SQLite";
2013-02-21 02:33:05 +01:00
}
}
2013-06-18 11:43:07 +02:00
/// <summary>
/// The _app paths
/// </summary>
private readonly IApplicationPaths _appPaths;
2013-02-24 22:53:54 +01:00
2013-02-21 21:26:35 +01:00
/// <summary>
2013-12-06 04:39:44 +01:00
/// Initializes a new instance of the <see cref="SqliteUserDataRepository" /> class.
2013-02-21 21:26:35 +01:00
/// </summary>
2013-02-24 22:53:54 +01:00
/// <param name="appPaths">The app paths.</param>
2013-04-03 04:59:27 +02:00
/// <param name="logManager">The log manager.</param>
2013-12-06 04:39:44 +01:00
/// <exception cref="System.ArgumentNullException">jsonSerializer
2013-04-18 21:57:28 +02:00
/// or
2013-12-06 04:39:44 +01:00
/// appPaths</exception>
public SqliteUserDataRepository(IApplicationPaths appPaths, ILogManager logManager)
2013-02-21 21:26:35 +01:00
{
2013-02-24 22:53:54 +01:00
if (appPaths == null)
{
throw new ArgumentNullException("appPaths");
}
2013-06-18 11:43:07 +02:00
_appPaths = appPaths;
2013-06-18 21:16:27 +02:00
_logger = logManager.GetLogger(GetType().Name);
2013-02-21 21:26:35 +01:00
}
2013-12-10 17:17:08 +01:00
private SqliteShrinkMemoryTimer _shrinkMemoryTimer;
2013-02-21 02:33:05 +01:00
/// <summary>
/// Opens the connection to the database
/// </summary>
/// <returns>Task.</returns>
2013-06-18 11:43:07 +02:00
public async Task Initialize()
2013-02-21 02:33:05 +01:00
{
2013-09-27 17:23:27 +02:00
var dbFile = Path.Combine(_appPaths.DataPath, "userdata_v2.db");
2013-06-18 11:43:07 +02:00
_connection = await SqliteExtensions.ConnectToDb(dbFile, _logger).ConfigureAwait(false);
2013-06-18 11:43:07 +02:00
string[] queries = {
2013-09-27 17:23:27 +02:00
"create table if not exists userdata (key nvarchar, userId GUID, rating float null, played bit, playCount int, isFavorite bit, playbackPositionTicks bigint, lastPlayedDate datetime null)",
2013-06-18 11:43:07 +02:00
"create unique index if not exists userdataindex on userdata (key, userId)",
2013-09-27 17:23:27 +02:00
2013-06-18 11:43:07 +02:00
//pragmas
2013-12-08 02:42:15 +01:00
"pragma temp_store = memory",
"pragma shrink_memory"
2013-06-18 11:43:07 +02:00
};
2013-06-18 21:16:27 +02:00
_connection.RunQueries(queries, _logger);
2013-12-10 17:17:08 +01:00
_shrinkMemoryTimer = new SqliteShrinkMemoryTimer(_connection, _writeLock, _logger);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Saves the user data.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="userId">The user id.</param>
/// <param name="key">The key.</param>
/// <param name="userData">The user data.</param>
2013-02-21 02:33:05 +01:00
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException">userData
/// or
/// cancellationToken
/// or
/// userId
/// or
/// userDataId</exception>
2013-10-02 18:58:30 +02:00
public Task SaveUserData(Guid userId, string key, UserItemData userData, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
if (userData == null)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException("userData");
2013-02-21 02:33:05 +01:00
}
if (userId == Guid.Empty)
{
throw new ArgumentNullException("userId");
}
if (string.IsNullOrEmpty(key))
{
throw new ArgumentNullException("key");
}
2013-10-02 18:58:30 +02:00
return PersistUserData(userId, key, userData, cancellationToken);
}
/// <summary>
/// Persists the user data.
/// </summary>
/// <param name="userId">The user id.</param>
/// <param name="key">The key.</param>
/// <param name="userData">The user data.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
public async Task PersistUserData(Guid userId, string key, UserItemData userData, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
2013-06-18 11:43:07 +02:00
await _writeLock.WaitAsync(cancellationToken).ConfigureAwait(false);
2013-09-29 17:32:50 +02:00
IDbTransaction transaction = null;
2013-05-28 19:32:50 +02:00
2013-06-17 22:35:43 +02:00
try
{
2013-06-18 21:16:27 +02:00
transaction = _connection.BeginTransaction();
2013-06-18 11:43:07 +02:00
2013-06-18 21:16:27 +02:00
using (var cmd = _connection.CreateCommand())
2013-06-18 11:43:07 +02:00
{
2013-09-27 17:23:27 +02:00
cmd.CommandText = "replace into userdata (key, userId, rating,played,playCount,isFavorite,playbackPositionTicks,lastPlayedDate) values (@key, @userId, @rating,@played,@playCount,@isFavorite,@playbackPositionTicks,@lastPlayedDate)";
2013-09-29 17:32:50 +02:00
cmd.Parameters.Add(cmd, "@key", DbType.String).Value = key;
cmd.Parameters.Add(cmd, "@userId", DbType.Guid).Value = userId;
cmd.Parameters.Add(cmd, "@rating", DbType.Double).Value = userData.Rating;
cmd.Parameters.Add(cmd, "@played", DbType.Boolean).Value = userData.Played;
cmd.Parameters.Add(cmd, "@playCount", DbType.Int32).Value = userData.PlayCount;
cmd.Parameters.Add(cmd, "@isFavorite", DbType.Boolean).Value = userData.IsFavorite;
cmd.Parameters.Add(cmd, "@playbackPositionTicks", DbType.Int64).Value = userData.PlaybackPositionTicks;
cmd.Parameters.Add(cmd, "@lastPlayedDate", DbType.DateTime).Value = userData.LastPlayedDate;
2013-09-27 17:23:27 +02:00
2013-06-18 11:43:07 +02:00
cmd.Transaction = transaction;
2013-09-29 17:32:50 +02:00
cmd.ExecuteNonQuery();
2013-06-18 11:43:07 +02:00
}
transaction.Commit();
}
catch (OperationCanceledException)
{
if (transaction != null)
{
transaction.Rollback();
}
throw;
}
catch (Exception e)
{
2013-06-18 21:16:27 +02:00
_logger.ErrorException("Failed to save user data:", e);
2013-06-18 11:43:07 +02:00
if (transaction != null)
{
transaction.Rollback();
}
throw;
}
finally
{
2013-06-18 11:43:07 +02:00
if (transaction != null)
{
transaction.Dispose();
}
_writeLock.Release();
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the user data.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="userId">The user id.</param>
/// <param name="key">The key.</param>
/// <returns>Task{UserItemData}.</returns>
/// <exception cref="System.ArgumentNullException">
/// userId
/// or
/// key
/// </exception>
2013-06-17 22:35:43 +02:00
public UserItemData GetUserData(Guid userId, string key)
2013-02-21 02:33:05 +01:00
{
if (userId == Guid.Empty)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException("userId");
}
if (string.IsNullOrEmpty(key))
{
throw new ArgumentNullException("key");
2013-02-21 02:33:05 +01:00
}
2013-05-09 22:29:50 +02:00
2013-06-18 21:16:27 +02:00
using (var cmd = _connection.CreateCommand())
{
2013-09-27 17:23:27 +02:00
cmd.CommandText = "select rating,played,playCount,isFavorite,playbackPositionTicks,lastPlayedDate from userdata where key = @key and userId=@userId";
2013-06-18 11:43:07 +02:00
2013-09-29 17:32:50 +02:00
cmd.Parameters.Add(cmd, "@key", DbType.String).Value = key;
cmd.Parameters.Add(cmd, "@userId", DbType.Guid).Value = userId;
2013-06-18 11:43:07 +02:00
2013-09-27 17:23:27 +02:00
var userData = new UserItemData
{
UserId = userId,
Key = key
};
2013-06-18 11:43:07 +02:00
using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult | CommandBehavior.SingleRow))
{
if (reader.Read())
{
2013-09-27 17:23:27 +02:00
if (!reader.IsDBNull(0))
{
userData.Rating = reader.GetDouble(0);
}
userData.Played = reader.GetBoolean(1);
userData.PlayCount = reader.GetInt32(2);
userData.IsFavorite = reader.GetBoolean(3);
userData.PlaybackPositionTicks = reader.GetInt64(4);
if (!reader.IsDBNull(5))
2013-06-18 11:43:07 +02:00
{
2013-12-06 21:07:34 +01:00
userData.LastPlayedDate = reader.GetDateTime(5).ToUniversalTime();
2013-06-18 11:43:07 +02:00
}
}
}
2013-09-27 17:23:27 +02:00
return userData;
}
2013-02-21 02:33:05 +01:00
}
2013-06-18 21:16:27 +02:00
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
private readonly object _disposeLock = new object();
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool dispose)
{
if (dispose)
{
try
{
lock (_disposeLock)
{
2013-12-10 17:17:08 +01:00
if (_shrinkMemoryTimer != null)
{
_shrinkMemoryTimer.Dispose();
_shrinkMemoryTimer = null;
}
2013-06-18 21:16:27 +02:00
if (_connection != null)
{
if (_connection.IsOpen())
{
_connection.Close();
}
_connection.Dispose();
_connection = null;
}
}
}
catch (Exception ex)
{
_logger.ErrorException("Error disposing database", ex);
}
}
}
2013-02-21 02:33:05 +01:00
}
2013-05-09 22:29:50 +02:00
}