Files
fastfetch/src/modules/gpu/gpu.c
T

217 lines
6.8 KiB
C
Raw Normal View History

2023-03-26 20:42:18 +08:00
#include "common/bar.h"
#include "common/parsing.h"
#include "common/printing.h"
2023-06-10 15:01:54 +08:00
#include "common/jsonconfig.h"
2023-03-26 20:42:18 +08:00
#include "detection/host/host.h"
#include "detection/gpu/gpu.h"
#include "modules/gpu/gpu.h"
#include "util/stringUtils.h"
2023-03-26 20:42:18 +08:00
#include <stdlib.h>
#define FF_GPU_NUM_FORMAT_ARGS 6
static void printGPUResult(FFGPUOptions* options, uint8_t index, const FFGPUResult* gpu)
2023-03-26 20:42:18 +08:00
{
2023-06-24 19:49:53 +08:00
const char* type;
switch (gpu->type)
{
case FF_GPU_TYPE_INTEGRATED: type = "Integrated"; break;
case FF_GPU_TYPE_DISCRETE: type = "Discrete"; break;
default: type = "Unknown"; break;
}
2023-03-26 20:42:18 +08:00
if(options->moduleArgs.outputFormat.length == 0)
{
ffPrintLogoAndKey(FF_GPU_MODULE_NAME, index, &options->moduleArgs.key, &options->moduleArgs.keyColor);
2023-03-26 20:42:18 +08:00
FF_STRBUF_AUTO_DESTROY output = ffStrbufCreateA(gpu->vendor.length + 1 + gpu->name.length);
2023-03-26 20:42:18 +08:00
if(gpu->vendor.length > 0 && !ffStrbufStartsWith(&gpu->name, &gpu->vendor))
{
ffStrbufAppend(&output, &gpu->vendor);
ffStrbufAppendC(&output, ' ');
}
ffStrbufAppend(&output, &gpu->name);
if(gpu->coreCount != FF_GPU_CORE_COUNT_UNSET)
ffStrbufAppendF(&output, " (%d)", gpu->coreCount);
if(gpu->temperature == gpu->temperature) //FF_GPU_TEMP_UNSET
ffStrbufAppendF(&output, " - %.1f°C", gpu->temperature);
if(gpu->dedicated.total != FF_GPU_VMEM_SIZE_UNSET && gpu->dedicated.total != 0)
{
ffStrbufAppendS(&output, " (");
if(gpu->dedicated.used != FF_GPU_VMEM_SIZE_UNSET)
{
ffParseSize(gpu->dedicated.used, instance.config.binaryPrefixType, &output);
2023-03-26 20:42:18 +08:00
ffStrbufAppendS(&output, " / ");
}
ffParseSize(gpu->dedicated.total, instance.config.binaryPrefixType, &output);
2023-03-26 20:42:18 +08:00
if(gpu->dedicated.used != FF_GPU_VMEM_SIZE_UNSET)
{
ffStrbufAppendS(&output, ", ");
ffAppendPercentNum(&output, (uint8_t) (gpu->dedicated.used * 100 / gpu->dedicated.total), 50, 80, false);
2023-03-26 20:42:18 +08:00
}
ffStrbufAppendC(&output, ')');
}
2023-06-24 19:49:53 +08:00
if (gpu->type != FF_GPU_TYPE_UNKNOWN)
ffStrbufAppendF(&output, " [%s]", type);
2023-03-26 20:42:18 +08:00
ffStrbufPutTo(&output, stdout);
}
else
{
ffPrintFormat(FF_GPU_MODULE_NAME, index, &options->moduleArgs, FF_GPU_NUM_FORMAT_ARGS, (FFformatarg[]){
2023-03-26 20:42:18 +08:00
{FF_FORMAT_ARG_TYPE_STRBUF, &gpu->vendor},
{FF_FORMAT_ARG_TYPE_STRBUF, &gpu->name},
{FF_FORMAT_ARG_TYPE_STRBUF, &gpu->driver},
{FF_FORMAT_ARG_TYPE_DOUBLE, &gpu->temperature},
{FF_FORMAT_ARG_TYPE_INT, &gpu->coreCount},
{FF_FORMAT_ARG_TYPE_STRING, type},
});
}
}
void ffPrintGPU(FFGPUOptions* options)
2023-03-26 20:42:18 +08:00
{
2023-06-12 11:30:18 +08:00
FF_LIST_AUTO_DESTROY gpus = ffListCreate(sizeof (FFGPUResult));
const char* error = ffDetectGPU(options, &gpus);
2023-06-12 11:30:18 +08:00
if (error)
{
ffPrintError(FF_GPU_MODULE_NAME, 0, &options->moduleArgs, "%s", error);
2023-06-12 11:30:18 +08:00
return;
}
2023-03-26 20:42:18 +08:00
FF_LIST_AUTO_DESTROY selectedGPUs;
2023-06-12 11:30:18 +08:00
ffListInitA(&selectedGPUs, sizeof(const FFGPUResult*), gpus.length);
2023-03-26 20:42:18 +08:00
2023-06-12 11:30:18 +08:00
FF_LIST_FOR_EACH(FFGPUResult, gpu, gpus)
2023-03-26 20:42:18 +08:00
{
if(gpu->type == FF_GPU_TYPE_INTEGRATED && options->hideType == FF_GPU_TYPE_INTEGRATED)
continue;
if(gpu->type == FF_GPU_TYPE_DISCRETE && options->hideType == FF_GPU_TYPE_DISCRETE)
continue;
* (const FFGPUResult**) ffListAdd(&selectedGPUs) = gpu;
}
for(uint32_t i = 0; i < selectedGPUs.length; i++)
printGPUResult(options, selectedGPUs.length == 1 ? 0 : (uint8_t) (i + 1), * (const FFGPUResult**) ffListGet(&selectedGPUs, i));
2023-03-26 20:42:18 +08:00
if(selectedGPUs.length == 0)
ffPrintError(FF_GPU_MODULE_NAME, 0, &options->moduleArgs, "No GPUs found");
2023-06-12 11:30:18 +08:00
FF_LIST_FOR_EACH(FFGPUResult, gpu, gpus)
{
ffStrbufDestroy(&gpu->vendor);
ffStrbufDestroy(&gpu->name);
ffStrbufDestroy(&gpu->driver);
}
2023-03-26 20:42:18 +08:00
}
void ffInitGPUOptions(FFGPUOptions* options)
{
options->moduleName = FF_GPU_MODULE_NAME;
ffOptionInitModuleArg(&options->moduleArgs);
options->forceVulkan = false;
options->temp = false;
options->hideType = FF_GPU_TYPE_UNKNOWN;
}
bool ffParseGPUCommandOptions(FFGPUOptions* options, const char* key, const char* value)
{
const char* subKey = ffOptionTestPrefix(key, FF_GPU_MODULE_NAME);
if (!subKey) return false;
if (ffOptionParseModuleArgs(key, subKey, value, &options->moduleArgs))
return true;
if (ffStrEqualsIgnCase(subKey, "force-vulkan"))
2023-03-26 20:42:18 +08:00
{
options->forceVulkan = ffOptionParseBoolean(value);
return true;
}
if (ffStrEqualsIgnCase(subKey, "temp"))
2023-03-26 20:42:18 +08:00
{
options->temp = ffOptionParseBoolean(value);
return true;
}
if (ffStrEqualsIgnCase(subKey, "hide-type"))
2023-03-26 20:42:18 +08:00
{
options->hideType = (FFGPUType) ffOptionParseEnum(key, value, (FFKeyValuePair[]) {
{ "none", FF_GPU_TYPE_UNKNOWN },
{ "intergrated", FF_GPU_TYPE_INTEGRATED },
{ "discrete", FF_GPU_TYPE_DISCRETE },
{},
});
}
return false;
}
void ffDestroyGPUOptions(FFGPUOptions* options)
{
ffOptionDestroyModuleArg(&options->moduleArgs);
}
void ffParseGPUJsonObject(yyjson_val* module)
2023-03-26 20:42:18 +08:00
{
FFGPUOptions __attribute__((__cleanup__(ffDestroyGPUOptions))) options;
ffInitGPUOptions(&options);
if (module)
{
2023-06-10 15:01:54 +08:00
yyjson_val *key_, *val;
size_t idx, max;
yyjson_obj_foreach(module, idx, max, key_, val)
2023-03-26 20:42:18 +08:00
{
2023-06-10 15:01:54 +08:00
const char* key = yyjson_get_str(key_);
if(ffStrEqualsIgnCase(key, "type"))
2023-06-10 15:01:54 +08:00
continue;
2023-03-26 20:42:18 +08:00
if (ffJsonConfigParseModuleArgs(key, val, &options.moduleArgs))
continue;
if (ffStrEqualsIgnCase(key, "temp"))
2023-03-26 20:42:18 +08:00
{
2023-06-10 15:01:54 +08:00
options.temp = yyjson_get_bool(val);
2023-03-26 20:42:18 +08:00
continue;
}
if (ffStrEqualsIgnCase(key, "forceVulkan"))
2023-03-26 20:42:18 +08:00
{
2023-06-10 15:01:54 +08:00
options.forceVulkan = yyjson_get_bool(val);
2023-03-26 20:42:18 +08:00
continue;
}
if (ffStrEqualsIgnCase(key, "hideType"))
2023-03-26 20:42:18 +08:00
{
int value;
const char* error = ffJsonConfigParseEnum(val, &value, (FFKeyValuePair[]) {
{ "none", FF_GPU_TYPE_UNKNOWN },
{ "intergrated", FF_GPU_TYPE_INTEGRATED },
{ "discrete", FF_GPU_TYPE_DISCRETE },
{},
});
if (error)
ffPrintError(FF_GPU_MODULE_NAME, 0, &options.moduleArgs, "Invalid %s value: %s", key, error);
2023-03-26 20:42:18 +08:00
else
options.hideType = (FFGPUType) value;
continue;
}
ffPrintError(FF_GPU_MODULE_NAME, 0, &options.moduleArgs, "Unknown JSON key %s", key);
2023-03-26 20:42:18 +08:00
}
}
ffPrintGPU(&options);
2023-03-26 20:42:18 +08:00
}