jellyfin/Emby.Server.Implementations/Data/BaseSqliteRepository.cs

275 lines
8.8 KiB
C#
Raw Normal View History

#nullable disable
2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using System;
2016-11-18 09:39:20 +01:00
using System.Collections.Generic;
using System.Threading;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
using Microsoft.Extensions.Logging;
using SQLitePCL.pretty;
2016-11-18 09:39:20 +01:00
namespace Emby.Server.Implementations.Data
{
public abstract class BaseSqliteRepository : IDisposable
{
2019-04-03 17:34:54 +02:00
private bool _disposed = false;
2016-11-18 09:39:20 +01:00
2019-11-01 18:38:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="BaseSqliteRepository"/> class.
/// </summary>
/// <param name="logger">The logger.</param>
2020-06-06 02:15:56 +02:00
protected BaseSqliteRepository(ILogger<BaseSqliteRepository> logger)
2016-11-18 09:39:20 +01:00
{
Logger = logger;
2016-11-21 00:48:52 +01:00
}
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets or sets the path to the DB file.
/// </summary>
/// <value>Path to the DB file.</value>
2019-04-03 17:34:54 +02:00
protected string DbFilePath { get; set; }
2016-11-18 09:39:20 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the logger.
/// </summary>
/// <value>The logger.</value>
2020-06-06 02:15:56 +02:00
protected ILogger<BaseSqliteRepository> Logger { get; }
2016-11-28 20:26:48 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the default connection flags.
/// </summary>
/// <value>The default connection flags.</value>
2019-04-03 17:34:54 +02:00
protected virtual ConnectionFlags DefaultConnectionFlags => ConnectionFlags.NoMutex;
2016-12-11 06:12:00 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the transaction mode.
/// </summary>
/// <value>The transaction mode.</value>>
protected TransactionMode TransactionMode => TransactionMode.Deferred;
2016-11-18 09:39:20 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the transaction mode for read-only operations.
/// </summary>
/// <value>The transaction mode.</value>
protected TransactionMode ReadTransactionMode => TransactionMode.Deferred;
2016-12-11 06:12:00 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the cache size.
/// </summary>
/// <value>The cache size or null.</value>
2019-04-03 17:34:54 +02:00
protected virtual int? CacheSize => null;
2016-12-11 06:12:00 +01:00
2023-01-09 00:07:53 +01:00
/// <summary>
/// Gets the locking mode. <see href="https://www.sqlite.org/pragma.html#pragma_locking_mode" />.
/// </summary>
protected virtual string LockingMode => "EXCLUSIVE";
2019-07-01 18:24:35 +02:00
/// <summary>
2021-08-29 00:32:50 +02:00
/// Gets the journal mode. <see href="https://www.sqlite.org/pragma.html#pragma_journal_mode" />.
2019-07-01 18:24:35 +02:00
/// </summary>
/// <value>The journal mode.</value>
2023-01-09 00:07:53 +01:00
protected virtual string JournalMode => "WAL";
2016-12-11 06:12:00 +01:00
2023-01-10 22:29:05 +01:00
/// <summary>
/// Gets the journal size limit. <see href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit" />.
/// </summary>
/// <value>The journal size limit.</value>
protected virtual int? JournalSizeLimit => 0;
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the page size.
/// </summary>
/// <value>The page size or null.</value>
2019-04-03 17:34:54 +02:00
protected virtual int? PageSize => null;
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the temp store mode.
/// </summary>
/// <value>The temp store mode.</value>
/// <see cref="TempStoreMode"/>
2019-04-03 17:34:54 +02:00
protected virtual TempStoreMode TempStore => TempStoreMode.Default;
2016-11-19 08:51:07 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets the synchronous mode.
/// </summary>
/// <value>The synchronous mode or null.</value>
/// <see cref="SynchronousMode"/>
2023-01-09 14:14:19 +01:00
protected virtual SynchronousMode? Synchronous => SynchronousMode.Normal;
2016-11-20 22:02:32 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets or sets the write lock.
/// </summary>
/// <value>The write lock.</value>
2019-07-01 17:59:01 +02:00
protected SemaphoreSlim WriteLock { get; set; } = new SemaphoreSlim(1, 1);
2016-11-21 09:54:53 +01:00
2019-07-01 18:24:35 +02:00
/// <summary>
/// Gets or sets the write connection.
/// </summary>
/// <value>The write connection.</value>
2019-07-01 17:59:01 +02:00
protected SQLiteDatabaseConnection WriteConnection { get; set; }
2022-03-05 20:37:23 +01:00
protected ManagedConnection GetConnection(bool readOnly = false)
2016-12-13 16:44:34 +01:00
{
2019-04-02 22:15:18 +02:00
WriteLock.Wait();
2022-12-05 15:01:13 +01:00
if (WriteConnection is not null)
2016-12-13 16:44:34 +01:00
{
2019-04-02 22:15:18 +02:00
return new ManagedConnection(WriteConnection, WriteLock);
2016-12-13 16:44:34 +01:00
}
2019-04-02 22:15:18 +02:00
WriteConnection = SQLite3.Open(
2019-03-11 22:33:27 +01:00
DbFilePath,
DefaultConnectionFlags | ConnectionFlags.Create | ConnectionFlags.ReadWrite,
null);
2016-11-29 20:12:37 +01:00
2019-04-03 17:34:54 +02:00
if (CacheSize.HasValue)
2019-02-20 14:26:49 +01:00
{
2019-07-01 17:59:01 +02:00
WriteConnection.Execute("PRAGMA cache_size=" + CacheSize.Value);
2019-04-03 17:34:54 +02:00
}
2023-01-09 00:07:53 +01:00
if (!string.IsNullOrWhiteSpace(LockingMode))
{
WriteConnection.Execute("PRAGMA locking_mode=" + LockingMode);
}
2019-04-03 17:34:54 +02:00
if (!string.IsNullOrWhiteSpace(JournalMode))
{
WriteConnection.Execute("PRAGMA journal_mode=" + JournalMode);
}
2016-11-27 20:36:56 +01:00
2023-01-10 22:29:05 +01:00
if (JournalSizeLimit.HasValue)
{
WriteConnection.Execute("PRAGMA journal_size_limit=" + (int)JournalSizeLimit.Value);
}
2019-04-03 17:34:54 +02:00
if (Synchronous.HasValue)
{
2019-04-03 17:34:54 +02:00
WriteConnection.Execute("PRAGMA synchronous=" + (int)Synchronous.Value);
}
2019-04-03 17:34:54 +02:00
if (PageSize.HasValue)
{
2019-07-01 17:59:01 +02:00
WriteConnection.Execute("PRAGMA page_size=" + PageSize.Value);
}
2016-11-19 08:51:07 +01:00
2019-04-03 17:34:54 +02:00
WriteConnection.Execute("PRAGMA temp_store=" + (int)TempStore);
2019-08-15 00:00:21 +02:00
// Configuration and pragmas can affect VACUUM so it needs to be last.
WriteConnection.Execute("VACUUM");
2016-12-13 16:44:34 +01:00
2019-04-02 22:15:18 +02:00
return new ManagedConnection(WriteConnection, WriteLock);
2016-11-18 09:39:20 +01:00
}
2016-12-13 16:44:34 +01:00
public IStatement PrepareStatement(ManagedConnection connection, string sql)
2019-02-26 18:58:33 +01:00
=> connection.PrepareStatement(sql);
2016-12-13 16:44:34 +01:00
2016-12-11 06:12:00 +01:00
public IStatement PrepareStatement(IDatabaseConnection connection, string sql)
2019-02-26 18:58:33 +01:00
=> connection.PrepareStatement(sql);
2016-12-11 06:12:00 +01:00
public IStatement[] PrepareAll(IDatabaseConnection connection, IReadOnlyList<string> sql)
{
int len = sql.Count;
IStatement[] statements = new IStatement[len];
for (int i = 0; i < len; i++)
{
statements[i] = connection.PrepareStatement(sql[i]);
}
return statements;
}
2016-12-11 06:12:00 +01:00
2018-09-12 19:26:21 +02:00
protected bool TableExists(ManagedConnection connection, string name)
{
2020-10-12 20:05:11 +02:00
return connection.RunInTransaction(
2021-12-24 18:28:27 +01:00
db =>
2018-09-12 19:26:21 +02:00
{
2021-12-24 18:28:27 +01:00
using (var statement = PrepareStatement(db, "select DISTINCT tbl_name from sqlite_master"))
2018-09-12 19:26:21 +02:00
{
2021-12-24 18:28:27 +01:00
foreach (var row in statement.ExecuteQuery())
2018-09-12 19:26:21 +02:00
{
2021-12-24 18:28:27 +01:00
if (string.Equals(name, row.GetString(0), StringComparison.OrdinalIgnoreCase))
{
return true;
}
2018-09-12 19:26:21 +02:00
}
}
2021-12-24 18:28:27 +01:00
return false;
},
ReadTransactionMode);
2018-09-12 19:26:21 +02:00
}
2019-04-03 18:02:43 +02:00
protected List<string> GetColumnNames(IDatabaseConnection connection, string table)
2016-11-29 20:12:37 +01:00
{
2019-07-01 17:59:01 +02:00
var columnNames = new List<string>();
2016-11-29 20:12:37 +01:00
2019-04-03 18:02:43 +02:00
foreach (var row in connection.Query("PRAGMA table_info(" + table + ")"))
{
2021-05-16 14:49:11 +02:00
if (row.TryGetString(1, out var columnName))
{
2021-05-16 14:49:11 +02:00
columnNames.Add(columnName);
2019-04-03 18:02:43 +02:00
}
}
2016-11-29 20:12:37 +01:00
2019-07-01 17:59:01 +02:00
return columnNames;
2016-11-29 20:12:37 +01:00
}
2019-04-03 18:02:43 +02:00
protected void AddColumn(IDatabaseConnection connection, string table, string columnName, string type, List<string> existingColumnNames)
{
2021-12-20 13:31:07 +01:00
if (existingColumnNames.Contains(columnName, StringComparison.OrdinalIgnoreCase))
2019-04-03 18:02:43 +02:00
{
return;
}
2016-11-27 20:36:56 +01:00
2019-04-03 18:02:43 +02:00
connection.Execute("alter table " + table + " add column " + columnName + " " + type + " NULL");
}
2016-11-19 19:09:15 +01:00
2016-11-18 09:39:20 +01:00
protected void CheckDisposed()
{
if (_disposed)
{
throw new ObjectDisposedException(GetType().Name, "Object has been disposed and cannot be accessed.");
2016-11-18 09:39:20 +01:00
}
}
2019-07-01 17:59:01 +02:00
/// <inheritdoc />
2016-11-18 09:39:20 +01:00
public void Dispose()
{
Dispose(true);
2019-04-02 22:15:18 +02:00
GC.SuppressFinalize(this);
2016-11-18 09:39:20 +01:00
}
/// <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)
{
2019-02-20 14:26:49 +01:00
if (_disposed)
2016-11-18 09:39:20 +01:00
{
2019-02-20 14:26:49 +01:00
return;
}
2019-02-26 18:58:33 +01:00
if (dispose)
{
2019-04-02 22:15:18 +02:00
WriteLock.Wait();
2019-02-26 18:58:33 +01:00
try
2016-11-18 09:39:20 +01:00
{
2019-08-15 00:00:21 +02:00
WriteConnection?.Dispose();
2016-11-18 09:39:20 +01:00
}
2019-02-26 18:58:33 +01:00
finally
{
2019-04-02 22:15:18 +02:00
WriteLock.Release();
2019-02-26 18:58:33 +01:00
}
2019-04-02 22:15:18 +02:00
WriteLock.Dispose();
}
2016-11-18 09:39:20 +01:00
2019-04-02 22:15:18 +02:00
WriteConnection = null;
WriteLock = null;
2016-11-18 09:39:20 +01:00
2019-02-20 14:26:49 +01:00
_disposed = true;
2016-11-18 09:39:20 +01:00
}
}
}