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

346 lines
11 KiB
C#
Raw Normal View History

2023-08-21 06:13:32 -04:00
#nullable enable
2019-11-01 13:38:54 -04:00
#pragma warning disable CS1591
using System;
2016-11-19 16:07:01 -05:00
using System.Collections.Generic;
2023-08-21 06:13:32 -04:00
using System.Data;
2021-02-12 18:39:18 -05:00
using System.Diagnostics;
2016-11-18 03:39:20 -05:00
using System.Globalization;
2023-08-21 06:13:32 -04:00
using Microsoft.Data.Sqlite;
2016-11-18 03:39:20 -05:00
namespace Emby.Server.Implementations.Data
{
public static class SqliteExtensions
{
2019-10-11 12:16:42 -04:00
private const string DatetimeFormatUtc = "yyyy-MM-dd HH:mm:ss.FFFFFFFK";
private const string DatetimeFormatLocal = "yyyy-MM-dd HH:mm:ss.FFFFFFF";
2019-09-25 07:24:39 -04:00
/// <summary>
/// An array of ISO-8601 DateTime formats that we support parsing.
/// </summary>
private static readonly string[] _datetimeFormats = new string[]
{
"THHmmssK",
"THHmmK",
"HH:mm:ss.FFFFFFFK",
"HH:mm:ssK",
"HH:mmK",
2019-10-11 12:16:42 -04:00
DatetimeFormatUtc,
2019-09-25 07:24:39 -04:00
"yyyy-MM-dd HH:mm:ssK",
"yyyy-MM-dd HH:mmK",
"yyyy-MM-ddTHH:mm:ss.FFFFFFFK",
"yyyy-MM-ddTHH:mmK",
"yyyy-MM-ddTHH:mm:ssK",
"yyyyMMddHHmmssK",
"yyyyMMddHHmmK",
"yyyyMMddTHHmmssFFFFFFFK",
"THHmmss",
"THHmm",
"HH:mm:ss.FFFFFFF",
"HH:mm:ss",
"HH:mm",
2019-10-11 12:16:42 -04:00
DatetimeFormatLocal,
2019-09-25 07:24:39 -04:00
"yyyy-MM-dd HH:mm:ss",
"yyyy-MM-dd HH:mm",
"yyyy-MM-ddTHH:mm:ss.FFFFFFF",
"yyyy-MM-ddTHH:mm",
"yyyy-MM-ddTHH:mm:ss",
"yyyyMMddHHmmss",
"yyyyMMddHHmm",
"yyyyMMddTHHmmssFFFFFFF",
"yyyy-MM-dd",
"yyyyMMdd",
"yy-MM-dd"
};
2023-08-21 06:13:32 -04:00
private static void EnsureOpen(this SqliteConnection sqliteConnection)
{
if (sqliteConnection.State == ConnectionState.Closed)
{
sqliteConnection.Open();
}
}
public static IEnumerable<SqliteDataReader> Query(this SqliteConnection sqliteConnection, string commandText)
{
if (sqliteConnection.State != ConnectionState.Open)
{
sqliteConnection.Open();
}
var command = sqliteConnection.CreateCommand();
command.CommandText = commandText;
using (var reader = command.ExecuteReader())
{
while (reader.Read())
{
yield return reader;
}
}
}
public static void Execute(this SqliteConnection sqliteConnection, string commandText)
{
sqliteConnection.EnsureOpen();
var command = sqliteConnection.CreateCommand();
command.CommandText = commandText;
command.ExecuteNonQuery();
}
public static void RunInTransaction(this SqliteConnection sqliteConnection, Action<SqliteConnection> action)
{
sqliteConnection.EnsureOpen();
using var transaction = sqliteConnection.BeginTransaction();
action(sqliteConnection);
transaction.Commit();
}
public static bool RunInTransaction(this SqliteConnection sqliteConnection, Func<SqliteConnection, bool> action)
{
sqliteConnection.EnsureOpen();
using var transaction = sqliteConnection.BeginTransaction();
var result = action(sqliteConnection);
transaction.Commit();
return result;
}
public static void ExecuteAll(this SqliteConnection sqliteConnection, string commandText)
{
sqliteConnection.EnsureOpen();
var command = sqliteConnection.CreateCommand();
command.CommandText = commandText;
command.ExecuteNonQuery();
}
public static void RunQueries(this SqliteConnection connection, string[] queries)
2016-11-18 03:39:20 -05:00
{
ArgumentNullException.ThrowIfNull(queries);
2016-11-18 03:39:20 -05:00
connection.RunInTransaction(conn =>
{
2021-02-12 18:39:18 -05:00
conn.ExecuteAll(string.Join(';', queries));
2016-11-18 03:39:20 -05:00
});
}
public static string ToDateTimeParamValue(this DateTime dateValue)
{
var kind = DateTimeKind.Utc;
return (dateValue.Kind == DateTimeKind.Unspecified)
? DateTime.SpecifyKind(dateValue, kind).ToString(
GetDateTimeKindFormat(kind),
CultureInfo.InvariantCulture)
: dateValue.ToString(
GetDateTimeKindFormat(dateValue.Kind),
CultureInfo.InvariantCulture);
}
2019-09-25 07:24:39 -04:00
private static string GetDateTimeKindFormat(DateTimeKind kind)
2019-10-11 12:16:42 -04:00
=> (kind == DateTimeKind.Utc) ? DatetimeFormatUtc : DatetimeFormatLocal;
2016-11-18 03:39:20 -05:00
2023-08-21 06:13:32 -04:00
public static DateTime ReadDateTime(this SqliteDataReader result)
2016-11-18 03:39:20 -05:00
{
var dateText = result.ToString();
return DateTime.ParseExact(
2023-08-21 06:13:32 -04:00
dateText!,
2019-09-25 07:24:39 -04:00
_datetimeFormats,
2016-11-18 03:39:20 -05:00
DateTimeFormatInfo.InvariantInfo,
2021-09-20 19:21:45 -04:00
DateTimeStyles.AdjustToUniversal);
2016-11-18 03:39:20 -05:00
}
2016-11-18 04:28:39 -05:00
2023-08-21 06:13:32 -04:00
public static bool TryReadDateTime(this SqliteDataReader reader, int index, out DateTime result)
2018-09-12 13:26:21 -04:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 13:33:24 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
var dateText = reader.GetString(index);
2018-09-12 13:26:21 -04:00
2021-09-20 19:21:45 -04:00
if (DateTime.TryParseExact(dateText, _datetimeFormats, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.AdjustToUniversal, out var dateTimeResult))
2018-09-12 13:26:21 -04:00
{
2021-09-20 19:21:45 -04:00
result = dateTimeResult;
2021-05-16 08:49:11 -04:00
return true;
}
2021-05-19 13:33:24 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
public static bool TryGetGuid(this SqliteDataReader reader, int index, out Guid result)
2021-05-16 08:49:11 -04:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 13:33:24 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
2018-09-12 13:26:21 -04:00
}
2023-08-21 06:13:32 -04:00
result = reader.GetGuid(index);
2021-05-16 08:49:11 -04:00
return true;
2018-09-12 13:26:21 -04:00
}
2023-08-21 06:13:32 -04:00
public static bool TryGetString(this SqliteDataReader reader, int index, out string result)
2016-11-19 21:43:21 -05:00
{
2023-08-21 06:13:32 -04:00
result = string.Empty;
2016-11-19 21:43:21 -05:00
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
return false;
}
2023-08-21 06:13:32 -04:00
result = reader.GetString(index);
2021-05-16 08:49:11 -04:00
return true;
}
2023-08-21 06:13:32 -04:00
public static bool TryGetBoolean(this SqliteDataReader reader, int index, out bool result)
2016-11-19 21:43:21 -05:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 02:51:46 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
result = reader.GetBoolean(index);
2021-05-16 08:49:11 -04:00
return true;
}
2023-08-21 06:13:32 -04:00
public static bool TryGetInt32(this SqliteDataReader reader, int index, out int result)
2016-11-19 21:43:21 -05:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 02:51:46 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
result = reader.GetInt32(index);
2021-05-16 08:49:11 -04:00
return true;
2016-11-19 21:43:21 -05:00
}
2023-08-21 06:13:32 -04:00
public static bool TryGetInt64(this SqliteDataReader reader, int index, out long result)
2016-11-19 21:43:21 -05:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 02:51:46 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
result = reader.GetInt64(index);
2021-05-16 08:49:11 -04:00
return true;
}
2023-08-21 06:13:32 -04:00
public static bool TryGetSingle(this SqliteDataReader reader, int index, out float result)
2021-05-16 08:49:11 -04:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 02:51:46 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
result = reader.GetFloat(index);
2021-05-16 08:49:11 -04:00
return true;
}
2023-08-21 06:13:32 -04:00
public static bool TryGetDouble(this SqliteDataReader reader, int index, out double result)
2016-11-19 21:43:21 -05:00
{
2023-08-21 06:13:32 -04:00
if (reader.IsDBNull(index))
2021-05-16 08:49:11 -04:00
{
2021-05-19 02:51:46 -04:00
result = default;
2021-05-16 08:49:11 -04:00
return false;
}
2023-08-21 06:13:32 -04:00
result = reader.GetDouble(index);
2021-05-16 08:49:11 -04:00
return true;
2016-11-19 21:43:21 -05:00
}
2021-02-12 18:39:18 -05:00
[Conditional("DEBUG")]
2016-11-20 04:46:07 -05:00
private static void CheckName(string name)
{
2019-09-25 07:24:39 -04:00
throw new ArgumentException("Invalid param name: " + name, nameof(name));
2016-11-20 04:46:07 -05:00
}
2023-08-21 06:13:32 -04:00
public static void TryBind(this SqliteCommand statement, string name, Guid value)
2016-11-20 01:13:35 -05:00
{
2023-08-21 06:13:32 -04:00
if (statement.Parameters.Contains(name))
2016-11-20 01:13:35 -05:00
{
2023-08-21 06:13:32 -04:00
statement.Parameters[name].Value = value;
2016-11-20 01:13:35 -05:00
}
2016-11-20 04:46:07 -05:00
else
{
2023-08-21 06:13:32 -04:00
statement.Parameters.Add(new SqliteParameter(name, SqliteType.Blob) { Value = value });
2016-11-20 04:46:07 -05:00
}
2016-11-20 01:13:35 -05:00
}
2023-08-21 06:13:32 -04:00
public static void TryBind(this SqliteCommand statement, string name, object? value)
2016-11-19 21:43:21 -05:00
{
2023-08-21 06:13:32 -04:00
var preparedValue = value ?? DBNull.Value;
if (statement.Parameters.Contains(name))
2016-11-20 00:59:36 -05:00
{
2023-08-21 06:13:32 -04:00
statement.Parameters[name].Value = preparedValue;
2016-11-20 04:46:07 -05:00
}
else
{
2023-08-21 06:13:32 -04:00
statement.Parameters.AddWithValue(name, preparedValue);
2016-11-20 00:59:36 -05:00
}
}
2023-08-21 06:13:32 -04:00
public static void TryBind(this SqliteCommand statement, string name, byte[] value)
2016-11-20 00:59:36 -05:00
{
2023-08-21 06:13:32 -04:00
if (statement.Parameters.Contains(name))
2016-11-20 01:13:35 -05:00
{
2023-08-21 06:13:32 -04:00
statement.Parameters[name].Value = value;
2016-11-20 01:13:35 -05:00
}
2016-11-20 04:46:07 -05:00
else
{
2023-08-21 06:13:32 -04:00
statement.Parameters.Add(new SqliteParameter(name, SqliteType.Blob, value.Length) { Value = value });
2016-11-20 04:46:07 -05:00
}
2016-11-20 01:13:35 -05:00
}
2023-08-21 06:13:32 -04:00
public static void TryBindNull(this SqliteCommand statement, string name)
2016-11-20 01:13:35 -05:00
{
2023-08-21 06:13:32 -04:00
statement.TryBind(name, DBNull.Value);
2016-11-20 02:10:07 -05:00
}
2023-08-21 06:13:32 -04:00
public static IEnumerable<SqliteDataReader> ExecuteQuery(this SqliteCommand command)
2016-11-20 02:10:07 -05:00
{
2023-08-21 06:13:32 -04:00
using (var reader = command.ExecuteReader())
2016-11-20 02:10:07 -05:00
{
2023-08-21 06:13:32 -04:00
while (reader.Read())
{
yield return reader;
}
2016-11-20 02:10:07 -05:00
}
}
2023-08-21 06:13:32 -04:00
public static int SelectScalarInt(this SqliteCommand command)
2016-11-20 02:10:07 -05:00
{
2023-08-21 06:13:32 -04:00
var result = command.ExecuteScalar();
return Convert.ToInt32(result!, CultureInfo.InvariantCulture);
2016-11-20 02:10:07 -05:00
}
2023-08-21 06:13:32 -04:00
public static SqliteCommand PrepareStatement(this SqliteConnection sqliteConnection, string sql)
2016-12-23 12:09:50 -05:00
{
2023-08-21 06:13:32 -04:00
sqliteConnection.EnsureOpen();
var command = sqliteConnection.CreateCommand();
command.CommandText = sql;
return command;
2016-12-23 12:09:50 -05:00
}
2023-08-21 06:13:32 -04:00
// Hacky
public static void MoveNext(this SqliteCommand sqliteCommand)
2016-11-20 02:10:07 -05:00
{
2023-08-21 06:13:32 -04:00
sqliteCommand.Prepare();
var result = sqliteCommand.ExecuteNonQuery();
2016-11-20 02:10:07 -05:00
}
2023-08-21 06:13:32 -04:00
public static byte[] GetBlob(this SqliteDataReader reader, int index)
2016-11-20 02:10:07 -05:00
{
2023-08-21 06:13:32 -04:00
// Have to reset to casting as there isn't a publicly available GetBlob method
return (byte[])reader.GetValue(index);
2016-11-19 21:43:21 -05:00
}
2016-11-18 03:39:20 -05:00
}
}