mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
96 lines
2.9 KiB
C
96 lines
2.9 KiB
C
#include "fastfetch.h"
|
|
#include "common/printing.h"
|
|
#include "common/parsing.h"
|
|
#include "common/bar.h"
|
|
#include "detection/memory/memory.h"
|
|
#include "detection/swap/swap.h"
|
|
|
|
#define FF_MEMORY_MODULE_NAME "Memory"
|
|
#define FF_SWAP_MODULE_NAME "Swap"
|
|
|
|
#define FF_MEMORY_NUM_FORMAT_ARGS 3
|
|
|
|
static uint8_t calculatePercentage(const FFMemoryStorage* storage)
|
|
{
|
|
if(storage->error.length != 0 || storage->bytesTotal == 0)
|
|
return 0;
|
|
else
|
|
return (uint8_t) (((long double) storage->bytesUsed / (long double) storage->bytesTotal) * 100.0);
|
|
}
|
|
|
|
static void printMemory(FFinstance* instance, const char* name, const FFModuleArgs* moduleArgs, const FFMemoryStorage* storage)
|
|
{
|
|
if(storage->error.length > 0)
|
|
{
|
|
ffPrintError(instance, name, 0, moduleArgs, "%s", storage->error.chars);
|
|
return;
|
|
}
|
|
|
|
FFstrbuf usedPretty;
|
|
ffStrbufInit(&usedPretty);
|
|
ffParseSize(storage->bytesUsed, instance->config.binaryPrefixType, &usedPretty);
|
|
|
|
FFstrbuf totalPretty;
|
|
ffStrbufInit(&totalPretty);
|
|
ffParseSize(storage->bytesTotal, instance->config.binaryPrefixType, &totalPretty);
|
|
|
|
uint8_t percentage = calculatePercentage(storage);
|
|
|
|
if(moduleArgs->outputFormat.length == 0)
|
|
{
|
|
ffPrintLogoAndKey(instance, name, 0, &moduleArgs->key);
|
|
if (storage->bytesTotal == 0)
|
|
puts("Disabled");
|
|
else
|
|
{
|
|
FFstrbuf str;
|
|
ffStrbufInit(&str);
|
|
|
|
if(instance->config.percentType & FF_PERCENTAGE_TYPE_BAR_BIT)
|
|
{
|
|
ffAppendPercentBar(instance, &str, percentage, 0, 5, 8);
|
|
ffStrbufAppendC(&str, ' ');
|
|
}
|
|
|
|
if(!(instance->config.percentType & FF_PERCENTAGE_TYPE_HIDE_OTHERS_BIT))
|
|
ffStrbufAppendF(&str, "%s / %s ", usedPretty.chars, totalPretty.chars);
|
|
|
|
if(instance->config.percentType & FF_PERCENTAGE_TYPE_NUM_BIT)
|
|
ffStrbufAppendF(&str, str.length > 0 ? "(%u%%)" : "%u%%", percentage);
|
|
|
|
ffStrbufTrimRight(&str, ' ');
|
|
ffStrbufPutTo(&str, stdout);
|
|
ffStrbufDestroy(&str);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ffPrintFormat(instance, name, 0, moduleArgs, FF_MEMORY_NUM_FORMAT_ARGS, (FFformatarg[]){
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &usedPretty},
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &totalPretty},
|
|
{FF_FORMAT_ARG_TYPE_UINT8, &percentage},
|
|
});
|
|
}
|
|
|
|
ffStrbufDestroy(&usedPretty);
|
|
ffStrbufDestroy(&totalPretty);
|
|
}
|
|
|
|
void ffPrintMemory(FFinstance* instance)
|
|
{
|
|
FFMemoryStorage result;
|
|
ffStrbufInit(&result.error);
|
|
ffDetectMemory(&result);
|
|
printMemory(instance, FF_MEMORY_MODULE_NAME, &instance->config.memory, &result);
|
|
ffStrbufDestroy(&result.error);
|
|
}
|
|
|
|
void ffPrintSwap(FFinstance* instance)
|
|
{
|
|
FFMemoryStorage result;
|
|
ffStrbufInit(&result.error);
|
|
ffDetectSwap(&result);
|
|
printMemory(instance, FF_SWAP_MODULE_NAME, &instance->config.swap, &result);
|
|
ffStrbufDestroy(&result.error);
|
|
}
|