< Summary - Jellyfin

Information
Class: MediaBrowser.MediaEncoding.Encoder.ApplePlatformHelper
Assembly: MediaBrowser.MediaEncoding
File(s): /srv/git/jellyfin/MediaBrowser.MediaEncoding/Encoder/ApplePlatformHelper.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 26
Coverable lines: 26
Total lines: 87
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 8
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
.cctor()100%210%
GetSysctlValue(...)0%4260%
SysctlByName(...)100%210%
HasAv1HardwareAccel(...)0%620%

File(s)

/srv/git/jellyfin/MediaBrowser.MediaEncoding/Encoder/ApplePlatformHelper.cs

#LineLine coverage
 1#pragma warning disable CA1031
 2
 3using System;
 4using System.Linq;
 5using System.Runtime.InteropServices;
 6using System.Runtime.Versioning;
 7using Microsoft.Extensions.Logging;
 8
 9namespace MediaBrowser.MediaEncoding.Encoder;
 10
 11/// <summary>
 12/// Helper class for Apple platform specific operations.
 13/// </summary>
 14[SupportedOSPlatform("macos")]
 15public static class ApplePlatformHelper
 16{
 017    private static readonly string[] _av1DecodeBlacklistedCpuClass = ["M1", "M2"];
 18
 19    private static string GetSysctlValue(ReadOnlySpan<byte> name)
 20    {
 021        IntPtr length = IntPtr.Zero;
 22        // Get length of the value
 023        int osStatus = SysctlByName(name, IntPtr.Zero, ref length, IntPtr.Zero, 0);
 24
 025        if (osStatus != 0)
 26        {
 027            throw new NotSupportedException($"Failed to get sysctl value for {System.Text.Encoding.UTF8.GetString(name)}
 28        }
 29
 030        IntPtr buffer = Marshal.AllocHGlobal(length.ToInt32());
 31        try
 32        {
 033            osStatus = SysctlByName(name, buffer, ref length, IntPtr.Zero, 0);
 034            if (osStatus != 0)
 35            {
 036                throw new NotSupportedException($"Failed to get sysctl value for {System.Text.Encoding.UTF8.GetString(na
 37            }
 38
 039            return Marshal.PtrToStringAnsi(buffer) ?? string.Empty;
 40        }
 41        finally
 42        {
 043            Marshal.FreeHGlobal(buffer);
 044        }
 045    }
 46
 47    private static int SysctlByName(ReadOnlySpan<byte> name, IntPtr oldp, ref IntPtr oldlenp, IntPtr newp, uint newlen)
 48    {
 049        return NativeMethods.SysctlByName(name.ToArray(), oldp, ref oldlenp, newp, newlen);
 50    }
 51
 52    /// <summary>
 53    /// Check if the current system has hardware acceleration for AV1 decoding.
 54    /// </summary>
 55    /// <param name="logger">The logger used for error logging.</param>
 56    /// <returns>Boolean indicates the hwaccel support.</returns>
 57    public static bool HasAv1HardwareAccel(ILogger logger)
 58    {
 059        if (!RuntimeInformation.OSArchitecture.Equals(Architecture.Arm64))
 60        {
 061            return false;
 62        }
 63
 64        try
 65        {
 066            string cpuBrandString = GetSysctlValue("machdep.cpu.brand_string"u8);
 067            return !_av1DecodeBlacklistedCpuClass.Any(blacklistedCpuClass => cpuBrandString.Contains(blacklistedCpuClass
 68        }
 069        catch (NotSupportedException e)
 70        {
 071            logger.LogError("Error getting CPU brand string: {Message}", e.Message);
 072        }
 073        catch (Exception e)
 74        {
 075            logger.LogError("Unknown error occured: {Exception}", e);
 076        }
 77
 078        return false;
 079    }
 80
 81    private static class NativeMethods
 82    {
 83        [DllImport("libc", EntryPoint = "sysctlbyname", SetLastError = true)]
 84        [DefaultDllImportSearchPaths(DllImportSearchPath.SafeDirectories)]
 85        internal static extern int SysctlByName(byte[] name, IntPtr oldp, ref IntPtr oldlenp, IntPtr newp, uint newlen);
 86    }
 87}