123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666 |
- ////////////////////////////////////////
- // shell_tinyxml_read.cpp
- //
- // This file implements the means to read an XML encoded file and populate the
- // CLI tree based on the contents.
- ////////////////////////////////////////
- extern "C" {
- #include "private.h"
- #include "lub/string.h"
- #include "lub/ctype.h"
- }
- /*lint +libh(tinyxml/tinyxml.h) Add this to the library file list */
- #include "tinyxml/tinyxml.h"
- #include <string.h>
- #include <assert.h>
- typedef void (PROCESS_FN) (clish_shell_t * instance,
- TiXmlElement * element, void *parent);
- // Define a control block for handling the decode of an XML file
- typedef struct clish_xml_cb_s clish_xml_cb_t;
- struct clish_xml_cb_s {
- const char *element;
- PROCESS_FN *handler;
- };
- // forward declare the handler functions
- static PROCESS_FN
- process_clish_module,
- process_startup,
- process_view,
- process_command,
- process_param,
- process_action,
- process_ptype,
- process_overview, process_detail, process_namespace, process_config;
- static clish_xml_cb_t xml_elements[] = {
- {"CLISH_MODULE", process_clish_module},
- {"STARTUP", process_startup},
- {"VIEW", process_view},
- {"COMMAND", process_command},
- {"PARAM", process_param},
- {"ACTION", process_action},
- {"PTYPE", process_ptype},
- {"OVERVIEW", process_overview},
- {"DETAIL", process_detail},
- {"NAMESPACE", process_namespace},
- {"CONFIG", process_config},
- {NULL, NULL}
- };
- ///////////////////////////////////////
- // This function reads an element from the XML stream and processes it.
- ///////////////////////////////////////
- static void process_node(clish_shell_t * shell, TiXmlNode * node, void *parent)
- {
- switch (node->Type()) {
- case TiXmlNode::DOCUMENT:
- break;
- case TiXmlNode::ELEMENT:
- clish_xml_cb_t * cb;
- for (cb = &xml_elements[0]; cb->element; cb++) {
- if (0 == strcmp(node->Value(), cb->element)) {
- TiXmlElement *element = (TiXmlElement *) node;
- #ifdef DEBUG
- fprintf(stderr, "NODE:");
- element->Print(stderr, 0);
- fprintf(stderr, "\n***\n");
- #endif
- // process the elements at this level
- cb->handler(shell, element, parent);
- break;
- }
- }
- break;
- case TiXmlNode::COMMENT:
- case TiXmlNode::TEXT:
- case TiXmlNode::DECLARATION:
- case TiXmlNode::TYPECOUNT:
- case TiXmlNode::UNKNOWN:
- default:
- break;
- }
- }
- ///////////////////////////////////////
- static void
- process_children(clish_shell_t * shell,
- TiXmlElement * element, void *parent = NULL)
- {
- for (TiXmlNode * node = element->FirstChild();
- NULL != node; node = element->IterateChildren(node)) {
- // Now deal with all the contained elements
- process_node(shell, node, parent);
- }
- }
- ///////////////////////////////////////
- static void
- process_clish_module(clish_shell_t * shell, TiXmlElement * element, void *)
- {
- // create the global view
- if (NULL == shell->global) {
- shell->global =
- clish_shell_find_create_view(shell, "global", "");
- }
- process_children(shell, element, shell->global);
- }
- ///////////////////////////////////////
- static void process_view(clish_shell_t * shell, TiXmlElement * element, void *)
- {
- clish_view_t *view;
- const char *name = element->Attribute("name");
- const char *prompt = element->Attribute("prompt");
- const char *depth = element->Attribute("depth");
- const char *restore = element->Attribute("restore");
- // re-use a view if it already exists
- view = clish_shell_find_create_view(shell, name, prompt);
- if ((depth != NULL) && (*depth != '\0') && (lub_ctype_isdigit(*depth))) {
- unsigned res = atoi(depth);
- clish_view__set_depth(view, res);
- }
- if (restore) {
- if (!lub_string_nocasecmp(restore, "depth"))
- clish_view__set_restore(view, CLISH_RESTORE_DEPTH);
- else if (!lub_string_nocasecmp(restore, "view"))
- clish_view__set_restore(view, CLISH_RESTORE_VIEW);
- else
- clish_view__set_restore(view, CLISH_RESTORE_NONE);
- }
- process_children(shell, element, view);
- }
- ///////////////////////////////////////
- static void process_ptype(clish_shell_t * shell, TiXmlElement * element, void *)
- {
- clish_ptype_method_e method;
- clish_ptype_preprocess_e preprocess;
- clish_ptype_t *ptype;
- const char *name = element->Attribute("name");
- const char *help = element->Attribute("help");
- const char *pattern = element->Attribute("pattern");
- const char *method_name = element->Attribute("method");
- const char *preprocess_name = element->Attribute("preprocess");
- assert(name);
- assert(pattern);
- method = clish_ptype_method_resolve(method_name);
- preprocess = clish_ptype_preprocess_resolve(preprocess_name);
- ptype = clish_shell_find_create_ptype(shell,
- name,
- help,
- pattern, method, preprocess);
- assert(ptype);
- }
- ///////////////////////////////////////
- static void
- process_overview(clish_shell_t * shell, TiXmlElement * element, void *)
- {
- // read the following text element
- TiXmlNode *text = element->FirstChild();
- if (NULL != text) {
- assert(TiXmlNode::TEXT == text->Type());
- // set the overview text for this view
- assert(NULL == shell->overview);
- // store the overview
- shell->overview = lub_string_dup(text->Value());
- }
- }
- ////////////////////////////////////////
- static void
- process_command(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_view_t *v = (clish_view_t *) parent;
- clish_command_t *cmd = NULL;
- bool allowed = true;
- clish_command_t *old;
- char *alias_name = NULL;
- clish_view_t *alias_view = NULL;
- const char *access = element->Attribute("access");
- const char *name = element->Attribute("name");
- const char *help = element->Attribute("help");
- const char *view = element->Attribute("view");
- const char *viewid = element->Attribute("viewid");
- const char *escape_chars = element->Attribute("escape_chars");
- const char *args_name = element->Attribute("args");
- const char *args_help = element->Attribute("args_help");
- const char *lock = element->Attribute("lock");
- const char *ref = element->Attribute("ref");
- if (NULL != access) {
- allowed = false; // err on the side of caution
- if (shell->client_hooks->access_fn) {
- // get the client to authenticate
- allowed =
- shell->client_hooks->access_fn(shell,
- access) ? true :
- false;
- }
- }
- if (!allowed)
- return;
- old = clish_view_find_command(v, name, BOOL_FALSE);
- // check this command doesn't already exist
- if (old) {
- // flag the duplication then ignore further definition
- printf("DUPLICATE COMMAND: %s\n",
- clish_command__get_name(old));
- return;
- }
- assert(name);
- assert(help);
- /* Reference 'ref' field */
- if (ref) {
- char *saveptr;
- const char *delim = "@";
- char *view_name = NULL;
- char *cmd = NULL;
- char *str = lub_string_dup(ref);
- cmd = strtok_r(str, delim, &saveptr);
- if (!cmd) {
- printf("EMPTY REFERENCE COMMAND: %s\n", name);
- lub_string_free(str);
- return;
- }
- alias_name = lub_string_dup(cmd);
- view_name = strtok_r(NULL, delim, &saveptr);
- if (!view_name)
- alias_view = v;
- else
- alias_view = clish_shell_find_create_view(shell,
- view_name, NULL);
- lub_string_free(str);
- }
- /* create a command */
- cmd = clish_view_new_command(v, name, help);
- assert(cmd);
- clish_command__set_pview(cmd, v);
- if (NULL != escape_chars) {
- /* define some specialist escape characters */
- clish_command__set_escape_chars(cmd,
- escape_chars);
- }
- if (NULL != args_name) {
- /* define a "rest of line" argument */
- clish_param_t *param;
- clish_ptype_t *tmp = NULL;
- assert(NULL != args_help);
- tmp = clish_shell_find_create_ptype(shell,
- "internal_ARGS",
- "Arguments", "[^\\]+",
- CLISH_PTYPE_REGEXP,
- CLISH_PTYPE_NONE);
- assert(tmp);
- param =
- clish_param_new(args_name, args_help, tmp);
- clish_command__set_args(cmd, param);
- }
- // define the view which this command changes to
- if (NULL != view) {
- clish_view_t *next =
- clish_shell_find_create_view(shell, view,
- NULL);
- // reference the next view
- clish_command__set_view(cmd, next);
- }
- // define the view id which this command changes to
- if (NULL != viewid) {
- clish_command__set_viewid(cmd, viewid);
- }
- /* lock field */
- if (lock && (lub_string_nocasecmp(lock, "false") == 0))
- clish_command__set_lock(cmd, BOOL_FALSE);
- else
- clish_command__set_lock(cmd, BOOL_TRUE);
- /* Set alias */
- if (alias_name) {
- clish_command__set_alias(cmd, alias_name);
- assert(alias_view);
- clish_command__set_alias_view(cmd, alias_view);
- lub_string_free(alias_name);
- }
- process_children(shell, element, cmd);
- }
- ///////////////////////////////////////
- static void
- process_startup(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_view_t *v = (clish_view_t *) parent;
- clish_command_t *cmd = NULL;
- const char *view = element->Attribute("view");
- const char *viewid = element->Attribute("viewid");
- const char *default_shebang = element->Attribute("default_shebang");
- assert(NULL == shell->startup);
- assert(view);
- /* create a command with NULL help */
- cmd = clish_view_new_command(v, "startup", NULL);
- clish_command__set_lock(cmd, BOOL_FALSE);
- // define the view which this command changes to
- clish_view_t *next = clish_shell_find_create_view(shell, view, NULL);
- // reference the next view
- clish_command__set_view(cmd, next);
- // define the view id which this command changes to
- if (NULL != viewid) {
- clish_command__set_viewid(cmd, viewid);
- }
- if (NULL != default_shebang)
- clish_shell__set_default_shebang(shell, default_shebang);
- // remember this command
- shell->startup = cmd;
- process_children(shell, element, cmd);
- }
- ///////////////////////////////////////
- static void
- process_param(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_command_t *cmd = NULL;
- clish_param_t *p_param = NULL;
- if (0 == lub_string_nocasecmp(element->Parent()->Value(), "PARAM"))
- p_param = (clish_param_t *) parent;
- else
- cmd = (clish_command_t *) parent;
- if ((NULL != cmd) || (NULL != p_param)) {
- assert((!cmd) || (cmd != shell->startup));
- const char *name = element->Attribute("name");
- const char *help = element->Attribute("help");
- const char *ptype = element->Attribute("ptype");
- const char *prefix = element->Attribute("prefix");
- const char *defval = element->Attribute("default");
- const char *mode = element->Attribute("mode");
- const char *optional = element->Attribute("optional");
- const char *value = element->Attribute("value");
- const char *hidden = element->Attribute("hidden");
- const char *test = element->Attribute("test");
- clish_param_t *param;
- clish_ptype_t *tmp = NULL;
- // create a command
- assert(name);
- assert(help);
- assert(ptype);
- if (ptype && *ptype) {
- tmp = clish_shell_find_create_ptype(shell, ptype,
- NULL, NULL,
- CLISH_PTYPE_REGEXP,
- CLISH_PTYPE_NONE);
- assert(tmp);
- }
- param = clish_param_new(name, help, tmp);
- /* If prefix is set clish will emulate old optional
- * command syntax over newer optional command mechanism.
- * It will create nested PARAM.
- */
- if (NULL != prefix) {
- const char *ptype_name = "__SUBCOMMAND";
- clish_param_t *opt_param = NULL;
- /* Create a ptype for prefix-named subcommand that
- * will contain the nested optional parameter. The
- * name of ptype is hardcoded. It's not good but
- * it's only the service ptype.
- */
- tmp = (clish_ptype_t *)lub_bintree_find(
- &shell->ptype_tree, ptype_name);
- if (!tmp)
- tmp = clish_shell_find_create_ptype(shell,
- ptype_name, "Option", "[^\\]+",
- CLISH_PTYPE_REGEXP, CLISH_PTYPE_NONE);
- assert(tmp);
- opt_param = clish_param_new(prefix, help, tmp);
- clish_param__set_mode(opt_param,
- CLISH_PARAM_SUBCOMMAND);
- clish_param__set_optional(opt_param, BOOL_TRUE);
- if (NULL != test)
- clish_param__set_test(opt_param, test);
- if (cmd)
- // add the parameter to the command
- clish_command_insert_param(cmd, opt_param);
- if (p_param)
- // add the parameter to the param
- clish_param_insert_param(p_param, opt_param);
- /* Unset cmd and set parent param to opt_param */
- cmd = NULL;
- p_param = opt_param;
- }
- if (NULL != defval) {
- clish_param__set_default(param, defval);
- }
- if (hidden && (lub_string_nocasecmp(hidden, "true") == 0))
- clish_param__set_hidden(param, BOOL_TRUE);
- else
- clish_param__set_hidden(param, BOOL_FALSE);
- if (NULL != mode) {
- if (!lub_string_nocasecmp(mode, "switch")) {
- clish_param__set_mode(param,
- CLISH_PARAM_SWITCH);
- /* Force hidden attribute */
- clish_param__set_hidden(param, BOOL_TRUE);
- } else if (!lub_string_nocasecmp(mode, "subcommand"))
- clish_param__set_mode(param,
- CLISH_PARAM_SUBCOMMAND);
- else
- clish_param__set_mode(param,
- CLISH_PARAM_COMMON);
- }
- if (optional && (lub_string_nocasecmp(optional, "true") == 0))
- clish_param__set_optional(param, BOOL_TRUE);
- else
- clish_param__set_optional(param, BOOL_FALSE);
- if (NULL != value) {
- clish_param__set_value(param, value);
- /* Force mode to subcommand */
- clish_param__set_mode(param,
- CLISH_PARAM_SUBCOMMAND);
- }
- if ((NULL != test) && (NULL == prefix))
- clish_param__set_test(param, test);
- if (cmd)
- // add the parameter to the command
- clish_command_insert_param(cmd, param);
- if (p_param)
- // add the parameter to the param
- clish_param_insert_param(p_param, param);
- process_children(shell, element, param);
- }
- }
- ////////////////////////////////////////
- static void
- process_action(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_command_t *cmd = (clish_command_t *) parent;
- if (NULL != cmd) {
- // read the following text element
- TiXmlNode *text = element->FirstChild();
- const char *builtin = element->Attribute("builtin");
- const char *shebang = element->Attribute("shebang");
- if (NULL != text) {
- assert(TiXmlNode::TEXT == text->Type());
- // store the action
- clish_command__set_action(cmd, text->Value());
- }
- if (NULL != builtin) {
- // store the action
- clish_command__set_builtin(cmd, builtin);
- }
- if (NULL != shebang)
- clish_command__set_shebang(cmd, shebang);
- }
- }
- ////////////////////////////////////////
- static void
- process_detail(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_command_t *cmd = (clish_command_t *) parent;
- // read the following text element
- TiXmlNode *text = element->FirstChild();
- if ((NULL != cmd) && (NULL != text)) {
- assert(TiXmlNode::TEXT == text->Type());
- // store the action
- clish_command__set_detail(cmd, text->Value());
- }
- }
- ///////////////////////////////////////
- static void
- process_namespace(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_view_t *v = (clish_view_t *) parent;
- clish_nspace_t *nspace = NULL;
- const char *view = element->Attribute("ref");
- const char *prefix = element->Attribute("prefix");
- const char *prefix_help = element->Attribute("prefix_help");
- const char *help = element->Attribute("help");
- const char *completion = element->Attribute("completion");
- const char *context_help = element->Attribute("context_help");
- const char *inherit = element->Attribute("inherit");
- assert(view);
- clish_view_t *ref_view =
- clish_shell_find_create_view(shell, view, NULL);
- assert(ref_view);
- nspace = clish_nspace_new(ref_view);
- assert(nspace);
- clish_view_insert_nspace(v, nspace);
- if (NULL != prefix) {
- clish_nspace__set_prefix(nspace, prefix);
- if (prefix_help)
- clish_nspace_create_prefix_cmd(nspace,
- "prefix",
- prefix_help);
- else
- clish_nspace_create_prefix_cmd(nspace,
- "prefix",
- "Prefix for the imported commands.");
- }
- if (help && (lub_string_nocasecmp(help, "true") == 0))
- clish_nspace__set_help(nspace, BOOL_TRUE);
- else
- clish_nspace__set_help(nspace, BOOL_FALSE);
- if (completion && (lub_string_nocasecmp(completion, "false") == 0))
- clish_nspace__set_completion(nspace, BOOL_FALSE);
- else
- clish_nspace__set_completion(nspace, BOOL_TRUE);
- if (context_help && (lub_string_nocasecmp(context_help, "true") == 0))
- clish_nspace__set_context_help(nspace, BOOL_TRUE);
- else
- clish_nspace__set_context_help(nspace, BOOL_FALSE);
- if (inherit && (lub_string_nocasecmp(inherit, "false") == 0))
- clish_nspace__set_inherit(nspace, BOOL_FALSE);
- else
- clish_nspace__set_inherit(nspace, BOOL_TRUE);
- }
- ////////////////////////////////////////
- static void
- process_config(clish_shell_t * shell, TiXmlElement * element, void *parent)
- {
- clish_command_t *cmd = (clish_command_t *) parent;
- if (NULL == cmd)
- return;
- // read the following text element
- const char *operation = element->Attribute("operation");
- const char *priority = element->Attribute("priority");
- const char *pattern = element->Attribute("pattern");
- const char *file = element->Attribute("file");
- const char *splitter = element->Attribute("splitter");
- const char *seq = element->Attribute("sequence");
- const char *unique = element->Attribute("unique");
- const char *cfg_depth = element->Attribute("depth");
- if (operation && !lub_string_nocasecmp(operation, "unset"))
- clish_command__set_cfg_op(cmd, CLISH_CONFIG_UNSET);
- else if (operation && !lub_string_nocasecmp(operation, "none"))
- clish_command__set_cfg_op(cmd, CLISH_CONFIG_NONE);
- else if (operation && !lub_string_nocasecmp(operation, "dump"))
- clish_command__set_cfg_op(cmd, CLISH_CONFIG_DUMP);
- else {
- clish_command__set_cfg_op(cmd, CLISH_CONFIG_SET);
- /* The priority if no clearly specified */
- clish_command__set_priority(cmd, 0x7f00);
- }
- if ((priority != NULL) && (*priority != '\0')) {
- long val = 0;
- char *endptr;
- unsigned short pri;
- val = strtol(priority, &endptr, 0);
- if (endptr == priority)
- pri = 0;
- else if (val > 0xffff)
- pri = 0xffff;
- else if (val < 0)
- pri = 0;
- else
- pri = (unsigned short)val;
- clish_command__set_priority(cmd, pri);
- }
- if (pattern != NULL)
- clish_command__set_pattern(cmd, pattern);
- else
- clish_command__set_pattern(cmd, "^${__cmd}");
- if (file != NULL)
- clish_command__set_file(cmd, file);
- if (splitter && (lub_string_nocasecmp(splitter, "false") == 0))
- clish_command__set_splitter(cmd, BOOL_FALSE);
- else
- clish_command__set_splitter(cmd, BOOL_TRUE);
- if (unique && (lub_string_nocasecmp(unique, "false") == 0))
- clish_command__set_unique(cmd, BOOL_FALSE);
- else
- clish_command__set_unique(cmd, BOOL_TRUE);
- if (seq != NULL)
- clish_command__set_seq(cmd, seq);
- else
- /* The entries without sequence cannot be non-unique */
- clish_command__set_unique(cmd, BOOL_TRUE);
- if (cfg_depth != NULL)
- clish_command__set_cfg_depth(cmd, cfg_depth);
- }
- ///////////////////////////////////////
- int clish_shell_xml_read(clish_shell_t * shell, const char *filename)
- {
- int ret = -1;
- TiXmlDocument doc;
- // keep the white space
- TiXmlBase::SetCondenseWhiteSpace(false);
- if (doc.LoadFile(filename)) {
- TiXmlNode *child = 0;
- while ((child = doc.IterateChildren(child))) {
- process_node(shell, child, NULL);
- }
- ret = 0;
- } else {
- printf("Unable to open %s\n", filename);
- }
- return ret;
- }
- ///////////////////////////////////////
|