📄 mxml.html
字号:
FILE *fp; mxml_node_t *tree; fp = fopen("filename.xml", "w"); mxmlSaveFile(tree, fp, <B>whitespace_cb</B>); fclose(fp);</PRE><!-- NEED 10 --><H2><A NAME="4_3">Custom Data Types</A></H2><P>Mini-XML supports custom data types via global load and save callbacks. Only a single set of callbacks can be active at any time, however your callbacks can store additional information in order to support multiple custom data types as needed. The <TT>MXML_CUSTOM</TT> node type identifies custom data nodes.</P><P>The load callback receives a pointer to the current data node and a string of opaque character data from the XML source with character entities converted to the corresponding UTF-8 characters. For example, if we wanted to support a custom date/time type whose value is encoded as "yyyy-mm-ddThh:mm:ssZ" (ISO format), the load callback would look like the following:</P><PRE> typedef struct { unsigned year, /* Year */ month, /* Month */ day, /* Day */ hour, /* Hour */ minute, /* Minute */ second; /* Second */ time_t unix; /* UNIX time */ } iso_date_time_t; int load_custom(mxml_node_t *node, const char *data) { iso_date_time_t *dt; struct tm tmdata; /* * Allocate data structure... */ dt = calloc(1, sizeof(iso_date_time_t)); /* * Try reading 6 unsigned integers from the * data string... */ if (sscanf(data, "%u-%u-%uT%u:%u:%uZ", &(dt->year), &(dt->month), &(dt->day), &(dt->hour), &(dt->minute), &(dt->second)) != 6) { /* * Unable to read numbers, free the data * structure and return an error... */ free(dt); return (-1); } /* * Range check values... */ if (dt->month <1 || dt->month > 12 || dt->day <1 || dt->day > 31 || dt->hour <0 || dt->hour > 23 || dt->minute <0 || dt->minute > 59 || dt->second <0 || dt->second > 59) { /* * Date information is out of range... */ free(dt); return (-1); } /* * Convert ISO time to UNIX time in * seconds... */ tmdata.tm_year = dt->year - 1900; tmdata.tm_mon = dt->month - 1; tmdata.tm_day = dt->day; tmdata.tm_hour = dt->hour; tmdata.tm_min = dt->minute; tmdata.tm_sec = dt->second; dt->unix = gmtime(&tmdata); /* * Assign custom node data and destroy * function pointers... */ node->value.custom.data = dt; node->value.custom.destroy = free; /* * Return with no errors... */ return (0); }</PRE><P>The function itself can return 0 on success or -1 if it is unable to decode the custom data or the data contains an error. Custom data nodes contain a <TT>void</TT> pointer to the allocated custom data for the node and a pointer to a destructor function which will free the custom data when the node is deleted.</P><P>The save callback receives the node pointer and returns an allocated string containing the custom data value. The following save callback could be used for our ISO date/time type:</P><PRE> char * save_custom(mxml_node_t *node) { char data[255]; iso_date_time_t *dt; dt = (iso_date_time_t *)node->custom.data; snprintf(data, sizeof(data), "%04u-%02u-%02uT%02u:%02u:%02uZ", dt->year, dt->month, dt->day, dt->hour, dt->minute, dt->second); return (strdup(data)); }</PRE><P>You register the callback functions using the <A href="#mxmlSetCustomHandlers"><TT>mxmlSetCustomHandlers()</TT></A> function:</P><PRE> mxmlSetCustomHandlers(<B>load_custom</B>, <B>save_custom</B>);</PRE><!-- NEED 20 --><H2><A NAME="4_4">Changing Node Values</A></H2><P>All of the examples so far have concentrated on creating and loading new XML data nodes. Many applications, however, need to manipulate or change the nodes during their operation, so Mini-XML provides functions to change node values safely and without leaking memory.</P><P>Existing nodes can be changed using the <A href="#mxmlSetElement"><TT>mxmlSetElement()</TT></A>, <A href="#mxmlSetInteger"><TT>mxmlSetInteger()</TT></A>, <A href="#mxmlSetOpaque"><TT>mxmlSetOpaque()</TT></A>, <A href="#mxmlSetReal"><TT>mxmlSetReal()</TT></A>, <A href="#mxmlSetText"><TT>mxmlSetText()</TT></A>, and <A href="#mxmlSetTextf"><TT>mxmlSetTextf()</TT></A> functions. For example, use the following function call to change a text node to contain the text "new" with leading whitespace:</P><PRE> mxml_node_t *node; mxmlSetText(node, 1, "new");</PRE><H2><A NAME="4_5">Formatted Text</A></H2><P>The <A href="#mxmlNewTextf"><TT>mxmlNewTextf()</TT></A> and <A href="#mxmlSetTextf"><TT>mxmlSetTextf()</TT></A> functions create and change text nodes, respectively, using <TT>printf</TT>-style format strings and arguments. For example, use the following function call to create a new text node containing a constructed filename:</P><PRE> mxml_node_t *node; node = mxmlNewTextf(node, 1, "%s/%s", path, filename);</PRE><H2><A NAME="4_6">Indexing</A></H2><P>Mini-XML provides functions for managing indices of nodes. The current implementation provides the same functionality as <A href="#mxmlFindElement"><TT>mxmlFindElement()</TT></A>. The advantage of using an index is that searching and enumeration of elements is significantly faster. The only disadvantage is that each index is a static snapshot of the XML document, so indices are not well suited to XML data that is updated more often than it is searched. The overhead of creating an index is approximately equal to walking the XML document tree. Nodes in the index are sorted by element name and attribute value.</P><P>Indices are stored in <A href="#mxml_index_t"><TT>mxml_index_t</TT></A> structures. The <A href="#mxmlIndexNew"><TT>mxmlIndexNew()</TT></A> function creates a new index:</P><PRE> mxml_node_t *tree; mxml_index_t *ind; ind = mxmlIndexNew(tree, "element", "attribute");</PRE><P>The first argument is the XML node tree to index. Normally this will be a pointer to the <TT>?xml</TT> element.</P><P>The second argument contains the element to index; passing <TT>NULL</TT> indexes all element nodes alphabetically.</P><P>The third argument contains the attribute to index; passing <TT>NULL</TT> causes only the element name to be indexed.</P><P>Once the index is created, the <A href="#mxmlIndexEnum"><TT>mxmlIndexEnum()</TT></A>, <A href="#mxmlIndexFind"><TT>mxmlIndexFind()</TT></A>, and <A href="#mxmlIndexReset"><TT>mxmlIndexReset()</TT></A> functions are used to access the nodes in the index. The <A href="#mxmlIndexReset"><TT>mxmlIndexReset()</TT></A> function resets the "current" node pointer in the index, allowing you to do new searches and enumerations on the same index. Typically you will call this function prior to your calls to <A href="#mxmlIndexEnum"><TT>mxmlIndexEnum()</TT></A> and <A href="#mxmlIndexFind"><TT>mxmlIndexFind()</TT></A>.</P><P>The <A href="#mxmlIndexEnum"><TT>mxmlIndexEnum()</TT></A> function enumerates each of the nodes in the index and can be used in a loop as follows:</P><PRE> mxml_node_t *node; mxmlIndexReset(ind); while ((node = mxmlIndexEnum(ind)) != NULL) { // do something with node }</PRE><P>The <A href="#mxmlIndexFind"><TT>mxmlIndexFind()</TT></A> function locates the next occurrence of the named element and attribute value in the index. It can be used to find all matching elements in an index, as follows:</P><PRE> mxml_node_t *node; mxmlIndexReset(ind); while ((node = mxmlIndexFind(ind, "element", "attr-value")) != NULL) { // do something with node }</PRE><P>The second and third arguments represent the element name and attribute value, respectively. A <TT>NULL</TT> pointer is used to return all elements or attributes in the index. Passing <TT>NULL</TT> for both the element name and attribute value is equivalent to calling <TT>mxmlIndexEnum</TT>.</P><P>When you are done using the index, delete it using the <A href="#mxmlIndexDelete()"><TT>mxmlIndexDelete()</TT></A> function:</P><PRE> mxmlIndexDelete(ind);</PRE><H2><A NAME="4_7">SAX (Stream) Loading of Documents</A></H2><P>Mini-XML supports an implementation of the Simple API for XML (SAX) which allows you to load and process an XML document as a stream of nodes. Aside from allowing you to process XML documents of any size, the Mini-XML implementation also allows you to retain portions of the document in memory for later processing.</P><P>The <A href="#mxmlSAXLoad"><TT>mxmlSAXLoadFd</TT></A>, <A href="#mxmlSAXLoadFile"><TT>mxmlSAXLoadFile</TT></A>, and <A href="#mxmlSAXLoadString"><TT>mxmlSAXLoadString</TT></A> functions provide the SAX loading APIs. Each function works like the corresponding <TT>mxmlLoad</TT> function but uses a callback to process each node as it is read.</P><P>The callback function receives the node, an event code, and a user data pointer you supply:</P><PRE> void sax_cb(mxml_node_t *node, mxml_sax_event_t event, void *data) { ... do something ... }</PRE><P>The event will be one of the following:</P><UL><LI><TT>MXML_SAX_CDATA</TT> - CDATA was just read</LI><LI><TT>MXML_SAX_COMMENT</TT> - A comment was just read</LI><LI><TT>MXML_SAX_DATA</TT> - Data (custom, integer, opaque, real, or text) was just read</LI><LI><TT>MXML_SAX_DIRECTIVE</TT> - A processing directive was just read</LI><LI><TT>MXML_SAX_ELEMENT_CLOSE</TT> - An open element was just read (<TT><element></TT>)</LI><LI><TT>MXML_SAX_ELEMENT_OPEN</TT> - A close element was just read (<TT></element></TT>)</LI></UL><P>Elements are<EM> released</EM> after the close element is processed. All other nodes are released after they are processed. The SAX callback can<EM> retain</EM> the node using the <A href="#mxmlRetain"><TT>mxmlRetain</TT></A> function. For example, the following SAX callback will retain all nodes, effectively simulating a normal in-memory load:</P><PRE> void sax_cb(mxml_node_t *node, mxml_sax_event_t event, void *data) { if (event != MXML_SAX_ELEMENT_CLOSE) mxmlRetain(node); }</PRE><P>More typically the SAX callback will only retain a small portion of the document that is needed for post-processing. For example, the following SAX callback will retain the title and headings in an XHTML file. It also retains the (parent) elements like <TT><html></TT>, <TT><head></TT>, and <TT><body></TT>, and processing directives like <TT><?xml ... ?></TT> and <TT><!DOCTYPE ... ></TT>:</P><!-- NEED 10 --><PRE> void sax_cb(mxml_node_t *node, mxml_sax_event_t event, void *data) { if (event == MXML_SAX_ELEMENT_OPEN) { /* * Retain headings and titles... */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -