2001-07-15 07:53:42 +00:00
|
|
|
.\"
|
1998-10-08 06:53:32 +00:00
|
|
|
.\" Copyright (c) 1998 Jordan Hubbard
|
2001-07-15 07:53:42 +00:00
|
|
|
.\"
|
1998-10-08 06:53:32 +00:00
|
|
|
.\" All rights reserved.
|
2001-07-15 07:53:42 +00:00
|
|
|
.\"
|
1998-10-08 06:53:32 +00:00
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2001-07-15 07:53:42 +00:00
|
|
|
.\"
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1998-10-08 06:53:32 +00:00
|
|
|
.\" "
|
|
|
|
.Dd October 7, 1998
|
1999-08-15 09:51:25 +00:00
|
|
|
.Dt PROPERTIES 3
|
2010-04-14 19:08:06 +00:00
|
|
|
.Os
|
1998-10-08 06:53:32 +00:00
|
|
|
.Sh NAME
|
2001-07-15 07:53:42 +00:00
|
|
|
.Nm properties_read ,
|
2010-08-03 17:40:09 +00:00
|
|
|
.Nm property_find ,
|
1998-10-08 06:53:32 +00:00
|
|
|
.Nm properties_free
|
2000-05-09 14:02:06 +00:00
|
|
|
.Nd "functions to allow creating simple property lists from ASCII file data"
|
2000-04-22 16:17:00 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libutil
|
1998-10-08 06:53:32 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In libutil.h
|
1998-10-08 06:53:32 +00:00
|
|
|
.Ft properties
|
1998-10-09 07:33:58 +00:00
|
|
|
.Fn properties_read "int fd"
|
1998-10-08 06:53:32 +00:00
|
|
|
.Ft char *
|
1999-03-05 17:08:23 +00:00
|
|
|
.Fn property_find "properties list" "const char *name"
|
1998-10-08 06:53:32 +00:00
|
|
|
.Ft void
|
|
|
|
.Fn properties_free "properties list"
|
|
|
|
.Sh DESCRIPTION
|
2000-11-10 17:46:15 +00:00
|
|
|
.Bd -literal
|
1998-10-08 06:53:32 +00:00
|
|
|
typedef struct _properties {
|
|
|
|
struct _properties *next;
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
} *properties;
|
2000-11-10 17:46:15 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1998-10-08 06:53:32 +00:00
|
|
|
The function
|
|
|
|
.Fn properties_read
|
|
|
|
reads
|
|
|
|
.Fa name = value
|
1998-10-09 07:33:58 +00:00
|
|
|
pairs from the file descriptor passed in
|
|
|
|
.Fa fd
|
1998-10-08 06:53:32 +00:00
|
|
|
and returns the head of a new property list, assuming that the
|
|
|
|
file's contents have been parsed properly, or NULL in case
|
1998-11-22 13:20:09 +00:00
|
|
|
of error.
|
1998-10-08 06:53:32 +00:00
|
|
|
.Pp
|
2003-03-24 16:02:05 +00:00
|
|
|
The
|
1998-10-08 06:53:32 +00:00
|
|
|
.Fn property_find
|
2003-03-24 16:02:05 +00:00
|
|
|
function returns the associated value string for the property named
|
1998-10-08 06:53:32 +00:00
|
|
|
.Fa name
|
2004-07-02 23:52:20 +00:00
|
|
|
if found, otherwise NULL.
|
|
|
|
The value returned may be up to
|
2000-11-08 11:57:03 +00:00
|
|
|
.Dv PROPERTY_MAX_VALUE
|
|
|
|
bytes in length.
|
1998-10-08 06:53:32 +00:00
|
|
|
.Pp
|
2003-03-24 16:02:05 +00:00
|
|
|
The
|
1998-10-08 06:53:32 +00:00
|
|
|
.Fn properties_free
|
2003-03-24 16:02:05 +00:00
|
|
|
function is used to free the structure returned by
|
1998-10-08 06:53:32 +00:00
|
|
|
.Fn properties_read
|
|
|
|
when it is no longer needed.
|
1998-11-22 13:20:09 +00:00
|
|
|
.Sh FILE FORMAT
|
|
|
|
Each property in the file is assumed to have the format of
|
|
|
|
.Fa name = value
|
|
|
|
where
|
|
|
|
.Fa name
|
2001-07-15 07:53:42 +00:00
|
|
|
is an alphanumeric string (and any punctuation not including the `=' character)
|
1998-11-22 13:20:09 +00:00
|
|
|
and
|
|
|
|
.Fa value
|
2010-08-06 14:33:42 +00:00
|
|
|
is an arbitrary string of text terminated by a newline character.
|
2004-07-02 23:52:20 +00:00
|
|
|
If newlines
|
1998-11-22 13:20:09 +00:00
|
|
|
are desired, the entire value should be enclosed in { } (curly-bracket)
|
2004-07-02 23:52:20 +00:00
|
|
|
characters.
|
|
|
|
Any line beginning with a # or ; character is assumed to
|
1998-11-22 13:20:09 +00:00
|
|
|
be a comment and will be ignored.
|
1999-08-15 09:51:25 +00:00
|
|
|
.Sh AUTHORS
|
|
|
|
.An Jordan Hubbard
|
2005-01-20 09:17:07 +00:00
|
|
|
.Sh BUGS
|
|
|
|
Simplistic.
|