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

249 lines
7.5 KiB
C#
Raw Normal View History

2015-05-02 22:59:01 +00:00
using MediaBrowser.Common.Configuration;
2014-01-29 05:17:58 +00:00
using MediaBrowser.Controller.Providers;
2013-12-06 20:07:34 +00:00
using MediaBrowser.Model.Logging;
using System;
using System.Data;
2014-02-08 20:02:35 +00:00
using System.IO;
2013-12-06 20:07:34 +00:00
using System.Linq;
2015-05-02 22:59:01 +00:00
using System.Text;
2013-12-06 20:07:34 +00:00
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Persistence
{
2015-05-02 22:59:01 +00:00
public class SqliteProviderInfoRepository : BaseSqliteRepository, IProviderRepository
2013-12-06 20:07:34 +00:00
{
private IDbConnection _connection;
2014-01-29 05:17:58 +00:00
private IDbCommand _saveStatusCommand;
private readonly IApplicationPaths _appPaths;
2013-12-06 20:07:34 +00:00
2015-05-02 22:59:01 +00:00
public SqliteProviderInfoRepository(ILogManager logManager, IApplicationPaths appPaths) : base(logManager)
2013-12-06 20:07:34 +00:00
{
2014-01-29 05:17:58 +00:00
_appPaths = appPaths;
2013-12-06 20:07:34 +00:00
}
2014-01-29 05:17:58 +00:00
/// <summary>
/// Gets the name of the repository
/// </summary>
/// <value>The name.</value>
public string Name
{
get
{
return "SQLite";
}
}
2013-12-06 20:07:34 +00:00
/// <summary>
/// Opens the connection to the database
/// </summary>
/// <returns>Task.</returns>
2014-01-29 05:17:58 +00:00
public async Task Initialize()
2013-12-06 20:07:34 +00:00
{
2014-02-08 20:02:35 +00:00
var dbFile = Path.Combine(_appPaths.DataPath, "refreshinfo.db");
2013-12-06 20:07:34 +00:00
2015-05-02 22:59:01 +00:00
_connection = await SqliteExtensions.ConnectToDb(dbFile, Logger).ConfigureAwait(false);
2013-12-06 20:07:34 +00:00
string[] queries = {
2015-11-23 20:09:55 +00:00
"create table if not exists MetadataStatus (ItemId GUID PRIMARY KEY, DateLastMetadataRefresh datetime, DateLastImagesRefresh datetime, ItemDateModified DateTimeNull)",
2014-01-29 05:17:58 +00:00
"create index if not exists idx_MetadataStatus on MetadataStatus(ItemId)",
2013-12-06 20:07:34 +00:00
//pragmas
2013-12-08 01:42:15 +00:00
"pragma temp_store = memory",
"pragma shrink_memory"
2013-12-06 20:07:34 +00:00
};
2015-05-02 22:59:01 +00:00
_connection.RunQueries(queries, Logger);
2013-12-06 20:07:34 +00:00
2014-09-11 01:57:11 +00:00
AddItemDateModifiedCommand();
2013-12-06 20:07:34 +00:00
PrepareStatements();
}
2014-01-29 05:17:58 +00:00
private static readonly string[] StatusColumns =
{
"ItemId",
"DateLastMetadataRefresh",
"DateLastImagesRefresh",
2014-09-11 01:57:11 +00:00
"ItemDateModified"
2014-01-29 05:17:58 +00:00
};
2013-12-06 20:07:34 +00:00
2014-09-11 01:57:11 +00:00
private void AddItemDateModifiedCommand()
{
using (var cmd = _connection.CreateCommand())
{
cmd.CommandText = "PRAGMA table_info(MetadataStatus)";
using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult))
{
while (reader.Read())
{
if (!reader.IsDBNull(1))
{
var name = reader.GetString(1);
if (string.Equals(name, "ItemDateModified", StringComparison.OrdinalIgnoreCase))
{
return;
}
}
}
}
}
var builder = new StringBuilder();
builder.AppendLine("alter table MetadataStatus");
builder.AppendLine("add column ItemDateModified DateTime NULL");
2015-05-02 22:59:01 +00:00
_connection.RunQueries(new[] { builder.ToString() }, Logger);
2014-09-11 01:57:11 +00:00
}
2013-12-06 20:07:34 +00:00
/// <summary>
/// Prepares the statements.
/// </summary>
private void PrepareStatements()
{
2014-01-29 05:17:58 +00:00
_saveStatusCommand = _connection.CreateCommand();
_saveStatusCommand.CommandText = string.Format("replace into MetadataStatus ({0}) values ({1})",
string.Join(",", StatusColumns),
string.Join(",", StatusColumns.Select(i => "@" + i).ToArray()));
foreach (var col in StatusColumns)
{
_saveStatusCommand.Parameters.Add(_saveStatusCommand, "@" + col);
}
2013-12-06 20:07:34 +00:00
}
2014-01-29 05:17:58 +00:00
public MetadataStatus GetMetadataStatus(Guid itemId)
{
if (itemId == Guid.Empty)
{
throw new ArgumentNullException("itemId");
}
using (var cmd = _connection.CreateCommand())
{
var cmdText = "select " + string.Join(",", StatusColumns) + " from MetadataStatus where";
cmdText += " ItemId=@ItemId";
cmd.Parameters.Add(cmd, "@ItemId", DbType.Guid).Value = itemId;
cmd.CommandText = cmdText;
using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult | CommandBehavior.SingleRow))
{
while (reader.Read())
{
return GetStatus(reader);
}
return null;
}
}
}
private MetadataStatus GetStatus(IDataReader reader)
{
var result = new MetadataStatus
{
ItemId = reader.GetGuid(0)
};
if (!reader.IsDBNull(1))
{
2015-11-23 20:09:55 +00:00
result.DateLastMetadataRefresh = reader.GetDateTime(1).ToUniversalTime();
2014-01-29 05:17:58 +00:00
}
if (!reader.IsDBNull(2))
{
2015-11-23 20:09:55 +00:00
result.DateLastImagesRefresh = reader.GetDateTime(2).ToUniversalTime();
2014-01-29 05:17:58 +00:00
}
if (!reader.IsDBNull(3))
{
2015-11-23 20:09:55 +00:00
result.ItemDateModified = reader.GetDateTime(3).ToUniversalTime();
2014-09-11 01:57:11 +00:00
}
2014-01-29 05:17:58 +00:00
return result;
}
public async Task SaveMetadataStatus(MetadataStatus status, CancellationToken cancellationToken)
{
if (status == null)
{
throw new ArgumentNullException("status");
}
cancellationToken.ThrowIfCancellationRequested();
2015-05-02 22:59:01 +00:00
await WriteLock.WaitAsync(cancellationToken).ConfigureAwait(false);
2014-01-29 05:17:58 +00:00
IDbTransaction transaction = null;
try
{
transaction = _connection.BeginTransaction();
_saveStatusCommand.GetParameter(0).Value = status.ItemId;
2015-11-23 20:09:55 +00:00
_saveStatusCommand.GetParameter(1).Value = status.DateLastMetadataRefresh;
_saveStatusCommand.GetParameter(2).Value = status.DateLastImagesRefresh;
_saveStatusCommand.GetParameter(3).Value = status.ItemDateModified;
2014-01-29 05:17:58 +00:00
_saveStatusCommand.Transaction = transaction;
_saveStatusCommand.ExecuteNonQuery();
transaction.Commit();
}
catch (OperationCanceledException)
{
if (transaction != null)
{
transaction.Rollback();
}
throw;
}
catch (Exception e)
{
2015-05-02 22:59:01 +00:00
Logger.ErrorException("Failed to save provider info:", e);
2013-12-06 20:07:34 +00:00
if (transaction != null)
{
transaction.Rollback();
}
throw;
}
finally
{
if (transaction != null)
{
transaction.Dispose();
}
2015-05-02 22:59:01 +00:00
WriteLock.Release();
2013-12-06 20:07:34 +00:00
}
}
2015-05-02 22:59:01 +00:00
protected override void CloseConnection()
2013-12-06 20:07:34 +00:00
{
2015-05-02 22:59:01 +00:00
if (_connection != null)
2013-12-06 20:07:34 +00:00
{
2015-05-02 22:59:01 +00:00
if (_connection.IsOpen())
2013-12-06 20:07:34 +00:00
{
2015-05-02 22:59:01 +00:00
_connection.Close();
2013-12-06 20:07:34 +00:00
}
2015-05-02 22:59:01 +00:00
_connection.Dispose();
_connection = null;
2013-12-06 20:07:34 +00:00
}
}
}
}