home *** CD-ROM | disk | FTP | other *** search
- /*
- * program to test key segment offsets. It prints a sample of
- * each key from each data file to determine if keys are being
- * extracted from the data records as expected.
- *
- * 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) 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
- *
- */
-
- /* to use this utility with incremental ISAM files, you must remove the
- comment delimiters from the following #define statement. When this is done,
- then CTPKEY.C is changed from a main, stand-alone module to a function
- requiring a calling program to be issued from your own main program.
- */
-
- /****** #define INCREMENTAL_ISAMS ******/
-
- #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"
-
- #ifdef VARLDATA
- #include "ctvrec.h"
- #endif
-
- #ifdef CTSERVER
- #include "ctcomm.h"
- extern UCOUNT cts_apxsiz; /* message size */
- #endif
-
-
- #ifdef INCREMENTAL_ISAMS
- #include "ctifil.h"
- COUNT OPNIFIL();
- #else
- COUNT OPNISAM();
- #endif
-
- COUNT FRSREC(),NXTREC(),frmkey(),CLISAM();
- TEXT *mballc();
- #ifdef VARLDATA
- VRLEN GETVLEN();
- COUNT REDVREC();
- #endif
-
- LOCAL TEXT *recbuf;
- LOCAL VRLEN bufsiz;
- LOCAL TEXT keybuf[MAXLEN];
- EXTERN COUNT isam_err,isam_fil;
-
- LOCAL TEXT unk[] = "unknown";
- LOCAL TEXT yours[] = "YOUR CUSTOM segment";
- LOCAL TEXT oldsq[] = "alternative collating sequence\n\t\tNOW AT SEGMENT LEVEL!";
- LOCAL TEXT *kt[] = {
- "fixed length",
- "unsigned integer",
- "single float",
- "double float",
- "leading character compression",
- unk,unk,unk,
- "padding compression",
- unk,unk,unk,
- "full compression",
- unk,unk,unk,
- oldsq,
- unk,unk,unk,
- oldsq,
- unk,unk,unk,
- oldsq,
- unk,unk,unk,
- oldsq,
- unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk
- };
- LOCAL TEXT *md[] = {
- "no transformation",
- "unsigned integer",
- "upper case",
- "serial number",
- "offset = var field #",
- "upper case & offset = var field #",
- yours,yours,
- "signed integer",
- "floating point",
- unk,unk,unk,unk,unk,unk
- };
-
- #ifdef INCREMENTAL_ISAMS
-
- VOID ctpkey(ifilptr)
- IFIL *ifilptr;
- {
- COUNT i;
-
- recbuf = mballc(1,bufsiz = 512);
- printf(
- "\n\nc-tree ISAM print key utility\nVersion 4.3 Release C\n");
- printf("Copyright 1986, 1987, 1988, 1989 FairCom Corporation\n");
- printf(
- "\nBeginning key values for each index will be displayed in hex and ASCII.");
- printf(
- "\nIf the key values do not agree with your expectations, check the key");
- printf(
- "\nsegment offset values.\n\n");
-
- if (OPNIFIL(ifilptr)) {
- printf("\nError %d On OPNIFIL for %s\n",isam_err,
- ifilptr->pfilnam);
- mbfree(recbuf);
- return(-1);
- }
-
- for (i = ifilptr->tfilno + 1; i < ifilptr->tfilno +
- ifilptr->dnumidx + 1; i++)
- getkey(i,1);
-
- mbfree(recbuf);
- return(0);
- }
-
- #else
-
- main (argc,argv)
- int argc;
- TEXT *argv[];
- {
- TEXT fname[MAX_NAME];
- COUNT i,n;
-
- #ifdef CTSERVER
- cts_apxsiz = CTS_MAXSMSG;
- #endif
- recbuf = mballc(1,bufsiz = 512);
-
- printf(
- "\n\nc-tree ISAM print key utility\nVersion 4.3 Release C\n");
- printf("Copyright 1986, 1987, 1988, 1989 FairCom Corporation\n");
-
- printf(
- "\nBeginning key values for each index will be displayed in hex and ASCII.");
- printf(
- "\nIf the key values do not agree with your expectations, check the key");
- printf(
- "\nsegment offset values.\n\n");
-
- if (argc > 1)
- strcpy(fname,*++argv);
- else {
- printf("\nEnter ISAM parameter file name >> ");
- gets(ct_buf);
- cpybuf(fname,ct_buf,MAX_NAME);
- }
- if (argc > 2)
- n = atoi(*++argv);
- else
- n = 1;
- if (n < 1)
- n = 1;
-
- if (OPNISAM(fname)) {
- printf("\nError %d with parameter file: %s\n",isam_err,fname);
- exit(0);
- }
-
- for (i = 0; i < ct_mxfil; i++)
- getkey(i,n);
-
- CLISAM();
- exit(0);
- }
- #endif
-
- getkey(i,n)
- COUNT i,n;
- {
- FAST CTFILE *knum,*dnum;
- COUNT j,retval,keyno,datno,tstmod;
- TEXT ch;
- #ifdef VARLDATA
- VRLEN varlen;
- #endif
-
- VOID chkbuf();
-
- knum = ct_key + i;
- if ((knum->chnacs == 'y' || knum->chnacs == 'v') &&
- knum->clstyp == IDX_CLOSE) {
- dnum = ct_key + ct_rvmap[keyno = knum->filnum];
- datno = dnum->filnum;
- if (knum->kmem != 0)
- printf("\nIndex member");
- else
- printf("\nIndex %s",knum->flname);
- printf(" (#%d) for Data File %s (#%d)-\nKey Type: %d - %s\n",
- keyno,dnum->flname,datno,knum->ktype,kt[knum->ktype]);
- #ifndef VARLDATA
- if (dnum->clstyp == VAT_CLOSE) {
- printf(
- "\n%s requires variable length support. Define VARLDATA in CTOPTN.H.\n",
- dnum->flname);
- return(0);
- }
- #endif
-
- printf("\n\tSegment# Offset Length Mode");
- for (i = 0; i < MAX_KEY_SEG; i++) {
- if (ct_sgpos[keyno][i] < 0)
- break;
- tstmod = ct_sgmod[keyno][i];
- printf("\n\t %3d %4d %3d %2d %s",
- i + 1,ct_sgpos[keyno][i],ct_sglen[keyno][i],
- tstmod,md[tstmod & SEGMSK]);
- if (tstmod & ALTSEG) printf(" (ALT)");
- if (tstmod & DSCSEG) printf(" (DSC)");
- }
- chkbuf(dnum->reclen);
- retval = FRSREC(keyno,recbuf);
- switch (retval) {
- case NO_ERROR:
- break;
- case INOT_ERR:
- printf("\nNo key values found!\n");
- return(0);
- default:
- printf("\nUnexpected error #%d (%d).\n",isam_err,
- isam_fil);
- return(0);
- }
-
- do {
-
- #ifdef VARLDATA
- if (dnum->clstyp == VAT_CLOSE) {
- varlen = GETVLEN(datno);
- chkbuf(varlen);
- if (REDVREC(datno,recbuf,varlen)) {
- printf("\nUnexpected error #%d (%d).\n",
- isam_err,isam_fil);
- return(0);
- }
- }
- #endif
-
- frmkey(keyno,recbuf,keybuf,cur_recno[datno]);
- printf("\n\n\tsegment:");
- for (i = 0; i < MAX_KEY_SEG; i++) {
- if (ct_sgpos[keyno][i] < 0)
- break;
- printf("%2d",i + 1);
- for (j = 1; j++ < ct_sglen[keyno][i]; )
- printf("--");
- }
- if (knum->autodup)
- printf("|suffix|");
- printf("\n\tHEX: ");
- retval = knum->length;
- for (i = 0; i < retval; i++)
- printf("%2x",0x00ff & keybuf[i]);
- if (knum->autodup)
- retval -= sizeof(POINTER);
- printf("\n\tASCII: ");
- for (i = 0; i < retval; i++) {
- ch = keybuf[i];
- if (ch < ' ' || ch > '~')
- ch = '.';
- printf(" %c",ch);
- }
-
- printf(
- "\n---------------------------------------------------------------------");
- retval = NXTREC(keyno,recbuf);
- } while (--n > 0 && retval == NO_ERROR);
- }
- return(0);
- }
-
- VOID chkbuf(bufreq)
- VRLEN bufreq;
- {
- if (bufreq > bufsiz) {
- mbfree(recbuf);
- recbuf = mballc(1,bufreq);
- if (recbuf == NULL) {
- printf("\n\nNo record buffer space available.\n");
- exit(0);
- } else
- bufsiz = bufreq;
- }
- }
-
- /* end of ctpkey */
-