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

264 lines
8.1 KiB
C#
Raw Normal View History

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;
2023-08-21 12:13:32 +02:00
using System.Data;
2016-11-18 09:39:20 +01:00
using System.Globalization;
2023-08-21 12:13:32 +02:00
using Microsoft.Data.Sqlite;
2016-11-18 09:39:20 +01:00
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"
};
2023-08-21 12:13:32 +02:00
public static IEnumerable<SqliteDataReader> Query(this SqliteConnection sqliteConnection, string commandText)
{
if (sqliteConnection.State != ConnectionState.Open)
{
sqliteConnection.Open();
}
2023-08-21 12:46:30 +02:00
using var command = sqliteConnection.CreateCommand();
2023-08-21 12:13:32 +02:00
command.CommandText = commandText;
using (var reader = command.ExecuteReader())
{
while (reader.Read())
{
yield return reader;
}
}
}
public static void Execute(this SqliteConnection sqliteConnection, string commandText)
{
2023-08-21 12:46:30 +02:00
using var command = sqliteConnection.CreateCommand();
2023-08-21 12:13:32 +02:00
command.CommandText = commandText;
command.ExecuteNonQuery();
}
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
2023-08-21 12:13:32 +02:00
public static bool TryReadDateTime(this SqliteDataReader reader, int index, out DateTime result)
2018-09-12 19:26:21 +02:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
2021-05-19 19:33:24 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
2023-08-21 12:13:32 +02:00
var dateText = reader.GetString(index);
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
{
// If the resulting DateTimeKind is Unspecified it is actually Utc.
// This is required downstream for the Json serializer.
if (dateTimeResult.Kind == DateTimeKind.Unspecified)
{
dateTimeResult = DateTime.SpecifyKind(dateTimeResult, DateTimeKind.Utc);
}
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;
}
2023-08-21 12:13:32 +02:00
public static bool TryGetGuid(this SqliteDataReader reader, int index, out Guid result)
2021-05-16 14:49:11 +02:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
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
}
2023-08-21 12:13:32 +02:00
result = reader.GetGuid(index);
2021-05-16 14:49:11 +02:00
return true;
2018-09-12 19:26:21 +02:00
}
2023-08-21 12:13:32 +02:00
public static bool TryGetString(this SqliteDataReader reader, int index, out string result)
2016-11-20 03:43:21 +01:00
{
2023-08-21 12:13:32 +02:00
result = string.Empty;
2016-11-20 03:43:21 +01:00
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
return false;
}
2023-08-21 12:13:32 +02:00
result = reader.GetString(index);
2021-05-16 14:49:11 +02:00
return true;
}
2023-08-21 12:13:32 +02:00
public static bool TryGetBoolean(this SqliteDataReader reader, int index, out bool result)
2016-11-20 03:43:21 +01:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
2023-08-21 12:13:32 +02:00
result = reader.GetBoolean(index);
2021-05-16 14:49:11 +02:00
return true;
}
2023-08-21 12:13:32 +02:00
public static bool TryGetInt32(this SqliteDataReader reader, int index, out int result)
2016-11-20 03:43:21 +01:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
2023-08-21 12:13:32 +02:00
result = reader.GetInt32(index);
2021-05-16 14:49:11 +02:00
return true;
2016-11-20 03:43:21 +01:00
}
2023-08-21 12:13:32 +02:00
public static bool TryGetInt64(this SqliteDataReader reader, int index, out long result)
2016-11-20 03:43:21 +01:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
2023-08-21 12:13:32 +02:00
result = reader.GetInt64(index);
2021-05-16 14:49:11 +02:00
return true;
}
2023-08-21 12:13:32 +02:00
public static bool TryGetSingle(this SqliteDataReader reader, int index, out float result)
2021-05-16 14:49:11 +02:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
2023-08-21 12:13:32 +02:00
result = reader.GetFloat(index);
2021-05-16 14:49:11 +02:00
return true;
}
2023-08-21 12:13:32 +02:00
public static bool TryGetDouble(this SqliteDataReader reader, int index, out double result)
2016-11-20 03:43:21 +01:00
{
2023-08-21 12:13:32 +02:00
if (reader.IsDBNull(index))
2021-05-16 14:49:11 +02:00
{
2021-05-19 08:51:46 +02:00
result = default;
2021-05-16 14:49:11 +02:00
return false;
}
2023-08-21 12:13:32 +02:00
result = reader.GetDouble(index);
2021-05-16 14:49:11 +02:00
return true;
2016-11-20 03:43:21 +01:00
}
2023-08-21 12:13:32 +02:00
public static void TryBind(this SqliteCommand statement, string name, Guid value)
2016-11-20 07:13:35 +01:00
{
2023-08-21 12:27:07 +02:00
statement.TryBind(name, value, true);
2016-11-20 07:13:35 +01:00
}
2023-08-21 12:27:07 +02:00
public static void TryBind(this SqliteCommand statement, string name, object? value, bool isBlob = false)
2016-11-20 03:43:21 +01:00
{
2023-08-21 12:13:32 +02:00
var preparedValue = value ?? DBNull.Value;
if (statement.Parameters.Contains(name))
2016-11-20 06:59:36 +01:00
{
2023-08-21 12:13:32 +02:00
statement.Parameters[name].Value = preparedValue;
2016-11-20 10:46:07 +01:00
}
else
{
2023-08-21 21:37:18 +02:00
// Blobs aren't always detected automatically
2023-08-21 12:27:07 +02:00
if (isBlob)
{
statement.Parameters.Add(new SqliteParameter(name, SqliteType.Blob) { Value = value });
}
else
{
statement.Parameters.AddWithValue(name, preparedValue);
}
2016-11-20 06:59:36 +01:00
}
}
2023-08-21 12:13:32 +02:00
public static void TryBindNull(this SqliteCommand statement, string name)
2016-11-20 07:13:35 +01:00
{
2023-08-21 12:13:32 +02:00
statement.TryBind(name, DBNull.Value);
2016-11-20 08:10:07 +01:00
}
2023-08-21 12:13:32 +02:00
public static IEnumerable<SqliteDataReader> ExecuteQuery(this SqliteCommand command)
2016-11-20 08:10:07 +01:00
{
2023-08-21 12:13:32 +02:00
using (var reader = command.ExecuteReader())
2016-11-20 08:10:07 +01:00
{
2023-08-21 12:13:32 +02:00
while (reader.Read())
{
yield return reader;
}
2016-11-20 08:10:07 +01:00
}
}
2023-08-21 12:13:32 +02:00
public static int SelectScalarInt(this SqliteCommand command)
2016-11-20 08:10:07 +01:00
{
2023-08-21 12:13:32 +02:00
var result = command.ExecuteScalar();
2023-08-22 08:31:34 +02:00
// Can't be null since the method is used to retrieve Count
2023-08-21 12:13:32 +02:00
return Convert.ToInt32(result!, CultureInfo.InvariantCulture);
2016-11-20 08:10:07 +01:00
}
2023-08-21 12:13:32 +02:00
public static SqliteCommand PrepareStatement(this SqliteConnection sqliteConnection, string sql)
2016-12-23 18:09:50 +01:00
{
2023-08-21 12:13:32 +02:00
var command = sqliteConnection.CreateCommand();
command.CommandText = sql;
return command;
2016-12-23 18:09:50 +01:00
}
2016-11-18 09:39:20 +01:00
}
}