1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222 |
- /*
- * ------------------------------------------------------
- * shell_xml.c
- *
- * This file implements the means to read an XML encoded file and populate the
- * CLI tree based on the contents.
- * ------------------------------------------------------
- */
- #include "private.h"
- #include "xmlapi.h"
- #include "lub/string.h"
- #include "lub/ctype.h"
- #include "lub/system.h"
- #include <stdlib.h>
- #include <string.h>
- #include <assert.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <dirent.h>
- typedef int (PROCESS_FN) (clish_shell_t *instance,
- clish_xmlnode_t *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,
- process_var,
- process_wdog,
- process_hotkey,
- process_plugin,
- process_hook;
- 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},
- {"VAR", process_var},
- {"WATCHDOG", process_wdog},
- {"HOTKEY", process_hotkey},
- {"PLUGIN", process_plugin},
- {"HOOK", process_hook},
- {NULL, NULL}
- };
- /*
- * if CLISH_PATH is unset in the environment then this is the value used.
- */
- const char *default_path = "/etc/clish;~/.clish";
- /*-------------------------------------------------------- */
- int clish_shell_load_scheme(clish_shell_t *this, const char *xml_path)
- {
- const char *path = xml_path;
- char *buffer;
- char *dirname;
- char *saveptr = NULL;
- int res = 0;
- /* use the default path */
- if (!path)
- path = default_path;
- /* take a copy of the path */
- buffer = lub_system_tilde_expand(path);
- /* now loop though each directory */
- for (dirname = strtok_r(buffer, ";", &saveptr);
- dirname; dirname = strtok_r(NULL, ";", &saveptr)) {
- DIR *dir;
- struct dirent *entry;
- /* search this directory for any XML files */
- dir = opendir(dirname);
- if (NULL == dir) {
- #ifdef DEBUG
- tinyrl_printf(this->tinyrl,
- "*** Failed to open '%s' directory\n",
- dirname);
- #endif
- continue;
- }
- for (entry = readdir(dir); entry; entry = readdir(dir)) {
- const char *extension = strrchr(entry->d_name, '.');
- /* check the filename */
- if ((NULL != extension) &&
- (0 == strcmp(".xml", extension))) {
- char *filename = NULL;
- /* build the filename */
- lub_string_cat(&filename, dirname);
- lub_string_cat(&filename, "/");
- lub_string_cat(&filename, entry->d_name);
- #ifdef DEBUG
- fprintf(stderr, "Parse XML-file: %s\n", filename);
- #endif
- /* load this file */
- res = clish_shell_xml_read(this, filename);
- /* Error message */
- if (res)
- fprintf(stderr, CLISH_XML_ERROR_STR"File %s\n",
- filename);
- /* release the resource */
- lub_string_free(filename);
- }
- if (res)
- break;
- }
- /* all done for this directory */
- closedir(dir);
- if (res)
- break;
- }
- lub_string_free(buffer);
- return res;
- }
- /*
- * ------------------------------------------------------
- * This function reads an element from the XML stream and processes it.
- * ------------------------------------------------------
- */
- static int process_node(clish_shell_t *shell, clish_xmlnode_t *node,
- void *parent)
- {
- int res = 0;
- switch (clish_xmlnode_get_type(node)) {
- case CLISH_XMLNODE_ELM: {
- clish_xml_cb_t * cb;
- char name[128];
- unsigned int namelen = sizeof(name);
- if (clish_xmlnode_get_name(node, name, &namelen) == 0) {
- for (cb = &xml_elements[0]; cb->element; cb++) {
- if (0 == strcmp(name, cb->element)) {
- #ifdef DEBUG
- fprintf(stderr, "NODE:");
- clish_xmlnode_print(node, stderr);
- fprintf(stderr, "\n");
- #endif
- /* process the elements at this level */
- res = cb->handler(shell, node, parent);
- /* Error message */
- if (res) {
- char *ename = clish_xmlnode_fetch_attr(node, "name");
- char *eref = clish_xmlnode_fetch_attr(node, "ref");
- char *ekey = clish_xmlnode_fetch_attr(node, "key");
- char *efile = clish_xmlnode_fetch_attr(node, "file");
- fprintf(stderr, CLISH_XML_ERROR_STR"Node %s", name);
- if (ename)
- fprintf(stderr, ", name=\"%s\"", ename);
- if (eref)
- fprintf(stderr, ", ref=\"%s\"", eref);
- if (ekey)
- fprintf(stderr, ", key=\"%s\"", ekey);
- if (efile)
- fprintf(stderr, ", file=\"%s\"", efile);
- fprintf(stderr, "\n");
- clish_xml_release(ename);
- clish_xml_release(eref);
- clish_xml_release(ekey);
- clish_xml_release(efile);
- }
- break;
- }
- }
- }
- break;
- }
- case CLISH_XMLNODE_DOC:
- case CLISH_XMLNODE_TEXT:
- case CLISH_XMLNODE_ATTR:
- case CLISH_XMLNODE_PI:
- case CLISH_XMLNODE_COMMENT:
- case CLISH_XMLNODE_DECL:
- case CLISH_XMLNODE_UNKNOWN:
- default:
- break;
- }
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_children(clish_shell_t *shell,
- clish_xmlnode_t *element, void *parent)
- {
- clish_xmlnode_t *node = NULL;
- int res;
- while ((node = clish_xmlnode_next_child(element, node)) != NULL) {
- /* Now deal with all the contained elements */
- res = process_node(shell, node, parent);
- if (res)
- return res;
- }
- return 0;
- }
- /* ------------------------------------------------------ */
- int clish_shell_xml_read(clish_shell_t *shell, const char *filename)
- {
- int ret = -1;
- clish_xmldoc_t *doc;
- doc = clish_xmldoc_read(filename);
- if (clish_xmldoc_is_valid(doc)) {
- clish_xmlnode_t *root = clish_xmldoc_get_root(doc);
- ret = process_node(shell, root, NULL);
- } else {
- int errcaps = clish_xmldoc_error_caps(doc);
- printf("Unable to open file '%s'", filename);
- if ((errcaps & CLISH_XMLERR_LINE) == CLISH_XMLERR_LINE)
- printf(", at line %d", clish_xmldoc_get_err_line(doc));
- if ((errcaps & CLISH_XMLERR_COL) == CLISH_XMLERR_COL)
- printf(", at column %d", clish_xmldoc_get_err_col(doc));
- if ((errcaps & CLISH_XMLERR_DESC) == CLISH_XMLERR_DESC)
- printf(", message is %s", clish_xmldoc_get_err_msg(doc));
- printf("\n");
- }
- clish_xmldoc_release(doc);
- return ret;
- }
- /* ------------------------------------------------------ */
- static int process_clish_module(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- /* Create the global view */
- if (!shell->global)
- shell->global = clish_shell_find_create_view(shell,
- "__view_global", "");
- parent = parent; /* Happy compiler */
- return process_children(shell, element, shell->global);
- }
- /* ------------------------------------------------------ */
- static int process_view(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_view_t *view;
- int res = -1;
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *prompt = clish_xmlnode_fetch_attr(element, "prompt");
- char *depth = clish_xmlnode_fetch_attr(element, "depth");
- char *restore = clish_xmlnode_fetch_attr(element, "restore");
- char *access = clish_xmlnode_fetch_attr(element, "access");
- /* Check syntax */
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- /* re-use a view if it already exists */
- view = clish_shell_find_create_view(shell, name, prompt);
- if (depth && (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);
- }
- if (access)
- clish_view__set_access(view, access);
- //process_view_end:
- res = process_children(shell, element, view);
- error:
- clish_xml_release(name);
- clish_xml_release(prompt);
- clish_xml_release(depth);
- clish_xml_release(restore);
- clish_xml_release(access);
- parent = parent; /* Happy compiler */
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_ptype(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_ptype_method_e method;
- clish_ptype_preprocess_e preprocess;
- int res = -1;
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *help = clish_xmlnode_fetch_attr(element, "help");
- char *pattern = clish_xmlnode_fetch_attr(element, "pattern");
- char *method_name = clish_xmlnode_fetch_attr(element, "method");
- char *preprocess_name = clish_xmlnode_fetch_attr(element, "preprocess");
- /* Check syntax */
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- if (!pattern) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("pattern"));
- goto error;
- }
- method = clish_ptype_method_resolve(method_name);
- preprocess = clish_ptype_preprocess_resolve(preprocess_name);
- clish_shell_find_create_ptype(shell,
- name, help, pattern, method, preprocess);
- res = 0;
- error:
- clish_xml_release(name);
- clish_xml_release(help);
- clish_xml_release(pattern);
- clish_xml_release(method_name);
- clish_xml_release(preprocess_name);
- parent = parent; /* Happy compiler */
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_overview(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- char *content = NULL;
- unsigned int content_len = 2048;
- int result;
- /*
- * the code below faithfully assume that we'll be able fully store
- * the content of the node. If it's really, really big, we may have
- * an issue (but then, if it's that big, how the hell does it
- * already fits in allocated memory?)
- * Ergo, it -should- be safe.
- */
- do {
- char *new = (char*)realloc(content, content_len);
- if (!new) {
- if (content)
- free(content);
- return -1;
- }
- content = new;
- result = clish_xmlnode_get_content(element, content,
- &content_len);
- } while (result == -E2BIG);
- if (result == 0 && content) {
- /* set the overview text for this view */
- assert(NULL == shell->overview);
- /* store the overview */
- shell->overview = lub_string_dup(content);
- }
- if (content)
- free(content);
- parent = parent; /* Happy compiler */
- return 0;
- }
- /* ------------------------------------------------------ */
- static int process_command(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_view_t *v = (clish_view_t *) parent;
- clish_command_t *cmd = NULL;
- clish_command_t *old;
- int res = -1;
- char *access = clish_xmlnode_fetch_attr(element, "access");
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *help = clish_xmlnode_fetch_attr(element, "help");
- char *view = clish_xmlnode_fetch_attr(element, "view");
- char *viewid = clish_xmlnode_fetch_attr(element, "viewid");
- char *escape_chars = clish_xmlnode_fetch_attr(element, "escape_chars");
- char *args_name = clish_xmlnode_fetch_attr(element, "args");
- char *args_help = clish_xmlnode_fetch_attr(element, "args_help");
- char *lock = clish_xmlnode_fetch_attr(element, "lock");
- char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
- char *ref = clish_xmlnode_fetch_attr(element, "ref");
- /* Check syntax */
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- if (!help) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("help"));
- goto error;
- }
- /* check this command doesn't already exist */
- old = clish_view_find_command(v, name, BOOL_FALSE);
- if (old) {
- fprintf(stderr, CLISH_XML_ERROR_STR"Duplicate COMMAND name=\"%s\".\n", name);
- goto error;
- }
- /* create a command */
- cmd = clish_view_new_command(v, name, help);
- clish_command__set_pview(cmd, v);
- /* Reference 'ref' field */
- if (ref) {
- char *saveptr = NULL;
- const char *delim = "@";
- char *view_name = NULL;
- char *cmdn = NULL;
- char *str = lub_string_dup(ref);
- cmdn = strtok_r(str, delim, &saveptr);
- if (!cmdn) {
- fprintf(stderr, CLISH_XML_ERROR_STR"Invalid \"ref\" attribute value.\n");
- lub_string_free(str);
- goto error;
- }
- clish_command__set_alias(cmd, cmdn); /* alias name */
- view_name = strtok_r(NULL, delim, &saveptr);
- clish_command__set_alias_view(cmd, view_name);
- lub_string_free(str);
- }
- /* define some specialist escape characters */
- if (escape_chars)
- clish_command__set_escape_chars(cmd, escape_chars);
- if (args_name) {
- /* define a "rest of line" argument */
- clish_param_t *param;
- /* Check syntax */
- if (!args_help) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("args_help"));
- goto error;
- }
- param = clish_param_new(args_name, args_help, "__ptype_ARGS");
- clish_command__set_args(cmd, param);
- }
- /* define the view which this command changes to */
- if (view) {
- /* reference the next view */
- clish_command__set_viewname(cmd, view);
- }
- /* define the view id which this command changes to */
- if (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);
- /* interrupt field */
- if (interrupt && lub_string_nocasecmp(interrupt, "true") == 0)
- clish_command__set_interrupt(cmd, BOOL_TRUE);
- else
- clish_command__set_interrupt(cmd, BOOL_FALSE);
- if (access)
- clish_command__set_access(cmd, access);
- //process_command_end:
- res = process_children(shell, element, cmd);
- error:
- clish_xml_release(access);
- clish_xml_release(name);
- clish_xml_release(help);
- clish_xml_release(view);
- clish_xml_release(viewid);
- clish_xml_release(escape_chars);
- clish_xml_release(args_name);
- clish_xml_release(args_help);
- clish_xml_release(lock);
- clish_xml_release(interrupt);
- clish_xml_release(ref);
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_startup(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_view_t *v = (clish_view_t *) parent;
- clish_command_t *cmd = NULL;
- int res = -1;
- char *view = clish_xmlnode_fetch_attr(element, "view");
- char *viewid = clish_xmlnode_fetch_attr(element, "viewid");
- char *default_shebang =
- clish_xmlnode_fetch_attr(element, "default_shebang");
- char *timeout = clish_xmlnode_fetch_attr(element, "timeout");
- char *lock = clish_xmlnode_fetch_attr(element, "lock");
- char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
- char *default_plugin = clish_xmlnode_fetch_attr(element,
- "default_plugin");
- /* Check syntax */
- if (!view) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("view"));
- goto error;
- }
- if (shell->startup) {
- fprintf(stderr, CLISH_XML_ERROR_STR"STARTUP tag duplication.\n");
- goto error;
- }
- /* create a command with NULL help */
- cmd = clish_view_new_command(v, "startup", NULL);
- clish_command__set_lock(cmd, BOOL_FALSE);
- /* reference the next view */
- clish_command__set_viewname(cmd, view);
- /* define the view id which this command changes to */
- if (viewid)
- clish_command__set_viewid(cmd, viewid);
- if (default_shebang)
- clish_shell__set_default_shebang(shell, default_shebang);
- if (timeout)
- clish_shell__set_timeout(shell, atoi(timeout));
- /* 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);
- /* interrupt field */
- if (interrupt && lub_string_nocasecmp(interrupt, "true") == 0)
- clish_command__set_interrupt(cmd, BOOL_TRUE);
- else
- clish_command__set_interrupt(cmd, BOOL_FALSE);
- /* If we need the default plugin */
- if (default_plugin && (0 == strcmp(default_plugin, "false")))
- shell->default_plugin = BOOL_FALSE;
- /* remember this command */
- shell->startup = cmd;
- res = process_children(shell, element, cmd);
- error:
- clish_xml_release(view);
- clish_xml_release(viewid);
- clish_xml_release(default_shebang);
- clish_xml_release(timeout);
- clish_xml_release(lock);
- clish_xml_release(interrupt);
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_param(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_command_t *cmd = NULL;
- clish_param_t *p_param = NULL;
- clish_xmlnode_t *pelement;
- clish_param_t *param;
- char *pname;
- int res = -1;
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *help = clish_xmlnode_fetch_attr(element, "help");
- char *ptype = clish_xmlnode_fetch_attr(element, "ptype");
- char *prefix = clish_xmlnode_fetch_attr(element, "prefix");
- char *defval = clish_xmlnode_fetch_attr(element, "default");
- char *mode = clish_xmlnode_fetch_attr(element, "mode");
- char *optional = clish_xmlnode_fetch_attr(element, "optional");
- char *order = clish_xmlnode_fetch_attr(element, "order");
- char *value = clish_xmlnode_fetch_attr(element, "value");
- char *hidden = clish_xmlnode_fetch_attr(element, "hidden");
- char *test = clish_xmlnode_fetch_attr(element, "test");
- char *completion = clish_xmlnode_fetch_attr(element, "completion");
- char *access = clish_xmlnode_fetch_attr(element, "access");
- /* The PARAM can be child of COMMAND or another PARAM */
- pelement = clish_xmlnode_parent(element);
- pname = clish_xmlnode_get_all_name(pelement);
- if (pname && lub_string_nocasecmp(pname, "PARAM") == 0)
- p_param = (clish_param_t *)parent;
- else
- cmd = (clish_command_t *)parent;
- if (pname)
- free(pname);
- if (!cmd && !p_param)
- goto error;
- /* Check syntax */
- if (cmd && (cmd == shell->startup)) {
- fprintf(stderr, CLISH_XML_ERROR_STR"STARTUP can't contain PARAMs.\n");
- goto error;
- }
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- if (!help) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("help"));
- goto error;
- }
- if (!ptype) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("ptype"));
- goto error;
- }
- param = clish_param_new(name, help, ptype);
- /* If prefix is set clish will emulate old optional
- * command syntax over newer optional command mechanism.
- * It will create nested PARAM.
- */
- if (prefix) {
- const char *ptype_name = "__ptype_SUBCOMMAND";
- clish_param_t *opt_param = NULL;
- char *str = NULL;
- clish_ptype_t *tmp;
- /* 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);
- lub_string_cat(&str, "_prefix_");
- lub_string_cat(&str, name);
- opt_param = clish_param_new(str, help, ptype_name);
- lub_string_free(str);
- clish_param__set_mode(opt_param,
- CLISH_PARAM_SUBCOMMAND);
- clish_param__set_value(opt_param, prefix);
- clish_param__set_optional(opt_param, BOOL_TRUE);
- if (test)
- clish_param__set_test(opt_param, test);
- /* Add the parameter to the command */
- if (cmd)
- clish_command_insert_param(cmd, opt_param);
- /* Add the parameter to the param */
- if (p_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 (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 (mode) {
- if (lub_string_nocasecmp(mode, "switch") == 0) {
- 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") == 0)
- 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 (order && lub_string_nocasecmp(order, "true") == 0)
- clish_param__set_order(param, BOOL_TRUE);
- else
- clish_param__set_order(param, BOOL_FALSE);
- if (value) {
- clish_param__set_value(param, value);
- /* Force mode to subcommand */
- clish_param__set_mode(param,
- CLISH_PARAM_SUBCOMMAND);
- }
- if (test && !prefix)
- clish_param__set_test(param, test);
- if (completion)
- clish_param__set_completion(param, completion);
- if (access)
- clish_param__set_access(param, access);
- /* Add the parameter to the command */
- if (cmd)
- clish_command_insert_param(cmd, param);
- /* Add the parameter to the param */
- if (p_param)
- clish_param_insert_param(p_param, param);
- res = process_children(shell, element, param);
- error:
- clish_xml_release(name);
- clish_xml_release(help);
- clish_xml_release(ptype);
- clish_xml_release(prefix);
- clish_xml_release(defval);
- clish_xml_release(mode);
- clish_xml_release(optional);
- clish_xml_release(order);
- clish_xml_release(value);
- clish_xml_release(hidden);
- clish_xml_release(test);
- clish_xml_release(completion);
- clish_xml_release(access);
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_action(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_action_t *action = NULL;
- char *builtin = clish_xmlnode_fetch_attr(element, "builtin");
- char *shebang = clish_xmlnode_fetch_attr(element, "shebang");
- clish_xmlnode_t *pelement = clish_xmlnode_parent(element);
- char *pname = clish_xmlnode_get_all_name(pelement);
- char *text;
- clish_sym_t *sym = NULL;
- if (pname && lub_string_nocasecmp(pname, "VAR") == 0)
- action = clish_var__get_action((clish_var_t *)parent);
- else
- action = clish_command__get_action((clish_command_t *)parent);
- if (pname)
- free(pname);
- text = clish_xmlnode_get_all_content(element);
- if (text && *text) {
- /* store the action */
- clish_action__set_script(action, text);
- }
- if (text)
- free(text);
- if (builtin)
- sym = clish_shell_add_unresolved_sym(shell, builtin,
- CLISH_SYM_TYPE_ACTION);
- else
- sym = shell->hooks[CLISH_SYM_TYPE_ACTION];
- clish_action__set_builtin(action, sym);
- if (shebang)
- clish_action__set_shebang(action, shebang);
- clish_xml_release(builtin);
- clish_xml_release(shebang);
- return 0;
- }
- /* ------------------------------------------------------ */
- static int process_detail(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_command_t *cmd = (clish_command_t *) parent;
- /* read the following text element */
- char *text = clish_xmlnode_get_all_content(element);
- if (text && *text) {
- /* store the action */
- clish_command__set_detail(cmd, text);
- }
- if (text)
- free(text);
- shell = shell; /* Happy compiler */
- return 0;
- }
- /* ------------------------------------------------------ */
- static int process_namespace(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_view_t *v = (clish_view_t *)parent;
- clish_nspace_t *nspace = NULL;
- int res = -1;
- char *view = clish_xmlnode_fetch_attr(element, "ref");
- char *prefix = clish_xmlnode_fetch_attr(element, "prefix");
- char *prefix_help = clish_xmlnode_fetch_attr(element, "prefix_help");
- char *help = clish_xmlnode_fetch_attr(element, "help");
- char *completion = clish_xmlnode_fetch_attr(element, "completion");
- char *context_help = clish_xmlnode_fetch_attr(element, "context_help");
- char *inherit = clish_xmlnode_fetch_attr(element, "inherit");
- char *access = clish_xmlnode_fetch_attr(element, "access");
- /* Check syntax */
- if (!view) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("ref"));
- goto error;
- }
- clish_view_t *ref_view = clish_shell_find_view(shell, view);
- /* Don't include itself without prefix */
- if ((ref_view == v) && !prefix)
- goto process_namespace_end;
- nspace = clish_nspace_new(view);
- clish_view_insert_nspace(v, nspace);
- if (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);
- if (access)
- clish_nspace__set_access(nspace, access);
- process_namespace_end:
- res = 0;
- error:
- clish_xml_release(view);
- clish_xml_release(prefix);
- clish_xml_release(prefix_help);
- clish_xml_release(help);
- clish_xml_release(completion);
- clish_xml_release(context_help);
- clish_xml_release(inherit);
- clish_xml_release(access);
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_config(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_command_t *cmd = (clish_command_t *)parent;
- clish_config_t *config;
- if (!cmd)
- return 0;
- config = clish_command__get_config(cmd);
- /* read the following text element */
- char *operation = clish_xmlnode_fetch_attr(element, "operation");
- char *priority = clish_xmlnode_fetch_attr(element, "priority");
- char *pattern = clish_xmlnode_fetch_attr(element, "pattern");
- char *file = clish_xmlnode_fetch_attr(element, "file");
- char *splitter = clish_xmlnode_fetch_attr(element, "splitter");
- char *seq = clish_xmlnode_fetch_attr(element, "sequence");
- char *unique = clish_xmlnode_fetch_attr(element, "unique");
- char *depth = clish_xmlnode_fetch_attr(element, "depth");
- if (operation && !lub_string_nocasecmp(operation, "unset"))
- clish_config__set_op(config, CLISH_CONFIG_UNSET);
- else if (operation && !lub_string_nocasecmp(operation, "none"))
- clish_config__set_op(config, CLISH_CONFIG_NONE);
- else if (operation && !lub_string_nocasecmp(operation, "dump"))
- clish_config__set_op(config, CLISH_CONFIG_DUMP);
- else {
- clish_config__set_op(config, CLISH_CONFIG_SET);
- /* The priority if no clearly specified */
- clish_config__set_priority(config, 0x7f00);
- }
- if (priority) {
- 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_config__set_priority(config, pri);
- }
- if (pattern)
- clish_config__set_pattern(config, pattern);
- else
- clish_config__set_pattern(config, "^${__cmd}");
- if (file)
- clish_config__set_file(config, file);
- if (splitter && lub_string_nocasecmp(splitter, "false") == 0)
- clish_config__set_splitter(config, BOOL_FALSE);
- else
- clish_config__set_splitter(config, BOOL_TRUE);
- if (unique && lub_string_nocasecmp(unique, "false") == 0)
- clish_config__set_unique(config, BOOL_FALSE);
- else
- clish_config__set_unique(config, BOOL_TRUE);
- if (seq)
- clish_config__set_seq(config, seq);
- else
- /* The entries without sequence cannot be non-unique */
- clish_config__set_unique(config, BOOL_TRUE);
- if (depth)
- clish_config__set_depth(config, depth);
- clish_xml_release(operation);
- clish_xml_release(priority);
- clish_xml_release(pattern);
- clish_xml_release(file);
- clish_xml_release(splitter);
- clish_xml_release(seq);
- clish_xml_release(unique);
- clish_xml_release(depth);
- shell = shell; /* Happy compiler */
- return 0;
- }
- /* ------------------------------------------------------ */
- static int process_var(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_var_t *var = NULL;
- int res = -1;
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *dynamic = clish_xmlnode_fetch_attr(element, "dynamic");
- char *value = clish_xmlnode_fetch_attr(element, "value");
- /* Check syntax */
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- /* Check if this var doesn't already exist */
- var = (clish_var_t *)lub_bintree_find(&shell->var_tree, name);
- if (var) {
- fprintf(stderr, CLISH_XML_ERROR_STR"Duplicate VAR name=\"%s\".\n", name);
- goto error;
- }
- /* Create var instance */
- var = clish_var_new(name);
- lub_bintree_insert(&shell->var_tree, var);
- if (dynamic && lub_string_nocasecmp(dynamic, "true") == 0)
- clish_var__set_dynamic(var, BOOL_TRUE);
- if (value)
- clish_var__set_value(var, value);
- res = process_children(shell, element, var);
- error:
- clish_xml_release(name);
- clish_xml_release(dynamic);
- clish_xml_release(value);
- parent = parent; /* Happy compiler */
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_wdog(clish_shell_t *shell,
- clish_xmlnode_t *element, void *parent)
- {
- clish_view_t *v = (clish_view_t *)parent;
- clish_command_t *cmd = NULL;
- int res = -1;
- /* Check syntax */
- if (shell->wdog) {
- fprintf(stderr, CLISH_XML_ERROR_STR"WATCHDOG tag duplication.\n");
- goto error;
- }
- /* Create a command with NULL help */
- cmd = clish_view_new_command(v, "watchdog", NULL);
- clish_command__set_lock(cmd, BOOL_FALSE);
- /* Remember this command */
- shell->wdog = cmd;
- res = process_children(shell, element, cmd);
- error:
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_hotkey(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_view_t *v = (clish_view_t *)parent;
- int res = -1;
- char *key = clish_xmlnode_fetch_attr(element, "key");
- char *cmd = clish_xmlnode_fetch_attr(element, "cmd");
- /* Check syntax */
- if (!key) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("key"));
- goto error;
- }
- if (!cmd) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("cmd"));
- goto error;
- }
- clish_view_insert_hotkey(v, key, cmd);
- res = 0;
- error:
- clish_xml_release(key);
- clish_xml_release(cmd);
- shell = shell; /* Happy compiler */
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_plugin(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- clish_plugin_t *plugin;
- char *file = clish_xmlnode_fetch_attr(element, "file");
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *alias = clish_xmlnode_fetch_attr(element, "alias");
- int res = -1;
- char *text;
- /* Check syntax */
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- plugin = clish_shell_find_plugin(shell, name);
- if (plugin) {
- fprintf(stderr,
- CLISH_XML_ERROR_STR"PLUGIN %s duplication.\n", name);
- goto error;
- }
- plugin = clish_plugin_new(name);
- lub_list_add(shell->plugins, plugin);
- if (alias && *alias)
- clish_plugin__set_alias(plugin, alias);
- if (file && *file)
- clish_plugin__set_file(plugin, file);
- /* Get PLUGIN body content */
- text = clish_xmlnode_get_all_content(element);
- if (text && *text)
- clish_plugin__set_conf(plugin, text);
- if (text)
- free(text);
- res = 0;
- error:
- clish_xml_release(file);
- clish_xml_release(name);
- clish_xml_release(alias);
- parent = parent; /* Happy compiler */
- return res;
- }
- /* ------------------------------------------------------ */
- static int process_hook(clish_shell_t *shell, clish_xmlnode_t *element,
- void *parent)
- {
- char *name = clish_xmlnode_fetch_attr(element, "name");
- char *builtin = clish_xmlnode_fetch_attr(element, "builtin");
- int res = -1;
- int type = CLISH_SYM_TYPE_NONE;
- /* Check syntax */
- if (!name) {
- fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
- goto error;
- }
- /* Find out HOOK type */
- if (!strcmp(name, "action"))
- type = CLISH_SYM_TYPE_ACTION;
- else if (!strcmp(name, "access"))
- type = CLISH_SYM_TYPE_ACCESS;
- else if (!strcmp(name, "config"))
- type = CLISH_SYM_TYPE_CONFIG;
- else if (!strcmp(name, "log"))
- type = CLISH_SYM_TYPE_LOG;
- if (CLISH_SYM_TYPE_NONE == type) {
- fprintf(stderr, CLISH_XML_ERROR_STR"Unknown HOOK name %s.\n", name);
- goto error;
- }
- /* Check duplicate HOOK tag */
- if (shell->hooks_use[type]) {
- fprintf(stderr,
- CLISH_XML_ERROR_STR"HOOK %s duplication.\n", name);
- goto error;
- }
- shell->hooks_use[type] = BOOL_TRUE;
- clish_sym__set_name(shell->hooks[type], builtin);
- res = 0;
- error:
- clish_xml_release(name);
- clish_xml_release(builtin);
- parent = parent; /* Happy compiler */
- return res;
- }
- /* ------------------------------------------------------ */
|