MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / cbm_cmd_config

Function cbm_cmd_config

src/cli/cli.c:6693–6810  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6691}
6692
6693int cbm_cmd_config(int argc, char **argv) {
6694 /* NULL argv with a nonzero argc previously slipped past this guard (the
6695 * inner `argv &&` shielded only the help comparison) and dereferenced
6696 * argv[0] below -- caught by the clang-analyzer lane. */
6697 if (argc == 0 || !argv || strcmp(argv[0], "--help") == 0 || strcmp(argv[0], "-h") == 0) {
6698 printf("Usage: codebase-memory-mcp config <command> [args]\n\n");
6699 printf("Commands:\n");
6700 printf(" list Show all config values\n");
6701 printf(" get <key> Get a config value\n");
6702 printf(" set <key> <val> Set a config value\n");
6703 printf(" reset <key> Reset a key to default\n\n");
6704 printf("Config keys:\n");
6705 for (size_t i = 0; i < sizeof(CONFIG_KEYS) / sizeof(CONFIG_KEYS[0]); i++) {
6706 printf(" %-25s default=%-10s %s\n", CONFIG_KEYS[i].key, CONFIG_KEYS[i].default_value,
6707 CONFIG_KEYS[i].help);
6708 }
6709 return 0;
6710 }
6711
6712 const char *home = cbm_get_home_dir();
6713 if (!home) {
6714 (void)fprintf(stderr, "error: HOME not set (use USERPROFILE on Windows)\n");
6715 return CLI_TRUE;
6716 }
6717
6718 char cache_dir[CLI_BUF_1K];
6719 snprintf(cache_dir, sizeof(cache_dir), "%s", cbm_resolve_cache_dir());
6720
6721 cbm_config_t *cfg = cbm_config_open(cache_dir);
6722 if (!cfg) {
6723 (void)fprintf(stderr, "error: cannot open config database\n");
6724 return CLI_TRUE;
6725 }
6726
6727 int rc = 0;
6728 if (strcmp(argv[0], "list") == 0 || strcmp(argv[0], "ls") == 0) {
6729 printf("Configuration:\n");
6730 for (size_t i = 0; i < sizeof(CONFIG_KEYS) / sizeof(CONFIG_KEYS[0]); i++) {
6731 char ui_value[CLI_BUF_1K];
6732 const char *shown;
6733 if (config_key_is_ui(CONFIG_KEYS[i].key)) {
6734 config_ui_read(CONFIG_KEYS[i].key, ui_value, sizeof(ui_value));
6735 shown = ui_value;
6736 } else {
6737 shown = cbm_config_get(cfg, CONFIG_KEYS[i].key, CONFIG_KEYS[i].default_value);
6738 }
6739 printf(" %-25s = %-10s\n", CONFIG_KEYS[i].key, shown);
6740 }
6741 } else if (strcmp(argv[0], "get") == 0) {
6742 if (argc < MIN_ARGC_GET) {
6743 (void)fprintf(stderr, "Usage: config get <key>\n");
6744 rc = CLI_TRUE;
6745 } else {
6746 const config_key_def_t *def = config_key_lookup(argv[CLI_SKIP_ONE]);
6747 if (!def) {
6748 config_print_unknown_key(argv[CLI_SKIP_ONE]);
6749 rc = CLI_TRUE;
6750 } else {

Callers 2

handle_subcommandFunction · 0.85
cli_config_cmd_captureFunction · 0.85

Calls 12

cbm_get_home_dirFunction · 0.85
cbm_resolve_cache_dirFunction · 0.85
cbm_config_openFunction · 0.85
config_key_is_uiFunction · 0.85
config_ui_readFunction · 0.85
cbm_config_getFunction · 0.85
config_key_lookupFunction · 0.85
config_print_unknown_keyFunction · 0.85
config_ui_writeFunction · 0.85
cbm_config_setFunction · 0.85
cbm_config_deleteFunction · 0.85
cbm_config_closeFunction · 0.85

Tested by 1

cli_config_cmd_captureFunction · 0.68