shell_xml.c 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319
  1. /*
  2. * ------------------------------------------------------
  3. * shell_xml.c
  4. *
  5. * This file implements the means to read an XML encoded file and populate the
  6. * CLI tree based on the contents.
  7. * ------------------------------------------------------
  8. */
  9. #include "private.h"
  10. #include "xmlapi.h"
  11. #include "lub/string.h"
  12. #include "lub/ctype.h"
  13. #include "lub/system.h"
  14. #include "lub/conv.h"
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <assert.h>
  18. #include <errno.h>
  19. #include <sys/types.h>
  20. #include <dirent.h>
  21. typedef int (PROCESS_FN) (clish_shell_t *instance,
  22. clish_xmlnode_t *element, void *parent);
  23. /* Define a control block for handling the decode of an XML file */
  24. typedef struct clish_xml_cb_s clish_xml_cb_t;
  25. struct clish_xml_cb_s {
  26. const char *element;
  27. PROCESS_FN *handler;
  28. };
  29. /* forward declare the handler functions */
  30. static PROCESS_FN
  31. process_clish_module,
  32. process_startup,
  33. process_view,
  34. process_command,
  35. process_param,
  36. process_action,
  37. process_ptype,
  38. process_overview,
  39. process_detail,
  40. process_namespace,
  41. process_config,
  42. process_var,
  43. process_wdog,
  44. process_hotkey,
  45. process_plugin,
  46. process_hook;
  47. static clish_xml_cb_t xml_elements[] = {
  48. {"CLISH_MODULE", process_clish_module},
  49. {"STARTUP", process_startup},
  50. {"VIEW", process_view},
  51. {"COMMAND", process_command},
  52. {"PARAM", process_param},
  53. {"ACTION", process_action},
  54. {"PTYPE", process_ptype},
  55. {"OVERVIEW", process_overview},
  56. {"DETAIL", process_detail},
  57. {"NAMESPACE", process_namespace},
  58. {"CONFIG", process_config},
  59. {"VAR", process_var},
  60. {"WATCHDOG", process_wdog},
  61. {"HOTKEY", process_hotkey},
  62. {"PLUGIN", process_plugin},
  63. {"HOOK", process_hook},
  64. {NULL, NULL}
  65. };
  66. /*
  67. * if CLISH_PATH is unset in the environment then this is the value used.
  68. */
  69. const char *default_path = "/etc/clish;~/.clish";
  70. static int process_node(clish_shell_t *shell, clish_xmlnode_t *node,
  71. void *parent);
  72. /*-------------------------------------------------------- */
  73. int clish_shell_load_scheme(clish_shell_t *this, const char *xml_path, const char *xslt_path)
  74. {
  75. const char *path = xml_path;
  76. char *buffer;
  77. char *dirname;
  78. char *saveptr = NULL;
  79. int res = -1;
  80. clish_xmldoc_t *doc = NULL;
  81. DIR *dir;
  82. #ifdef HAVE_LIB_LIBXSLT
  83. clish_xslt_t *xslt = NULL;
  84. /* Load global XSLT stylesheet */
  85. if (xslt_path) {
  86. xslt = clish_xslt_read(xslt_path);
  87. if (!clish_xslt_is_valid(xslt)) {
  88. fprintf(stderr, CLISH_XML_ERROR_STR"Can't load XSLT file %s\n",
  89. xslt_path);
  90. return -1;
  91. }
  92. }
  93. #else
  94. xslt_path = xslt_path; /* Happy compiler */
  95. #endif
  96. /* Use the default path */
  97. if (!path)
  98. path = default_path;
  99. buffer = lub_system_tilde_expand(path);
  100. /* Loop though each directory */
  101. for (dirname = strtok_r(buffer, ";", &saveptr);
  102. dirname; dirname = strtok_r(NULL, ";", &saveptr)) {
  103. struct dirent *entry;
  104. /* Search this directory for any XML files */
  105. dir = opendir(dirname);
  106. if (NULL == dir) {
  107. #ifdef DEBUG
  108. tinyrl_printf(this->tinyrl,
  109. "*** Failed to open '%s' directory\n",
  110. dirname);
  111. #endif
  112. continue;
  113. }
  114. for (entry = readdir(dir); entry; entry = readdir(dir)) {
  115. const char *extension = strrchr(entry->d_name, '.');
  116. char *filename = NULL;
  117. clish_xmlnode_t *root;
  118. int r;
  119. /* Check the filename */
  120. if (!extension || strcmp(".xml", extension))
  121. continue;
  122. /* Build the filename */
  123. lub_string_cat(&filename, dirname);
  124. lub_string_cat(&filename, "/");
  125. lub_string_cat(&filename, entry->d_name);
  126. #ifdef DEBUG
  127. fprintf(stderr, "Parse XML-file: %s\n", filename);
  128. #endif
  129. /* Load current XML file */
  130. doc = clish_xmldoc_read(filename);
  131. if (!clish_xmldoc_is_valid(doc)) {
  132. int errcaps = clish_xmldoc_error_caps(doc);
  133. printf("Unable to open file '%s'", filename);
  134. if ((errcaps & CLISH_XMLERR_LINE) == CLISH_XMLERR_LINE)
  135. printf(", at line %d", clish_xmldoc_get_err_line(doc));
  136. if ((errcaps & CLISH_XMLERR_COL) == CLISH_XMLERR_COL)
  137. printf(", at column %d", clish_xmldoc_get_err_col(doc));
  138. if ((errcaps & CLISH_XMLERR_DESC) == CLISH_XMLERR_DESC)
  139. printf(", message is %s", clish_xmldoc_get_err_msg(doc));
  140. printf("\n");
  141. goto error;
  142. }
  143. #ifdef HAVE_LIB_LIBXSLT
  144. /* Use embedded stylesheet if stylesheet
  145. * filename is not specified.
  146. */
  147. if (!xslt_path)
  148. xslt = clish_xslt_read_embedded(doc);
  149. if (clish_xslt_is_valid(xslt)) {
  150. clish_xmldoc_t *tmp = NULL;
  151. tmp = clish_xslt_apply(doc, xslt);
  152. if (!clish_xmldoc_is_valid(tmp)) {
  153. fprintf(stderr, CLISH_XML_ERROR_STR"Can't load XSLT file %s\n", xslt_path);
  154. goto error;
  155. }
  156. clish_xmldoc_release(doc);
  157. doc = tmp;
  158. }
  159. if (!xslt_path && clish_xslt_is_valid(xslt))
  160. clish_xslt_release(xslt);
  161. #endif
  162. root = clish_xmldoc_get_root(doc);
  163. r = process_node(this, root, NULL);
  164. clish_xmldoc_release(doc);
  165. /* Error message */
  166. if (r) {
  167. fprintf(stderr, CLISH_XML_ERROR_STR"File %s\n",
  168. filename);
  169. lub_string_free(filename);
  170. goto error;
  171. }
  172. lub_string_free(filename);
  173. }
  174. closedir(dir);
  175. }
  176. /* To don't free memory twice on cleanup */
  177. #ifdef HAVE_LIB_LIBXSLT
  178. if (!xslt_path)
  179. xslt = NULL;
  180. #endif
  181. doc = NULL;
  182. dir = NULL;
  183. res = 0; /* Success */
  184. error:
  185. lub_string_free(buffer);
  186. if (dir)
  187. closedir(dir);
  188. if (clish_xmldoc_is_valid(doc))
  189. clish_xmldoc_release(doc);
  190. #ifdef HAVE_LIB_LIBXSLT
  191. if (clish_xslt_is_valid(xslt))
  192. clish_xslt_release(xslt);
  193. #endif
  194. return res;
  195. }
  196. /*
  197. * ------------------------------------------------------
  198. * This function reads an element from the XML stream and processes it.
  199. * ------------------------------------------------------
  200. */
  201. static int process_node(clish_shell_t *shell, clish_xmlnode_t *node,
  202. void *parent)
  203. {
  204. int res = 0;
  205. switch (clish_xmlnode_get_type(node)) {
  206. case CLISH_XMLNODE_ELM: {
  207. clish_xml_cb_t * cb;
  208. char name[128];
  209. unsigned int namelen = sizeof(name);
  210. if (clish_xmlnode_get_name(node, name, &namelen) == 0) {
  211. for (cb = &xml_elements[0]; cb->element; cb++) {
  212. if (0 == strcmp(name, cb->element)) {
  213. #ifdef DEBUG
  214. fprintf(stderr, "NODE:");
  215. clish_xmlnode_print(node, stderr);
  216. fprintf(stderr, "\n");
  217. #endif
  218. /* process the elements at this level */
  219. res = cb->handler(shell, node, parent);
  220. /* Error message */
  221. if (res) {
  222. char *ename = clish_xmlnode_fetch_attr(node, "name");
  223. char *eref = clish_xmlnode_fetch_attr(node, "ref");
  224. char *ekey = clish_xmlnode_fetch_attr(node, "key");
  225. char *efile = clish_xmlnode_fetch_attr(node, "file");
  226. fprintf(stderr, CLISH_XML_ERROR_STR"Node %s", name);
  227. if (ename)
  228. fprintf(stderr, ", name=\"%s\"", ename);
  229. if (eref)
  230. fprintf(stderr, ", ref=\"%s\"", eref);
  231. if (ekey)
  232. fprintf(stderr, ", key=\"%s\"", ekey);
  233. if (efile)
  234. fprintf(stderr, ", file=\"%s\"", efile);
  235. fprintf(stderr, "\n");
  236. clish_xml_release(ename);
  237. clish_xml_release(eref);
  238. clish_xml_release(ekey);
  239. clish_xml_release(efile);
  240. }
  241. break;
  242. }
  243. }
  244. }
  245. break;
  246. }
  247. case CLISH_XMLNODE_DOC:
  248. case CLISH_XMLNODE_TEXT:
  249. case CLISH_XMLNODE_ATTR:
  250. case CLISH_XMLNODE_PI:
  251. case CLISH_XMLNODE_COMMENT:
  252. case CLISH_XMLNODE_DECL:
  253. case CLISH_XMLNODE_UNKNOWN:
  254. default:
  255. break;
  256. }
  257. return res;
  258. }
  259. /* ------------------------------------------------------ */
  260. static int process_children(clish_shell_t *shell,
  261. clish_xmlnode_t *element, void *parent)
  262. {
  263. clish_xmlnode_t *node = NULL;
  264. int res;
  265. while ((node = clish_xmlnode_next_child(element, node)) != NULL) {
  266. /* Now deal with all the contained elements */
  267. res = process_node(shell, node, parent);
  268. if (res)
  269. return res;
  270. }
  271. return 0;
  272. }
  273. /* ------------------------------------------------------ */
  274. static int process_clish_module(clish_shell_t *shell, clish_xmlnode_t *element,
  275. void *parent)
  276. {
  277. /* Create the global view */
  278. if (!shell->global)
  279. shell->global = clish_shell_find_create_view(shell,
  280. "__view_global", "");
  281. parent = parent; /* Happy compiler */
  282. return process_children(shell, element, shell->global);
  283. }
  284. /* ------------------------------------------------------ */
  285. static int process_view(clish_shell_t *shell, clish_xmlnode_t *element,
  286. void *parent)
  287. {
  288. clish_view_t *view;
  289. int res = -1;
  290. char *name = clish_xmlnode_fetch_attr(element, "name");
  291. char *prompt = clish_xmlnode_fetch_attr(element, "prompt");
  292. char *depth = clish_xmlnode_fetch_attr(element, "depth");
  293. char *restore = clish_xmlnode_fetch_attr(element, "restore");
  294. char *access = clish_xmlnode_fetch_attr(element, "access");
  295. /* Check syntax */
  296. if (!name) {
  297. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  298. goto error;
  299. }
  300. /* re-use a view if it already exists */
  301. view = clish_shell_find_create_view(shell, name, prompt);
  302. if (depth && (lub_ctype_isdigit(*depth))) {
  303. unsigned int res = 0;
  304. lub_conv_atoui(depth, &res, 0);
  305. clish_view__set_depth(view, res);
  306. }
  307. if (restore) {
  308. if (!lub_string_nocasecmp(restore, "depth"))
  309. clish_view__set_restore(view, CLISH_RESTORE_DEPTH);
  310. else if (!lub_string_nocasecmp(restore, "view"))
  311. clish_view__set_restore(view, CLISH_RESTORE_VIEW);
  312. else
  313. clish_view__set_restore(view, CLISH_RESTORE_NONE);
  314. }
  315. if (access)
  316. clish_view__set_access(view, access);
  317. //process_view_end:
  318. res = process_children(shell, element, view);
  319. error:
  320. clish_xml_release(name);
  321. clish_xml_release(prompt);
  322. clish_xml_release(depth);
  323. clish_xml_release(restore);
  324. clish_xml_release(access);
  325. parent = parent; /* Happy compiler */
  326. return res;
  327. }
  328. /* ------------------------------------------------------ */
  329. static int process_ptype(clish_shell_t *shell, clish_xmlnode_t *element,
  330. void *parent)
  331. {
  332. clish_ptype_method_e method;
  333. clish_ptype_preprocess_e preprocess;
  334. int res = -1;
  335. clish_ptype_t *ptype;
  336. char *name = clish_xmlnode_fetch_attr(element, "name");
  337. char *help = clish_xmlnode_fetch_attr(element, "help");
  338. char *pattern = clish_xmlnode_fetch_attr(element, "pattern");
  339. char *method_name = clish_xmlnode_fetch_attr(element, "method");
  340. char *preprocess_name = clish_xmlnode_fetch_attr(element, "preprocess");
  341. /* Check syntax */
  342. if (!name) {
  343. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  344. goto error;
  345. }
  346. method = clish_ptype_method_resolve(method_name);
  347. if (CLISH_PTYPE_MAX == method) {
  348. fprintf(stderr, CLISH_XML_ERROR_ATTR("method"));
  349. goto error;
  350. }
  351. if ((method != CLISH_PTYPE_CODE) && !pattern) {
  352. fprintf(stderr, CLISH_XML_ERROR_ATTR("pattern"));
  353. goto error;
  354. }
  355. preprocess = clish_ptype_preprocess_resolve(preprocess_name);
  356. ptype = clish_shell_find_create_ptype(shell,
  357. name, help, pattern, method, preprocess);
  358. res = process_children(shell, element, ptype);
  359. error:
  360. clish_xml_release(name);
  361. clish_xml_release(help);
  362. clish_xml_release(pattern);
  363. clish_xml_release(method_name);
  364. clish_xml_release(preprocess_name);
  365. parent = parent; /* Happy compiler */
  366. return res;
  367. }
  368. /* ------------------------------------------------------ */
  369. static int process_overview(clish_shell_t *shell, clish_xmlnode_t *element,
  370. void *parent)
  371. {
  372. char *content = NULL;
  373. unsigned int content_len = 2048;
  374. int result;
  375. /*
  376. * the code below faithfully assume that we'll be able fully store
  377. * the content of the node. If it's really, really big, we may have
  378. * an issue (but then, if it's that big, how the hell does it
  379. * already fits in allocated memory?)
  380. * Ergo, it -should- be safe.
  381. */
  382. do {
  383. char *new = (char*)realloc(content, content_len);
  384. if (!new) {
  385. if (content)
  386. free(content);
  387. return -1;
  388. }
  389. content = new;
  390. result = clish_xmlnode_get_content(element, content,
  391. &content_len);
  392. } while (result == -E2BIG);
  393. if (result == 0 && content) {
  394. /* set the overview text for this view */
  395. assert(NULL == shell->overview);
  396. /* store the overview */
  397. shell->overview = lub_string_dup(content);
  398. }
  399. if (content)
  400. free(content);
  401. parent = parent; /* Happy compiler */
  402. return 0;
  403. }
  404. /* ------------------------------------------------------ */
  405. static int process_command(clish_shell_t *shell, clish_xmlnode_t *element,
  406. void *parent)
  407. {
  408. clish_view_t *v = (clish_view_t *) parent;
  409. clish_command_t *cmd = NULL;
  410. clish_command_t *old;
  411. int res = -1;
  412. char *access = clish_xmlnode_fetch_attr(element, "access");
  413. char *name = clish_xmlnode_fetch_attr(element, "name");
  414. char *help = clish_xmlnode_fetch_attr(element, "help");
  415. char *view = clish_xmlnode_fetch_attr(element, "view");
  416. char *viewid = clish_xmlnode_fetch_attr(element, "viewid");
  417. char *escape_chars = clish_xmlnode_fetch_attr(element, "escape_chars");
  418. char *args_name = clish_xmlnode_fetch_attr(element, "args");
  419. char *args_help = clish_xmlnode_fetch_attr(element, "args_help");
  420. char *ref = clish_xmlnode_fetch_attr(element, "ref");
  421. #ifdef LEGACY
  422. char *lock = clish_xmlnode_fetch_attr(element, "lock");
  423. char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
  424. clish_action_t *action;
  425. #endif
  426. /* Check syntax */
  427. if (!name) {
  428. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  429. goto error;
  430. }
  431. if (!help) {
  432. fprintf(stderr, CLISH_XML_ERROR_ATTR("help"));
  433. goto error;
  434. }
  435. /* check this command doesn't already exist */
  436. old = clish_view_find_command(v, name, BOOL_FALSE);
  437. if (old) {
  438. fprintf(stderr, CLISH_XML_ERROR_STR"Duplicate COMMAND name=\"%s\".\n", name);
  439. goto error;
  440. }
  441. /* create a command */
  442. cmd = clish_view_new_command(v, name, help);
  443. clish_command__set_pview(cmd, v);
  444. /* Reference 'ref' field */
  445. if (ref) {
  446. char *saveptr = NULL;
  447. const char *delim = "@";
  448. char *view_name = NULL;
  449. char *cmdn = NULL;
  450. char *str = lub_string_dup(ref);
  451. cmdn = strtok_r(str, delim, &saveptr);
  452. if (!cmdn) {
  453. fprintf(stderr, CLISH_XML_ERROR_STR"Invalid \"ref\" attribute value.\n");
  454. lub_string_free(str);
  455. goto error;
  456. }
  457. clish_command__set_alias(cmd, cmdn); /* alias name */
  458. view_name = strtok_r(NULL, delim, &saveptr);
  459. clish_command__set_alias_view(cmd, view_name);
  460. lub_string_free(str);
  461. }
  462. /* define some specialist escape characters */
  463. if (escape_chars)
  464. clish_command__set_escape_chars(cmd, escape_chars);
  465. if (args_name) {
  466. /* define a "rest of line" argument */
  467. clish_param_t *param;
  468. /* Check syntax */
  469. if (!args_help) {
  470. fprintf(stderr, CLISH_XML_ERROR_ATTR("args_help"));
  471. goto error;
  472. }
  473. param = clish_param_new(args_name, args_help, "__ptype_ARGS");
  474. clish_command__set_args(cmd, param);
  475. }
  476. /* define the view which this command changes to */
  477. if (view) {
  478. /* reference the next view */
  479. clish_command__set_viewname(cmd, view);
  480. }
  481. /* define the view id which this command changes to */
  482. if (viewid)
  483. clish_command__set_viewid(cmd, viewid);
  484. #ifdef LEGACY
  485. action = clish_command__get_action(cmd);
  486. /* lock */
  487. if (lock) { // Don't change anything if lock is not specified
  488. if (lub_string_nocasecmp(lock, "false") == 0)
  489. clish_action__set_lock(action, BOOL_FALSE);
  490. else
  491. clish_action__set_lock(action, BOOL_TRUE);
  492. }
  493. /* interrupt */
  494. if (interrupt) { // Don't change anything if lock is not specified
  495. if (lub_string_nocasecmp(interrupt, "true") == 0)
  496. clish_action__set_interrupt(action, BOOL_TRUE);
  497. else
  498. clish_action__set_interrupt(action, BOOL_FALSE);
  499. }
  500. #endif
  501. if (access)
  502. clish_command__set_access(cmd, access);
  503. //process_command_end:
  504. res = process_children(shell, element, cmd);
  505. error:
  506. clish_xml_release(access);
  507. clish_xml_release(name);
  508. clish_xml_release(help);
  509. clish_xml_release(view);
  510. clish_xml_release(viewid);
  511. clish_xml_release(escape_chars);
  512. clish_xml_release(args_name);
  513. clish_xml_release(args_help);
  514. clish_xml_release(ref);
  515. #ifdef LEGACY
  516. clish_xml_release(lock);
  517. clish_xml_release(interrupt);
  518. #endif
  519. return res;
  520. }
  521. /* ------------------------------------------------------ */
  522. static int process_startup(clish_shell_t *shell, clish_xmlnode_t *element,
  523. void *parent)
  524. {
  525. clish_view_t *v = (clish_view_t *) parent;
  526. clish_command_t *cmd = NULL;
  527. int res = -1;
  528. char *view = clish_xmlnode_fetch_attr(element, "view");
  529. char *viewid = clish_xmlnode_fetch_attr(element, "viewid");
  530. char *default_shebang =
  531. clish_xmlnode_fetch_attr(element, "default_shebang");
  532. char *timeout = clish_xmlnode_fetch_attr(element, "timeout");
  533. char *default_plugin = clish_xmlnode_fetch_attr(element,
  534. "default_plugin");
  535. #ifdef LEGACY
  536. char *lock = clish_xmlnode_fetch_attr(element, "lock");
  537. char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
  538. clish_action_t *action;
  539. #endif
  540. /* Check syntax */
  541. if (!view) {
  542. fprintf(stderr, CLISH_XML_ERROR_ATTR("view"));
  543. goto error;
  544. }
  545. if (shell->startup) {
  546. fprintf(stderr, CLISH_XML_ERROR_STR"STARTUP tag duplication.\n");
  547. goto error;
  548. }
  549. /* create a command with NULL help */
  550. cmd = clish_view_new_command(v, "startup", NULL);
  551. clish_command__set_internal(cmd, BOOL_TRUE);
  552. /* reference the next view */
  553. clish_command__set_viewname(cmd, view);
  554. /* define the view id which this command changes to */
  555. if (viewid)
  556. clish_command__set_viewid(cmd, viewid);
  557. if (default_shebang)
  558. clish_shell__set_default_shebang(shell, default_shebang);
  559. if (timeout) {
  560. unsigned int to = 0;
  561. lub_conv_atoui(timeout, &to, 0);
  562. clish_shell__set_idle_timeout(shell, to);
  563. }
  564. #ifdef LEGACY
  565. action = clish_command__get_action(cmd);
  566. /* lock */
  567. if (lock) { // Don't change anything if lock is not specified
  568. if (lub_string_nocasecmp(lock, "false") == 0)
  569. clish_action__set_lock(action, BOOL_FALSE);
  570. else
  571. clish_action__set_lock(action, BOOL_TRUE);
  572. }
  573. /* interrupt */
  574. if (interrupt) { // Don't change anything if lock is not specified
  575. if (lub_string_nocasecmp(interrupt, "true") == 0)
  576. clish_action__set_interrupt(action, BOOL_TRUE);
  577. else
  578. clish_action__set_interrupt(action, BOOL_FALSE);
  579. }
  580. #endif
  581. /* If we need the default plugin */
  582. if (default_plugin && (0 == strcmp(default_plugin, "false")))
  583. shell->default_plugin = BOOL_FALSE;
  584. /* remember this command */
  585. shell->startup = cmd;
  586. res = process_children(shell, element, cmd);
  587. error:
  588. clish_xml_release(view);
  589. clish_xml_release(viewid);
  590. clish_xml_release(default_shebang);
  591. clish_xml_release(timeout);
  592. #ifdef LEGACY
  593. clish_xml_release(lock);
  594. clish_xml_release(interrupt);
  595. #endif
  596. return res;
  597. }
  598. /* ------------------------------------------------------ */
  599. static int process_param(clish_shell_t *shell, clish_xmlnode_t *element,
  600. void *parent)
  601. {
  602. clish_command_t *cmd = NULL;
  603. clish_param_t *p_param = NULL;
  604. clish_xmlnode_t *pelement;
  605. clish_param_t *param;
  606. char *pname;
  607. int res = -1;
  608. char *name = clish_xmlnode_fetch_attr(element, "name");
  609. char *help = clish_xmlnode_fetch_attr(element, "help");
  610. char *ptype = clish_xmlnode_fetch_attr(element, "ptype");
  611. char *prefix = clish_xmlnode_fetch_attr(element, "prefix");
  612. char *defval = clish_xmlnode_fetch_attr(element, "default");
  613. char *mode = clish_xmlnode_fetch_attr(element, "mode");
  614. char *optional = clish_xmlnode_fetch_attr(element, "optional");
  615. char *order = clish_xmlnode_fetch_attr(element, "order");
  616. char *value = clish_xmlnode_fetch_attr(element, "value");
  617. char *hidden = clish_xmlnode_fetch_attr(element, "hidden");
  618. char *test = clish_xmlnode_fetch_attr(element, "test");
  619. char *completion = clish_xmlnode_fetch_attr(element, "completion");
  620. char *access = clish_xmlnode_fetch_attr(element, "access");
  621. /* The PARAM can be child of COMMAND or another PARAM */
  622. pelement = clish_xmlnode_parent(element);
  623. pname = clish_xmlnode_get_all_name(pelement);
  624. if (pname && lub_string_nocasecmp(pname, "PARAM") == 0)
  625. p_param = (clish_param_t *)parent;
  626. else
  627. cmd = (clish_command_t *)parent;
  628. if (pname)
  629. free(pname);
  630. if (!cmd && !p_param)
  631. goto error;
  632. /* Check syntax */
  633. if (cmd && (cmd == shell->startup)) {
  634. fprintf(stderr, CLISH_XML_ERROR_STR"STARTUP can't contain PARAMs.\n");
  635. goto error;
  636. }
  637. if (!name) {
  638. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  639. goto error;
  640. }
  641. if (!help) {
  642. fprintf(stderr, CLISH_XML_ERROR_ATTR("help"));
  643. goto error;
  644. }
  645. if (!ptype) {
  646. fprintf(stderr, CLISH_XML_ERROR_ATTR("ptype"));
  647. goto error;
  648. }
  649. param = clish_param_new(name, help, ptype);
  650. /* If prefix is set clish will emulate old optional
  651. * command syntax over newer optional command mechanism.
  652. * It will create nested PARAM.
  653. */
  654. if (prefix) {
  655. const char *ptype_name = "__ptype_SUBCOMMAND";
  656. clish_param_t *opt_param = NULL;
  657. char *str = NULL;
  658. clish_ptype_t *tmp;
  659. /* Create a ptype for prefix-named subcommand that
  660. * will contain the nested optional parameter. The
  661. * name of ptype is hardcoded. It's not good but
  662. * it's only the service ptype.
  663. */
  664. tmp = (clish_ptype_t *)lub_bintree_find(
  665. &shell->ptype_tree, ptype_name);
  666. if (!tmp)
  667. tmp = clish_shell_find_create_ptype(shell,
  668. ptype_name, "Option", "[^\\\\]+",
  669. CLISH_PTYPE_REGEXP, CLISH_PTYPE_NONE);
  670. assert(tmp);
  671. lub_string_cat(&str, "_prefix_");
  672. lub_string_cat(&str, name);
  673. opt_param = clish_param_new(str, help, ptype_name);
  674. lub_string_free(str);
  675. clish_param__set_mode(opt_param,
  676. CLISH_PARAM_SUBCOMMAND);
  677. clish_param__set_value(opt_param, prefix);
  678. clish_param__set_optional(opt_param, BOOL_TRUE);
  679. if (test)
  680. clish_param__set_test(opt_param, test);
  681. /* Add the parameter to the command */
  682. if (cmd)
  683. clish_command_insert_param(cmd, opt_param);
  684. /* Add the parameter to the param */
  685. if (p_param)
  686. clish_param_insert_param(p_param, opt_param);
  687. /* Unset cmd and set parent param to opt_param */
  688. cmd = NULL;
  689. p_param = opt_param;
  690. }
  691. if (defval)
  692. clish_param__set_defval(param, defval);
  693. if (hidden && lub_string_nocasecmp(hidden, "true") == 0)
  694. clish_param__set_hidden(param, BOOL_TRUE);
  695. else
  696. clish_param__set_hidden(param, BOOL_FALSE);
  697. if (mode) {
  698. if (lub_string_nocasecmp(mode, "switch") == 0) {
  699. clish_param__set_mode(param,
  700. CLISH_PARAM_SWITCH);
  701. /* Force hidden attribute */
  702. clish_param__set_hidden(param, BOOL_TRUE);
  703. } else if (lub_string_nocasecmp(mode, "subcommand") == 0)
  704. clish_param__set_mode(param,
  705. CLISH_PARAM_SUBCOMMAND);
  706. else
  707. clish_param__set_mode(param,
  708. CLISH_PARAM_COMMON);
  709. }
  710. if (optional && lub_string_nocasecmp(optional, "true") == 0)
  711. clish_param__set_optional(param, BOOL_TRUE);
  712. else
  713. clish_param__set_optional(param, BOOL_FALSE);
  714. if (order && lub_string_nocasecmp(order, "true") == 0)
  715. clish_param__set_order(param, BOOL_TRUE);
  716. else
  717. clish_param__set_order(param, BOOL_FALSE);
  718. if (value) {
  719. clish_param__set_value(param, value);
  720. /* Force mode to subcommand */
  721. clish_param__set_mode(param,
  722. CLISH_PARAM_SUBCOMMAND);
  723. }
  724. if (test && !prefix)
  725. clish_param__set_test(param, test);
  726. if (completion)
  727. clish_param__set_completion(param, completion);
  728. if (access)
  729. clish_param__set_access(param, access);
  730. /* Add the parameter to the command */
  731. if (cmd)
  732. clish_command_insert_param(cmd, param);
  733. /* Add the parameter to the param */
  734. if (p_param)
  735. clish_param_insert_param(p_param, param);
  736. res = process_children(shell, element, param);
  737. error:
  738. clish_xml_release(name);
  739. clish_xml_release(help);
  740. clish_xml_release(ptype);
  741. clish_xml_release(prefix);
  742. clish_xml_release(defval);
  743. clish_xml_release(mode);
  744. clish_xml_release(optional);
  745. clish_xml_release(order);
  746. clish_xml_release(value);
  747. clish_xml_release(hidden);
  748. clish_xml_release(test);
  749. clish_xml_release(completion);
  750. clish_xml_release(access);
  751. return res;
  752. }
  753. /* ------------------------------------------------------ */
  754. static int process_action(clish_shell_t *shell, clish_xmlnode_t *element,
  755. void *parent)
  756. {
  757. clish_action_t *action = NULL;
  758. char *builtin = clish_xmlnode_fetch_attr(element, "builtin");
  759. char *shebang = clish_xmlnode_fetch_attr(element, "shebang");
  760. char *lock = clish_xmlnode_fetch_attr(element, "lock");
  761. char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
  762. char *interactive = clish_xmlnode_fetch_attr(element, "interactive");
  763. clish_xmlnode_t *pelement = clish_xmlnode_parent(element);
  764. char *pname = clish_xmlnode_get_all_name(pelement);
  765. char *text;
  766. clish_sym_t *sym = NULL;
  767. if (pname && lub_string_nocasecmp(pname, "VAR") == 0)
  768. action = clish_var__get_action((clish_var_t *)parent);
  769. else if (pname && lub_string_nocasecmp(pname, "PTYPE") == 0)
  770. action = clish_ptype__get_action((clish_ptype_t *)parent);
  771. else
  772. action = clish_command__get_action((clish_command_t *)parent);
  773. if (pname)
  774. free(pname);
  775. text = clish_xmlnode_get_all_content(element);
  776. if (text && *text) {
  777. /* store the action */
  778. clish_action__set_script(action, text);
  779. }
  780. if (text)
  781. free(text);
  782. if (builtin)
  783. sym = clish_shell_add_unresolved_sym(shell, builtin,
  784. CLISH_SYM_TYPE_ACTION);
  785. else
  786. sym = shell->hooks[CLISH_SYM_TYPE_ACTION];
  787. clish_action__set_builtin(action, sym);
  788. if (shebang)
  789. clish_action__set_shebang(action, shebang);
  790. /* lock */
  791. if (lock && lub_string_nocasecmp(lock, "false") == 0)
  792. clish_action__set_lock(action, BOOL_FALSE);
  793. /* interrupt */
  794. if (interrupt && lub_string_nocasecmp(interrupt, "true") == 0)
  795. clish_action__set_interrupt(action, BOOL_TRUE);
  796. clish_xml_release(builtin);
  797. clish_xml_release(shebang);
  798. clish_xml_release(lock);
  799. clish_xml_release(interrupt);
  800. clish_xml_release(interactive);
  801. return 0;
  802. }
  803. /* ------------------------------------------------------ */
  804. static int process_detail(clish_shell_t *shell, clish_xmlnode_t *element,
  805. void *parent)
  806. {
  807. clish_command_t *cmd = (clish_command_t *) parent;
  808. /* read the following text element */
  809. char *text = clish_xmlnode_get_all_content(element);
  810. if (text && *text) {
  811. /* store the action */
  812. clish_command__set_detail(cmd, text);
  813. }
  814. if (text)
  815. free(text);
  816. shell = shell; /* Happy compiler */
  817. return 0;
  818. }
  819. /* ------------------------------------------------------ */
  820. static int process_namespace(clish_shell_t *shell, clish_xmlnode_t *element,
  821. void *parent)
  822. {
  823. clish_view_t *v = (clish_view_t *)parent;
  824. clish_nspace_t *nspace = NULL;
  825. int res = -1;
  826. char *view = clish_xmlnode_fetch_attr(element, "ref");
  827. char *prefix = clish_xmlnode_fetch_attr(element, "prefix");
  828. char *prefix_help = clish_xmlnode_fetch_attr(element, "prefix_help");
  829. char *help = clish_xmlnode_fetch_attr(element, "help");
  830. char *completion = clish_xmlnode_fetch_attr(element, "completion");
  831. char *context_help = clish_xmlnode_fetch_attr(element, "context_help");
  832. char *inherit = clish_xmlnode_fetch_attr(element, "inherit");
  833. char *access = clish_xmlnode_fetch_attr(element, "access");
  834. /* Check syntax */
  835. if (!view) {
  836. fprintf(stderr, CLISH_XML_ERROR_ATTR("ref"));
  837. goto error;
  838. }
  839. clish_view_t *ref_view = clish_shell_find_view(shell, view);
  840. /* Don't include itself without prefix */
  841. if ((ref_view == v) && !prefix)
  842. goto process_namespace_end;
  843. nspace = clish_nspace_new(view);
  844. clish_view_insert_nspace(v, nspace);
  845. if (prefix) {
  846. clish_nspace__set_prefix(nspace, prefix);
  847. if (prefix_help)
  848. clish_nspace_create_prefix_cmd(nspace,
  849. "prefix",
  850. prefix_help);
  851. else
  852. clish_nspace_create_prefix_cmd(nspace,
  853. "prefix",
  854. "Prefix for the imported commands.");
  855. }
  856. if (help && lub_string_nocasecmp(help, "true") == 0)
  857. clish_nspace__set_help(nspace, BOOL_TRUE);
  858. else
  859. clish_nspace__set_help(nspace, BOOL_FALSE);
  860. if (completion && lub_string_nocasecmp(completion, "false") == 0)
  861. clish_nspace__set_completion(nspace, BOOL_FALSE);
  862. else
  863. clish_nspace__set_completion(nspace, BOOL_TRUE);
  864. if (context_help && lub_string_nocasecmp(context_help, "true") == 0)
  865. clish_nspace__set_context_help(nspace, BOOL_TRUE);
  866. else
  867. clish_nspace__set_context_help(nspace, BOOL_FALSE);
  868. if (inherit && lub_string_nocasecmp(inherit, "false") == 0)
  869. clish_nspace__set_inherit(nspace, BOOL_FALSE);
  870. else
  871. clish_nspace__set_inherit(nspace, BOOL_TRUE);
  872. if (access)
  873. clish_nspace__set_access(nspace, access);
  874. process_namespace_end:
  875. res = 0;
  876. error:
  877. clish_xml_release(view);
  878. clish_xml_release(prefix);
  879. clish_xml_release(prefix_help);
  880. clish_xml_release(help);
  881. clish_xml_release(completion);
  882. clish_xml_release(context_help);
  883. clish_xml_release(inherit);
  884. clish_xml_release(access);
  885. return res;
  886. }
  887. /* ------------------------------------------------------ */
  888. static int process_config(clish_shell_t *shell, clish_xmlnode_t *element,
  889. void *parent)
  890. {
  891. clish_command_t *cmd = (clish_command_t *)parent;
  892. clish_config_t *config;
  893. if (!cmd)
  894. return 0;
  895. config = clish_command__get_config(cmd);
  896. /* read the following text element */
  897. char *operation = clish_xmlnode_fetch_attr(element, "operation");
  898. char *priority = clish_xmlnode_fetch_attr(element, "priority");
  899. char *pattern = clish_xmlnode_fetch_attr(element, "pattern");
  900. char *file = clish_xmlnode_fetch_attr(element, "file");
  901. char *splitter = clish_xmlnode_fetch_attr(element, "splitter");
  902. char *seq = clish_xmlnode_fetch_attr(element, "sequence");
  903. char *unique = clish_xmlnode_fetch_attr(element, "unique");
  904. char *depth = clish_xmlnode_fetch_attr(element, "depth");
  905. if (operation && !lub_string_nocasecmp(operation, "unset"))
  906. clish_config__set_op(config, CLISH_CONFIG_UNSET);
  907. else if (operation && !lub_string_nocasecmp(operation, "none"))
  908. clish_config__set_op(config, CLISH_CONFIG_NONE);
  909. else if (operation && !lub_string_nocasecmp(operation, "dump"))
  910. clish_config__set_op(config, CLISH_CONFIG_DUMP);
  911. else {
  912. clish_config__set_op(config, CLISH_CONFIG_SET);
  913. /* The priority if no clearly specified */
  914. clish_config__set_priority(config, 0x7f00);
  915. }
  916. if (priority) {
  917. unsigned short pri = 0;
  918. lub_conv_atous(priority, &pri, 0);
  919. clish_config__set_priority(config, pri);
  920. }
  921. if (pattern)
  922. clish_config__set_pattern(config, pattern);
  923. else
  924. clish_config__set_pattern(config, "^${__cmd}");
  925. if (file)
  926. clish_config__set_file(config, file);
  927. if (splitter && lub_string_nocasecmp(splitter, "false") == 0)
  928. clish_config__set_splitter(config, BOOL_FALSE);
  929. else
  930. clish_config__set_splitter(config, BOOL_TRUE);
  931. if (unique && lub_string_nocasecmp(unique, "false") == 0)
  932. clish_config__set_unique(config, BOOL_FALSE);
  933. else
  934. clish_config__set_unique(config, BOOL_TRUE);
  935. if (seq)
  936. clish_config__set_seq(config, seq);
  937. else
  938. /* The entries without sequence cannot be non-unique */
  939. clish_config__set_unique(config, BOOL_TRUE);
  940. if (depth)
  941. clish_config__set_depth(config, depth);
  942. clish_xml_release(operation);
  943. clish_xml_release(priority);
  944. clish_xml_release(pattern);
  945. clish_xml_release(file);
  946. clish_xml_release(splitter);
  947. clish_xml_release(seq);
  948. clish_xml_release(unique);
  949. clish_xml_release(depth);
  950. shell = shell; /* Happy compiler */
  951. return 0;
  952. }
  953. /* ------------------------------------------------------ */
  954. static int process_var(clish_shell_t *shell, clish_xmlnode_t *element,
  955. void *parent)
  956. {
  957. clish_var_t *var = NULL;
  958. int res = -1;
  959. char *name = clish_xmlnode_fetch_attr(element, "name");
  960. char *dynamic = clish_xmlnode_fetch_attr(element, "dynamic");
  961. char *value = clish_xmlnode_fetch_attr(element, "value");
  962. /* Check syntax */
  963. if (!name) {
  964. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  965. goto error;
  966. }
  967. /* Check if this var doesn't already exist */
  968. var = (clish_var_t *)lub_bintree_find(&shell->var_tree, name);
  969. if (var) {
  970. fprintf(stderr, CLISH_XML_ERROR_STR"Duplicate VAR name=\"%s\".\n", name);
  971. goto error;
  972. }
  973. /* Create var instance */
  974. var = clish_var_new(name);
  975. lub_bintree_insert(&shell->var_tree, var);
  976. if (dynamic && lub_string_nocasecmp(dynamic, "true") == 0)
  977. clish_var__set_dynamic(var, BOOL_TRUE);
  978. if (value)
  979. clish_var__set_value(var, value);
  980. res = process_children(shell, element, var);
  981. error:
  982. clish_xml_release(name);
  983. clish_xml_release(dynamic);
  984. clish_xml_release(value);
  985. parent = parent; /* Happy compiler */
  986. return res;
  987. }
  988. /* ------------------------------------------------------ */
  989. static int process_wdog(clish_shell_t *shell,
  990. clish_xmlnode_t *element, void *parent)
  991. {
  992. clish_view_t *v = (clish_view_t *)parent;
  993. clish_command_t *cmd = NULL;
  994. int res = -1;
  995. /* Check syntax */
  996. if (shell->wdog) {
  997. fprintf(stderr, CLISH_XML_ERROR_STR"WATCHDOG tag duplication.\n");
  998. goto error;
  999. }
  1000. /* Create a command with NULL help */
  1001. cmd = clish_view_new_command(v, "watchdog", NULL);
  1002. #ifdef LEGACY
  1003. // Legacy watchdog has lockless ACTION
  1004. clish_action__set_lock(clish_command__get_action(cmd), BOOL_FALSE);
  1005. #endif
  1006. /* Remember this command */
  1007. shell->wdog = cmd;
  1008. res = process_children(shell, element, cmd);
  1009. error:
  1010. return res;
  1011. }
  1012. /* ------------------------------------------------------ */
  1013. static int process_hotkey(clish_shell_t *shell, clish_xmlnode_t *element,
  1014. void *parent)
  1015. {
  1016. clish_view_t *v = (clish_view_t *)parent;
  1017. int res = -1;
  1018. char *key = clish_xmlnode_fetch_attr(element, "key");
  1019. char *cmd = clish_xmlnode_fetch_attr(element, "cmd");
  1020. /* Check syntax */
  1021. if (!key) {
  1022. fprintf(stderr, CLISH_XML_ERROR_ATTR("key"));
  1023. goto error;
  1024. }
  1025. if (!cmd) {
  1026. fprintf(stderr, CLISH_XML_ERROR_ATTR("cmd"));
  1027. goto error;
  1028. }
  1029. clish_view_insert_hotkey(v, key, cmd);
  1030. res = 0;
  1031. error:
  1032. clish_xml_release(key);
  1033. clish_xml_release(cmd);
  1034. shell = shell; /* Happy compiler */
  1035. return res;
  1036. }
  1037. /* ------------------------------------------------------ */
  1038. static int process_plugin(clish_shell_t *shell, clish_xmlnode_t *element,
  1039. void *parent)
  1040. {
  1041. clish_plugin_t *plugin;
  1042. char *file = clish_xmlnode_fetch_attr(element, "file");
  1043. char *name = clish_xmlnode_fetch_attr(element, "name");
  1044. char *alias = clish_xmlnode_fetch_attr(element, "alias");
  1045. char *rtld_global = clish_xmlnode_fetch_attr(element, "rtld_global");
  1046. int res = -1;
  1047. char *text;
  1048. /* Check syntax */
  1049. if (!name) {
  1050. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  1051. goto error;
  1052. }
  1053. plugin = clish_shell_find_plugin(shell, name);
  1054. if (plugin) {
  1055. fprintf(stderr,
  1056. CLISH_XML_ERROR_STR"PLUGIN %s duplication.\n", name);
  1057. goto error;
  1058. }
  1059. plugin = clish_plugin_new(name);
  1060. lub_list_add(shell->plugins, plugin);
  1061. if (alias && *alias)
  1062. clish_plugin__set_alias(plugin, alias);
  1063. if (file && *file)
  1064. clish_plugin__set_file(plugin, file);
  1065. if (rtld_global && lub_string_nocasecmp(rtld_global, "true") == 0)
  1066. clish_plugin__set_rtld_global(plugin, BOOL_TRUE);
  1067. /* Get PLUGIN body content */
  1068. text = clish_xmlnode_get_all_content(element);
  1069. if (text && *text)
  1070. clish_plugin__set_conf(plugin, text);
  1071. if (text)
  1072. free(text);
  1073. res = 0;
  1074. error:
  1075. clish_xml_release(file);
  1076. clish_xml_release(name);
  1077. clish_xml_release(alias);
  1078. clish_xml_release(rtld_global);
  1079. parent = parent; /* Happy compiler */
  1080. return res;
  1081. }
  1082. /* ------------------------------------------------------ */
  1083. static int process_hook(clish_shell_t *shell, clish_xmlnode_t *element,
  1084. void *parent)
  1085. {
  1086. char *name = clish_xmlnode_fetch_attr(element, "name");
  1087. char *builtin = clish_xmlnode_fetch_attr(element, "builtin");
  1088. int res = -1;
  1089. int type = CLISH_SYM_TYPE_NONE;
  1090. /* Check syntax */
  1091. if (!name) {
  1092. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  1093. goto error;
  1094. }
  1095. /* Find out HOOK type */
  1096. if (!strcmp(name, "action"))
  1097. type = CLISH_SYM_TYPE_ACTION;
  1098. else if (!strcmp(name, "access"))
  1099. type = CLISH_SYM_TYPE_ACCESS;
  1100. else if (!strcmp(name, "config"))
  1101. type = CLISH_SYM_TYPE_CONFIG;
  1102. else if (!strcmp(name, "log"))
  1103. type = CLISH_SYM_TYPE_LOG;
  1104. if (CLISH_SYM_TYPE_NONE == type) {
  1105. fprintf(stderr, CLISH_XML_ERROR_STR"Unknown HOOK name %s.\n", name);
  1106. goto error;
  1107. }
  1108. /* Check duplicate HOOK tag */
  1109. if (shell->hooks_use[type]) {
  1110. fprintf(stderr,
  1111. CLISH_XML_ERROR_STR"HOOK %s duplication.\n", name);
  1112. goto error;
  1113. }
  1114. shell->hooks_use[type] = BOOL_TRUE;
  1115. clish_sym__set_name(shell->hooks[type], builtin);
  1116. res = 0;
  1117. error:
  1118. clish_xml_release(name);
  1119. clish_xml_release(builtin);
  1120. parent = parent; /* Happy compiler */
  1121. return res;
  1122. }
  1123. /* ------------------------------------------------------ */