2021-03-01 05:22:00 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
2020-05-04 04:15:27 +02:00
|
|
|
using System.IO;
|
2020-11-27 18:57:20 +01:00
|
|
|
using System.Runtime.Versioning;
|
2021-03-01 05:22:00 +01:00
|
|
|
using Ryujinx.Common.Logging;
|
2020-05-04 04:15:27 +02:00
|
|
|
|
|
|
|
namespace Ryujinx.Common.SystemInfo
|
|
|
|
{
|
2020-11-27 18:57:20 +01:00
|
|
|
[SupportedOSPlatform("linux")]
|
2021-03-01 05:22:00 +01:00
|
|
|
class LinuxSystemInfo : SystemInfo
|
2020-05-04 04:15:27 +02:00
|
|
|
{
|
2021-03-01 05:22:00 +01:00
|
|
|
internal LinuxSystemInfo()
|
|
|
|
{
|
|
|
|
string cpuName = GetCpuidCpuName();
|
|
|
|
|
|
|
|
if (cpuName == null)
|
|
|
|
{
|
|
|
|
var cpuDict = new Dictionary<string, string>(StringComparer.Ordinal)
|
|
|
|
{
|
|
|
|
["model name"] = null,
|
|
|
|
["Processor"] = null,
|
|
|
|
["Hardware"] = null
|
|
|
|
};
|
|
|
|
|
|
|
|
ParseKeyValues("/proc/cpuinfo", cpuDict);
|
|
|
|
|
|
|
|
cpuName = cpuDict["model name"] ?? cpuDict["Processor"] ?? cpuDict["Hardware"] ?? "Unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
var memDict = new Dictionary<string, string>(StringComparer.Ordinal)
|
|
|
|
{
|
|
|
|
["MemTotal"] = null,
|
|
|
|
["MemAvailable"] = null
|
|
|
|
};
|
|
|
|
|
|
|
|
ParseKeyValues("/proc/meminfo", memDict);
|
|
|
|
|
|
|
|
// Entries are in KB
|
|
|
|
ulong.TryParse(memDict["MemTotal"]?.Split(' ')[0], NumberStyles.Integer, CultureInfo.InvariantCulture, out ulong totalKB);
|
|
|
|
ulong.TryParse(memDict["MemAvailable"]?.Split(' ')[0], NumberStyles.Integer, CultureInfo.InvariantCulture, out ulong availableKB);
|
|
|
|
|
|
|
|
CpuName = $"{cpuName} ; {LogicalCoreCount} logical";
|
|
|
|
RamTotal = totalKB * 1024;
|
|
|
|
RamAvailable = availableKB * 1024;
|
|
|
|
}
|
2020-05-04 04:15:27 +02:00
|
|
|
|
2021-03-01 05:22:00 +01:00
|
|
|
private static void ParseKeyValues(string filePath, Dictionary<string, string> itemDict)
|
2020-05-04 04:15:27 +02:00
|
|
|
{
|
2021-03-01 05:22:00 +01:00
|
|
|
if (!File.Exists(filePath))
|
|
|
|
{
|
|
|
|
Logger.Error?.Print(LogClass.Application, $"File \"{filePath}\" not found");
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int count = itemDict.Count;
|
|
|
|
|
|
|
|
using (StreamReader file = new StreamReader(filePath))
|
|
|
|
{
|
|
|
|
string line;
|
|
|
|
while ((line = file.ReadLine()) != null)
|
|
|
|
{
|
|
|
|
string[] kvPair = line.Split(':', 2, StringSplitOptions.TrimEntries);
|
|
|
|
|
|
|
|
if (kvPair.Length < 2) continue;
|
|
|
|
|
|
|
|
string key = kvPair[0];
|
|
|
|
|
|
|
|
if (itemDict.TryGetValue(key, out string value) && value == null)
|
|
|
|
{
|
|
|
|
itemDict[key] = kvPair[1];
|
|
|
|
|
|
|
|
if (--count <= 0) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-04 04:15:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|