home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
progm
/
cbase.zip
/
CBASE10B.ZIP
/
CBASE.ZIP
/
CBDELCUR.C
< prev
next >
Wrap
Text File
|
1989-11-08
|
3KB
|
115 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "cbdelcur.c 1.2 - 89/11/08" */
#include <errno.h>
/*#include <stddef.h>*/
/*#include <stdlib.h>*/
/*#include <string.h>*/
#include "cbase_.h"
/*man---------------------------------------------------------------------------
NAME
cbdelcur - delete current cbase record
SYNOPSIS
#include <cbase.h>
int cbdelcur(cbp)
cbase_t *cbp;
DESCRIPTION
The cbdelcur function deletes the current record of cbase cbp.
The record cursor is set to the record following the deleted
record.
cbdelcur will fail if one or more of the following is true:
[EINVAL] cbp is not a valid cbase pointer.
[CBELOCK] cbp is not write locked.
[CBENOPEN] cbp is not open.
[CBENREC] The record cursor of cbp is null.
SEE ALSO
cbinscur, cbrcursor.
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 cbdelcur(cbp)
cbase_t * cbp;
{
lspos_t lspos = 0;
cbrpos_t cbrpos = 0;
void *buf = NULL;
int i = 0;
/* validate arguments */
if (!cb_valid(cbp)) {
errno = EINVAL;
return -1;
}
/* check if not open */
if (!(cbp->flags & CBOPEN)) {
errno = CBENOPEN;
return -1;
}
/* check if not write locked */
if (!(cbp->flags & CBWRLCK)) {
errno = CBELOCK;
return -1;
}
/* check if record cursor is null */
if (lscursor(cbp->lsp) == NULL) {
errno = CBENREC;
return -1;
}
/* get record position */
if (lsgetcur(cbp->lsp, &lspos) == -1) {
CBEPRINT;
return -1;
}
cbrpos = lspos;
/* delete keys */
for (i = 0; i < cbp->fldc; i++) {
if (cbp->fldv[i].flags & CB_FKEY) {
buf = calloc((size_t)1, cbp->fldv[i].len + sizeof(cbrpos_t));
if (buf == NULL) {
CBEPRINT;
errno = ENOMEM;
return -1;
}
if (lsgetrf(cbp->lsp, cbp->fldv[i].offset, buf, cbp->fldv[i].len) == -1) {
CBEPRINT;
free(buf);
return -1;
}
memcpy(((char *)buf + cbp->fldv[i].len), &cbrpos, sizeof(cbrpos_t));
if (btdelete(cbp->btpv[i], buf) == -1) {
CBEPRINT;
free(buf);
return -1;
}
free(buf);
buf = NULL;
}
}
/* delete current record */
if (lsdelcur(cbp->lsp) == -1) {
CBEPRINT;
return -1;
}
errno = 0;
return 0;
}