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

450 lines
13 KiB
C#
Raw Normal View History

#nullable disable
2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using System;
2016-11-19 22:07:01 +01:00
using System.Collections.Generic;
2021-02-13 00:39:18 +01:00
using System.Diagnostics;
2016-11-18 09:39:20 +01:00
using System.Globalization;
using SQLitePCL.pretty;
namespace Emby.Server.Implementations.Data
{
public static class SqliteExtensions
{
2019-10-11 18:16:42 +02: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 13:24:39 +02: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 18:16:42 +02:00
DatetimeFormatUtc,
2019-09-25 13:24:39 +02: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 18:16:42 +02:00
DatetimeFormatLocal,
2019-09-25 13:24:39 +02: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"
};
2016-11-18 09:39:20 +01:00
public static void RunQueries(this SQLiteDatabaseConnection connection, string[] queries)
{
ArgumentNullException.ThrowIfNull(queries);
2016-11-18 09:39:20 +01:00
connection.RunInTransaction(conn =>
{
2021-02-13 00:39:18 +01:00
conn.ExecuteAll(string.Join(';', queries));
2016-11-18 09:39:20 +01:00
});
}
public static Guid ReadGuidFromBlob(this ResultSetValue result)
2016-11-18 09:39:20 +01:00
{
2019-10-11 18:22:29 +02:00
return new Guid(result.ToBlob());
2016-11-18 09:39:20 +01: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 13:24:39 +02:00
private static string GetDateTimeKindFormat(DateTimeKind kind)
2019-10-11 18:16:42 +02:00
=> (kind == DateTimeKind.Utc) ? DatetimeFormatUtc : DatetimeFormatLocal;
2016-11-18 09:39:20 +01:00
public static DateTime ReadDateTime(this ResultSetValue result)
2016-11-18 09:39:20 +01:00
{
var dateText = result.ToString();
return DateTime.ParseExact(
2019-09-25 13:24:39 +02:00
dateText,
_datetimeFormats,
2016-11-18 09:39:20 +01:00
DateTimeFormatInfo.InvariantInfo,
2021-09-21 01:21:45 +02:00
DateTimeStyles.AdjustToUniversal);
2016-11-18 09:39:20 +01:00
}
2016-11-18 10:28:39 +01:00
public static bool TryReadDateTime(this IReadOnlyList<ResultSetValue> reader, int index, out DateTime result)
2018-09-12 19:26:21 +02:00
{
2021-05-16 14:49:11 +02:00
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 19:33:24 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
var dateText = item.ToString();
2018-09-12 19:26:21 +02:00
2021-09-21 01:21:45 +02:00
if (DateTime.TryParseExact(dateText, _datetimeFormats, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.AdjustToUniversal, out var dateTimeResult))
2018-09-12 19:26:21 +02:00
{
2021-09-21 01:21:45 +02:00
result = dateTimeResult;
2021-05-16 14:49:11 +02:00
return true;
}
2021-05-19 19:33:24 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
public static bool TryGetGuid(this IReadOnlyList<ResultSetValue> reader, int index, out Guid result)
2021-05-16 14:49:11 +02:00
{
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 19:33:24 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
2018-09-12 19:26:21 +02:00
}
2021-05-16 14:49:11 +02:00
result = item.ReadGuidFromBlob();
return true;
2018-09-12 19:26:21 +02:00
}
public static bool IsDbNull(this ResultSetValue result)
2016-11-20 03:43:21 +01:00
{
2021-05-16 14:49:11 +02:00
return result.SQLiteType == SQLiteType.Null;
2016-11-20 03:43:21 +01:00
}
public static string GetString(this IReadOnlyList<ResultSetValue> result, int index)
2016-11-20 03:43:21 +01:00
{
return result[index].ToString();
}
public static bool TryGetString(this IReadOnlyList<ResultSetValue> reader, int index, out string result)
2021-05-16 14:49:11 +02:00
{
result = null;
var item = reader[index];
if (item.IsDbNull())
{
return false;
}
result = item.ToString();
return true;
}
public static bool GetBoolean(this IReadOnlyList<ResultSetValue> result, int index)
2016-11-20 03:43:21 +01:00
{
return result[index].ToBool();
}
public static bool TryGetBoolean(this IReadOnlyList<ResultSetValue> reader, int index, out bool result)
2021-05-16 14:49:11 +02:00
{
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
result = item.ToBool();
return true;
}
public static bool TryGetInt32(this IReadOnlyList<ResultSetValue> reader, int index, out int result)
2016-11-20 03:43:21 +01:00
{
2021-05-16 14:49:11 +02:00
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
result = item.ToInt();
return true;
2016-11-20 03:43:21 +01:00
}
public static long GetInt64(this IReadOnlyList<ResultSetValue> result, int index)
2016-11-20 03:43:21 +01:00
{
return result[index].ToInt64();
}
public static bool TryGetInt64(this IReadOnlyList<ResultSetValue> reader, int index, out long result)
2021-05-16 14:49:11 +02:00
{
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
result = item.ToInt64();
return true;
}
public static bool TryGetSingle(this IReadOnlyList<ResultSetValue> reader, int index, out float result)
2021-05-16 14:49:11 +02:00
{
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
result = item.ToFloat();
return true;
}
public static bool TryGetDouble(this IReadOnlyList<ResultSetValue> reader, int index, out double result)
2016-11-20 03:43:21 +01:00
{
2021-05-16 14:49:11 +02:00
var item = reader[index];
if (item.IsDbNull())
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
result = item.ToDouble();
return true;
2016-11-20 03:43:21 +01:00
}
public static Guid GetGuid(this IReadOnlyList<ResultSetValue> result, int index)
2016-11-20 03:43:21 +01:00
{
2017-05-07 22:02:32 +02:00
return result[index].ReadGuidFromBlob();
2016-11-20 03:43:21 +01:00
}
2021-02-13 00:39:18 +01:00
[Conditional("DEBUG")]
2016-11-20 10:46:07 +01:00
private static void CheckName(string name)
{
2019-09-25 13:24:39 +02:00
throw new ArgumentException("Invalid param name: " + name, nameof(name));
2016-11-20 10:46:07 +01:00
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, double value)
2016-11-20 07:13:35 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 07:13:35 +01:00
{
bindParam.Bind(value);
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 07:13:35 +01:00
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, string value)
2016-11-20 03:43:21 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 06:59:36 +01:00
{
2022-12-05 15:00:20 +01:00
if (value is null)
2016-11-20 10:46:07 +01:00
{
bindParam.BindNull();
}
else
{
bindParam.Bind(value);
}
}
else
{
CheckName(name);
2016-11-20 06:59:36 +01:00
}
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, bool value)
2016-11-20 06:59:36 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 07:13:35 +01:00
{
bindParam.Bind(value);
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 07:13:35 +01:00
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, float value)
2016-11-20 07:13:35 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 07:13:35 +01:00
{
bindParam.Bind(value);
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 07:13:35 +01:00
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, int value)
2016-11-20 07:13:35 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 06:59:36 +01:00
{
bindParam.Bind(value);
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 06:59:36 +01:00
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, Guid value)
2016-11-20 06:59:36 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 08:10:07 +01:00
{
2020-09-16 14:16:44 +02:00
Span<byte> byteValue = stackalloc byte[16];
value.TryWriteBytes(byteValue);
bindParam.Bind(byteValue);
2016-11-20 08:10:07 +01:00
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 08:10:07 +01:00
}
public static void TryBind(this IStatement statement, string name, DateTime value)
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 08:10:07 +01:00
{
bindParam.Bind(value.ToDateTimeParamValue());
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 08:10:07 +01:00
}
public static void TryBind(this IStatement statement, string name, long value)
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 06:59:36 +01:00
{
bindParam.Bind(value);
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 06:59:36 +01:00
}
2020-04-03 20:59:38 +02:00
public static void TryBind(this IStatement statement, string name, ReadOnlySpan<byte> value)
2016-11-20 06:59:36 +01:00
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 08:10:07 +01:00
{
bindParam.Bind(value);
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 08:10:07 +01:00
}
public static void TryBindNull(this IStatement statement, string name)
{
if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
2016-11-20 06:59:36 +01:00
{
bindParam.BindNull();
}
2016-11-20 10:46:07 +01:00
else
{
CheckName(name);
}
2016-11-20 06:59:36 +01:00
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, DateTime? value)
{
if (value.HasValue)
{
TryBind(statement, name, value.Value);
}
else
{
TryBindNull(statement, name);
}
}
public static void TryBind(this IStatement statement, string name, Guid? value)
{
if (value.HasValue)
{
TryBind(statement, name, value.Value);
}
else
{
TryBindNull(statement, name);
}
}
2016-12-23 18:09:50 +01:00
public static void TryBind(this IStatement statement, string name, double? value)
{
if (value.HasValue)
{
TryBind(statement, name, value.Value);
}
else
{
TryBindNull(statement, name);
}
}
2016-11-20 08:10:07 +01:00
public static void TryBind(this IStatement statement, string name, int? value)
{
if (value.HasValue)
{
TryBind(statement, name, value.Value);
}
else
{
TryBindNull(statement, name);
}
}
public static void TryBind(this IStatement statement, string name, float? value)
{
if (value.HasValue)
{
TryBind(statement, name, value.Value);
}
else
{
TryBindNull(statement, name);
}
}
public static void TryBind(this IStatement statement, string name, bool? value)
{
if (value.HasValue)
{
TryBind(statement, name, value.Value);
}
else
{
TryBindNull(statement, name);
}
}
public static IEnumerable<IReadOnlyList<ResultSetValue>> ExecuteQuery(this IStatement statement)
2016-11-20 06:59:36 +01:00
{
2020-04-15 14:29:12 +02:00
while (statement.MoveNext())
2016-11-20 06:59:36 +01:00
{
2020-04-15 14:29:12 +02:00
yield return statement.Current;
2016-11-20 06:59:36 +01:00
}
2016-11-20 03:43:21 +01:00
}
2016-11-18 09:39:20 +01:00
}
}