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

259 lines
7.7 KiB
C#
Raw Normal View History

using System;
2016-11-18 09:39:20 +01:00
using System.Collections.Generic;
2016-12-13 16:44:34 +01:00
using System.Globalization;
using System.Linq;
2016-11-18 09:39:20 +01:00
using System.Threading;
2019-02-20 14:26:49 +01:00
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
2016-11-19 08:51:07 +01:00
using SQLitePCL;
using SQLitePCL.pretty;
2016-11-18 09:39:20 +01:00
namespace Emby.Server.Implementations.Data
{
public abstract class BaseSqliteRepository : IDisposable
{
protected string DbFilePath { get; set; }
2016-11-21 00:48:52 +01:00
2016-11-18 09:39:20 +01:00
protected ILogger Logger { get; private set; }
protected BaseSqliteRepository(ILogger logger)
{
Logger = logger;
2016-11-21 00:48:52 +01:00
}
protected TransactionMode TransactionMode => TransactionMode.Deferred;
2016-11-18 09:39:20 +01:00
protected TransactionMode ReadTransactionMode => TransactionMode.Deferred;
2016-11-28 20:26:48 +01:00
2016-12-11 06:12:00 +01:00
internal static int ThreadSafeMode { get; set; }
2016-11-19 08:51:07 +01:00
static BaseSqliteRepository()
2016-11-18 09:39:20 +01:00
{
2016-12-11 06:12:00 +01:00
ThreadSafeMode = raw.sqlite3_threadsafe();
2016-11-19 08:51:07 +01:00
}
2016-11-20 22:02:32 +01:00
private static bool _versionLogged;
2016-11-21 09:54:53 +01:00
private string _defaultWal;
2016-12-13 16:44:34 +01:00
2019-02-20 14:26:49 +01:00
protected SQLiteDatabaseConnection CreateConnection(bool isReadOnly = false)
2016-12-13 16:44:34 +01:00
{
2019-02-20 14:26:49 +01:00
if (!_versionLogged)
2016-12-13 16:44:34 +01:00
{
2019-02-20 14:26:49 +01:00
_versionLogged = true;
Logger.LogInformation("Sqlite version: " + SQLite3.Version);
Logger.LogInformation("Sqlite compiler options: " + string.Join(",", SQLite3.CompilerOptions));
2016-12-13 16:44:34 +01:00
}
2019-02-20 14:26:49 +01:00
ConnectionFlags connectionFlags;
if (isReadOnly)
2016-11-20 22:02:32 +01:00
{
2019-02-20 14:26:49 +01:00
//Logger.LogInformation("Opening read connection");
//connectionFlags = ConnectionFlags.Create;
connectionFlags = ConnectionFlags.ReadOnly;
}
else
{
//Logger.LogInformation("Opening write connection");
connectionFlags = ConnectionFlags.Create;
connectionFlags |= ConnectionFlags.ReadWrite;
}
connectionFlags |= ConnectionFlags.SharedCached;
connectionFlags |= ConnectionFlags.FullMutex;
2016-11-20 22:02:32 +01:00
2019-02-20 14:26:49 +01:00
var db = SQLite3.Open(DbFilePath, connectionFlags, null);
2016-11-18 09:39:20 +01:00
2019-02-20 14:26:49 +01:00
try
{
if (string.IsNullOrWhiteSpace(_defaultWal))
2016-12-13 09:45:04 +01:00
{
2019-02-20 14:26:49 +01:00
_defaultWal = db.Query("PRAGMA journal_mode").SelectScalarString().First();
Logger.LogInformation("Default journal_mode for {0} is {1}", DbFilePath, _defaultWal);
2016-12-13 09:45:04 +01:00
}
2019-02-20 14:26:49 +01:00
var queries = new List<string>
{
//"PRAGMA cache size=-10000"
//"PRAGMA read_uncommitted = true",
//"PRAGMA synchronous=Normal"
};
if (CacheSize.HasValue)
2016-12-13 09:45:04 +01:00
{
2019-02-20 14:26:49 +01:00
queries.Add("PRAGMA cache_size=" + CacheSize.Value.ToString(CultureInfo.InvariantCulture));
2016-12-13 09:45:04 +01:00
}
2016-11-21 09:54:53 +01:00
2019-02-20 14:26:49 +01:00
if (EnableTempStoreMemory)
2016-12-13 16:44:34 +01:00
{
2019-02-20 14:26:49 +01:00
queries.Add("PRAGMA temp_store = memory");
2016-12-13 16:44:34 +01:00
}
else
{
2019-02-20 14:26:49 +01:00
queries.Add("PRAGMA temp_store = file");
2016-12-13 16:44:34 +01:00
}
2019-02-20 14:26:49 +01:00
foreach (var query in queries)
2016-12-13 09:45:04 +01:00
{
2019-02-20 14:26:49 +01:00
db.Execute(query);
2016-12-13 09:45:04 +01:00
}
2019-02-20 14:26:49 +01:00
}
catch
{
using (db)
2017-08-04 08:35:24 +02:00
{
2016-11-27 20:36:56 +01:00
2016-11-21 04:52:58 +01:00
}
2016-11-19 08:51:07 +01:00
2019-02-20 14:26:49 +01:00
throw;
2016-12-13 09:45:04 +01:00
}
2019-02-20 14:26:49 +01:00
return db;
2016-11-18 09:39:20 +01:00
}
2019-02-20 14:26:49 +01:00
public IStatement PrepareStatement(SQLiteDatabaseConnection connection, string sql)
2016-12-13 16:44:34 +01:00
{
return connection.PrepareStatement(sql);
}
2019-02-20 14:26:49 +01:00
public IStatement PrepareStatementSafe(SQLiteDatabaseConnection connection, string sql)
2016-12-13 16:44:34 +01:00
{
return connection.PrepareStatement(sql);
}
2016-12-11 06:12:00 +01:00
public IStatement PrepareStatement(IDatabaseConnection connection, string sql)
{
return connection.PrepareStatement(sql);
}
public IStatement PrepareStatementSafe(IDatabaseConnection connection, string sql)
{
return connection.PrepareStatement(sql);
}
2016-12-13 09:45:04 +01:00
public List<IStatement> PrepareAll(IDatabaseConnection connection, IEnumerable<string> sql)
2016-12-11 06:12:00 +01:00
{
2016-12-13 09:45:04 +01:00
return PrepareAllSafe(connection, sql);
2016-12-11 06:12:00 +01:00
}
2016-12-13 09:45:04 +01:00
public List<IStatement> PrepareAllSafe(IDatabaseConnection connection, IEnumerable<string> sql)
2016-12-11 06:12:00 +01:00
{
2016-12-13 09:45:04 +01:00
return sql.Select(connection.PrepareStatement).ToList();
2016-12-11 06:12:00 +01:00
}
2019-02-20 14:26:49 +01:00
protected bool TableExists(SQLiteDatabaseConnection connection, string name)
2018-09-12 19:26:21 +02:00
{
return connection.RunInTransaction(db =>
{
using (var statement = PrepareStatement(db, "select DISTINCT tbl_name from sqlite_master"))
{
foreach (var row in statement.ExecuteQuery())
{
if (string.Equals(name, row.GetString(0), StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
}
return false;
}, ReadTransactionMode);
}
2019-02-20 14:26:49 +01:00
protected void RunDefaultInitialization(SQLiteDatabaseConnection db)
2016-11-29 20:12:37 +01:00
{
var queries = new List<string>
{
"PRAGMA journal_mode=WAL",
"PRAGMA page_size=4096",
2016-12-13 09:45:04 +01:00
"PRAGMA synchronous=Normal"
2016-11-29 20:12:37 +01:00
};
if (EnableTempStoreMemory)
{
queries.AddRange(new List<string>
{
"pragma default_temp_store = memory",
"pragma temp_store = memory"
});
}
else
{
queries.AddRange(new List<string>
{
"pragma temp_store = file"
});
}
2016-11-29 20:12:37 +01:00
2019-02-09 00:48:09 +01:00
db.ExecuteAll(string.Join(";", queries));
Logger.LogInformation("PRAGMA synchronous=" + db.Query("PRAGMA synchronous").SelectScalarString().First());
2016-11-29 20:12:37 +01:00
}
protected virtual bool EnableTempStoreMemory => false;
2016-11-27 20:36:56 +01:00
protected virtual int? CacheSize => null;
2016-11-19 19:09:15 +01:00
2016-11-18 09:39:20 +01:00
private bool _disposed;
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
}
}
public void Dispose()
{
2019-02-20 14:26:49 +01:00
2016-11-18 09:39:20 +01:00
Dispose(true);
}
private readonly object _disposeLock = new object();
/// <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)
{
2019-02-20 14:26:49 +01:00
return;
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
}
2016-11-18 10:28:39 +01:00
protected List<string> GetColumnNames(IDatabaseConnection connection, string table)
2016-11-18 10:28:39 +01:00
{
var list = new List<string>();
2016-11-18 10:28:39 +01:00
foreach (var row in connection.Query("PRAGMA table_info(" + table + ")"))
{
if (row[1].SQLiteType != SQLiteType.Null)
{
var name = row[1].ToString();
list.Add(name);
2016-11-18 10:28:39 +01:00
}
}
return list;
}
protected void AddColumn(IDatabaseConnection connection, string table, string columnName, string type, List<string> existingColumnNames)
{
if (existingColumnNames.Contains(columnName, StringComparer.OrdinalIgnoreCase))
{
return;
}
2016-11-21 00:48:52 +01:00
connection.Execute("alter table " + table + " add column " + columnName + " " + type + " NULL");
2016-11-18 10:28:39 +01:00
}
2016-11-18 09:39:20 +01:00
}
}