home *** CD-ROM | disk | FTP | other *** search
- /*
- * rebuild front end
- *
- * 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) 1984, 1985, 1986, 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" /* standard i/o header */
- #include "ctoptn.h" /* c-tree configuration options */
- #include "cterrc.h" /* c-tree error codes */
- #include "ctstrc.h" /* c-tree data structures */
- #include "ctgvar.h" /* c-tree global variables */
- #include "ctisam.h" /* c-tree isam header */
- #include "ctvrec.h" /* variable length header */
-
- #ifdef FPUTFGET
-
- main()
- {
- printf(
- "\n*** CTRBLD should not be compiled with the FPUTFGET option. ***");
- printf(
- "\n*** CTRBLD should compiled with the NOTFORCE disk I/O option, ***");
- printf(
- "\n*** AND linked to a library compiled with the NOTFORCE option. ***");
- exit(0);
- }
-
- #else
-
- /*
- * To disable REBUILD prompts, "comment out" the RB_INTERACTIVE define
- * below and in CTRBL2.C
- */
- #define RB_INTERACTIVE
-
-
- #define SORT_SPACE 32760
-
- EXTERN COUNT rerr_cod,rerr_fil,ct_fp,ct_redom;
- EXTERN TEXT *ct_rbuf;
- EXTERN POINTER *ct_pbuf;
- EXTERN VRLEN ct_bsz;
- EXTERN LONG ct_spc;
-
- TEXT *mballc();
- COUNT getintr(),getdatr(),getidxr(),getambr(),uerr();
- COUNT INTREE();
-
- main (argc,argv)
- int argc;
- TEXT *argv[];
- {
- COUNT rebuild(),yesno();
-
- TEXT rbld_nam[MAX_NAME];
-
- ct_bsz = 0;
- ct_rbuf = NULL;
-
- printf("\n\nc-tree(R) REBUILD VERSION 4.3\nRelease C\n");
- printf("\nCopyright 1984-1989 FairCom Corporation");
- printf(
- "\n\nPlease note that index files which must be rebuilt will be deleted first.");
-
- if (argc > 1) {
- cpybuf(rbld_nam,*++argv,MAX_NAME);
- printf("\n\nParameter File Name>> %s\n",rbld_nam);
- } else {
- printf("\n\nEnter Rebuild Parameter File Name>> ");
- gets(ct_buf);
- cpybuf(rbld_nam,ct_buf,MAX_NAME);
- }
-
- #ifdef RB_INTERACTIVE
- printf("\n\nDo you want to force rebuild? (y or n)>> ");
- ct_fp = yesno();
- #else
- ct_fp = YES;
- #endif
-
- printf("\n\n *** Wait While Rebuilding ***\n\n");
- rerr_cod = rerr_fil = 0;
- rebuild(rbld_nam);
-
- printf("\n\nEnd Of Rebuild");
- if (rerr_cod)
- printf(" - Error Code %d File %d\n",rerr_cod,rerr_fil);
- else
- printf(".\n");
- exit(0);
- }
-
- COUNT rebuild(rname)
-
- TEXT *rname;
-
- {
- COUNT RBLDAT(),RBLIDX(),RBLMEM();
- FILE *ifd;
- FAST COUNT i,j,k;
- COUNT nbufs,nkeys,dkeys,nomemb,nsecs;
- COUNT datno,xtdsiz,filemd,datlen,keyno,klen,ktyp,dflg;
- TEXT filname[MAX_NAME],idxname[MAX_NAME];
-
- FILE *fopen();
-
- if ((ct_pbuf = (POINTER *) mballc(1,(unsigned int) (ct_spc = SORT_SPACE))) == NULL)
- return(rerr(RSPC_ERR,0));
- if ((ifd = fopen(rname,"r")) == NULL)
- return(rerr(INOD_ERR,0));
-
- if (getintr(ifd,&nbufs,&nkeys,&nsecs,&ct_isdats))
- return(rerr(isam_err,0));
- if (INTREE(nbufs,nkeys + ct_isdats,nsecs))
- return(rerr(uerr_cod,0));
-
- for (i = 0; i < ct_isdats; i++) {
- if (getdatr(ifd,&datno,filname,&datlen,&dkeys,&xtdsiz,&filemd))
- return(rerr(isam_err,isam_fil));
- if (datlen > ct_bsz) {
- if (ct_rbuf != NULL)
- mbfree(ct_rbuf);
- if ((ct_rbuf = mballc(1,datlen)) != NULL)
- ct_bsz = datlen;
- else
- return(rerr(RRLN_ERR,i));
- }
- if (RBLDAT(datno,filname,datlen,xtdsiz,filemd))
- return(rerr_cod);
-
- (ct_key + datno)->srlpos = 0;
- for (j = 0; j < dkeys; j++) {
- if (getidxr(ifd,datno,j,&keyno,
- idxname,&klen,&ktyp,&dflg,&nomemb,&xtdsiz,&filemd))
- return(rerr(isam_err,isam_fil));
-
- if (RBLIDX(datno,filname,idxname,keyno,klen,ktyp,dflg,
- nomemb,xtdsiz,filemd))
- return(rerr_cod);
-
- for (k = 1; k <= nomemb; k++) {
- if (getambr(ifd,datno,j + k,keyno + k,&klen,
- &ktyp,&dflg))
- return(rerr(isam_err,isam_fil));
- if (ct_redom && RBLMEM(datno,filname,idxname,
- keyno,klen,ktyp,dflg,k))
- return(rerr_cod);
- }
- j += nomemb;
- }
- }
- fclose(ifd);
- return(NO_ERROR);
- }
-
- #endif /* ifdef FPUTFGET */
-
- /* end of ctrbld.c */
-