2023-08-21 09:19:16 +08:00
|
|
|
#include "common/printing.h"
|
|
|
|
|
#include "common/jsonconfig.h"
|
2023-10-05 19:06:15 +08:00
|
|
|
#include "detection/libc/libc.h"
|
2023-08-21 09:19:16 +08:00
|
|
|
#include "detection/version/version.h"
|
|
|
|
|
#include "modules/version/version.h"
|
|
|
|
|
#include "util/stringUtils.h"
|
|
|
|
|
|
|
|
|
|
void ffPrintVersion(FFVersionOptions* options)
|
|
|
|
|
{
|
2024-07-02 10:12:26 +08:00
|
|
|
FFVersionResult* result = &ffVersionResult;
|
2023-08-21 09:19:16 +08:00
|
|
|
|
|
|
|
|
if(options->moduleArgs.outputFormat.length == 0)
|
|
|
|
|
{
|
|
|
|
|
ffPrintLogoAndKey(FF_VERSION_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT);
|
2024-07-02 10:12:26 +08:00
|
|
|
printf("%s %s%s%s (%s)\n", result->projectName, result->version, result->versionTweak, result->debugMode ? "-debug" : "", result->architecture);
|
2023-08-21 09:19:16 +08:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-10-05 19:06:15 +08:00
|
|
|
FFLibcResult libcResult;
|
|
|
|
|
FF_STRBUF_AUTO_DESTROY buf = ffStrbufCreate();
|
|
|
|
|
if (!ffDetectLibc(&libcResult))
|
|
|
|
|
{
|
|
|
|
|
ffStrbufSetS(&buf, libcResult.name);
|
|
|
|
|
if (libcResult.version)
|
|
|
|
|
{
|
|
|
|
|
ffStrbufAppendC(&buf, ' ');
|
|
|
|
|
ffStrbufAppendS(&buf, libcResult.version);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-03 14:52:40 +08:00
|
|
|
const char* buildType = result->debugMode ? "debug" : "release";
|
2024-12-11 10:47:02 +08:00
|
|
|
FF_PRINT_FORMAT_CHECKED(FF_VERSION_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, ((FFformatarg[]){
|
2024-09-03 14:52:40 +08:00
|
|
|
FF_FORMAT_ARG(result->projectName, "project-name"),
|
|
|
|
|
FF_FORMAT_ARG(result->version, "version"),
|
|
|
|
|
FF_FORMAT_ARG(result->versionTweak, "version-tweak"),
|
|
|
|
|
FF_FORMAT_ARG(buildType, "build-type"),
|
|
|
|
|
FF_FORMAT_ARG(result->sysName, "sysname"),
|
|
|
|
|
FF_FORMAT_ARG(result->architecture, "arch"),
|
|
|
|
|
FF_FORMAT_ARG(result->cmakeBuiltType, "cmake-built-type"),
|
|
|
|
|
FF_FORMAT_ARG(result->compileTime, "compile-time"),
|
|
|
|
|
FF_FORMAT_ARG(result->compiler, "compiler"),
|
2024-12-17 10:23:23 +08:00
|
|
|
FF_FORMAT_ARG(buf, "libc"),
|
2024-03-07 10:47:28 +08:00
|
|
|
}));
|
2023-08-21 09:19:16 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ffParseVersionCommandOptions(FFVersionOptions* options, const char* key, const char* value)
|
|
|
|
|
{
|
|
|
|
|
const char* subKey = ffOptionTestPrefix(key, FF_VERSION_MODULE_NAME);
|
|
|
|
|
if (!subKey) return false;
|
|
|
|
|
if (ffOptionParseModuleArgs(key, subKey, value, &options->moduleArgs))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ffParseVersionJsonObject(FFVersionOptions* options, yyjson_val* module)
|
|
|
|
|
{
|
2025-08-02 18:51:03 +08:00
|
|
|
yyjson_val *key, *val;
|
2023-08-21 09:19:16 +08:00
|
|
|
size_t idx, max;
|
2025-08-02 18:51:03 +08:00
|
|
|
yyjson_obj_foreach(module, idx, max, key, val)
|
2023-08-21 09:19:16 +08:00
|
|
|
{
|
|
|
|
|
if (ffJsonConfigParseModuleArgs(key, val, &options->moduleArgs))
|
|
|
|
|
continue;
|
|
|
|
|
|
2025-08-02 18:51:03 +08:00
|
|
|
ffPrintError(FF_VERSION_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "Unknown JSON key %s", unsafe_yyjson_get_str(key));
|
2023-08-21 09:19:16 +08:00
|
|
|
}
|
|
|
|
|
}
|
2023-09-12 20:36:00 +08:00
|
|
|
|
2023-10-24 14:41:29 +08:00
|
|
|
void ffGenerateVersionJsonConfig(FFVersionOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module)
|
|
|
|
|
{
|
|
|
|
|
__attribute__((__cleanup__(ffDestroyVersionOptions))) FFVersionOptions defaultOptions;
|
|
|
|
|
ffInitVersionOptions(&defaultOptions);
|
|
|
|
|
|
|
|
|
|
ffJsonConfigGenerateModuleArgsConfig(doc, module, &defaultOptions.moduleArgs, &options->moduleArgs);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-23 10:14:22 +08:00
|
|
|
void ffGenerateVersionJsonResult(FF_MAYBE_UNUSED FFVersionOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module)
|
2023-09-12 20:36:00 +08:00
|
|
|
{
|
2024-07-02 10:12:26 +08:00
|
|
|
FFVersionResult* result = &ffVersionResult;
|
2023-09-12 20:36:00 +08:00
|
|
|
|
|
|
|
|
yyjson_mut_val* obj = yyjson_mut_obj_add_obj(doc, module, "result");
|
2024-07-02 10:12:26 +08:00
|
|
|
yyjson_mut_obj_add_str(doc, obj, "projectName", result->projectName);
|
|
|
|
|
yyjson_mut_obj_add_str(doc, obj, "sysName", result->sysName);
|
|
|
|
|
yyjson_mut_obj_add_str(doc, obj, "architecture", result->architecture);
|
|
|
|
|
yyjson_mut_obj_add_str(doc, obj, "version", result->version);
|
2024-08-09 09:52:53 +08:00
|
|
|
yyjson_mut_obj_add_str(doc, obj, "versionGit", result->versionGit);
|
2024-07-02 10:12:26 +08:00
|
|
|
yyjson_mut_obj_add_str(doc, obj, "cmakeBuiltType", result->cmakeBuiltType);
|
|
|
|
|
yyjson_mut_obj_add_str(doc, obj, "compileTime", result->compileTime);
|
|
|
|
|
yyjson_mut_obj_add_str(doc, obj, "compiler", result->compiler);
|
|
|
|
|
yyjson_mut_obj_add_bool(doc, obj, "debugMode", result->debugMode);
|
2023-10-05 19:06:15 +08:00
|
|
|
|
|
|
|
|
FFLibcResult libcResult;
|
|
|
|
|
if (ffDetectLibc(&libcResult))
|
|
|
|
|
{
|
|
|
|
|
yyjson_mut_obj_add_null(doc, obj, "libc");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
FF_STRBUF_AUTO_DESTROY buf = ffStrbufCreateS(libcResult.name);
|
|
|
|
|
if (libcResult.version)
|
|
|
|
|
{
|
|
|
|
|
ffStrbufAppendC(&buf, ' ');
|
|
|
|
|
ffStrbufAppendS(&buf, libcResult.version);
|
|
|
|
|
}
|
|
|
|
|
yyjson_mut_obj_add_strbuf(doc, obj, "libc", &buf);
|
|
|
|
|
}
|
2023-09-12 20:36:00 +08:00
|
|
|
}
|
2023-10-07 13:40:40 +08:00
|
|
|
|
2024-12-11 10:47:02 +08:00
|
|
|
static FFModuleBaseInfo ffModuleInfo = {
|
|
|
|
|
.name = FF_VERSION_MODULE_NAME,
|
|
|
|
|
.description = "Print Fastfetch version",
|
|
|
|
|
.parseCommandOptions = (void*) ffParseVersionCommandOptions,
|
|
|
|
|
.parseJsonObject = (void*) ffParseVersionJsonObject,
|
|
|
|
|
.printModule = (void*) ffPrintVersion,
|
|
|
|
|
.generateJsonResult = (void*) ffGenerateVersionJsonResult,
|
|
|
|
|
.generateJsonConfig = (void*) ffGenerateVersionJsonConfig,
|
|
|
|
|
.formatArgs = FF_FORMAT_ARG_LIST(((FFModuleFormatArg[]) {
|
2025-07-25 22:09:35 +08:00
|
|
|
{"Project name", "project-name"},
|
2024-12-11 10:47:02 +08:00
|
|
|
{"Version", "version"},
|
|
|
|
|
{"Version tweak", "version-tweak"},
|
|
|
|
|
{"Build type (debug or release)", "build-type"},
|
|
|
|
|
{"System name", "sysname"},
|
|
|
|
|
{"Architecture", "arch"},
|
|
|
|
|
{"CMake build type when compiling (Debug, Release, RelWithDebInfo, MinSizeRel)", "cmake-built-type"},
|
|
|
|
|
{"Date time when compiling", "compile-time"},
|
|
|
|
|
{"Compiler used when compiling", "compiler"},
|
|
|
|
|
{"Libc used when compiling", "libc"},
|
|
|
|
|
}))
|
|
|
|
|
};
|
2023-10-23 13:32:18 +08:00
|
|
|
|
|
|
|
|
void ffInitVersionOptions(FFVersionOptions* options)
|
|
|
|
|
{
|
2024-12-11 10:47:02 +08:00
|
|
|
options->moduleInfo = ffModuleInfo;
|
2024-07-23 23:02:35 +08:00
|
|
|
ffOptionInitModuleArg(&options->moduleArgs, "");
|
2023-10-23 13:32:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ffDestroyVersionOptions(FFVersionOptions* options)
|
|
|
|
|
{
|
|
|
|
|
ffOptionDestroyModuleArg(&options->moduleArgs);
|
|
|
|
|
}
|