< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Extensions.ContainerHelper
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Extensions/ContainerHelper.cs
Line coverage
96%
Covered lines: 32
Uncovered lines: 1
Coverable lines: 33
Total lines: 150
Line coverage: 96.9%
Branch coverage
91%
Covered branches: 31
Total branches: 34
Branch coverage: 91.1%
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
ContainsContainer(...)100%44100%
ContainsContainer(...)100%44100%
ContainsContainer(...)100%22100%
ContainsContainer(...)100%1212100%
ContainsContainer(...)87.5%8888.88%
Split(...)50%44100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Extensions/ContainerHelper.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using Jellyfin.Extensions;
 4
 5namespace MediaBrowser.Model.Extensions;
 6
 7/// <summary>
 8/// Defines the <see cref="ContainerHelper"/> class.
 9/// </summary>
 10public static class ContainerHelper
 11{
 12    /// <summary>
 13    /// Compares two containers, returning true if an item in <paramref name="inputContainer"/> exists
 14    /// in <paramref name="profileContainers"/>.
 15    /// </summary>
 16    /// <param name="profileContainers">The comma-delimited string being searched.
 17    /// If the parameter begins with the <c>-</c> character, the operation is reversed.
 18    /// If the parameter is empty or null, all containers in <paramref name="inputContainer"/> will be accepted.</param>
 19    /// <param name="inputContainer">The comma-delimited string being matched.</param>
 20    /// <returns>The result of the operation.</returns>
 21    public static bool ContainsContainer(string? profileContainers, string? inputContainer)
 22    {
 835523        var isNegativeList = false;
 835524        if (profileContainers is not null && profileContainers.StartsWith('-'))
 25        {
 1326            isNegativeList = true;
 1327            profileContainers = profileContainers[1..];
 28        }
 29
 835530        return ContainsContainer(profileContainers, isNegativeList, inputContainer);
 31    }
 32
 33    /// <summary>
 34    /// Compares two containers, returning true if an item in <paramref name="inputContainer"/> exists
 35    /// in <paramref name="profileContainers"/>.
 36    /// </summary>
 37    /// <param name="profileContainers">The comma-delimited string being searched.
 38    /// If the parameter begins with the <c>-</c> character, the operation is reversed.
 39    /// If the parameter is empty or null, all containers in <paramref name="inputContainer"/> will be accepted.</param>
 40    /// <param name="inputContainer">The comma-delimited string being matched.</param>
 41    /// <returns>The result of the operation.</returns>
 42    public static bool ContainsContainer(string? profileContainers, ReadOnlySpan<char> inputContainer)
 43    {
 12144        var isNegativeList = false;
 12145        if (profileContainers is not null && profileContainers.StartsWith('-'))
 46        {
 547            isNegativeList = true;
 548            profileContainers = profileContainers[1..];
 49        }
 50
 12151        return ContainsContainer(profileContainers, isNegativeList, inputContainer);
 52    }
 53
 54    /// <summary>
 55    /// Compares two containers, returning <paramref name="isNegativeList"/> if an item in <paramref name="inputContaine
 56    /// does not exist in <paramref name="profileContainers"/>.
 57    /// </summary>
 58    /// <param name="profileContainers">The comma-delimited string being searched.
 59    /// If the parameter is empty or null, all containers in <paramref name="inputContainer"/> will be accepted.</param>
 60    /// <param name="isNegativeList">The boolean result to return if a match is not found.</param>
 61    /// <param name="inputContainer">The comma-delimited string being matched.</param>
 62    /// <returns>The result of the operation.</returns>
 63    public static bool ContainsContainer(string? profileContainers, bool isNegativeList, string? inputContainer)
 64    {
 926965        if (string.IsNullOrEmpty(inputContainer))
 66        {
 767            return isNegativeList;
 68        }
 69
 926270        return ContainsContainer(profileContainers, isNegativeList, inputContainer.AsSpan());
 71    }
 72
 73    /// <summary>
 74    /// Compares two containers, returning <paramref name="isNegativeList"/> if an item in <paramref name="inputContaine
 75    /// does not exist in <paramref name="profileContainers"/>.
 76    /// </summary>
 77    /// <param name="profileContainers">The comma-delimited string being searched.
 78    /// If the parameter is empty or null, all containers in <paramref name="inputContainer"/> will be accepted.</param>
 79    /// <param name="isNegativeList">The boolean result to return if a match is not found.</param>
 80    /// <param name="inputContainer">The comma-delimited string being matched.</param>
 81    /// <returns>The result of the operation.</returns>
 82    public static bool ContainsContainer(string? profileContainers, bool isNegativeList, ReadOnlySpan<char> inputContain
 83    {
 1253184        if (string.IsNullOrEmpty(profileContainers))
 85        {
 86            // Empty profiles always support all containers/codecs.
 483087            return true;
 88        }
 89
 770190        var allInputContainers = inputContainer.Split(',');
 770191        var allProfileContainers = profileContainers.SpanSplit(',');
 3363592        foreach (var container in allInputContainers)
 93        {
 1074694            if (!container.IsEmpty)
 95            {
 5156996                foreach (var profile in allProfileContainers)
 97                {
 1667298                    if (!profile.IsEmpty && container.Equals(profile, StringComparison.OrdinalIgnoreCase))
 99                    {
 3259100                        return !isNegativeList;
 101                    }
 102                }
 103            }
 104        }
 105
 4442106        return isNegativeList;
 107    }
 108
 109    /// <summary>
 110    /// Compares two containers, returning <paramref name="isNegativeList"/> if an item in <paramref name="inputContaine
 111    /// does not exist in <paramref name="profileContainers"/>.
 112    /// </summary>
 113    /// <param name="profileContainers">The profile containers being matched searched.
 114    /// If the parameter is empty or null, all containers in <paramref name="inputContainer"/> will be accepted.</param>
 115    /// <param name="isNegativeList">The boolean result to return if a match is not found.</param>
 116    /// <param name="inputContainer">The comma-delimited string being matched.</param>
 117    /// <returns>The result of the operation.</returns>
 118    public static bool ContainsContainer(IReadOnlyList<string>? profileContainers, bool isNegativeList, string inputCont
 119    {
 170120        if (profileContainers is null)
 121        {
 122            // Empty profiles always support all containers/codecs.
 0123            return true;
 124        }
 125
 170126        var allInputContainers = Split(inputContainer);
 590127        foreach (var container in allInputContainers)
 128        {
 970129            foreach (var profile in profileContainers)
 130            {
 360131                if (string.Equals(profile, container, StringComparison.OrdinalIgnoreCase))
 132                {
 86133                    return !isNegativeList;
 134                }
 135            }
 136        }
 137
 84138        return isNegativeList;
 86139    }
 140
 141    /// <summary>
 142    /// Splits and input string.
 143    /// </summary>
 144    /// <param name="input">The input string.</param>
 145    /// <returns>The result of the operation.</returns>
 146    public static string[] Split(string? input)
 147    {
 1037148        return input?.Split(',', StringSplitOptions.RemoveEmptyEntries) ?? [];
 149    }
 150}