Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file completion.c |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief libyang's yanglint tool auto completion |
| 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | #define _GNU_SOURCE |
Radek Krejci | f8dc59a | 2020-11-25 13:47:44 +0100 | [diff] [blame] | 16 | #define _POSIX_C_SOURCE 200809L /* strdup */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 17 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 18 | #include <errno.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
| 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 22 | #include <string.h> |
| 23 | |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 24 | #include "libyang.h" |
| 25 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 26 | #include "cmd.h" |
| 27 | #include "common.h" |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 28 | #include "compat.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 29 | #include "linenoise/linenoise.h" |
| 30 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 31 | /* from the main.c */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 32 | extern struct ly_ctx *ctx; |
| 33 | |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 34 | /** |
| 35 | * @brief Add a match to the completions array. |
| 36 | * |
| 37 | * @param[in] match Match to be added. |
| 38 | * @param[in,out] matches Matches provided to the user as a completion hint. |
| 39 | * @param[in,out] match_count Number of matches. |
| 40 | */ |
| 41 | static void |
| 42 | cmd_completion_add_match(const char *match, char ***matches, unsigned int *match_count) |
| 43 | { |
| 44 | void *p; |
| 45 | |
| 46 | ++(*match_count); |
| 47 | p = realloc(*matches, *match_count * sizeof **matches); |
| 48 | if (!p) { |
| 49 | YLMSG_E("Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 50 | return; |
| 51 | } |
| 52 | *matches = p; |
| 53 | (*matches)[*match_count - 1] = strdup(match); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * @brief Provides completion for command names. |
| 58 | * |
| 59 | * @param[in] hint User input. |
| 60 | * @param[out] matches Matches provided to the user as a completion hint. |
| 61 | * @param[out] match_count Number of matches. |
| 62 | */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 63 | static void |
| 64 | get_cmd_completion(const char *hint, char ***matches, unsigned int *match_count) |
| 65 | { |
| 66 | int i; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 67 | |
| 68 | *match_count = 0; |
| 69 | *matches = NULL; |
| 70 | |
| 71 | for (i = 0; commands[i].name; i++) { |
| 72 | if (!strncmp(hint, commands[i].name, strlen(hint))) { |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 73 | cmd_completion_add_match(commands[i].name, matches, match_count); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 78 | /** |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 79 | * @brief Provides completion for arguments. |
| 80 | * |
| 81 | * @param[in] hint User input. |
| 82 | * @param[in] args Array of all possible arguments. The last element must be NULL. |
| 83 | * @param[out] matches Matches provided to the user as a completion hint. |
| 84 | * @param[out] match_count Number of matches. |
| 85 | */ |
| 86 | static void |
| 87 | get_arg_completion(const char *hint, const char **args, char ***matches, unsigned int *match_count) |
| 88 | { |
| 89 | int i; |
| 90 | |
| 91 | *match_count = 0; |
| 92 | *matches = NULL; |
| 93 | |
| 94 | for (i = 0; args[i]; i++) { |
| 95 | if (!strncmp(hint, args[i], strlen(hint))) { |
| 96 | cmd_completion_add_match(args[i], matches, match_count); |
| 97 | } |
| 98 | } |
| 99 | if (*match_count == 0) { |
| 100 | for (i = 0; args[i]; i++) { |
| 101 | cmd_completion_add_match(args[i], matches, match_count); |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | /** |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 107 | * @brief Provides completion for module names. |
| 108 | * |
| 109 | * @param[in] hint User input. |
| 110 | * @param[out] matches Matches provided to the user as a completion hint. |
| 111 | * @param[out] match_count Number of matches. |
| 112 | */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 113 | static void |
| 114 | get_model_completion(const char *hint, char ***matches, unsigned int *match_count) |
| 115 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 116 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 117 | uint32_t idx = 0; |
| 118 | const struct lys_module *module; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 119 | |
| 120 | *match_count = 0; |
| 121 | *matches = NULL; |
| 122 | |
| 123 | while ((module = ly_ctx_get_module_iter(ctx, &idx))) { |
| 124 | if (!strncmp(hint, module->name, strlen(hint))) { |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 125 | cmd_completion_add_match(module->name, matches, match_count); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | LY_ARRAY_FOR(module->parsed->includes, u) { |
| 129 | if (!strncmp(hint, module->parsed->includes[u].submodule->name, strlen(hint))) { |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 130 | cmd_completion_add_match(module->parsed->includes[u].submodule->name, matches, match_count); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 131 | } |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 136 | /** |
| 137 | * @brief Add all child nodes of a single node to the completion hint. |
| 138 | * |
| 139 | * @param[in] last_node Node of which children will be added to the hint. |
| 140 | * @param matches[out] Matches provided to the user as a completion hint. |
| 141 | * @param match_count[out] Number of matches. |
| 142 | */ |
| 143 | static void |
| 144 | single_hint_add_children(const struct lysc_node *last_node, char ***matches, unsigned int *match_count) |
| 145 | { |
| 146 | const struct lysc_node *node = NULL; |
| 147 | char *match; |
| 148 | |
| 149 | if (!last_node) { |
| 150 | return; |
| 151 | } |
| 152 | |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 153 | while ((node = lys_getnext(node, last_node, NULL, LYS_GETNEXT_WITHCASE | LYS_GETNEXT_WITHCHOICE))) { |
| 154 | match = lysc_path(node, LYSC_PATH_LOG, NULL, 0); |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 155 | cmd_completion_add_match(match, matches, match_count); |
| 156 | free(match); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * @brief Add module and/or node's children names to the hint. |
| 162 | * |
| 163 | * @param[in] module Compiled schema module. |
| 164 | * @param[in] parent Parent node of which children are potential matches. |
| 165 | * @param[in] hint_node_name Node name contained within the hint specified by user. |
| 166 | * @param[in,out] matches Matches provided to the user as a completion hint. |
| 167 | * @param[in,out] match_count Number of matches. |
| 168 | * @param[out] last_node Last processed node. |
| 169 | */ |
| 170 | static void |
| 171 | add_all_children_nodes(const struct lysc_module *module, const struct lysc_node *parent, |
| 172 | const char *hint_node_name, char ***matches, unsigned int *match_count, const struct lysc_node **last_node) |
| 173 | { |
| 174 | const struct lysc_node *node; |
| 175 | char *match, *node_name = NULL; |
| 176 | |
| 177 | *last_node = NULL; |
| 178 | |
| 179 | if (!parent && !module) { |
| 180 | return; |
| 181 | } |
| 182 | |
| 183 | node = NULL; |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 184 | while ((node = lys_getnext(node, parent, module, LYS_GETNEXT_WITHCASE | LYS_GETNEXT_WITHCHOICE))) { |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 185 | if (parent && (node->module != parent->module)) { |
| 186 | /* augmented node */ |
| 187 | if (asprintf(&node_name, "%s:%s", node->module->name, node->name) == -1) { |
| 188 | YLMSG_E("Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 189 | break; |
| 190 | } |
| 191 | } else { |
| 192 | node_name = strdup(node->name); |
| 193 | if (!node_name) { |
| 194 | YLMSG_E("Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 195 | break; |
| 196 | } |
| 197 | } |
| 198 | if (!hint_node_name || !strncmp(hint_node_name, node_name, strlen(hint_node_name))) { |
| 199 | /* adding just module names + their top level node(s) to the hint */ |
| 200 | *last_node = node; |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 201 | match = lysc_path(node, LYSC_PATH_LOG, NULL, 0); |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 202 | cmd_completion_add_match(match, matches, match_count); |
| 203 | free(match); |
| 204 | } |
| 205 | free(node_name); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * @brief Provides completion for schemas. |
| 211 | * |
| 212 | * @param[in] hint User input. |
| 213 | * @param[out] matches Matches provided to the user as a completion hint. |
| 214 | * @param[out] match_count Number of matches. |
| 215 | */ |
| 216 | static void |
| 217 | get_schema_completion(const char *hint, char ***matches, unsigned int *match_count) |
| 218 | { |
| 219 | const struct lys_module *module; |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 220 | uint32_t idx; |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 221 | const char *start; |
| 222 | char *end, *module_name = NULL, *path = NULL; |
| 223 | const struct lysc_node *parent, *last_node; |
| 224 | int rc = 0; |
| 225 | size_t len; |
| 226 | |
| 227 | *match_count = 0; |
| 228 | *matches = NULL; |
| 229 | |
| 230 | if (strlen(hint)) { |
| 231 | if (hint[0] != '/') { |
| 232 | return; |
| 233 | } |
| 234 | start = hint + 1; |
| 235 | } else { |
| 236 | start = hint; |
| 237 | } |
| 238 | |
| 239 | end = strchr(start, ':'); |
| 240 | if (!end) { |
| 241 | /* no module name */ |
| 242 | len = strlen(start); |
| 243 | |
| 244 | /* go through all the modules */ |
| 245 | idx = 0; |
| 246 | while ((module = ly_ctx_get_module_iter(ctx, &idx))) { |
| 247 | if (!module->implemented) { |
| 248 | continue; |
| 249 | } |
| 250 | |
| 251 | if (!len || !strncmp(start, module->name, len)) { |
| 252 | /* add all their (matching) top level nodes */ |
| 253 | add_all_children_nodes(module->compiled, NULL, NULL, matches, match_count, &last_node); |
| 254 | } |
| 255 | } |
| 256 | } else { |
| 257 | /* module name known */ |
| 258 | module_name = strndup(start, end - start); |
| 259 | if (!module_name) { |
| 260 | YLMSG_E("Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 261 | rc = 1; |
| 262 | goto cleanup; |
| 263 | } |
| 264 | |
| 265 | module = ly_ctx_get_module_implemented(ctx, module_name); |
| 266 | if (!module) { |
| 267 | goto cleanup; |
| 268 | } |
| 269 | |
| 270 | /* find the last '/', if it is at the beginning of the hint, only path up to the top level node is known, |
| 271 | * else the name of the last node starts after the found '/' */ |
| 272 | start = strrchr(hint, '/'); |
| 273 | if (!start) { |
| 274 | goto cleanup; |
| 275 | } |
| 276 | |
| 277 | if (start == hint) { |
| 278 | /* only the (incomplete) top level node path, add all (matching) top level nodes */ |
| 279 | add_all_children_nodes(module->compiled, NULL, end + 1, matches, match_count, &last_node); |
| 280 | goto cleanup; |
| 281 | } |
| 282 | |
| 283 | /* get rid of stuff after the last '/' to obtain the parent node */ |
| 284 | path = strndup(hint, start - hint); |
| 285 | if (!path) { |
| 286 | YLMSG_E("Memory allocation failed (%s:%d, %s)", __FILE__, __LINE__, strerror(errno)); |
| 287 | rc = 1; |
| 288 | goto cleanup; |
| 289 | } |
| 290 | |
roman | f00089c | 2022-10-06 16:01:31 +0200 | [diff] [blame] | 291 | /* get the last parent in the hint (it may not exist) */ |
| 292 | parent = find_schema_path(ctx, path); |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 293 | |
| 294 | /* add all (matching) child nodes of the parent */ |
| 295 | add_all_children_nodes(NULL, parent, start + 1, matches, match_count, &last_node); |
| 296 | } |
| 297 | |
| 298 | cleanup: |
| 299 | if (!rc && (*match_count == 1)) { |
| 300 | /* to avoid a single hint (space at the end), add all children as hints */ |
| 301 | single_hint_add_children(last_node, matches, match_count); |
| 302 | } |
| 303 | free(path); |
| 304 | free(module_name); |
| 305 | } |
| 306 | |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 307 | /** |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 308 | * @brief Get all possible argument hints for option. |
| 309 | * |
| 310 | * @param[in] hint User input. |
| 311 | * @param[out] matches Matches provided to the user as a completion hint. |
| 312 | * @param[out] match_count Number of matches. |
| 313 | */ |
| 314 | static void |
| 315 | get_print_format_arg(const char *hint, char ***matches, unsigned int *match_count) |
| 316 | { |
| 317 | const char *args[] = {"yang", "yin", "tree", "info", NULL}; |
| 318 | |
| 319 | get_arg_completion(hint, args, matches, match_count); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * @copydoc get_print_format_arg |
| 324 | */ |
| 325 | static void |
| 326 | get_data_type_arg(const char *hint, char ***matches, unsigned int *match_count) |
| 327 | { |
| 328 | const char *args[] = {"data", "config", "get", "getconfig", "edit", "rpc", "reply", "notif", NULL}; |
| 329 | |
| 330 | get_arg_completion(hint, args, matches, match_count); |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * @copydoc get_print_format_arg |
| 335 | */ |
| 336 | static void |
| 337 | get_data_in_format_arg(const char *hint, char ***matches, unsigned int *match_count) |
| 338 | { |
| 339 | const char *args[] = {"xml", "json", "lyb", NULL}; |
| 340 | |
| 341 | get_arg_completion(hint, args, matches, match_count); |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * @copydoc get_print_format_arg |
| 346 | */ |
| 347 | static void |
| 348 | get_data_default_arg(const char *hint, char ***matches, unsigned int *match_count) |
| 349 | { |
| 350 | const char *args[] = {"all", "all-tagged", "trim", "implicit-tagged", NULL}; |
| 351 | |
| 352 | get_arg_completion(hint, args, matches, match_count); |
| 353 | } |
| 354 | |
| 355 | /** |
| 356 | * @copydoc get_print_format_arg |
| 357 | */ |
| 358 | static void |
| 359 | get_list_format_arg(const char *hint, char ***matches, unsigned int *match_count) |
| 360 | { |
| 361 | const char *args[] = {"xml", "json", NULL}; |
| 362 | |
| 363 | get_arg_completion(hint, args, matches, match_count); |
| 364 | } |
| 365 | |
| 366 | /** |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 367 | * @brief Get the string before the hint, which autocompletion is for. |
| 368 | * |
| 369 | * @param[in] buf Complete user input. |
| 370 | * @param[in] hint Hint part of the user input. |
| 371 | * @return Pointer to the last string. |
| 372 | */ |
| 373 | static const char * |
| 374 | get_last_str(const char *buf, const char *hint) |
| 375 | { |
| 376 | const char *ptr; |
| 377 | |
| 378 | if (buf == hint) { |
| 379 | return buf; |
| 380 | } |
| 381 | |
| 382 | ptr = hint - 1; |
| 383 | while (ptr[0] == ' ') { |
| 384 | --ptr; |
| 385 | if (buf == ptr) { |
| 386 | return buf; |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | while (ptr[-1] != ' ') { |
| 391 | --ptr; |
| 392 | if (buf == ptr) { |
| 393 | return buf; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | return ptr; |
| 398 | } |
| 399 | |
roman | c1607ce | 2022-09-12 10:12:39 +0200 | [diff] [blame] | 400 | /* callback */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 401 | void |
| 402 | complete_cmd(const char *buf, const char *hint, linenoiseCompletions *lc) |
| 403 | { |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 404 | struct autocomplete { |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 405 | enum COMMAND_INDEX ci; /**< command index to global variable 'commands' */ |
| 406 | const char *opt; /**< optional option */ |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 407 | void (*ln_cb)(const char *, const char *, linenoiseCompletions *); /**< linenoise callback to call */ |
| 408 | void (*yl_cb)(const char *, char ***, unsigned int *); /**< yanglint callback to call */ |
| 409 | } ac[] = { |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 410 | {CMD_ADD, NULL, linenoisePathCompletion, NULL}, |
| 411 | {CMD_PRINT, "-f", NULL, get_print_format_arg}, |
| 412 | {CMD_PRINT, "-P", NULL, get_schema_completion}, |
| 413 | {CMD_PRINT, "-o", linenoisePathCompletion, NULL}, |
| 414 | {CMD_PRINT, NULL, NULL, get_model_completion}, |
| 415 | {CMD_SEARCHPATH, NULL, linenoisePathCompletion, NULL}, |
aPiecek | 647f62e | 2023-05-18 10:55:58 +0200 | [diff] [blame] | 416 | {CMD_EXTDATA, NULL, linenoisePathCompletion, NULL}, |
aPiecek | 21c1bc8 | 2023-05-18 15:38:31 +0200 | [diff] [blame^] | 417 | {CMD_CLEAR, "-Y", linenoisePathCompletion, NULL}, |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 418 | {CMD_DATA, "-t", NULL, get_data_type_arg}, |
| 419 | {CMD_DATA, "-O", linenoisePathCompletion, NULL}, |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 420 | {CMD_DATA, "-R", linenoisePathCompletion, NULL}, |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 421 | {CMD_DATA, "-f", NULL, get_data_in_format_arg}, |
| 422 | {CMD_DATA, "-F", NULL, get_data_in_format_arg}, |
| 423 | {CMD_DATA, "-d", NULL, get_data_default_arg}, |
| 424 | {CMD_DATA, "-o", linenoisePathCompletion, NULL}, |
| 425 | {CMD_DATA, NULL, linenoisePathCompletion, NULL}, |
| 426 | {CMD_LIST, NULL, NULL, get_list_format_arg}, |
| 427 | {CMD_FEATURE, NULL, NULL, get_model_completion}, |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 428 | }; |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 429 | size_t name_len; |
| 430 | const char *last, *name, *getoptstr; |
| 431 | char opt[3] = {'\0', ':', '\0'}; |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 432 | char **matches = NULL; |
| 433 | unsigned int match_count = 0, i; |
| 434 | |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 435 | if (buf == hint) { |
| 436 | /* command autocomplete */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 437 | get_cmd_completion(hint, &matches, &match_count); |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 438 | |
| 439 | } else { |
| 440 | for (i = 0; i < (sizeof ac / sizeof *ac); ++i) { |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 441 | /* Find the right command. */ |
| 442 | name = commands[ac[i].ci].name; |
| 443 | name_len = strlen(name); |
| 444 | if (strncmp(buf, name, name_len) || (buf[name_len] != ' ')) { |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 445 | /* not this command */ |
| 446 | continue; |
| 447 | } |
| 448 | |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 449 | /* Select based on the right option. */ |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 450 | last = get_last_str(buf, hint); |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 451 | opt[0] = (last[0] == '-') && last[1] ? last[1] : '\0'; |
| 452 | getoptstr = commands[ac[i].ci].optstring; |
| 453 | if (!ac[i].opt && opt[0] && strstr(getoptstr, opt)) { |
| 454 | /* completion for the argument must be defined */ |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 455 | continue; |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 456 | } else if (ac[i].opt && opt[0] && strncmp(ac[i].opt, last, strlen(ac[i].opt))) { |
| 457 | /* completion for (another) option */ |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 458 | continue; |
aPiecek | 15cc4cf | 2023-04-17 15:23:21 +0200 | [diff] [blame] | 459 | } else if (ac[i].opt && !opt[0]) { |
| 460 | /* completion is defined for option */ |
| 461 | continue; |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | /* callback */ |
| 465 | if (ac[i].ln_cb) { |
| 466 | ac[i].ln_cb(buf, hint, lc); |
| 467 | } else { |
| 468 | ac[i].yl_cb(hint, &matches, &match_count); |
| 469 | } |
| 470 | break; |
| 471 | } |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 472 | } |
| 473 | |
Michal Vasko | a1c986f | 2022-09-14 12:01:48 +0200 | [diff] [blame] | 474 | /* transform matches into autocompletion, if needed */ |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 475 | for (i = 0; i < match_count; ++i) { |
| 476 | linenoiseAddCompletion(lc, matches[i]); |
| 477 | free(matches[i]); |
| 478 | } |
| 479 | free(matches); |
| 480 | } |