2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2019-02-26 17:30:13 +00:00
|
|
|
using System.Collections.Concurrent;
|
2016-11-18 08:39:20 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:20:16 +00:00
|
|
|
using System.Linq;
|
2016-11-18 08:39:20 +00:00
|
|
|
using System.Threading;
|
2019-02-20 13:26:49 +00:00
|
|
|
using System.Threading.Tasks;
|
2018-12-13 13:18:25 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2016-11-19 07:51:07 +00:00
|
|
|
using SQLitePCL;
|
2019-01-13 19:20:16 +00:00
|
|
|
using SQLitePCL.pretty;
|
2016-11-18 08:39:20 +00:00
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.Data
|
|
|
|
{
|
|
|
|
public abstract class BaseSqliteRepository : IDisposable
|
|
|
|
{
|
|
|
|
protected string DbFilePath { get; set; }
|
2016-11-20 23:48:52 +00:00
|
|
|
|
2016-11-18 08:39:20 +00:00
|
|
|
protected ILogger Logger { get; private set; }
|
|
|
|
|
|
|
|
protected BaseSqliteRepository(ILogger logger)
|
|
|
|
{
|
|
|
|
Logger = logger;
|
2016-11-20 23:48:52 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
protected TransactionMode TransactionMode => TransactionMode.Deferred;
|
2016-11-18 08:39:20 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
protected TransactionMode ReadTransactionMode => TransactionMode.Deferred;
|
2016-11-28 19:26:48 +00:00
|
|
|
|
2016-12-11 05:12:00 +00:00
|
|
|
internal static int ThreadSafeMode { get; set; }
|
|
|
|
|
2019-02-26 17:58:33 +00:00
|
|
|
protected virtual ConnectionFlags DefaultConnectionFlags => ConnectionFlags.SharedCached | ConnectionFlags.NoMutex;
|
2019-02-26 17:30:13 +00:00
|
|
|
|
|
|
|
private readonly SemaphoreSlim WriteLock = new SemaphoreSlim(1, 1);
|
|
|
|
|
|
|
|
private SQLiteDatabaseConnection WriteConnection;
|
|
|
|
|
|
|
|
private readonly BlockingCollection<SQLiteDatabaseConnection> ReadConnectionPool = new BlockingCollection<SQLiteDatabaseConnection>();
|
|
|
|
|
2016-11-19 07:51:07 +00:00
|
|
|
static BaseSqliteRepository()
|
2016-11-18 08:39:20 +00:00
|
|
|
{
|
2016-12-11 05:12:00 +00:00
|
|
|
ThreadSafeMode = raw.sqlite3_threadsafe();
|
2019-02-26 17:58:33 +00:00
|
|
|
raw.sqlite3_enable_shared_cache(1);
|
2016-11-19 07:51:07 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:54:53 +00:00
|
|
|
private string _defaultWal;
|
2016-12-13 15:44:34 +00:00
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
protected async Task CreateConnections()
|
2016-12-13 15:44:34 +00:00
|
|
|
{
|
2019-02-26 17:30:13 +00:00
|
|
|
await WriteLock.WaitAsync().ConfigureAwait(false);
|
2016-11-18 08:39:20 +00:00
|
|
|
|
2019-02-20 13:26:49 +00:00
|
|
|
try
|
|
|
|
{
|
2019-02-26 17:30:13 +00:00
|
|
|
if (WriteConnection == null)
|
2016-12-13 08:45:04 +00:00
|
|
|
{
|
2019-02-26 17:30:13 +00:00
|
|
|
WriteConnection = SQLite3.Open(
|
|
|
|
DbFilePath,
|
|
|
|
DefaultConnectionFlags | ConnectionFlags.Create | ConnectionFlags.ReadWrite,
|
|
|
|
null);
|
2016-12-13 08:45:04 +00:00
|
|
|
}
|
2019-02-20 13:26:49 +00:00
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(_defaultWal))
|
2019-02-20 13:26:49 +00:00
|
|
|
{
|
2019-02-26 17:30:13 +00:00
|
|
|
_defaultWal = WriteConnection.Query("PRAGMA journal_mode").SelectScalarString().First();
|
2019-02-20 13:26:49 +00:00
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
Logger.LogInformation("Default journal_mode for {0} is {1}", DbFilePath, _defaultWal);
|
2016-12-13 08:45:04 +00:00
|
|
|
}
|
2016-11-21 08:54:53 +00:00
|
|
|
|
2019-02-20 13:26:49 +00:00
|
|
|
if (EnableTempStoreMemory)
|
2016-12-13 15:44:34 +00:00
|
|
|
{
|
2019-02-26 17:30:13 +00:00
|
|
|
WriteConnection.Execute("PRAGMA temp_store = memory");
|
2016-12-13 15:44:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-26 17:30:13 +00:00
|
|
|
WriteConnection.Execute("PRAGMA temp_store = file");
|
2016-12-13 08:45:04 +00:00
|
|
|
}
|
2019-02-20 13:26:49 +00:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2016-11-19 07:51:07 +00:00
|
|
|
|
2019-02-20 13:26:49 +00:00
|
|
|
throw;
|
2016-12-13 08:45:04 +00:00
|
|
|
}
|
2019-02-26 17:30:13 +00:00
|
|
|
finally
|
|
|
|
{
|
|
|
|
WriteLock.Release();
|
|
|
|
}
|
2019-02-20 13:26:49 +00:00
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
// Add one reading connection for each thread
|
|
|
|
int threads = System.Environment.ProcessorCount;
|
|
|
|
for (int i = 0; i <= threads; i++)
|
|
|
|
{
|
|
|
|
ReadConnectionPool.Add(SQLite3.Open(DbFilePath, DefaultConnectionFlags | ConnectionFlags.ReadOnly, null));
|
|
|
|
}
|
2016-11-18 08:39:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
protected ManagedConnection GetConnection(bool isReadOnly = false)
|
|
|
|
{
|
|
|
|
if (isReadOnly)
|
|
|
|
{
|
|
|
|
return new ManagedConnection(ReadConnectionPool.Take(), ReadConnectionPool);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (WriteConnection == null)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Can't access the write connection at this time.");
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteLock.Wait();
|
|
|
|
return new ManagedConnection(WriteConnection, WriteLock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public IStatement PrepareStatement(ManagedConnection connection, string sql)
|
2019-02-26 17:58:33 +00:00
|
|
|
=> connection.PrepareStatement(sql);
|
2016-12-13 15:44:34 +00:00
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
public IStatement PrepareStatementSafe(ManagedConnection connection, string sql)
|
2019-02-26 17:58:33 +00:00
|
|
|
=> connection.PrepareStatement(sql);
|
2016-12-13 15:44:34 +00:00
|
|
|
|
2016-12-11 05:12:00 +00:00
|
|
|
public IStatement PrepareStatement(IDatabaseConnection connection, string sql)
|
2019-02-26 17:58:33 +00:00
|
|
|
=> connection.PrepareStatement(sql);
|
2016-12-11 05:12:00 +00:00
|
|
|
|
|
|
|
public IStatement PrepareStatementSafe(IDatabaseConnection connection, string sql)
|
2019-02-26 17:58:33 +00:00
|
|
|
=> connection.PrepareStatement(sql);
|
2016-12-11 05:12:00 +00:00
|
|
|
|
2019-02-26 17:58:33 +00:00
|
|
|
public IEnumerable<IStatement> PrepareAll(IDatabaseConnection connection, IEnumerable<string> sql)
|
|
|
|
=> PrepareAllSafe(connection, sql);
|
2016-12-11 05:12:00 +00:00
|
|
|
|
2019-02-26 17:58:33 +00:00
|
|
|
public IEnumerable<IStatement> PrepareAllSafe(IDatabaseConnection connection, IEnumerable<string> sql)
|
|
|
|
=> sql.Select(connection.PrepareStatement);
|
2016-12-11 05:12:00 +00:00
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
protected bool TableExists(ManagedConnection connection, string name)
|
2018-09-12 17:26:21 +00: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-26 17:30:13 +00:00
|
|
|
protected void RunDefaultInitialization(ManagedConnection db)
|
2016-11-29 19:12:37 +00:00
|
|
|
{
|
|
|
|
var queries = new List<string>
|
|
|
|
{
|
|
|
|
"PRAGMA journal_mode=WAL",
|
|
|
|
"PRAGMA page_size=4096",
|
2016-12-13 08:45:04 +00:00
|
|
|
"PRAGMA synchronous=Normal"
|
2016-11-29 19:12:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (EnableTempStoreMemory)
|
|
|
|
{
|
|
|
|
queries.AddRange(new List<string>
|
|
|
|
{
|
|
|
|
"pragma default_temp_store = memory",
|
|
|
|
"pragma temp_store = memory"
|
|
|
|
});
|
|
|
|
}
|
2017-08-09 19:56:38 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
queries.AddRange(new List<string>
|
|
|
|
{
|
|
|
|
"pragma temp_store = file"
|
|
|
|
});
|
|
|
|
}
|
2016-11-29 19:12:37 +00:00
|
|
|
|
2019-02-08 23:48:09 +00:00
|
|
|
db.ExecuteAll(string.Join(";", queries));
|
2018-12-13 13:18:25 +00:00
|
|
|
Logger.LogInformation("PRAGMA synchronous=" + db.Query("PRAGMA synchronous").SelectScalarString().First());
|
2016-11-29 19:12:37 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 17:30:13 +00:00
|
|
|
protected virtual bool EnableTempStoreMemory => true;
|
2016-11-19 18:09:15 +00:00
|
|
|
|
2016-11-18 08:39:20 +00:00
|
|
|
private bool _disposed;
|
|
|
|
protected void CheckDisposed()
|
|
|
|
{
|
|
|
|
if (_disposed)
|
|
|
|
{
|
2019-01-13 19:20:16 +00:00
|
|
|
throw new ObjectDisposedException(GetType().Name, "Object has been disposed and cannot be accessed.");
|
2016-11-18 08:39:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
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 13:26:49 +00:00
|
|
|
if (_disposed)
|
2017-09-22 05:54:57 +00:00
|
|
|
{
|
2019-02-20 13:26:49 +00:00
|
|
|
return;
|
2016-11-18 08:39:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 17:58:33 +00:00
|
|
|
if (dispose)
|
|
|
|
{
|
|
|
|
WriteLock.Wait();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
WriteConnection.Dispose();
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
WriteLock.Release();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (var i in ReadConnectionPool)
|
|
|
|
{
|
|
|
|
i.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
ReadConnectionPool.Dispose();
|
|
|
|
}
|
2016-11-18 08:39:20 +00:00
|
|
|
|
2019-02-20 13:26:49 +00:00
|
|
|
_disposed = true;
|
2016-11-18 08:39:20 +00:00
|
|
|
}
|
2016-11-18 09:28:39 +00:00
|
|
|
|
2016-11-19 05:52:49 +00:00
|
|
|
protected List<string> GetColumnNames(IDatabaseConnection connection, string table)
|
2016-11-18 09:28:39 +00:00
|
|
|
{
|
2016-11-19 05:52:49 +00:00
|
|
|
var list = new List<string>();
|
|
|
|
|
2016-11-18 09:28:39 +00:00
|
|
|
foreach (var row in connection.Query("PRAGMA table_info(" + table + ")"))
|
|
|
|
{
|
|
|
|
if (row[1].SQLiteType != SQLiteType.Null)
|
|
|
|
{
|
|
|
|
var name = row[1].ToString();
|
|
|
|
|
2016-11-19 05:52:49 +00:00
|
|
|
list.Add(name);
|
2016-11-18 09:28:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-19 05:52:49 +00: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-20 23:48:52 +00:00
|
|
|
connection.Execute("alter table " + table + " add column " + columnName + " " + type + " NULL");
|
2016-11-18 09:28:39 +00:00
|
|
|
}
|
2016-11-18 08:39:20 +00:00
|
|
|
}
|
|
|
|
}
|