home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / squsq / compress.ark / COMPRESS.C next >
Text File  |  1989-03-13  |  43KB  |  1,592 lines

  1. /* 
  2.  * Compress - data compression program 
  3.  */
  4. #define    min(a,b)    ((a>b) ? b : a)
  5.  
  6. /*
  7.  * machine variants which require cc -Dmachine:  pdp11, z8000, pcxt
  8.  */
  9.  
  10. /*
  11.  * Set USERMEM to the maximum amount of physical user memory available
  12.  * in bytes.  USERMEM is used to determine the maximum BITS that can be used
  13.  * for compression.
  14.  *
  15.  * SACREDMEM is the amount of physical memory saved for others; compress
  16.  * will hog the rest.
  17.  */
  18. #ifndef SACREDMEM
  19. # define SACREDMEM    0
  20. #endif
  21.  
  22. #ifndef USERMEM
  23. # define USERMEM     450000    /* default user memory */
  24. #endif
  25.  
  26. #ifdef interdata        /* (Perkin-Elmer) */
  27. # define SIGNED_COMPARE_SLOW    /* signed compare is slower than unsigned */
  28. #endif
  29.  
  30. #ifdef pdp11
  31. # define BITS     12    /* max bits/code for 16-bit machine */
  32. # define NO_UCHAR    /* also if "unsigned char" functions as signed char */
  33. # undef USERMEM 
  34. #endif /* pdp11 */    /* don't forget to compile with -i */
  35.  
  36. #ifdef z8000
  37. # define BITS     12
  38. # undef vax        /* weird preprocessor */
  39. # undef USERMEM 
  40. #endif /* z8000 */
  41.  
  42. #ifdef pcxt
  43. # define BITS   12
  44. # undef USERMEM
  45. #endif /* pcxt */
  46.  
  47. #define CPM            /* CPM implementation by Bob Presswood, 3/13/89 */
  48.  
  49. #ifdef CPM
  50. # define BITS   12
  51. # undef USERMEM
  52. #endif /* CPM */
  53.  
  54. #ifdef USERMEM
  55. # if USERMEM >= (433484+SACREDMEM)
  56. #  define PBITS    16
  57. # else
  58. #  if USERMEM >= (229600+SACREDMEM)
  59. #   define PBITS    15
  60. #  else
  61. #   if USERMEM >= (127536+SACREDMEM)
  62. #    define PBITS    14
  63. #   else
  64. #    if USERMEM >= (73464+SACREDMEM)
  65. #     define PBITS    13
  66. #    else
  67. #     define PBITS    12
  68. #    endif
  69. #   endif
  70. #  endif
  71. # endif
  72. # undef USERMEM
  73. #endif /* USERMEM */
  74.  
  75. #ifdef PBITS        /* Preferred BITS for this memory size */
  76. # ifndef BITS
  77. #  define BITS PBITS
  78. # endif BITS
  79. #endif /* PBITS */
  80.  
  81. #if BITS == 16
  82. # define HSIZE    69001        /* 95% occupancy */
  83. #endif
  84. #if BITS == 15
  85. # define HSIZE    35023        /* 94% occupancy */
  86. #endif
  87. #if BITS == 14
  88. # define HSIZE    18013        /* 91% occupancy */
  89. #endif
  90. #if BITS == 13
  91. # define HSIZE    9001        /* 91% occupancy */
  92. #endif
  93. #if BITS <= 12
  94. # define HSIZE    5003        /* 80% occupancy */
  95. #endif
  96.  
  97. #ifdef M_XENIX            /* Stupid compiler can't handle arrays with */
  98. # if BITS == 16            /* more than 65535 bytes - so we fake it */
  99. #  define XENIX_16
  100. # else
  101. #  if BITS > 13            /* Code only handles BITS = 12, 13, or 16 */
  102. #   define BITS    13
  103. #  endif
  104. # endif
  105. #endif
  106.  
  107. /*
  108.  * a code_int must be able to hold 2**BITS values of type int, and also -1
  109.  */
  110. #if BITS > 15
  111. typedef long int    code_int;
  112. #else
  113. typedef int        code_int;
  114. #endif
  115.  
  116. #ifdef SIGNED_COMPARE_SLOW
  117. typedef unsigned long int count_int;
  118. typedef unsigned short int count_short;
  119. #else
  120. typedef long int      count_int;
  121. #endif
  122.  
  123. #ifdef NO_UCHAR
  124.  typedef char    char_type;
  125. #else
  126.  typedef    unsigned char    char_type;
  127. #endif /* UCHAR */
  128. #ifdef CPM
  129. char_type magic_header[] = { 0x1f,0x9d,0 };
  130. #else
  131. char_type magic_header[] = { "\037\235" };    /* 1F 9D */
  132. #endif
  133.  
  134. /* Defines for third byte of header */
  135. #define BIT_MASK    0x1f
  136. #define BLOCK_MASK    0x80
  137. /* Masks 0x40 and 0x20 are free.  I think 0x20 should mean that there is
  138.    a fourth header byte (for expansion).
  139. */
  140. #define INIT_BITS 9            /* initial number of bits/code */
  141.  
  142. #define STACK_SIZE    15000
  143.  
  144. /*
  145.  * compress.c - File compression ala IEEE Computer, June 1984.
  146.  *
  147.  * Authors:    Spencer W. Thomas    (decvax!harpo!utah-cs!utah-gr!thomas)
  148.  *        Jim McKie        (decvax!mcvax!jim)
  149.  *        Steve Davies        (decvax!vax135!petsd!peora!srd)
  150.  *        Ken Turkowski        (decvax!decwrl!turtlevax!ken)
  151.  *        James A. Woods        (decvax!ihnp4!ames!jaw)
  152.  *        Joe Orost        (decvax!vax135!petsd!joe)
  153.  *
  154.  * $Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $
  155.  * $Log:    compress.c,v $
  156.  * Revision 4.0  85/07/30  12:50:00  joe
  157.  * Removed ferror() calls in output routine on every output except first.
  158.  * Prepared for release to the world.
  159.  * 
  160.  * Revision 3.6  85/07/04  01:22:21  joe
  161.  * Remove much wasted storage by overlaying hash table with the tables
  162.  * used by decompress: tab_suffix[1<<BITS], stack[8000].  Updated USERMEM
  163.  * computations.  Fixed dump_tab() DEBUG routine.
  164.  *
  165.  * Revision 3.5  85/06/30  20:47:21  jaw
  166.  * Change hash funtion to use exclusive-or.  Rip out hash cache.  These
  167.  * speedups render the megamemory version defunct, for now.  Make decoder
  168.  * stack global.  Parts of the RCS trunks 2.7, 2.6, and 2.1 no longer apply.
  169.  *
  170.  * Revision 3.4  85/06/27  12:00:00  ken
  171.  * Get rid of all floating-point calculations by doing all compression ratio
  172.  * calculations in fixed point.
  173.  *
  174.  * Revision 3.3  85/06/24  21:53:24  joe
  175.  * Incorporate portability suggestion for M_XENIX.  Got rid of text on #else
  176.  * and #endif lines.  Cleaned up #ifdefs for vax and interdata.
  177.  *
  178.  * Revision 3.2  85/06/06  21:53:24  jaw
  179.  * Incorporate portability suggestions for Z8000, IBM PC/XT from mailing list.
  180.  * Default to "quiet" output (no compression statistics).
  181.  *
  182.  * Revision 3.1  85/05/12  18:56:13  jaw
  183.  * Integrate decompress() stack speedups (from early pointer mods by McKie).
  184.  * Repair multi-file USERMEM gaffe.  Unify 'force' flags to mimic semantics
  185.  * of SVR2 'pack'.  Streamline block-compress table clear logic.  Increase 
  186.  * output byte count by magic number size.
  187.  * 
  188.  * Revision 3.0   84/11/27  11:50:00  petsd!joe
  189.  * Set HSIZE depending on BITS.  Set BITS depending on USERMEM.  Unrolled
  190.  * loops in clear routines.  Added "-C" flag for 2.0 compatibility.  Used
  191.  * unsigned compares on Perkin-Elmer.  Fixed foreground check.
  192.  *
  193.  * Revision 2.7   84/11/16  19:35:39  ames!jaw
  194.  * Cache common hash codes based on input statistics; this improves
  195.  * performance for low-density raster images.  Pass on #ifdef bundle
  196.  * from Turkowski.
  197.  *
  198.  * Revision 2.6   84/11/05  19:18:21  ames!jaw
  199.  * Vary size of hash tables to reduce time for small files.
  200.  * Tune PDP-11 hash function.
  201.  *
  202.  * Revision 2.5   84/10/30  20:15:14  ames!jaw
  203.  * Junk chaining; replace with the simpler (and, on the VAX, faster)
  204.  * double hashing, discussed within.  Make block compression standard.
  205.  *
  206.  * Revision 2.4   84/10/16  11:11:11  ames!jaw
  207.  * Introduce adaptive reset for block compression, to boost the rate
  208.  * another several percent.  (See mailing list notes.)
  209.  *
  210.  * Revision 2.3   84/09/22  22:00:00  petsd!joe
  211.  * Implemented "-B" block compress.  Implemented REVERSE sorting of tab_next.
  212.  * Bug fix for last bits.  Changed fwrite to putchar loop everywhere.
  213.  *
  214.  * Revision 2.2   84/09/18  14:12:21  ames!jaw
  215.  * Fold in news changes, small machine typedef from thomas,
  216.  * #ifdef interdata from joe.
  217.  *
  218.  * Revision 2.1   84/09/10  12:34:56  ames!jaw
  219.  * Configured fast table lookup for 32-bit machines.
  220.  * This cuts user time in half for b <= FBITS, and is useful for news batching
  221.  * from VAX to PDP sites.  Also sped up decompress() [fwrite->putc] and
  222.  * added signal catcher [plus beef in writeerr()] to delete effluvia.
  223.  *
  224.  * Revision 2.0   84/08/28  22:00:00  petsd!joe
  225.  * Add check for foreground before prompting user.  Insert maxbits into
  226.  * compressed file.  Force file being uncompressed to end with ".Z".
  227.  * Added "-c" flag and "zcat".  Prepared for release.
  228.  *
  229.  * Revision 1.10  84/08/24  18:28:00  turtlevax!ken
  230.  * Will only compress regular files (no directories), added a magic number
  231.  * header (plus an undocumented -n flag to handle old files without headers),
  232.  * added -f flag to force overwriting of possibly existing destination file,
  233.  * otherwise the user is prompted for a response.  Will tack on a .Z to a
  234.  * filename if it doesn't have one when decompressing.  Will only replace
  235.  * file if it was compressed.
  236.  *
  237.  * Revision 1.9  84/08/16  17:28:00  turtlevax!ken
  238.  * Removed scanargs(), getopt(), added .Z extension and unlimited number of
  239.  * filenames to compress.  Flags may be clustered (-Ddvb12) or separated
  240.  * (-D -d -v -b 12), or combination thereof.  Modes and other status is
  241.  * copied with copystat().  -O bug for 4.2 seems to have disappeared with
  242.  * 1.8.
  243.  *
  244.  * Revision 1.8  84/08/09  23:15:00  joe
  245.  * Made it compatible with vax version, installed jim's fixes/enhancements
  246.  *
  247.  * Revision 1.6  84/08/01  22:08:00  joe
  248.  * Sped up algorithm significantly by sorting the compress chain.
  249.  *
  250.  * Revision 1.5  84/07/13  13:11:00  srd
  251.  * Added C version of vax asm routines.  Changed structure to arrays to
  252.  * save much memory.  D unsigned compares where possible (faster on
  253.  * Perkin-Elmer)
  254.  *
  255.  * Revision 1.4  84/07/05  03:11:11  thomas
  256.  * Clean up the code a little and lint it.  (Lint complains about all
  257.  * the regs used in the asm, but I'm not going to "fix" this.)
  258.  *
  259.  * Revision 1.3  84/07/05  02:06:54  thomas
  260.  * Minor fixes.
  261.  *
  262.  * Revision 1.2  84/07/05  00:27:27  thomas
  263.  * Add variable bit length output.
  264.  *
  265.  */
  266. static char rcs_ident[] = "$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $";
  267.  
  268. #include <stdio.h>
  269. #include <ctype.h>
  270. #ifndef CPM
  271. #include <signal.h>
  272. #include <sys/types.h>
  273. #include <sys/stat.h>
  274. #endif
  275.  
  276. #define ARGVAL() (*++(*argv) || (--argc && *++argv))
  277.  
  278. int n_bits;                /* number of bits/code */
  279. int maxbits = BITS;            /* user settable max # bits/code */
  280. code_int maxcode;            /* maximum code, given n_bits */
  281. code_int maxmaxcode = 1 << BITS;    /* should NEVER generate this code */
  282. #ifdef COMPATIBLE        /* But wrong! */
  283. # define MAXCODE(n_bits)    (1 << (n_bits) - 1)
  284. #else
  285. # define MAXCODE(n_bits)    ((1 << (n_bits)) - 1)
  286. #endif /* COMPATIBLE */
  287.  
  288. #ifdef XENIX_16
  289. count_int htab0[8192];
  290. count_int htab1[8192];
  291. count_int htab2[8192];
  292. count_int htab3[8192];
  293. count_int htab4[8192];
  294. count_int htab5[8192];
  295. count_int htab6[8192];
  296. count_int htab7[8192];
  297. count_int htab8[HSIZE-65536];
  298. count_int * htab[9] = {
  299.     htab0, htab1, htab2, htab3, htab4, htab5, htab6, htab7, htab8 };
  300.  
  301. #define htabof(i)    (htab[(i) >> 13][(i) & 0x1fff])
  302. unsigned short code0tab[16384];
  303. unsigned short code1tab[16384];
  304. unsigned short code2tab[16384];
  305. unsigned short code3tab[16384];
  306. unsigned short code4tab[16384];
  307. unsigned short * codetab[5] = {
  308.     code0tab, code1tab, code2tab, code3tab, code4tab };
  309.  
  310. #define codetabof(i)    (codetab[(i) >> 14][(i) & 0x3fff])
  311.  
  312. #else    /* Normal machine */
  313. count_int htab [HSIZE];
  314. unsigned short codetab [HSIZE];
  315. #define htabof(i)    htab[i]
  316. #define codetabof(i)    codetab[i]
  317. #endif    /* XENIX_16 */
  318. code_int hsize = HSIZE;            /* for dynamic table sizing */
  319. count_int fsize;
  320.  
  321. /*
  322.  * To save much memory, we overlay the table used by compress() with those
  323.  * used by decompress().  The tab_prefix table is the same size and type
  324.  * as the codetab.  The tab_suffix table needs 2**BITS characters.  We
  325.  * get this from the beginning of htab.  The output stack uses the rest
  326.  * of htab, and contains characters.  There is plenty of room for any
  327.  * possible stack (stack used to be 8000 characters).
  328.  */
  329.  
  330. #define tab_prefixof(i)    codetabof(i)
  331. #ifdef XENIX_16
  332. # define tab_suffixof(i)    ((char_type *)htab[(i)>>15])[(i) & 0x7fff]
  333. # define de_stack        ((char_type *)(htab2))
  334. #else    /* Normal machine */
  335. # define tab_suffixof(i)    ((char_type *)(htab))[i]
  336. # define de_stack        ((char_type *)&tab_suffixof(1<<BITS))
  337. #endif    /* XENIX_16 */
  338.  
  339. code_int free_ent = 0;            /* first unused entry */
  340. int exit_stat = 0;
  341.  
  342. code_int getcode();
  343.  
  344. Usage()
  345. {
  346. #ifdef DEBUG
  347.     fprintf(stderr,"Usage: compress [-dDVfc] [-b maxbits] [file ...]\n");
  348. }
  349. int debug = 0;
  350. #else
  351.     fprintf(stderr,"Usage: compress [-dfvcV] [-b maxbits] [file ...]\n");
  352. }
  353. #endif /* DEBUG */
  354. int nomagic = 0;    /* Use a 3-byte magic number header, unless old file */
  355. int zcat_flg = 0;    /* Write output on stdout, suppress messages */
  356. int quiet = 1;        /* don't tell me about compression */
  357.  
  358. /*
  359.  * block compression parameters -- after all codes are used up,
  360.  * and compression rate changes, start over.
  361.  */
  362. int block_compress = BLOCK_MASK;
  363. int clear_flg = 0;
  364. long int ratio = 0L;
  365. #define CHECK_GAP 10000    /* ratio check interval */
  366. count_int checkpoint = CHECK_GAP;
  367. /*
  368.  * the next two codes should not be changed lightly, as they must not
  369.  * lie within the contiguous general code space.
  370.  */ 
  371. #define FIRST    257    /* first free entry */
  372. #define    CLEAR    256    /* table clear output code */
  373.  
  374. int force = 0;
  375. char ofname [100];
  376. #ifdef DEBUG
  377. int verbose = 0;
  378. #endif /* DEBUG */
  379. int (*bgnd_flag)();
  380.  
  381. int do_decomp = 0;
  382.  
  383. /*****************************************************************
  384.  * TAG( main )
  385.  *
  386.  * Algorithm from "A Technique for High Performance Data Compression",
  387.  * Terry A. Welch, IEEE Computer Vol 17, No 6 (June 1984), pp 8-19.
  388.  *
  389.  * Usage: compress [-dfvc] [-b bits] [file ...]
  390.  * Inputs:
  391.  *    -d:        If given, decompression is done instead.
  392.  *
  393.  *    -c:        Write output on stdout, don't remove original.
  394.  *
  395.  *    -b:        Parameter limits the max number of bits/code.
  396.  *
  397.  *    -f:        Forces output file to be generated, even if one already
  398.  *            exists, and even if no space is saved by compressing.
  399.  *            If -f is not used, the user will be prompted if stdin is
  400.  *            a tty, otherwise, the output file will not be overwritten.
  401.  *
  402.  *    -v:        Write compression statistics
  403.  *
  404.  *     file ...:   Files to be compressed.  If none specified, stdin
  405.  *            is used.
  406.  * Outputs:
  407.  *    file.Z:        Compressed form of file with same mode, owner, and utimes
  408.  *     or stdout   (if stdin used as input)
  409.  *
  410.  * Assumptions:
  411.  *    When filenames are given, replaces with the compressed version
  412.  *    (.Z suffix) only if the file decreases in size.
  413.  * Algorithm:
  414.  *     Modified Lempel-Ziv method (LZW).  Basically finds common
  415.  *  substrings and replaces them with a variable size code.  This is
  416.  *  deterministic, and can be done on the fly.  Thus, the decompression
  417.  *  procedure needs no input table, but tracks the way the table was built.
  418.  */
  419.  
  420. main( argc, argv )
  421. register int argc; char **argv;
  422. {
  423.     int overwrite = 0;    /* Do not overwrite unless given -f flag */
  424.     char tempname[100];
  425.     char **filelist, **fileptr;
  426.     char *cp, *rindex(), *malloc();
  427. #ifndef CPM
  428.     struct stat statbuf;
  429. #endif
  430.     extern onintr(), oops();
  431. #ifdef CPM
  432.     FILE *f1;
  433. #endif
  434.     char response[2];
  435.  
  436.  
  437. #ifndef CPM
  438.     if ( (bgnd_flag = signal ( SIGINT, SIG_IGN )) != SIG_IGN ) {
  439.     signal ( SIGINT, onintr );
  440.     signal ( SIGSEGV, oops );
  441.     }
  442. #endif
  443.  
  444. #ifdef COMPATIBLE
  445.     nomagic = 1;    /* Original didn't have a magic number */
  446. #endif /* COMPATIBLE */
  447.  
  448.     filelist = fileptr = (char **)(malloc(argc * sizeof(*argv)));
  449.     *filelist = NULL;
  450.  
  451.     if((cp = rindex(argv[0], '/')) != 0) {
  452.         cp++;
  453.     } else {
  454.         cp = argv[0];
  455.     }
  456.     if(strcmp(cp, "uncompress") == 0) {
  457.         do_decomp = 1;
  458.     } else if(strcmp(cp, "zcat") == 0) {
  459.         do_decomp = 1;
  460.         zcat_flg = 1;
  461.     }
  462.  
  463. #ifdef BSD4_2
  464.     /* 4.2BSD dependent - take it out if not */
  465.     setlinebuf( stderr );
  466. #endif /* BSD4_2 */
  467.  
  468.     /* Argument Processing
  469.      * All flags are optional.
  470.      * -D => debug
  471.      * -V => print Version; debug verbose
  472.      * -d => do_decomp
  473.      * -v => unquiet
  474.      * -f => force overwrite of output file
  475.      * -n => no header: useful to uncompress old files
  476.      * -b maxbits => maxbits.  If -b is specified, then maxbits MUST be
  477.      *        given also.
  478.      * -c => cat all output to stdout
  479.      * -C => generate output compatible with compress 2.0.
  480.      * if a string is left, must be an input filename.
  481.      */
  482.     for (argc--, argv++; argc > 0; argc--, argv++) {
  483.         if (**argv == '-') {    /* A flag argument */
  484.             while (*++(*argv)) {    /* Process all flags in this arg */
  485. #ifdef CPM
  486.                 switch (tolower(**argv)) {
  487. #else
  488.                 switch(**argv) {
  489. #endif
  490. #ifdef DEBUG
  491.                     case 'D':
  492.                         debug = 1;
  493.                         break;
  494.                     case 'V':
  495.                         verbose = 1;
  496.                         version();
  497.                         break;
  498. #else
  499.                     case 'V':
  500.                         version();
  501.                         break;
  502. #endif /* DEBUG */
  503.                     case 'v':
  504.                         quiet = 0;
  505.                         break;
  506.                     case 'd':
  507.                         do_decomp = 1;
  508.                         break;
  509.                     case 'f':
  510.                     case 'F':
  511.                         overwrite = 1;
  512.                         force = 1;
  513.                         break;
  514.                     case 'n':
  515.                         nomagic = 1;
  516.                         break;
  517.                     case 'C':
  518.                         block_compress = 0;
  519.                         break;
  520.                     case 'b':
  521.                         if (!ARGVAL()) {
  522.                             fprintf(stderr, "Missing maxbits\n");
  523.                             Usage();
  524.                             exit(1);
  525.                         }
  526.                         maxbits = atoi(*argv);
  527.                         goto nextarg;
  528.                     case 'c':
  529.                         zcat_flg = 1;
  530.                         break;
  531.                     case 'q':
  532.                         quiet = 1;
  533.                         break;
  534.                     default:
  535.                         fprintf(stderr, "Unknown flag: '%c'; ", **argv);
  536.                         Usage();
  537.                         exit(1);
  538.                 }
  539.             }
  540.         } else {        /* Input file name */
  541.             *fileptr++ = *argv;    /* Build input file list */
  542.             *fileptr = NULL;
  543.         /* process nextarg; */
  544.         }
  545. nextarg:
  546.         continue;
  547.     }
  548.  
  549.     if(maxbits < INIT_BITS)
  550.         maxbits = INIT_BITS;
  551.     if (maxbits > BITS)
  552.         maxbits = BITS;
  553.     maxmaxcode = 1 << maxbits;
  554.  
  555.     if (*filelist != NULL) {
  556.         for (fileptr = filelist; *fileptr; fileptr++) {
  557.             exit_stat = 0;
  558.             if (do_decomp != 0) {            /* DECOMPRESSION */
  559.         /* Check for .Z suffix */
  560.                 if (strcmp(*fileptr + strlen(*fileptr) - 2, ".Z") != 0) {
  561.             /* No .Z: tack one on */
  562.                     strcpy(tempname, *fileptr);
  563.                     strcat(tempname, ".Z");
  564.                     *fileptr = tempname;
  565.                 }
  566.         /* Open input file */
  567.                 if ((freopen(*fileptr, "r", stdin)) == NULL) {
  568.                     perror(*fileptr); continue;
  569.                 }
  570. #ifdef CPM
  571.                 filesize();
  572. #endif
  573.         /* Check the magic number */
  574.                 if (nomagic == 0) {
  575.                     if ((getc(stdin) != (magic_header[0] & 0xFF))
  576.                          || (getc(stdin) != (magic_header[1] & 0xFF))) {
  577.                         fprintf(stderr, "%s: not in compressed format\n",
  578.                             *fileptr);
  579.                         continue;
  580.                     }
  581.                     maxbits = getc(stdin);    /* set -b from file */
  582.                     block_compress = maxbits & BLOCK_MASK;
  583.                     maxbits &= BIT_MASK;
  584.                     maxmaxcode = 1 << maxbits;
  585.                     if(maxbits > BITS) {
  586.                         fprintf(stderr,
  587.                         "%s: compressed with %d bits, can only handle %d bits\n",
  588.                         *fileptr, maxbits, BITS);
  589.                         continue;
  590.                     }
  591.                 }
  592.         /* Generate output filename */
  593.                 strcpy(ofname, *fileptr);
  594.                 ofname[strlen(*fileptr) - 2] = '\0';  /* Strip off .Z */
  595.             } else {                    /* COMPRESSION */
  596.                 if (strcmp(*fileptr + strlen(*fileptr) - 2, ".Z") == 0) {
  597.                     fprintf(stderr, "%s: already has .Z suffix -- no change\n",
  598.                         *fileptr);
  599.                     continue;
  600.                 }
  601.         /* Open input file */
  602.                 if ((freopen(*fileptr, "r", stdin)) == NULL) {
  603.                     perror(*fileptr); continue;
  604.                 }
  605. #ifndef CPM
  606.                 stat ( *fileptr, &statbuf );
  607.                 fsize = (long) statbuf.st_size;
  608. #else
  609.                 filesize();
  610. #endif
  611.         /*
  612.          * tune hash table size for small files -- ad hoc,
  613.          * but the sizes match earlier #defines, which
  614.          * serve as upper bounds on the number of output codes. 
  615.          */
  616.                 hsize = HSIZE;
  617.                 if ( fsize < (1 << 12) )
  618.                     hsize = min ( 5003, HSIZE );
  619.                 else if ( fsize < (1 << 13) )
  620.                     hsize = min ( 9001, HSIZE );
  621.                 else if ( fsize < (1 << 14) )
  622.                     hsize = min ( 18013, HSIZE );
  623.                 else if ( fsize < (1 << 15) )
  624.                     hsize = min ( 35023, HSIZE );
  625.                 else if ( fsize < 47000 )
  626.                     hsize = min ( 50021, HSIZE );
  627.  
  628.         /* Generate output filename */
  629.                 strcpy(ofname, *fileptr);
  630. #ifndef BSD4_2        /* Short filenames */
  631.                 if ((cp=rindex(ofname,'/')) != NULL)
  632.                     cp++;
  633.                 else
  634.                     cp = ofname;
  635.                 if (strlen(cp) > 12) {
  636.                     fprintf(stderr,"%s: filename too long to tack on .Z\n",cp);
  637.                     continue;
  638.                 }
  639. #endif  /* BSD4_2        Long filenames allowed */
  640.                 strcat(ofname, ".Z");
  641.             }
  642.         /* Check for overwrite of existing file */
  643.             if (overwrite == 0 && zcat_flg == 0) {
  644. #ifndef CPM
  645.                 if (stat(ofname, &statbuf) == 0) {
  646. #else
  647.                 if ((f1 = fopen(ofname,"r")) != NULL){
  648.                     fclose(f1);
  649. #endif
  650.                     response[0] = 'n';
  651.                     fprintf(stderr, "%s already exists;", ofname);
  652.                     if (foreground()) {
  653.                         fprintf(stderr, " do you wish to overwrite %s (y or n)? ",
  654.                             ofname);
  655.                         fflush(stderr);
  656. #ifdef CPM
  657.                         response[0] = bdos(1,0);
  658.                         putc('\r',stderr);
  659.                         putc('\n',stderr);
  660. #else
  661.                         read(2, response, 2);
  662.                         while (response[1] != '\n') {
  663.                             if (read(2, response+1, 1) < 0) {    /* Ack! */
  664.                                 perror("stderr"); break;
  665.                             }
  666.                         }
  667. #endif
  668.                     }
  669.                     if (response[0] != 'y') {
  670.                         fprintf(stderr, "\tnot overwritten\n");
  671.                         continue;
  672.                     }
  673.                 }
  674.             }
  675.             if(zcat_flg == 0) {        /* Open output file */
  676.                 if (freopen(ofname, "w", stdout) == NULL) {
  677.                     perror(ofname);
  678.                     continue;
  679.                 }
  680.                 if(!quiet)
  681.                     fprintf(stderr, "%s: ", *fileptr);
  682.             }
  683.  
  684.         /* Actually do the compression/decompression */
  685.             if (do_decomp == 0)
  686.                 compress();
  687. #ifndef DEBUG
  688.             else
  689.                 decompress();
  690. #else
  691.             else if (debug == 0)
  692.                 decompress();
  693.             else
  694.                 printcodes();
  695.             if (verbose)
  696.                 dump_tab();
  697. #endif /* DEBUG */
  698.             if(zcat_flg == 0) {
  699. #ifndef CPM
  700.         copystat(*fileptr, ofname);        /* Copy stats */
  701. #endif
  702.                 if((exit_stat == 1) || (!quiet))
  703.                     putc('\n', stderr);
  704.             }
  705.         }
  706.     } else {        /* Standard input */
  707.         if (do_decomp == 0) {
  708.             compress();
  709. #ifdef DEBUG
  710.             if(verbose)
  711.                 dump_tab();
  712. #endif /* DEBUG */
  713.             if(!quiet)
  714.                 putc('\n', stderr);
  715.         } else {
  716.         /* Check the magic number */
  717.             if (nomagic == 0) {
  718.                 if ((getc(stdin)!=(magic_header[0] & 0xFF))
  719.                         || (getc(stdin)!=(magic_header[1] & 0xFF))) {
  720.                     fprintf(stderr, "stdin: not in compressed format\n");
  721.                     exit(1);
  722.                 }
  723.                 maxbits = getc(stdin);    /* set -b from file */
  724.                 block_compress = maxbits & BLOCK_MASK;
  725.                 maxbits &= BIT_MASK;
  726.                 maxmaxcode = 1 << maxbits;
  727.                 fsize = 100000L;        /* assume stdin large for USERMEM */
  728.                 if(maxbits > BITS) {
  729.                     fprintf(stderr,
  730.                     "stdin: compressed with %d bits, can only handle %d bits\n",
  731.                     maxbits, BITS);
  732.                     exit(1);
  733.                 }
  734.             }
  735. #ifndef DEBUG
  736.             decompress();
  737. #else
  738.             if (debug == 0)
  739.                 decompress();
  740.             else
  741.                 printcodes();
  742.             if (verbose)
  743.                 dump_tab();
  744. #endif /* DEBUG */
  745.         }
  746.     }
  747.     exit(exit_stat);
  748. }
  749.  
  750. static int offset;
  751. long int in_count = 1L;            /* length of input */
  752. long int bytes_out;            /* length of compressed output */
  753. long int out_count = 0L;            /* # of codes output (for debugging) */
  754.  
  755. /*
  756.  * compress stdin to stdout
  757.  *
  758.  * Algorithm:  use open addressing double hashing (no chaining) on the 
  759.  * prefix code / next character combination.  We do a variant of Knuth's
  760.  * algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
  761.  * secondary probe.  Here, the modular division first probe is gives way
  762.  * to a faster exclusive-or manipulation.  Also do block compression with
  763.  * an adaptive reset, whereby the code table is cleared when the compression
  764.  * ratio decreases, but after the table fills.  The variable-length output
  765.  * codes are re-sized at this point, and a special CLEAR code is generated
  766.  * for the decompressor.  Late addition:  construct the table according to
  767.  * file size for noticeable speed improvement on small files.  Please direct
  768.  * questions about this implementation to ames!jaw.
  769.  */
  770.  
  771. compress() {
  772.     register long fcode;
  773.     register code_int i = 0;
  774.     register int c;
  775.     register code_int ent;
  776. #ifdef XENIX_16
  777.     register code_int disp;
  778. #else    /* Normal machine */
  779.     register int disp;
  780. #endif
  781.     register code_int hsize_reg;
  782.     register int hshift;
  783.  
  784.  
  785. #ifndef COMPATIBLE
  786.     if (nomagic == 0) {
  787.         putc(magic_header[0],stdout);
  788.         putc(magic_header[1],stdout);
  789.         putc((char)(maxbits | block_compress),stdout);
  790.         if(ferror(stdout))
  791.             writeerr();
  792.     }
  793. #endif /* COMPATIBLE */
  794.  
  795.     offset = 0;
  796. #ifndef COMPATIBLE
  797.     if (nomagic == 0)
  798.         bytes_out = 3L;        /* includes 3-byte header mojo */
  799.     else
  800.         bytes_out = 0L;
  801. #else
  802.     bytes_out = 0L;
  803. #endif
  804.     out_count = 0L;
  805.     clear_flg = 0;
  806.     ratio = 0L;
  807.     in_count = 1L;
  808.     checkpoint = CHECK_GAP;
  809.     maxcode = MAXCODE(n_bits = INIT_BITS);
  810.     free_ent = ((block_compress) ? FIRST : 256 );
  811.  
  812.     ent = getc(stdin);
  813. #ifdef CPM
  814.     fsize--;
  815. #endif
  816.  
  817.     hshift = 0;
  818.     for ( fcode = (long) hsize;  fcode < 65536L; fcode *= 2L )
  819.         hshift++;
  820.     hshift = 8 - hshift;        /* set hash code range bound */
  821.  
  822.     hsize_reg = hsize;
  823.     cl_hash( (count_int) hsize_reg);        /* clear hash table */
  824.  
  825. #ifdef SIGNED_COMPARE_SLOW
  826.     while ( (c = getc(stdin)) != (unsigned) EOF ) {
  827. #else
  828.     while ( (c = getc(stdin)) != EOF ) {
  829. #endif
  830. #ifdef CPM
  831.         fsize--;
  832.         if (fsize < 0L)
  833.             break;
  834. #endif
  835.         in_count++;
  836.         fcode = (long) (((long) c << maxbits) + ent);
  837.          i = ((c << hshift) ^ ent);    /* xor hashing */
  838.  
  839.         if ( htabof (i) == fcode ) {
  840.             ent = codetabof (i);
  841.             continue;
  842.         } else if ( (long)htabof (i) < 0 )    /* empty slot */
  843.             goto nomatch;
  844.         disp = hsize_reg - i;        /* secondary hash (after G. Knott) */
  845.         if ( i == 0 )
  846.             disp = 1;
  847. probe:
  848.         if ( (i -= disp) < 0 )
  849.             i += hsize_reg;
  850.  
  851.         if ( htabof (i) == fcode ) {
  852.             ent = codetabof (i);
  853.             continue;
  854.         }
  855.         if ( (long)htabof (i) > 0 ) 
  856.             goto probe;
  857. nomatch:
  858.         output ( (code_int) ent );
  859.         out_count++;
  860.          ent = c;
  861. #ifdef SIGNED_COMPARE_SLOW
  862.         if ( (unsigned) free_ent < (unsigned) maxmaxcode) {
  863. #else
  864.         if ( free_ent < maxmaxcode ) {
  865. #endif
  866.             codetabof (i) = free_ent++;    /* code -> hashtable */
  867.             htabof (i) = fcode;
  868.         } else if ( (count_int)in_count >= checkpoint && block_compress )
  869.             cl_block ();
  870.     }
  871.     /*
  872.      * Put out the final code.
  873.      */
  874.     output( (code_int)ent );
  875.     out_count++;
  876.     output( (code_int)-1 );
  877.  
  878.     /*
  879.      * Print out stats on stderr
  880.      */
  881.     if(zcat_flg == 0 && !quiet) {
  882. #ifdef DEBUG
  883.         fprintf( stderr,
  884.             "%ld chars in, %ld codes (%ld bytes) out, compression factor: ",
  885.             in_count, out_count, bytes_out );
  886.         prratio( stderr, in_count, bytes_out );
  887.         fprintf( stderr, "\n");
  888.         fprintf( stderr, "\tCompression as in compact: " );
  889.         prratio( stderr, in_count-bytes_out, in_count );
  890.         fprintf( stderr, "\n");
  891.         fprintf( stderr, "\tLargest code (of last block) was %d (%d bits)\n",
  892.             free_ent - 1, n_bits );
  893. #else /* !DEBUG */
  894.         fprintf( stderr, "Compression: " );
  895.         prratio( stderr, in_count-bytes_out, in_count );
  896. #endif /* DEBUG */
  897.     }
  898.     if(bytes_out > in_count)    /* exit(2) if no savings */
  899.         exit_stat = 2;
  900.     return;
  901. }
  902.  
  903. /*****************************************************************
  904.  * TAG( output )
  905.  *
  906.  * Output the given code.
  907.  * Inputs:
  908.  *     code:    A n_bits-bit integer.  If == -1, then EOF.  This assumes
  909.  *        that n_bits =< (long)wordsize - 1.
  910.  * Outputs:
  911.  *     Outputs code to the file.
  912.  * Assumptions:
  913.  *    Chars are 8 bits long.
  914.  * Algorithm:
  915.  *     Maintain a BITS character long buffer (so that 8 codes will
  916.  * fit in it exactly).  Use the VAX insv instruction to insert each
  917.  * code in turn.  When the buffer fills up empty it and start over.
  918.  */
  919.  
  920. static char buf[BITS];
  921.  
  922. #ifndef vax
  923. char_type lmask[9] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x00};
  924. char_type rmask[9] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
  925. #endif /* vax */
  926.  
  927. output( code )
  928. code_int code;
  929. {
  930. #ifdef DEBUG
  931.     static int col = 0;
  932. #endif /* DEBUG */
  933.  
  934.     /*
  935.      * On the VAX, it is important to have the register declarations
  936.      * in exactly the order given, or the asm will break.
  937.      */
  938.     register int r_off = offset, bits= n_bits;
  939.     register char * bp = buf;
  940.  
  941. #ifdef DEBUG
  942.     if ( verbose )
  943.         fprintf( stderr, "%5d%c", code,
  944.             (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  945. #endif /* DEBUG */
  946.     if ( code >= 0 ) {
  947. #ifdef vax
  948.     /* VAX DEPENDENT!! Implementation on other machines is below.
  949.      *
  950.      * Translation: Insert BITS bits from the argument starting at
  951.      * offset bits from the beginning of buf.
  952.      */
  953.         0;    /* Work around for pcc -O bug with asm and if stmt */
  954.         asm( "insv    4(ap),r11,r10,(r9)" );
  955. #else /* not a vax */
  956. /* 
  957.  * byte/bit numbering on the VAX is simulated by the following code
  958.  */
  959.     /*
  960.      * Get to the first byte.
  961.      */
  962.         bp += (r_off >> 3);
  963.         r_off &= 7;
  964.     /*
  965.      * Since code is always >= 8 bits, only need to mask the first
  966.      * hunk on the left.
  967.      */
  968.         *bp = (*bp & rmask[r_off]) | (code << r_off) & lmask[r_off];
  969.         bp++;
  970.         bits -= (8 - r_off);
  971.         code >>= 8 - r_off;
  972.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  973.         if ( bits >= 8 ) {
  974.             *bp++ = code;
  975.             code >>= 8;
  976.             bits -= 8;
  977.         }
  978.     /* Last bits. */
  979.         if(bits)
  980.             *bp = code;
  981. #endif /* vax */
  982.         offset += n_bits;
  983.         if ( offset == (n_bits << 3) ) {
  984.             bp = buf;
  985.             bits = n_bits;
  986.             bytes_out += bits;
  987.             do
  988.                 putc(*bp++,stdout);
  989.             while(--bits);
  990.             offset = 0;
  991.         }
  992.  
  993.     /*
  994.      * If the next entry is going to be too big for the code size,
  995.      * then increase it, if possible.
  996.      */
  997.         if ( free_ent > maxcode || (clear_flg > 0))    {
  998.         /*
  999.          * Write the whole buffer, because the input side won't
  1000.          * discover the size increase until after it has read it.
  1001.          */
  1002.             if ( offset > 0 ) {
  1003.                 if( fwrite( buf, 1, n_bits, stdout ) != n_bits)
  1004.                     writeerr();
  1005.                 bytes_out += n_bits;
  1006.             }
  1007.             offset = 0;
  1008.  
  1009.             if ( clear_flg ) {
  1010.                 maxcode = MAXCODE (n_bits = INIT_BITS);
  1011.                 clear_flg = 0;
  1012.             } else {
  1013.                 n_bits++;
  1014.                 if ( n_bits == maxbits )
  1015.                     maxcode = maxmaxcode;
  1016.                 else
  1017.                     maxcode = MAXCODE(n_bits);
  1018.             }
  1019. #ifdef DEBUG
  1020.             if ( debug ) {
  1021.                 fprintf( stderr, "\nChange to %d bits\n", n_bits );
  1022.                 col = 0;
  1023.             }
  1024. #endif /* DEBUG */
  1025.         }
  1026.     } else {
  1027.     /*
  1028.      * At EOF, write the rest of the buffer.
  1029.      */
  1030.         if ( offset > 0 )
  1031.             fwrite( buf, 1, (offset + 7) / 8, stdout );
  1032.         bytes_out += (offset + 7) / 8;
  1033.         offset = 0;
  1034.         fflush( stdout );
  1035. #ifdef DEBUG
  1036.         if ( verbose )
  1037.             fprintf( stderr, "\n" );
  1038. #endif /* DEBUG */
  1039.         if( ferror( stdout ) )
  1040.             writeerr();
  1041.     }
  1042. }
  1043.  
  1044. /*
  1045.  * Decompress stdin to stdout.  This routine adapts to the codes in the
  1046.  * file building the "string" table on-the-fly; requiring no table to
  1047.  * be stored in the compressed file.  The tables used herein are shared
  1048.  * with those of the compress() routine.  See the definitions above.
  1049.  */
  1050.  
  1051. decompress() {
  1052.     register char_type *stackp;
  1053.     register int finchar;
  1054.     register code_int code, oldcode, incode;
  1055.  
  1056.     /*
  1057.      * As above, initialize the first 256 entries in the table.
  1058.      */
  1059.     maxcode = MAXCODE(n_bits = INIT_BITS);
  1060.     for ( code = 255; code >= 0; code-- ) {
  1061.         tab_prefixof(code) = 0;
  1062.         tab_suffixof(code) = (char_type)code;
  1063.     }
  1064.     free_ent = ((block_compress) ? FIRST : 256 );
  1065.  
  1066.     finchar = oldcode = getcode();
  1067.     if(oldcode == -1)    /* EOF already? */
  1068.         return;            /* Get out of here */
  1069.     putc((char)finchar,stdout);        /* first code must be 8 bits = char */
  1070.     if(ferror(stdout))        /* Crash if can't write */
  1071.         writeerr();
  1072.     stackp = de_stack;
  1073.  
  1074.     while ( (code = getcode()) > -1 ) {
  1075.  
  1076.         if ( (code == CLEAR) && block_compress ) {
  1077.             for ( code = 255; code >= 0; code-- )
  1078.                 tab_prefixof(code) = 0;
  1079.             clear_flg = 1;
  1080.             free_ent = FIRST - 1;
  1081.             if ( (code = getcode ()) == -1 )    /* O, untimely death! */
  1082.                 break;
  1083.         }
  1084.         incode = code;
  1085.     /*
  1086.      * Special case for KwKwK string.
  1087.      */
  1088.         if ( code >= free_ent ) {
  1089.             *stackp++ = finchar;
  1090.             code = oldcode;
  1091.         }
  1092.  
  1093.     /*
  1094.      * Generate output characters in reverse order
  1095.      */
  1096. #ifdef SIGNED_COMPARE_SLOW
  1097.         while ( ((unsigned long)code) >= ((unsigned long)256) ) {
  1098. #else
  1099.         while ( code >= 256 ) {
  1100. #endif
  1101.               *stackp++ = tab_suffixof(code);
  1102.             code = tab_prefixof(code);
  1103.         }
  1104.         *stackp++ = finchar = tab_suffixof(code);
  1105.  
  1106.     /*
  1107.      * And put them out in forward order
  1108.      */
  1109.         do
  1110.             putc(*--stackp,stdout);
  1111.         while ( stackp > de_stack );
  1112.  
  1113.     /*
  1114.      * Generate the new entry.
  1115.      */
  1116.         if ( (code=free_ent) < maxmaxcode) {
  1117.             tab_prefixof(code) = (unsigned short)oldcode;
  1118.             tab_suffixof(code) = finchar;
  1119.             free_ent = code+1;
  1120.         } 
  1121.     /*
  1122.      * Remember previous code.
  1123.      */
  1124.         oldcode = incode;
  1125.     }
  1126.     fflush( stdout );
  1127.     if(ferror(stdout))
  1128.         writeerr();
  1129. }
  1130.  
  1131. /*****************************************************************
  1132.  * TAG( getcode )
  1133.  *
  1134.  * Read one code from the standard input.  If EOF, return -1.
  1135.  * Inputs:
  1136.  *     stdin
  1137.  * Outputs:
  1138.  *     code or -1 is returned.
  1139.  */
  1140.  
  1141. code_int
  1142. getcode() {
  1143.     /*
  1144.      * On the VAX, it is important to have the register declarations
  1145.      * in exactly the order given, or the asm will break.
  1146.      */
  1147.     register code_int code;
  1148.     static int offset = 0, size = 0;
  1149.     static char_type buf[BITS];
  1150.     register int r_off, bits;
  1151.     register char_type *bp = buf;
  1152.  
  1153.     if ( clear_flg > 0 || offset >= size || free_ent > maxcode ) {
  1154.     /*
  1155.      * If the next entry will be too big for the current code
  1156.      * size, then we must increase the size.  This implies reading
  1157.      * a new buffer full, too.
  1158.      */
  1159.         if ( free_ent > maxcode ) {
  1160.             n_bits++;
  1161.             if ( n_bits == maxbits )
  1162.                 maxcode = maxmaxcode;    /* won't get any bigger now */
  1163.             else
  1164.                 maxcode = MAXCODE(n_bits);
  1165.         }
  1166.         if ( clear_flg > 0) {
  1167.             maxcode = MAXCODE (n_bits = INIT_BITS);
  1168.             clear_flg = 0;
  1169.         }
  1170.         size = fread( buf, 1, n_bits, stdin );
  1171. #ifdef CPM
  1172.         fsize = fsize - (long) n_bits;
  1173.         if (fsize <= 0L)
  1174.             if (size)
  1175.                 while (buf[size-1] == 0x1a)
  1176.                     size--;
  1177.             else
  1178.                 return(-1);
  1179. #endif
  1180.         if ( size <= 0 )
  1181.             return -1;            /* end of file */
  1182.         offset = 0;
  1183.     /* Round size down to integral number of codes */
  1184.         size = (size << 3) - (n_bits - 1);
  1185.     }
  1186.     r_off = offset;
  1187.     bits = n_bits;
  1188. #ifdef vax
  1189.     asm( "extzv   r10,r9,(r8),r11" );
  1190. #else /* not a vax */
  1191.     /*
  1192.      * Get to the first byte.
  1193.      */
  1194.     bp += (r_off >> 3);
  1195.     r_off &= 7;
  1196.     /* Get first part (low order bits) */
  1197. #ifdef NO_UCHAR
  1198.     code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
  1199. #else
  1200.     code = (*bp++ >> r_off);
  1201. #endif /* NO_UCHAR */
  1202.     bits -= (8 - r_off);
  1203.     r_off = 8 - r_off;        /* now, offset into code word */
  1204.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  1205.     if ( bits >= 8 ) {
  1206. #ifdef NO_UCHAR
  1207.         code |= (*bp++ & 0xff) << r_off;
  1208. #else
  1209.         code |= *bp++ << r_off;
  1210. #endif /* NO_UCHAR */
  1211.         r_off += 8;
  1212.         bits -= 8;
  1213.     }
  1214.     /* high order bits. */
  1215.     code |= (*bp & rmask[bits]) << r_off;
  1216. #endif /* vax */
  1217.     offset += n_bits;
  1218.  
  1219.     return code;
  1220. }
  1221.  
  1222. char *
  1223. rindex(s, c)        /* For those who don't have it in libc.a */
  1224. register char *s, c;
  1225. {
  1226.     char *p;
  1227.     for (p = NULL; *s; s++)
  1228.         if (*s == c)
  1229.             p = s;
  1230.     return(p);
  1231. }
  1232.  
  1233. #ifdef DEBUG
  1234. printcodes()
  1235. {
  1236.     /*
  1237.      * Just print out codes from input file.  For debugging.
  1238.      */
  1239.     code_int code;
  1240.     int col = 0, bits;
  1241.  
  1242.     bits = n_bits = INIT_BITS;
  1243.     maxcode = MAXCODE(n_bits);
  1244.     free_ent = ((block_compress) ? FIRST : 256 );
  1245.     while ( ( code = getcode() ) >= 0 ) {
  1246.         if ( (code == CLEAR) && block_compress ) {
  1247.                free_ent = FIRST - 1;
  1248.                clear_flg = 1;
  1249.         } else if ( free_ent < maxmaxcode )
  1250.             free_ent++;
  1251.         if ( bits != n_bits ) {
  1252.             fprintf(stderr, "\nChange to %d bits\n", n_bits );
  1253.             bits = n_bits;
  1254.             col = 0;
  1255.         }
  1256.         fprintf(stderr, "%5d%c", code, (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  1257.     }
  1258.     putc( '\n', stderr );
  1259.     exit( 0 );
  1260. }
  1261.  
  1262. code_int sorttab[1<<BITS];    /* sorted pointers into htab */
  1263.  
  1264. dump_tab()    /* dump string table */
  1265. {
  1266.     register int i, first;
  1267.     register int ent;
  1268.     int stack_top = STACK_SIZE;
  1269.     register int c;
  1270.     register int flag = 1;
  1271.  
  1272.     if(do_decomp == 0) {    /* compressing */
  1273.  
  1274.         for(i=0; i<hsize; i++) {    /* build sort pointers */
  1275.             if((long)htabof(i) >= 0) {
  1276.                 sorttab[codetabof(i)] = i;
  1277.             }
  1278.         }
  1279.         first = block_compress ? FIRST : 256;
  1280.         for(i = first; i < free_ent; i++) {
  1281.             fprintf(stderr, "%5d: \"", i);
  1282.             de_stack[--stack_top] = '\n';
  1283.             de_stack[--stack_top] = '"';
  1284.             stack_top = in_stack((htabof(sorttab[i])>>maxbits)&0xff, 
  1285.                             stack_top);
  1286.             for(ent=htabof(sorttab[i]) & ((1<<maxbits)-1);
  1287.                     ent > 256;
  1288.                     ent=htabof(sorttab[ent]) & ((1<<maxbits)-1)) {
  1289.                 stack_top = in_stack(htabof(sorttab[ent]) >> maxbits,
  1290.                     stack_top);
  1291.             }
  1292.             stack_top = in_stack(ent, stack_top);
  1293.             fwrite( &de_stack[stack_top], 1, STACK_SIZE-stack_top, stderr);
  1294.                stack_top = STACK_SIZE;
  1295.         }
  1296.    } else if(!debug) {    /* decompressing */
  1297.  
  1298.        for ( i = 0; i < free_ent; i++ ) {
  1299.             ent = i;
  1300.             c = tab_suffixof(ent);
  1301.             if ( isascii(c) && isprint(c) )
  1302.                 fprintf( stderr, "%5d: %5d/'%c'  \"",
  1303.                     ent, tab_prefixof(ent), c );
  1304.             else
  1305.                 fprintf( stderr, "%5d: %5d/\\%03o \"",
  1306.                     ent, tab_prefixof(ent), c );
  1307.             de_stack[--stack_top] = '\n';
  1308.             de_stack[--stack_top] = '"';
  1309.             for ( ; ent != NULL;
  1310.                     ent = (ent >= FIRST ? tab_prefixof(ent) : NULL) ) {
  1311.                 stack_top = in_stack(tab_suffixof(ent), stack_top);
  1312.             }
  1313.             fwrite( &de_stack[stack_top], 1, STACK_SIZE - stack_top, stderr );
  1314.             stack_top = STACK_SIZE;
  1315.         }
  1316.     }
  1317. }
  1318.  
  1319. int
  1320. in_stack(c, stack_top)
  1321. register int c, stack_top;
  1322. {
  1323.     if ( (isascii(c) && isprint(c) && c != '\\') || c == ' ' ) {
  1324.         de_stack[--stack_top] = c;
  1325.     } else {
  1326.         switch( c ) {
  1327.             case '\n': de_stack[--stack_top] = 'n'; break;
  1328.             case '\t': de_stack[--stack_top] = 't'; break;
  1329.             case '\b': de_stack[--stack_top] = 'b'; break;
  1330.             case '\f': de_stack[--stack_top] = 'f'; break;
  1331.             case '\r': de_stack[--stack_top] = 'r'; break;
  1332.             case '\\': de_stack[--stack_top] = '\\'; break;
  1333.             default:
  1334.                  de_stack[--stack_top] = '0' + c % 8;
  1335.                  de_stack[--stack_top] = '0' + (c / 8) % 8;
  1336.                  de_stack[--stack_top] = '0' + c / 64;
  1337.                  break;
  1338.         }
  1339.         de_stack[--stack_top] = '\\';
  1340.     }
  1341.     return stack_top;
  1342. }
  1343. #endif /* DEBUG */
  1344.  
  1345. writeerr()
  1346. {
  1347.     perror ( ofname );
  1348.     unlink ( ofname );
  1349.     exit ( 1 );
  1350. }
  1351.  
  1352. #ifndef CPM
  1353. copystat(ifname, ofname)
  1354. char *ifname, *ofname;
  1355. {
  1356.     struct stat statbuf;
  1357.     int mode;
  1358.     time_t timep[2];
  1359.  
  1360.     fclose(stdout);
  1361.     if (stat(ifname, &statbuf)) {        /* Get stat on input file */
  1362.         perror(ifname);
  1363.         return;
  1364.     }
  1365.     if ((statbuf.st_mode & S_IFMT /* 0170000 */) != S_IFREG /* 0100000 */) {
  1366.         if(quiet)
  1367.             fprintf(stderr, "%s: ", ifname);
  1368.         fprintf(stderr, " -- not a regular file: unchanged");
  1369.         exit_stat = 1;
  1370.     } else if (statbuf.st_nlink > 1) {
  1371.         if(quiet)
  1372.             fprintf(stderr, "%s: ", ifname);
  1373.         fprintf(stderr, " -- has %d other links: unchanged",
  1374.             statbuf.st_nlink - 1);
  1375.         exit_stat = 1;
  1376.     } else if (exit_stat == 2 && (!force)) { /* No compression: remove file.Z */
  1377.         if(!quiet)
  1378.             fprintf(stderr, " -- file unchanged");
  1379.     } else {            /***** Successful Compression *****/
  1380.         exit_stat = 0;
  1381.         mode = statbuf.st_mode & 07777;
  1382.         if (chmod(ofname, mode))        /* Copy modes */
  1383.             perror(ofname);
  1384.         chown(ofname, statbuf.st_uid, statbuf.st_gid);    /* Copy ownership */
  1385.         timep[0] = statbuf.st_atime;
  1386.         timep[1] = statbuf.st_mtime;
  1387.         utime(ofname, timep);    /* Update last accessed and modified times */
  1388.         if (unlink(ifname))        /* Remove input file */
  1389.             perror(ifname);
  1390.         if(!quiet)
  1391.             fprintf(stderr, " -- replaced with %s", ofname);
  1392.         return;        /* Successful return */
  1393.     }
  1394.  
  1395.     /* Unsuccessful return -- one of the tests failed */
  1396.     if (unlink(ofname))
  1397.         perror(ofname);
  1398. }
  1399. #endif
  1400.  
  1401. perror(s)
  1402. char *s;
  1403. {
  1404.     fputs("Error: ",stderr);
  1405.     fputs(s,stderr);
  1406. }
  1407.  
  1408. /*
  1409.  * This routine returns 1 if we are running in the foreground and stderr
  1410.  * is a tty.
  1411.  */
  1412. foreground()
  1413. {
  1414. #ifdef CPM
  1415.     return(1);
  1416. #else
  1417.     if(bgnd_flag) {    /* background? */
  1418.         return(0);
  1419.     } else {            /* foreground */
  1420.         if(isatty(2)) {        /* and stderr is a tty */
  1421.             return(1);
  1422.         } else {
  1423.             return(0);
  1424.         }
  1425.     }
  1426. #endif
  1427. }
  1428.  
  1429. onintr ( )
  1430. {
  1431.     unlink ( ofname );
  1432.     exit ( 1 );
  1433. }
  1434.  
  1435. oops ( )    /* wild pointer -- assume bad input */
  1436. {
  1437.     if ( do_decomp == 1 ) 
  1438.         fprintf ( stderr, "uncompress: corrupt input\n" );
  1439.     unlink ( ofname );
  1440.     exit ( 1 );
  1441. }
  1442.  
  1443. cl_block ()        /* table clear for block compress */
  1444. {
  1445.     register long int rat;
  1446.  
  1447.     checkpoint = in_count + CHECK_GAP;
  1448. #ifdef DEBUG
  1449.     if ( debug ) {
  1450.         fprintf ( stderr, "count: %ld, ratio: ", in_count );
  1451.          prratio ( stderr, in_count, bytes_out );
  1452.         fprintf ( stderr, "\n");
  1453.     }
  1454. #endif /* DEBUG */
  1455.  
  1456.     if(in_count > 0x007fffff) {    /* shift will overflow */
  1457.         rat = bytes_out >> 8;
  1458.         if(rat == 0) {        /* Don't divide by zero */
  1459.             rat = 0x7fffffff;
  1460.         } else {
  1461.             rat = in_count / rat;
  1462.         }
  1463.     } else {
  1464.         rat = (in_count << 8) / bytes_out;    /* 8 fractional bits */
  1465.     }
  1466.     if ( rat > ratio ) {
  1467.         ratio = rat;
  1468.     } else {
  1469.         ratio = 0;
  1470. #ifdef DEBUG
  1471.     if(verbose)
  1472.         dump_tab();    /* dump string table */
  1473. #endif
  1474.      cl_hash ( (count_int) hsize );
  1475.     free_ent = FIRST;
  1476.     clear_flg = 1;
  1477.     output ( (code_int) CLEAR );
  1478. #ifdef DEBUG
  1479.     if(debug)
  1480.            fprintf ( stderr, "clear\n" );
  1481. #endif /* DEBUG */
  1482.     }
  1483. }
  1484.  
  1485. cl_hash(hsize)        /* reset code table */
  1486. register count_int hsize;
  1487. {
  1488. #ifndef XENIX_16    /* Normal machine */
  1489.     register count_int *htab_p = htab+hsize;
  1490. #else
  1491.     register int j;
  1492.     register long k = hsize;
  1493.     register count_int *htab_p;
  1494. #endif
  1495.     register long i;
  1496.     register long m1 = -1L;
  1497.  
  1498. #ifdef XENIX_16
  1499.     for(j=0; j<=8 && k>=0; j++,k-=8192) {
  1500.         i = 8192;
  1501.         if(k < 8192) {
  1502.             i = k;
  1503.         }
  1504.         htab_p = &(htab[j][i]);
  1505.         i -= 16;
  1506.         if(i > 0) {
  1507. #else
  1508.             i = hsize - 16;
  1509. #endif
  1510.      do {                /* might use Sys V memset(3) here */
  1511.         *(htab_p-16) = m1;
  1512.         *(htab_p-15) = m1;
  1513.         *(htab_p-14) = m1;
  1514.         *(htab_p-13) = m1;
  1515.         *(htab_p-12) = m1;
  1516.         *(htab_p-11) = m1;
  1517.         *(htab_p-10) = m1;
  1518.         *(htab_p-9) = m1;
  1519.         *(htab_p-8) = m1;
  1520.         *(htab_p-7) = m1;
  1521.         *(htab_p-6) = m1;
  1522.         *(htab_p-5) = m1;
  1523.         *(htab_p-4) = m1;
  1524.         *(htab_p-3) = m1;
  1525.         *(htab_p-2) = m1;
  1526.         *(htab_p-1) = m1;
  1527.         htab_p -= 16;
  1528.     } while ((i -= 16) >= 0);
  1529. #ifdef XENIX_16
  1530.     }
  1531.     }
  1532. #endif
  1533.         for ( i += 16; i > 0; i-- )
  1534.             *--htab_p = m1;
  1535. }
  1536.  
  1537. prratio(stream, num, den)
  1538. FILE *stream;
  1539. long int num, den;
  1540. {
  1541.     register int q;            /* Doesn't need to be long */
  1542.  
  1543.     if(num > 214748L) {        /* 2147483647/10000 */
  1544.         q = num / (den / 10000L);
  1545.     } else {
  1546.         q = 10000L * num / den;        /* Long calculations, though */
  1547.     }
  1548.     if (q < 0) {
  1549.         putc('-', stream);
  1550.         q = -q;
  1551.     }
  1552.     fprintf(stream, "%d.%02d%%", q / 100, q % 100);
  1553. }
  1554.  
  1555. version()
  1556. {
  1557.     fprintf(stderr, "%s\n", rcs_ident);
  1558.     fprintf(stderr, "Options: ");
  1559. #ifdef vax
  1560.     fprintf(stderr, "vax, ");
  1561. #endif
  1562. #ifdef NO_UCHAR
  1563.     fprintf(stderr, "NO_UCHAR, ");
  1564. #endif
  1565. #ifdef SIGNED_COMPARE_SLOW
  1566.     fprintf(stderr, "SIGNED_COMPARE_SLOW, ");
  1567. #endif
  1568. #ifdef XENIX_16
  1569.     fprintf(stderr, "XENIX_16, ");
  1570. #endif
  1571. #ifdef COMPATIBLE
  1572.     fprintf(stderr, "COMPATIBLE, ");
  1573. #endif
  1574. #ifdef DEBUG
  1575.     fprintf(stderr, "DEBUG, ");
  1576. #endif
  1577. #ifdef BSD4_2
  1578.     fprintf(stderr, "BSD4_2, ");
  1579. #endif
  1580.     fprintf(stderr, "BITS = %d\n", BITS);
  1581. }
  1582.  
  1583.  
  1584. #ifdef CPM
  1585. filesize()
  1586. {
  1587.     fseek(stdin,0L,2);
  1588.     fsize = ftell(stdin);
  1589.     fseek(stdin,0L,0);
  1590. }
  1591. #endif
  1592.