123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- /*
- * 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>
- /*---------------------------------------------------------
- * PRIVATE META FUNCTIONS
- *--------------------------------------------------------- */
- 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;
- /* fill out the opaque key */
- strcpy((char *)key, this->name);
- }
- /*---------------------------------------------------------
- * PRIVATE METHODS
- *--------------------------------------------------------- */
- static void clish_view_init(clish_view_t * this, const char *name, const char *prompt)
- {
- /* set up defaults */
- this->name = lub_string_dup(name);
- this->prompt = NULL;
- this->depth = 0;
- this->restore = CLISH_RESTORE_NONE;
- this->access = NULL;
- /* Be a good binary tree citizen */
- lub_bintree_node_init(&this->bt_node);
- /* 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);
- /* set up the defaults */
- clish_view__set_prompt(this, prompt);
- /* Initialize hotkey structures */
- this->hotkeys = clish_hotkeyv_new();
- }
- /*--------------------------------------------------------- */
- static void clish_view_fini(clish_view_t * this)
- {
- clish_command_t *cmd;
- lub_list_node_t *iter;
- clish_nspace_t *nspace;
- /* 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 */
- while ((iter = lub_list__get_head(this->nspaces))) {
- /* Remove the nspace from the list */
- lub_list_del(this->nspaces, iter);
- nspace = (clish_nspace_t *)lub_list_node__get_data(iter);
- lub_list_node_free(iter);
- /* Free the instance */
- clish_nspace_delete(nspace);
- }
- lub_list_free(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);
- }
- /*---------------------------------------------------------
- * PUBLIC META FUNCTIONS
- *--------------------------------------------------------- */
- 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;
- }
- /*---------------------------------------------------------
- * PUBLIC METHODS
- *--------------------------------------------------------- */
- 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)
- {
- /* allocate the memory for a new parameter definition */
- clish_command_t *cmd = clish_command_new(name, help);
- assert(cmd);
- /* if this is a command other than the startup command... */
- if (NULL != help) {
- /* ...insert it into the binary tree for this view */
- if (-1 == lub_bintree_insert(&this->tree, cmd)) {
- /* inserting a duplicate command is bad */
- clish_command_delete(cmd);
- cmd = NULL;
- }
- }
- return cmd;
- }
- /*--------------------------------------------------------- */
- /* 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)
- {
- 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_viewname(result))) {
- /* if this doesn't do anything we've
- * not resolved a command
- */
- result = NULL;
- }
- }
- return result;
- }
- /*--------------------------------------------------------- */
- 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);
- }
- /*--------------------------------------------------------- */
- 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));
- }
- }
- /*---------------------------------------------------------
- * PUBLIC ATTRIBUTES
- *--------------------------------------------------------- */
- lub_bintree_t * clish_view__get_command_tree(clish_view_t *this)
- {
- return &this->tree;
- }
- /*--------------------------------------------------------- */
- lub_list_t * clish_view__get_nspace_tree(clish_view_t *this)
- {
- return this->nspaces;
- }
- /*--------------------------------------------------------- */
- 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;
- }
- /*--------------------------------------------------------- */
- 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_e restore)
- {
- this->restore = restore;
- }
- /*--------------------------------------------------------- */
- clish_view_restore_e clish_view__get_restore(const clish_view_t * this)
- {
- return this->restore;
- }
- /*--------------------------------------------------------- */
- 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);
- }
- /*--------------------------------------------------------- */
- void clish_view__set_access(clish_view_t *this, const char *access)
- {
- if (this->access)
- lub_string_free(this->access);
- this->access = lub_string_dup(access);
- }
- /*--------------------------------------------------------- */
- char *clish_view__get_access(const clish_view_t *this)
- {
- return this->access;
- }
- /*--------------------------------------------------------- */
|