123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- /*
- * nspace.c
- *
- * This file provides the implementation of the "nspace" class
- */
- #include "private.h"
- #include "lub/string.h"
- #include <assert.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- /*---------------------------------------------------------
- * PRIVATE METHODS
- *--------------------------------------------------------- */
- static void clish_nspace_init(clish_nspace_t * this, clish_view_t * view)
- {
- this->view = view;
- /* set up defaults */
- this->prefix = NULL;
- this->help = BOOL_FALSE;
- this->completion = BOOL_TRUE;
- this->context_help = BOOL_FALSE;
- this->inherit = BOOL_TRUE;
- /* initialise the tree of commands links for this nspace */
- lub_bintree_init(&this->tree,
- clish_command_bt_offset(),
- clish_command_bt_compare, clish_command_bt_getkey);
- }
- /*--------------------------------------------------------- */
- static void clish_nspace_fini(clish_nspace_t * this)
- {
- clish_command_t *cmd;
- /* deallocate the memory for this instance */
- lub_string_free(this->prefix);
- this->prefix = NULL;
- /* delete each command link held by this nspace */
- 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);
- }
- }
- /*--------------------------------------------------------- */
- static clish_command_t *clish_nspace_find_create_command(clish_nspace_t * this,
- const char *prefix,
- const clish_command_t *
- ref)
- {
- clish_command_t *cmd;
- char *name = NULL;
- assert(prefix);
- lub_string_catn(&name, prefix, strlen(prefix));
- lub_string_catn(&name, " ", 1);
- lub_string_catn(&name, clish_command__get_name(ref),
- strlen(clish_command__get_name(ref)));
- /* The command is cached already */
- if (cmd = lub_bintree_find(&this->tree, name)) {
- free(name);
- return cmd;
- }
- cmd = clish_command_new_link(name, ref);
- free(name);
- assert(cmd);
- /* Insert command link into the tree */
- if (-1 == lub_bintree_insert(&this->tree, cmd)) {
- clish_command_delete(cmd);
- cmd = NULL;
- }
- return cmd;
- }
- /*---------------------------------------------------------
- * PUBLIC META FUNCTIONS
- *--------------------------------------------------------- */
- clish_nspace_t *clish_nspace_new(clish_view_t * view)
- {
- clish_nspace_t *this = malloc(sizeof(clish_nspace_t));
- if (this) {
- clish_nspace_init(this, view);
- }
- return this;
- }
- /*---------------------------------------------------------
- * PUBLIC METHODS
- *--------------------------------------------------------- */
- void clish_nspace_delete(clish_nspace_t * this)
- {
- clish_nspace_fini(this);
- free(this);
- }
- /*--------------------------------------------------------- */
- static const char *clish_nspace_after_prefix(const char *prefix,
- const char *line)
- {
- const char *in_line = NULL;
- if (!line)
- return NULL;
- /* If entered line contain nspace prefix */
- if (lub_string_nocasestr(line, prefix) != line)
- return NULL;
- /* If entered line contain only the prefix */
- if (!lub_string_nocasecmp(line, prefix))
- return NULL;
- /* If prefix is not followed by space */
- in_line = line + strlen(prefix);
- if (in_line[0] != ' ')
- return NULL;
- return (in_line + 1);
- }
- /*--------------------------------------------------------- */
- clish_command_t *clish_nspace_find_command(clish_nspace_t * this, const char *name)
- {
- clish_command_t *cmd = NULL, *cmd_link = NULL;
- clish_view_t *view = clish_nspace__get_view(this);
- const char *prefix = clish_nspace__get_prefix(this);
- const char *in_line;
- if (!prefix)
- return clish_view_find_command(view, name, this->inherit);
- if (!(in_line = clish_nspace_after_prefix(prefix, name)))
- return NULL;
- cmd = clish_view_find_command(view, in_line, this->inherit);
- if (!cmd)
- return NULL;
- return clish_nspace_find_create_command(this, prefix, cmd);
- }
- /*--------------------------------------------------------- */
- const clish_command_t *clish_nspace_find_next_completion(clish_nspace_t * this,
- const char *iter_cmd, const char *line, clish_nspace_visibility_t field)
- {
- const clish_command_t *cmd = NULL, *cmd_link = NULL;
- clish_view_t *view = clish_nspace__get_view(this);
- const char *prefix = clish_nspace__get_prefix(this);
- const char *in_iter = "";
- const char *in_line;
- if (!prefix)
- return clish_view_find_next_completion(view, iter_cmd, line, field, this->inherit);
- if (!(in_line = clish_nspace_after_prefix(prefix, line)))
- return NULL;
- if (iter_cmd &&
- (lub_string_nocasestr(iter_cmd, prefix) == iter_cmd) &&
- (lub_string_nocasecmp(iter_cmd, prefix)))
- in_iter = iter_cmd + strlen(prefix) + 1;
- cmd = clish_view_find_next_completion(view, in_iter, in_line, field, this->inherit);
- if (!cmd)
- return NULL;
- return clish_nspace_find_create_command(this, prefix, cmd);
- }
- /*---------------------------------------------------------
- * PUBLIC ATTRIBUTES
- *--------------------------------------------------------- */
- clish_view_t *clish_nspace__get_view(const clish_nspace_t * this)
- {
- return this->view;
- }
- /*--------------------------------------------------------- */
- void clish_nspace__set_prefix(clish_nspace_t * this, const char *prefix)
- {
- assert(NULL == this->prefix);
- this->prefix = lub_string_dup(prefix);
- }
- /*--------------------------------------------------------- */
- const char *clish_nspace__get_prefix(const clish_nspace_t * this)
- {
- return this->prefix;
- }
- /*--------------------------------------------------------- */
- void clish_nspace__set_help(clish_nspace_t * this, bool_t help)
- {
- this->help = help;
- }
- /*--------------------------------------------------------- */
- bool_t clish_nspace__get_help(const clish_nspace_t * this)
- {
- return this->help;
- }
- /*--------------------------------------------------------- */
- void clish_nspace__set_completion(clish_nspace_t * this, bool_t completion)
- {
- this->completion = completion;
- }
- /*--------------------------------------------------------- */
- bool_t clish_nspace__get_completion(const clish_nspace_t * this)
- {
- return this->completion;
- }
- /*--------------------------------------------------------- */
- void clish_nspace__set_context_help(clish_nspace_t * this, bool_t context_help)
- {
- this->context_help = context_help;
- }
- /*--------------------------------------------------------- */
- bool_t clish_nspace__get_context_help(const clish_nspace_t * this)
- {
- return this->context_help;
- }
- /*--------------------------------------------------------- */
- void clish_nspace__set_inherit(clish_nspace_t * this, bool_t inherit)
- {
- this->inherit = inherit;
- }
- /*--------------------------------------------------------- */
- bool_t clish_nspace__get_inherit(const clish_nspace_t * this)
- {
- return this->inherit;
- }
- /*--------------------------------------------------------- */
- bool_t
- clish_nspace__get_visibility(const clish_nspace_t * instance,
- clish_nspace_visibility_t field)
- {
- bool_t result = BOOL_FALSE;
- switch (field) {
- case CLISH_NSPACE_HELP:
- result = clish_nspace__get_help(instance);
- break;
- case CLISH_NSPACE_COMPLETION:
- result = clish_nspace__get_completion(instance);
- break;
- case CLISH_NSPACE_CHELP:
- result = clish_nspace__get_context_help(instance);
- break;
- }
- return result;
- }
- /*--------------------------------------------------------- */
|