home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
DOOG
/
CBASE09.ZIP
/
BTREE.ZIP
/
BTSETVBU.C
< prev
next >
Wrap
Text File
|
1989-08-31
|
2KB
|
90 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "btsetvbu.c 1.1 - 89/07/03" */
#include <blkio.h>
#include <errno.h>
#include "btree_.h"
/*man---------------------------------------------------------------------------
NAME
btsetvbuf - assign buffering to a btree
SYNOPSIS
#include <btree.h>
int btsetvbuf(btp, buf, bufcnt)
btree_t *btp;
void *buf;
size_t bufcnt;
DESCRIPTION
The btsetvbuf function is used to assign buffering to a btree. If
buf is not the NULL pointer, the storage area it points to will be
used for buffering instead of an automatically allocated buffer.
bufcnt specifies the number of nodes to be buffered. If bufcnt has
a value of 0, the btree will be completely unbuffered and buf is
ignored.
The size of the storage area needed can be obtained using the
BTBUFSIZE() macro:
char buf[BTBUFSIZE(M, KEYSIZE, BUFCNT)];
.
.
.
btsetvbuf(btp, (void *)buf, BUFCNT);
where M is the degree of the btree, KEYSIZE is the size of the keys
int the btree, and BUFCNT is the number of nodes to buffer.
Any previously buffered data is flushed before installing the new
buffer area, so btsetvbuf may be called more than once. This allows
the buffer size to be varied with the file size.
btsetvbuf will fail if one or more of the following is true:
[EINVAL] btp is not a valid btree.
[BTENOPEN] btp is not open.
SEE ALSO
btsetbuf, btsync.
DIAGNOSTICS
Upon successful completion, a value of 0 is returned. Otherwise, a
value of -1 is returned, and errno set to indicate the error.
------------------------------------------------------------------------------*/
int btsetvbuf(btp, buf, bufcnt)
btree_t * btp;
void * buf;
size_t bufcnt;
{
int rs = 0;
errno = 0;
/* validate arguments */
if (!bt_valid(btp)) {
errno = EINVAL;
return -1;
}
/* check if not open */
if (!(btp->flags & BTOPEN)) {
errno = BTENOPEN;
return -1;
}
/* set buffering */
rs = bsetvbuf(btp->bp, buf, bt_blksize(btp), bufcnt);
if (rs == -1) {
BTEPRINT;
return -1;
}
errno = 0;
return 0;
}