OSDN Git Service

(split) LDP: Update original to LDP v3.40.
[linuxjm/LDP_man-pages.git] / original / man3 / hash.3
1 .\" Copyright (c) 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)hash.3      8.6 (Berkeley) 8/18/94
33 .\"
34 .TH HASH 3 2012-04-23 "" "Linux Programmer's Manual"
35 .UC 7
36 .SH NAME
37 hash \- hash database access method
38 .SH SYNOPSIS
39 .nf
40 .ft B
41 #include <sys/types.h>
42 #include <db.h>
43 .ft R
44 .fi
45 .SH DESCRIPTION
46 .IR "Note well" :
47 This page documents interfaces provided in glibc up until version 2.1.
48 Since version 2.2, glibc no longer provides these interfaces.
49 Probably, you are looking for the APIs provided by the
50 .I libdb
51 library instead.
52
53 The routine
54 .BR dbopen (3)
55 is the library interface to database files.
56 One of the supported file formats is hash files.
57 The general description of the database access methods is in
58 .BR dbopen (3),
59 this manual page describes only the hash specific information.
60 .PP
61 The hash data structure is an extensible, dynamic hashing scheme.
62 .PP
63 The access method specific data structure provided to
64 .BR dbopen (3)
65 is defined in the
66 .I <db.h>
67 include file as follows:
68 .in +4n
69 .nf
70
71 typedef struct {
72     unsigned int       bsize;
73     unsigned int       ffactor;
74     unsigned int       nelem;
75     unsigned int       cachesize;
76     uint32_t         (*hash)(const void *, size_t);
77     int         lorder;
78 } HASHINFO;
79 .fi
80 .in
81 .PP
82 The elements of this structure are as follows:
83 .TP 10
84 .I bsize
85 defines the hash table bucket size, and is, by default, 256 bytes.
86 It may be preferable to increase the page size for disk-resident tables
87 and tables with large data items.
88 .TP
89 .I ffactor
90 indicates a desired density within the hash table.
91 It is an approximation of the number of keys allowed to accumulate in any
92 one bucket, determining when the hash table grows or shrinks.
93 The default value is 8.
94 .TP
95 .I nelem
96 is an estimate of the final size of the hash table.
97 If not set or set too low, hash tables will expand gracefully as keys
98 are entered, although a slight performance degradation may be noticed.
99 The default value is 1.
100 .TP
101 .I cachesize
102 is the suggested maximum size, in bytes, of the memory cache.
103 This value is
104 .IR "only advisory" ,
105 and the access method will allocate more memory rather than fail.
106 .TP
107 .I hash
108 is a user-defined hash function.
109 Since no hash function performs equally well on all possible data, the
110 user may find that the built-in hash function does poorly on a particular
111 data set.
112 A user-specified hash functions must take two arguments (a pointer to a byte
113 string and a length) and return a 32-bit quantity to be used as the hash
114 value.
115 .TP
116 .I lorder
117 is the byte order for integers in the stored database metadata.
118 The number should represent the order as an integer; for example,
119 big endian order would be the number 4,321.
120 If
121 .I lorder
122 is 0 (no order is specified) the current host order is used.
123 If the file already exists, the specified value is ignored and the
124 value specified when the tree was created is used.
125 .PP
126 If the file already exists (and the
127 .B O_TRUNC
128 flag is not specified), the
129 values specified for
130 .IR bsize ,
131 .IR ffactor ,
132 .IR lorder ,
133 and
134 .I nelem
135 are
136 ignored and the values specified when the tree was created are used.
137 .PP
138 If a hash function is specified,
139 .I hash_open
140 will attempt to determine if the hash function specified is the same as
141 the one with which the database was created, and will fail if it is not.
142 .PP
143 Backward-compatible interfaces to the routines described in
144 .BR dbm (3),
145 and
146 .BR ndbm (3)
147 are provided, however these interfaces are not compatible with
148 previous file formats.
149 .SH ERRORS
150 The
151 .I hash
152 access method routines may fail and set
153 .I errno
154 for any of the errors specified for the library routine
155 .BR dbopen (3).
156 .SH BUGS
157 Only big and little endian byte order are supported.
158 .SH "SEE ALSO"
159 .BR btree (3),
160 .BR dbopen (3),
161 .BR mpool (3),
162 .BR recno (3)
163 .sp
164 .IR "Dynamic Hash Tables" ,
165 Per-Ake Larson, Communications of the ACM, April 1988.
166 .sp
167 .IR "A New Hash Package for UNIX" ,
168 Margo Seltzer, USENIX Proceedings, Winter 1991.