< Summary - Jellyfin

Information
Class: Jellyfin.Extensions.Json.Converters.JsonDelimitedCollectionConverter<T>
Assembly: Jellyfin.Extensions
File(s): /srv/git/jellyfin/src/Jellyfin.Extensions/Json/Converters/JsonDelimitedCollectionConverter.cs
Line coverage
100%
Covered lines: 21
Uncovered lines: 0
Coverable lines: 21
Total lines: 76
Line coverage: 100%
Branch coverage
100%
Covered branches: 10
Total branches: 10
Branch coverage: 100%
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
.ctor()100%11100%
Read(...)100%1010100%
Write(...)100%11100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Extensions/Json/Converters/JsonDelimitedCollectionConverter.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel;
 4using System.Text.Json;
 5using System.Text.Json.Serialization;
 6
 7namespace Jellyfin.Extensions.Json.Converters
 8{
 9    /// <summary>
 10    /// Convert delimited string to array of type.
 11    /// </summary>
 12    /// <typeparam name="T">Type to convert to.</typeparam>
 13    public abstract class JsonDelimitedCollectionConverter<T> : JsonConverter<IReadOnlyCollection<T>>
 14    {
 15        private readonly TypeConverter _typeConverter;
 16
 17        /// <summary>
 18        /// Initializes a new instance of the <see cref="JsonDelimitedCollectionConverter{T}"/> class.
 19        /// </summary>
 2320        protected JsonDelimitedCollectionConverter()
 21        {
 2322            _typeConverter = TypeDescriptor.GetConverter(typeof(T));
 2323        }
 24
 25        /// <summary>
 26        /// Gets the array delimiter.
 27        /// </summary>
 28        protected virtual char Delimiter { get; }
 29
 30        /// <inheritdoc />
 31        public override IReadOnlyCollection<T>? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOption
 32        {
 1633            if (reader.TokenType == JsonTokenType.String)
 34            {
 35                // null got handled higher up the call stack
 1236                var stringEntries = reader.GetString()!.Split(Delimiter, StringSplitOptions.RemoveEmptyEntries);
 1237                if (stringEntries.Length == 0)
 38                {
 239                    return [];
 40                }
 41
 1042                var typedValues = new List<T>();
 7043                for (var i = 0; i < stringEntries.Length; i++)
 44                {
 45                    try
 46                    {
 2547                        var parsedValue = _typeConverter.ConvertFromInvariantString(stringEntries[i].Trim());
 2448                        if (parsedValue is not null)
 49                        {
 2450                            typedValues.Add((T)parsedValue);
 51                        }
 2452                    }
 153                    catch (FormatException)
 54                    {
 55                        // Ignore unconvertible inputs
 156                    }
 57                }
 58
 1059                if (typeToConvert.IsArray)
 60                {
 661                    return typedValues.ToArray();
 62                }
 63
 464                return typedValues;
 65            }
 66
 467            return JsonSerializer.Deserialize<T[]>(ref reader, options);
 68        }
 69
 70        /// <inheritdoc />
 71        public override void Write(Utf8JsonWriter writer, IReadOnlyCollection<T>? value, JsonSerializerOptions options)
 72        {
 3473            JsonSerializer.Serialize(writer, value, options);
 3474        }
 75    }
 76}