home *** CD-ROM | disk | FTP | other *** search
- /*
- * compact file
- *
- * 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) 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 "ctvrec.h" /* variable length header */
-
- #define TMP_NAME "CTREE.TMP"
- #define OLDFIL 0
- #define NEWFIL 1
-
- POINTER FRSKEY(),NXTKEY(),NEWREC();
- COUNT REDREC(),WRTREC(),CREMEM(),LOADKEY();
- COUNT INTREE(),OPNFIL(),CLSFIL(),CREDAT(),CREIDX(),mbclos(),wrthdr();
- TEXT *mballc();
-
- #ifdef VARLDATA
- POINTER NEWVREC();
- COUNT getvhdr(),putvhdr(),RDVREC(),WRTVREC();
- #endif
-
- main (argc,argv)
- int argc;
- TEXT *argv[];
- {
- TEXT fname[MAX_NAME];
-
- VOID compact();
-
- printf("\n\nc-tree file compaction utility\nVersion 4.3 Release C Beta\n");
- printf("Copyright 1985, 1988, 1989 FairCom Corporation\n");
- printf(
- "\nThe compacted file will be named %s. Any existing file with this\n",TMP_NAME);
- printf("\tname will first be deleted!\n");
- if (argc > 1)
- strcpy(fname,*++argv);
- else {
- printf("\nEnter file name >> ");
- gets(ct_buf);
- cpybuf(fname,ct_buf,MAX_NAME);
- }
- printf("\n\n\t*** Please wait while %s is compacted ***\n",fname);
- compact(fname);
- printf("\n\nEnd of File Compaction");
- if (uerr_cod)
- printf(" - Error Code %d\n\n",uerr_cod);
- else
- printf(".\n\n");
- exit(0);
- }
-
- VOID compact(fname)
- TEXT *fname;
- {
- VOID comdat(),comvat(),comidx();
-
- /* increse the last parameter of INTREE (4) for nodes larger than
- 512 bytes
- */
- if (INTREE(15,2 * (MAXMEMB + 1),4)) {
- printf("\nNot enough memory space for INTREE\n");
- return;
- }
-
- if (OPNFIL(OLDFIL,fname,(EXCLUSIVE | PERMANENT))) {
- printf("\nCould not properly open %s\n",fname);
- return;
- }
-
- remove(TMP_NAME);
-
- switch (ct_key->clstyp) {
- case DAT_CLOSE:
- comdat();
- break;
- case IDX_CLOSE:
- comidx();
- break;
- case VAT_CLOSE:
- comvat();
- break;
- default:
- printf("\nUnknown file type (%d)\nCall FairCom\n",ct_key->clstyp);
- }
- }
-
- VOID comdat()
- {
- COUNT filemd,datlen;
- LONG delrec;
- TEXT *recbuf;
- POINTER recbyt,newbyt;
- CTFILE *ctnum;
-
- filemd = (ct_key->flmode & ~VLENGTH);
- datlen = ct_key->reclen;
- ctnum = ct_key + NEWFIL;
- delrec = 0L;
-
- if ((recbuf = mballc(1,datlen)) == NULL) {
- printf("\nCould not allocate space for record buffer\n");
- return;
- }
-
- if (CREDAT(NEWFIL,TMP_NAME,datlen,ct_key->extsiz,filemd) ||
- CLSFIL(NEWFIL,0) ||
- OPNFIL(NEWFIL,TMP_NAME,filemd)) {
- printf("\nCould not create data file %s\n",TMP_NAME);
- return;
- }
-
- recbyt = ((SECSIZ + datlen - 1) / datlen) * datlen;
- while (REDREC(OLDFIL,recbyt,recbuf) == NO_ERROR) {
- if (recbuf[0] != DELFLG) {
- if ((newbyt = NEWREC(NEWFIL)) == DRNZERO) {
- printf("\nCould not get new record\n");
- return;
- }
- if (WRTREC(NEWFIL,newbyt,recbuf)) {
- printf("\nCould not write new record\n");
- return;
- }
- LOKREC(NEWFIL,FREE,newbyt);
- } else
- delrec++;
- recbyt += datlen;
- }
-
- if (delrec)
- ctnum->updflg = COMPACT;
- else
- ctnum->updflg = NO;
- uerr_cod = 0;
- if (wrthdr(ctnum)) {
- printf("\nCould not write new header record at close\n");
- return;
- }
- if (mbclos(ctnum,COMPLETE)) {
- printf("\nCould not close temporary file\n");
- return;
- }
- if (delrec)
- printf(
- "\n\n%ld deleted records were removed.\nBe sure to rebuild indices.\n",
- delrec);
- else
- printf("\n\nNo deleted records were encountered.\n");
-
- }
-
-
- VOID comvat()
- {
- #ifdef VARLDATA
- COUNT filemd,datlen;
- LONG delrec,savpos,chkpos;
- TEXT *recbuf;
- POINTER recbyt,newbyt;
- CTFILE *ctnum;
- VRLEN bufsiz;
- VHDR vrhdr;
-
- COUNT tstrec();
-
- filemd = (ct_key->flmode | VLENGTH);
- datlen = ct_key->reclen;
- bufsiz = datlen;
- ctnum = ct_key + NEWFIL;
- delrec = 0L;
-
-
- if ((recbuf = mballc(1,datlen)) == NULL) {
- printf("\nCould not allocate space for record buffer\n");
- return;
- }
-
- if (CREDAT(NEWFIL,TMP_NAME,datlen,ct_key->extsiz,filemd) ||
- CLSFIL(NEWFIL,0) ||
- OPNFIL(NEWFIL,TMP_NAME,filemd)) {
- printf("\nCould not create variable length data file %s\n",
- TMP_NAME);
- return;
- }
-
- recbyt = ct_key->recsiz + SIZVHDR;
- while (tstrec(ct_key,recbyt) == NO_ERROR && getvhdr(ct_key,recbyt,&vrhdr) ==
- NO_ERROR) {
- if (vrhdr.recmrk == VACT_FLAG) {
- if (bufsiz < vrhdr.urclen) {
- mbfree(recbuf);
- bufsiz = vrhdr.urclen;
- if ((recbuf = mballc(1,bufsiz)) == NULL) {
- printf(
- "\nCould not allocate %u bytes for record buffer\n",bufsiz);
- return;
- }
- }
- if (RDVREC(OLDFIL,recbyt,recbuf,bufsiz)) {
- printf("\nCould not read existing record\n");
- return;
- }
- if ((newbyt = NEWVREC(NEWFIL,vrhdr.urclen)) ==
- DRNZERO) {
- printf("\nCould not get new record\n");
- return;
- }
- if (WRTVREC(NEWFIL,newbyt,recbuf,vrhdr.urclen)) {
- printf("\nCould not write new record\n");
- return;
- }
- LOKREC(NEWFIL,FREE,newbyt);
- } else if (vrhdr.recmrk == VNOD_FLAG ||
- vrhdr.recmrk == VDEL_FLAG)
- delrec += (vrhdr.trclen + SIZVHDR);
- else { /* bad recmrk. scan until good mark found */
- savpos = recbyt - SIZVHDR;
- printf("\nBAD recmrk <%4x> at offset %lx",
- vrhdr.recmrk,savpos);
- while (tstrec(ct_key,++recbyt) == NO_ERROR &&
- getvhdr(ct_key,recbyt,&vrhdr) == NO_ERROR) {
- if (vrhdr.recmrk == VACT_FLAG) {
- chkpos = recbyt + vrhdr.trclen + SIZVHDR;
- if (getvhdr(ct_key,chkpos,&vrhdr) == NO_ERROR &&
- (vrhdr.recmrk == VACT_FLAG ||
- vrhdr.recmrk == VNOD_FLAG ||
- vrhdr.recmrk == VDEL_FLAG)) {
- getvhdr(ct_key,recbyt,&vrhdr);
- printf(
- "\nGood recmrk acquired at offset %lx",recbyt - SIZVHDR);
- break;
- }
- }
- }
- recbyt -= SIZVHDR;
- vrhdr.trclen = 0;
- delrec += (recbyt - savpos);
- }
- recbyt += (vrhdr.trclen + SIZVHDR);
- }
-
- if (delrec)
- ctnum->updflg = COMPACT;
- else
- ctnum->updflg = NO;
- uerr_cod = 0;
- if (wrthdr(ctnum)) {
- printf("\nCould not write new header record at close\n");
- return;
- }
- if (mbclos(ctnum,COMPLETE)) {
- printf("\nCould not close temporary file\n");
- return;
- }
- if (delrec)
- printf(
- "\n\n%ld deleted bytes were removed.\nBe sure to rebuild indices.\n",
- delrec);
- else
- printf("\n\nNo deleted records were encountered.\n");
- #else
- printf("\n\nAttempt to compact variable record length data file.");
- printf("\nCTCMPC compiled with variable length data records disabled.");
- printf("\nRecompile with VARLDATA defined in CTOPTN.H\n");
- #endif
- }
-
-
- VOID comidx()
- {
- POINTER recbyt,keycnt;
- COUNT filemd,nomemb,oldidx,newidx,k;
- TEXT keybuf[MAXLEN];
- CTFILE *knum;
-
- filemd = (ct_key->flmode & ~VLENGTH);
- newidx = (oldidx = OLDFIL) + (nomemb = ct_key->nmem) + 1;
- if (CREIDX(newidx,TMP_NAME,ct_key->length,ct_key->ktype,ct_key->autodup,
- nomemb,ct_key->extsiz,filemd)) {
- printf("\nCould not create index file %s\n",TMP_NAME);
- return;
- }
- for (k = 1,knum = ct_key + 1; k <= nomemb; k++,knum++)
- if (CREMEM(newidx,knum->length,knum->ktype,knum->autodup,
- k)) {
- printf("\nCould not initialize additional index #%d\n",
- k);
- return;
- }
- if (CLSFIL(newidx,0) ||
- OPNFIL(newidx,TMP_NAME,filemd)) {
- printf("\nCould not reopen index file %s\n",TMP_NAME);
- return;
- }
-
- for (k = 0; k <= nomemb; k++,oldidx++,newidx++) {
- keycnt = DRNZERO;
- recbyt = FRSKEY(oldidx,keybuf);
- while (recbyt) {
- if (keycnt == DRNZERO)
- filemd = INCADD;
- else
- filemd = REGADD;
- if (LOADKEY(newidx,keybuf,recbyt,filemd)) {
- printf("\nCould not add key to new index (%d)\n",k);
- return;
- } else {
- keycnt++;
- recbyt = NXTKEY(oldidx,keybuf);
- }
- }
- printf("\n%ld key values in %s (%d).\n",keycnt,TMP_NAME,k);
- LOADKEY(newidx,NULL,DRNZERO,DECADD);
- }
-
-
- if (CLSFIL(OLDFIL + nomemb + 1,COMPLETE)) {
- printf("\nCould not close temporary file\n");
- return;
- }
- }
-
- /* end of ctcmpc.c */
-