< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Item.MediaStreamRepository
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Item/MediaStreamRepository.cs
Line coverage
3%
Covered lines: 4
Uncovered lines: 127
Coverable lines: 131
Total lines: 214
Line coverage: 3%
Branch coverage
0%
Covered branches: 0
Total branches: 22
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
.ctor(...)100%11100%
SaveMediaStreams(...)100%210%
GetMediaStreams(...)100%210%
GetPathToSave(...)0%620%
RestorePath(...)0%620%
TranslateQuery(...)0%2040%
Map(...)0%110100%
Map(...)0%2040%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Item/MediaStreamRepository.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Collections.Immutable;
 4using System.Linq;
 5using System.Threading;
 6using Jellyfin.Database.Implementations;
 7using Jellyfin.Database.Implementations.Entities;
 8using MediaBrowser.Controller;
 9using MediaBrowser.Controller.Persistence;
 10using MediaBrowser.Model.Entities;
 11using MediaBrowser.Model.Globalization;
 12using Microsoft.EntityFrameworkCore;
 13
 14namespace Jellyfin.Server.Implementations.Item;
 15
 16/// <summary>
 17/// Repository for obtaining MediaStreams.
 18/// </summary>
 19public class MediaStreamRepository : IMediaStreamRepository
 20{
 21    private readonly IDbContextFactory<JellyfinDbContext> _dbProvider;
 22    private readonly IServerApplicationHost _serverApplicationHost;
 23    private readonly ILocalizationManager _localization;
 24
 25    /// <summary>
 26    /// Initializes a new instance of the <see cref="MediaStreamRepository"/> class.
 27    /// </summary>
 28    /// <param name="dbProvider">The EFCore db factory.</param>
 29    /// <param name="serverApplicationHost">The Application host.</param>
 30    /// <param name="localization">The Localisation Provider.</param>
 31    public MediaStreamRepository(IDbContextFactory<JellyfinDbContext> dbProvider, IServerApplicationHost serverApplicati
 32    {
 2133        _dbProvider = dbProvider;
 2134        _serverApplicationHost = serverApplicationHost;
 2135        _localization = localization;
 2136    }
 37
 38    /// <inheritdoc />
 39    public void SaveMediaStreams(Guid id, IReadOnlyList<MediaStream> streams, CancellationToken cancellationToken)
 40    {
 041        using var context = _dbProvider.CreateDbContext();
 042        using var transaction = context.Database.BeginTransaction();
 43
 044        context.MediaStreamInfos.Where(e => e.ItemId.Equals(id)).ExecuteDelete();
 045        context.MediaStreamInfos.AddRange(streams.Select(f => Map(f, id)));
 046        context.SaveChanges();
 47
 048        transaction.Commit();
 049    }
 50
 51    /// <inheritdoc />
 52    public IReadOnlyList<MediaStream> GetMediaStreams(MediaStreamQuery filter)
 53    {
 054        using var context = _dbProvider.CreateDbContext();
 055        return TranslateQuery(context.MediaStreamInfos.AsNoTracking(), filter).AsEnumerable().Select(Map).ToArray();
 056    }
 57
 58    private string? GetPathToSave(string? path)
 59    {
 060        if (path is null)
 61        {
 062            return null;
 63        }
 64
 065        return _serverApplicationHost.ReverseVirtualPath(path);
 66    }
 67
 68    private string? RestorePath(string? path)
 69    {
 070        if (path is null)
 71        {
 072            return null;
 73        }
 74
 075        return _serverApplicationHost.ExpandVirtualPath(path);
 76    }
 77
 78    private IQueryable<MediaStreamInfo> TranslateQuery(IQueryable<MediaStreamInfo> query, MediaStreamQuery filter)
 79    {
 080        query = query.Where(e => e.ItemId.Equals(filter.ItemId));
 081        if (filter.Index.HasValue)
 82        {
 083            query = query.Where(e => e.StreamIndex == filter.Index);
 84        }
 85
 086        if (filter.Type.HasValue)
 87        {
 088            var typeValue = (MediaStreamTypeEntity)filter.Type.Value;
 089            query = query.Where(e => e.StreamType == typeValue);
 90        }
 91
 092        return query.OrderBy(e => e.StreamIndex);
 93    }
 94
 95    private MediaStream Map(MediaStreamInfo entity)
 96    {
 097        var dto = new MediaStream();
 098        dto.Index = entity.StreamIndex;
 099        dto.Type = (MediaStreamType)entity.StreamType;
 100
 0101        dto.IsAVC = entity.IsAvc;
 0102        dto.Codec = entity.Codec;
 0103        dto.Language = entity.Language;
 0104        dto.ChannelLayout = entity.ChannelLayout;
 0105        dto.Profile = entity.Profile;
 0106        dto.AspectRatio = entity.AspectRatio;
 0107        dto.Path = RestorePath(entity.Path);
 0108        dto.IsInterlaced = entity.IsInterlaced.GetValueOrDefault();
 0109        dto.BitRate = entity.BitRate;
 0110        dto.Channels = entity.Channels;
 0111        dto.SampleRate = entity.SampleRate;
 0112        dto.IsDefault = entity.IsDefault;
 0113        dto.IsForced = entity.IsForced;
 0114        dto.IsExternal = entity.IsExternal;
 0115        dto.Height = entity.Height;
 0116        dto.Width = entity.Width;
 0117        dto.AverageFrameRate = entity.AverageFrameRate;
 0118        dto.RealFrameRate = entity.RealFrameRate;
 0119        dto.Level = entity.Level;
 0120        dto.PixelFormat = entity.PixelFormat;
 0121        dto.BitDepth = entity.BitDepth;
 0122        dto.IsAnamorphic = entity.IsAnamorphic;
 0123        dto.RefFrames = entity.RefFrames;
 0124        dto.CodecTag = entity.CodecTag;
 0125        dto.Comment = entity.Comment;
 0126        dto.NalLengthSize = entity.NalLengthSize;
 0127        dto.Title = entity.Title;
 0128        dto.TimeBase = entity.TimeBase;
 0129        dto.CodecTimeBase = entity.CodecTimeBase;
 0130        dto.ColorPrimaries = entity.ColorPrimaries;
 0131        dto.ColorSpace = entity.ColorSpace;
 0132        dto.ColorTransfer = entity.ColorTransfer;
 0133        dto.DvVersionMajor = entity.DvVersionMajor;
 0134        dto.DvVersionMinor = entity.DvVersionMinor;
 0135        dto.DvProfile = entity.DvProfile;
 0136        dto.DvLevel = entity.DvLevel;
 0137        dto.RpuPresentFlag = entity.RpuPresentFlag;
 0138        dto.ElPresentFlag = entity.ElPresentFlag;
 0139        dto.BlPresentFlag = entity.BlPresentFlag;
 0140        dto.DvBlSignalCompatibilityId = entity.DvBlSignalCompatibilityId;
 0141        dto.IsHearingImpaired = entity.IsHearingImpaired.GetValueOrDefault();
 0142        dto.Rotation = entity.Rotation;
 143
 0144        if (dto.Type is MediaStreamType.Audio or MediaStreamType.Subtitle)
 145        {
 0146            dto.LocalizedDefault = _localization.GetLocalizedString("Default");
 0147            dto.LocalizedExternal = _localization.GetLocalizedString("External");
 148
 0149            if (dto.Type is MediaStreamType.Subtitle)
 150            {
 0151                dto.LocalizedUndefined = _localization.GetLocalizedString("Undefined");
 0152                dto.LocalizedForced = _localization.GetLocalizedString("Forced");
 0153                dto.LocalizedHearingImpaired = _localization.GetLocalizedString("HearingImpaired");
 154            }
 155        }
 156
 0157        return dto;
 158    }
 159
 160    private MediaStreamInfo Map(MediaStream dto, Guid itemId)
 161    {
 0162        var entity = new MediaStreamInfo
 0163        {
 0164            Item = null!,
 0165            ItemId = itemId,
 0166            StreamIndex = dto.Index,
 0167            StreamType = (MediaStreamTypeEntity)dto.Type,
 0168            IsAvc = dto.IsAVC,
 0169
 0170            Codec = dto.Codec,
 0171            Language = dto.Language,
 0172            ChannelLayout = dto.ChannelLayout,
 0173            Profile = dto.Profile,
 0174            AspectRatio = dto.AspectRatio,
 0175            Path = GetPathToSave(dto.Path) ?? dto.Path,
 0176            IsInterlaced = dto.IsInterlaced,
 0177            BitRate = dto.BitRate,
 0178            Channels = dto.Channels,
 0179            SampleRate = dto.SampleRate,
 0180            IsDefault = dto.IsDefault,
 0181            IsForced = dto.IsForced,
 0182            IsExternal = dto.IsExternal,
 0183            Height = dto.Height,
 0184            Width = dto.Width,
 0185            AverageFrameRate = dto.AverageFrameRate,
 0186            RealFrameRate = dto.RealFrameRate,
 0187            Level = dto.Level.HasValue ? (float)dto.Level : null,
 0188            PixelFormat = dto.PixelFormat,
 0189            BitDepth = dto.BitDepth,
 0190            IsAnamorphic = dto.IsAnamorphic,
 0191            RefFrames = dto.RefFrames,
 0192            CodecTag = dto.CodecTag,
 0193            Comment = dto.Comment,
 0194            NalLengthSize = dto.NalLengthSize,
 0195            Title = dto.Title,
 0196            TimeBase = dto.TimeBase,
 0197            CodecTimeBase = dto.CodecTimeBase,
 0198            ColorPrimaries = dto.ColorPrimaries,
 0199            ColorSpace = dto.ColorSpace,
 0200            ColorTransfer = dto.ColorTransfer,
 0201            DvVersionMajor = dto.DvVersionMajor,
 0202            DvVersionMinor = dto.DvVersionMinor,
 0203            DvProfile = dto.DvProfile,
 0204            DvLevel = dto.DvLevel,
 0205            RpuPresentFlag = dto.RpuPresentFlag,
 0206            ElPresentFlag = dto.ElPresentFlag,
 0207            BlPresentFlag = dto.BlPresentFlag,
 0208            DvBlSignalCompatibilityId = dto.DvBlSignalCompatibilityId,
 0209            IsHearingImpaired = dto.IsHearingImpaired,
 0210            Rotation = dto.Rotation
 0211        };
 0212        return entity;
 213    }
 214}