jellyfin/MediaBrowser.Model/Dlna/ConditionProcessor.cs

254 lines
11 KiB
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Globalization;
2021-12-20 07:31:07 -05:00
using Jellyfin.Extensions;
using MediaBrowser.Model.MediaInfo;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Dlna
{
2019-01-20 05:34:33 -05:00
public static class ConditionProcessor
2018-12-27 18:27:57 -05:00
{
2019-01-20 05:34:33 -05:00
public static bool IsVideoConditionSatisfied(
ProfileCondition condition,
2018-12-27 18:27:57 -05:00
int? width,
int? height,
int? videoBitDepth,
int? videoBitrate,
string? videoProfile,
2018-12-27 18:27:57 -05:00
double? videoLevel,
float? videoFramerate,
int? packetLength,
TransportStreamTimestamp? timestamp,
bool? isAnamorphic,
bool? isInterlaced,
int? refFrames,
int? numVideoStreams,
int? numAudioStreams,
string? videoCodecTag,
bool? isAvc)
2018-12-27 18:27:57 -05:00
{
switch (condition.Property)
{
case ProfileConditionValue.IsInterlaced:
return IsConditionSatisfied(condition, isInterlaced);
case ProfileConditionValue.IsAnamorphic:
return IsConditionSatisfied(condition, isAnamorphic);
case ProfileConditionValue.IsAvc:
return IsConditionSatisfied(condition, isAvc);
case ProfileConditionValue.VideoFramerate:
return IsConditionSatisfied(condition, videoFramerate);
case ProfileConditionValue.VideoLevel:
return IsConditionSatisfied(condition, videoLevel);
case ProfileConditionValue.VideoProfile:
return IsConditionSatisfied(condition, videoProfile);
case ProfileConditionValue.VideoCodecTag:
return IsConditionSatisfied(condition, videoCodecTag);
case ProfileConditionValue.PacketLength:
return IsConditionSatisfied(condition, packetLength);
case ProfileConditionValue.VideoBitDepth:
return IsConditionSatisfied(condition, videoBitDepth);
case ProfileConditionValue.VideoBitrate:
return IsConditionSatisfied(condition, videoBitrate);
case ProfileConditionValue.Height:
return IsConditionSatisfied(condition, height);
case ProfileConditionValue.Width:
return IsConditionSatisfied(condition, width);
case ProfileConditionValue.RefFrames:
return IsConditionSatisfied(condition, refFrames);
case ProfileConditionValue.NumAudioStreams:
return IsConditionSatisfied(condition, numAudioStreams);
case ProfileConditionValue.NumVideoStreams:
return IsConditionSatisfied(condition, numVideoStreams);
case ProfileConditionValue.VideoTimestamp:
return IsConditionSatisfied(condition, timestamp);
default:
return true;
}
}
2019-01-20 05:34:33 -05:00
public static bool IsImageConditionSatisfied(ProfileCondition condition, int? width, int? height)
2018-12-27 18:27:57 -05:00
{
switch (condition.Property)
{
case ProfileConditionValue.Height:
return IsConditionSatisfied(condition, height);
case ProfileConditionValue.Width:
return IsConditionSatisfied(condition, width);
default:
throw new ArgumentException("Unexpected condition on image file: " + condition.Property);
}
}
2019-01-20 05:34:33 -05:00
public static bool IsAudioConditionSatisfied(ProfileCondition condition, int? audioChannels, int? audioBitrate, int? audioSampleRate, int? audioBitDepth)
2018-12-27 18:27:57 -05:00
{
switch (condition.Property)
{
case ProfileConditionValue.AudioBitrate:
return IsConditionSatisfied(condition, audioBitrate);
case ProfileConditionValue.AudioChannels:
return IsConditionSatisfied(condition, audioChannels);
case ProfileConditionValue.AudioSampleRate:
return IsConditionSatisfied(condition, audioSampleRate);
case ProfileConditionValue.AudioBitDepth:
return IsConditionSatisfied(condition, audioBitDepth);
default:
throw new ArgumentException("Unexpected condition on audio file: " + condition.Property);
}
}
2019-01-20 05:34:33 -05:00
public static bool IsVideoAudioConditionSatisfied(
ProfileCondition condition,
2018-12-27 18:27:57 -05:00
int? audioChannels,
int? audioBitrate,
2019-01-07 18:27:46 -05:00
int? audioSampleRate,
2018-12-27 18:27:57 -05:00
int? audioBitDepth,
string? audioProfile,
2018-12-27 18:27:57 -05:00
bool? isSecondaryTrack)
{
switch (condition.Property)
{
case ProfileConditionValue.AudioProfile:
return IsConditionSatisfied(condition, audioProfile);
case ProfileConditionValue.AudioBitrate:
return IsConditionSatisfied(condition, audioBitrate);
case ProfileConditionValue.AudioChannels:
return IsConditionSatisfied(condition, audioChannels);
case ProfileConditionValue.IsSecondaryAudio:
return IsConditionSatisfied(condition, isSecondaryTrack);
case ProfileConditionValue.AudioSampleRate:
return IsConditionSatisfied(condition, audioSampleRate);
case ProfileConditionValue.AudioBitDepth:
return IsConditionSatisfied(condition, audioBitDepth);
default:
throw new ArgumentException("Unexpected condition on audio file: " + condition.Property);
}
}
2019-01-20 05:34:33 -05:00
private static bool IsConditionSatisfied(ProfileCondition condition, int? currentValue)
2018-12-27 18:27:57 -05:00
{
if (!currentValue.HasValue)
{
// If the value is unknown, it satisfies if not marked as required
return !condition.IsRequired;
}
if (int.TryParse(condition.Value, NumberStyles.Any, CultureInfo.InvariantCulture, out var expected))
2018-12-27 18:27:57 -05:00
{
switch (condition.Condition)
{
case ProfileConditionType.Equals:
case ProfileConditionType.EqualsAny:
return currentValue.Value.Equals(expected);
case ProfileConditionType.GreaterThanEqual:
return currentValue.Value >= expected;
case ProfileConditionType.LessThanEqual:
return currentValue.Value <= expected;
case ProfileConditionType.NotEquals:
return !currentValue.Value.Equals(expected);
default:
throw new InvalidOperationException("Unexpected ProfileConditionType: " + condition.Condition);
}
}
return false;
}
private static bool IsConditionSatisfied(ProfileCondition condition, string? currentValue)
2018-12-27 18:27:57 -05:00
{
if (string.IsNullOrEmpty(currentValue))
{
// If the value is unknown, it satisfies if not marked as required
return !condition.IsRequired;
}
string expected = condition.Value;
switch (condition.Condition)
{
case ProfileConditionType.EqualsAny:
2021-12-20 07:31:07 -05:00
return expected.Split('|').Contains(currentValue, StringComparison.OrdinalIgnoreCase);
2018-12-27 18:27:57 -05:00
case ProfileConditionType.Equals:
2020-01-09 11:07:13 -05:00
return string.Equals(currentValue, expected, StringComparison.OrdinalIgnoreCase);
2018-12-27 18:27:57 -05:00
case ProfileConditionType.NotEquals:
2020-01-09 11:07:13 -05:00
return !string.Equals(currentValue, expected, StringComparison.OrdinalIgnoreCase);
2018-12-27 18:27:57 -05:00
default:
throw new InvalidOperationException("Unexpected ProfileConditionType: " + condition.Condition);
}
}
2019-01-20 05:34:33 -05:00
private static bool IsConditionSatisfied(ProfileCondition condition, bool? currentValue)
2018-12-27 18:27:57 -05:00
{
if (!currentValue.HasValue)
{
// If the value is unknown, it satisfies if not marked as required
return !condition.IsRequired;
}
if (bool.TryParse(condition.Value, out var expected))
2018-12-27 18:27:57 -05:00
{
switch (condition.Condition)
{
case ProfileConditionType.Equals:
return currentValue.Value == expected;
case ProfileConditionType.NotEquals:
return currentValue.Value != expected;
default:
throw new InvalidOperationException("Unexpected ProfileConditionType: " + condition.Condition);
}
}
return false;
}
2019-01-20 05:34:33 -05:00
private static bool IsConditionSatisfied(ProfileCondition condition, double? currentValue)
2018-12-27 18:27:57 -05:00
{
if (!currentValue.HasValue)
{
// If the value is unknown, it satisfies if not marked as required
return !condition.IsRequired;
}
if (double.TryParse(condition.Value, NumberStyles.Any, CultureInfo.InvariantCulture, out var expected))
2018-12-27 18:27:57 -05:00
{
switch (condition.Condition)
{
case ProfileConditionType.Equals:
return currentValue.Value.Equals(expected);
case ProfileConditionType.GreaterThanEqual:
return currentValue.Value >= expected;
case ProfileConditionType.LessThanEqual:
return currentValue.Value <= expected;
case ProfileConditionType.NotEquals:
return !currentValue.Value.Equals(expected);
default:
throw new InvalidOperationException("Unexpected ProfileConditionType: " + condition.Condition);
}
}
return false;
}
2019-01-20 05:34:33 -05:00
private static bool IsConditionSatisfied(ProfileCondition condition, TransportStreamTimestamp? timestamp)
2018-12-27 18:27:57 -05:00
{
if (!timestamp.HasValue)
{
// If the value is unknown, it satisfies if not marked as required
return !condition.IsRequired;
}
2019-01-13 15:37:13 -05:00
var expected = (TransportStreamTimestamp)Enum.Parse(typeof(TransportStreamTimestamp), condition.Value, true);
2018-12-27 18:27:57 -05:00
switch (condition.Condition)
{
case ProfileConditionType.Equals:
return timestamp == expected;
case ProfileConditionType.NotEquals:
return timestamp != expected;
default:
throw new InvalidOperationException("Unexpected ProfileConditionType: " + condition.Condition);
}
}
}
}