lssetvbu.cpp

来自「CBASE v1.01 采用Borland公司TC++编写的数据库管理源程序库」· C++ 代码 · 共 85 行

CPP
85
字号
/*	Copyright (c) 1989 Citadel	*/
/*	   All Rights Reserved    	*/

/* #ident	"@(#)lssetvbu.c	1.4 - 90/06/20" */

/* ansi headers */
#include <errno.h>
/*#include <stddef.h>*/

/* local headers */
#include <blkio.h>

/* local headers */
#include "lseq_.h"

/*man---------------------------------------------------------------------------
NAME
     lssetvbuf - assign buffering to an lseq

SYNOPSIS
     #include <lseq.h>

     int lssetvbuf(lsp, buf, bufcnt)
     lseq_t *lsp;
     void *buf;
     size_t bufcnt;

DESCRIPTION
     The lssetvbuf function is used to assign buffering to an lseq.
     bufcnt specifies the number of lseq records to be buffered.  If
     bufcnt has a value of zero, the lseq will be completely
     unbuffered.  If buf is not the NULL pointer, the storage area it
     points to will be used instead of one automatically allocated for
     buffering.

     The size of the storage area needed can be obtained using the
     LSBUFSIZE() macro:

          char buf[LSBUFSIZE(RECSIZE, BUFCNT)];
          lssetvbuf(lsp, buf, BUFCNT);

     where RECSIZE is the size of the keys int the lseq, and BUFCNT is
     the number of records to buffer.

     Any previously buffered data is flushed before installing the new
     buffer area, so lssetvbuf may be called more than once.  This
     allows the buffer size to be varied with the file size.

     lssetvbuf will fail if one or more of the following is true:

     [EINVAL]       lsp is not a valid lseq pointer.
     [LSENOPEN]     lsp is not open.

SEE ALSO
     lssetbuf, lssync.

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 lssetvbuf(lseq_t *lsp, void *buf, size_t bufcnt)
{
	/* validate arguments */
	if (!ls_valid(lsp)) {
		errno = EINVAL;
		return -1;
	}

	/* check if not open */
	if (!(lsp->flags & LSOPEN)) {
		errno = LSENOPEN;
		return -1;
	}

	/* set buffering */
	if (bsetvbuf(lsp->bp, buf, ls_blksize(lsp), bufcnt) == -1) {
		LSEPRINT;
		return -1;
	}

	errno = 0;
	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?