2016-11-20 11:32:27 +00:00
|
|
|
#include "sys.h"
|
|
|
|
|
2016-11-26 01:18:05 +00:00
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
2021-09-04 20:27:09 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
|
2016-11-26 01:18:05 +00:00
|
|
|
Sys::KernelInfo Sys::getKernelInfo()
|
2016-11-20 11:32:27 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
Sys::KernelInfo out;
|
|
|
|
struct utsname buf;
|
|
|
|
uname(&buf);
|
2021-09-04 20:27:09 +01:00
|
|
|
out.kernelType = KernelType::Darwin;
|
2018-07-15 13:51:05 +01:00
|
|
|
out.kernelName = buf.sysname;
|
2021-09-04 20:27:09 +01:00
|
|
|
QString release = out.kernelVersion = buf.release;
|
|
|
|
|
|
|
|
// TODO: figure out how to detect cursed-ness (macOS emulated on linux via mad hacks and so on)
|
|
|
|
out.isCursed = false;
|
|
|
|
|
|
|
|
out.kernelMajor = 0;
|
|
|
|
out.kernelMinor = 0;
|
|
|
|
out.kernelPatch = 0;
|
|
|
|
auto sections = release.split('-');
|
|
|
|
if(sections.size() >= 1) {
|
|
|
|
auto versionParts = sections[0].split('.');
|
|
|
|
if(sections.size() >= 3) {
|
|
|
|
out.kernelMajor = sections[0].toInt();
|
|
|
|
out.kernelMinor = sections[1].toInt();
|
|
|
|
out.kernelPatch = sections[2].toInt();
|
|
|
|
}
|
|
|
|
}
|
2018-07-15 13:51:05 +01:00
|
|
|
return out;
|
2016-11-20 11:32:27 +00:00
|
|
|
}
|
2016-11-21 23:57:15 +00:00
|
|
|
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
|
|
|
uint64_t Sys::getSystemRam()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
uint64_t memsize;
|
|
|
|
size_t memsizesize = sizeof(memsize);
|
|
|
|
if(!sysctlbyname("hw.memsize", &memsize, &memsizesize, NULL, 0))
|
|
|
|
{
|
|
|
|
return memsize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2016-11-21 23:57:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Sys::isCPU64bit()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
// not even going to pretend I'm going to support anything else
|
|
|
|
return true;
|
2016-11-21 23:57:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Sys::isSystem64bit()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
// yep. maybe when we have 128bit CPUs on consumer devices.
|
|
|
|
return true;
|
2016-11-21 23:57:15 +00:00
|
|
|
}
|
2018-03-11 22:00:54 +00:00
|
|
|
|
|
|
|
Sys::DistributionInfo Sys::getDistributionInfo()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
DistributionInfo result;
|
|
|
|
return result;
|
2018-03-11 22:00:54 +00:00
|
|
|
}
|