123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- using MediaBrowser.Model.Extensions;
- using MediaBrowser.Model.MediaInfo;
- using System;
- namespace MediaBrowser.Model.Dlna
- {
- public class ConditionProcessor
- {
- public bool IsVideoConditionSatisfied(ProfileCondition condition,
- int? width,
- int? height,
- int? bitDepth,
- int? videoBitrate,
- string videoProfile,
- double? videoLevel,
- float? videoFramerate,
- int? packetLength,
- TransportStreamTimestamp? timestamp,
- bool? isAnamorphic,
- int? refFrames,
- int? numVideoStreams,
- int? numAudioStreams,
- string videoCodecTag,
- bool? isAvc)
- {
- switch (condition.Property)
- {
- 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, bitDepth);
- 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;
- }
- }
- public bool IsImageConditionSatisfied(ProfileCondition condition, int? width, int? height)
- {
- 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);
- }
- }
- public bool IsAudioConditionSatisfied(ProfileCondition condition, int? audioChannels, int? audioBitrate)
- {
- switch (condition.Property)
- {
- case ProfileConditionValue.AudioBitrate:
- return IsConditionSatisfied(condition, audioBitrate);
- case ProfileConditionValue.AudioChannels:
- return IsConditionSatisfied(condition, audioChannels);
- default:
- throw new ArgumentException("Unexpected condition on audio file: " + condition.Property);
- }
- }
- public bool IsVideoAudioConditionSatisfied(ProfileCondition condition,
- int? audioChannels,
- int? audioBitrate,
- string audioProfile,
- 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);
- default:
- throw new ArgumentException("Unexpected condition on audio file: " + condition.Property);
- }
- }
- private bool IsConditionSatisfied(ProfileCondition condition, int? currentValue)
- {
- if (!currentValue.HasValue)
- {
- // If the value is unknown, it satisfies if not marked as required
- return !condition.IsRequired;
- }
- int expected;
- if (IntHelper.TryParseCultureInvariant(condition.Value, out expected))
- {
- 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");
- }
- }
- return false;
- }
- private bool IsConditionSatisfied(ProfileCondition condition, string currentValue)
- {
- 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:
- {
- return ListHelper.ContainsIgnoreCase(expected.Split('|'), currentValue);
- }
- case ProfileConditionType.Equals:
- return StringHelper.EqualsIgnoreCase(currentValue, expected);
- case ProfileConditionType.NotEquals:
- return !StringHelper.EqualsIgnoreCase(currentValue, expected);
- default:
- throw new InvalidOperationException("Unexpected ProfileConditionType");
- }
- }
- private bool IsConditionSatisfied(ProfileCondition condition, bool? currentValue)
- {
- if (!currentValue.HasValue)
- {
- // If the value is unknown, it satisfies if not marked as required
- return !condition.IsRequired;
- }
- bool expected;
- if (BoolHelper.TryParseCultureInvariant(condition.Value, out expected))
- {
- switch (condition.Condition)
- {
- case ProfileConditionType.Equals:
- return currentValue.Value == expected;
- case ProfileConditionType.NotEquals:
- return currentValue.Value != expected;
- default:
- throw new InvalidOperationException("Unexpected ProfileConditionType");
- }
- }
- return false;
- }
- private bool IsConditionSatisfied(ProfileCondition condition, float? currentValue)
- {
- if (!currentValue.HasValue)
- {
- // If the value is unknown, it satisfies if not marked as required
- return !condition.IsRequired;
- }
- float expected;
- if (FloatHelper.TryParseCultureInvariant(condition.Value, out expected))
- {
- 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");
- }
- }
- return false;
- }
-
- private bool IsConditionSatisfied(ProfileCondition condition, double? currentValue)
- {
- if (!currentValue.HasValue)
- {
- // If the value is unknown, it satisfies if not marked as required
- return !condition.IsRequired;
- }
- double expected;
- if (DoubleHelper.TryParseCultureInvariant(condition.Value, out expected))
- {
- 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");
- }
- }
- return false;
- }
-
- private bool IsConditionSatisfied(ProfileCondition condition, TransportStreamTimestamp? timestamp)
- {
- if (!timestamp.HasValue)
- {
- // If the value is unknown, it satisfies if not marked as required
- return !condition.IsRequired;
- }
-
- TransportStreamTimestamp expected = (TransportStreamTimestamp)Enum.Parse(typeof(TransportStreamTimestamp), condition.Value, true);
-
- switch (condition.Condition)
- {
- case ProfileConditionType.Equals:
- return timestamp == expected;
- case ProfileConditionType.NotEquals:
- return timestamp != expected;
- default:
- throw new InvalidOperationException("Unexpected ProfileConditionType");
- }
- }
- }
- }
|