Coin Logo http://www.coin3d.org/
http://www.kongsberg.com/kogt/

document.h
1 #ifndef COIN_XMLDOCUMENT_H
2 #define COIN_XMLDOCUMENT_H
3 
4 /**************************************************************************\
5  * Copyright (c) Kongsberg Oil & Gas Technologies AS
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are
10  * met:
11  *
12  * Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  *
15  * Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in the
17  * documentation and/or other materials provided with the distribution.
18  *
19  * Neither the name of the copyright holder nor the names of its
20  * contributors may be used to endorse or promote products derived from
21  * this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 \**************************************************************************/
35 
36 #include <Inventor/C/XML/types.h>
37 
38 /* ********************************************************************** */
39 
40 #ifdef __cplusplus
41 extern "C" {
42 #endif /* __cplusplus */
43 
44 /* basic construction */
45 COIN_DLL_API cc_xml_doc * cc_xml_doc_new(void);
46 COIN_DLL_API void cc_xml_doc_delete_x(cc_xml_doc * doc);
47 
48 /* parser configuration */
49 COIN_DLL_API void cc_xml_doc_set_filter_cb_x(cc_xml_doc * doc, cc_xml_filter_cb * cb, void * userdata);
50 COIN_DLL_API void cc_xml_doc_get_filter_cb(const cc_xml_doc * doc, cc_xml_filter_cb *& cb, void *& userdata);
51 
52 /* document io */
53 COIN_DLL_API SbBool cc_xml_doc_read_file_x(cc_xml_doc * doc, const char * path);
54 COIN_DLL_API SbBool cc_xml_doc_read_buffer_x(cc_xml_doc * doc, const char * buffer, size_t buflen);
55 
56 COIN_DLL_API SbBool cc_xml_doc_parse_buffer_partial_x(cc_xml_doc * doc, const char * buffer, size_t buflen);
57 COIN_DLL_API SbBool cc_xml_doc_parse_buffer_partial_done_x(cc_xml_doc * doc, const char * buffer, size_t buflen);
58 
59 COIN_DLL_API SbBool cc_xml_doc_write_to_buffer(const cc_xml_doc * doc, char *& buffer, size_t & bytes);
60 COIN_DLL_API SbBool cc_xml_doc_write_to_file(const cc_xml_doc * doc, const char * path);
61 
62 COIN_DLL_API cc_xml_path * cc_xml_doc_diff(const cc_xml_doc * doc, const cc_xml_doc * other);
63 
64 /* document attributes */
65 COIN_DLL_API void cc_xml_doc_set_filename_x(cc_xml_doc * doc, const char * path);
66 COIN_DLL_API const char * cc_xml_doc_get_filename(const cc_xml_doc * doc);
67 
68 /* misc... */
69 
70 COIN_DLL_API cc_xml_elt * cc_xml_doc_get_root(const cc_xml_doc * doc);
71 COIN_DLL_API void cc_xml_doc_set_current_x(cc_xml_doc * doc, cc_xml_elt * elt);
72 COIN_DLL_API cc_xml_elt * cc_xml_doc_get_current(const cc_xml_doc * doc);
73 COIN_DLL_API void cc_xml_doc_strip_whitespace_x(cc_xml_doc * doc);
74 
75 COIN_DLL_API void cc_xml_doc_set_root_x(cc_xml_doc * doc, cc_xml_elt * root);
76 
77 COIN_DLL_API const cc_xml_elt * cc_xml_doc_find_element(const cc_xml_doc * doc, cc_xml_path * path);
78 COIN_DLL_API const cc_xml_elt * cc_xml_doc_find_next_element(const cc_xml_doc * doc, cc_xml_elt * elt, cc_xml_path * path);
79 COIN_DLL_API cc_xml_elt * cc_xml_doc_create_element_x(cc_xml_doc * doc, cc_xml_path * path);
80 
81 
82 #ifdef __cplusplus
83 } /* extern "C" */
84 #endif /* __cplusplus */
85 
86 #endif /* !COIN_XML_DOCUMENT_H */
cc_xml_doc * cc_xml_doc_new(void)
void cc_xml_doc_get_filter_cb(const cc_xml_doc *doc, cc_xml_filter_cb *&cb, void *&userdata)
void cc_xml_doc_delete_x(cc_xml_doc *doc)
cc_xml_filter_choice cc_xml_filter_cb(void *userdata, cc_xml_doc *doc, cc_xml_elt *elt, int pushing)
Definition: types.h:61
void cc_xml_doc_set_filter_cb_x(cc_xml_doc *doc, cc_xml_filter_cb *cb, void *userdata)
struct cc_xml_doc cc_xml_doc
opaque container object type for XML documents
Definition: types.h:43

Copyright © by Kongsberg Oil & Gas Technologies. All rights reserved.

Generated for Coin by Doxygen