shell_xml.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253
  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. "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. char *alias_name = NULL;
  367. clish_view_t *alias_view = NULL;
  368. int res = -1;
  369. char *access = clish_xmlnode_fetch_attr(element, "access");
  370. char *name = clish_xmlnode_fetch_attr(element, "name");
  371. char *help = clish_xmlnode_fetch_attr(element, "help");
  372. char *view = clish_xmlnode_fetch_attr(element, "view");
  373. char *viewid = clish_xmlnode_fetch_attr(element, "viewid");
  374. char *escape_chars = clish_xmlnode_fetch_attr(element, "escape_chars");
  375. char *args_name = clish_xmlnode_fetch_attr(element, "args");
  376. char *args_help = clish_xmlnode_fetch_attr(element, "args_help");
  377. char *lock = clish_xmlnode_fetch_attr(element, "lock");
  378. char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
  379. char *ref = clish_xmlnode_fetch_attr(element, "ref");
  380. /* Check syntax */
  381. if (!name) {
  382. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  383. goto error;
  384. }
  385. if (!help) {
  386. fprintf(stderr, CLISH_XML_ERROR_ATTR("help"));
  387. goto error;
  388. }
  389. /* check this command doesn't already exist */
  390. old = clish_view_find_command(v, name, BOOL_FALSE);
  391. if (old) {
  392. fprintf(stderr, CLISH_XML_ERROR_STR"Duplicate COMMAND name=\"%s\".\n", name);
  393. goto error;
  394. }
  395. /* Reference 'ref' field */
  396. if (ref) {
  397. char *saveptr = NULL;
  398. const char *delim = "@";
  399. char *view_name = NULL;
  400. char *cmdn = NULL;
  401. char *str = lub_string_dup(ref);
  402. cmdn = strtok_r(str, delim, &saveptr);
  403. if (!cmdn) {
  404. fprintf(stderr, CLISH_XML_ERROR_STR"Invalid \"ref\" attribute value.\n");
  405. lub_string_free(str);
  406. goto error;
  407. }
  408. alias_name = lub_string_dup(cmdn);
  409. view_name = strtok_r(NULL, delim, &saveptr);
  410. if (!view_name)
  411. alias_view = v;
  412. else
  413. alias_view = clish_shell_find_create_view(shell,
  414. view_name, NULL);
  415. lub_string_free(str);
  416. }
  417. /* create a command */
  418. cmd = clish_view_new_command(v, name, help);
  419. clish_command__set_pview(cmd, v);
  420. /* define some specialist escape characters */
  421. if (escape_chars)
  422. clish_command__set_escape_chars(cmd, escape_chars);
  423. if (args_name) {
  424. /* define a "rest of line" argument */
  425. clish_param_t *param;
  426. clish_ptype_t *tmp = NULL;
  427. /* Check syntax */
  428. if (!args_help) {
  429. fprintf(stderr, CLISH_XML_ERROR_ATTR("args_help"));
  430. goto error;
  431. }
  432. tmp = clish_shell_find_ptype(shell, "internal_ARGS");
  433. assert(tmp);
  434. param = clish_param_new(args_name, args_help, tmp);
  435. clish_command__set_args(cmd, param);
  436. }
  437. /* define the view which this command changes to */
  438. if (view) {
  439. /* reference the next view */
  440. clish_command__set_viewname(cmd, view);
  441. }
  442. /* define the view id which this command changes to */
  443. if (viewid)
  444. clish_command__set_viewid(cmd, viewid);
  445. /* lock field */
  446. if (lock && lub_string_nocasecmp(lock, "false") == 0)
  447. clish_command__set_lock(cmd, BOOL_FALSE);
  448. else
  449. clish_command__set_lock(cmd, BOOL_TRUE);
  450. /* interrupt field */
  451. if (interrupt && lub_string_nocasecmp(interrupt, "true") == 0)
  452. clish_command__set_interrupt(cmd, BOOL_TRUE);
  453. else
  454. clish_command__set_interrupt(cmd, BOOL_FALSE);
  455. if (access)
  456. clish_command__set_access(cmd, access);
  457. /* Set alias */
  458. if (alias_name) {
  459. /* Check syntax */
  460. if (!alias_view) {
  461. fprintf(stderr, CLISH_XML_ERROR_STR"Can't find reference VIEW.\n");
  462. lub_string_free(alias_name);
  463. goto error;
  464. }
  465. if ((alias_view == v) && (!strcmp(alias_name, name))) {
  466. fprintf(stderr, CLISH_XML_ERROR_STR"The COMMAND with reference to itself.\n");
  467. lub_string_free(alias_name);
  468. goto error;
  469. }
  470. clish_command__set_alias(cmd, alias_name);
  471. clish_command__set_alias_view(cmd, alias_view);
  472. lub_string_free(alias_name);
  473. }
  474. //process_command_end:
  475. res = process_children(shell, element, cmd);
  476. error:
  477. clish_xml_release(access);
  478. clish_xml_release(name);
  479. clish_xml_release(help);
  480. clish_xml_release(view);
  481. clish_xml_release(viewid);
  482. clish_xml_release(escape_chars);
  483. clish_xml_release(args_name);
  484. clish_xml_release(args_help);
  485. clish_xml_release(lock);
  486. clish_xml_release(interrupt);
  487. clish_xml_release(ref);
  488. return res;
  489. }
  490. /* ------------------------------------------------------ */
  491. static int process_startup(clish_shell_t *shell, clish_xmlnode_t *element,
  492. void *parent)
  493. {
  494. clish_view_t *v = (clish_view_t *) parent;
  495. clish_command_t *cmd = NULL;
  496. int res = -1;
  497. char *view = clish_xmlnode_fetch_attr(element, "view");
  498. char *viewid = clish_xmlnode_fetch_attr(element, "viewid");
  499. char *default_shebang =
  500. clish_xmlnode_fetch_attr(element, "default_shebang");
  501. char *timeout = clish_xmlnode_fetch_attr(element, "timeout");
  502. char *lock = clish_xmlnode_fetch_attr(element, "lock");
  503. char *interrupt = clish_xmlnode_fetch_attr(element, "interrupt");
  504. char *default_plugin = clish_xmlnode_fetch_attr(element,
  505. "default_plugin");
  506. /* Check syntax */
  507. if (!view) {
  508. fprintf(stderr, CLISH_XML_ERROR_ATTR("view"));
  509. goto error;
  510. }
  511. if (shell->startup) {
  512. fprintf(stderr, CLISH_XML_ERROR_STR"STARTUP tag duplication.\n");
  513. goto error;
  514. }
  515. /* create a command with NULL help */
  516. cmd = clish_view_new_command(v, "startup", NULL);
  517. clish_command__set_lock(cmd, BOOL_FALSE);
  518. /* reference the next view */
  519. clish_command__set_viewname(cmd, view);
  520. /* define the view id which this command changes to */
  521. if (viewid)
  522. clish_command__set_viewid(cmd, viewid);
  523. if (default_shebang)
  524. clish_shell__set_default_shebang(shell, default_shebang);
  525. if (timeout)
  526. clish_shell__set_timeout(shell, atoi(timeout));
  527. /* lock field */
  528. if (lock && lub_string_nocasecmp(lock, "false") == 0)
  529. clish_command__set_lock(cmd, BOOL_FALSE);
  530. else
  531. clish_command__set_lock(cmd, BOOL_TRUE);
  532. /* interrupt field */
  533. if (interrupt && lub_string_nocasecmp(interrupt, "true") == 0)
  534. clish_command__set_interrupt(cmd, BOOL_TRUE);
  535. else
  536. clish_command__set_interrupt(cmd, BOOL_FALSE);
  537. /* If we need the default plugin */
  538. if (default_plugin && (0 == strcmp(default_plugin, "false")))
  539. shell->default_plugin = BOOL_FALSE;
  540. /* remember this command */
  541. shell->startup = cmd;
  542. res = process_children(shell, element, cmd);
  543. error:
  544. clish_xml_release(view);
  545. clish_xml_release(viewid);
  546. clish_xml_release(default_shebang);
  547. clish_xml_release(timeout);
  548. clish_xml_release(lock);
  549. clish_xml_release(interrupt);
  550. return res;
  551. }
  552. /* ------------------------------------------------------ */
  553. static int process_param(clish_shell_t *shell, clish_xmlnode_t *element,
  554. void *parent)
  555. {
  556. clish_command_t *cmd = NULL;
  557. clish_param_t *p_param = NULL;
  558. clish_xmlnode_t *pelement;
  559. char *pname;
  560. int res = -1;
  561. pelement = clish_xmlnode_parent(element);
  562. pname = clish_xmlnode_get_all_name(pelement);
  563. if (pname && lub_string_nocasecmp(pname, "PARAM") == 0)
  564. p_param = (clish_param_t *)parent;
  565. else
  566. cmd = (clish_command_t *)parent;
  567. if (pname)
  568. free(pname);
  569. if (cmd || p_param) {
  570. char *name = clish_xmlnode_fetch_attr(element, "name");
  571. char *help = clish_xmlnode_fetch_attr(element, "help");
  572. char *ptype = clish_xmlnode_fetch_attr(element, "ptype");
  573. char *prefix = clish_xmlnode_fetch_attr(element, "prefix");
  574. char *defval = clish_xmlnode_fetch_attr(element, "default");
  575. char *mode = clish_xmlnode_fetch_attr(element, "mode");
  576. char *optional = clish_xmlnode_fetch_attr(element, "optional");
  577. char *order = clish_xmlnode_fetch_attr(element, "order");
  578. char *value = clish_xmlnode_fetch_attr(element, "value");
  579. char *hidden = clish_xmlnode_fetch_attr(element, "hidden");
  580. char *test = clish_xmlnode_fetch_attr(element, "test");
  581. char *completion = clish_xmlnode_fetch_attr(element, "completion");
  582. char *access = clish_xmlnode_fetch_attr(element, "access");
  583. clish_param_t *param;
  584. clish_ptype_t *tmp = NULL;
  585. /* Check syntax */
  586. if (cmd && (cmd == shell->startup)) {
  587. fprintf(stderr, CLISH_XML_ERROR_STR"STARTUP can't contain PARAMs.\n");
  588. goto error;
  589. }
  590. if (!name) {
  591. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  592. goto error;
  593. }
  594. if (!help) {
  595. fprintf(stderr, CLISH_XML_ERROR_ATTR("help"));
  596. goto error;
  597. }
  598. if (!ptype) {
  599. fprintf(stderr, CLISH_XML_ERROR_ATTR("ptype"));
  600. goto error;
  601. }
  602. if (*ptype) {
  603. tmp = clish_shell_find_create_ptype(shell, ptype,
  604. NULL, NULL,
  605. CLISH_PTYPE_REGEXP,
  606. CLISH_PTYPE_NONE);
  607. }
  608. param = clish_param_new(name, help, tmp);
  609. /* If prefix is set clish will emulate old optional
  610. * command syntax over newer optional command mechanism.
  611. * It will create nested PARAM.
  612. */
  613. if (prefix) {
  614. const char *ptype_name = "__SUBCOMMAND";
  615. clish_param_t *opt_param = NULL;
  616. char *str = NULL;
  617. /* Create a ptype for prefix-named subcommand that
  618. * will contain the nested optional parameter. The
  619. * name of ptype is hardcoded. It's not good but
  620. * it's only the service ptype.
  621. */
  622. tmp = (clish_ptype_t *)lub_bintree_find(
  623. &shell->ptype_tree, ptype_name);
  624. if (!tmp)
  625. tmp = clish_shell_find_create_ptype(shell,
  626. ptype_name, "Option", "[^\\\\]+",
  627. CLISH_PTYPE_REGEXP, CLISH_PTYPE_NONE);
  628. assert(tmp);
  629. lub_string_cat(&str, "_prefix_");
  630. lub_string_cat(&str, name);
  631. opt_param = clish_param_new(str, help, tmp);
  632. lub_string_free(str);
  633. clish_param__set_mode(opt_param,
  634. CLISH_PARAM_SUBCOMMAND);
  635. clish_param__set_value(opt_param, prefix);
  636. clish_param__set_optional(opt_param, BOOL_TRUE);
  637. if (test)
  638. clish_param__set_test(opt_param, test);
  639. /* add the parameter to the command */
  640. if (cmd)
  641. clish_command_insert_param(cmd, opt_param);
  642. /* add the parameter to the param */
  643. if (p_param)
  644. clish_param_insert_param(p_param, opt_param);
  645. /* Unset cmd and set parent param to opt_param */
  646. cmd = NULL;
  647. p_param = opt_param;
  648. }
  649. if (defval)
  650. clish_param__set_default(param, defval);
  651. if (hidden && lub_string_nocasecmp(hidden, "true") == 0)
  652. clish_param__set_hidden(param, BOOL_TRUE);
  653. else
  654. clish_param__set_hidden(param, BOOL_FALSE);
  655. if (mode) {
  656. if (lub_string_nocasecmp(mode, "switch") == 0) {
  657. clish_param__set_mode(param,
  658. CLISH_PARAM_SWITCH);
  659. /* Force hidden attribute */
  660. clish_param__set_hidden(param, BOOL_TRUE);
  661. } else if (lub_string_nocasecmp(mode, "subcommand") == 0)
  662. clish_param__set_mode(param,
  663. CLISH_PARAM_SUBCOMMAND);
  664. else
  665. clish_param__set_mode(param,
  666. CLISH_PARAM_COMMON);
  667. }
  668. if (optional && lub_string_nocasecmp(optional, "true") == 0)
  669. clish_param__set_optional(param, BOOL_TRUE);
  670. else
  671. clish_param__set_optional(param, BOOL_FALSE);
  672. if (order && lub_string_nocasecmp(order, "true") == 0)
  673. clish_param__set_order(param, BOOL_TRUE);
  674. else
  675. clish_param__set_order(param, BOOL_FALSE);
  676. if (value) {
  677. clish_param__set_value(param, value);
  678. /* Force mode to subcommand */
  679. clish_param__set_mode(param,
  680. CLISH_PARAM_SUBCOMMAND);
  681. }
  682. if (test && !prefix)
  683. clish_param__set_test(param, test);
  684. if (completion)
  685. clish_param__set_completion(param, completion);
  686. if (access)
  687. clish_param__set_access(param, access);
  688. /* add the parameter to the command */
  689. if (cmd)
  690. clish_command_insert_param(cmd, param);
  691. /* add the parameter to the param */
  692. if (p_param)
  693. clish_param_insert_param(p_param, param);
  694. res = process_children(shell, element, param);
  695. error:
  696. clish_xml_release(name);
  697. clish_xml_release(help);
  698. clish_xml_release(ptype);
  699. clish_xml_release(prefix);
  700. clish_xml_release(defval);
  701. clish_xml_release(mode);
  702. clish_xml_release(optional);
  703. clish_xml_release(order);
  704. clish_xml_release(value);
  705. clish_xml_release(hidden);
  706. clish_xml_release(test);
  707. clish_xml_release(completion);
  708. clish_xml_release(access);
  709. }
  710. return res;
  711. }
  712. /* ------------------------------------------------------ */
  713. static int process_action(clish_shell_t *shell, clish_xmlnode_t *element,
  714. void *parent)
  715. {
  716. clish_action_t *action = NULL;
  717. char *builtin = clish_xmlnode_fetch_attr(element, "builtin");
  718. char *shebang = clish_xmlnode_fetch_attr(element, "shebang");
  719. clish_xmlnode_t *pelement = clish_xmlnode_parent(element);
  720. char *pname = clish_xmlnode_get_all_name(pelement);
  721. char *text;
  722. clish_sym_t *sym = NULL;
  723. if (pname && lub_string_nocasecmp(pname, "VAR") == 0)
  724. action = clish_var__get_action((clish_var_t *)parent);
  725. else
  726. action = clish_command__get_action((clish_command_t *)parent);
  727. if (pname)
  728. free(pname);
  729. text = clish_xmlnode_get_all_content(element);
  730. if (text && *text) {
  731. /* store the action */
  732. clish_action__set_script(action, text);
  733. }
  734. if (text)
  735. free(text);
  736. if (builtin)
  737. sym = clish_shell_add_unresolved_sym(shell, builtin,
  738. CLISH_SYM_TYPE_ACTION);
  739. else
  740. sym = shell->hooks[CLISH_SYM_TYPE_ACTION];
  741. clish_action__set_builtin(action, sym);
  742. if (shebang)
  743. clish_action__set_shebang(action, shebang);
  744. clish_xml_release(builtin);
  745. clish_xml_release(shebang);
  746. return 0;
  747. }
  748. /* ------------------------------------------------------ */
  749. static int process_detail(clish_shell_t *shell, clish_xmlnode_t *element,
  750. void *parent)
  751. {
  752. clish_command_t *cmd = (clish_command_t *) parent;
  753. /* read the following text element */
  754. char *text = clish_xmlnode_get_all_content(element);
  755. if (text && *text) {
  756. /* store the action */
  757. clish_command__set_detail(cmd, text);
  758. }
  759. if (text)
  760. free(text);
  761. shell = shell; /* Happy compiler */
  762. return 0;
  763. }
  764. /* ------------------------------------------------------ */
  765. static int process_namespace(clish_shell_t *shell, clish_xmlnode_t *element,
  766. void *parent)
  767. {
  768. clish_view_t *v = (clish_view_t *)parent;
  769. clish_nspace_t *nspace = NULL;
  770. int res = -1;
  771. char *view = clish_xmlnode_fetch_attr(element, "ref");
  772. char *prefix = clish_xmlnode_fetch_attr(element, "prefix");
  773. char *prefix_help = clish_xmlnode_fetch_attr(element, "prefix_help");
  774. char *help = clish_xmlnode_fetch_attr(element, "help");
  775. char *completion = clish_xmlnode_fetch_attr(element, "completion");
  776. char *context_help = clish_xmlnode_fetch_attr(element, "context_help");
  777. char *inherit = clish_xmlnode_fetch_attr(element, "inherit");
  778. char *access = clish_xmlnode_fetch_attr(element, "access");
  779. /* Check syntax */
  780. if (!view) {
  781. fprintf(stderr, CLISH_XML_ERROR_ATTR("ref"));
  782. goto error;
  783. }
  784. clish_view_t *ref_view = clish_shell_find_view(shell, view);
  785. /* Don't include itself without prefix */
  786. if ((ref_view == v) && !prefix)
  787. goto process_namespace_end;
  788. nspace = clish_nspace_new(view);
  789. clish_view_insert_nspace(v, nspace);
  790. if (prefix) {
  791. clish_nspace__set_prefix(nspace, prefix);
  792. if (prefix_help)
  793. clish_nspace_create_prefix_cmd(nspace,
  794. "prefix",
  795. prefix_help);
  796. else
  797. clish_nspace_create_prefix_cmd(nspace,
  798. "prefix",
  799. "Prefix for the imported commands.");
  800. }
  801. if (help && lub_string_nocasecmp(help, "true") == 0)
  802. clish_nspace__set_help(nspace, BOOL_TRUE);
  803. else
  804. clish_nspace__set_help(nspace, BOOL_FALSE);
  805. if (completion && lub_string_nocasecmp(completion, "false") == 0)
  806. clish_nspace__set_completion(nspace, BOOL_FALSE);
  807. else
  808. clish_nspace__set_completion(nspace, BOOL_TRUE);
  809. if (context_help && lub_string_nocasecmp(context_help, "true") == 0)
  810. clish_nspace__set_context_help(nspace, BOOL_TRUE);
  811. else
  812. clish_nspace__set_context_help(nspace, BOOL_FALSE);
  813. if (inherit && lub_string_nocasecmp(inherit, "false") == 0)
  814. clish_nspace__set_inherit(nspace, BOOL_FALSE);
  815. else
  816. clish_nspace__set_inherit(nspace, BOOL_TRUE);
  817. if (access)
  818. clish_nspace__set_access(nspace, access);
  819. process_namespace_end:
  820. res = 0;
  821. error:
  822. clish_xml_release(view);
  823. clish_xml_release(prefix);
  824. clish_xml_release(prefix_help);
  825. clish_xml_release(help);
  826. clish_xml_release(completion);
  827. clish_xml_release(context_help);
  828. clish_xml_release(inherit);
  829. clish_xml_release(access);
  830. return res;
  831. }
  832. /* ------------------------------------------------------ */
  833. static int process_config(clish_shell_t *shell, clish_xmlnode_t *element,
  834. void *parent)
  835. {
  836. clish_command_t *cmd = (clish_command_t *)parent;
  837. clish_config_t *config;
  838. if (!cmd)
  839. return 0;
  840. config = clish_command__get_config(cmd);
  841. /* read the following text element */
  842. char *operation = clish_xmlnode_fetch_attr(element, "operation");
  843. char *priority = clish_xmlnode_fetch_attr(element, "priority");
  844. char *pattern = clish_xmlnode_fetch_attr(element, "pattern");
  845. char *file = clish_xmlnode_fetch_attr(element, "file");
  846. char *splitter = clish_xmlnode_fetch_attr(element, "splitter");
  847. char *seq = clish_xmlnode_fetch_attr(element, "sequence");
  848. char *unique = clish_xmlnode_fetch_attr(element, "unique");
  849. char *depth = clish_xmlnode_fetch_attr(element, "depth");
  850. if (operation && !lub_string_nocasecmp(operation, "unset"))
  851. clish_config__set_op(config, CLISH_CONFIG_UNSET);
  852. else if (operation && !lub_string_nocasecmp(operation, "none"))
  853. clish_config__set_op(config, CLISH_CONFIG_NONE);
  854. else if (operation && !lub_string_nocasecmp(operation, "dump"))
  855. clish_config__set_op(config, CLISH_CONFIG_DUMP);
  856. else {
  857. clish_config__set_op(config, CLISH_CONFIG_SET);
  858. /* The priority if no clearly specified */
  859. clish_config__set_priority(config, 0x7f00);
  860. }
  861. if (priority) {
  862. long val = 0;
  863. char *endptr;
  864. unsigned short pri;
  865. val = strtol(priority, &endptr, 0);
  866. if (endptr == priority)
  867. pri = 0;
  868. else if (val > 0xffff)
  869. pri = 0xffff;
  870. else if (val < 0)
  871. pri = 0;
  872. else
  873. pri = (unsigned short)val;
  874. clish_config__set_priority(config, pri);
  875. }
  876. if (pattern)
  877. clish_config__set_pattern(config, pattern);
  878. else
  879. clish_config__set_pattern(config, "^${__cmd}");
  880. if (file)
  881. clish_config__set_file(config, file);
  882. if (splitter && lub_string_nocasecmp(splitter, "false") == 0)
  883. clish_config__set_splitter(config, BOOL_FALSE);
  884. else
  885. clish_config__set_splitter(config, BOOL_TRUE);
  886. if (unique && lub_string_nocasecmp(unique, "false") == 0)
  887. clish_config__set_unique(config, BOOL_FALSE);
  888. else
  889. clish_config__set_unique(config, BOOL_TRUE);
  890. if (seq)
  891. clish_config__set_seq(config, seq);
  892. else
  893. /* The entries without sequence cannot be non-unique */
  894. clish_config__set_unique(config, BOOL_TRUE);
  895. if (depth)
  896. clish_config__set_depth(config, depth);
  897. clish_xml_release(operation);
  898. clish_xml_release(priority);
  899. clish_xml_release(pattern);
  900. clish_xml_release(file);
  901. clish_xml_release(splitter);
  902. clish_xml_release(seq);
  903. clish_xml_release(unique);
  904. clish_xml_release(depth);
  905. shell = shell; /* Happy compiler */
  906. return 0;
  907. }
  908. /* ------------------------------------------------------ */
  909. static int process_var(clish_shell_t *shell, clish_xmlnode_t *element,
  910. void *parent)
  911. {
  912. clish_var_t *var = NULL;
  913. int res = -1;
  914. char *name = clish_xmlnode_fetch_attr(element, "name");
  915. char *dynamic = clish_xmlnode_fetch_attr(element, "dynamic");
  916. char *value = clish_xmlnode_fetch_attr(element, "value");
  917. /* Check syntax */
  918. if (!name) {
  919. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  920. goto error;
  921. }
  922. /* Check if this var doesn't already exist */
  923. var = (clish_var_t *)lub_bintree_find(&shell->var_tree, name);
  924. if (var) {
  925. fprintf(stderr, CLISH_XML_ERROR_STR"Duplicate VAR name=\"%s\".\n", name);
  926. goto error;
  927. }
  928. /* Create var instance */
  929. var = clish_var_new(name);
  930. lub_bintree_insert(&shell->var_tree, var);
  931. if (dynamic && lub_string_nocasecmp(dynamic, "true") == 0)
  932. clish_var__set_dynamic(var, BOOL_TRUE);
  933. if (value)
  934. clish_var__set_value(var, value);
  935. res = process_children(shell, element, var);
  936. error:
  937. clish_xml_release(name);
  938. clish_xml_release(dynamic);
  939. clish_xml_release(value);
  940. parent = parent; /* Happy compiler */
  941. return res;
  942. }
  943. /* ------------------------------------------------------ */
  944. static int process_wdog(clish_shell_t *shell,
  945. clish_xmlnode_t *element, void *parent)
  946. {
  947. clish_view_t *v = (clish_view_t *)parent;
  948. clish_command_t *cmd = NULL;
  949. int res = -1;
  950. /* Check syntax */
  951. if (shell->wdog) {
  952. fprintf(stderr, CLISH_XML_ERROR_STR"WATCHDOG tag duplication.\n");
  953. goto error;
  954. }
  955. /* Create a command with NULL help */
  956. cmd = clish_view_new_command(v, "watchdog", NULL);
  957. clish_command__set_lock(cmd, BOOL_FALSE);
  958. /* Remember this command */
  959. shell->wdog = cmd;
  960. res = process_children(shell, element, cmd);
  961. error:
  962. return res;
  963. }
  964. /* ------------------------------------------------------ */
  965. static int process_hotkey(clish_shell_t *shell, clish_xmlnode_t *element,
  966. void *parent)
  967. {
  968. clish_view_t *v = (clish_view_t *)parent;
  969. int res = -1;
  970. char *key = clish_xmlnode_fetch_attr(element, "key");
  971. char *cmd = clish_xmlnode_fetch_attr(element, "cmd");
  972. /* Check syntax */
  973. if (!key) {
  974. fprintf(stderr, CLISH_XML_ERROR_ATTR("key"));
  975. goto error;
  976. }
  977. if (!cmd) {
  978. fprintf(stderr, CLISH_XML_ERROR_ATTR("cmd"));
  979. goto error;
  980. }
  981. clish_view_insert_hotkey(v, key, cmd);
  982. res = 0;
  983. error:
  984. clish_xml_release(key);
  985. clish_xml_release(cmd);
  986. shell = shell; /* Happy compiler */
  987. return res;
  988. }
  989. /* ------------------------------------------------------ */
  990. static int process_plugin(clish_shell_t *shell, clish_xmlnode_t *element,
  991. void *parent)
  992. {
  993. clish_plugin_t *plugin;
  994. char *file = clish_xmlnode_fetch_attr(element, "file");
  995. char *name = clish_xmlnode_fetch_attr(element, "name");
  996. char *alias = clish_xmlnode_fetch_attr(element, "alias");
  997. int res = -1;
  998. char *text;
  999. /* Check syntax */
  1000. if (!name) {
  1001. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  1002. goto error;
  1003. }
  1004. plugin = clish_plugin_new(name);
  1005. lub_list_add(shell->plugins, plugin);
  1006. if (alias && *alias)
  1007. clish_plugin__set_alias(plugin, alias);
  1008. if (file && *file)
  1009. clish_plugin__set_file(plugin, file);
  1010. /* Get PLUGIN body content */
  1011. text = clish_xmlnode_get_all_content(element);
  1012. if (text && *text)
  1013. clish_plugin__set_conf(plugin, text);
  1014. if (text)
  1015. free(text);
  1016. res = 0;
  1017. error:
  1018. clish_xml_release(file);
  1019. clish_xml_release(name);
  1020. clish_xml_release(alias);
  1021. parent = parent; /* Happy compiler */
  1022. return res;
  1023. }
  1024. /* ------------------------------------------------------ */
  1025. static int process_hook(clish_shell_t *shell, clish_xmlnode_t *element,
  1026. void *parent)
  1027. {
  1028. char *name = clish_xmlnode_fetch_attr(element, "name");
  1029. char *builtin = clish_xmlnode_fetch_attr(element, "builtin");
  1030. int res = -1;
  1031. int type = CLISH_SYM_TYPE_NONE;
  1032. /* Check syntax */
  1033. if (!name) {
  1034. fprintf(stderr, CLISH_XML_ERROR_ATTR("name"));
  1035. goto error;
  1036. }
  1037. /* Find out HOOK type */
  1038. if (!strcmp(name, "action"))
  1039. type = CLISH_SYM_TYPE_ACTION;
  1040. else if (!strcmp(name, "access"))
  1041. type = CLISH_SYM_TYPE_ACCESS;
  1042. else if (!strcmp(name, "config"))
  1043. type = CLISH_SYM_TYPE_CONFIG;
  1044. else if (!strcmp(name, "log"))
  1045. type = CLISH_SYM_TYPE_LOG;
  1046. if (CLISH_SYM_TYPE_NONE == type) {
  1047. fprintf(stderr, CLISH_XML_ERROR_STR"Unknown HOOK name %s.\n", name);
  1048. goto error;
  1049. }
  1050. /* Check duplicate HOOK tag */
  1051. if (shell->hooks_use[type]) {
  1052. fprintf(stderr,
  1053. CLISH_XML_ERROR_STR"HOOK %s duplication.\n", name);
  1054. goto error;
  1055. }
  1056. shell->hooks_use[type] = BOOL_TRUE;
  1057. clish_sym__set_name(shell->hooks[type], builtin);
  1058. res = 0;
  1059. error:
  1060. clish_xml_release(name);
  1061. clish_xml_release(builtin);
  1062. parent = parent; /* Happy compiler */
  1063. return res;
  1064. }
  1065. /* ------------------------------------------------------ */