aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sqlite
diff options
context:
space:
mode:
authorTechywarrior <techywarrior@gmail.com>2013-04-05 19:45:32 -0700
committerTechywarrior <techywarrior@gmail.com>2013-04-05 19:45:32 -0700
commit51b71afd5cfcaa6db606073a24c4c891cdf46cb3 (patch)
treeb801589b7e167125b7fae7add6b9a914daeeaa10 /MediaBrowser.Server.Implementations/Sqlite
parent7c3f257581344aadf6f697f3159becbd613db7e2 (diff)
parent9c7f492e2cd3b940d8041e6949cea9898a057826 (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sqlite')
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs82
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs50
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs51
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteUserRepository.cs53
4 files changed, 167 insertions, 69 deletions
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
index 8a15d4028e..f471365ce2 100644
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
@@ -34,6 +34,18 @@ namespace MediaBrowser.Server.Implementations.Sqlite
}
/// <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;
+ }
+ }
+
+ /// <summary>
/// The _protobuf serializer
/// </summary>
private readonly IProtobufSerializer _protobufSerializer;
@@ -78,8 +90,8 @@ namespace MediaBrowser.Server.Implementations.Sqlite
string[] queries = {
- "create table if not exists displaypreferences (id GUID, userId GUID, data BLOB)",
- "create unique index if not exists displaypreferencesindex on displaypreferences (id, userId)",
+ "create table if not exists displaypreferences (id GUID, data BLOB)",
+ "create unique index if not exists displaypreferencesindex on displaypreferences (id)",
"create table if not exists schema_version (table_name primary key, version)",
//pragmas
"pragma temp_store = memory"
@@ -91,75 +103,77 @@ namespace MediaBrowser.Server.Implementations.Sqlite
/// <summary>
/// Save the display preferences associated with an item in the repo
/// </summary>
- /// <param name="userId">The user id.</param>
- /// <param name="displayPreferencesId">The display preferences id.</param>
/// <param name="displayPreferences">The display preferences.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
- public Task SaveDisplayPreferences(Guid userId, Guid displayPreferencesId, DisplayPreferences displayPreferences, CancellationToken cancellationToken)
+ public async Task SaveDisplayPreferences(DisplayPreferences displayPreferences, CancellationToken cancellationToken)
{
if (displayPreferences == null)
{
throw new ArgumentNullException("displayPreferences");
}
- if (cancellationToken == null)
- {
- throw new ArgumentNullException("cancellationToken");
- }
- if (userId == Guid.Empty)
+ if (displayPreferences.Id == Guid.Empty)
{
- throw new ArgumentNullException("userId");
+ throw new ArgumentNullException("displayPreferences.Id");
}
- if (displayPreferencesId == Guid.Empty)
+ if (cancellationToken == null)
{
- throw new ArgumentNullException("displayPreferencesId");
+ throw new ArgumentNullException("cancellationToken");
}
cancellationToken.ThrowIfCancellationRequested();
-
- return Task.Run(() =>
+
+ var serialized = _protobufSerializer.SerializeToBytes(displayPreferences);
+
+ 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);
+
+ using (var tran = connection.BeginTransaction())
{
- var serialized = _protobufSerializer.SerializeToBytes(displayPreferences);
+ try
+ {
+ cmd.Transaction = tran;
- cancellationToken.ThrowIfCancellationRequested();
+ await cmd.ExecuteNonQueryAsync(cancellationToken);
- var cmd = connection.CreateCommand();
- cmd.CommandText = "replace into displaypreferences (id, userId, data) values (@1, @2, @3)";
- cmd.AddParam("@1", displayPreferencesId);
- cmd.AddParam("@2", userId);
- cmd.AddParam("@3", serialized);
- QueueCommand(cmd);
- });
+ tran.Commit();
+ }
+ catch (OperationCanceledException)
+ {
+ tran.Rollback();
+ }
+ catch (Exception e)
+ {
+ Logger.ErrorException("Failed to commit transaction.", e);
+ tran.Rollback();
+ }
+ }
}
/// <summary>
/// Gets the display preferences.
/// </summary>
- /// <param name="userId">The user id.</param>
/// <param name="displayPreferencesId">The display preferences id.</param>
/// <returns>Task{DisplayPreferences}.</returns>
/// <exception cref="System.ArgumentNullException">item</exception>
- public async Task<DisplayPreferences> GetDisplayPreferences(Guid userId, Guid displayPreferencesId)
+ public async Task<DisplayPreferences> GetDisplayPreferences(Guid displayPreferencesId)
{
- if (userId == Guid.Empty)
- {
- throw new ArgumentNullException("userId");
- }
if (displayPreferencesId == Guid.Empty)
{
throw new ArgumentNullException("displayPreferencesId");
}
var cmd = connection.CreateCommand();
- cmd.CommandText = "select data from displaypreferences where id = @id and userId=@userId";
+ cmd.CommandText = "select data from displaypreferences where id = @id";
var idParam = cmd.Parameters.Add("@id", DbType.Guid);
idParam.Value = displayPreferencesId;
- var userIdParam = cmd.Parameters.Add("@userId", DbType.Guid);
- userIdParam.Value = userId;
-
using (var reader = await cmd.ExecuteReaderAsync(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult | CommandBehavior.SingleRow).ConfigureAwait(false))
{
if (reader.Read())
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs
index c5320a1f62..e722ac3dc8 100644
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs
@@ -30,7 +30,7 @@ namespace MediaBrowser.Server.Implementations.Sqlite
/// <summary>
/// The flush interval
/// </summary>
- private const int FlushInterval = 5000;
+ private const int FlushInterval = 2000;
/// <summary>
/// The flush timer
@@ -44,6 +44,18 @@ namespace MediaBrowser.Server.Implementations.Sqlite
protected ILogger Logger { get; private set; }
/// <summary>
+ /// Gets a value indicating whether [enable delayed commands].
+ /// </summary>
+ /// <value><c>true</c> if [enable delayed commands]; otherwise, <c>false</c>.</value>
+ protected virtual bool EnableDelayedCommands
+ {
+ get
+ {
+ return true;
+ }
+ }
+
+ /// <summary>
/// Initializes a new instance of the <see cref="SqliteRepository" /> class.
/// </summary>
/// <param name="logManager">The log manager.</param>
@@ -85,8 +97,11 @@ namespace MediaBrowser.Server.Implementations.Sqlite
await connection.OpenAsync().ConfigureAwait(false);
- // Run once
- FlushTimer = new Timer(Flush, null, TimeSpan.FromMilliseconds(FlushInterval), TimeSpan.FromMilliseconds(-1));
+ if (EnableDelayedCommands)
+ {
+ // Run once
+ FlushTimer = new Timer(Flush, null, TimeSpan.FromMilliseconds(FlushInterval), TimeSpan.FromMilliseconds(-1));
+ }
}
/// <summary>
@@ -147,16 +162,9 @@ namespace MediaBrowser.Server.Implementations.Sqlite
{
if (connection != null)
{
- // If we're not already flushing, do it now
- if (!IsFlushing)
- {
- Flush(null);
- }
-
- // Don't dispose in the middle of a flush
- while (IsFlushing)
+ if (EnableDelayedCommands)
{
- Thread.Sleep(25);
+ FlushOnDispose();
}
if (connection.IsOpen())
@@ -182,6 +190,24 @@ namespace MediaBrowser.Server.Implementations.Sqlite
}
/// <summary>
+ /// Flushes the on dispose.
+ /// </summary>
+ private void FlushOnDispose()
+ {
+ // If we're not already flushing, do it now
+ if (!IsFlushing)
+ {
+ Flush(null);
+ }
+
+ // Don't dispose in the middle of a flush
+ while (IsFlushing)
+ {
+ Thread.Sleep(25);
+ }
+ }
+
+ /// <summary>
/// Queues the command.
/// </summary>
/// <param name="cmd">The CMD.</param>
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
index 2c8d7f437f..b2e11d06f3 100644
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
@@ -35,6 +35,18 @@ namespace MediaBrowser.Server.Implementations.Sqlite
}
/// <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;
+ }
+ }
+
+ /// <summary>
/// The _protobuf serializer
/// </summary>
private readonly IProtobufSerializer _protobufSerializer;
@@ -106,7 +118,7 @@ namespace MediaBrowser.Server.Implementations.Sqlite
/// or
/// userDataId
/// </exception>
- public Task SaveUserData(Guid userId, Guid userDataId, UserItemData userData, CancellationToken cancellationToken)
+ public async Task SaveUserData(Guid userId, Guid userDataId, UserItemData userData, CancellationToken cancellationToken)
{
if (userData == null)
{
@@ -127,19 +139,36 @@ namespace MediaBrowser.Server.Implementations.Sqlite
cancellationToken.ThrowIfCancellationRequested();
- return Task.Run(() =>
+ var serialized = _protobufSerializer.SerializeToBytes(userData);
+
+ cancellationToken.ThrowIfCancellationRequested();
+
+ var cmd = connection.CreateCommand();
+ cmd.CommandText = "replace into userdata (id, userId, data) values (@1, @2, @3)";
+ cmd.AddParam("@1", userDataId);
+ cmd.AddParam("@2", userId);
+ cmd.AddParam("@3", serialized);
+
+ using (var tran = connection.BeginTransaction())
{
- var serialized = _protobufSerializer.SerializeToBytes(userData);
+ try
+ {
+ cmd.Transaction = tran;
- cancellationToken.ThrowIfCancellationRequested();
+ await cmd.ExecuteNonQueryAsync(cancellationToken);
- var cmd = connection.CreateCommand();
- cmd.CommandText = "replace into userdata (id, userId, data) values (@1, @2, @3)";
- cmd.AddParam("@1", userDataId);
- cmd.AddParam("@2", userId);
- cmd.AddParam("@3", serialized);
- QueueCommand(cmd);
- });
+ tran.Commit();
+ }
+ catch (OperationCanceledException)
+ {
+ tran.Rollback();
+ }
+ catch (Exception e)
+ {
+ Logger.ErrorException("Failed to commit transaction.", e);
+ tran.Rollback();
+ }
+ }
}
/// <summary>
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserRepository.cs
index 812c98789f..f55b13d196 100644
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserRepository.cs
@@ -46,6 +46,18 @@ namespace MediaBrowser.Server.Implementations.Sqlite
private readonly IApplicationPaths _appPaths;
/// <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;
+ }
+ }
+
+ /// <summary>
/// Initializes a new instance of the <see cref="SQLiteUserDataRepository" /> class.
/// </summary>
/// <param name="appPaths">The app paths.</param>
@@ -97,7 +109,7 @@ namespace MediaBrowser.Server.Implementations.Sqlite
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException">user</exception>
- public Task SaveUser(User user, CancellationToken cancellationToken)
+ public async Task SaveUser(User user, CancellationToken cancellationToken)
{
if (user == null)
{
@@ -109,20 +121,37 @@ namespace MediaBrowser.Server.Implementations.Sqlite
throw new ArgumentNullException("cancellationToken");
}
- return Task.Run(() =>
- {
- cancellationToken.ThrowIfCancellationRequested();
+ cancellationToken.ThrowIfCancellationRequested();
- var serialized = _jsonSerializer.SerializeToBytes(user);
+ var serialized = _jsonSerializer.SerializeToBytes(user);
- cancellationToken.ThrowIfCancellationRequested();
+ cancellationToken.ThrowIfCancellationRequested();
- var cmd = connection.CreateCommand();
- cmd.CommandText = "replace into users (guid, data) values (@1, @2)";
- cmd.AddParam("@1", user.Id);
- cmd.AddParam("@2", serialized);
- QueueCommand(cmd);
- });
+ var cmd = connection.CreateCommand();
+ cmd.CommandText = "replace into users (guid, data) values (@1, @2)";
+ cmd.AddParam("@1", user.Id);
+ cmd.AddParam("@2", serialized);
+
+ 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();
+ }
+ }
}
/// <summary>