summaryrefslogtreecommitdiffstats
path: root/src/modules/memory/memory.c
blob: 4fbdf75fb2d361b15f1099b9ffa8ccc6a619ca8c (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#include "common/printing.h"
#include "common/jsonconfig.h"
#include "common/percent.h"
#include "common/size.h"
#include "common/strutil.h"
#include "detection/memory/memory.h"
#include "modules/memory/memory.h"

bool ffPrintMemory(FFMemoryOptions* options) {
    FFMemoryResult storage = {};
    const char* error = ffDetectMemory(&storage);

    if (error) {
        ffPrintError(FF_MEMORY_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "%s", error);
        return false;
    }

    FF_STRBUF_AUTO_DESTROY usedPretty = ffStrbufCreate();
    ffSizeAppendNum(storage.bytesUsed, &usedPretty);

    FF_STRBUF_AUTO_DESTROY totalPretty = ffStrbufCreate();
    ffSizeAppendNum(storage.bytesTotal, &totalPretty);

    double percentage = storage.bytesTotal == 0
        ? 0
        : (double) storage.bytesUsed / (double) storage.bytesTotal * 100.0;

    FFPercentageTypeFlags percentType = options->percent.type == 0 ? instance.config.display.percentType : options->percent.type;
    if (options->moduleArgs.outputFormat.length == 0) {
        ffPrintLogoAndKey(FF_MEMORY_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT);
        if (storage.bytesTotal == 0) {
            puts("Disabled");
        } else {
            FF_STRBUF_AUTO_DESTROY str = ffStrbufCreate();

            if (percentType & FF_PERCENTAGE_TYPE_BAR_BIT) {
                ffPercentAppendBar(&str, percentage, options->percent, &options->moduleArgs);
                ffStrbufAppendC(&str, ' ');
            }

            if (!(percentType & FF_PERCENTAGE_TYPE_HIDE_OTHERS_BIT)) {
                ffStrbufAppendF(&str, "%s / %s ", usedPretty.chars, totalPretty.chars);
            }

            if (percentType & FF_PERCENTAGE_TYPE_NUM_BIT) {
                ffPercentAppendNum(&str, percentage, options->percent, str.length > 0, &options->moduleArgs);
            }

            ffStrbufTrimRight(&str, ' ');
            ffStrbufPutTo(&str, stdout);
        }
    } else {
        FF_STRBUF_AUTO_DESTROY percentageNum = ffStrbufCreate();
        if (percentType & FF_PERCENTAGE_TYPE_NUM_BIT) {
            ffPercentAppendNum(&percentageNum, percentage, options->percent, false, &options->moduleArgs);
        }
        FF_STRBUF_AUTO_DESTROY percentageBar = ffStrbufCreate();
        if (percentType & FF_PERCENTAGE_TYPE_BAR_BIT) {
            ffPercentAppendBar(&percentageBar, percentage, options->percent, &options->moduleArgs);
        }

        FF_PRINT_FORMAT_CHECKED(FF_MEMORY_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, ((FFformatarg[]) {
                                                                                                           FF_ARG(usedPretty, "used"),
                                                                                                           FF_ARG(totalPretty, "total"),
                                                                                                           FF_ARG(percentageNum, "percentage"),
                                                                                                           FF_ARG(percentageBar, "percentage-bar"),
                                                                                                       }));
    }

    return true;
}

void ffParseMemoryJsonObject(FFMemoryOptions* options, yyjson_val* module) {
    yyjson_val *key, *val;
    size_t idx, max;
    yyjson_obj_foreach (module, idx, max, key, val) {
        if (ffJsonConfigParseModuleArgs(key, val, &options->moduleArgs)) {
            continue;
        }

        if (ffPercentParseJsonObject(key, val, &options->percent)) {
            continue;
        }

        ffPrintError(FF_MEMORY_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "Unknown JSON key %s", unsafe_yyjson_get_str(key));
    }
}

void ffGenerateMemoryJsonConfig(FFMemoryOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module) {
    ffJsonConfigGenerateModuleArgsConfig(doc, module, &options->moduleArgs);

    ffPercentGenerateJsonConfig(doc, module, options->percent);
}

bool ffGenerateMemoryJsonResult(FF_A_UNUSED FFMemoryOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module) {
    FFMemoryResult storage = {};
    const char* error = ffDetectMemory(&storage);

    if (error) {
        yyjson_mut_obj_add_str(doc, module, "error", error);
        return false;
    }

    yyjson_mut_val* obj = yyjson_mut_obj_add_obj(doc, module, "result");
    yyjson_mut_obj_add_uint(doc, obj, "total", storage.bytesTotal);
    yyjson_mut_obj_add_uint(doc, obj, "used", storage.bytesUsed);

    return true;
}

void ffInitMemoryOptions(FFMemoryOptions* options) {
    ffOptionInitModuleArg(&options->moduleArgs, "");
    options->percent = (FFPercentageModuleConfig) { 50, 80, 0 };
}

void ffDestroyMemoryOptions(FFMemoryOptions* options) {
    ffOptionDestroyModuleArg(&options->moduleArgs);
}

FFModuleBaseInfo ffMemoryModuleInfo = {
    .name = FF_MEMORY_MODULE_NAME,
    .description = "Print system memory usage information",
    .initOptions = (void*) ffInitMemoryOptions,
    .destroyOptions = (void*) ffDestroyMemoryOptions,
    .parseJsonObject = (void*) ffParseMemoryJsonObject,
    .printModule = (void*) ffPrintMemory,
    .generateJsonResult = (void*) ffGenerateMemoryJsonResult,
    .generateJsonConfig = (void*) ffGenerateMemoryJsonConfig,
    .formatArgs = FF_FORMAT_ARG_LIST(((FFModuleFormatArg[]) {
        { "Used size", "used" },
        { "Total size", "total" },
        { "Percentage used (num)", "percentage" },
        { "Percentage used (bar)", "percentage-bar" },
    }))
};