Apache HTTPD
apr_xml.h
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
20#ifndef APR_XML_H
21#define APR_XML_H
22
28#include "apr_pools.h"
29#include "apr_tables.h"
30#include "apr_file_io.h"
31
32#include "apu.h"
33#if APR_CHARSET_EBCDIC
34#include "apr_xlate.h"
35#endif
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
45/* -------------------------------------------------------------------- */
46
47/* ### these will need to move at some point to a more logical spot */
48
50typedef struct apr_text apr_text;
51
53struct apr_text {
55 const char *text;
57 struct apr_text *next;
58};
59
62
70
78 const char *text);
79
80
81/* --------------------------------------------------------------------
82**
83** XML PARSING
84*/
85
86/*
87** Qualified namespace values
88**
89** APR_XML_NS_DAV_ID
90** We always insert the "DAV:" namespace URI at the head of the
91** namespace array. This means that it will always be at ID==0,
92** making it much easier to test for.
93**
94** APR_XML_NS_NONE
95** This special ID is used for two situations:
96**
97** 1) The namespace prefix begins with "xml" (and we do not know
98** what it means). Namespace prefixes with "xml" (any case) as
99** their first three characters are reserved by the XML Namespaces
100** specification for future use. mod_dav will pass these through
101** unchanged. When this identifier is used, the prefix is LEFT in
102** the element/attribute name. Downstream processing should not
103** prepend another prefix.
104**
105** 2) The element/attribute does not have a namespace.
106**
107** a) No prefix was used, and a default namespace has not been
108** defined.
109** b) No prefix was used, and the default namespace was specified
110** to mean "no namespace". This is done with a namespace
111** declaration of: xmlns=""
112** (this declaration is typically used to override a previous
113** specification for the default namespace)
114**
115** In these cases, we need to record that the elem/attr has no
116** namespace so that we will not attempt to prepend a prefix.
117** All namespaces that are used will have a prefix assigned to
118** them -- mod_dav will never set or use the default namespace
119** when generating XML. This means that "no prefix" will always
120** mean "no namespace".
121**
122** In both cases, the XML generation will avoid prepending a prefix.
123** For the first case, this means the original prefix/name will be
124** inserted into the output stream. For the latter case, it means
125** the name will have no prefix, and since we never define a default
126** namespace, this means it will have no namespace.
127**
128** Note: currently, mod_dav understands the "xmlns" prefix and the
129** "xml:lang" attribute. These are handled specially (they aren't
130** left within the XML tree), so the APR_XML_NS_NONE value won't ever
131** really apply to these values.
132*/
133#define APR_XML_NS_DAV_ID 0
134#define APR_XML_NS_NONE -10
136#define APR_XML_NS_ERROR_BASE -100
138#define APR_XML_NS_IS_ERROR(e) ((e) <= APR_XML_NS_ERROR_BASE)
139
146
150 const char *name;
152 int ns;
153
155 const char *value;
156
159};
160
164 const char *name;
166 int ns;
168 const char *lang;
169
174
183
184 /* used only during parsing */
189
190 /* used by modules during request processing */
192 void *priv;
193};
194
196#define APR_XML_ELEM_IS_EMPTY(e) ((e)->first_child == NULL && \
197 (e)->first_cdata.first == NULL)
198
206
209
216
232
233
243 const char *data,
245
256
265 char *errbuf,
267
268
288 int *ns_map, const char **pbuf,
290
291/* style argument values: */
292#define APR_XML_X2T_FULL 0
293#define APR_XML_X2T_INNER 1
294#define APR_XML_X2T_LANG_INNER 2
295#define APR_XML_X2T_FULL_NS_LANG 3
296#define APR_XML_X2T_PARSED 4
305 const apr_xml_elem *elem);
306
317APU_DECLARE(const char *) apr_xml_quote_string(apr_pool_t *p, const char *s,
318 int quotes);
319
326
327/* manage an array of unique URIs: apr_xml_insert_uri() and APR_XML_URI_ITEM() */
328
336 const char *uri);
337
339#define APR_XML_GET_URI_ITEM(ary, i) (((const char * const *)(ary)->elts)[i])
340
341#if APR_CHARSET_EBCDIC
351 apr_xlate_t *convset);
352#endif
353
354#ifdef __cplusplus
355}
356#endif
358#endif /* APR_XML_H */
APR File I/O Handling.
APR memory allocation.
APR Table library.
APR I18N translation library.
const apr_xml_elem int apr_array_header_t int const char apr_size_t * psize
Definition apr_xml.h:289
const char apr_size_t len
Definition apr_xml.h:244
const apr_xml_elem int apr_array_header_t int * ns_map
Definition apr_xml.h:288
apr_xml_parser apr_xml_doc ** ppdoc
Definition apr_xml.h:229
const char * uri
Definition apr_xml.h:336
apr_text_header const char * text
Definition apr_xml.h:78
apr_xml_parser ** parser
Definition apr_xml.h:228
char * errbuf
Definition apr_xml.h:265
const char * data
Definition apr_xml.h:243
APU_DECLARE(void) apr_text_append(apr_pool_t *p
Computes SipHash-2-4, producing a 64bit (APR_SIPHASH_DSIZE) hash from a message and a 128bit (APR_SIP...
Definition apr_sha1.c:206
const char * s
Definition apr_xml.h:317
char apr_size_t errbufsize
Definition apr_xml.h:266
const apr_xml_elem int style
Definition apr_xml.h:287
const apr_xml_elem int apr_array_header_t int const char ** pbuf
Definition apr_xml.h:288
apr_xml_parser apr_xml_doc apr_file_t * xmlfd
Definition apr_xml.h:230
apr_text_header * hdr
Definition apr_xml.h:77
apr_xml_doc ** pdoc
Definition apr_xml.h:255
apr_xml_parser apr_xml_doc apr_file_t apr_size_t buffer_length
Definition apr_xml.h:231
const apr_xml_elem int apr_array_header_t * namespaces
Definition apr_xml.h:287
const char int quotes
Definition apr_xml.h:318
struct apr_xlate_t apr_xlate_t
Definition apr_xlate.h:39
apr_size_t size
const char int apr_pool_t * pool
Definition apr_cstr.h:84
int apr_status_t
Definition apr_errno.h:44
apr_pool_t * p
Definition md_event.c:32
apr_text * last
Definition apr_xml.h:68
apr_text * first
Definition apr_xml.h:66
const char * text
Definition apr_xml.h:55
struct apr_text * next
Definition apr_xml.h:57
const char * value
Definition apr_xml.h:155
const char * name
Definition apr_xml.h:150
struct apr_xml_attr * next
Definition apr_xml.h:158
apr_array_header_t * namespaces
Definition apr_xml.h:204
apr_xml_elem * root
Definition apr_xml.h:202
void * priv
Definition apr_xml.h:192
struct apr_xml_elem * parent
Definition apr_xml.h:176
const char * name
Definition apr_xml.h:164
struct apr_xml_elem * first_child
Definition apr_xml.h:180
apr_text_header first_cdata
Definition apr_xml.h:171
struct apr_xml_elem * next
Definition apr_xml.h:178
apr_text_header following_cdata
Definition apr_xml.h:173
const char * lang
Definition apr_xml.h:168
struct apr_xml_attr * attr
Definition apr_xml.h:182
struct apr_xml_elem * last_child
Definition apr_xml.h:186
struct apr_xml_ns_scope * ns_scope
Definition apr_xml.h:188