cOMS/platform/linux/SystemInfo.cpp
Dennis Eichhorn dc9f37b726
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Has been cancelled
Microsoft C++ Code Analysis / Analyze (push) Has been cancelled
update
2025-04-06 10:34:47 +00:00

276 lines
7.4 KiB
C++
Executable File

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef COMS_PLATFORM_LINUX_SYSTEM_INFO_C
#define COMS_PLATFORM_LINUX_SYSTEM_INFO_C
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "../../stdlib/Types.h"
#include "../../system/SystemInfo.h"
#include "../../architecture/CpuInfo.cpp"
#include "../../system/FileUtils.cpp"
#include <locale.h>
#include <sys/resource.h>
// -lX11 -lXrandr
// @todo Implement own line by line file reading
uint64 system_private_memory_usage()
{
struct rusage usage;
if (getrusage(RUSAGE_SELF, &usage) == 0) {
return usage.ru_maxrss * 1024; // Convert from kilobytes to bytes
} else {
return 0;
}
}
uint64 system_app_memory_usage()
{
uint64 total_size = 0;
FileHandle fp = file_read_handle("/proc/self/smaps");
char line[256];
char internal_buffer[512];
ssize_t internal_buffer_size = 0;
char* internal_pos = NULL;
while (file_read_line(fp, line, sizeof(line), internal_buffer, &internal_buffer_size, &internal_pos)) {
if (str_compare(line, "Private_Dirty:", sizeof("Private_Dirty:") - 1) == 0) {
uint64 private_dirty;
if (sscanf(line, "Private_Dirty: %lu kB", &private_dirty) == 1) {
total_size += private_dirty * 1024; // Convert from kB to bytes
}
}
}
file_close_handle(fp);
return total_size;
}
uint16 system_language_code()
{
const char* localeName = setlocale(LC_ALL, "");
return (localeName[0] << 8) | localeName[1];
}
uint16 system_country_code()
{
const char* localeName = setlocale(LC_ALL, "");
return (localeName[3] << 8) | localeName[4];
}
void mainboard_info_get(MainboardInfo* info) {
FileBody file;
file.content = (byte *) info->name;
file.size = sizeof(info->name) - 1;
file_read("/sys/class/dmi/id/board_name", &file);
info->name[sizeof(info->name) - 1] = '\0';
file.content = (byte *) info->serial_number;
file.size = sizeof(info->serial_number) - 1;
file_read("/sys/class/dmi/id/board_serial", &file);
info->name[sizeof(info->serial_number) - 1] = '\0';
}
int32 network_info_get(NetworkInfo* info) {
char path[64];
memset(path, 0, sizeof(path));
struct stat st;
int32 i = 0;
FileBody file = {};
memcpy(path, "/sys/class/net/eth", sizeof("/sys/class/net/eth"));
for (i = 0; i < 4; ++i) {
int_to_str(i, path + sizeof("/sys/class/net/eth"));
if (stat(path, &st) != 0) {
break;
}
char path2[64];
memcpy(path2, path, sizeof("/sys/class/net/eth"));
// Read MAC address
path2[sizeof("/sys/class/net/eth") + 1] = '\0';
str_concat_append(path2, "/address");
file.content = info[i].mac;
file.size = sizeof(info[i].mac) - 1;
file_read(path2, &file);
// Read interface name
path2[sizeof("/sys/class/net/eth") + 1] = '\0';
str_concat_append(path2, "/ifindex");
file.content = (byte *) info[i].slot;
file.size = sizeof(info[i].slot) - 1;
file_read(path, &file);
}
return i;
}
void cpu_info_get(CpuInfo* info) {
FileHandle fp = file_read_handle("/proc/cpuinfo");
char line[256];
char internal_buffer[512];
ssize_t internal_buffer_size = 0;
char* internal_pos = NULL;
while (file_read_line(fp, line, sizeof(line), internal_buffer, &internal_buffer_size, &internal_pos)) {
if (str_compare(line, "vendor_id", sizeof("vendor_id") - 1) == 0) {
sscanf(line, "vendor_id : %s", info->vendor);
} else if (str_compare(line, "model", sizeof("model") - 1) == 0) {
sscanf(line, "model : %hhd", &info->model);
} else if (str_compare(line, "cpu MHz", sizeof("cpu MHz") - 1) == 0) {
sscanf(line, "cpu MHz : %d", &info->mhz);
} else if (str_compare(line, "cpu cores", sizeof("cpu cores") - 1) == 0) {
sscanf(line, "cpu cores : %hd", &info->core_count);
} else if (str_compare(line, "model name", sizeof("model name") - 1) == 0) {
sscanf(line, "model name : %63[^\n]", info->brand);
}
}
file_close_handle(fp);
info->family = 0;
info->page_size = 4096; // Assuming standard page size of 4KB in Linux
}
void os_info_get(OSInfo* info) {
memcpy(info->vendor, "Linux", sizeof("Linux"));
memcpy(info->name, "Linux", sizeof("Linux"));
info->major = 0;
info->minor = 0;
}
void ram_info_get(RamInfo* info) {
uint32 total_memory = 0;
FileHandle fp = file_read_handle("/proc/meminfo");
char line[256];
char internal_buffer[512];
ssize_t internal_buffer_size = 0;
char* internal_pos = NULL;
while (file_read_line(fp, line, sizeof(line), internal_buffer, &internal_buffer_size, &internal_pos)) {
if (sscanf(line, "MemTotal: %u kB", &total_memory) == 1) {
break;
}
}
file_close_handle(fp);
// Convert memory from kB to MB
info->memory = total_memory / 1024;
}
RamChannelType ram_channel_info() {
FILE* fp;
char buffer[128];
int32 ram_module_count = 0;
int32 dual_channel_capable = 0;
fp = popen("dmidecode -t memory | grep 'Channel'", "r");
if (fp == NULL) {
return RAM_CHANNEL_TYPE_FAILED;
}
while (fgets(buffer, sizeof(buffer), fp) != NULL) {
if (strstr(buffer, "ChannelA") || strstr(buffer, "ChannelB")) {
++ram_module_count;
dual_channel_capable = 1;
} else if (strstr(buffer, "Channel")) {
++ram_module_count;
}
}
pclose(fp);
if (ram_module_count == 1) {
return RAM_CHANNEL_TYPE_SINGLE_CHANNEL;
} else if (ram_module_count == 2 && dual_channel_capable) {
return RAM_CHANNEL_TYPE_DUAL_CHANNEL;
} else if (ram_module_count == 2 && !dual_channel_capable) {
return RAM_CHANNEL_TYPE_CAN_UPGRADE;
} else {
return RAM_CHANNEL_TYPE_FAILED;
}
}
uint32 gpu_info_get(GpuInfo* info) {
FILE* fp = popen("lspci | grep VGA", "r");
if (fp == NULL) {
return 0;
}
uint32 count = 0;
char line[256];
while (fgets(line, sizeof(line), fp)) {
if (count >= 2) break;
// Assuming that the first part of the line contains the name of the GPU
char* gpu_name = strtok(line, ":");
if (gpu_name) {
sprintf_fast(info[count].name, sizeof(info[count].name), "%s", gpu_name);
}
// @todo this is Wrong
info[count].vram = 2048;
++count;
}
pclose(fp);
return count;
}
uint32 display_info_get(DisplayInfo* info) {
FILE* fp = popen("xrandr --current 2>/dev/null", "r");
if (fp == NULL) {
return 0;
}
char line[256];
uint32 count = 0;
while (fgets(line, sizeof(line), fp)) {
if (str_find(line, "connected")) {
// Example: "HDMI-1 connected 1920x1080+0+0 60.00*+"
char name[64];
uint32 width, height, hz;
if (sscanf(line, "%s connected %dx%d+%*d+%*d %d", name, &width, &height, &hz) == 4) {
str_copy_short(info[count].name, name);
info[count].width = width;
info[count].height = height;
info[count].hz = hz;
info[count].is_primary = str_find(line, "primary");
++count;
}
}
}
pclose(fp);
return count;
}
#endif