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

257 lines
7.7 KiB
C#
Raw Normal View History

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;
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
public static IEnumerable<SqliteDataReader> Query(this SqliteConnection sqliteConnection, string commandText)
{
if (sqliteConnection.State != ConnectionState.Open)
{
sqliteConnection.Open();
}
2023-08-21 06:46:30 -04:00
using var command = sqliteConnection.CreateCommand();
2023-08-21 06:13:32 -04: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 06:46:30 -04:00
using var command = sqliteConnection.CreateCommand();
2023-08-21 06:13:32 -04:00
command.CommandText = commandText;
command.ExecuteNonQuery();
}
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 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
}
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:27:07 -04:00
statement.TryBind(name, value, true);
2016-11-20 01:13:35 -05:00
}
2023-08-21 06:27:07 -04:00
public static void TryBind(this SqliteCommand statement, string name, object? value, bool isBlob = false)
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 15:37:18 -04:00
// Blobs aren't always detected automatically
2023-08-21 06:27:07 -04:00
if (isBlob)
{
statement.Parameters.Add(new SqliteParameter(name, SqliteType.Blob) { Value = value });
}
else
{
statement.Parameters.AddWithValue(name, preparedValue);
}
2016-11-20 00:59:36 -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();
2023-08-22 02:31:34 -04:00
// Can't be null since the method is used to retrieve Count
2023-08-21 06:13:32 -04:00
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
var command = sqliteConnection.CreateCommand();
command.CommandText = sql;
return command;
2016-12-23 12:09:50 -05:00
}
2016-11-18 03:39:20 -05:00
}
}