inpcb: Use netisr_ncpus for listing inpcbs.
[dragonfly.git] / usr.bin / evtranalyze / xml.c
blobfa7e7590e044b59b0c2b6be160b2450717b55e61
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 #include <stdlib.h>
33 #include <stdio.h>
34 #include <string.h>
36 #include "xml.h"
37 #include "trivial.h"
39 xml_document_t
40 xml_document_create(const char *file)
42 xml_document_t doc;
44 if ((doc = malloc(sizeof(struct xml_document))) == NULL)
45 return (NULL);
47 if ((doc->file = fopen(file, "w")) == NULL) {
48 free(doc);
49 return (NULL);
51 STAILQ_INIT(&doc->open_elems);
52 doc->nr_open = 0;
53 doc->errmsg = NULL;
55 fprintf(doc->file, "<?xml version=\"1.0\" encoding=\"UTF-8\" "
56 "standalone=\"no\"?>\n");
57 fprintf(doc->file, "<!-- Created by evtranalyze -->\n");
59 return doc;
62 int
63 xml_document_close(xml_document_t doc)
65 fclose(doc->file);
66 return 0;
70 static
71 void
72 indent(xml_document_t doc)
74 int i;
76 for (i = 0; i < doc->nr_open; ++i) {
77 fprintf(doc->file, " ");
81 #if 0
82 int
83 xml_elem_compile(xml_element_t el)
85 char *buf, *p;
86 int bufsize, c, ret;
88 bufsize = 2;
89 if (!(buf = malloc(bufsize))) {
90 return !0;
92 again_name:
93 p = buf;
94 ret = snprintf(p, sizeof(buf), "<%s ", el->name);
95 if (ret > sizeof(buf)) {
96 bufsize *= 2;
97 buf = realloc(bufsize);
98 if (!buf) {
99 free(p);
100 return !0;
102 goto again_name;
104 c += ret;
106 #endif
108 static
110 xml_elem_print(xml_document_t doc, xml_element_t el, int closed, int nl)
112 xml_attribute_t at;
113 fprintf(doc->file, "<%s", el->name);
114 STAILQ_FOREACH(at, &el->attributes, next) {
115 fprintf(doc->file, " %s=\"%s\"", at->name, at->value);
117 fprintf(doc->file, "%s%s", closed ? "/>" : ">", nl ? "\n" : "");
118 return 0;
121 static
123 _xml_elem_begin(xml_document_t doc, xml_element_t el, int closed, int nl)
125 STAILQ_INSERT_HEAD(&doc->open_elems, el, link);
126 indent(doc);
127 ++doc->nr_open;
128 xml_elem_print(doc, el, closed, nl);
129 return 0;
132 static
134 _xml_elem_close(xml_document_t doc, xml_element_t el, int do_indent)
136 if (el != STAILQ_FIRST(&doc->open_elems)) {
137 return !0;
140 STAILQ_REMOVE_HEAD(&doc->open_elems, link);
141 --doc->nr_open;
142 if (do_indent)
143 indent(doc);
144 fprintf(doc->file, "</%s>\n", el->name);
145 return 0;
149 xml_elem_close(xml_document_t doc, xml_element_t el)
151 return _xml_elem_close(doc, el, !0);
155 xml_elem_begin(xml_document_t doc, xml_element_t el)
157 if (el->value) {
158 return !0;
160 return _xml_elem_begin(doc, el, 0, !0);
164 xml_elem_closed(xml_document_t doc, xml_element_t el)
166 if (el->value) {
167 _xml_elem_begin(doc, el, 0, 0);
168 fprintf(doc->file, "%s", el->value);
169 _xml_elem_close(doc, el, 0);
170 return 0;
172 indent(doc);
173 return xml_elem_print(doc, el, !0, !0);