123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- #include "private.h"
- #include "lub/argv.h"
- #include "lub/string.h"
- #include "lub/ctype.h"
- #include <assert.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- int clish_view_bt_compare(const void *clientnode, const void *clientkey)
- {
- const clish_view_t *this = clientnode;
- const char *key = clientkey;
- return strcmp(this->name, key);
- }
- void clish_view_bt_getkey(const void *clientnode, lub_bintree_key_t * key)
- {
- const clish_view_t *this = clientnode;
-
- strcpy((char *)key, this->name);
- }
- static void clish_view_init(clish_view_t * this, const char *name, const char *prompt)
- {
-
- this->name = lub_string_dup(name);
- this->prompt = NULL;
- this->nspacec = 0;
- this->nspacev = NULL;
- this->depth = 0;
- this->restore = CLISH_RESTORE_NONE;
-
- lub_bintree_node_init(&this->bt_node);
-
- lub_bintree_init(&this->tree,
- clish_command_bt_offset(),
- clish_command_bt_compare, clish_command_bt_getkey);
-
- clish_view__set_prompt(this, prompt);
- }
- static void clish_view_fini(clish_view_t * this)
- {
- clish_command_t *cmd;
- unsigned i;
-
- while ((cmd = lub_bintree_findfirst(&this->tree))) {
-
- lub_bintree_remove(&this->tree, cmd);
-
- clish_command_delete(cmd);
- }
-
- lub_string_free(this->name);
- this->name = NULL;
- lub_string_free(this->prompt);
- this->prompt = NULL;
-
- for (i = 0; i < this->nspacec; i++) {
- clish_nspace_delete(this->nspacev[i]);
- }
-
- free(this->nspacev);
- this->nspacec = 0;
- this->nspacev = NULL;
- }
- size_t clish_view_bt_offset(void)
- {
- return offsetof(clish_view_t, bt_node);
- }
- clish_view_t *clish_view_new(const char *name, const char *prompt)
- {
- clish_view_t *this = malloc(sizeof(clish_view_t));
- if (this)
- clish_view_init(this, name, prompt);
- return this;
- }
- void clish_view_delete(clish_view_t * this)
- {
- clish_view_fini(this);
- free(this);
- }
- clish_command_t *clish_view_new_command(clish_view_t * this,
- const char *name, const char *help)
- {
-
- clish_command_t *cmd = clish_command_new(name, help);
- assert(cmd);
-
- if (NULL != help) {
-
- if (-1 == lub_bintree_insert(&this->tree, cmd)) {
-
- clish_command_delete(cmd);
- cmd = NULL;
- }
- }
- return cmd;
- }
- clish_command_t *clish_view_resolve_prefix(clish_view_t * this,
- const char *line, bool_t inherit)
- {
- clish_command_t *result = NULL, *cmd;
- char *buffer = NULL;
- lub_argv_t *argv;
- unsigned i;
-
- argv = lub_argv_new(line, 0);
- for (i = 0; i < lub_argv__get_count(argv); i++) {
-
- lub_string_cat(&buffer, lub_argv__get_arg(argv, i));
-
- cmd = clish_view_find_command(this, buffer, inherit);
-
- if (!cmd)
- break;
- result = cmd;
-
- lub_string_cat(&buffer, " ");
- }
-
- lub_string_free(buffer);
- lub_argv_delete(argv);
- return result;
- }
- clish_command_t *clish_view_resolve_command(clish_view_t *this,
- const char *line, bool_t inherit)
- {
- clish_command_t *result = clish_view_resolve_prefix(this, line, inherit);
- if (result) {
- clish_action_t *action = clish_command__get_action(result);
- clish_config_t *config = clish_command__get_config(result);
- if (!clish_action__get_script(action) &&
- (!clish_action__get_builtin(action)) &&
- (CLISH_CONFIG_NONE == clish_config__get_op(config)) &&
- (!clish_command__get_param_count(result)) &&
- (!clish_command__get_view(result))) {
-
- result = NULL;
- }
- }
- return result;
- }
- clish_command_t *clish_view_find_command(clish_view_t * this,
- const char *name, bool_t inherit)
- {
- clish_command_t *cmd, *result = NULL;
- clish_nspace_t *nspace;
- unsigned cnt = clish_view__get_nspace_count(this);
- int i;
-
- result = lub_bintree_find(&this->tree, name);
-
- result = clish_command_alias_to_link(result);
- if (inherit) {
- for (i = cnt - 1; i >= 0; i--) {
- nspace = clish_view__get_nspace(this, i);
- cmd = clish_nspace_find_command(nspace, name);
-
- result = clish_command_choose_longest(result, cmd);
- }
- }
- return result;
- }
- static const clish_command_t *find_next_completion(clish_view_t * this,
- const char *iter_cmd, const char *line)
- {
- clish_command_t *cmd;
- const char *name = "";
- lub_argv_t *largv;
- unsigned words;
-
- largv = lub_argv_new(line, 0);
- words = lub_argv__get_count(largv);
-
- if (!*line || lub_ctype_isspace(line[strlen(line) - 1]))
- words++;
- if (iter_cmd)
- name = iter_cmd;
- while ((cmd = lub_bintree_findnext(&this->tree, name))) {
-
- cmd = clish_command_alias_to_link(cmd);
- name = clish_command__get_name(cmd);
- if (words == lub_argv_wordcount(name)) {
-
-
- if (lub_string_nocasestr(name, line) == name)
- break;
- }
- }
-
- lub_argv_delete(largv);
- return cmd;
- }
- const clish_command_t *clish_view_find_next_completion(clish_view_t * this,
- const char *iter_cmd, const char *line,
- clish_nspace_visibility_t field, bool_t inherit)
- {
- const clish_command_t *result, *cmd;
- clish_nspace_t *nspace;
- unsigned cnt = clish_view__get_nspace_count(this);
- int i;
-
- result = find_next_completion(this, iter_cmd, line);
- if (!inherit)
- return result;
-
- for (i = cnt - 1; i >= 0; i--) {
- nspace = clish_view__get_nspace(this, i);
- if (!clish_nspace__get_visibility(nspace, field))
- continue;
- cmd = clish_nspace_find_next_completion(nspace,
- iter_cmd, line, field);
- if (clish_command_diff(result, cmd) > 0)
- result = cmd;
- }
- return result;
- }
- void clish_view_insert_nspace(clish_view_t * this, clish_nspace_t * nspace)
- {
- size_t new_size = ((this->nspacec + 1) * sizeof(clish_nspace_t *));
- clish_nspace_t **tmp;
-
- tmp = realloc(this->nspacev, new_size);
- assert(tmp);
- this->nspacev = tmp;
-
- this->nspacev[this->nspacec++] = nspace;
- }
- void clish_view_clean_proxy(clish_view_t * this)
- {
- int i;
-
- for (i = 0; i < this->nspacec; i++) {
- clish_nspace_clean_proxy(this->nspacev[i]);
- }
- }
- const char *clish_view__get_name(const clish_view_t * this)
- {
- return this->name;
- }
- void clish_view__set_prompt(clish_view_t * this, const char *prompt)
- {
- assert(!this->prompt);
- this->prompt = lub_string_dup(prompt);
- }
- char *clish_view__get_prompt(const clish_view_t *this)
- {
- return this->prompt;
- }
- clish_nspace_t *clish_view__get_nspace(const clish_view_t * this,
- unsigned index)
- {
- clish_nspace_t *result = NULL;
- if (index < this->nspacec) {
- result = this->nspacev[index];
- }
- return result;
- }
- unsigned int clish_view__get_nspace_count(const clish_view_t * this)
- {
- return this->nspacec;
- }
- void clish_view__set_depth(clish_view_t * this, unsigned depth)
- {
- this->depth = depth;
- }
- unsigned clish_view__get_depth(const clish_view_t * this)
- {
- return this->depth;
- }
- void clish_view__set_restore(clish_view_t * this,
- clish_view_restore_t restore)
- {
- this->restore = restore;
- }
- clish_view_restore_t clish_view__get_restore(const clish_view_t * this)
- {
- return this->restore;
- }
|