123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- /*
- * view.c
- *
- * This file provides the implementation of a view class
- */
- #include "private.h"
- #include "lub/argv.h"
- #include "lub/string.h"
- #include "lub/ctype.h"
- #include "lub/list.h"
- #include <assert.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- /*-------------------------------------------------------- */
- int clish_view_compare(const void *first, const void *second)
- {
- const clish_view_t *f = (const clish_view_t *)first;
- const clish_view_t *s = (const clish_view_t *)second;
- return strcmp(f->name, s->name);
- }
- /*-------------------------------------------------------- */
- static void clish_view_init(clish_view_t * this, const char *name)
- {
- /* set up defaults */
- this->name = lub_string_dup(name);
- this->prompt = NULL;
- this->depth = 0;
- this->restore = CLISH_RESTORE_NONE;
- this->access = NULL;
- /* initialise the tree of commands for this view */
- lub_bintree_init(&this->tree,
- clish_command_bt_offset(),
- clish_command_bt_compare, clish_command_bt_getkey);
- /* Initialise the list of namespaces.
- * It's important to add new items to the
- * tail of list.
- */
- this->nspaces = lub_list_new(NULL, clish_nspace_delete);
- /* Initialize hotkey structures */
- this->hotkeys = clish_hotkeyv_new();
- }
- /*--------------------------------------------------------- */
- static void clish_view_fini(clish_view_t * this)
- {
- clish_command_t *cmd;
- /* delete each command held by this view */
- while ((cmd = lub_bintree_findfirst(&this->tree))) {
- /* remove the command from the tree */
- lub_bintree_remove(&this->tree, cmd);
- /* release the instance */
- clish_command_delete(cmd);
- }
- /* Free namespaces list */
- lub_list_free_all(this->nspaces);
- /* Free hotkey structures */
- clish_hotkeyv_delete(this->hotkeys);
- /* free our memory */
- lub_string_free(this->name);
- lub_string_free(this->prompt);
- lub_string_free(this->access);
- }
- /*--------------------------------------------------------- */
- clish_view_t *clish_view_new(const char *name)
- {
- clish_view_t *this = malloc(sizeof(clish_view_t));
- if (this)
- clish_view_init(this, name);
- return this;
- }
- /*-------------------------------------------------------- */
- void clish_view_delete(void *data)
- {
- clish_view_t *this = (clish_view_t *)data;
- clish_view_fini(this);
- free(this);
- }
- /*--------------------------------------------------------- */
- clish_command_t *clish_view_new_command(clish_view_t * this,
- const char *name, const char *help)
- {
- /* allocate the memory for a new parameter definition */
- clish_command_t *cmd = clish_command_new(name, help);
- assert(cmd);
- /* try to insert the command */
- if(!clish_view_insert_command(this, cmd)) {
- /* ignore duplicate */
- clish_command_delete(cmd);
- cmd = NULL;
- }
- /* return */
- return cmd;
- }
- /*--------------------------------------------------------- */
- bool_t clish_view_insert_command(clish_view_t * this,
- clish_command_t *cmd)
- {
- /* insert command into the binary tree for this view */
- if (-1 == lub_bintree_insert(&this->tree, cmd)) {
- /* duplicate, not inserted */
- return BOOL_FALSE;
- }
- /* set the pview correctly */
- clish_command__set_pview(cmd, this);
- /* Return */
- return BOOL_TRUE;
- }
- /*--------------------------------------------------------- */
- bool_t clish_view_remove_command(clish_view_t * this,
- clish_command_t *cmd)
- {
- void *found = lub_bintree_find(&this->tree, cmd);
- /* remove the command from the tree */
- lub_bintree_remove(&this->tree, cmd);
- /* return true if found */
- return found ? BOOL_TRUE : BOOL_FALSE;
- }
- /*--------------------------------------------------------- */
- /* This method identifies the command (if any) which provides
- * the longest match with the specified line of text.
- *
- * NB this comparison is case insensitive.
- *
- * this - the view instance upon which to operate
- * line - the command line to analyse
- */
- 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;
- /* create a vector of arguments */
- argv = lub_argv_new(line, 0);
- for (i = 0; i < lub_argv__get_count(argv); i++) {
- /* set our buffer to be that of the first "i" arguments */
- lub_string_cat(&buffer, lub_argv__get_arg(argv, i));
- /* set the result to the longest match */
- cmd = clish_view_find_command(this, buffer, inherit);
- /* job done */
- if (!cmd)
- break;
- result = cmd;
- /* ready for the next word */
- lub_string_cat(&buffer, " ");
- }
- /* free up our dynamic storage */
- 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)
- {
- return clish_view_resolve_prefix(this, line, inherit);
- }
- /*--------------------------------------------------------- */
- clish_command_t *clish_view_find_command(clish_view_t * this,
- const char *name, bool_t inherit)
- {
- clish_command_t *result = NULL;
- /* Search the current view */
- result = lub_bintree_find(&this->tree, name);
- if (inherit) {
- lub_list_node_t *iter;
- clish_command_t *cmd;
- clish_nspace_t *nspace;
- /* Iterate elements. It's important to iterate
- * items starting from tail bacause the next
- * NAMESPACE has higher priority than previous one
- * in a case then the both NAMESPACEs have the
- * commands with the same name.
- */
- for(iter = lub_list__get_tail(this->nspaces);
- iter; iter = lub_list_node__get_prev(iter)) {
- nspace = (clish_nspace_t *)lub_list_node__get_data(iter);
- cmd = clish_nspace_find_command(nspace, name);
- /* Choose the longest match */
- 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;
- /* build an argument vector for the line */
- largv = lub_argv_new(line, 0);
- words = lub_argv__get_count(largv);
- /* account for trailing space */
- if (!*line || lub_ctype_isspace(line[strlen(line) - 1]))
- words++;
- if (iter_cmd)
- name = iter_cmd;
- while ((cmd = lub_bintree_findnext(&this->tree, name))) {
- name = clish_command__get_name(cmd);
- if (words == lub_string_wordcount(name)) {
- /* only bother with commands of which this line is a prefix */
- /* this is a completion */
- if (lub_string_nocasestr(name, line) == name)
- break;
- }
- }
- /* clean up the dynamic memory */
- 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_e field, bool_t inherit)
- {
- const clish_command_t *result, *cmd;
- clish_nspace_t *nspace;
- lub_list_node_t *iter;
- /* ask local view for next command */
- result = find_next_completion(this, iter_cmd, line);
- if (!inherit)
- return result;
- /* ask the imported namespaces for next command */
- /* Iterate elements */
- for(iter = lub_list__get_tail(this->nspaces);
- iter; iter = lub_list_node__get_prev(iter)) {
- nspace = (clish_nspace_t *)lub_list_node__get_data(iter);
- 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)
- {
- lub_list_add(this->nspaces, nspace);
- clish_nspace__set_pview(nspace, this);
- }
- /*--------------------------------------------------------- */
- void clish_view_clean_proxy(clish_view_t * this)
- {
- lub_list_node_t *iter;
- /* Iterate elements */
- for(iter = lub_list__get_head(this->nspaces);
- iter; iter = lub_list_node__get_next(iter)) {
- clish_nspace_clean_proxy((clish_nspace_t *)lub_list_node__get_data(iter));
- }
- }
- /*--------------------------------------------------------- */
- int clish_view_insert_hotkey(const clish_view_t *this, const char *key, const char *cmd)
- {
- return clish_hotkeyv_insert(this->hotkeys, key, cmd);
- }
- /*--------------------------------------------------------- */
- const char *clish_view_find_hotkey(const clish_view_t *this, int code)
- {
- return clish_hotkeyv_cmd_by_code(this->hotkeys, code);
- }
- CLISH_GET(view, lub_list_t *, nspaces);
- CLISH_GET_STR(view, name);
- CLISH_SET_STR_ONCE(view, prompt);
- CLISH_GET_STR(view, prompt);
- CLISH_SET_STR(view, access);
- CLISH_GET_STR(view, access);
- CLISH_SET(view, unsigned int, depth);
- CLISH_GET(view, unsigned int, depth);
- CLISH_SET(view, clish_view_restore_e, restore);
- CLISH_GET(view, clish_view_restore_e, restore);
- /*-------------------------------------------------------- */
- lub_bintree_t * clish_view__get_tree(clish_view_t *inst)
- {
- assert(inst);
- return &inst->tree;
- }
- /*--------------------------------------------------------- */
- static const char *restore_names[] = {
- "none",
- "depth",
- "view",
- };
- /*--------------------------------------------------------- */
- const char *clish_view_restore__get_name(clish_view_restore_e restore)
- {
- if (restore >= CLISH_RESTORE_MAX)
- return NULL;
- return restore_names[restore];
- }
- /*--------------------------------------------------------- */
- clish_view_restore_e clish_view_restore_resolve(const char *name)
- {
- clish_view_restore_e result = CLISH_RESTORE_NONE;
- unsigned int i = 0;
- if (!name)
- return CLISH_RESTORE_NONE;
- for (i = 0; i < CLISH_RESTORE_MAX; i++) {
- if (0 == strcmp(name, restore_names[i])) {
- result = (clish_view_restore_e)i;
- break;
- }
- }
- return result;
- }
|