home *** CD-ROM | disk | FTP | other *** search
- /*
- * incremental isam file support
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctstdr.h"
- #include "ctoptn.h"
- #include "ctstrc.h"
- #include "ctgvar.h"
- #include "ctisam.h"
- #include "ctifil.h"
- #include "cterrc.h"
-
- #ifdef RTREE
- #include "rtpars.h"
- #include "rtstrc.h"
-
- EXTERN RKEY usrkey[];
- EXTERN COUNT srtknm,srtdat,tmpdat;
- #endif
-
- COUNT ierr();
-
- COUNT filrng(ifilptr)
- PFAST IFIL *ifilptr;
- {
- FAST COUNT i;
- COUNT filno,ll,ul;
- FAST CTFILE *ctnum;
-
- ifilptr->tfilno = -1;
- /* check if filno range exists */
- if ((filno = ifilptr->dfilno) < 0) {
- ll = 0;
- #ifdef RTREE
- ul = ct_mxfil - ifilptr->dnumidx - 3;
- #else
- ul = ct_mxfil - ifilptr->dnumidx;
- #endif
- } else
- ll = ul = filno;
- for (filno = ll, ctnum = ct_key + ll; filno <= ul; filno++, ctnum++) {
- for (i = 0; i <= ifilptr->dnumidx; i++) {
- if ((ctnum + i)->chnacs != 'n')
- break;
- }
- if (i > ifilptr->dnumidx)
- return(filno);
- }
- return(-ierr(FUSE_ERR,filno));
- }
-
- COUNT setimap(i,ip)
- COUNT i;
- IFIL *ip;
- {
- FAST COUNT k,keyno;
- FAST IIDX *idxp;
- COUNT datno,totseg,tstmod;
-
- datno = ip->tfilno;
- idxp = &ip->ix[i];
- keyno = datno + i + 1;
- if (idxp->inumseg > MAX_KEY_SEG)
- return(ierr(IKRS_ERR,keyno));
- ct_kymap[datno][i] = keyno;
- ct_rvmap[keyno] = datno;
- ct_nlchr[keyno] = idxp->iempchr;
- ct_nlkey[keyno] = idxp->inulkey;
- ct_vfin[keyno] = NO;
-
- for (k = 0, totseg = idxp->ikeylen; k < idxp->inumseg; k++) {
- ct_sgpos[keyno][k] = idxp->seg[k].soffset;
- ct_sglen[keyno][k] = idxp->seg[k].slength;
- ct_sgmod[keyno][k] = tstmod = idxp->seg[k].segmode;
- tstmod &= SEGMSK;
- totseg -= ct_sglen[keyno][k];
- if (tstmod == SRLSEG)
- (ct_key + datno)->srlpos = ct_sgpos[keyno][k] + 1;
- else if (tstmod == VARSEG || tstmod == UVARSEG)
- ct_vfin[keyno] = YES;
- }
- if ((idxp->ikeydup == DUPKEY && totseg != sizeof(POINTER)) ||
- (idxp->ikeydup != DUPKEY && totseg))
- return(ierr(ISLN_ERR,keyno));
-
- if (k < MAX_KEY_SEG)
- ct_sgpos[keyno][k] = -1;
-
- #ifdef RTREE
- usrkey[keyno].rsymb = idxp->ridxnam;
- usrkey[keyno].rtype = idxp->ikeytyp;
- #endif
-
- return(NO_ERROR);
- }
-
- COUNT CLIFIL(ifilptr)
- PFAST IFIL *ifilptr;
- {
- FAST COUNT filno;
- COUNT CLSFIL();
-
- if (CLSFIL(filno = ifilptr->tfilno,ifilptr->dfilmod))
- return(ierr(uerr_cod,filno));
- else {
- ifilptr->tfilno = -1;
- ct_dtmap[filno] = NO;
- cur_recno[filno] = DRNZERO;
- }
- if (ifilptr->dnumidx > 0) {
- CLSFIL(filno + 1,ifilptr->ifilmod);
- ct_dtmap[filno + 1] = NO;
- }
- return(ierr(uerr_cod,filno));
- }
-
- COUNT INTISAM(bufs,fils,sect)
- COUNT bufs,fils,sect;
- {
- FAST COUNT i;
- LOKS *lp;
- COUNT INTREE();
-
- isam_err = NO_ERROR;
- if (fils > MAXFIL)
- return(ierr(IFIL_ERR,0));
-
- #ifdef RTREE
- for (i = 0; i < MAXFIL; i++) {
- usrkey[i].rtype = -1;
- usrkey[i].rsymb = NULL;
- }
- if (fils > (MAXFIL - 3))
- return(ierr(IKSR_ERR,0));
- fils += 3;
- srtknm = fils - 1;
- srtdat = srtknm - 1;
- tmpdat = srtdat - 1;
- #endif
-
- if (INTREE(bufs,fils,sect))
- return(ierr(uerr_cod,0));
-
- for (i = 0; i < ct_mxfil; ) {
- ct_dtmap[i] = NO;
- ct_rvmap[i] = -1;
- cur_recno[i] = DRNZERO;
- ct_kymap[i++][0] = -1;
- }
- for (i = 0,lp = ct_locks; i < MAX_LOCKS; i++,lp++)
- lp->datfnm = -1;
- return(NO_ERROR);
- }
-
- /* end of ctifil.c */
-