1.\" $NetBSD: proplib.3,v 1.5 2008/04/30 13:10:46 martin 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 21, 2007 31.Dt PROPLIB 3 32.Os 33.Sh NAME 34.Nm proplib 35.Nd property container object library 36.Sh LIBRARY 37.Lb libprop 38.Sh SYNOPSIS 39.In prop/proplib.h 40.Sh DESCRIPTION 41The 42.Nm 43library provides an abstract interface for creating and manipulating 44property lists. 45Property lists have object types for boolean values, opaque data, numbers, 46and strings. 47Structure is provided by the array and dictionary collection types. 48.Pp 49Property lists can be passed across protection boundaries by translating 50them to an external representation. 51This external representation is an XML document whose format is described 52by the following DTD: 53.Bd -literal -offset indent 54http://www.apple.com/DTDs/PropertyList-1.0.dtd 55.Ed 56.Pp 57Property container objects are reference counted. 58When an object is created, its reference count is set to 1. 59Any code that keeps a reference to an object, including the collection 60types 61.Pq arrays and dictionaries , 62must 63.Dq retain 64the object 65.Pq increment its reference count . 66When that reference is dropped, the object must be 67.Dq released 68.Pq reference count decremented . 69When an object's reference count drops to 0, it is automatically freed. 70.Pp 71The rules for managing reference counts are very simple: 72.Bl -bullet 73.It 74If you create an object and do not explicitly maintain a reference to it, 75you must release it. 76.It 77If you get a reference to an object from other code and wish to maintain 78a reference to it, you must retain the object. You are responsible for 79releasing the object once you drop that reference. 80.It 81You must never release an object unless you create it or retain it. 82.El 83.Pp 84Object collections may be iterated by creating a special iterator object. 85Iterator objects are special; they may not be retained, and they are 86released using an iterator-specific release function. 87.Sh SEE ALSO 88.Xr prop_array 3 , 89.Xr prop_bool 3 , 90.Xr prop_data 3 , 91.Xr prop_dictionary 3 , 92.Xr prop_dictionary_util 3 , 93.Xr prop_number 3 , 94.Xr prop_object 3 , 95.Xr prop_send_ioctl 3 , 96.Xr prop_string 3 97.Sh HISTORY 98The 99.Nm 100property container object library first appeared in 101.Nx 4.0 . 102.Sh CAVEATS 103.Nm 104does not have a 105.Sq date 106object type, and thus will not parse 107.Sq date 108elements from an Apple XML property list. 109.Pp 110The 111.Nm 112.Sq number 113object type differs from the Apple XML property list format in the following 114ways: 115.Bl -bullet 116.It 117The external representation is in base 16, not base 10. 118.Nm 119is able to parse base 8, base 10, and base 16 120.Sq integer 121elements. 122.It 123Internally, integers are always stored as unsigned numbers 124.Pq uint64_t . 125Therefore, the external representation will never be negative. 126.It 127Because floating point numbers are not supported, 128.Sq real 129elements from an Apple XML property list will not be parsed. 130.El 131.Pp 132In order to facilitate use of 133.Nm 134in kernel, standalone, and user space environments, the 135.Nm 136parser is not a real XML parser. 137It is hard-coded to parse only the property list external representation. 138