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

216 lines
6.9 KiB
C#
Raw Normal View History

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