| 11820 | } |
| 11821 | |
| 11822 | char *cbm_cli_build_args_json(const char *tool_name, int argc, char **argv, char **err_out) { |
| 11823 | if (err_out) { |
| 11824 | *err_out = NULL; |
| 11825 | } |
| 11826 | |
| 11827 | /* The tool's input_schema (may be NULL for an unknown tool — then every |
| 11828 | * value is treated as a string). Static lifetime; do not free. */ |
| 11829 | const char *schema_str = cbm_mcp_tool_input_schema(tool_name); |
| 11830 | yyjson_doc *schema_doc = NULL; |
| 11831 | yyjson_val *props = NULL; |
| 11832 | if (schema_str) { |
| 11833 | schema_doc = yyjson_read(schema_str, strlen(schema_str), 0); |
| 11834 | if (schema_doc) { |
| 11835 | props = yyjson_obj_get(yyjson_doc_get_root(schema_doc), "properties"); |
| 11836 | } |
| 11837 | } |
| 11838 | |
| 11839 | yyjson_mut_doc *out = yyjson_mut_doc_new(NULL); |
| 11840 | if (!out) { |
| 11841 | if (schema_doc) { |
| 11842 | yyjson_doc_free(schema_doc); |
| 11843 | } |
| 11844 | return NULL; |
| 11845 | } |
| 11846 | yyjson_mut_val *obj = yyjson_mut_obj(out); |
| 11847 | yyjson_mut_doc_set_root(out, obj); |
| 11848 | |
| 11849 | bool ok = true; |
| 11850 | for (int i = 0; i < argc && ok; i++) { |
| 11851 | const char *arg = argv[i]; |
| 11852 | if (strcmp(arg, "--") == 0) { |
| 11853 | break; /* end of flag parsing */ |
| 11854 | } |
| 11855 | if (strncmp(arg, "--", CLI_PAIR_LEN) != 0) { |
| 11856 | if (err_out) { |
| 11857 | *err_out = cli_heap_msgf("unexpected argument '%s' (expected --flag value)", arg); |
| 11858 | } |
| 11859 | ok = false; |
| 11860 | break; |
| 11861 | } |
| 11862 | |
| 11863 | const char *body = arg + CLI_PAIR_LEN; /* skip leading "--" */ |
| 11864 | const char *eq = strchr(body, '='); |
| 11865 | char key[CLI_BUF_256]; |
| 11866 | const char *value = NULL; |
| 11867 | bool have_value = false; |
| 11868 | |
| 11869 | if (eq) { |
| 11870 | /* --key=value : split on the FIRST '='; value may contain '='/spaces. */ |
| 11871 | size_t klen = (size_t)(eq - body); |
| 11872 | if (klen >= sizeof(key)) { |
| 11873 | klen = sizeof(key) - CLI_SKIP_ONE; |
| 11874 | } |
| 11875 | memcpy(key, body, klen); |
| 11876 | key[klen] = '\0'; |
| 11877 | value = eq + CLI_SKIP_ONE; |
| 11878 | have_value = true; |
| 11879 | } else { |
no test coverage detected