[BACK]Return to cdbr.3 CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / cdb

File: [cvs.NetBSD.org] / src / lib / libc / cdb / cdbr.3 (download)

Revision 1.4, Thu Dec 5 21:17:23 2013 UTC (10 years, 4 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Changes since 1.3: +29 -2 lines

Add cdbr_open_mem.

.\"	$NetBSD: cdbr.3,v 1.4 2013/12/05 21:17:23 joerg Exp $
.\"
.\" Copyright (c) 2010 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Joerg Sonnenberger.
.\" 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 COPYRIGHT HOLDERS AND CONTRIBUTORS
.\" ``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
.\" COPYRIGHT HOLDERS OR CONTRIBUTORS 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.
.Dd December 5, 2013
.Dt CDBR 3
.Os
.Sh NAME
.Nm cdbr
.Nm cdbr_open ,
.Nm cdbr_open_mem ,
.Nm cdbr_entries ,
.Nm cdbr_get ,
.Nm cdbr_find ,
.Nm cdbr_close ,
.Nm cdbr_write
.Nd constant database access methods
.Sh SYNOPSIS
.Ft "struct cdbr *"
.Fn cdbr_open "const char *path" "int flags"
.Ft "struct cdbr *"
.Fo cdbr_open_mem
.Fa "void *base"
.Fa "size_t size"
.Fa "void (*unmap)(void *, void *, size_t)"
.Fa "void *cookie"
.Fc
.Ft uint32_t
.Fn cdbr_entries "struct cdbr *cdbr"
.Ft int
.Fn cdbr_get "struct cdbr *cdbr" "uint32_t index" "const void **data" "size_t *datalen"
.Ft int
.Fo cdbr_find
.Fa "struct cdbr *cdbr"
.Fa "const void *key"
.Fa "size_t keylen"
.Fa "const void **data"
.Fa "size_t *datalen"
.Fc
.Ft void
.Fn cdbr_close "struct cdbr *cdbr"
.Sh DESCRIPTION
The
.Nm
library provides a space efficient (key,value) database based
on perfect hashing.
.Pp
A cdb database is opened for reading by calling
.Fn cdbr_open .
The only supported value for
.Va flags
is
.Dv CDBR_DEFAULT .
The function returns a handle to pass to the other functions.
The database is closed by invoking
.Fn cdbr_close .
All resources associated with the handle are freed and the memory
returned by
.Fn cdbr_get
and
.Fn cdbr_find
is invalidated.
.Fn cdbr_open_mem
works like
.Fn cdbr_open ,
but takes a memory reference to the content of the database file.
If
.Va unmap
is not
.Dv NULL ,
it is called by
.Fn cdbr_close
with
.Va cookie ,
.Va base
and
.Va size
as arguments.
It is not called by
.Fn cdbr_open_mem
on error.
.Pp
The number of records in the database can be obtained by calling
.Fn cdbr_entries .
Records can be obtained by record number using
.Fn cdbr_get
or by key using
.Fn cdbr_find .
Both functions return 0 on success and update
.Va data
and
.Va datalen
accordingly.
The location
.Va *data
remains valid until
.Fn cdbr_close
is called.
It is the responsibility of the caller of
.Fn cdbr_find
to ensure that the key matches the returned data.
The function returns the only possible match, but the database doesn't store
the keys to minimize overhead.
.Sh SEE ALSO
.Xr nbperf 1 ,
.Xr cdbw 3 ,
.Xr db 3 ,
.Xr cdb 5
.Sh HISTORY
Support for the
.Nm cdb
format first appeared in
.Nx 6.0 .
.Sh AUTHORS
The
.Nm cdbr
and
.Nm cdbw
functions have been written by
.An Joerg Sonnenberger Aq Mt joerg@NetBSD.org .