1 /* $NetBSD: prop_dictionary_util.c,v 1.3 2008/04/28 20:22:53 martin Exp $ */
4 * Copyright (c) 2006 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 * Utility routines to make it more convenient to work with values
34 * stored in dictionaries.
36 * Note: There is no special magic going on here. We use the standard
37 * proplib(3) APIs to do all of this work. Any application could do
38 * exactly what we're doing here.
41 #include <prop/proplib.h>
42 #include "prop_object_impl.h" /* only to hide kernel vs. not-kernel */
45 prop_dictionary_get_bool(prop_dictionary_t dict
,
51 b
= prop_dictionary_get(dict
, key
);
52 if (prop_object_type(b
) != PROP_TYPE_BOOL
)
55 *valp
= prop_bool_true(b
);
61 prop_dictionary_set_bool(prop_dictionary_t dict
,
68 b
= prop_bool_create(val
);
71 rv
= prop_dictionary_set(dict
, key
, b
);
72 prop_object_release(b
);
77 #define TEMPLATE(size) \
79 prop_dictionary_get_int ## size (prop_dictionary_t dict, \
81 int ## size ## _t *valp) \
85 num = prop_dictionary_get(dict, key); \
86 if (prop_object_type(num) != PROP_TYPE_NUMBER) \
89 if (prop_number_unsigned(num) && \
90 prop_number_unsigned_integer_value(num) > \
91 /*CONSTCOND*/((size) == 8 ? INT8_MAX : \
92 (size) == 16 ? INT16_MAX : \
93 (size) == 32 ? INT32_MAX : INT64_MAX)) { \
97 if (prop_number_size(num) > (size)) \
100 *valp = (int ## size ## _t) prop_number_integer_value(num); \
106 prop_dictionary_get_uint ## size (prop_dictionary_t dict, \
108 uint ## size ## _t *valp) \
112 num = prop_dictionary_get(dict, key); \
113 if (prop_object_type(num) != PROP_TYPE_NUMBER) \
116 if (prop_number_unsigned(num) == false && \
117 prop_number_integer_value(num) < 0) { \
121 if (prop_number_size(num) > (size)) \
124 *valp = (uint ## size ## _t) \
125 prop_number_unsigned_integer_value(num); \
131 prop_dictionary_set_int ## size (prop_dictionary_t dict, \
133 int ## size ## _t val) \
138 num = prop_number_create_integer((int64_t) val); \
141 rv = prop_dictionary_set(dict, key, num); \
142 prop_object_release(num); \
148 prop_dictionary_set_uint ## size (prop_dictionary_t dict, \
150 uint ## size ## _t val) \
155 num = prop_number_create_unsigned_integer((uint64_t) val); \
158 rv = prop_dictionary_set(dict, key, num); \
159 prop_object_release(num); \
171 #define TEMPLATE(variant, qualifier) \
173 prop_dictionary_get_cstring ## variant (prop_dictionary_t dict, \
175 qualifier char **cpp) \
179 str = prop_dictionary_get(dict, key); \
180 if (prop_object_type(str) != PROP_TYPE_STRING) \
183 *cpp = prop_string_cstring ## variant (str); \
185 return (*cpp == NULL ? false : true); \
189 prop_dictionary_set_cstring ## variant (prop_dictionary_t dict, \
196 str = prop_string_create_cstring ## variant (cp); \
199 rv = prop_dictionary_set(dict, key, str); \
200 prop_object_release(str); \
206 TEMPLATE(_nocopy
,const)