]> git.saurik.com Git - apple/libc.git/blame - db/man/FreeBSD/mpool.3
Libc-391.5.22.tar.gz
[apple/libc.git] / db / man / FreeBSD / mpool.3
CommitLineData
5b2abdfb
A
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.\" @(#)mpool.3 8.1 (Berkeley) 6/4/93
3d9156a7 33.\" $FreeBSD: src/lib/libc/db/man/mpool.3,v 1.13 2004/08/27 14:51:21 roam Exp $
5b2abdfb
A
34.\"
35.Dd June 4, 1993
36.Dt MPOOL 3
37.Os
38.Sh NAME
39.Nm mpool
40.Nd "shared memory buffer pool"
41.Sh SYNOPSIS
42.In db.h
43.In mpool.h
44.Ft MPOOL *
45.Fn mpool_open "void *key" "int fd" "pgno_t pagesize" "pgno_t maxcache"
46.Ft void
47.Fo mpool_filter
48.Fa "MPOOL *mp"
49.Fa "void (*pgin)(void *, pgno_t, void *)"
50.Fa "void (*pgout)(void *, pgno_t, void *)"
51.Fa "void *pgcookie"
52.Fc
53.Ft void *
54.Fn mpool_new "MPOOL *mp" "pgno_t *pgnoaddr"
55.Ft void *
56.Fn mpool_get "MPOOL *mp" "pgno_t pgno" "u_int flags"
57.Ft int
58.Fn mpool_put "MPOOL *mp" "void *pgaddr" "u_int flags"
59.Ft int
60.Fn mpool_sync "MPOOL *mp"
61.Ft int
62.Fn mpool_close "MPOOL *mp"
63.Sh DESCRIPTION
59e0d9fe
A
64The
65.Nm mpool
66library interface is intended to provide page oriented buffer management
5b2abdfb 67of files.
5b2abdfb 68.Pp
59e0d9fe 69The
5b2abdfb 70.Fn mpool_open
59e0d9fe 71function initializes a memory pool.
5b2abdfb
A
72The
73.Fa key
3d9156a7 74argument is currently ignored.
5b2abdfb
A
75The
76.Fa fd
77argument is a file descriptor for the underlying file, which must be seekable.
5b2abdfb
A
78.Pp
79The
80.Fa pagesize
81argument is the size, in bytes, of the pages into which the file is broken up.
82The
83.Fa maxcache
84argument is the maximum number of pages from the underlying file to cache
85at any one time.
86This value is not relative to the number of processes which share a file's
87buffers, but will be the largest value specified by any of the processes
88sharing the file.
89.Pp
90The
91.Fn mpool_filter
92function is intended to make transparent input and output processing of the
93pages possible.
94If the
95.Fa pgin
96function is specified, it is called each time a buffer is read into the memory
97pool from the backing file.
98If the
99.Fa pgout
100function is specified, it is called each time a buffer is written into the
101backing file.
102Both functions are called with the
103.Fa pgcookie
104pointer, the page number and a pointer to the page to being read or written.
105.Pp
59e0d9fe 106The
5b2abdfb 107.Fn mpool_new
59e0d9fe 108function takes an
5b2abdfb
A
109.Ft MPOOL
110pointer and an address as arguments.
111If a new page can be allocated, a pointer to the page is returned and
112the page number is stored into the
113.Fa pgnoaddr
114address.
115Otherwise,
116.Dv NULL
117is returned and
118.Va errno
119is set.
120.Pp
59e0d9fe 121The
5b2abdfb 122.Fn mpool_get
59e0d9fe 123function takes a
5b2abdfb
A
124.Ft MPOOL
125pointer and a page number as arguments.
126If the page exists, a pointer to the page is returned.
127Otherwise,
128.Dv NULL
129is returned and
130.Va errno
131is set.
132The
133.Fa flags
59e0d9fe 134argument is not currently used.
5b2abdfb 135.Pp
59e0d9fe 136The
5b2abdfb 137.Fn mpool_put
59e0d9fe 138function unpins the page referenced by
5b2abdfb 139.Fa pgaddr .
59e0d9fe
A
140The
141.Fa pgaddr
142argument
5b2abdfb
A
143must be an address previously returned by
144.Fn mpool_get
145or
146.Fn mpool_new .
147The
148.Fa flags
59e0d9fe 149argument is specified by
5b2abdfb
A
150.Em or Ns 'ing
151any of the following values:
152.Bl -tag -width indent
153.It Dv MPOOL_DIRTY
154The page has been modified and needs to be written to the backing file.
155.El
156.Pp
59e0d9fe
A
157The
158.Fn mpool_put
159function
5b2abdfb
A
160returns 0 on success and -1 if an error occurs.
161.Pp
59e0d9fe 162The
5b2abdfb 163.Fn mpool_sync
59e0d9fe 164function writes all modified pages associated with the
5b2abdfb
A
165.Ft MPOOL
166pointer to the
167backing file.
59e0d9fe
A
168The
169.Fn mpool_sync
170function
5b2abdfb
A
171returns 0 on success and -1 if an error occurs.
172.Pp
173The
174.Fn mpool_close
175function free's up any allocated memory associated with the memory pool
176cookie.
177Modified pages are
178.Em not
179written to the backing file.
59e0d9fe
A
180The
181.Fn mpool_close
182function
5b2abdfb
A
183returns 0 on success and -1 if an error occurs.
184.Sh ERRORS
185The
186.Fn mpool_open
187function may fail and set
188.Va errno
189for any of the errors specified for the library routine
190.Xr malloc 3 .
191.Pp
192The
193.Fn mpool_get
194function may fail and set
195.Va errno
196for the following:
197.Bl -tag -width Er
198.It Bq Er EINVAL
199The requested record doesn't exist.
200.El
201.Pp
202The
203.Fn mpool_new
204and
205.Fn mpool_get
206functions may fail and set
207.Va errno
208for any of the errors specified for the library routines
209.Xr read 2 ,
210.Xr write 2 ,
211and
212.Xr malloc 3 .
213.Pp
214The
215.Fn mpool_sync
216function may fail and set
217.Va errno
218for any of the errors specified for the library routine
219.Xr write 2 .
220.Pp
221The
222.Fn mpool_close
223function may fail and set
224.Va errno
225for any of the errors specified for the library routine
226.Xr free 3 .
227.Sh SEE ALSO
228.Xr btree 3 ,
229.Xr dbopen 3 ,
230.Xr hash 3 ,
231.Xr recno 3