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

214 lines
6.7 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;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
2023-08-21 12:13:32 +02:00
using Microsoft.Data.Sqlite;
using Microsoft.Extensions.Logging;
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>
2019-04-03 17:34:54 +02:00
protected string DbFilePath { get; set; }
2016-11-18 09:39:20 +01:00
2023-04-14 13:43:56 +02:00
/// <summary>
/// Gets or sets the number of write connections to create.
/// </summary>
/// <value>Path to the DB file.</value>
protected int WriteConnectionsCount { get; set; } = 1;
/// <summary>
/// Gets or sets the number of read connections to create.
/// </summary>
protected int ReadConnectionsCount { get; set; } = 1;
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 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>
2023-04-14 13:43:56 +02:00
protected virtual string LockingMode => "NORMAL";
2023-01-09 00:07:53 +01:00
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" />.
/// The default (-1) is overriden to prevent unconstrained WAL size, as reported by users.
2023-01-10 22:29:05 +01:00
/// </summary>
/// <value>The journal size limit.</value>
protected virtual int? JournalSizeLimit => 134_217_728; // 128MiB
2023-01-10 22:29:05 +01:00
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"/>
2023-04-14 13:43:56 +02:00
protected virtual TempStoreMode TempStore => TempStoreMode.Memory;
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
2023-04-14 13:43:56 +02:00
public virtual void Initialize()
{
2023-04-14 21:38:12 +02:00
// Configuration and pragmas can affect VACUUM so it needs to be last.
2023-04-14 22:43:14 +02:00
using (var connection = GetConnection())
2016-12-13 16:44:34 +01:00
{
2023-04-14 21:38:12 +02:00
connection.Execute("VACUUM");
2016-12-13 16:44:34 +01:00
}
2023-04-14 13:43:56 +02:00
}
2023-08-21 21:49:39 +02:00
protected SqliteConnection GetConnection()
2023-04-14 13:43:56 +02:00
{
2023-08-21 20:34:50 +02:00
var connection = new SqliteConnection($"Filename={DbFilePath}");
2023-08-21 21:38:16 +02:00
connection.Open();
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
{
2023-08-21 20:34:50 +02:00
connection.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))
{
2023-08-21 20:34:50 +02:00
connection.Execute("PRAGMA locking_mode=" + LockingMode);
2023-01-09 00:07:53 +01:00
}
2019-04-03 17:34:54 +02:00
if (!string.IsNullOrWhiteSpace(JournalMode))
{
2023-08-21 20:34:50 +02:00
connection.Execute("PRAGMA journal_mode=" + JournalMode);
}
2016-11-27 20:36:56 +01:00
2023-01-10 22:29:05 +01:00
if (JournalSizeLimit.HasValue)
{
2023-08-21 20:34:50 +02:00
connection.Execute("PRAGMA journal_size_limit=" + JournalSizeLimit.Value);
2023-01-10 22:29:05 +01:00
}
2019-04-03 17:34:54 +02:00
if (Synchronous.HasValue)
{
2023-08-21 20:34:50 +02:00
connection.Execute("PRAGMA synchronous=" + (int)Synchronous.Value);
}
2019-04-03 17:34:54 +02:00
if (PageSize.HasValue)
{
2023-08-21 20:34:50 +02:00
connection.Execute("PRAGMA page_size=" + PageSize.Value);
}
2016-11-19 08:51:07 +01:00
2023-08-21 20:34:50 +02:00
connection.Execute("PRAGMA temp_store=" + (int)TempStore);
2019-08-15 00:00:21 +02:00
2023-08-21 20:34:50 +02:00
return connection;
2023-04-14 13:43:56 +02:00
}
2023-08-21 12:13:32 +02:00
public SqliteCommand PrepareStatement(SqliteConnection connection, string sql)
2023-04-14 13:43:56 +02:00
{
2023-08-21 12:13:32 +02:00
var command = connection.CreateCommand();
command.CommandText = sql;
return command;
2016-11-18 09:39:20 +01:00
}
2023-08-21 12:13:32 +02:00
protected bool TableExists(SqliteConnection connection, string name)
2018-09-12 19:26:21 +02:00
{
2023-08-21 14:12:49 +02:00
using var statement = PrepareStatement(connection, "select DISTINCT tbl_name from sqlite_master");
foreach (var row in statement.ExecuteQuery())
{
if (string.Equals(name, row.GetString(0), StringComparison.OrdinalIgnoreCase))
2018-09-12 19:26:21 +02:00
{
2023-08-21 14:12:49 +02:00
return true;
}
}
return false;
2018-09-12 19:26:21 +02:00
}
2023-08-21 12:13:32 +02:00
protected List<string> GetColumnNames(SqliteConnection 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
}
2023-08-21 12:13:32 +02:00
protected void AddColumn(SqliteConnection connection, string table, string columnName, string type, List<string> existingColumnNames)
2019-04-03 18:02:43 +02:00
{
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()
{
ObjectDisposedException.ThrowIf(_disposed, this);
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-20 14:26:49 +01:00
_disposed = true;
2016-11-18 09:39:20 +01:00
}
}
}