/* * expand a tiger file into its * ascii onto std output */ #include #include #include #define nelem(x) (sizeof(x)/sizeof(x)[0]) typedef struct Sym Sym; typedef struct Code1 Code1; typedef struct Code2 Code2; typedef struct Tree Tree; typedef struct Prof Prof; struct Code1 { char* val; long code; int nbits; }; struct Code2 { long val; long code; int nbits; }; struct Prof { long count; int flag; union { Tree* tree; Code1* sym; }; }; struct Tree { Prof left; Prof right; }; enum { TREE = 1, LEAF, INF = 1 << 29, }; Prof* prof; Tree* tree; Code1* tdecode1; Code2* tdecode2; int mdecode1; int mdecode2; long mask1; long mask2; long* decode1; uchar* decode2; long nlist1; long nlist2; char string[1000]; Biobuf* ibuf; Biobuf obuf; void dofile(char*); void huff(long); void prtree(Prof*, int, long); long getlong(void); char* getcode1(void); long getcode2(void); void getstring(void); void error(char*); char* tiger(char*); void main(int argc, char *argv[]) { int i; Binit(&obuf, 1, OWRITE); if(argc <= 1) dofile("huf"); for(i=1; ival = Bgetc(ibuf); v = getlong(); a2->nbits = (v >> 27) & ((1<<5)-1); a2->code = v & ((1<<27)-1); if(a2->nbits > mdecode2) mdecode2 = a2->nbits; a2++; } v = 1<nbits); b = a2->code << (mdecode2 - a2->nbits); while(v > 0) { decode2[b] = i; b++; v--; } a2++; } nlist1 = getlong(); tdecode1 = malloc(nlist1*sizeof(*tdecode1)); prof = malloc(nlist1*sizeof(*prof)); tree = malloc(nlist1*sizeof(*tree)); p = prof; b = 0; a1 = tdecode1; for(i=0; icount = v; p->sym = a1; p->flag = LEAF; a1->val = strdup(string); b = v; a1++; p++; } huff(nlist1); free(prof); free(tree); a1 = tdecode1; mdecode1 = 0; for(i=0; inbits > mdecode1) mdecode1 = a1->nbits; a1++; } v = 1<nbits); b = a1->code << (mdecode1 - a1->nbits); while(v > 0) { decode1[b] = i; b++; v--; } a1++; } for(;;) { l = getcode1(); if(*l == 0) { getstring(); l = string; if(*l == 0) break; } while(c = *l++) Bputc(&obuf, c); Bputc(&obuf, '\n'); } Bclose(ibuf); } void getstring(void) { char *s; int c; s = string; for(;;) { c = getcode2(); if(c == '\n') break; *s++ = c; } *s = 0; } void huff(long nprof) { long c1, c2, c3, c4, t1, t2, t3; Tree *tp; Prof *l1b, *l1e, *l2b, *l2e, *pf; pf = prof; tp = tree; /* to make new trees */ l1b = prof; /* sorted list of trees */ l1e = prof; l2b = pf; /* sorted list of leafs */ l2e = prof+nprof; for(;;) { /* * c1,c2 are counts in smallest trees */ c1 = INF; c2 = INF; if(l1b < l1e) { c1 = l1b->count; if(l1b+1 < l1e) c2 = (l1b+1)->count; } /* * c3,c4 are counts in smallest leafs */ c3 = INF; c4 = INF; if(l2b < l2e) { c3 = l2b->count; if(l2b+1 < l2e) c4 = (l2b+1)->count; } /* * termination condition, no leafs, one tree */ if(c2 == INF && c3 == INF) break; /* * find smallest of 3 ways to combine */ t1 = c1+c2; /* tree+tree */ t2 = c1+c3; /* tree+leaf */ t3 = c3+c4; /* leaf+leaf */ if(t1 <= t2 && t1 <= t3) { tp->left = l1b[0]; tp->right = l1b[1]; l1b += 2; } else if(t2 <= t1 && t2 <= t3) { tp->left = l1b[0]; tp->right = l2b[0]; l1b++; l2b++; } else if(t3 <= t1 && t3 <= t2) { tp->left = l2b[0]; tp->right = l2b[1]; l2b += 2; } else error("smallest"); l1e->count = tp->left.count + tp->right.count; l1e->flag = TREE; l1e->tree = tp; tp++; l1e++; if(l1e > l2b) error("overrun"); } prtree(l1b, 0, 0); } void prtree(Prof *p, int d, long v) { if(p->flag == TREE) { v <<= 1; d++; prtree(&p->tree->left, d, v|0); prtree(&p->tree->right, d, v|1); } if(d > 32-5) error("deep"); p->sym->code = v; p->sym->nbits = d; } long getlong(void) { long l; l = Bgetc(ibuf)<<24; l |= Bgetc(ibuf)<<16; l |= Bgetc(ibuf)<<8; l |= Bgetc(ibuf); return l; } int nb; ulong ul; int eofc; char* getcode1(void) { int c; long v; Code1 *a; while(nb < 24) { c = Bgetc(ibuf); if(c < 0) { c = 0; eofc++; if(eofc > 4) error("eof"); } ul = (ul<<8) | c; nb += 8; } v = (ul >> (nb - mdecode1)) & mask1; a = &tdecode1[decode1[v]]; nb -= a->nbits; return a->val; } long getcode2(void) { int c; long v; Code2 *a; while(nb < 24) { c = Bgetc(ibuf); if(c < 0) { c = 0; eofc++; if(eofc > 4) error("eof"); } ul = (ul<<8) | c; nb += 8; } v = (ul >> (nb - mdecode2)) & mask2; a = &tdecode2[decode2[v]]; nb -= a->nbits; return a->val; } void error(char *s) { fprint(2, "exp: %s\n", s); exits(s); }