123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Persistence;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.Serialization;
- using MediaBrowser.Server.Implementations.Reflection;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Data.SQLite;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- namespace MediaBrowser.Server.Implementations.Sqlite
- {
- /// <summary>
- /// Class SQLiteItemRepository
- /// </summary>
- public class SQLiteItemRepository : SqliteRepository, IItemRepository
- {
- /// <summary>
- /// The _type mapper
- /// </summary>
- private readonly TypeMapper _typeMapper = new TypeMapper();
- /// <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;
- }
- }
- /// <summary>
- /// Gets the json serializer.
- /// </summary>
- /// <value>The json serializer.</value>
- private readonly IJsonSerializer _jsonSerializer;
- /// <summary>
- /// The _app paths
- /// </summary>
- private readonly IApplicationPaths _appPaths;
- /// <summary>
- /// The _save item command
- /// </summary>
- private SQLiteCommand _saveItemCommand;
- /// <summary>
- /// The _delete children command
- /// </summary>
- private SQLiteCommand _deleteChildrenCommand;
- /// <summary>
- /// The _save children command
- /// </summary>
- private SQLiteCommand _saveChildrenCommand;
- /// <summary>
- /// Initializes a new instance of the <see cref="SQLiteUserDataRepository" /> class.
- /// </summary>
- /// <param name="appPaths">The app paths.</param>
- /// <param name="jsonSerializer">The json serializer.</param>
- /// <param name="logManager">The log manager.</param>
- /// <exception cref="System.ArgumentNullException">appPaths</exception>
- public SQLiteItemRepository(IApplicationPaths appPaths, IJsonSerializer jsonSerializer, ILogManager logManager)
- : base(logManager)
- {
- if (appPaths == null)
- {
- throw new ArgumentNullException("appPaths");
- }
- if (jsonSerializer == null)
- {
- throw new ArgumentNullException("jsonSerializer");
- }
- _appPaths = appPaths;
- _jsonSerializer = jsonSerializer;
- }
- /// <summary>
- /// Opens the connection to the database
- /// </summary>
- /// <returns>Task.</returns>
- public async Task Initialize()
- {
- var dbFile = Path.Combine(_appPaths.DataPath, "library.db");
- await ConnectToDb(dbFile).ConfigureAwait(false);
- string[] queries = {
- "create table if not exists items (guid GUID primary key, obj_type, data BLOB)",
- "create index if not exists idx_items on items(guid)",
- "create table if not exists children (guid GUID, child GUID)",
- "create unique index if not exists idx_children on children(guid, child)",
- "create table if not exists schema_version (table_name primary key, version)",
- //triggers
- TriggerSql,
- //pragmas
- "pragma temp_store = memory"
- };
- RunQueries(queries);
- PrepareStatements();
- }
- //cascade delete triggers
- /// <summary>
- /// The trigger SQL
- /// </summary>
- protected string TriggerSql =
- @"CREATE TRIGGER if not exists delete_item
- AFTER DELETE
- ON items
- FOR EACH ROW
- BEGIN
- DELETE FROM children WHERE children.guid = old.child;
- DELETE FROM children WHERE children.child = old.child;
- END";
- /// <summary>
- /// The _write lock
- /// </summary>
- private readonly SemaphoreSlim _writeLock = new SemaphoreSlim(1, 1);
- /// <summary>
- /// Prepares the statements.
- /// </summary>
- private void PrepareStatements()
- {
- _saveItemCommand = new SQLiteCommand
- {
- CommandText = "replace into items (guid, obj_type, data) values (@1, @2, @3)"
- };
- _saveItemCommand.Parameters.Add(new SQLiteParameter("@1"));
- _saveItemCommand.Parameters.Add(new SQLiteParameter("@2"));
- _saveItemCommand.Parameters.Add(new SQLiteParameter("@3"));
- _deleteChildrenCommand = new SQLiteCommand
- {
- CommandText = "delete from children where guid = @guid"
- };
- _deleteChildrenCommand.Parameters.Add(new SQLiteParameter("@guid"));
- _saveChildrenCommand = new SQLiteCommand
- {
- CommandText = "replace into children (guid, child) values (@guid, @child)"
- };
- _saveChildrenCommand.Parameters.Add(new SQLiteParameter("@guid"));
- _saveChildrenCommand.Parameters.Add(new SQLiteParameter("@child"));
- }
- /// <summary>
- /// Save a standard item in the repo
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">item</exception>
- public Task SaveItem(BaseItem item, CancellationToken cancellationToken)
- {
- if (item == null)
- {
- throw new ArgumentNullException("item");
- }
- return SaveItems(new[] { item }, cancellationToken);
- }
- /// <summary>
- /// Saves the items.
- /// </summary>
- /// <param name="items">The items.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">
- /// items
- /// or
- /// cancellationToken
- /// </exception>
- public async Task SaveItems(IEnumerable<BaseItem> items, CancellationToken cancellationToken)
- {
- if (items == null)
- {
- throw new ArgumentNullException("items");
- }
- if (cancellationToken == null)
- {
- throw new ArgumentNullException("cancellationToken");
- }
- cancellationToken.ThrowIfCancellationRequested();
- await _writeLock.WaitAsync(cancellationToken).ConfigureAwait(false);
- SQLiteTransaction transaction = null;
- try
- {
- transaction = Connection.BeginTransaction();
- foreach (var item in items)
- {
- cancellationToken.ThrowIfCancellationRequested();
-
- _saveItemCommand.Parameters[0].Value = item.Id;
- _saveItemCommand.Parameters[1].Value = item.GetType().FullName;
- _saveItemCommand.Parameters[2].Value = _jsonSerializer.SerializeToBytes(item);
- _saveItemCommand.Transaction = transaction;
- await _saveItemCommand.ExecuteNonQueryAsync(cancellationToken);
- }
-
- transaction.Commit();
- }
- catch (OperationCanceledException)
- {
- if (transaction != null)
- {
- transaction.Rollback();
- }
- throw;
- }
- catch (Exception e)
- {
- Logger.ErrorException("Failed to save items:", e);
- if (transaction != null)
- {
- transaction.Rollback();
- }
- throw;
- }
- finally
- {
- if (transaction != null)
- {
- transaction.Dispose();
- }
- _writeLock.Release();
- }
- }
- /// <summary>
- /// Retrieve a standard item from the repo
- /// </summary>
- /// <param name="id">The id.</param>
- /// <returns>BaseItem.</returns>
- /// <exception cref="System.ArgumentNullException">id</exception>
- /// <exception cref="System.ArgumentException"></exception>
- public BaseItem GetItem(Guid id)
- {
- if (id == Guid.Empty)
- {
- throw new ArgumentNullException("id");
- }
- return RetrieveItemInternal(id);
- }
- /// <summary>
- /// Retrieves the items.
- /// </summary>
- /// <param name="ids">The ids.</param>
- /// <returns>IEnumerable{BaseItem}.</returns>
- /// <exception cref="System.ArgumentNullException">ids</exception>
- public IEnumerable<BaseItem> GetItems(IEnumerable<Guid> ids)
- {
- if (ids == null)
- {
- throw new ArgumentNullException("ids");
- }
- return ids.Select(RetrieveItemInternal);
- }
- /// <summary>
- /// Internal retrieve from items or users table
- /// </summary>
- /// <param name="id">The id.</param>
- /// <returns>BaseItem.</returns>
- /// <exception cref="System.ArgumentNullException">id</exception>
- /// <exception cref="System.ArgumentException"></exception>
- protected BaseItem RetrieveItemInternal(Guid id)
- {
- if (id == Guid.Empty)
- {
- throw new ArgumentNullException("id");
- }
- using (var cmd = Connection.CreateCommand())
- {
- cmd.CommandText = "select obj_type,data from items where guid = @guid";
- var guidParam = cmd.Parameters.Add("@guid", DbType.Guid);
- guidParam.Value = id;
- using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult | CommandBehavior.SingleRow))
- {
- if (reader.Read())
- {
- var type = reader.GetString(0);
- using (var stream = GetStream(reader, 1))
- {
- var itemType = _typeMapper.GetType(type);
- if (itemType == null)
- {
- Logger.Error("Cannot find type {0}. Probably belongs to plug-in that is no longer loaded.", type);
- return null;
- }
- var item = _jsonSerializer.DeserializeFromStream(stream, itemType);
- return item as BaseItem;
- }
- }
- }
- return null;
- }
- }
- /// <summary>
- /// Retrieve all the children of the given folder
- /// </summary>
- /// <param name="parent">The parent.</param>
- /// <returns>IEnumerable{BaseItem}.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- public IEnumerable<BaseItem> RetrieveChildren(Folder parent)
- {
- if (parent == null)
- {
- throw new ArgumentNullException();
- }
- using (var cmd = Connection.CreateCommand())
- {
- cmd.CommandText = "select obj_type,data from items where guid in (select child from children where guid = @guid)";
- var guidParam = cmd.Parameters.Add("@guid", DbType.Guid);
- guidParam.Value = parent.Id;
- using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult))
- {
- while (reader.Read())
- {
- var type = reader.GetString(0);
- using (var stream = GetStream(reader, 1))
- {
- var itemType = _typeMapper.GetType(type);
- if (itemType == null)
- {
- Logger.Error("Cannot find type {0}. Probably belongs to plug-in that is no longer loaded.", type);
- continue;
- }
- var item = _jsonSerializer.DeserializeFromStream(stream, itemType) as BaseItem;
- if (item != null)
- {
- item.Parent = parent;
- yield return item;
- }
- }
- }
- }
- }
- }
- /// <summary>
- /// Save references to all the children for the given folder
- /// (Doesn't actually save the child entities)
- /// </summary>
- /// <param name="id">The id.</param>
- /// <param name="children">The children.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">id</exception>
- public async Task SaveChildren(Guid id, IEnumerable<BaseItem> children, CancellationToken cancellationToken)
- {
- if (id == Guid.Empty)
- {
- throw new ArgumentNullException("id");
- }
- if (children == null)
- {
- throw new ArgumentNullException("children");
- }
- if (cancellationToken == null)
- {
- throw new ArgumentNullException("cancellationToken");
- }
- cancellationToken.ThrowIfCancellationRequested();
- await _writeLock.WaitAsync(cancellationToken).ConfigureAwait(false);
- SQLiteTransaction transaction = null;
- try
- {
- transaction = Connection.BeginTransaction();
- // Delete exising children
- _deleteChildrenCommand.Parameters[0].Value = id;
- _deleteChildrenCommand.Transaction = transaction;
- await _deleteChildrenCommand.ExecuteNonQueryAsync(cancellationToken);
- // Save new children
- foreach (var child in children)
- {
- _saveChildrenCommand.Transaction = transaction;
- _saveChildrenCommand.Parameters[0].Value = id;
- _saveChildrenCommand.Parameters[1].Value = child.Id;
- await _saveChildrenCommand.ExecuteNonQueryAsync(cancellationToken);
- }
- transaction.Commit();
- }
- catch (OperationCanceledException)
- {
- if (transaction != null)
- {
- transaction.Rollback();
- }
- throw;
- }
- catch (Exception e)
- {
- Logger.ErrorException("Failed to save children:", e);
- if (transaction != null)
- {
- transaction.Rollback();
- }
- throw;
- }
- finally
- {
- if (transaction != null)
- {
- transaction.Dispose();
- }
- _writeLock.Release();
- }
- }
- /// <summary>
- /// Gets the critic reviews path.
- /// </summary>
- /// <param name="create">if set to <c>true</c> [create].</param>
- /// <returns>System.String.</returns>
- private string GetCriticReviewsPath(bool create)
- {
- var path = Path.Combine(_appPaths.DataPath, "critic-reviews");
- if (create && !Directory.Exists(path))
- {
- Directory.CreateDirectory(path);
- }
- return path;
- }
- /// <summary>
- /// Gets the critic reviews.
- /// </summary>
- /// <param name="itemId">The item id.</param>
- /// <returns>Task{IEnumerable{ItemReview}}.</returns>
- public Task<IEnumerable<ItemReview>> GetCriticReviews(Guid itemId)
- {
- return Task.Run<IEnumerable<ItemReview>>(() =>
- {
- try
- {
- var path = Path.Combine(GetCriticReviewsPath(false), itemId + ".json");
- return _jsonSerializer.DeserializeFromFile<List<ItemReview>>(path);
- }
- catch (DirectoryNotFoundException)
- {
- return new List<ItemReview>();
- }
- catch (FileNotFoundException)
- {
- return new List<ItemReview>();
- }
- });
- }
- /// <summary>
- /// Saves the critic reviews.
- /// </summary>
- /// <param name="itemId">The item id.</param>
- /// <param name="criticReviews">The critic reviews.</param>
- /// <returns>Task.</returns>
- public Task SaveCriticReviews(Guid itemId, IEnumerable<ItemReview> criticReviews)
- {
- return Task.Run(() =>
- {
- var path = Path.Combine(GetCriticReviewsPath(true), itemId + ".json");
- _jsonSerializer.SerializeToFile(criticReviews.ToList(), path);
- });
- }
- }
- }
|