< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.Data.SqliteExtensions
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/Data/SqliteExtensions.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 113
Coverable lines: 113
Total lines: 271
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 30
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.cctor()100%210%
Execute(...)100%210%
ToDateTimeParamValue(...)0%620%
GetDateTimeKindFormat(...)0%620%
TryReadDateTime(...)0%4260%
TryGetGuid(...)0%620%
TryGetString(...)0%620%
TryGetBoolean(...)0%620%
TryGetInt32(...)0%620%
TryGetInt64(...)0%620%
TryGetSingle(...)0%620%
TryGetDouble(...)0%620%
TryBind(...)100%210%
TryBind(...)0%4260%
TryBindNull(...)100%210%
SelectScalarInt(...)100%210%
PrepareStatement(...)100%210%

File(s)

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

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4using System.Collections.Generic;
 5using System.Data;
 6using System.Globalization;
 7using Microsoft.Data.Sqlite;
 8
 9namespace Emby.Server.Implementations.Data
 10{
 11    public static class SqliteExtensions
 12    {
 13        private const string DatetimeFormatUtc = "yyyy-MM-dd HH:mm:ss.FFFFFFFK";
 14        private const string DatetimeFormatLocal = "yyyy-MM-dd HH:mm:ss.FFFFFFF";
 15
 16        /// <summary>
 17        /// An array of ISO-8601 DateTime formats that we support parsing.
 18        /// </summary>
 019        private static readonly string[] _datetimeFormats = new string[]
 020        {
 021            "THHmmssK",
 022            "THHmmK",
 023            "HH:mm:ss.FFFFFFFK",
 024            "HH:mm:ssK",
 025            "HH:mmK",
 026            DatetimeFormatUtc,
 027            "yyyy-MM-dd HH:mm:ssK",
 028            "yyyy-MM-dd HH:mmK",
 029            "yyyy-MM-ddTHH:mm:ss.FFFFFFFK",
 030            "yyyy-MM-ddTHH:mmK",
 031            "yyyy-MM-ddTHH:mm:ssK",
 032            "yyyyMMddHHmmssK",
 033            "yyyyMMddHHmmK",
 034            "yyyyMMddTHHmmssFFFFFFFK",
 035            "THHmmss",
 036            "THHmm",
 037            "HH:mm:ss.FFFFFFF",
 038            "HH:mm:ss",
 039            "HH:mm",
 040            DatetimeFormatLocal,
 041            "yyyy-MM-dd HH:mm:ss",
 042            "yyyy-MM-dd HH:mm",
 043            "yyyy-MM-ddTHH:mm:ss.FFFFFFF",
 044            "yyyy-MM-ddTHH:mm",
 045            "yyyy-MM-ddTHH:mm:ss",
 046            "yyyyMMddHHmmss",
 047            "yyyyMMddHHmm",
 048            "yyyyMMddTHHmmssFFFFFFF",
 049            "yyyy-MM-dd",
 050            "yyyyMMdd",
 051            "yy-MM-dd"
 052        };
 53
 54        public static IEnumerable<SqliteDataReader> Query(this SqliteConnection sqliteConnection, string commandText)
 55        {
 56            if (sqliteConnection.State != ConnectionState.Open)
 57            {
 58                sqliteConnection.Open();
 59            }
 60
 61            using var command = sqliteConnection.CreateCommand();
 62            command.CommandText = commandText;
 63            using (var reader = command.ExecuteReader())
 64            {
 65                while (reader.Read())
 66                {
 67                    yield return reader;
 68                }
 69            }
 70        }
 71
 72        public static void Execute(this SqliteConnection sqliteConnection, string commandText)
 73        {
 074            using var command = sqliteConnection.CreateCommand();
 075            command.CommandText = commandText;
 076            command.ExecuteNonQuery();
 077        }
 78
 79        public static string ToDateTimeParamValue(this DateTime dateValue)
 80        {
 081            var kind = DateTimeKind.Utc;
 82
 083            return (dateValue.Kind == DateTimeKind.Unspecified)
 084                ? DateTime.SpecifyKind(dateValue, kind).ToString(
 085                    GetDateTimeKindFormat(kind),
 086                    CultureInfo.InvariantCulture)
 087                : dateValue.ToString(
 088                    GetDateTimeKindFormat(dateValue.Kind),
 089                    CultureInfo.InvariantCulture);
 90        }
 91
 92        private static string GetDateTimeKindFormat(DateTimeKind kind)
 093            => (kind == DateTimeKind.Utc) ? DatetimeFormatUtc : DatetimeFormatLocal;
 94
 95        public static bool TryReadDateTime(this SqliteDataReader reader, int index, out DateTime result)
 96        {
 097            if (reader.IsDBNull(index))
 98            {
 099                result = default;
 0100                return false;
 101            }
 102
 0103            var dateText = reader.GetString(index);
 104
 0105            if (DateTime.TryParseExact(dateText, _datetimeFormats, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.Adju
 106            {
 107                // If the resulting DateTimeKind is Unspecified it is actually Utc.
 108                // This is required downstream for the Json serializer.
 0109                if (dateTimeResult.Kind == DateTimeKind.Unspecified)
 110                {
 0111                    dateTimeResult = DateTime.SpecifyKind(dateTimeResult, DateTimeKind.Utc);
 112                }
 113
 0114                result = dateTimeResult;
 0115                return true;
 116            }
 117
 0118            result = default;
 0119            return false;
 120        }
 121
 122        public static bool TryGetGuid(this SqliteDataReader reader, int index, out Guid result)
 123        {
 0124            if (reader.IsDBNull(index))
 125            {
 0126                result = default;
 0127                return false;
 128            }
 129
 130            try
 131            {
 0132                result = reader.GetGuid(index);
 0133                return true;
 134            }
 0135            catch
 136            {
 0137                result = Guid.Empty;
 0138                return false;
 139            }
 0140        }
 141
 142        public static bool TryGetString(this SqliteDataReader reader, int index, out string result)
 143        {
 0144            result = string.Empty;
 145
 0146            if (reader.IsDBNull(index))
 147            {
 0148                return false;
 149            }
 150
 0151            result = reader.GetString(index);
 0152            return true;
 153        }
 154
 155        public static bool TryGetBoolean(this SqliteDataReader reader, int index, out bool result)
 156        {
 0157            if (reader.IsDBNull(index))
 158            {
 0159                result = default;
 0160                return false;
 161            }
 162
 0163            result = reader.GetBoolean(index);
 0164            return true;
 165        }
 166
 167        public static bool TryGetInt32(this SqliteDataReader reader, int index, out int result)
 168        {
 0169            if (reader.IsDBNull(index))
 170            {
 0171                result = default;
 0172                return false;
 173            }
 174
 0175            result = reader.GetInt32(index);
 0176            return true;
 177        }
 178
 179        public static bool TryGetInt64(this SqliteDataReader reader, int index, out long result)
 180        {
 0181            if (reader.IsDBNull(index))
 182            {
 0183                result = default;
 0184                return false;
 185            }
 186
 0187            result = reader.GetInt64(index);
 0188            return true;
 189        }
 190
 191        public static bool TryGetSingle(this SqliteDataReader reader, int index, out float result)
 192        {
 0193            if (reader.IsDBNull(index))
 194            {
 0195                result = default;
 0196                return false;
 197            }
 198
 0199            result = reader.GetFloat(index);
 0200            return true;
 201        }
 202
 203        public static bool TryGetDouble(this SqliteDataReader reader, int index, out double result)
 204        {
 0205            if (reader.IsDBNull(index))
 206            {
 0207                result = default;
 0208                return false;
 209            }
 210
 0211            result = reader.GetDouble(index);
 0212            return true;
 213        }
 214
 215        public static void TryBind(this SqliteCommand statement, string name, Guid value)
 216        {
 0217            statement.TryBind(name, value, true);
 0218        }
 219
 220        public static void TryBind(this SqliteCommand statement, string name, object? value, bool isBlob = false)
 221        {
 0222            var preparedValue = value ?? DBNull.Value;
 0223            if (statement.Parameters.Contains(name))
 224            {
 0225                statement.Parameters[name].Value = preparedValue;
 226            }
 227            else
 228            {
 229                // Blobs aren't always detected automatically
 0230                if (isBlob)
 231                {
 0232                    statement.Parameters.Add(new SqliteParameter(name, SqliteType.Blob) { Value = value });
 233                }
 234                else
 235                {
 0236                    statement.Parameters.AddWithValue(name, preparedValue);
 237                }
 238            }
 0239        }
 240
 241        public static void TryBindNull(this SqliteCommand statement, string name)
 242        {
 0243            statement.TryBind(name, DBNull.Value);
 0244        }
 245
 246        public static IEnumerable<SqliteDataReader> ExecuteQuery(this SqliteCommand command)
 247        {
 248            using (var reader = command.ExecuteReader())
 249            {
 250                while (reader.Read())
 251                {
 252                    yield return reader;
 253                }
 254            }
 255        }
 256
 257        public static int SelectScalarInt(this SqliteCommand command)
 258        {
 0259            var result = command.ExecuteScalar();
 260            // Can't be null since the method is used to retrieve Count
 0261            return Convert.ToInt32(result!, CultureInfo.InvariantCulture);
 262        }
 263
 264        public static SqliteCommand PrepareStatement(this SqliteConnection sqliteConnection, string sql)
 265        {
 0266            var command = sqliteConnection.CreateCommand();
 0267            command.CommandText = sql;
 0268            return command;
 269        }
 270    }
 271}