home *** CD-ROM | disk | FTP | other *** search
- /*
- * index file compare routine
- *
- * 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 */
-
- /*
- * The c-tree Source Code License Agreement expressly prohibits modification
- * of any and all FairCom copyright legends and statements of confidentiality,
- * including the following such legend and statement, without the express
- * written consent of FairCom.
- */
-
- static char *cprt[] = {
- " The c-tree(R) file handler is the CONFIDENTIAL and",
- " PROPRIETARY property of FairCom(R) Corporation. Any unauthorized",
- " use, reproduction or transfer of c-tree is strictly prohibited.",
- " Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989 FairCom Corporation",
- " (Subject to limited distribution and restricted disclosure only.)",
- " ALL RIGHTS RESERVED.",
- ""
- };
-
- #define NO_FPLIB /* do not use floating point lib for compar */
-
- #ifdef REVBIN
- #undef REVBIN
- #endif
- #ifdef LOW_HIGH
- #define REVBIN
- #endif
- #ifdef HIGH_LOW
- #ifdef UNIFRMAT
- #define REVBIN
- #endif
- #endif
-
- /* --------------------------------------------------------------------
- routine to compar key values
-
- compar returns a value < 0 for *val1 < *val2
- = 0 for *val1 = *val2
- > 0 for *val1 > *val2
- */
-
- COUNT compar(val1,val2,knum)
- PFAST TEXT *val1,*val2;
- KEYFILE *knum;
- {
- FAST COUNT i;
- COUNT keylen,typ;
- #ifdef FLOATKEY
- #ifdef NO_FPLIB
- COUNT sign,ms,ls;
- LONG fv1[2],fv2[2];
- #else
- float fv1,fv2;
- double dv1,dv2;
- TEXT *tv1,*tv2;
- #endif
- #endif
-
- keylen = knum->length;
-
- #ifdef CTDEBUG /* prints bytes in left-to-right order */
- printf("\nCTDEBUG:");
- for (i = 0; i < keylen; i++)
- printf(" %02x %02x",CMPMSK & *(val1 + i),
- CMPMSK & *(val2 + i));
- printf("\n");
- #endif
-
- switch (typ = (knum->ktype & MSK_ALT)) {
- /* mask the alternative collating sequence bit prior to the switch */
-
- case ALPHAKEY: /* left to right ct_key comparison */
- #ifdef VARLKEYS
- case COL_SUFFIX: /* padding compression */
- case COL_PREFIX: /* leading character compression */
- case COL_BOTH:
- #endif
- #ifndef REVBIN
- case INTKEY: /* ignore right-to-left scan on HIGH_LOW machine */
- #endif
- i = 0;
- while (i++ < keylen && *val1++ == *val2++)
- ;
- #ifdef DS
- keylen = ((COUNT) *--val1 & CMPMSK) -
- ((COUNT) *--val2 & CMPMSK);
- #else
- keylen = (*--val1 & CMPMSK) - (*--val2 & CMPMSK);
- #endif
-
- if (keylen > 0)
- return(i);
- else if (keylen < 0)
- return(-i);
- else
- return(0);
-
- #ifdef REVBIN
- case INTKEY: /* right to left ct_key comparison: no duplicate support */
- val1 += (i = keylen);
- val2 += i;
- while (i-- > 0 && *--val1 == *--val2)
- ;
- #ifdef DS
- return(((COUNT) *val1 & CMPMSK) - ((COUNT) *val2 & CMPMSK));
- #else
- return((*val1 & CMPMSK) - (*val2 & CMPMSK));
- #endif
- #endif
- #ifdef FLOATKEY
- case SFLOATKEY: /* single float key comparison */
- case DFLOATKEY: /* double float key comparison */
-
- #ifdef NO_FPLIB
- ls = 0;
- ms = 1;
- if (typ == SFLOATKEY) {
- fv1[0] = 0l;
- fv2[0] = 0l;
- cpybuf(fv1+1,val1,sizeof(LONG));
- cpybuf(fv2+1,val2,sizeof(LONG));
- val1 += sizeof(float);
- val2 += sizeof(float);
- i = keylen = sizeof(float);
- } else {
- #ifdef HIGH_LOW
- #ifndef UNIFRMAT
- ls = 1;
- ms = 0;
- #endif
- #endif
- cpybuf(fv1,val1,2 * sizeof(LONG));
- cpybuf(fv2,val2,2 * sizeof(LONG));
- val1 += sizeof(double);
- val2 += sizeof(double);
- i = keylen = sizeof(double);
- }
- #ifdef UNIFRMAT
- revobj(fv1,sizeof(LONG));
- revobj(fv2,sizeof(LONG));
- revobj(fv1+1,sizeof(LONG));
- revobj(fv2+1,sizeof(LONG));
- #endif
-
- if ( fv1[ms] & 0x80000000L && !(fv2[ms] & 0x80000000L) )
- return (-1);
- if ( fv2[ms] & 0x80000000L && !(fv1[ms] & 0x80000000L) )
- return (1);
- sign = 1;
- if ( fv1[ms] & 0x80000000L ) {
- sign = -1;
- fv1[ms] &= 0x7fffffffL;
- fv2[ms] &= 0x7fffffffL;
- }
- if ( fv1[ms] != fv2[ms] )
- return ( (fv1[ms] > fv2[ms]) ? sign : -sign);
- if ( fv1[ls] != fv2[ls] )
- return ( (fv1[ls] > fv2[ls]) ? sign : -sign);
-
- #else /* FPLIB */
-
- if (typ == SFLOATKEY) {
- tv1 = (TEXT *) &fv1;
- tv2 = (TEXT *) &fv2;
- keylen = sizeof(float);
- } else {
- tv1 = (TEXT *) &dv1;
- tv2 = (TEXT *) &dv2;
- keylen = sizeof(double);
- }
- i = 0;
- while (i < keylen) {
- *tv1++ = *val1++;
- *tv2++ = *val2++;
- i++;
- }
- #ifdef UNIFRMAT
- revobj(tv1 - i,keylen);
- revobj(tv2 - i,keylen);
- #endif
-
- if (typ == SFLOATKEY) {
- dv1 = fv1;
- dv2 = fv2;
- }
- dv1 -= dv2;
- if (dv1 < 0.0)
- return(-1);
- else if (dv1 > 0.0)
- return(1);
- #endif
-
- while (i++ < knum->length)
- if (*val1++ != *val2++)
- return((*--val1 & CMPMSK) -
- (*--val2 & CMPMSK));
- return(0);
- #endif
-
- default:
- terr(210);
- }
- }
-
- TEXT **chkcopy()
- {
- return(cprt);
- }
-
- /* end of ctcomp.c */
-