2003-06-03 19:46:29 +00:00
|
|
|
/*
|
2003-07-22 10:29:19 +00:00
|
|
|
* "$Id: mxml-file.c,v 1.17 2003/07/22 10:29:19 mike Exp $"
|
2003-06-03 19:46:29 +00:00
|
|
|
*
|
|
|
|
* File loading code for mini-XML, a small XML-like file parsing library.
|
|
|
|
*
|
|
|
|
* Copyright 2003 by Michael Sweet.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Contents:
|
|
|
|
*
|
2003-07-22 10:29:19 +00:00
|
|
|
* mxmlLoadFile() - Load a file into an XML node tree.
|
|
|
|
* mxmlLoadString() - Load a string into an XML node tree.
|
|
|
|
* mxmlSaveAllocString() - Save an XML node tree to an allocated string.
|
|
|
|
* mxmlSaveFile() - Save an XML tree to a file.
|
|
|
|
* mxmlSaveString() - Save an XML node tree to a string.
|
|
|
|
* mxml_add_char() - Add a character to a buffer, expanding as needed.
|
|
|
|
* mxml_file_getc() - Get a character from a file.
|
|
|
|
* mxml_load_data() - Load data into an XML node tree.
|
|
|
|
* mxml_parse_element() - Parse an element for any attributes...
|
|
|
|
* mxml_string_getc() - Get a character from a string.
|
|
|
|
* mxml_write_node() - Save an XML node to a file.
|
|
|
|
* mxml_write_string() - Write a string, escaping & and < as needed.
|
|
|
|
* mxml_write_ws() - Do whitespace callback...
|
2003-06-03 19:46:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Include necessary headers...
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mxml.h"
|
2003-07-20 13:41:17 +00:00
|
|
|
#include "config.h"
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local functions...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
static int mxml_add_char(int ch, char **ptr, char **buffer,
|
|
|
|
int *bufsize);
|
|
|
|
static int mxml_file_getc(void *p);
|
2003-06-19 04:25:12 +00:00
|
|
|
static int mxml_file_putc(int ch, void *p);
|
2003-06-19 03:20:41 +00:00
|
|
|
static mxml_node_t *mxml_load_data(mxml_node_t *top, void *p,
|
|
|
|
mxml_type_t (*cb)(mxml_node_t *),
|
|
|
|
int (*getc_cb)(void *));
|
|
|
|
static int mxml_parse_element(mxml_node_t *node, void *p,
|
|
|
|
int (*getc_cb)(void *));
|
|
|
|
static int mxml_string_getc(void *p);
|
2003-06-19 04:25:12 +00:00
|
|
|
static int mxml_string_putc(int ch, void *p);
|
|
|
|
static int mxml_write_node(mxml_node_t *node, void *p,
|
|
|
|
int (*cb)(mxml_node_t *, int),
|
|
|
|
int col,
|
|
|
|
int (*putc_cb)(int, void *));
|
|
|
|
static int mxml_write_string(const char *s, void *p,
|
|
|
|
int (*putc_cb)(int, void *));
|
|
|
|
static int mxml_write_ws(mxml_node_t *node, void *p,
|
2003-06-19 03:20:41 +00:00
|
|
|
int (*cb)(mxml_node_t *, int), int ws,
|
2003-06-19 04:25:12 +00:00
|
|
|
int col, int (*putc_cb)(int, void *));
|
2003-06-19 03:20:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2003-06-19 04:25:12 +00:00
|
|
|
* 'mxmlLoadFile()' - Load a file into an XML node tree.
|
2003-06-19 03:20:41 +00:00
|
|
|
*
|
2003-06-19 04:25:12 +00:00
|
|
|
* The nodes in the specified file are added to the specified top node.
|
|
|
|
* If no top node is provided, the XML file MUST be well-formed with a
|
|
|
|
* single parent node like <?xml> for the entire file. The callback
|
2003-06-19 03:20:41 +00:00
|
|
|
* function returns the value type that should be used for child nodes.
|
|
|
|
* If MXML_NO_CALLBACK is specified then all child nodes will be either
|
|
|
|
* MXML_ELEMENT or MXML_TEXT nodes.
|
|
|
|
*/
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
mxml_node_t * /* O - First node or NULL if the file could not be read. */
|
|
|
|
mxmlLoadFile(mxml_node_t *top, /* I - Top node */
|
|
|
|
FILE *fp, /* I - File to read from */
|
|
|
|
mxml_type_t (*cb)(mxml_node_t *))
|
2003-06-19 03:20:41 +00:00
|
|
|
/* I - Callback function or MXML_NO_CALLBACK */
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
return (mxml_load_data(top, fp, cb, mxml_file_getc));
|
2003-06-19 03:20:41 +00:00
|
|
|
}
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2003-06-19 04:25:12 +00:00
|
|
|
* 'mxmlLoadString()' - Load a string into an XML node tree.
|
2003-06-14 23:56:47 +00:00
|
|
|
*
|
2003-06-19 04:25:12 +00:00
|
|
|
* The nodes in the specified string are added to the specified top node.
|
|
|
|
* If no top node is provided, the XML string MUST be well-formed with a
|
|
|
|
* single parent node like <?xml> for the entire string. The callback
|
2003-06-14 23:56:47 +00:00
|
|
|
* function returns the value type that should be used for child nodes.
|
|
|
|
* If MXML_NO_CALLBACK is specified then all child nodes will be either
|
|
|
|
* MXML_ELEMENT or MXML_TEXT nodes.
|
2003-06-03 19:46:29 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
mxml_node_t * /* O - First node or NULL if the string has errors. */
|
|
|
|
mxmlLoadString(mxml_node_t *top, /* I - Top node */
|
|
|
|
const char *s, /* I - String to load */
|
|
|
|
mxml_type_t (*cb)(mxml_node_t *))
|
2003-06-14 23:56:47 +00:00
|
|
|
/* I - Callback function or MXML_NO_CALLBACK */
|
2003-06-19 03:20:41 +00:00
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
return (mxml_load_data(top, &s, cb, mxml_string_getc));
|
2003-06-19 03:20:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-22 10:29:19 +00:00
|
|
|
/*
|
|
|
|
* 'mxmlSaveAllocString()' - Save an XML node tree to an allocated string.
|
|
|
|
*
|
|
|
|
* This function returns a pointer to a string containing the textual
|
|
|
|
* representation of the XML node tree. The string should be freed
|
|
|
|
* using the free() function when you are done with it. NULL is returned
|
|
|
|
* if the node would produce an empty string or if the string cannot be
|
|
|
|
* allocated.
|
|
|
|
*/
|
|
|
|
|
|
|
|
char * /* O - Allocated string or NULL */
|
|
|
|
mxmlSaveAllocString(mxml_node_t *node, /* I - Node to write */
|
|
|
|
int (*cb)(mxml_node_t *, int))
|
|
|
|
/* I - Whitespace callback or MXML_NO_CALLBACK */
|
|
|
|
{
|
|
|
|
int bytes; /* Required bytes */
|
|
|
|
char buffer[8192]; /* Temporary buffer */
|
|
|
|
char *s; /* Allocated string */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the node to the temporary buffer...
|
|
|
|
*/
|
|
|
|
|
|
|
|
bytes = mxmlSaveString(node, buffer, sizeof(buffer), cb);
|
|
|
|
|
|
|
|
if (bytes <= 0)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (bytes < (int)(sizeof(buffer) - 1))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Node fit inside the buffer, so just duplicate that string and
|
|
|
|
* return...
|
|
|
|
*/
|
|
|
|
|
|
|
|
return (strdup(buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a buffer of the required size and save the node to the
|
|
|
|
* new buffer...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((s = malloc(bytes + 1)) == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
mxmlSaveString(node, s, bytes + 1, cb);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the allocated string...
|
|
|
|
*/
|
|
|
|
|
|
|
|
return (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
/*
|
|
|
|
* 'mxmlSaveFile()' - Save an XML tree to a file.
|
|
|
|
*
|
|
|
|
* The callback argument specifies a function that returns a whitespace
|
|
|
|
* character or nul (0) before and after each element. If MXML_NO_CALLBACK
|
|
|
|
* is specified, whitespace will only be added before MXML_TEXT nodes
|
|
|
|
* with leading whitespace and before attribute names inside opening
|
|
|
|
* element tags.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int /* O - 0 on success, -1 on error. */
|
|
|
|
mxmlSaveFile(mxml_node_t *node, /* I - Node to write */
|
|
|
|
FILE *fp, /* I - File to write to */
|
|
|
|
int (*cb)(mxml_node_t *, int))
|
|
|
|
/* I - Whitespace callback or MXML_NO_CALLBACK */
|
|
|
|
{
|
|
|
|
int col; /* Final column */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the node...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((col = mxml_write_node(node, fp, cb, 0, mxml_file_putc)) < 0)
|
2003-06-19 03:20:41 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (col > 0)
|
|
|
|
if (putc('\n', fp) < 0)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return 0 (success)...
|
|
|
|
*/
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 'mxmlSaveString()' - Save an XML node tree to a string.
|
|
|
|
*
|
|
|
|
* This function returns the total number of bytes that would be
|
|
|
|
* required for the string but only copies (bufsize - 1) characters
|
|
|
|
* into the specified buffer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int /* O - Size of string */
|
|
|
|
mxmlSaveString(mxml_node_t *node, /* I - Node to write */
|
|
|
|
char *buffer, /* I - String buffer */
|
|
|
|
int bufsize, /* I - Size of string buffer */
|
|
|
|
int (*cb)(mxml_node_t *, int))
|
|
|
|
/* I - Whitespace callback or MXML_NO_CALLBACK */
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
int col; /* Final column */
|
|
|
|
char *ptr[2]; /* Pointers for putc_cb */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the node...
|
|
|
|
*/
|
|
|
|
|
|
|
|
ptr[0] = buffer;
|
|
|
|
ptr[1] = buffer + bufsize;
|
|
|
|
|
|
|
|
if ((col = mxml_write_node(node, ptr, cb, 0, mxml_string_putc)) < 0)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (col > 0)
|
|
|
|
mxml_string_putc('\n', ptr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Nul-terminate the buffer...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ptr[0] >= ptr[1])
|
|
|
|
buffer[bufsize - 1] = '\0';
|
|
|
|
else
|
|
|
|
ptr[0][0] = '\0';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the number of characters...
|
|
|
|
*/
|
|
|
|
|
|
|
|
return (ptr[1] - ptr[0]);
|
2003-06-19 03:20:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 'mxml_add_char()' - Add a character to a buffer, expanding as needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - 0 on success, -1 on error */
|
|
|
|
mxml_add_char(int ch, /* I - Character to add */
|
|
|
|
char **bufptr, /* IO - Current position in buffer */
|
|
|
|
char **buffer, /* IO - Current buffer */
|
|
|
|
int *bufsize) /* IO - Current buffer size */
|
|
|
|
{
|
|
|
|
char *newbuffer; /* New buffer value */
|
|
|
|
|
|
|
|
|
|
|
|
if (*bufptr >= (*buffer + *bufsize - 1))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Increase the size of the buffer...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (*bufsize < 1024)
|
|
|
|
(*bufsize) *= 2;
|
|
|
|
else
|
|
|
|
(*bufsize) += 1024;
|
|
|
|
|
|
|
|
if ((newbuffer = realloc(*buffer, *bufsize)) == NULL)
|
|
|
|
{
|
|
|
|
free(*buffer);
|
|
|
|
|
|
|
|
fprintf(stderr, "Unable to expand string buffer to %d bytes!\n",
|
|
|
|
*bufsize);
|
|
|
|
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2003-07-21 12:41:47 +00:00
|
|
|
*buffer = newbuffer;
|
2003-06-19 03:20:41 +00:00
|
|
|
*bufptr = newbuffer + (*bufptr - *buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
*(*bufptr)++ = ch;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 'mxml_file_getc()' - Get a character from a file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - Character or EOF */
|
|
|
|
mxml_file_getc(void *p) /* I - Pointer to file */
|
|
|
|
{
|
|
|
|
return (getc((FILE *)p));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_file_putc()' - Write a character to a file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - 0 on success, -1 on failure */
|
|
|
|
mxml_file_putc(int ch, /* I - Character to write */
|
|
|
|
void *p) /* I - Pointer to file */
|
|
|
|
{
|
|
|
|
return (putc(ch, (FILE *)p));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_load_data()' - Load data into an XML node tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static mxml_node_t * /* O - First node or NULL if the file could not be read. */
|
|
|
|
mxml_load_data(mxml_node_t *top, /* I - Top node */
|
|
|
|
void *p, /* I - Pointer to data */
|
|
|
|
mxml_type_t (*cb)(mxml_node_t *),
|
|
|
|
/* I - Callback function or MXML_NO_CALLBACK */
|
|
|
|
int (*getc_cb)(void *))
|
|
|
|
/* I - Read function */
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
|
|
|
mxml_node_t *node, /* Current node */
|
|
|
|
*parent; /* Current parent node */
|
|
|
|
int ch, /* Character from file */
|
|
|
|
whitespace; /* Non-zero if whitespace seen */
|
2003-06-15 21:31:45 +00:00
|
|
|
char *buffer, /* String buffer */
|
2003-06-03 19:46:29 +00:00
|
|
|
*bufptr; /* Pointer into buffer */
|
2003-06-15 21:31:45 +00:00
|
|
|
int bufsize; /* Size of buffer */
|
2003-06-03 19:46:29 +00:00
|
|
|
mxml_type_t type; /* Current node type */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read elements and other nodes from the file...
|
|
|
|
*/
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
if ((buffer = malloc(64)) == NULL)
|
|
|
|
{
|
|
|
|
fputs("Unable to allocate string buffer!\n", stderr);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
bufsize = 64;
|
2003-06-03 19:46:29 +00:00
|
|
|
bufptr = buffer;
|
|
|
|
parent = top;
|
|
|
|
whitespace = 0;
|
|
|
|
|
|
|
|
if (cb && parent)
|
|
|
|
type = (*cb)(parent);
|
|
|
|
else
|
|
|
|
type = MXML_TEXT;
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
|
|
|
if ((ch == '<' || (isspace(ch) && type != MXML_OPAQUE)) && bufptr > buffer)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Add a new value node...
|
|
|
|
*/
|
|
|
|
|
|
|
|
*bufptr = '\0';
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case MXML_INTEGER :
|
2003-06-04 02:34:30 +00:00
|
|
|
node = mxmlNewInteger(parent, strtol(buffer, &bufptr, 0));
|
2003-06-03 19:46:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_OPAQUE :
|
|
|
|
node = mxmlNewOpaque(parent, buffer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_REAL :
|
2003-06-04 02:34:30 +00:00
|
|
|
node = mxmlNewReal(parent, strtod(buffer, &bufptr));
|
2003-06-03 19:46:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_TEXT :
|
|
|
|
node = mxmlNewText(parent, whitespace, buffer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default : /* Should never happen... */
|
|
|
|
node = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-06-04 02:34:30 +00:00
|
|
|
if (*bufptr)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Bad integer/real number value...
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "Bad %s value '%s' in parent <%s>!\n",
|
|
|
|
type == MXML_INTEGER ? "integer" : "real", buffer,
|
|
|
|
parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bufptr = buffer;
|
|
|
|
whitespace = isspace(ch) && type == MXML_TEXT;
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
if (!node)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Just print error for now...
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "Unable to add value node of type %d to parent <%s>!\n",
|
|
|
|
type, parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-06-04 16:30:40 +00:00
|
|
|
else if (isspace(ch) && type == MXML_TEXT)
|
|
|
|
whitespace = 1;
|
|
|
|
|
|
|
|
/*
|
2003-06-19 03:20:41 +00:00
|
|
|
* Add lone whitespace node if we have an element and existing
|
|
|
|
* whitespace...
|
2003-06-04 16:30:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (ch == '<' && whitespace && type == MXML_TEXT)
|
|
|
|
{
|
2003-06-19 03:20:41 +00:00
|
|
|
mxmlNewText(parent, whitespace, "");
|
|
|
|
whitespace = 0;
|
2003-06-04 16:30:40 +00:00
|
|
|
}
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
if (ch == '<')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Start of open/close tag...
|
|
|
|
*/
|
|
|
|
|
|
|
|
bufptr = buffer;
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
if (isspace(ch) || ch == '>' || (ch == '/' && bufptr > buffer))
|
|
|
|
break;
|
2003-06-15 21:31:45 +00:00
|
|
|
else if (mxml_add_char(ch, &bufptr, &buffer, &bufsize))
|
2003-06-04 16:30:40 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
else if ((bufptr - buffer) == 3 && !strncmp(buffer, "!--", 3))
|
|
|
|
break;
|
2003-06-04 16:30:40 +00:00
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
*bufptr = '\0';
|
|
|
|
|
2003-06-04 01:23:21 +00:00
|
|
|
if (!strcmp(buffer, "!--"))
|
|
|
|
{
|
|
|
|
/*
|
2003-06-04 16:30:40 +00:00
|
|
|
* Gather rest of comment...
|
2003-06-04 01:23:21 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-04 01:23:21 +00:00
|
|
|
{
|
2003-06-04 16:30:40 +00:00
|
|
|
if (ch == '>' && bufptr > (buffer + 4) &&
|
|
|
|
!strncmp(bufptr - 2, "--", 2))
|
|
|
|
break;
|
2003-06-15 21:31:45 +00:00
|
|
|
else if (mxml_add_char(ch, &bufptr, &buffer, &bufsize))
|
2003-06-04 01:23:21 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
2003-06-04 16:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
2003-06-04 01:23:21 +00:00
|
|
|
|
2003-06-04 16:30:40 +00:00
|
|
|
/*
|
|
|
|
* Error out if we didn't get the whole comment...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ch != '>')
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise add this as an element under the current parent...
|
|
|
|
*/
|
|
|
|
|
|
|
|
*bufptr = '\0';
|
|
|
|
|
|
|
|
if (!mxmlNewElement(parent, buffer))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Just print error for now...
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "Unable to add comment node to parent <%s>!\n",
|
|
|
|
parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (buffer[0] == '!')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Gather rest of declaration...
|
|
|
|
*/
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (ch == '>')
|
|
|
|
break;
|
2003-06-15 21:31:45 +00:00
|
|
|
else if (mxml_add_char(ch, &bufptr, &buffer, &bufsize))
|
2003-06-04 16:30:40 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
2003-06-04 01:23:21 +00:00
|
|
|
}
|
|
|
|
}
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF);
|
2003-06-04 01:23:21 +00:00
|
|
|
|
2003-06-04 16:30:40 +00:00
|
|
|
/*
|
|
|
|
* Error out if we didn't get the whole declaration...
|
|
|
|
*/
|
2003-06-04 01:23:21 +00:00
|
|
|
|
2003-06-04 16:30:40 +00:00
|
|
|
if (ch != '>')
|
2003-06-04 01:23:21 +00:00
|
|
|
break;
|
2003-06-04 16:30:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise add this as an element under the current parent...
|
|
|
|
*/
|
|
|
|
|
|
|
|
*bufptr = '\0';
|
|
|
|
|
|
|
|
node = mxmlNewElement(parent, buffer);
|
|
|
|
if (!node)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Just print error for now...
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "Unable to add declaration node to parent <%s>!\n",
|
|
|
|
parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Descend into this node, setting the value type as needed...
|
|
|
|
*/
|
|
|
|
|
|
|
|
parent = node;
|
|
|
|
|
2003-06-04 23:20:31 +00:00
|
|
|
if (cb && parent)
|
2003-06-04 16:30:40 +00:00
|
|
|
type = (*cb)(parent);
|
2003-06-04 01:23:21 +00:00
|
|
|
}
|
|
|
|
else if (buffer[0] == '/')
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Handle close tag...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!parent || strcmp(buffer + 1, parent->value.element.name))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Close tag doesn't match tree; print an error for now...
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "Mismatched close tag <%s> under parent <%s>!\n",
|
|
|
|
buffer, parent->value.element.name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keep reading until we see >...
|
|
|
|
*/
|
|
|
|
|
|
|
|
while (ch != '>' && ch != EOF)
|
2003-06-19 03:20:41 +00:00
|
|
|
ch = (*getc_cb)(p);
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Ascend into the parent and set the value type as needed...
|
|
|
|
*/
|
|
|
|
|
|
|
|
parent = parent->parent;
|
|
|
|
|
2003-06-04 23:20:31 +00:00
|
|
|
if (cb && parent)
|
2003-06-03 19:46:29 +00:00
|
|
|
type = (*cb)(parent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Handle open tag...
|
|
|
|
*/
|
|
|
|
|
|
|
|
node = mxmlNewElement(parent, buffer);
|
|
|
|
|
|
|
|
if (!node)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Just print error for now...
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "Unable to add element node to parent <%s>!\n",
|
|
|
|
parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isspace(ch))
|
2003-06-19 03:20:41 +00:00
|
|
|
ch = mxml_parse_element(node, p, getc_cb);
|
2003-06-03 19:46:29 +00:00
|
|
|
else if (ch == '/')
|
|
|
|
{
|
2003-06-19 03:20:41 +00:00
|
|
|
if ((ch = (*getc_cb)(p)) != '>')
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Expected > but got '%c' instead for element <%s/>!\n",
|
|
|
|
ch, buffer);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ch = '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == EOF)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ch != '/')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Descend into this node, setting the value type as needed...
|
|
|
|
*/
|
|
|
|
|
|
|
|
parent = node;
|
|
|
|
|
2003-06-04 23:20:31 +00:00
|
|
|
if (cb && parent)
|
2003-06-03 19:46:29 +00:00
|
|
|
type = (*cb)(parent);
|
|
|
|
}
|
|
|
|
}
|
2003-06-04 16:30:40 +00:00
|
|
|
|
|
|
|
bufptr = buffer;
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
else if (ch == '&')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Add character entity to current buffer... Currently we only
|
2003-06-04 17:37:23 +00:00
|
|
|
* support <, &, >, , ", &#nnn;, and &#xXXXX;...
|
2003-06-03 19:46:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
char entity[64], /* Entity string */
|
|
|
|
*entptr; /* Pointer into entity */
|
|
|
|
|
|
|
|
|
|
|
|
entity[0] = ch;
|
|
|
|
entptr = entity + 1;
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
if (!isalnum(ch) && ch != '#')
|
|
|
|
break;
|
|
|
|
else if (entptr < (entity + sizeof(entity) - 1))
|
|
|
|
*entptr++ = ch;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Entity name too long under parent <%s>!\n",
|
|
|
|
parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*entptr = '\0';
|
|
|
|
|
|
|
|
if (ch != ';')
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Entity name \"%s\" not terminated under parent <%s>!\n",
|
|
|
|
entity, parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entity[1] == '#')
|
|
|
|
{
|
|
|
|
if (entity[2] == 'x')
|
|
|
|
ch = strtol(entity + 3, NULL, 16);
|
|
|
|
else
|
|
|
|
ch = strtol(entity + 2, NULL, 10);
|
|
|
|
}
|
|
|
|
else if (!strcmp(entity, "&"))
|
|
|
|
ch = '&';
|
2003-06-04 01:26:34 +00:00
|
|
|
else if (!strcmp(entity, ">"))
|
|
|
|
ch = '>';
|
|
|
|
else if (!strcmp(entity, "<"))
|
|
|
|
ch = '<';
|
|
|
|
else if (!strcmp(entity, " "))
|
|
|
|
ch = 0xa0;
|
2003-06-04 17:37:23 +00:00
|
|
|
else if (!strcmp(entity, """))
|
|
|
|
ch = '\"';
|
2003-06-03 19:46:29 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Entity name \"%s;\" not supported under parent <%s>!\n",
|
|
|
|
entity, parent ? parent->value.element.name : "null");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch < 128)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Plain ASCII doesn't need special encoding...
|
|
|
|
*/
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
if (mxml_add_char(ch, &bufptr, &buffer, &bufsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Use UTF-8 encoding for the Unicode char...
|
|
|
|
*/
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
if (ch < 2048)
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
if (mxml_add_char(0xc0 | (ch >> 6), &bufptr, &buffer, &bufsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (mxml_add_char(0x80 | (ch & 63), &bufptr, &buffer, &bufsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
2003-06-15 21:31:45 +00:00
|
|
|
}
|
|
|
|
else if (ch < 65536)
|
|
|
|
{
|
|
|
|
if (mxml_add_char(0xe0 | (ch >> 12), &bufptr, &buffer, &bufsize))
|
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (mxml_add_char(0x80 | ((ch >> 6) & 63), &bufptr, &buffer, &bufsize))
|
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (mxml_add_char(0x80 | (ch & 63), &bufptr, &buffer, &bufsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
if (mxml_add_char(0xf0 | (ch >> 18), &bufptr, &buffer, &bufsize))
|
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (mxml_add_char(0x80 | ((ch >> 12) & 63), &bufptr, &buffer, &bufsize))
|
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (mxml_add_char(0x80 | ((ch >> 6) & 63), &bufptr, &buffer, &bufsize))
|
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
if (mxml_add_char(0x80 | (ch & 63), &bufptr, &buffer, &bufsize))
|
|
|
|
{
|
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
|
|
|
}
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (type == MXML_OPAQUE || !isspace(ch))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Add character to current buffer...
|
|
|
|
*/
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
if (mxml_add_char(ch, &bufptr, &buffer, &bufsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(buffer);
|
|
|
|
return (NULL);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
/*
|
|
|
|
* Free the string buffer - we don't need it anymore...
|
|
|
|
*/
|
|
|
|
|
|
|
|
free(buffer);
|
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
/*
|
|
|
|
* Find the top element and return it...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
while (parent->parent != top)
|
|
|
|
parent = parent->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 'mxml_parse_element()' - Parse an element for any attributes...
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - Terminating character */
|
|
|
|
mxml_parse_element(mxml_node_t *node, /* I - Element node */
|
2003-06-19 03:20:41 +00:00
|
|
|
void *p, /* I - Data to read from */
|
|
|
|
int (*getc_cb)(void *))
|
|
|
|
/* I - Data callback */
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
|
|
|
int ch, /* Current character in file */
|
|
|
|
quote; /* Quoting character */
|
2003-06-15 21:31:45 +00:00
|
|
|
char *name, /* Attribute name */
|
|
|
|
*value, /* Attribute value */
|
2003-06-03 19:46:29 +00:00
|
|
|
*ptr; /* Pointer into name/value */
|
2003-06-15 21:31:45 +00:00
|
|
|
int namesize, /* Size of name string */
|
|
|
|
valsize; /* Size of value string */
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
/*
|
|
|
|
* Initialize the name and value buffers...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((name = malloc(64)) == NULL)
|
|
|
|
{
|
|
|
|
fputs("Unable to allocate memory for name!\n", stderr);
|
|
|
|
return (EOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
namesize = 64;
|
|
|
|
|
|
|
|
if ((value = malloc(64)) == NULL)
|
|
|
|
{
|
|
|
|
free(name);
|
|
|
|
fputs("Unable to allocate memory for value!\n", stderr);
|
|
|
|
return (EOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
valsize = 64;
|
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
/*
|
|
|
|
* Loop until we hit a >, /, ?, or EOF...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-07-20 13:19:08 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "parse_element: ch='%c'\n", ch);
|
|
|
|
#endif /* DEBUG */
|
2003-06-19 04:25:12 +00:00
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
/*
|
|
|
|
* Skip leading whitespace...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (isspace(ch))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stop at /, ?, or >...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ch == '/' || ch == '?')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Grab the > character and print an error if it isn't there...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
quote = (*getc_cb)(p);
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
if (quote != '>')
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Expected '>' after '%c' for element %s, but got '%c'!\n",
|
|
|
|
ch, node->value.element.name, quote);
|
|
|
|
ch = EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (ch == '>')
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the attribute name...
|
|
|
|
*/
|
|
|
|
|
|
|
|
name[0] = ch;
|
|
|
|
ptr = name + 1;
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
if (isspace(ch) || ch == '=' || ch == '/' || ch == '>' || ch == '?')
|
|
|
|
break;
|
2003-06-15 21:31:45 +00:00
|
|
|
else if (mxml_add_char(ch, &ptr, &name, &namesize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(name);
|
|
|
|
free(value);
|
|
|
|
return (EOF);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
if (ch == '=')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Read the attribute value...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
if ((ch = (*getc_cb)(p)) == EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Missing value for attribute '%s' in element %s!\n",
|
|
|
|
name, node->value.element.name);
|
|
|
|
return (EOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == '\'' || ch == '\"')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Read quoted value...
|
|
|
|
*/
|
|
|
|
|
|
|
|
quote = ch;
|
|
|
|
ptr = value;
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
if (ch == quote)
|
|
|
|
break;
|
2003-06-15 21:31:45 +00:00
|
|
|
else if (mxml_add_char(ch, &ptr, &value, &valsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(name);
|
|
|
|
free(value);
|
|
|
|
return (EOF);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Read unquoted value...
|
|
|
|
*/
|
|
|
|
|
|
|
|
value[0] = ch;
|
|
|
|
ptr = value + 1;
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
while ((ch = (*getc_cb)(p)) != EOF)
|
2003-06-03 19:46:29 +00:00
|
|
|
if (isspace(ch) || ch == '=' || ch == '/' || ch == '>')
|
|
|
|
break;
|
2003-06-15 21:31:45 +00:00
|
|
|
else if (mxml_add_char(ch, &ptr, &value, &valsize))
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-15 21:31:45 +00:00
|
|
|
free(name);
|
|
|
|
free(value);
|
|
|
|
return (EOF);
|
2003-06-03 19:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
value[0] = '\0';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save last character in case we need it...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
if (ch == '/' || ch == '?')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Grab the > character and print an error if it isn't there...
|
|
|
|
*/
|
|
|
|
|
|
|
|
quote = (*getc_cb)(p);
|
|
|
|
|
|
|
|
if (quote != '>')
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Expected '>' after '%c' for element %s, but got '%c'!\n",
|
|
|
|
ch, node->value.element.name, quote);
|
|
|
|
ch = EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (ch == '>')
|
|
|
|
break;
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the attribute...
|
|
|
|
*/
|
|
|
|
|
|
|
|
mxmlElementSetAttr(node, name, value);
|
|
|
|
}
|
|
|
|
|
2003-06-15 21:31:45 +00:00
|
|
|
/*
|
|
|
|
* Free the name and value buffers and return...
|
|
|
|
*/
|
|
|
|
|
|
|
|
free(name);
|
|
|
|
free(value);
|
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
return (ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-19 03:20:41 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_string_getc()' - Get a character from a string.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - Character or EOF */
|
|
|
|
mxml_string_getc(void *p) /* I - Pointer to file */
|
|
|
|
{
|
|
|
|
int ch; /* Character */
|
|
|
|
const char **s; /* Pointer to string pointer */
|
|
|
|
|
|
|
|
|
|
|
|
s = (const char **)p;
|
|
|
|
|
|
|
|
if ((ch = *s[0]) != 0)
|
|
|
|
{
|
|
|
|
(*s)++;
|
|
|
|
return (ch);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return (EOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_string_putc()' - Write a character to a string.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - 0 on success, -1 on failure */
|
|
|
|
mxml_string_putc(int ch, /* I - Character to write */
|
|
|
|
void *p) /* I - Pointer to string pointers */
|
|
|
|
{
|
|
|
|
char **pp; /* Pointer to string pointers */
|
|
|
|
|
|
|
|
|
|
|
|
pp = (char **)p;
|
|
|
|
|
|
|
|
if (pp[0] < pp[1])
|
|
|
|
pp[0][0] = ch;
|
|
|
|
|
|
|
|
pp[0] ++;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-04 02:34:30 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_write_node()' - Save an XML node to a file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - Column or -1 on error */
|
|
|
|
mxml_write_node(mxml_node_t *node, /* I - Node to write */
|
2003-06-19 04:25:12 +00:00
|
|
|
void *p, /* I - File to write to */
|
2003-06-04 17:37:23 +00:00
|
|
|
int (*cb)(mxml_node_t *, int),
|
|
|
|
/* I - Whitespace callback */
|
2003-06-19 04:25:12 +00:00
|
|
|
int col, /* I - Current column */
|
|
|
|
int (*putc_cb)(int, void *))
|
2003-06-04 02:34:30 +00:00
|
|
|
{
|
|
|
|
int i; /* Looping var */
|
|
|
|
mxml_attr_t *attr; /* Current attribute */
|
2003-06-19 04:25:12 +00:00
|
|
|
char s[255]; /* Temporary string */
|
2003-06-04 02:34:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
while (node != NULL)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Print the node value...
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch (node->type)
|
|
|
|
{
|
|
|
|
case MXML_ELEMENT :
|
2003-06-19 04:25:12 +00:00
|
|
|
col = mxml_write_ws(node, p, cb, MXML_WS_BEFORE_OPEN, col, putc_cb);
|
2003-06-04 17:37:23 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('<', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if (mxml_write_string(node->value.element.name, p, putc_cb) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col += strlen(node->value.element.name) + 1;
|
2003-06-04 02:34:30 +00:00
|
|
|
|
|
|
|
for (i = node->value.element.num_attrs, attr = node->value.element.attrs;
|
|
|
|
i > 0;
|
|
|
|
i --, attr ++)
|
|
|
|
{
|
|
|
|
if ((col + strlen(attr->name) + strlen(attr->value) + 3) > MXML_WRAP)
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('\n', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)(' ', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col ++;
|
|
|
|
}
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if (mxml_write_string(attr->name, p, putc_cb) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('=', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('\"', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if (mxml_write_string(attr->value, p, putc_cb) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('\"', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col += strlen(attr->name) + strlen(attr->value) + 3;
|
2003-06-04 02:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (node->child)
|
|
|
|
{
|
|
|
|
/*
|
2003-06-04 16:30:40 +00:00
|
|
|
* The ? and ! elements are special-cases and have no end tags...
|
2003-06-04 02:34:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (node->value.element.name[0] == '?')
|
|
|
|
{
|
2003-07-20 13:19:08 +00:00
|
|
|
if ((*putc_cb)('?', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('>', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('\n', p) < 0)
|
|
|
|
return (-1);
|
2003-06-04 02:34:30 +00:00
|
|
|
|
|
|
|
col = 0;
|
|
|
|
}
|
2003-06-19 04:25:12 +00:00
|
|
|
else if ((*putc_cb)('>', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
col ++;
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col = mxml_write_ws(node, p, cb, MXML_WS_AFTER_OPEN, col, putc_cb);
|
2003-06-04 21:19:00 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((col = mxml_write_node(node->child, p, cb, col, putc_cb)) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
2003-06-04 16:30:40 +00:00
|
|
|
if (node->value.element.name[0] != '?' &&
|
|
|
|
node->value.element.name[0] != '!')
|
2003-06-04 02:34:30 +00:00
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
col = mxml_write_ws(node, p, cb, MXML_WS_BEFORE_CLOSE, col, putc_cb);
|
2003-06-04 21:19:00 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('<', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('/', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if (mxml_write_string(node->value.element.name, p, putc_cb) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('>', p) < 0)
|
|
|
|
return (-1);
|
2003-06-04 02:34:30 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col += strlen(node->value.element.name) + 3;
|
2003-06-04 21:19:00 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col = mxml_write_ws(node, p, cb, MXML_WS_AFTER_CLOSE, col, putc_cb);
|
2003-06-04 02:34:30 +00:00
|
|
|
}
|
|
|
|
}
|
2003-06-04 16:30:40 +00:00
|
|
|
else if (node->value.element.name[0] == '!')
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('>', p) < 0)
|
2003-06-04 16:30:40 +00:00
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
col ++;
|
2003-06-04 21:19:00 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col = mxml_write_ws(node, p, cb, MXML_WS_AFTER_OPEN, col, putc_cb);
|
2003-06-04 16:30:40 +00:00
|
|
|
}
|
2003-06-04 02:34:30 +00:00
|
|
|
else
|
2003-06-04 21:19:00 +00:00
|
|
|
{
|
2003-07-20 13:19:08 +00:00
|
|
|
if ((*putc_cb)('/', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('>', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
|
2003-06-04 02:34:30 +00:00
|
|
|
col += 2;
|
2003-06-04 17:37:23 +00:00
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col = mxml_write_ws(node, p, cb, MXML_WS_AFTER_OPEN, col, putc_cb);
|
2003-06-04 17:37:23 +00:00
|
|
|
}
|
2003-06-04 02:34:30 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_INTEGER :
|
|
|
|
if (node->prev)
|
|
|
|
{
|
|
|
|
if (col > MXML_WRAP)
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('\n', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col = 0;
|
|
|
|
}
|
2003-06-19 04:25:12 +00:00
|
|
|
else if ((*putc_cb)(' ', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
col ++;
|
|
|
|
}
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
sprintf(s, "%d", node->value.integer);
|
|
|
|
if (mxml_write_string(s, p, putc_cb) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col += strlen(s);
|
2003-06-04 02:34:30 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_OPAQUE :
|
2003-06-19 04:25:12 +00:00
|
|
|
if (mxml_write_string(node->value.opaque, p, putc_cb) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col += strlen(node->value.opaque);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_REAL :
|
|
|
|
if (node->prev)
|
|
|
|
{
|
|
|
|
if (col > MXML_WRAP)
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('\n', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col = 0;
|
|
|
|
}
|
2003-06-19 04:25:12 +00:00
|
|
|
else if ((*putc_cb)(' ', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
col ++;
|
|
|
|
}
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
sprintf(s, "%f", node->value.real);
|
|
|
|
if (mxml_write_string(s, p, putc_cb) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
col += strlen(s);
|
2003-06-04 02:34:30 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MXML_TEXT :
|
2003-06-04 17:37:23 +00:00
|
|
|
if (node->value.text.whitespace && col > 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
{
|
|
|
|
if (col > MXML_WRAP)
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('\n', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col = 0;
|
|
|
|
}
|
2003-06-19 04:25:12 +00:00
|
|
|
else if ((*putc_cb)(' ', p) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
col ++;
|
|
|
|
}
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if (mxml_write_string(node->value.text.string, p, putc_cb) < 0)
|
2003-06-04 02:34:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
col += strlen(node->value.text.string);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Next node...
|
|
|
|
*/
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (col);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_write_string()' - Write a string, escaping & and < as needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - 0 on success, -1 on failure */
|
|
|
|
mxml_write_string(const char *s, /* I - String to write */
|
2003-06-19 04:25:12 +00:00
|
|
|
void *p, /* I - Write pointer */
|
|
|
|
int (*putc_cb)(int, void *))
|
|
|
|
/* I - Write callback */
|
2003-06-03 19:46:29 +00:00
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
char buf[255], /* Buffer */
|
|
|
|
*bufptr; /* Pointer into buffer */
|
|
|
|
|
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
if (*s == '&')
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('&', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('a', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('m', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('p', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)(';', p) < 0)
|
2003-06-03 19:46:29 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
else if (*s == '<')
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('&', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('l', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('t', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)(';', p) < 0)
|
2003-06-03 19:46:29 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2003-06-04 16:30:40 +00:00
|
|
|
else if (*s == '>')
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('&', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('g', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('t', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)(';', p) < 0)
|
2003-06-04 16:30:40 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2003-06-04 17:37:23 +00:00
|
|
|
else if (*s == '\"')
|
|
|
|
{
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('&', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('q', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('u', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('o', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('t', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)(';', p) < 0)
|
2003-06-04 17:37:23 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2003-06-04 16:30:40 +00:00
|
|
|
else if (*s & 128)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Convert UTF-8 to Unicode constant...
|
|
|
|
*/
|
|
|
|
|
|
|
|
int ch; /* Unicode character */
|
|
|
|
|
|
|
|
|
|
|
|
ch = *s & 255;
|
|
|
|
|
|
|
|
if ((ch & 0xe0) == 0xc0)
|
|
|
|
{
|
|
|
|
ch = ((ch & 0x1f) << 6) | (s[1] & 0x3f);
|
|
|
|
s ++;
|
|
|
|
}
|
|
|
|
else if ((ch & 0xf0) == 0xe0)
|
|
|
|
{
|
|
|
|
ch = ((((ch * 0x0f) << 6) | (s[1] & 0x3f)) << 6) | (s[2] & 0x3f);
|
|
|
|
s += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == 0xa0)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Handle non-breaking space as-is...
|
|
|
|
*/
|
|
|
|
|
2003-06-19 04:25:12 +00:00
|
|
|
if ((*putc_cb)('&', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('n', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('b', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('s', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)('p', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
if ((*putc_cb)(';', p) < 0)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sprintf(buf, "&#x%x;", ch);
|
|
|
|
|
|
|
|
for (bufptr = buf; *bufptr; bufptr ++)
|
|
|
|
if ((*putc_cb)(*bufptr, p) < 0)
|
|
|
|
return (-1);
|
2003-06-04 16:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
2003-06-19 04:25:12 +00:00
|
|
|
else if ((*putc_cb)(*s, p) < 0)
|
2003-06-03 19:46:29 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
s ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-04 21:19:00 +00:00
|
|
|
/*
|
|
|
|
* 'mxml_write_ws()' - Do whitespace callback...
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int /* O - New column */
|
|
|
|
mxml_write_ws(mxml_node_t *node, /* I - Current node */
|
2003-06-19 04:25:12 +00:00
|
|
|
void *p, /* I - Write pointer */
|
2003-06-04 21:19:00 +00:00
|
|
|
int (*cb)(mxml_node_t *, int),
|
|
|
|
/* I - Callback function */
|
|
|
|
int ws, /* I - Where value */
|
2003-06-19 04:25:12 +00:00
|
|
|
int col, /* I - Current column */
|
|
|
|
int (*putc_cb)(int, void *))
|
|
|
|
/* I - Write callback */
|
2003-06-04 21:19:00 +00:00
|
|
|
{
|
|
|
|
int ch; /* Whitespace character */
|
|
|
|
|
|
|
|
|
2003-06-04 23:20:31 +00:00
|
|
|
if (cb && (ch = (*cb)(node, ws)) != 0)
|
2003-06-04 21:19:00 +00:00
|
|
|
{
|
2003-07-21 12:41:47 +00:00
|
|
|
if ((*putc_cb)(ch, p) < 0)
|
2003-06-04 21:19:00 +00:00
|
|
|
return (-1);
|
|
|
|
else if (ch == '\n')
|
|
|
|
col = 0;
|
|
|
|
else if (ch == '\t')
|
|
|
|
{
|
|
|
|
col += MXML_TAB;
|
|
|
|
col = col - (col % MXML_TAB);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
col ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (col);
|
|
|
|
}
|
|
|
|
|
2003-06-03 19:46:29 +00:00
|
|
|
|
|
|
|
/*
|
2003-07-22 10:29:19 +00:00
|
|
|
* End of "$Id: mxml-file.c,v 1.17 2003/07/22 10:29:19 mike Exp $".
|
2003-06-03 19:46:29 +00:00
|
|
|
*/
|