summaryrefslogtreecommitdiffstats
path: root/src/detection/cpuusage/cpuusage_linux.c
blob: fd2f43bb8c22978fc9d24b44a61632fdcd488f75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "fastfetch.h"
#include "detection/cpuusage/cpuusage.h"
#include "common/io.h"

#include <stdio.h>
#include <inttypes.h>

const char* ffGetCpuUsageInfo(FFlist* cpuTimes) {
    char buf[PROC_FILE_BUFFSIZ];
    ssize_t nRead = ffReadFileData("/proc/stat", ARRAY_SIZE(buf) - 1, buf);
    if (nRead < 0) {
#ifdef __ANDROID__
        return "Accessing \"/proc/stat\" is restricted on Android O+";
#else
        return "ffReadFileData(\"/proc/stat\", ARRAY_SIZE(buf) - 1, buf) failed";
#endif
    }
    buf[nRead] = '\0';

    // Skip first line
    char* start = NULL;
    if ((start = strchr(buf, '\n')) == NULL) {
        return "skip first line failed";
    }
    ++start;

    uint64_t user = 0, nice = 0, system = 0, idle = 0, iowait = 0, irq = 0, softirq = 0;
    char* token = NULL;
    while ((token = strchr(start, '\n'))) {
        if (sscanf(start, "cpu%*d%" PRIu64 "%" PRIu64 "%" PRIu64 "%" PRIu64 "%" PRIu64 "%" PRIu64 "%" PRIu64 "%*[^\n]\n", &user, &nice, &system, &idle, &iowait, &irq, &softirq) == 7) {
            uint64_t inUse = user + nice + system + irq + softirq;
            uint64_t total = inUse + idle + iowait;

            FFCpuUsageInfo* info = FF_LIST_ADD(FFCpuUsageInfo, *cpuTimes);
            *info = (FFCpuUsageInfo) {
                .inUseAll = inUse,
                .totalAll = total,
            };
        } else {
            break;
        }
        start = token + 1;
    }

    return NULL;
}