prop_object_impl.h revision 1.1 1 1.1 thorpej /* $NetBSD: prop_object_impl.h,v 1.1 2006/04/27 20:11:27 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 2006 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.1 thorpej * must display the following acknowledgement:
20 1.1 thorpej * This product includes software developed by the NetBSD
21 1.1 thorpej * Foundation, Inc. and its contributors.
22 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 thorpej * contributors may be used to endorse or promote products derived
24 1.1 thorpej * from this software without specific prior written permission.
25 1.1 thorpej *
26 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.1 thorpej */
38 1.1 thorpej
39 1.1 thorpej #ifndef _PROPLIB_PROP_OBJECT_IMPL_H_
40 1.1 thorpej #define _PROPLIB_PROP_OBJECT_IMPL_H_
41 1.1 thorpej
42 1.1 thorpej struct _prop_object_externalize_context {
43 1.1 thorpej char * poec_buf; /* string buffer */
44 1.1 thorpej size_t poec_capacity; /* capacity of buffer */
45 1.1 thorpej size_t poec_len; /* current length of string */
46 1.1 thorpej unsigned int poec_depth; /* nesting depth */
47 1.1 thorpej };
48 1.1 thorpej
49 1.1 thorpej boolean_t _prop_object_externalize_start_tag(
50 1.1 thorpej struct _prop_object_externalize_context *,
51 1.1 thorpej const char *);
52 1.1 thorpej boolean_t _prop_object_externalize_end_tag(
53 1.1 thorpej struct _prop_object_externalize_context *,
54 1.1 thorpej const char *);
55 1.1 thorpej boolean_t _prop_object_externalize_empty_tag(
56 1.1 thorpej struct _prop_object_externalize_context *,
57 1.1 thorpej const char *);
58 1.1 thorpej boolean_t _prop_object_externalize_append_cstring(
59 1.1 thorpej struct _prop_object_externalize_context *,
60 1.1 thorpej const char *);
61 1.1 thorpej boolean_t _prop_object_externalize_append_encoded_cstring(
62 1.1 thorpej struct _prop_object_externalize_context *,
63 1.1 thorpej const char *);
64 1.1 thorpej boolean_t _prop_object_externalize_append_char(
65 1.1 thorpej struct _prop_object_externalize_context *,
66 1.1 thorpej unsigned char);
67 1.1 thorpej
68 1.1 thorpej struct _prop_object_externalize_context *
69 1.1 thorpej _prop_object_externalize_context_alloc(void);
70 1.1 thorpej void _prop_object_externalize_context_free(
71 1.1 thorpej struct _prop_object_externalize_context *);
72 1.1 thorpej
73 1.1 thorpej typedef enum {
74 1.1 thorpej _PROP_TAG_TYPE_START, /* e.g. <dict> */
75 1.1 thorpej _PROP_TAG_TYPE_END, /* e.g. </dict> */
76 1.1 thorpej _PROP_TAG_TYPE_EITHER
77 1.1 thorpej } _prop_tag_type_t;
78 1.1 thorpej
79 1.1 thorpej struct _prop_object_internalize_context {
80 1.1 thorpej const char *poic_xml;
81 1.1 thorpej const char *poic_cp;
82 1.1 thorpej
83 1.1 thorpej const char *poic_tag_start;
84 1.1 thorpej
85 1.1 thorpej const char *poic_tagname;
86 1.1 thorpej size_t poic_tagname_len;
87 1.1 thorpej const char *poic_tagattr;
88 1.1 thorpej size_t poic_tagattr_len;
89 1.1 thorpej const char *poic_tagattrval;
90 1.1 thorpej size_t poic_tagattrval_len;
91 1.1 thorpej
92 1.1 thorpej boolean_t poic_is_empty_element;
93 1.1 thorpej _prop_tag_type_t poic_tag_type;
94 1.1 thorpej };
95 1.1 thorpej
96 1.1 thorpej #define _PROP_EOF(c) ((c) == '\0')
97 1.1 thorpej #define _PROP_ISSPACE(c) \
98 1.1 thorpej ((c) == ' ' || (c) == '\t' || (c) == '\n' || _PROP_EOF(c))
99 1.1 thorpej
100 1.1 thorpej #define _PROP_TAG_MATCH(ctx, t) \
101 1.1 thorpej _prop_object_internalize_match((ctx)->poic_tagname, \
102 1.1 thorpej (ctx)->poic_tagname_len, \
103 1.1 thorpej (t), strlen(t))
104 1.1 thorpej
105 1.1 thorpej #define _PROP_TAGATTR_MATCH(ctx, a) \
106 1.1 thorpej _prop_object_internalize_match((ctx)->poic_tagattr, \
107 1.1 thorpej (ctx)->poic_tagattr_len, \
108 1.1 thorpej (a), strlen(a))
109 1.1 thorpej
110 1.1 thorpej #define _PROP_TAGATTRVAL_MATCH(ctx, a) \
111 1.1 thorpej _prop_object_internalize_match((ctx)->poic_tagattrval, \
112 1.1 thorpej (ctx)->poic_tagattrval_len,\
113 1.1 thorpej (a), strlen(a))
114 1.1 thorpej
115 1.1 thorpej boolean_t _prop_object_internalize_find_tag(
116 1.1 thorpej struct _prop_object_internalize_context *,
117 1.1 thorpej const char *, _prop_tag_type_t);
118 1.1 thorpej boolean_t _prop_object_internalize_match(const char *, size_t,
119 1.1 thorpej const char *, size_t);
120 1.1 thorpej prop_object_t _prop_object_internalize_by_tag(
121 1.1 thorpej struct _prop_object_internalize_context *);
122 1.1 thorpej boolean_t _prop_object_internalize_decode_string(
123 1.1 thorpej struct _prop_object_internalize_context *,
124 1.1 thorpej char *, size_t, size_t *, const char **);
125 1.1 thorpej
126 1.1 thorpej struct _prop_object_internalize_context *
127 1.1 thorpej _prop_object_internalize_context_alloc(const char *);
128 1.1 thorpej void _prop_object_internalize_context_free(
129 1.1 thorpej struct _prop_object_internalize_context *);
130 1.1 thorpej
131 1.1 thorpej /* These are here because they're required by shared code. */
132 1.1 thorpej prop_object_t _prop_array_internalize(
133 1.1 thorpej struct _prop_object_internalize_context *);
134 1.1 thorpej prop_object_t _prop_bool_internalize(
135 1.1 thorpej struct _prop_object_internalize_context *);
136 1.1 thorpej prop_object_t _prop_data_internalize(
137 1.1 thorpej struct _prop_object_internalize_context *);
138 1.1 thorpej prop_object_t _prop_dictionary_internalize(
139 1.1 thorpej struct _prop_object_internalize_context *);
140 1.1 thorpej prop_object_t _prop_number_internalize(
141 1.1 thorpej struct _prop_object_internalize_context *);
142 1.1 thorpej prop_object_t _prop_string_internalize(
143 1.1 thorpej struct _prop_object_internalize_context *);
144 1.1 thorpej
145 1.1 thorpej struct _prop_object {
146 1.1 thorpej uint32_t po_refcnt; /* reference count */
147 1.1 thorpej uint32_t po_type; /* type indicator */
148 1.1 thorpej void (*po_free)(void *); /* func to free object */
149 1.1 thorpej boolean_t (*po_extern) /* func to externalize object */
150 1.1 thorpej (struct _prop_object_externalize_context *,
151 1.1 thorpej void *);
152 1.1 thorpej };
153 1.1 thorpej
154 1.1 thorpej void _prop_object_init(struct _prop_object *);
155 1.1 thorpej void _prop_object_fini(struct _prop_object *);
156 1.1 thorpej
157 1.1 thorpej struct _prop_object_iterator {
158 1.1 thorpej prop_object_t (*pi_next_object)(void *);
159 1.1 thorpej void (*pi_reset)(void *);
160 1.1 thorpej prop_object_t pi_obj;
161 1.1 thorpej uint32_t pi_version;
162 1.1 thorpej };
163 1.1 thorpej
164 1.1 thorpej #if defined(_KERNEL)
165 1.1 thorpej
166 1.1 thorpej /*
167 1.1 thorpej * proplib in the kernel...
168 1.1 thorpej */
169 1.1 thorpej
170 1.1 thorpej #include <sys/malloc.h>
171 1.1 thorpej #include <sys/pool.h>
172 1.1 thorpej #include <sys/systm.h>
173 1.1 thorpej
174 1.1 thorpej #define _PROP_ASSERT(x) KASSERT(x)
175 1.1 thorpej
176 1.1 thorpej #define _PROP_MALLOC(s, t) malloc((s), (t), M_WAITOK)
177 1.1 thorpej #define _PROP_CALLOC(s, t) malloc((s), (t), M_WAITOK | M_ZERO)
178 1.1 thorpej #define _PROP_FREE(v, t) free((v), (t))
179 1.1 thorpej
180 1.1 thorpej #define _PROP_POOL_GET(p) pool_get(&(p), PR_WAITOK)
181 1.1 thorpej #define _PROP_POOL_PUT(p, v) pool_put(&(p), (v))
182 1.1 thorpej
183 1.1 thorpej #define _PROP_POOL_INIT(p, s, d) \
184 1.1 thorpej POOL_INIT(p, s, 0, 0, 0, d, &pool_allocator_nointr);
185 1.1 thorpej
186 1.1 thorpej #define _PROP_MALLOC_DEFINE(t, s, l) \
187 1.1 thorpej MALLOC_DEFINE(t, s, l);
188 1.1 thorpej
189 1.1 thorpej #elif defined(_STANDALONE)
190 1.1 thorpej
191 1.1 thorpej /*
192 1.1 thorpej * proplib in a standalone environment...
193 1.1 thorpej */
194 1.1 thorpej
195 1.1 thorpej #include <lib/libsa/stand.h>
196 1.1 thorpej #include <lib/libkern/libkern.h>
197 1.1 thorpej
198 1.1 thorpej void * _prop_standalone_calloc(size_t);
199 1.1 thorpej
200 1.1 thorpej #define _PROP_ASSERT(x) /* nothing */
201 1.1 thorpej
202 1.1 thorpej #define _PROP_MALLOC(s, t) alloc((s))
203 1.1 thorpej #define _PROP_CALLOC(s, t) _prop_standalone_calloc((s))
204 1.1 thorpej #define _PROP_FREE(v, t) dealloc((v), 0) /* XXX */
205 1.1 thorpej
206 1.1 thorpej #define _PROP_POOL_GET(p) alloc((p))
207 1.1 thorpej #define _PROP_POOL_PUT(p, v) dealloc((v), (p))
208 1.1 thorpej
209 1.1 thorpej #define _PROP_POOL_INIT(p, s, d) static const size_t p = s;
210 1.1 thorpej
211 1.1 thorpej #define _PROP_MALLOC_DEFINE(t, s, l) /* nothing */
212 1.1 thorpej
213 1.1 thorpej #else
214 1.1 thorpej
215 1.1 thorpej /*
216 1.1 thorpej * proplib in user space...
217 1.1 thorpej */
218 1.1 thorpej
219 1.1 thorpej #include <assert.h>
220 1.1 thorpej #include <string.h>
221 1.1 thorpej #include <stdio.h>
222 1.1 thorpej #include <stdlib.h>
223 1.1 thorpej
224 1.1 thorpej #define _PROP_ASSERT(x) assert(x)
225 1.1 thorpej
226 1.1 thorpej #define _PROP_MALLOC(s, t) malloc((s))
227 1.1 thorpej #define _PROP_CALLOC(s, t) calloc(1, (s))
228 1.1 thorpej #define _PROP_FREE(v, t) free((v))
229 1.1 thorpej
230 1.1 thorpej #define _PROP_POOL_GET(p) malloc((p))
231 1.1 thorpej #define _PROP_POOL_PUT(p, v) free((v))
232 1.1 thorpej
233 1.1 thorpej #define _PROP_POOL_INIT(p, s, d) static const size_t p = s;
234 1.1 thorpej
235 1.1 thorpej #define _PROP_MALLOC_DEFINE(t, s, l) /* nothing */
236 1.1 thorpej
237 1.1 thorpej #endif /* _KERNEL */
238 1.1 thorpej
239 1.1 thorpej #endif /* _PROPLIB_PROP_OBJECT_IMPL_H_ */
240