00001 /* SVN FILE INFO 00002 * $Revision: 517 $ : Last Committed Revision 00003 * $Date: 2010-06-11 12:06:47 -0700 (Fri, 11 Jun 2010) $ : Last Committed Date */ 00004 /*[ 00005 * Copyright (c) 2007 Integration Engineering Laboratory 00006 University of California, Davis 00007 * 00008 * Permission to use, copy, and distribute this software and its 00009 * documentation for any purpose with or without fee is hereby granted, 00010 * provided that the above copyright notice appear in all copies and 00011 * that both that copyright notice and this permission notice appear 00012 * in supporting documentation. 00013 * 00014 * Permission to modify the software is granted, but not the right to 00015 * distribute the complete modified source code. Modifications are to 00016 * be distributed as patches to the released version. Permission to 00017 * distribute binaries produced by compiling modified sources is granted, 00018 * provided you 00019 * 1. distribute the corresponding source modifications from the 00020 * released version in the form of a patch file along with the binaries, 00021 * 2. add special version identification to distinguish your version 00022 * in addition to the base release version number, 00023 * 3. provide your name and address as the primary contact for the 00024 * support of your modified version, and 00025 * 4. retain our contact information in regard to use of the base 00026 * software. 00027 * Permission to distribute the released version of the source code along 00028 * with corresponding source modifications in the form of a patch file is 00029 * granted with same provisions 2 through 4 for binary distributions. 00030 * 00031 * This software is provided "as is" without express or implied warranty 00032 * to the extent permitted by applicable law. 00033 ]*/ 00034 00035 #ifndef _XML_HELPER_H_ 00036 #define _XML_HELPER_H_ 00037 #include<mxml.h> 00038 00039 mxml_node_t * 00040 xml_find_sibling(const mxml_node_t *node, const char *sibling_name); 00041 00042 char * 00043 xml_get_cdata(const mxml_node_t *node); 00044 00045 mxml_node_t * 00046 xml_get_child(const mxml_node_t *node, const char *child_name, int descend); 00047 00048 mxml_node_t * 00049 xml_get_deep_child(const mxml_node_t *parent, const char **child_path); 00050 00051 mxml_node_t * 00052 xml_get_next_element(const mxml_node_t *node); 00053 00054 char * 00055 xml_get_text(const mxml_node_t *node); 00056 00057 char* 00058 xml_get_element_name(const mxml_node_t *node); 00059 00060 mxml_node_t * 00061 xml_new_cdata(mxml_node_t* parent, const char* text); 00062 00063 const char* 00064 whitespace_cb( mxml_node_t *node, 00065 int where ) ; 00066 00067 #endif 00068