home *** CD-ROM | disk | FTP | other *** search
- /*
- * convert fixed-length flat file to c-tree data 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) 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 */
-
- #define TMP_NAME "CTREE.TMP"
- #define OLDFIL 0
- #define NEWFIL 1
-
- POINTER NEWREC();
- RNDFILE mbopen();
- COUNT WRTREC(),INTREE(),LOKREC(),CLSFIL(),CREDAT(),ctio();
- TEXT *mballc();
-
- TEXT *recbuf;
-
- main (argc,argv)
- int argc;
- TEXT *argv[];
- {
- TEXT fname[MAX_NAME];
- TEXT *tp;
- int flat_len,extension;
-
- VOID convert();
-
- printf(
- "\n\nc-tree flat file conversion utility\nVersion 4.3 Release C\n");
- printf("Copyright 1986, 1987, 1988, 1989 FairCom Corporation\n");
- printf(
- "\nThe c-tree file will be named %s. Any existing file with this\n",TMP_NAME);
- printf("\tname will first be deleted!\n");
-
- if (INTREE(3,2,1)) {
- printf("\nNot enough memory space for INTREE\n");
- return;
- }
-
- flat_len = extension = 1;
-
- if (argc > 1) {
- strcpy(fname,*++argv);
- argc -= 2;
- while (argc-- > 0) {
- tp = *++argv;
- switch (*tp) {
- case 'R':
- case 'r':
- flat_len = atoi(++tp);
- break;
- case 'X':
- case 'x':
- extension = atoi(++tp);
- break;
- }
- }
- } else {
- printf("\n Enter flat file name >> ");
- gets(ct_buf);
- cpybuf(fname,ct_buf,MAX_NAME);
- }
- if (flat_len == 1) {
- printf("\n Enter record length >> ");
- gets(ct_buf);
- sscanf(ct_buf,"%u",&flat_len);
- }
- if (extension == 1) {
- printf("\nEnter file extension size >> ");
- gets(ct_buf);
- sscanf(ct_buf,"%u",&extension);
- }
- printf(
- "\n\n\t*** Please wait while c-tree version of %s is created ***\n",fname);
- convert(fname,(UCOUNT) flat_len,(UCOUNT) extension);
- printf("\n\nEnd of File Conversion");
- if (uerr_cod)
- printf(" - Error Code %d\n\n",uerr_cod);
- else
- printf(".\n\n");
- exit(0);
- }
-
- COUNT skprec()
- {
- /*
- * If you wish to examine records in the existing flat file, then
- * you will find the record image in the buffer pointed to by
- * recbuf. If the record should be skipped (i.e., not added to the
- * c-tree version of the flat file), return YES. Otherwise return
- * NO.
- */
-
- return(NO);
- }
-
- VOID convert(fn,rl,ext)
- TEXT *fn;
- UCOUNT rl,ext;
- {
- POINTER recbyt,newbyt;
-
- if ((recbuf = mballc(1,rl)) == NULL) {
- printf("\nCould not allocate space for record buffer\n");
- return;
- }
-
- strcpy(ct_key->flname,fn);
- #ifdef CT_ANSI
- if ((ct_key->fd = mbopen(ct_key,(EXCLUSIVE | PERMANENT))) ==
- (RNDFILE) NULL) {
- #else
- if ((ct_key->fd = mbopen(ct_key,(EXCLUSIVE | PERMANENT))) < 0) {
- #endif
- printf("\nCound not open flat file: %s\n",fn);
- return;
- }
- remove(TMP_NAME);
- if (CREDAT(NEWFIL,TMP_NAME,rl,ext,(EXCLUSIVE | PERMANENT))) {
- printf("\nCould not create %s\n",TMP_NAME);
- return;
- }
-
-
- recbyt = 0L;
- while (ctio(CTREAD,ct_key,recbyt,recbuf,rl) == NO_ERROR) {
- if (!skprec()) {
- 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;
- }
- if (LOKREC(NEWFIL,FREE,newbyt)) {
- printf("\nCould not unlock new record\n");
- return;
- }
- }
- recbyt += rl;
- }
-
- if (CLSFIL(NEWFIL,EXCLUSIVE))
- printf("\nCould not close newly created file %s\n",TMP_NAME);
-
- return;
- }
-
- /* end of ctflat.c */
-