jellyfin/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs

111 lines
3.5 KiB
C#
Raw Normal View History

2016-11-04 12:51:59 -07:00
using System;
using System.Collections.Generic;
2017-04-08 11:31:18 -07:00
using System.IO;
2016-11-04 12:51:59 -07:00
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using MediaBrowser.Model.System;
namespace Emby.Common.Implementations.EnvironmentInfo
{
public class EnvironmentInfo : IEnvironmentInfo
{
2016-11-11 01:13:11 -07:00
public MediaBrowser.Model.System.Architecture? CustomArchitecture { get; set; }
2016-12-21 21:47:59 -07:00
public MediaBrowser.Model.System.OperatingSystem? CustomOperatingSystem { get; set; }
2016-11-11 01:13:11 -07:00
2017-02-07 01:23:45 -07:00
public virtual MediaBrowser.Model.System.OperatingSystem OperatingSystem
2016-11-04 12:51:59 -07:00
{
get
{
2016-12-21 21:47:59 -07:00
if (CustomOperatingSystem.HasValue)
{
return CustomOperatingSystem.Value;
}
2016-11-04 12:51:59 -07:00
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
2017-04-28 23:22:33 -07:00
return MediaBrowser.Model.System.OperatingSystem.OSX;
2016-11-04 12:51:59 -07:00
}
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
2017-04-28 23:22:33 -07:00
return MediaBrowser.Model.System.OperatingSystem.Windows;
2016-11-04 12:51:59 -07:00
}
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
2017-04-28 23:22:33 -07:00
return MediaBrowser.Model.System.OperatingSystem.Linux;
2016-11-04 12:51:59 -07:00
}
2017-04-28 23:22:33 -07:00
2016-11-04 12:51:59 -07:00
return MediaBrowser.Model.System.OperatingSystem.Windows;
}
}
public string OperatingSystemName
{
get
{
2017-04-28 23:22:33 -07:00
return System.Runtime.InteropServices.RuntimeInformation.OSDescription;
2016-11-04 12:51:59 -07:00
}
}
public string OperatingSystemVersion
{
get
{
2017-04-28 23:22:33 -07:00
return System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription;
2016-11-04 12:51:59 -07:00
}
}
2016-11-11 01:13:11 -07:00
2017-04-08 11:31:18 -07:00
public char PathSeparator
{
get
{
return Path.PathSeparator;
}
}
2016-11-11 01:13:11 -07:00
public MediaBrowser.Model.System.Architecture SystemArchitecture
{
get
{
if (CustomArchitecture.HasValue)
{
return CustomArchitecture.Value;
}
2017-04-28 23:22:33 -07:00
switch (System.Runtime.InteropServices.RuntimeInformation.OSArchitecture)
2016-11-11 01:13:11 -07:00
{
case System.Runtime.InteropServices.Architecture.Arm:
return MediaBrowser.Model.System.Architecture.Arm;
case System.Runtime.InteropServices.Architecture.Arm64:
return MediaBrowser.Model.System.Architecture.Arm64;
case System.Runtime.InteropServices.Architecture.X64:
return MediaBrowser.Model.System.Architecture.X64;
case System.Runtime.InteropServices.Architecture.X86:
return MediaBrowser.Model.System.Architecture.X86;
}
return MediaBrowser.Model.System.Architecture.X64;
}
}
2016-11-13 14:04:21 -07:00
public string GetEnvironmentVariable(string name)
{
return Environment.GetEnvironmentVariable(name);
}
public virtual string GetUserId()
{
return null;
}
2016-11-21 01:54:53 -07:00
public string StackTrace
{
get { return Environment.StackTrace; }
}
2016-11-29 12:13:20 -07:00
public void SetProcessEnvironmentVariable(string name, string value)
{
Environment.SetEnvironmentVariable(name, value);
}
2016-11-04 12:51:59 -07:00
}
}