prop_dictionary_util.c revision 1.3 1 1.3 martin /* $NetBSD: prop_dictionary_util.c,v 1.3 2008/04/28 20:22:53 martin 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 *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej /*
33 1.1 thorpej * Utility routines to make it more convenient to work with values
34 1.1 thorpej * stored in dictionaries.
35 1.1 thorpej *
36 1.1 thorpej * Note: There is no special magic going on here. We use the standard
37 1.1 thorpej * proplib(3) APIs to do all of this work. Any application could do
38 1.1 thorpej * exactly what we're doing here.
39 1.1 thorpej */
40 1.1 thorpej
41 1.1 thorpej #include <prop/proplib.h>
42 1.1 thorpej #include "prop_object_impl.h" /* only to hide kernel vs. not-kernel */
43 1.1 thorpej
44 1.2 thorpej bool
45 1.1 thorpej prop_dictionary_get_bool(prop_dictionary_t dict,
46 1.1 thorpej const char *key,
47 1.2 thorpej bool *valp)
48 1.1 thorpej {
49 1.1 thorpej prop_bool_t b;
50 1.1 thorpej
51 1.1 thorpej b = prop_dictionary_get(dict, key);
52 1.1 thorpej if (prop_object_type(b) != PROP_TYPE_BOOL)
53 1.2 thorpej return (false);
54 1.1 thorpej
55 1.1 thorpej *valp = prop_bool_true(b);
56 1.1 thorpej
57 1.2 thorpej return (true);
58 1.1 thorpej }
59 1.1 thorpej
60 1.2 thorpej bool
61 1.1 thorpej prop_dictionary_set_bool(prop_dictionary_t dict,
62 1.1 thorpej const char *key,
63 1.2 thorpej bool val)
64 1.1 thorpej {
65 1.1 thorpej prop_bool_t b;
66 1.1 thorpej int rv;
67 1.1 thorpej
68 1.1 thorpej b = prop_bool_create(val);
69 1.1 thorpej if (b == NULL)
70 1.2 thorpej return (false);
71 1.1 thorpej rv = prop_dictionary_set(dict, key, b);
72 1.1 thorpej prop_object_release(b);
73 1.1 thorpej
74 1.1 thorpej return (rv);
75 1.1 thorpej }
76 1.1 thorpej
77 1.1 thorpej #define TEMPLATE(size) \
78 1.2 thorpej bool \
79 1.1 thorpej prop_dictionary_get_int ## size (prop_dictionary_t dict, \
80 1.1 thorpej const char *key, \
81 1.1 thorpej int ## size ## _t *valp) \
82 1.1 thorpej { \
83 1.1 thorpej prop_number_t num; \
84 1.1 thorpej \
85 1.1 thorpej num = prop_dictionary_get(dict, key); \
86 1.1 thorpej if (prop_object_type(num) != PROP_TYPE_NUMBER) \
87 1.2 thorpej return (false); \
88 1.1 thorpej \
89 1.1 thorpej if (prop_number_unsigned(num) && \
90 1.1 thorpej prop_number_unsigned_integer_value(num) > \
91 1.1 thorpej /*CONSTCOND*/((size) == 8 ? INT8_MAX : \
92 1.1 thorpej (size) == 16 ? INT16_MAX : \
93 1.1 thorpej (size) == 32 ? INT32_MAX : INT64_MAX)) { \
94 1.2 thorpej return (false); \
95 1.1 thorpej } \
96 1.1 thorpej \
97 1.1 thorpej if (prop_number_size(num) > (size)) \
98 1.2 thorpej return (false); \
99 1.1 thorpej \
100 1.1 thorpej *valp = (int ## size ## _t) prop_number_integer_value(num); \
101 1.1 thorpej \
102 1.2 thorpej return (true); \
103 1.1 thorpej } \
104 1.1 thorpej \
105 1.2 thorpej bool \
106 1.1 thorpej prop_dictionary_get_uint ## size (prop_dictionary_t dict, \
107 1.1 thorpej const char *key, \
108 1.1 thorpej uint ## size ## _t *valp) \
109 1.1 thorpej { \
110 1.1 thorpej prop_number_t num; \
111 1.1 thorpej \
112 1.1 thorpej num = prop_dictionary_get(dict, key); \
113 1.1 thorpej if (prop_object_type(num) != PROP_TYPE_NUMBER) \
114 1.2 thorpej return (false); \
115 1.1 thorpej \
116 1.2 thorpej if (prop_number_unsigned(num) == false && \
117 1.1 thorpej prop_number_integer_value(num) < 0) { \
118 1.2 thorpej return (false); \
119 1.1 thorpej } \
120 1.1 thorpej \
121 1.1 thorpej if (prop_number_size(num) > (size)) \
122 1.2 thorpej return (false); \
123 1.1 thorpej \
124 1.1 thorpej *valp = (uint ## size ## _t) \
125 1.1 thorpej prop_number_unsigned_integer_value(num); \
126 1.1 thorpej \
127 1.2 thorpej return (true); \
128 1.1 thorpej } \
129 1.1 thorpej \
130 1.2 thorpej bool \
131 1.1 thorpej prop_dictionary_set_int ## size (prop_dictionary_t dict, \
132 1.1 thorpej const char *key, \
133 1.1 thorpej int ## size ## _t val) \
134 1.1 thorpej { \
135 1.1 thorpej prop_number_t num; \
136 1.1 thorpej int rv; \
137 1.1 thorpej \
138 1.1 thorpej num = prop_number_create_integer((int64_t) val); \
139 1.1 thorpej if (num == NULL) \
140 1.2 thorpej return (false); \
141 1.1 thorpej rv = prop_dictionary_set(dict, key, num); \
142 1.1 thorpej prop_object_release(num); \
143 1.1 thorpej \
144 1.1 thorpej return (rv); \
145 1.1 thorpej } \
146 1.1 thorpej \
147 1.2 thorpej bool \
148 1.1 thorpej prop_dictionary_set_uint ## size (prop_dictionary_t dict, \
149 1.1 thorpej const char *key, \
150 1.1 thorpej uint ## size ## _t val) \
151 1.1 thorpej { \
152 1.1 thorpej prop_number_t num; \
153 1.1 thorpej int rv; \
154 1.1 thorpej \
155 1.1 thorpej num = prop_number_create_unsigned_integer((uint64_t) val); \
156 1.1 thorpej if (num == NULL) \
157 1.2 thorpej return (false); \
158 1.1 thorpej rv = prop_dictionary_set(dict, key, num); \
159 1.1 thorpej prop_object_release(num); \
160 1.1 thorpej \
161 1.1 thorpej return (rv); \
162 1.1 thorpej }
163 1.1 thorpej
164 1.1 thorpej TEMPLATE(8)
165 1.1 thorpej TEMPLATE(16)
166 1.1 thorpej TEMPLATE(32)
167 1.1 thorpej TEMPLATE(64)
168 1.1 thorpej
169 1.1 thorpej #undef TEMPLATE
170 1.1 thorpej
171 1.1 thorpej #define TEMPLATE(variant, qualifier) \
172 1.2 thorpej bool \
173 1.1 thorpej prop_dictionary_get_cstring ## variant (prop_dictionary_t dict, \
174 1.1 thorpej const char *key, \
175 1.1 thorpej qualifier char **cpp) \
176 1.1 thorpej { \
177 1.1 thorpej prop_string_t str; \
178 1.1 thorpej \
179 1.1 thorpej str = prop_dictionary_get(dict, key); \
180 1.1 thorpej if (prop_object_type(str) != PROP_TYPE_STRING) \
181 1.2 thorpej return (false); \
182 1.1 thorpej \
183 1.1 thorpej *cpp = prop_string_cstring ## variant (str); \
184 1.1 thorpej \
185 1.2 thorpej return (*cpp == NULL ? false : true); \
186 1.1 thorpej } \
187 1.1 thorpej \
188 1.2 thorpej bool \
189 1.1 thorpej prop_dictionary_set_cstring ## variant (prop_dictionary_t dict, \
190 1.1 thorpej const char *key, \
191 1.1 thorpej const char *cp) \
192 1.1 thorpej { \
193 1.1 thorpej prop_string_t str; \
194 1.1 thorpej int rv; \
195 1.1 thorpej \
196 1.1 thorpej str = prop_string_create_cstring ## variant (cp); \
197 1.1 thorpej if (str == NULL) \
198 1.2 thorpej return (false); \
199 1.1 thorpej rv = prop_dictionary_set(dict, key, str); \
200 1.1 thorpej prop_object_release(str); \
201 1.1 thorpej \
202 1.1 thorpej return (rv); \
203 1.1 thorpej }
204 1.1 thorpej
205 1.1 thorpej TEMPLATE(,)
206 1.1 thorpej TEMPLATE(_nocopy,const)
207 1.1 thorpej
208 1.1 thorpej #undef TEMPLATE
209