freebsd-dev/lib/libc/db/man/mpool.3

255 lines
6.2 KiB
Groff
Raw Normal View History

1994-05-27 05:00:24 +00:00
.\" Copyright (c) 1990, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" 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.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
.\"
.\" @(#)mpool.3 8.1 (Berkeley) 6/4/93
1999-08-28 00:22:10 +00:00
.\" $FreeBSD$
1994-05-27 05:00:24 +00:00
.\"
.Dd June 17, 2011
2001-01-11 20:07:30 +00:00
.Dt MPOOL 3
.Os
.Sh NAME
.Nm mpool
.Nd "shared memory buffer pool"
.Sh SYNOPSIS
.In db.h
.In mpool.h
2001-01-11 20:07:30 +00:00
.Ft MPOOL *
.Fn mpool_open "void *key" "int fd" "pgno_t pagesize" "pgno_t maxcache"
2001-01-11 20:07:30 +00:00
.Ft void
.Fo mpool_filter
.Fa "MPOOL *mp"
.Fa "void (*pgin)(void *, pgno_t, void *)"
.Fa "void (*pgout)(void *, pgno_t, void *)"
.Fa "void *pgcookie"
.Fc
.Ft void *
.Fn mpool_new "MPOOL *mp" "pgno_t *pgnoaddr" "u_int flags"
.Ft int
.Fn mpool_delete "MPOOL *mp" "void *page"
2001-01-11 20:07:30 +00:00
.Ft void *
.Fn mpool_get "MPOOL *mp" "pgno_t pgno" "u_int flags"
.Ft int
.Fn mpool_put "MPOOL *mp" "void *pgaddr" "u_int flags"
.Ft int
.Fn mpool_sync "MPOOL *mp"
.Ft int
.Fn mpool_close "MPOOL *mp"
.Sh DESCRIPTION
2003-02-06 11:04:47 +00:00
The
.Nm mpool
library interface is intended to provide page oriented buffer management
1994-05-27 05:00:24 +00:00
of files.
2001-01-11 20:07:30 +00:00
.Pp
2003-02-06 11:04:47 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_open
2003-02-06 11:04:47 +00:00
function initializes a memory pool.
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fa key
argument is currently ignored.
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fa fd
1994-05-27 05:00:24 +00:00
argument is a file descriptor for the underlying file, which must be seekable.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fa pagesize
1994-05-27 05:00:24 +00:00
argument is the size, in bytes, of the pages into which the file is broken up.
The
2001-01-11 20:07:30 +00:00
.Fa maxcache
1994-05-27 05:00:24 +00:00
argument is the maximum number of pages from the underlying file to cache
at any one time.
This value is not relative to the number of processes which share a file's
buffers, but will be the largest value specified by any of the processes
sharing the file.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_filter
1994-05-27 05:00:24 +00:00
function is intended to make transparent input and output processing of the
pages possible.
If the
2001-01-11 20:07:30 +00:00
.Fa pgin
1994-05-27 05:00:24 +00:00
function is specified, it is called each time a buffer is read into the memory
pool from the backing file.
If the
2001-01-11 20:07:30 +00:00
.Fa pgout
1994-05-27 05:00:24 +00:00
function is specified, it is called each time a buffer is written into the
backing file.
Both functions are called with the
2001-01-11 20:07:30 +00:00
.Fa pgcookie
1994-05-27 05:00:24 +00:00
pointer, the page number and a pointer to the page to being read or written.
2001-01-11 20:07:30 +00:00
.Pp
The function
2001-01-11 20:07:30 +00:00
.Fn mpool_new
takes an
.Dv MPOOL
pointer, an address, and a set of flags as arguments.
1994-05-27 05:00:24 +00:00
If a new page can be allocated, a pointer to the page is returned and
the page number is stored into the
2001-01-11 20:07:30 +00:00
.Fa pgnoaddr
1994-05-27 05:00:24 +00:00
address.
2001-01-11 20:07:30 +00:00
Otherwise,
.Dv NULL
is returned and
.Va errno
is set.
The flags value is formed by
.Tn OR Ns 'ing
the following values:
.Bl -tag -width Ds
.It Dv MPOOL_PAGE_REQUEST
Allocate a new page with a specific page number.
.It Dv MPOOL_PAGE_NEXT
Allocate a new page with the next page number.
.El
.Pp
The function
.Fn mpool_delete
deletes the specified page from a pool and frees the page.
It takes an
.Dv MPOOL
pointer and a page as arguments.
The page must have been generated by
.Fn mpool_new .
2001-01-11 20:07:30 +00:00
.Pp
2003-02-06 11:04:47 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_get
2003-02-06 11:04:47 +00:00
function takes a
2001-01-11 20:07:30 +00:00
.Ft MPOOL
pointer and a page number as arguments.
1994-05-27 05:00:24 +00:00
If the page exists, a pointer to the page is returned.
2001-01-11 20:07:30 +00:00
Otherwise,
.Dv NULL
is returned and
.Va errno
is set.
The
.Fa flags
argument is specified by
.Em or Ns 'ing
any of the following values:
.Bl -tag -width indent
.It Dv MPOOL_IGNOREPIN
The page returned is not pinned;
page will otherwise be pinned on return.
.El
2001-01-11 20:07:30 +00:00
.Pp
2003-02-06 11:04:47 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_put
2003-02-06 11:04:47 +00:00
function unpins the page referenced by
2001-01-11 20:07:30 +00:00
.Fa pgaddr .
2002-12-19 09:40:28 +00:00
The
.Fa pgaddr
argument
1994-05-27 05:00:24 +00:00
must be an address previously returned by
2001-01-11 20:07:30 +00:00
.Fn mpool_get
1994-05-27 05:00:24 +00:00
or
2001-01-11 20:07:30 +00:00
.Fn mpool_new .
The
.Fa flags
2002-12-19 09:40:28 +00:00
argument is specified by
2001-01-11 20:07:30 +00:00
.Em or Ns 'ing
1994-05-27 05:00:24 +00:00
any of the following values:
2001-01-11 20:07:30 +00:00
.Bl -tag -width indent
.It Dv MPOOL_DIRTY
1994-05-27 05:00:24 +00:00
The page has been modified and needs to be written to the backing file.
2001-01-11 20:07:30 +00:00
.El
.Pp
2002-12-18 12:45:11 +00:00
The
.Fn mpool_put
function
1994-05-27 05:00:24 +00:00
returns 0 on success and -1 if an error occurs.
2001-01-11 20:07:30 +00:00
.Pp
2003-02-06 11:04:47 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_sync
2003-02-06 11:04:47 +00:00
function writes all modified pages associated with the
2001-01-11 20:07:30 +00:00
.Ft MPOOL
pointer to the
1994-05-27 05:00:24 +00:00
backing file.
2002-12-18 12:45:11 +00:00
The
.Fn mpool_sync
function
1994-05-27 05:00:24 +00:00
returns 0 on success and -1 if an error occurs.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_close
1994-05-27 05:00:24 +00:00
function free's up any allocated memory associated with the memory pool
cookie.
Modified pages are
2001-01-11 20:07:30 +00:00
.Em not
1994-05-27 05:00:24 +00:00
written to the backing file.
2002-12-18 12:45:11 +00:00
The
.Fn mpool_close
function
1994-05-27 05:00:24 +00:00
returns 0 on success and -1 if an error occurs.
2001-01-11 20:07:30 +00:00
.Sh ERRORS
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_open
1994-05-27 05:00:24 +00:00
function may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routine
2001-01-11 20:07:30 +00:00
.Xr malloc 3 .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_get
1994-05-27 05:00:24 +00:00
function may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for the following:
2001-01-11 20:07:30 +00:00
.Bl -tag -width Er
.It Bq Er EINVAL
2005-02-13 22:25:33 +00:00
The requested record does not exist.
2001-01-11 20:07:30 +00:00
.El
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_new
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Fn mpool_get
1994-05-27 05:00:24 +00:00
functions may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routines
2001-01-11 20:07:30 +00:00
.Xr read 2 ,
.Xr write 2 ,
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Xr malloc 3 .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_sync
1994-05-27 05:00:24 +00:00
function may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routine
2001-01-11 20:07:30 +00:00
.Xr write 2 .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn mpool_close
1994-05-27 05:00:24 +00:00
function may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routine
2001-01-11 20:07:30 +00:00
.Xr free 3 .
.Sh SEE ALSO
.Xr btree 3 ,
.Xr dbopen 3 ,
2001-01-11 20:07:30 +00:00
.Xr hash 3 ,
.Xr recno 3