//////////////////////////////////////// // 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 #include 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; const char *access = element->Attribute("access"); bool allowed = true; 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) { 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"); clish_command_t *old = clish_view_find_command(v, name, BOOL_FALSE); // check this command doesn't already exist if (NULL != old) { // flag the duplication then ignore further definition printf("DUPLICATE COMMAND: %s\n", clish_command__get_name(old)); } else { assert(name); assert(help); /* 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); } 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 *env_view = getenv("CLISH_VIEW"); const char *env_viewid = getenv("CLISH_VIEWID"); /* Redefine startup view if environment is set. */ if (env_view) view = env_view; if (env_viewid) viewid = env_viewid; assert(NULL == shell->startup); assert(view); /* create a command with NULL help */ cmd = clish_view_new_command(v, "startup", NULL); // 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); } // 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 *visibility = element->Attribute("visibility"); 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 = "internal_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 (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 (NULL != mode) { if (!lub_string_nocasecmp(mode, "switch")) clish_param__set_mode(param, CLISH_PARAM_SWITCH); 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 != visibility) { if (!lub_string_nocasecmp(visibility, "hidden")) clish_param__set_visibility(param, CLISH_PARAM_HIDDEN); else clish_param__set_visibility(param, CLISH_PARAM_NORMAL); } 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"); 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); } } } //////////////////////////////////////// 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 *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 (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 *seq_num = element->Attribute("sequence_num"); 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 if (operation && !lub_string_nocasecmp(operation, "copy")) clish_command__set_cfg_op(cmd, CLISH_CONFIG_COPY); else clish_command__set_cfg_op(cmd, CLISH_CONFIG_SET); 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 (seq && (lub_string_nocasecmp(seq, "true") == 0)) clish_command__set_seq(cmd, BOOL_TRUE); else clish_command__set_seq(cmd, BOOL_FALSE); if (seq_num && (*seq_num != '\0')) { clish_command__set_seq(cmd, BOOL_TRUE); clish_command__set_seq_num(cmd, seq_num); } } /////////////////////////////////////// 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; } ///////////////////////////////////////