--- embedtools/src/Attic/xmler.c 2010/09/28 15:02:55 1.1.2.7 +++ embedtools/src/Attic/xmler.c 2010/09/29 16:51:14 1.1.2.10 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ - * $Id: xmler.c,v 1.1.2.7 2010/09/28 15:02:55 misho Exp $ + * $Id: xmler.c,v 1.1.2.10 2010/09/29 16:51:14 misho Exp $ * *************************************************************************/ #include "global.h" @@ -25,6 +25,7 @@ Usage() "=== %s === %s@%s ===\n\n" " Syntax: xmler [options] [data]\n\n" "\t-v\t\tVerbose ...\n" + "\t-l \tList node\n" "\t-d \tDelete node\n" "\t-s \tSet node command\n" "\t-g \tGet node command\n" @@ -61,6 +62,31 @@ ShowXML(axlDoc *doc, const char *csNode) return 0; } +static int +ShowItem(axlNode *node, int lvl) +{ + register int i; + int ctxlen; + axlNode *child; + + for (i = 0; i < axl_node_get_child_num(node); i++) { + child = axl_node_get_child_nth(node, i); + + if (!lvl) + printf("%s %s \"%s\"", axl_node_get_name(node), axl_node_get_name(child), + axl_node_get_content(child, &ctxlen)); + else + printf(" %s \"%s\"", axl_node_get_name(child), axl_node_get_content(child, &ctxlen)); + + ShowItem(child, 1); + + if (!lvl) + printf("\n"); + } + + return 0; +} + int main(int argc, char **argv) { @@ -73,11 +99,24 @@ main(int argc, char **argv) memset(str, 0, STRSIZ); memset(&xr, 0, sizeof xr); - while ((ch = getopt(argc, argv, "hvs:g:d:")) != -1) + while ((ch = getopt(argc, argv, "hvl:s:g:d:")) != -1) switch (ch) { case 'v': Verbose++; break; + case 'l': + if (m) { + Usage(); + return 1; + } else + m = 'l'; + strlcpy(str, optarg, STRSIZ); + if ((ret = ioXMLGet(str, &xr)) < 1) { + printf("Error:: in XML request %s\n", str); + return 1; + } + VERB(3) printf("Verbose(3):: XMLGet=0x%x\n", ret); + break; case 'd': if (m) { Usage(); @@ -340,6 +379,44 @@ main(int argc, char **argv) if (ret & 32) axl_node_set_child(node, nnode); ret = ShowXML(doc, NULL); + break; + case 'l': + if (!xr.xml_namespace.vallen) { + if (ret == 32) { + if (!(node = axl_doc_get(doc, xr.xml_node.path.value))) { + printf("LST:: path %s - not found!\n", xr.xml_node.path.value); + ret = 1; + goto end; + } + } else { + if (!(node = axl_doc_find_called(doc, xr.xml_node.container.value))) { + printf("LST:: node %s - not found!\n", xr.xml_node.container.value); + ret = 1; + goto end; + } + } + } else { + strlcpy(str, xr.xml_namespace.value, sizeof str); + strlcat(str, ":", sizeof str); + strlcat(str, xr.xml_node.container.value, sizeof str); + if (ret == 32) { + if (!(node = axl_doc_get(doc, str))) { + printf("LST:: path %s:%s - not found!\n", xr.xml_namespace.value, + xr.xml_node.path.value); + ret = 1; + goto end; + } + } else { + if (!(node = axl_doc_find_called(doc, str))) { + printf("LST:: node %s:%s - not found!\n", xr.xml_namespace.value, + xr.xml_node.container.value); + ret = 1; + goto end; + } + } + } + + ret = ShowItem(node, 0); break; default: ret = ShowXML(doc, xr.xml_data.vallen ? xr.xml_data.value : NULL);