123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- #nullable disable
- #pragma warning disable CS1591
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Globalization;
- using SQLitePCL.pretty;
- namespace Emby.Server.Implementations.Data
- {
- public static class SqliteExtensions
- {
- private const string DatetimeFormatUtc = "yyyy-MM-dd HH:mm:ss.FFFFFFFK";
- private const string DatetimeFormatLocal = "yyyy-MM-dd HH:mm:ss.FFFFFFF";
- /// <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",
- DatetimeFormatUtc,
- "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",
- DatetimeFormatLocal,
- "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"
- };
- public static void RunQueries(this SQLiteDatabaseConnection connection, string[] queries)
- {
- if (queries == null)
- {
- throw new ArgumentNullException(nameof(queries));
- }
- connection.RunInTransaction(conn =>
- {
- conn.ExecuteAll(string.Join(';', queries));
- });
- }
- public static Guid ReadGuidFromBlob(this ResultSetValue result)
- {
- return new Guid(result.ToBlob());
- }
- 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);
- }
- private static string GetDateTimeKindFormat(DateTimeKind kind)
- => (kind == DateTimeKind.Utc) ? DatetimeFormatUtc : DatetimeFormatLocal;
- public static DateTime ReadDateTime(this ResultSetValue result)
- {
- var dateText = result.ToString();
- return DateTime.ParseExact(
- dateText,
- _datetimeFormats,
- DateTimeFormatInfo.InvariantInfo,
- DateTimeStyles.None).ToUniversalTime();
- }
- public static bool TryReadDateTime(this IReadOnlyList<ResultSetValue> reader, int index, out DateTime result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- var dateText = item.ToString();
- if (DateTime.TryParseExact(dateText, _datetimeFormats, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.None, out var dateTimeResult))
- {
- result = dateTimeResult.ToUniversalTime();
- return true;
- }
- result = default;
- return false;
- }
- public static bool TryGetGuid(this IReadOnlyList<ResultSetValue> reader, int index, out Guid result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- result = item.ReadGuidFromBlob();
- return true;
- }
- public static bool IsDbNull(this ResultSetValue result)
- {
- return result.SQLiteType == SQLiteType.Null;
- }
- public static string GetString(this IReadOnlyList<ResultSetValue> result, int index)
- {
- return result[index].ToString();
- }
- public static bool TryGetString(this IReadOnlyList<ResultSetValue> reader, int index, out string result)
- {
- 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)
- {
- return result[index].ToBool();
- }
- public static bool TryGetBoolean(this IReadOnlyList<ResultSetValue> reader, int index, out bool result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- result = item.ToBool();
- return true;
- }
- public static bool TryGetInt32(this IReadOnlyList<ResultSetValue> reader, int index, out int result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- result = item.ToInt();
- return true;
- }
- public static long GetInt64(this IReadOnlyList<ResultSetValue> result, int index)
- {
- return result[index].ToInt64();
- }
- public static bool TryGetInt64(this IReadOnlyList<ResultSetValue> reader, int index, out long result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- result = item.ToInt64();
- return true;
- }
- public static bool TryGetSingle(this IReadOnlyList<ResultSetValue> reader, int index, out float result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- result = item.ToFloat();
- return true;
- }
- public static bool TryGetDouble(this IReadOnlyList<ResultSetValue> reader, int index, out double result)
- {
- var item = reader[index];
- if (item.IsDbNull())
- {
- result = default;
- return false;
- }
- result = item.ToDouble();
- return true;
- }
- public static Guid GetGuid(this IReadOnlyList<ResultSetValue> result, int index)
- {
- return result[index].ReadGuidFromBlob();
- }
- [Conditional("DEBUG")]
- private static void CheckName(string name)
- {
- throw new ArgumentException("Invalid param name: " + name, nameof(name));
- }
- public static void TryBind(this IStatement statement, string name, double value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, string value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- if (value == null)
- {
- bindParam.BindNull();
- }
- else
- {
- bindParam.Bind(value);
- }
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, bool value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, float value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, int value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, Guid value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- Span<byte> byteValue = stackalloc byte[16];
- value.TryWriteBytes(byteValue);
- bindParam.Bind(byteValue);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, DateTime value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value.ToDateTimeParamValue());
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, long value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBind(this IStatement statement, string name, ReadOnlySpan<byte> value)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.Bind(value);
- }
- else
- {
- CheckName(name);
- }
- }
- public static void TryBindNull(this IStatement statement, string name)
- {
- if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam))
- {
- bindParam.BindNull();
- }
- else
- {
- CheckName(name);
- }
- }
- 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);
- }
- }
- public static void TryBind(this IStatement statement, string name, double? value)
- {
- if (value.HasValue)
- {
- TryBind(statement, name, value.Value);
- }
- else
- {
- TryBindNull(statement, name);
- }
- }
- 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)
- {
- while (statement.MoveNext())
- {
- yield return statement.Current;
- }
- }
- }
- }
|