btdelete.cpp

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

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

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

#include <blkio.h>
#include <errno.h>

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

/*man---------------------------------------------------------------------------
NAME
     btdelete - delete btree key

SYNOPSIS
     #include <btree.h>

     int btdelete(btp, buf)
     btree_t *btp;
     const void *buf;

DESCRIPTION
     The btdelete function searches for the key in btree btp with the
     value pointed to by buf and deletes it.  The cursor is positioned
     to null.

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

     [EINVAL]       btp is not a valid btree pointer.
     [EINVAL]       buf is the NULL pointer.
     [BTELOCK]      btp is not write locked.
     [BTENKEY]      The key pointed to by buf is not in btp.
     [BTENOPEN]     btp is not open.

SEE ALSO
     btdelcur, btinsert, btsearch.

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 btdelete(btree_t *btp, const void *buf)
{
	int found = 0;

	/* validate arguments */
	if (!bt_valid(btp) || buf == NULL) {
		errno = EINVAL;
		return -1;
	}

	/* check if not open */
	if (!(btp->flags & BTOPEN)) {
		errno = BTENOPEN;
		return -1;
	}

	/* check if not write locked */
	if (!(btp->flags & BTWRLCK)) {
		errno = BTELOCK;
		return -1;
	}

	/* make buf the current key and generate search path */
	found = btsearch(btp, buf);
	if (found == -1) {
		BTEPRINT;
		return -1;
	}
	if (found == 0) {		/* key not in btree btp */
		errno = BTENKEY;
		return -1;
	}

	/* delete the current key */
	if (bt_delete(btp) == -1) {
		BTEPRINT;
		return -1;
	}

	errno = 0;
	return 0;
}

⌨️ 快捷键说明

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