< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.AppBase.BaseApplicationPaths
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/AppBase/BaseApplicationPaths.cs
Line coverage
80%
Covered lines: 8
Uncovered lines: 2
Coverable lines: 10
Total lines: 79
Line coverage: 80%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
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%
get_VirtualDataPath()100%11100%
get_ImageCachePath()100%210%
get_PluginsPath()100%11100%
get_PluginConfigurationsPath()100%11100%
get_SystemConfigurationFilePath()100%11100%
get_TempDirectory()100%11100%
get_TrickplayPath()100%210%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/AppBase/BaseApplicationPaths.cs

#LineLine coverage
 1using System;
 2using System.IO;
 3using MediaBrowser.Common.Configuration;
 4
 5namespace Emby.Server.Implementations.AppBase
 6{
 7    /// <summary>
 8    /// Provides a base class to hold common application paths used by both the UI and Server.
 9    /// This can be subclassed to add application-specific paths.
 10    /// </summary>
 11    public abstract class BaseApplicationPaths : IApplicationPaths
 12    {
 13        /// <summary>
 14        /// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class.
 15        /// </summary>
 16        /// <param name="programDataPath">The program data path.</param>
 17        /// <param name="logDirectoryPath">The log directory path.</param>
 18        /// <param name="configurationDirectoryPath">The configuration directory path.</param>
 19        /// <param name="cacheDirectoryPath">The cache directory path.</param>
 20        /// <param name="webDirectoryPath">The web directory path.</param>
 21        protected BaseApplicationPaths(
 22            string programDataPath,
 23            string logDirectoryPath,
 24            string configurationDirectoryPath,
 25            string cacheDirectoryPath,
 26            string webDirectoryPath)
 27        {
 28            ProgramDataPath = programDataPath;
 29            LogDirectoryPath = logDirectoryPath;
 30            ConfigurationDirectoryPath = configurationDirectoryPath;
 2131            CachePath = cacheDirectoryPath;
 32            WebPath = webDirectoryPath;
 33
 2134            DataPath = Directory.CreateDirectory(Path.Combine(ProgramDataPath, "data")).FullName;
 2135        }
 36
 37        /// <inheritdoc/>
 38        public string ProgramDataPath { get; }
 39
 40        /// <inheritdoc/>
 41        public string WebPath { get; }
 42
 43        /// <inheritdoc/>
 44        public string ProgramSystemPath { get; } = AppContext.BaseDirectory;
 45
 46        /// <inheritdoc/>
 47        public string DataPath { get; }
 48
 49        /// <inheritdoc />
 17150        public string VirtualDataPath => "%AppDataPath%";
 51
 52        /// <inheritdoc/>
 053        public string ImageCachePath => Path.Combine(CachePath, "images");
 54
 55        /// <inheritdoc/>
 29456        public string PluginsPath => Path.Combine(ProgramDataPath, "plugins");
 57
 58        /// <inheritdoc/>
 12659        public string PluginConfigurationsPath => Path.Combine(PluginsPath, "configurations");
 60
 61        /// <inheritdoc/>
 62        public string LogDirectoryPath { get; }
 63
 64        /// <inheritdoc/>
 65        public string ConfigurationDirectoryPath { get; }
 66
 67        /// <inheritdoc/>
 5968        public string SystemConfigurationFilePath => Path.Combine(ConfigurationDirectoryPath, "system.xml");
 69
 70        /// <inheritdoc/>
 71        public string CachePath { get; set; }
 72
 73        /// <inheritdoc/>
 7374        public string TempDirectory => Path.Join(Path.GetTempPath(), "jellyfin");
 75
 76        /// <inheritdoc />
 077        public string TrickplayPath => Path.Combine(DataPath, "trickplay");
 78    }
 79}