123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /*
- * ------------------------------------------------------
- * shell_expat.c
- *
- * This file implements the means to read an XML encoded file
- * and populate the CLI tree based on the contents. It implements
- * the clish_xml API using the expat XML parser
- *
- * expat is not your typicall XML parser. It does not work
- * by creating a full in-memory XML tree, but by calling specific
- * callbacks (element handlers) regularly while parsing. It's up
- * to the user to create the corresponding XML tree if needed
- * (obviously, this is what we're doing, as we really need the XML
- * tree in klish).
- *
- * The code below do that. It transforms the output of expat
- * to a DOM representation of the underlying XML file. This is
- * a bit overkill, and maybe a later implementation will help to
- * cut the work to something simpler, but the current klish
- * implementation requires this.
- * ------------------------------------------------------
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #if defined(HAVE_LIB_EXPAT)
- #include <string.h>
- #include <stdlib.h>
- #include <fcntl.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include <errno.h>
- /* FreeBSD have verbatim version of expat named bsdxml */
- #ifdef HAVE_LIB_BSDXML
- #include <bsdxml.h>
- #else
- #include <expat.h>
- #endif
- #include "xmlapi.h"
- /** DOM_like XML node
- *
- * @struct clish_xmlnode_s
- */
- struct clish_xmlnode_s {
- char *name;
- clish_xmlnode_t *parent; /**< parent node */
- clish_xmlnode_t *children; /**< list of children */
- clish_xmlnode_t *next; /**< next sibling */
- clish_xmlnode_t *attributes; /**< attributes are nodes too */
- char *content; /**< !NULL for text and attributes nodes */
- clish_xmlnodetype_e type; /**< node type */
- int depth; /**< node depth */
- clish_xmldoc_t *doc;
- };
- /** DOM-like XML document
- *
- * @struct clish_xmldoc_s
- */
- struct clish_xmldoc_s {
- clish_xmlnode_t *root; /**< list of root elements */
- clish_xmlnode_t *current; /**< current element */
- char *filename; /**< current filename */
- };
- /*
- * Expat need these functions to be able to build a DOM-like tree that
- * will be usable by klish.
- */
- /** Put a element at the and of an element list
- *
- * @param first first element of the list
- * @param node element to add
- * @return new first element of the list
- */
- static clish_xmlnode_t *clish_expat_list_push_back(clish_xmlnode_t *first, clish_xmlnode_t *node)
- {
- clish_xmlnode_t *cur = first;
- clish_xmlnode_t *prev = NULL;
- while (cur) {
- prev = cur;
- cur = cur->next;
- }
- if (prev) {
- prev->next = node;
- return first;
- }
- return node;
- }
- /** Generic add_attr() function
- *
- * @param first first attribute in the attribute list
- * @param n attribute name
- * @param v attribute value
- * @return the new first attribute in the attribute list
- */
- static clish_xmlnode_t *clish_expat_add_attr(clish_xmlnode_t *first, const char *n, const char *v)
- {
- clish_xmlnode_t *node;
- node = malloc(sizeof(clish_xmlnode_t));
- if (!node)
- return first;
- node->name = strdup(n);
- node->content = strdup(v);
- node->children = NULL;
- node->attributes = NULL;
- node->next = NULL;
- node->type = CLISH_XMLNODE_ATTR;
- node->depth = 0;
- return clish_expat_list_push_back(first, node);
- }
- /** Run through an expat attribute list, and create a DOM-like attribute list
- *
- * @param node parent node
- * @param attr NULL-terminated attribute liste
- *
- * Each attribute uses two slots in the expat attribute list. The first one is
- * used to store the name, the second one is used to store the value.
- */
- static void clish_expat_add_attrlist(clish_xmlnode_t *node, const char **attr)
- {
- int i;
- for (i = 0; attr[i]; i += 2) {
- node->attributes = clish_expat_add_attr(node->attributes,
- attr[i], attr[i+1]);
- }
- }
- /** Generic make_node() function
- *
- * @param parent XML parent node
- * @param type XML node type
- * @param n node name (can be NULL, strdup'ed)
- * @param v node content (can be NULL, strdup'ed)
- * @param attr attribute list
- * @return a new node or NULL on error
- */
- static clish_xmlnode_t *clish_expat_make_node(clish_xmlnode_t *parent,
- clish_xmlnodetype_e type,
- const char *n,
- const char *v,
- const char **attr)
- {
- clish_xmlnode_t *node;
- node = malloc(sizeof(clish_xmlnode_t));
- if (!node)
- return NULL;
- node->name = n ? strdup(n) : NULL;
- node->content = v ? strdup(v) : NULL;
- node->children = NULL;
- node->attributes = NULL;
- node->next = NULL;
- node->parent = parent;
- node->doc = parent ? parent->doc : NULL;
- node->depth = parent ? parent->depth + 1 : 0;
- node->type = type;
- if (attr)
- clish_expat_add_attrlist(node, attr);
- if (parent)
- parent->children = clish_expat_list_push_back(parent->children, node);
- return node;
- }
- /** Add a new XML root
- *
- * @param doc XML document
- * @param el root node name
- * @param attr expat attribute list
- * @return a new root element
- */
- static clish_xmlnode_t *clish_expat_add_root(clish_xmldoc_t *doc, const char *el, const char **attr)
- {
- clish_xmlnode_t *node;
- node = clish_expat_make_node(NULL, CLISH_XMLNODE_ELM, el, NULL, attr);
- if (!node)
- return doc->root;
- doc->root = clish_expat_list_push_back(doc->root, node);
- return node;
- }
- /** Add a new XML element as a child
- *
- * @param cur parent XML element
- * @param el element name
- * @param attr expat attribute list
- * @return a new XMl element
- */
- static clish_xmlnode_t *clish_expat_add_child(clish_xmlnode_t *cur, const char *el, const char **attr)
- {
- clish_xmlnode_t *node;
- node = clish_expat_make_node(cur, CLISH_XMLNODE_ELM, el, NULL, attr);
- if (!node)
- return cur;
- return node;
- }
- /** Expat handler: element content
- *
- * @param data user data
- * @param s content (not nul-termainated)
- * @param len content length
- */
- static void clish_expat_chardata_handler(void *data, const char *s, int len)
- {
- clish_xmldoc_t *doc = data;
- if (doc->current) {
- char *content = malloc(len + 1);
- strncpy(content, s, len);
- content[len] = '\0';
- clish_expat_make_node(doc->current, CLISH_XMLNODE_TEXT, NULL, content, NULL);
- /*
- * the previous call is a bit too generic, and strdup() content
- * so we need to free out own version of content.
- */
- free(content);
- }
- }
- /** Expat handler: start XML element
- *
- * @param data user data
- * @param el element name (nul-terminated)
- * @param attr expat attribute list
- */
- static void clish_expat_element_start(void *data, const char *el, const char **attr)
- {
- clish_xmldoc_t *doc = data;
- if (!doc->current) {
- doc->current = clish_expat_add_root(doc, el, attr);
- } else {
- doc->current = clish_expat_add_child(doc->current, el, attr);
- }
- }
- /** Expat handler: end XML element
- *
- * @param data user data
- * @param el element name
- */
- static void clish_expat_element_end(void *data, const char *el)
- {
- clish_xmldoc_t *doc = data;
- if (doc->current) {
- doc->current = doc->current->parent;
- }
- el = el; /* Happy compiler */
- }
- /** Free a node, its children and its attributes
- *
- * @param node node to free
- */
- static void clish_expat_free_node(clish_xmlnode_t *cur)
- {
- clish_xmlnode_t *node;
- clish_xmlnode_t *first;
- if (cur->attributes) {
- first = cur->attributes;
- while (first) {
- node = first;
- first = first->next;
- clish_expat_free_node(node);
- }
- }
- if (cur->children) {
- first = cur->children;
- while (first) {
- node = first;
- first = first->next;
- clish_expat_free_node(node);
- }
- }
- if (cur->name)
- free(cur->name);
- if (cur->content)
- free(cur->content);
- free(cur);
- }
- /*
- * Public interface
- */
- int clish_xmldoc_start(void)
- {
- return 0;
- }
- int clish_xmldoc_stop(void)
- {
- return 0;
- }
- clish_xmldoc_t *clish_xmldoc_read(const char *filename)
- {
- clish_xmldoc_t *doc;
- struct stat sb;
- int fd;
- char *buffer;
- XML_Parser parser;
- int rb;
- doc = malloc(sizeof(clish_xmldoc_t));
- if (!doc)
- return NULL;
- memset(doc, 0, sizeof(clish_xmldoc_t));
- doc->filename = strdup(filename);
- parser = XML_ParserCreate(NULL);
- if (!parser)
- goto error_parser_create;
- XML_SetUserData(parser, doc);
- XML_SetCharacterDataHandler(parser, clish_expat_chardata_handler);
- XML_SetElementHandler(parser,
- clish_expat_element_start,
- clish_expat_element_end);
- fd = open(filename, O_RDONLY);
- if (fd < 0)
- goto error_open;
- fstat(fd, &sb);
- buffer = malloc(sb.st_size+1);
- rb = read(fd, buffer, sb.st_size);
- if (rb < 0) {
- close(fd);
- goto error_parse;
- }
- buffer[sb.st_size] = 0;
- close(fd);
- if (!XML_Parse(parser, buffer, sb.st_size, 1))
- goto error_parse;
- XML_ParserFree(parser);
- free(buffer);
- return doc;
- error_parse:
- free(buffer);
- error_open:
- XML_ParserFree(parser);
- error_parser_create:
- clish_xmldoc_release(doc);
- return NULL;
- }
- void clish_xmldoc_release(clish_xmldoc_t *doc)
- {
- if (doc) {
- clish_xmlnode_t *node;
- while (doc->root) {
- node = doc->root;
- doc->root = node->next;
- clish_expat_free_node(node);
- }
- if (doc->filename)
- free(doc->filename);
- free(doc);
- }
- }
- int clish_xmldoc_is_valid(clish_xmldoc_t *doc)
- {
- return doc && doc->root;
- }
- int clish_xmldoc_error_caps(clish_xmldoc_t *doc)
- {
- doc = doc; /* Happy compiler */
- return CLISH_XMLERR_NOCAPS;
- }
- int clish_xmldoc_get_err_line(clish_xmldoc_t *doc)
- {
- doc = doc; /* Happy compiler */
- return -1;
- }
- int clish_xmldoc_get_err_col(clish_xmldoc_t *doc)
- {
- doc = doc; /* Happy compiler */
- return -1;
- }
- const char *clish_xmldoc_get_err_msg(clish_xmldoc_t *doc)
- {
- doc = doc; /* Happy compiler */
- return "";
- }
- int clish_xmlnode_get_type(clish_xmlnode_t *node)
- {
- if (node)
- return node->type;
- return CLISH_XMLNODE_UNKNOWN;
- }
- clish_xmlnode_t *clish_xmldoc_get_root(clish_xmldoc_t *doc)
- {
- if (doc)
- return doc->root;
- return NULL;
- }
- clish_xmlnode_t *clish_xmlnode_parent(clish_xmlnode_t *node)
- {
- if (node)
- return node->parent;
- return NULL;
- }
- clish_xmlnode_t *clish_xmlnode_next_child(clish_xmlnode_t *parent,
- clish_xmlnode_t *curchild)
- {
- if (curchild)
- return curchild->next;
- if (parent)
- return parent->children;
- return NULL;
- }
- char *clish_xmlnode_fetch_attr(clish_xmlnode_t *node,
- const char *attrname)
- {
- if (node) {
- clish_xmlnode_t *n = node->attributes;
- while (n) {
- if (strcmp(n->name, attrname) == 0)
- return n->content;
- n = n->next;
- }
- }
- return NULL;
- }
- int clish_xmlnode_get_content(clish_xmlnode_t *node, char *content,
- unsigned int *contentlen)
- {
- unsigned int minlen = 1;
- if (node && content && contentlen) {
- clish_xmlnode_t *children = node->children;
- while (children) {
- if (children->type == CLISH_XMLNODE_TEXT && children->content)
- minlen += strlen(children->content);
- children = children->next;
- }
- if (minlen >= *contentlen) {
- *contentlen = minlen + 1;
- return -E2BIG;
- }
- children = node->children;
- *content = 0;
- while (children) {
- if (children->type == CLISH_XMLNODE_TEXT && children->content)
- strcat(content, children->content);
- children = children->next;
- }
- return 0;
- }
- return -EINVAL;
- }
- int clish_xmlnode_get_name(clish_xmlnode_t *node, char *name,
- unsigned int *namelen)
- {
- if (node && name && namelen) {
- if (strlen(node->name) >= *namelen) {
- *namelen = strlen(node->name) + 1;
- return -E2BIG;
- }
- snprintf(name, *namelen, "%s", node->name);
- name[*namelen - 1] = '\0';
- return 0;
- }
- return -EINVAL;
- }
- void clish_xmlnode_print(clish_xmlnode_t *node, FILE *out)
- {
- if (node) {
- int i;
- clish_xmlnode_t *a;
- for (i=0; i<node->depth; ++i) {
- fprintf(out, " ");
- }
- fprintf(out, "<%s", node->name);
- a = node->attributes;
- while (a) {
- fprintf(out, " %s='%s'", a->name, a->content);
- a = a->next;
- }
- fprintf(out, ">...");
- }
- }
- void clish_xml_release(void *p)
- {
- p = p; /* Happy compiler */
- /* nothing to release */
- }
- #endif /* HAVE_LIB_EXPAT */
|