home *** CD-ROM | disk | FTP | other *** search
- /*
- * c-tree debug help
- *
- * 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 "ctvrec.h" /* variable length header */
- #include "ctgvar.h" /* global variable definitions */
-
- CTFILE *tstfnm();
- TREEBUFF *getnod();
- COUNT uerr(),getvhdr();
-
- CTFILE *ctnum,*htnum;
- TREEBUFF *buf;
- VHDR vrhdr;
-
- COUNT prthdr(filno)
- COUNT filno;
- {
- if ((ctnum = tstfnm(filno)) == NULL) {
- printf("\nfile number %d is not active (error %d)\n",
- filno,uerr_cod);
- return(uerr_cod);
- }
- if (ct_key != ct_dat || ct_key != ct_vat) {
- printf(
- "\npointers to base of file control structures are clobbered.\n");
- return(-1);
- }
-
- printf("\nheader info for file #%d [%s]:\n",filno,ctnum->flname);
- printf("\n configuration version: %6xx\t index root ptr: %lxx",
- ctnum->verson, ctnum->root);
- printf("\n node size: %6u \t node stack ptr: %lxx",
- ctnum->recsiz, ctnum->nodstk);
- printf("\n data record length: %6u \t extend file size: %u",
- ctnum->reclen, ctnum->extsiz);
- printf("\n max values per leaf node: %6d \t max values per non-leaf: %d",
- ctnum->maxkvl, ctnum->maxkvn);
- printf("\n max bytes per leaf node: %6d \t max bytes per non-leaf: %d",
- ctnum->maxkbl, ctnum->maxkbn);
- printf("\n file mode: %6d \t key length: %d",
- ctnum->flmode, ctnum->length);
- printf("\n file type: %6d \t # of additional members: %d",
- ctnum->clstyp, ctnum->nmem);
- printf("\n update flag: %6xx\t index member number: %d",
- ctnum->updflg, ctnum->kmem);
- #ifdef CT_ANSI
- printf("\n key type: %6d \t stream: %p",
- #else
- printf("\n key type: %6d \t file descriptor: %d",
- #endif
- ctnum->ktype, ctnum->fd);
- printf("\n duplicate flag: %6d \t lru age counter: %u",
- ctnum->autodup, ctnum->usecnt);
- printf("\n # of active entries: %6ld \t current node ptr: %lxx",
- ctnum->nument, ctnum->retnod);
- printf("\n delete stack ptr: %6lxx\t current element in node: %d",
- ctnum->delstk, ctnum->retelm);
- printf("\n last byte used: %6lxx\t serial number: %lxx",
- ctnum->numrec + 1L, ctnum->sernum);
- printf("\n last physical byte: %6lxx\t file number: %d",
- ctnum->phyrec + 1L, ctnum->filnum);
-
- return(NO_ERROR);
- }
-
- COUNT prtnod(filno,nodex)
- COUNT filno;
- LONG nodex;
- {
- LONG bytoff;
- COUNT i,j,k;
- TEXT *tp,*sp,ch;
-
- #ifdef FLOATKEY
- float fv;
- double dv;
- #endif
-
- LONG drnpnt(),nodpnt();
- TEXT *valpnt();
-
- if ((ctnum = tstfnm(filno)) == NULL) {
- printf("\nfile number %d is not active (error %d)\n",
- filno,uerr_cod);
- return(uerr_cod);
- }
-
- htnum = ctnum - ctnum->kmem;
-
- if (htnum->clstyp != IDX_CLOSE && htnum->clstyp != VAT_CLOSE) {
- printf("\nFile %s does not have c-tree nodes.\n",
- htnum->flname);
- return(uerr(RMOD_ERR));
- }
-
- if ((htnum->numrec + 1L) < (nodex + htnum->recsiz) || nodex <
- htnum->recsiz || (htnum->clstyp == IDX_CLOSE &&
- (nodex % htnum->recsiz) != 0) || (htnum->clstyp == VAT_CLOSE &&
- (getvhdr(htnum,nodex,&vrhdr) || vrhdr.recmrk != VNOD_FLAG))) {
- printf("\nNode Position %lxx is not a legal offset for a node.\n",
- nodex);
- return(-1);
- }
-
- if ((buf = getnod(nodex,ctnum)) == NULL) {
- printf("\nCould not get node %lxx (error %d).\n",nodex,
- uerr_cod);
- return(uerr_cod);
- }
-
- if (buf->nkv < 0 || (buf->nkv > buf->maxkv && !buf->ktipe) ||
- buf->nkb > buf->maxb) {
- printf(
- "\nBadly formed node. Be sure that offset %lxx corresponds to a node.\n",
- nodex);
- return(-2);
- }
-
- printf("\n\nNODE: %lxx\n",nodex);
- if (buf->leaf == LEAF)
- printf("\n\tpredecessor node: %lxx",buf->predsr);
- printf("\n\t successor node: %lxx",buf->sucesr);
- printf("\n\t # of entries: %d",buf->nkv);
- printf("\n\t # of bytes: %u",buf->nkb);
- printf("\n\t leaf flag: %d (0 => non-leaf / 1 => leaf)",buf->leaf);
- printf("\n\t member #: %d",buf->bmem);
- printf("\n\n\telement offset key value");
-
- for (i = 0; i++ < buf->nkv; ) {
- tp = sp = valpnt(buf,i);
- if (buf->leaf == LEAF)
- bytoff = drnpnt(buf,i);
- else
- bytoff = nodpnt(buf,i);
- printf("\n\t %3d %6lxx ",i,bytoff);
-
- if (buf->confg == DUPLEAF)
- k = buf->klen - 4;
- else
- k = buf->klen;
-
- for (j = 0; j++ < k; )
- printf("%2x",0x00ff & *tp++);
- printf("\n\t ");
- for (j = 0, tp = sp; j++ < k; ) {
- ch = *tp++;
- if (ch < ' ' || ch > '~')
- ch = '.';
- printf(" %c",ch);
- }
- #ifdef FLOATKEY
- j = NO;
- if (ctnum->ktype == SFLOATKEY) {
- cpybuf(&fv,sp,sizeof(float));
- #ifdef UNIFRMAT
- revobj(&fv,sizeof(float));
- #endif
- dv = fv;
- j = YES;
- } else if (ctnum->ktype == DFLOATKEY) {
- cpybuf(&dv,sp,sizeof(double));
- #ifdef UNIFRMAT
- revobj(&dv,sizeof(double));
- #endif
- j = YES;
- }
- if (j)
- printf("\n\t %e",dv);
- #endif
-
- }
- return(NO_ERROR);
- }
-
- COUNT chkidx(filno)
- COUNT filno;
- {
- COUNT retval;
- LONG nodpos;
-
- if ((retval = prthdr(filno)) != NO_ERROR)
- return(retval);
-
- printf(
- "\n\nNote that internal error 231 is caused by attempting to examine a node");
- printf(
- "\nwhich belongs to a different member (than implied by the key number).");
-
- do {
- printf("\n\nEnter node position (in hex): ");
- scanf("%lx",&nodpos);
- if (nodpos != 0L)
- prtnod(filno,nodpos);
- } while (nodpos);
-
- return(NO_ERROR);
- }
-
- /* end of ctdbug.c */
-