< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.Devices.DeviceId
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/Devices/DeviceId.cs
Line coverage
62%
Covered lines: 23
Uncovered lines: 14
Coverable lines: 37
Total lines: 98
Line coverage: 62.1%
Branch coverage
62%
Covered branches: 5
Total branches: 8
Branch coverage: 62.5%
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_Value()100%22100%
get_CachePath()100%11100%
GetCachedId()0%3231.25%
SaveId(...)50%2266.66%
GetNewId()100%11100%
GetDeviceId()100%22100%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/Devices/DeviceId.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4using System.Globalization;
 5using System.IO;
 6using System.Text;
 7using System.Threading;
 8using MediaBrowser.Common.Configuration;
 9using Microsoft.Extensions.Logging;
 10
 11namespace Emby.Server.Implementations.Devices
 12{
 13    public class DeviceId
 14    {
 15        private readonly IApplicationPaths _appPaths;
 16        private readonly ILogger<DeviceId> _logger;
 2117        private readonly Lock _syncLock = new();
 18
 19        private string? _id;
 20
 21        public DeviceId(IApplicationPaths appPaths, ILogger<DeviceId> logger)
 22        {
 2123            _appPaths = appPaths;
 2124            _logger = logger;
 2125        }
 26
 9827        public string Value => _id ??= GetDeviceId();
 28
 4229        private string CachePath => Path.Combine(_appPaths.DataPath, "device.txt");
 30
 31        private string? GetCachedId()
 32        {
 33            try
 2134            {
 35                lock (_syncLock)
 36                {
 2137                    var value = File.ReadAllText(CachePath, Encoding.UTF8);
 38
 039                    if (Guid.TryParse(value, out _))
 40                    {
 041                        return value;
 42                    }
 43
 044                    _logger.LogError("Invalid value found in device id file");
 045                }
 046            }
 047            catch (DirectoryNotFoundException)
 48            {
 049            }
 2150            catch (FileNotFoundException)
 51            {
 2152            }
 053            catch (Exception ex)
 54            {
 055                _logger.LogError(ex, "Error reading file");
 056            }
 57
 2158            return null;
 059        }
 60
 61        private void SaveId(string id)
 62        {
 63            try
 64            {
 2165                var path = CachePath;
 66
 2167                Directory.CreateDirectory(Path.GetDirectoryName(path) ?? throw new InvalidOperationException("Path can't
 68
 69                lock (_syncLock)
 70                {
 2171                    File.WriteAllText(path, id, Encoding.UTF8);
 2172                }
 2173            }
 074            catch (Exception ex)
 75            {
 076                _logger.LogError(ex, "Error writing to file");
 077            }
 2178        }
 79
 80        private static string GetNewId()
 81        {
 2182            return Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture);
 83        }
 84
 85        private string GetDeviceId()
 86        {
 2187            var id = GetCachedId();
 88
 2189            if (string.IsNullOrWhiteSpace(id))
 90            {
 2191                id = GetNewId();
 2192                SaveId(id);
 93            }
 94
 2195            return id;
 96        }
 97    }
 98}