mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
326d83f25b
fix #535
181 lines
5.5 KiB
C
181 lines
5.5 KiB
C
#include "common/printing.h"
|
|
#include "common/jsonconfig.h"
|
|
#include "common/bar.h"
|
|
#include "common/parsing.h"
|
|
#include "detection/battery/battery.h"
|
|
#include "modules/battery/battery.h"
|
|
#include "util/stringUtils.h"
|
|
|
|
#define FF_BATTERY_NUM_FORMAT_ARGS 5
|
|
|
|
static void printBattery(FFBatteryOptions* options, BatteryResult* result, uint8_t index)
|
|
{
|
|
if(options->moduleArgs.outputFormat.length == 0)
|
|
{
|
|
ffPrintLogoAndKey(FF_BATTERY_MODULE_NAME, index, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT);
|
|
|
|
FF_STRBUF_AUTO_DESTROY str = ffStrbufCreate();
|
|
bool showStatus =
|
|
!(instance.config.percentType & FF_PERCENTAGE_TYPE_HIDE_OTHERS_BIT) &&
|
|
result->status.length > 0 &&
|
|
ffStrbufIgnCaseCompS(&result->status, "Unknown") != 0;
|
|
|
|
if(result->capacity >= 0)
|
|
{
|
|
if(instance.config.percentType & FF_PERCENTAGE_TYPE_BAR_BIT)
|
|
{
|
|
if(result->capacity <= 20)
|
|
ffAppendPercentBar(&str, result->capacity, 100, 100, 0);
|
|
else if(result->capacity <= 50)
|
|
ffAppendPercentBar(&str, result->capacity, 100, 0, 100);
|
|
else
|
|
ffAppendPercentBar(&str, result->capacity, 0, 100, 100);
|
|
}
|
|
|
|
if(instance.config.percentType & FF_PERCENTAGE_TYPE_NUM_BIT)
|
|
{
|
|
if(str.length > 0)
|
|
ffStrbufAppendC(&str, ' ');
|
|
|
|
ffAppendPercentNum(&str, result->capacity, 51, 21, str.length > 0);
|
|
}
|
|
}
|
|
|
|
if(showStatus)
|
|
{
|
|
if(str.length > 0)
|
|
ffStrbufAppendF(&str, " [%s]", result->status.chars);
|
|
else
|
|
ffStrbufAppend(&str, &result->status);
|
|
}
|
|
|
|
if(result->temperature == result->temperature) //FF_BATTERY_TEMP_UNSET
|
|
{
|
|
if(str.length > 0)
|
|
ffStrbufAppendS(&str, " - ");
|
|
|
|
ffParseTemperature(result->temperature, &str);
|
|
}
|
|
|
|
ffStrbufPutTo(&str, stdout);
|
|
}
|
|
else
|
|
{
|
|
FF_STRBUF_AUTO_DESTROY capacityStr = ffStrbufCreate();
|
|
ffAppendPercentNum(&capacityStr, result->capacity, 51, 21, false);
|
|
ffPrintFormat(FF_BATTERY_MODULE_NAME, index, &options->moduleArgs, FF_BATTERY_NUM_FORMAT_ARGS, (FFformatarg[]){
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &result->manufacturer},
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &result->modelName},
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &result->technology},
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &capacityStr},
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &result->status},
|
|
{FF_FORMAT_ARG_TYPE_DOUBLE, &result->temperature},
|
|
});
|
|
}
|
|
}
|
|
|
|
void ffPrintBattery(FFBatteryOptions* options)
|
|
{
|
|
FFlist results;
|
|
ffListInitA(&results, sizeof(BatteryResult), 0);
|
|
|
|
const char* error = ffDetectBattery(options, &results);
|
|
|
|
if (error)
|
|
{
|
|
ffPrintError(FF_BATTERY_MODULE_NAME, 0, &options->moduleArgs, "%s", error);
|
|
}
|
|
else
|
|
{
|
|
for(uint8_t i = 0; i < (uint8_t) results.length; i++)
|
|
{
|
|
BatteryResult* result = ffListGet(&results, i);
|
|
printBattery(options, result, i);
|
|
|
|
ffStrbufDestroy(&result->manufacturer);
|
|
ffStrbufDestroy(&result->modelName);
|
|
ffStrbufDestroy(&result->technology);
|
|
ffStrbufDestroy(&result->status);
|
|
}
|
|
if(results.length == 0)
|
|
ffPrintError(FF_BATTERY_MODULE_NAME, 0, &options->moduleArgs, "No batteries found");
|
|
}
|
|
|
|
ffListDestroy(&results);
|
|
}
|
|
|
|
void ffInitBatteryOptions(FFBatteryOptions* options)
|
|
{
|
|
ffOptionInitModuleBaseInfo(&options->moduleInfo, FF_BATTERY_MODULE_NAME, ffParseBatteryCommandOptions, ffParseBatteryJsonObject, ffPrintBattery);
|
|
ffOptionInitModuleArg(&options->moduleArgs);
|
|
options->temp = false;
|
|
|
|
#ifdef __linux__
|
|
ffStrbufInit(&options->dir);
|
|
#endif
|
|
}
|
|
|
|
bool ffParseBatteryCommandOptions(FFBatteryOptions* options, const char* key, const char* value)
|
|
{
|
|
const char* subKey = ffOptionTestPrefix(key, FF_BATTERY_MODULE_NAME);
|
|
if (!subKey) return false;
|
|
if (ffOptionParseModuleArgs(key, subKey, value, &options->moduleArgs))
|
|
return true;
|
|
|
|
if (ffStrEqualsIgnCase(subKey, "temp"))
|
|
{
|
|
options->temp = ffOptionParseBoolean(value);
|
|
return true;
|
|
}
|
|
|
|
#ifdef __linux__
|
|
if (ffStrEqualsIgnCase(subKey, "dir"))
|
|
{
|
|
ffOptionParseString(key, value, &options->dir);
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
return false;
|
|
}
|
|
|
|
void ffDestroyBatteryOptions(FFBatteryOptions* options)
|
|
{
|
|
ffOptionDestroyModuleArg(&options->moduleArgs);
|
|
|
|
#ifdef __linux__
|
|
ffStrbufDestroy(&options->dir);
|
|
#endif
|
|
}
|
|
|
|
void ffParseBatteryJsonObject(FFBatteryOptions* options, yyjson_val* module)
|
|
{
|
|
yyjson_val *key_, *val;
|
|
size_t idx, max;
|
|
yyjson_obj_foreach(module, idx, max, key_, val)
|
|
{
|
|
const char* key = yyjson_get_str(key_);
|
|
if(ffStrEqualsIgnCase(key, "type"))
|
|
continue;
|
|
|
|
if (ffJsonConfigParseModuleArgs(key, val, &options->moduleArgs))
|
|
continue;
|
|
|
|
#ifdef __linux__
|
|
if (ffStrEqualsIgnCase(key, "dir"))
|
|
{
|
|
ffStrbufSetS(&options->dir, yyjson_get_str(val));
|
|
continue;
|
|
}
|
|
#endif
|
|
|
|
if (ffStrEqualsIgnCase(key, "temp"))
|
|
{
|
|
options->temp = yyjson_get_bool(val);
|
|
continue;
|
|
}
|
|
|
|
ffPrintError(FF_BATTERY_MODULE_NAME, 0, &options->moduleArgs, "Unknown JSON key %s", key);
|
|
}
|
|
}
|