1.\" $NetBSD: prop_array_util.3,v 1.2 2008/06/04 07:46:48 wiz Exp $ 2.\" 3.\" Copyright (c) 2006 The NetBSD Foundation, Inc. 4.\" All rights reserved. 5.\" 6.\" This code is derived from software contributed to The NetBSD Foundation 7.\" by Jason R. Thorpe. 8.\" 9.\" Redistribution and use in source and binary forms, with or without 10.\" modification, are permitted provided that the following conditions 11.\" are met: 12.\" 1. Redistributions of source code must retain the above copyright 13.\" notice, this list of conditions and the following disclaimer. 14.\" 2. Redistributions in binary form must reproduce the above copyright 15.\" notice, this list of conditions and the following disclaimer in the 16.\" documentation and/or other materials provided with the distribution. 17.\" 18.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28.\" POSSIBILITY OF SUCH DAMAGE. 29.\" 30.Dd June 2, 2008 31.Dt PROP_ARRAY_UTIL 3 32.Os 33.Sh NAME 34.Nm prop_array_util , 35.Nm prop_array_get_bool , 36.Nm prop_array_set_bool , 37.Nm prop_array_get_int8 , 38.Nm prop_array_get_uint8 , 39.Nm prop_array_set_int8 , 40.Nm prop_array_set_uint8 , 41.Nm prop_array_get_int16 , 42.Nm prop_array_get_uint16 , 43.Nm prop_array_set_int16 , 44.Nm prop_array_set_uint16 , 45.Nm prop_array_get_int32 , 46.Nm prop_array_get_uint32 , 47.Nm prop_array_set_int32 , 48.Nm prop_array_set_uint32 , 49.Nm prop_array_get_int64 , 50.Nm prop_array_get_uint64 , 51.Nm prop_array_set_int64 , 52.Nm prop_array_set_uint64 , 53.Nm prop_array_get_cstring , 54.Nm prop_array_set_cstring , 55.Nm prop_array_get_cstring_nocopy , 56.Nm prop_array_set_cstring_nocopy 57.Sh LIBRARY 58.Lb libprop 59.Sh SYNOPSIS 60.In prop/proplib.h 61.\" 62.Ft bool 63.Fn prop_array_get_bool "prop_array_t dict" "unsigned int indx" \ 64 "bool *valp" 65.Ft bool 66.Fn prop_array_set_bool "prop_array_t dict" "unsigned int indx" \ 67 "bool val" 68.\" 69.Ft bool 70.Fn prop_array_get_int8 "prop_array_t dict" "unsigned int indx" \ 71 "int8_t *valp" 72.Ft bool 73.Fn prop_array_get_uint8 "prop_array_t dict" "unsigned int indx" \ 74 "uint8_t *valp" 75.Ft bool 76.Fn prop_array_set_int8 "prop_array_t dict" "unsigned int indx" \ 77 "int8_t val" 78.Ft bool 79.Fn prop_array_set_uint8 "prop_array_t dict" "unsigned int indx" \ 80 "uint8_t val" 81.\" 82.Ft bool 83.Fn prop_array_get_int16 "prop_array_t dict" "unsigned int indx" \ 84 "int16_t *valp" 85.Ft bool 86.Fn prop_array_get_uint16 "prop_array_t dict" "unsigned int indx" \ 87 "uint16_t *valp" 88.Ft bool 89.Fn prop_array_set_int16 "prop_array_t dict" "unsigned int indx" \ 90 "int16_t val" 91.Ft bool 92.Fn prop_array_set_uint16 "prop_array_t dict" "unsigned int indx" \ 93 "uint16_t val" 94.\" 95.Ft bool 96.Fn prop_array_get_int32 "prop_array_t dict" "unsigned int indx" \ 97 "int32_t *valp" 98.Ft bool 99.Fn prop_array_get_uint32 "prop_array_t dict" "unsigned int indx" \ 100 "uint32_t *valp" 101.Ft bool 102.Fn prop_array_set_int32 "prop_array_t dict" "unsigned int indx" \ 103 "int32_t val" 104.Ft bool 105.Fn prop_array_set_uint32 "prop_array_t dict" "unsigned int indx" \ 106 "uint32_t val" 107.\" 108.Ft bool 109.Fn prop_array_get_int64 "prop_array_t dict" "unsigned int indx" \ 110 "int64_t *valp" 111.Ft bool 112.Fn prop_array_get_uint64 "prop_array_t dict" "unsigned int indx" \ 113 "uint64_t *valp" 114.Ft bool 115.Fn prop_array_set_int64 "prop_array_t dict" "unsigned int indx" \ 116 "int64_t val" 117.Ft bool 118.Fn prop_array_set_uint64 "prop_array_t dict" "unsigned int indx" \ 119 "uint64_t val" 120.\" 121.Ft bool 122.Fn prop_array_get_cstring "prop_array_t dict" "unsigned int indx" \ 123 "char **strp" 124.Ft bool 125.Fn prop_array_set_cstring "prop_array_t dict" "unsigned int indx" \ 126 "const char *str" 127.\" 128.Ft bool 129.Fn prop_array_get_cstring_nocopy "prop_array_t dict" \ 130 "unsigned int indx" "const char **strp" 131.Ft bool 132.Fn prop_array_set_cstring_nocopy "prop_array_t dict" \ 133 "unsigned int indx" "const char *strp" 134.Sh DESCRIPTION 135The 136.Nm prop_array_util 137family of functions are provided to make getting and setting values in 138arrays more convenient in some applications. 139.Pp 140The getters check the type of the returned object and, in some cases, also 141ensure that the returned value is within the range implied by the getter's 142value type. 143.Pp 144The setters handle object creation and release for the caller. 145.Pp 146The 147.Fn prop_array_get_cstring 148function returns dynamically allocated memory. 149See 150.Xr prop_string 3 151for more information. 152.Pp 153The 154.Fn prop_array_get_cstring_nocopy 155and 156.Fn prop_array_set_cstring_nocopy 157functions do not copy the string that is set or returned. 158See 159.Xr prop_string 3 160for more information. 161.Sh RETURN VALUES 162The 163.Nm prop_array_util 164getter functions return 165.Dv true 166if the object exists in the array and the value is in-range, or 167.Dv false 168otherwise. 169.Pp 170The 171.Nm prop_array_util 172setter functions return 173.Dv true 174if creating the object and storing it in the array is successful, or 175.Dv false 176otherwise. 177.Sh SEE ALSO 178.Xr prop_array 3 , 179.Xr prop_bool 3 , 180.Xr prop_number 3 , 181.Xr proplib 3 182.Sh HISTORY 183The 184.Nm proplib 185property container object library first appeared in 186.Nx 4.0 . 187