< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.Library.PathManager
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/Library/PathManager.cs
Line coverage
28%
Covered lines: 2
Uncovered lines: 5
Coverable lines: 7
Total lines: 36
Line coverage: 28.5%
Branch coverage
0%
Covered branches: 0
Total branches: 2
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%
GetTrickplayDirectory(...)0%620%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/Library/PathManager.cs

#LineLine coverage
 1using System.Globalization;
 2using System.IO;
 3using MediaBrowser.Controller.Configuration;
 4using MediaBrowser.Controller.Entities;
 5using MediaBrowser.Controller.IO;
 6
 7namespace Emby.Server.Implementations.Library;
 8
 9/// <summary>
 10/// IPathManager implementation.
 11/// </summary>
 12public class PathManager : IPathManager
 13{
 14    private readonly IServerConfigurationManager _config;
 15
 16    /// <summary>
 17    /// Initializes a new instance of the <see cref="PathManager"/> class.
 18    /// </summary>
 19    /// <param name="config">The server configuration manager.</param>
 20    public PathManager(
 21        IServerConfigurationManager config)
 22    {
 2123        _config = config;
 2124    }
 25
 26    /// <inheritdoc />
 27    public string GetTrickplayDirectory(BaseItem item, bool saveWithMedia = false)
 28    {
 029        var basePath = _config.ApplicationPaths.TrickplayPath;
 030        var idString = item.Id.ToString("N", CultureInfo.InvariantCulture);
 31
 032        return saveWithMedia
 033            ? Path.Combine(item.ContainingFolderPath, Path.ChangeExtension(item.Path, ".trickplay"))
 034            : Path.Combine(basePath, idString);
 35    }
 36}