shell_xml.c 32 KB

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