2 * Copyright (c) 2009, 2010 Aggelos Economopoulos. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
14 * 3. Neither the name of The DragonFly Project nor the names of its
15 * contributors may be used to endorse or promote products derived
16 * from this software without specific, prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #ifndef _EVTRANALYZE_XML_H_
33 #define _EVTRANALYZE_XML_H_
36 #include <sys/queue.h>
39 typedef struct xml_attribute
{
42 STAILQ_ENTRY(xml_attribute
) next
;
45 typedef struct xml_element
{
48 STAILQ_HEAD(, xml_attribute
) attributes
;
49 STAILQ_ENTRY(xml_element
) link
;
52 typedef struct xml_document
{
54 STAILQ_HEAD(, xml_element
) open_elems
;
61 xml_elem_init(xml_element_t el
, const char *name
)
65 STAILQ_INIT(&el
->attributes
);
70 xml_elem_set_value(xml_element_t el
, const char *value
)
77 xml_attribute_init(xml_attribute_t at
, const char *name
, const char *value
)
85 xml_attribute_set_value(xml_attribute_t at
, const char *value
)
92 xml_elem_set_attribute(xml_element_t el
, xml_attribute_t at
)
94 STAILQ_INSERT_TAIL(&el
->attributes
, at
, next
);
98 xml_document_t
xml_document_create(const char *);
99 int xml_document_close(xml_document_t
);
100 int xml_elem_closed(xml_document_t
, xml_element_t
);
101 int xml_elem_begin(xml_document_t
, xml_element_t
);
102 int xml_elem_close(xml_document_t
, xml_element_t
);
104 #endif /* !_EVTRANALYZE_XML_H_ */