kernel: Remove the FFS_ROOT option. It was a no-op since 4.9.
[dragonfly.git] / usr.bin / evtranalyze / xml.h
blob590f778548be5cd2c6771ad03e7e7a8da4db3a6c
1 /*
2 * Copyright (c) 2009, 2010 Aggelos Economopoulos. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
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
13 * distribution.
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
29 * SUCH DAMAGE.
32 #ifndef _EVTRANALYZE_XML_H_
33 #define _EVTRANALYZE_XML_H_
35 #include <stdio.h>
36 #include <sys/queue.h>
39 typedef struct xml_attribute {
40 const char *name;
41 const char *value;
42 STAILQ_ENTRY(xml_attribute) next;
43 } *xml_attribute_t;
45 typedef struct xml_element {
46 const char *name;
47 const char *value;
48 STAILQ_HEAD(, xml_attribute) attributes;
49 STAILQ_ENTRY(xml_element) link;
50 } *xml_element_t;
52 typedef struct xml_document {
53 FILE *file;
54 STAILQ_HEAD(, xml_element) open_elems;
55 int nr_open;
56 const char *errmsg;
57 } *xml_document_t;
59 static inline
60 void
61 xml_elem_init(xml_element_t el, const char *name)
63 el->name = name;
64 el->value = NULL;
65 STAILQ_INIT(&el->attributes);
68 static inline
69 void
70 xml_elem_set_value(xml_element_t el, const char *value)
72 el->value = value;
75 static inline
76 void
77 xml_attribute_init(xml_attribute_t at, const char *name, const char *value)
79 at->name = name;
80 at->value = value;
83 static inline
84 void
85 xml_attribute_set_value(xml_attribute_t at, const char *value)
87 at->value = value;
90 static inline
91 void
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_ */