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

217 lines
6.8 KiB
C#
Raw Normal View History

#nullable disable
2019-11-01 13:38:54 -04:00
#pragma warning disable CS1591
using System;
2016-11-18 03:39:20 -05:00
using System.Collections.Generic;
2021-12-20 07:31:07 -05:00
using Jellyfin.Extensions;
2023-08-21 06:13:32 -04:00
using Microsoft.Data.Sqlite;
using Microsoft.Extensions.Logging;
2016-11-18 03:39:20 -05:00
namespace Emby.Server.Implementations.Data
{
public abstract class BaseSqliteRepository : IDisposable
{
2019-04-03 11:34:54 -04:00
private bool _disposed = false;
2016-11-18 03:39:20 -05:00
2019-11-01 13:38:54 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="BaseSqliteRepository"/> class.
/// </summary>
/// <param name="logger">The logger.</param>
2020-06-05 20:15:56 -04:00
protected BaseSqliteRepository(ILogger<BaseSqliteRepository> logger)
2016-11-18 03:39:20 -05:00
{
Logger = logger;
2016-11-20 18:48:52 -05:00
}
2019-07-01 12:24:35 -04:00
/// <summary>
/// Gets or sets the path to the DB file.
/// </summary>
2019-04-03 11:34:54 -04:00
protected string DbFilePath { get; set; }
2016-11-18 03:39:20 -05:00
2023-04-14 07:43:56 -04: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 12:24:35 -04:00
/// <summary>
/// Gets the logger.
/// </summary>
/// <value>The logger.</value>
2020-06-05 20:15:56 -04:00
protected ILogger<BaseSqliteRepository> Logger { get; }
2016-11-28 14:26:48 -05:00
2019-07-01 12:24:35 -04:00
/// <summary>
/// Gets the cache size.
/// </summary>
/// <value>The cache size or null.</value>
2019-04-03 11:34:54 -04:00
protected virtual int? CacheSize => null;
2016-12-11 00:12:00 -05:00
2023-01-08 18:07:53 -05:00
/// <summary>
/// Gets the locking mode. <see href="https://www.sqlite.org/pragma.html#pragma_locking_mode" />.
/// </summary>
2023-04-14 07:43:56 -04:00
protected virtual string LockingMode => "NORMAL";
2023-01-08 18:07:53 -05:00
2019-07-01 12:24:35 -04:00
/// <summary>
2021-08-28 18:32:50 -04:00
/// Gets the journal mode. <see href="https://www.sqlite.org/pragma.html#pragma_journal_mode" />.
2019-07-01 12:24:35 -04:00
/// </summary>
/// <value>The journal mode.</value>
2023-01-08 18:07:53 -05:00
protected virtual string JournalMode => "WAL";
2016-12-11 00:12:00 -05:00
2023-01-10 16:29:05 -05: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 16:29:05 -05:00
/// </summary>
/// <value>The journal size limit.</value>
protected virtual int? JournalSizeLimit => 134_217_728; // 128MiB
2023-01-10 16:29:05 -05:00
2019-07-01 12:24:35 -04:00
/// <summary>
/// Gets the page size.
/// </summary>
/// <value>The page size or null.</value>
2019-04-03 11:34:54 -04:00
protected virtual int? PageSize => null;
2019-07-01 12:24:35 -04:00
/// <summary>
/// Gets the temp store mode.
/// </summary>
/// <value>The temp store mode.</value>
/// <see cref="TempStoreMode"/>
2023-04-14 07:43:56 -04:00
protected virtual TempStoreMode TempStore => TempStoreMode.Memory;
2016-11-19 02:51:07 -05:00
2019-07-01 12:24:35 -04:00
/// <summary>
/// Gets the synchronous mode.
/// </summary>
/// <value>The synchronous mode or null.</value>
/// <see cref="SynchronousMode"/>
2023-01-09 08:14:19 -05:00
protected virtual SynchronousMode? Synchronous => SynchronousMode.Normal;
2016-11-20 16:02:32 -05:00
2023-04-14 07:43:56 -04:00
public virtual void Initialize()
{
2023-04-14 15:38:12 -04:00
// Configuration and pragmas can affect VACUUM so it needs to be last.
2023-04-14 16:43:14 -04:00
using (var connection = GetConnection())
2016-12-13 10:44:34 -05:00
{
2023-04-14 15:38:12 -04:00
connection.Execute("VACUUM");
2016-12-13 10:44:34 -05:00
}
2023-04-14 07:43:56 -04:00
}
2023-08-21 15:49:39 -04:00
protected SqliteConnection GetConnection()
2023-04-14 07:43:56 -04:00
{
2023-08-21 14:34:50 -04:00
var connection = new SqliteConnection($"Filename={DbFilePath}");
2023-08-21 15:38:16 -04:00
connection.Open();
2016-11-29 14:12:37 -05:00
2019-04-03 11:34:54 -04:00
if (CacheSize.HasValue)
2019-02-20 08:26:49 -05:00
{
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA cache_size=" + CacheSize.Value);
2019-04-03 11:34:54 -04:00
}
2023-01-08 18:07:53 -05:00
if (!string.IsNullOrWhiteSpace(LockingMode))
{
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA locking_mode=" + LockingMode);
2023-01-08 18:07:53 -05:00
}
2019-04-03 11:34:54 -04:00
if (!string.IsNullOrWhiteSpace(JournalMode))
{
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA journal_mode=" + JournalMode);
}
2016-11-27 14:36:56 -05:00
2023-01-10 16:29:05 -05:00
if (JournalSizeLimit.HasValue)
{
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA journal_size_limit=" + JournalSizeLimit.Value);
2023-01-10 16:29:05 -05:00
}
2019-04-03 11:34:54 -04:00
if (Synchronous.HasValue)
{
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA synchronous=" + (int)Synchronous.Value);
}
2019-04-03 11:34:54 -04:00
if (PageSize.HasValue)
{
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA page_size=" + PageSize.Value);
}
2016-11-19 02:51:07 -05:00
2023-08-21 14:34:50 -04:00
connection.Execute("PRAGMA temp_store=" + (int)TempStore);
2019-08-14 18:00:21 -04:00
2023-08-21 14:34:50 -04:00
return connection;
2023-04-14 07:43:56 -04:00
}
2023-08-21 06:13:32 -04:00
public SqliteCommand PrepareStatement(SqliteConnection connection, string sql)
2023-04-14 07:43:56 -04:00
{
2023-08-21 06:13:32 -04:00
var command = connection.CreateCommand();
command.CommandText = sql;
return command;
2016-11-18 03:39:20 -05:00
}
2023-08-21 06:13:32 -04:00
protected bool TableExists(SqliteConnection connection, string name)
2018-09-12 13:26:21 -04:00
{
2023-08-21 08:12:49 -04: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 13:26:21 -04:00
{
2023-08-21 08:12:49 -04:00
return true;
}
}
return false;
2018-09-12 13:26:21 -04:00
}
2023-08-21 06:13:32 -04:00
protected List<string> GetColumnNames(SqliteConnection connection, string table)
2016-11-29 14:12:37 -05:00
{
2019-07-01 11:59:01 -04:00
var columnNames = new List<string>();
2016-11-29 14:12:37 -05:00
2019-04-03 12:02:43 -04:00
foreach (var row in connection.Query("PRAGMA table_info(" + table + ")"))
{
2021-05-16 08:49:11 -04:00
if (row.TryGetString(1, out var columnName))
{
2021-05-16 08:49:11 -04:00
columnNames.Add(columnName);
2019-04-03 12:02:43 -04:00
}
}
2016-11-29 14:12:37 -05:00
2019-07-01 11:59:01 -04:00
return columnNames;
2016-11-29 14:12:37 -05:00
}
2023-08-21 06:13:32 -04:00
protected void AddColumn(SqliteConnection connection, string table, string columnName, string type, List<string> existingColumnNames)
2019-04-03 12:02:43 -04:00
{
2021-12-20 07:31:07 -05:00
if (existingColumnNames.Contains(columnName, StringComparison.OrdinalIgnoreCase))
2019-04-03 12:02:43 -04:00
{
return;
}
2016-11-27 14:36:56 -05:00
2019-04-03 12:02:43 -04:00
connection.Execute("alter table " + table + " add column " + columnName + " " + type + " NULL");
}
2016-11-19 13:09:15 -05:00
2016-11-18 03:39:20 -05:00
protected void CheckDisposed()
{
if (_disposed)
{
throw new ObjectDisposedException(GetType().Name, "Object has been disposed and cannot be accessed.");
2016-11-18 03:39:20 -05:00
}
}
2019-07-01 11:59:01 -04:00
/// <inheritdoc />
2016-11-18 03:39:20 -05:00
public void Dispose()
{
Dispose(true);
2019-04-02 16:15:18 -04:00
GC.SuppressFinalize(this);
2016-11-18 03:39:20 -05: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 08:26:49 -05:00
if (_disposed)
2016-11-18 03:39:20 -05:00
{
2019-02-20 08:26:49 -05:00
return;
}
2019-02-20 08:26:49 -05:00
_disposed = true;
2016-11-18 03:39:20 -05:00
}
}
}