compress.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:22k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: compress.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:43:45  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*-------------------------------------------------------------*/
  10. /*--- Compression machinery (not incl block sorting)        ---*/
  11. /*---                                            compress.c ---*/
  12. /*-------------------------------------------------------------*/
  13. /*--
  14.   This file is a part of bzip2 and/or libbzip2, a program and
  15.   library for lossless, block-sorting data compression.
  16.   Copyright (C) 1996-2002 Julian R Seward.  All rights reserved.
  17.   Redistribution and use in source and binary forms, with or without
  18.   modification, are permitted provided that the following conditions
  19.   are met:
  20.   1. Redistributions of source code must retain the above copyright
  21.      notice, this list of conditions and the following disclaimer.
  22.   2. The origin of this software must not be misrepresented; you must 
  23.      not claim that you wrote the original software.  If you use this 
  24.      software in a product, an acknowledgment in the product 
  25.      documentation would be appreciated but is not required.
  26.   3. Altered source versions must be plainly marked as such, and must
  27.      not be misrepresented as being the original software.
  28.   4. The name of the author may not be used to endorse or promote 
  29.      products derived from this software without specific prior written 
  30.      permission.
  31.   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  32.   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  33.   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  34.   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  35.   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  36.   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  37.   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  38.   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  39.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  40.   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  41.   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42.   Julian Seward, Cambridge, UK.
  43.   jseward@acm.org
  44.   bzip2/libbzip2 version 1.0 of 21 March 2000
  45.   This program is based on (at least) the work of:
  46.      Mike Burrows
  47.      David Wheeler
  48.      Peter Fenwick
  49.      Alistair Moffat
  50.      Radford Neal
  51.      Ian H. Witten
  52.      Robert Sedgewick
  53.      Jon L. Bentley
  54.   For more information on these sources, see the manual.
  55. --*/
  56. /*--
  57.    CHANGES
  58.    ~~~~~~~
  59.    0.9.0 -- original version.
  60.    0.9.0a/b -- no changes in this file.
  61.    0.9.0c
  62.       * changed setting of nGroups in sendMTFValues() so as to 
  63.         do a bit better on small files
  64. --*/
  65. #include "bzlib_private.h"
  66. /*---------------------------------------------------*/
  67. /*--- Bit stream I/O                              ---*/
  68. /*---------------------------------------------------*/
  69. /*---------------------------------------------------*/
  70. void BZ2_bsInitWrite ( EState* s )
  71. {
  72.    s->bsLive = 0;
  73.    s->bsBuff = 0;
  74. }
  75. /*---------------------------------------------------*/
  76. static
  77. void bsFinishWrite ( EState* s )
  78. {
  79.    while (s->bsLive > 0) {
  80.       s->zbits[s->numZ] = (UChar)(s->bsBuff >> 24);
  81.       s->numZ++;
  82.       s->bsBuff <<= 8;
  83.       s->bsLive -= 8;
  84.    }
  85. }
  86. /*---------------------------------------------------*/
  87. #define bsNEEDW(nz)                           
  88. {                                             
  89.    while (s->bsLive >= 8) {                   
  90.       s->zbits[s->numZ]                       
  91.          = (UChar)(s->bsBuff >> 24);          
  92.       s->numZ++;                              
  93.       s->bsBuff <<= 8;                        
  94.       s->bsLive -= 8;                         
  95.    }                                          
  96. }
  97. /*---------------------------------------------------*/
  98. static
  99. __inline__
  100. void bsW ( EState* s, Int32 n, UInt32 v )
  101. {
  102.    bsNEEDW ( n );
  103.    s->bsBuff |= (v << (32 - s->bsLive - n));
  104.    s->bsLive += n;
  105. }
  106. /*---------------------------------------------------*/
  107. static
  108. void bsPutUInt32 ( EState* s, UInt32 u )
  109. {
  110.    bsW ( s, 8, (u >> 24) & 0xffL );
  111.    bsW ( s, 8, (u >> 16) & 0xffL );
  112.    bsW ( s, 8, (u >>  8) & 0xffL );
  113.    bsW ( s, 8,  u        & 0xffL );
  114. }
  115. /*---------------------------------------------------*/
  116. static
  117. void bsPutUChar ( EState* s, UChar c )
  118. {
  119.    bsW( s, 8, (UInt32)c );
  120. }
  121. /*---------------------------------------------------*/
  122. /*--- The back end proper                         ---*/
  123. /*---------------------------------------------------*/
  124. /*---------------------------------------------------*/
  125. static
  126. void makeMaps_e ( EState* s )
  127. {
  128.    Int32 i;
  129.    s->nInUse = 0;
  130.    for (i = 0; i < 256; i++)
  131.       if (s->inUse[i]) {
  132.          s->unseqToSeq[i] = s->nInUse;
  133.          s->nInUse++;
  134.       }
  135. }
  136. /*---------------------------------------------------*/
  137. static
  138. void generateMTFValues ( EState* s )
  139. {
  140.    UChar   yy[256];
  141.    Int32   i, j;
  142.    Int32   zPend;
  143.    Int32   wr;
  144.    Int32   EOB;
  145.    /* 
  146.       After sorting (eg, here),
  147.          s->arr1 [ 0 .. s->nblock-1 ] holds sorted order,
  148.          and
  149.          ((UChar*)s->arr2) [ 0 .. s->nblock-1 ] 
  150.          holds the original block data.
  151.       The first thing to do is generate the MTF values,
  152.       and put them in
  153.          ((UInt16*)s->arr1) [ 0 .. s->nblock-1 ].
  154.       Because there are strictly fewer or equal MTF values
  155.       than block values, ptr values in this area are overwritten
  156.       with MTF values only when they are no longer needed.
  157.       The final compressed bitstream is generated into the
  158.       area starting at
  159.          (UChar*) (&((UChar*)s->arr2)[s->nblock])
  160.       These storage aliases are set up in bzCompressInit(),
  161.       except for the last one, which is arranged in 
  162.       compressBlock().
  163.    */
  164.    UInt32* ptr   = s->ptr;
  165.    UChar* block  = s->block;
  166.    UInt16* mtfv  = s->mtfv;
  167.    makeMaps_e ( s );
  168.    EOB = s->nInUse+1;
  169.    for (i = 0; i <= EOB; i++) s->mtfFreq[i] = 0;
  170.    wr = 0;
  171.    zPend = 0;
  172.    for (i = 0; i < s->nInUse; i++) yy[i] = (UChar) i;
  173.    for (i = 0; i < s->nblock; i++) {
  174.       UChar ll_i;
  175.       AssertD ( wr <= i, "generateMTFValues(1)" );
  176.       j = ptr[i]-1; if (j < 0) j += s->nblock;
  177.       ll_i = s->unseqToSeq[block[j]];
  178.       AssertD ( ll_i < s->nInUse, "generateMTFValues(2a)" );
  179.       if (yy[0] == ll_i) { 
  180.          zPend++;
  181.       } else {
  182.          if (zPend > 0) {
  183.             zPend--;
  184.             while (True) {
  185.                if (zPend & 1) {
  186.                   mtfv[wr] = BZ_RUNB; wr++; 
  187.                   s->mtfFreq[BZ_RUNB]++; 
  188.                } else {
  189.                   mtfv[wr] = BZ_RUNA; wr++; 
  190.                   s->mtfFreq[BZ_RUNA]++; 
  191.                }
  192.                if (zPend < 2) break;
  193.                zPend = (zPend - 2) / 2;
  194.             };
  195.             zPend = 0;
  196.          }
  197.          {
  198.             register UChar  rtmp;
  199.             register UChar* ryy_j;
  200.             register UChar  rll_i;
  201.             rtmp  = yy[1];
  202.             yy[1] = yy[0];
  203.             ryy_j = &(yy[1]);
  204.             rll_i = ll_i;
  205.             while ( rll_i != rtmp ) {
  206.                register UChar rtmp2;
  207.                ryy_j++;
  208.                rtmp2  = rtmp;
  209.                rtmp   = *ryy_j;
  210.                *ryy_j = rtmp2;
  211.             };
  212.             yy[0] = rtmp;
  213.             j = ryy_j - &(yy[0]);
  214.             mtfv[wr] = j+1; wr++; s->mtfFreq[j+1]++;
  215.          }
  216.       }
  217.    }
  218.    if (zPend > 0) {
  219.       zPend--;
  220.       while (True) {
  221.          if (zPend & 1) {
  222.             mtfv[wr] = BZ_RUNB; wr++; 
  223.             s->mtfFreq[BZ_RUNB]++; 
  224.          } else {
  225.             mtfv[wr] = BZ_RUNA; wr++; 
  226.             s->mtfFreq[BZ_RUNA]++; 
  227.          }
  228.          if (zPend < 2) break;
  229.          zPend = (zPend - 2) / 2;
  230.       };
  231.       zPend = 0;
  232.    }
  233.    mtfv[wr] = EOB; wr++; s->mtfFreq[EOB]++;
  234.    s->nMTF = wr;
  235. }
  236. /*---------------------------------------------------*/
  237. #define BZ_LESSER_ICOST  0
  238. #define BZ_GREATER_ICOST 15
  239. static
  240. void sendMTFValues ( EState* s )
  241. {
  242.    Int32 v, t, i, j, gs, ge, totc, bt, bc, iter;
  243.    Int32 nSelectors, alphaSize, minLen, maxLen, selCtr;
  244.    Int32 nGroups, nBytes;
  245.    /*--
  246.    UChar  len [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  247.    is a global since the decoder also needs it.
  248.    Int32  code[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  249.    Int32  rfreq[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  250.    are also globals only used in this proc.
  251.    Made global to keep stack frame size small.
  252.    --*/
  253.    UInt16 cost[BZ_N_GROUPS];
  254.    Int32  fave[BZ_N_GROUPS];
  255.    UInt16* mtfv = s->mtfv;
  256.    if (s->verbosity >= 3)
  257.       VPrintf3( "      %d in block, %d after MTF & 1-2 coding, "
  258.                 "%d+2 syms in usen", 
  259.                 s->nblock, s->nMTF, s->nInUse );
  260.    alphaSize = s->nInUse+2;
  261.    for (t = 0; t < BZ_N_GROUPS; t++)
  262.       for (v = 0; v < alphaSize; v++)
  263.          s->len[t][v] = BZ_GREATER_ICOST;
  264.    /*--- Decide how many coding tables to use ---*/
  265.    AssertH ( s->nMTF > 0, 3001 );
  266.    if (s->nMTF < 200)  nGroups = 2; else
  267.    if (s->nMTF < 600)  nGroups = 3; else
  268.    if (s->nMTF < 1200) nGroups = 4; else
  269.    if (s->nMTF < 2400) nGroups = 5; else
  270.                        nGroups = 6;
  271.    /*--- Generate an initial set of coding tables ---*/
  272.    { 
  273.       Int32 nPart, remF, tFreq, aFreq;
  274.       nPart = nGroups;
  275.       remF  = s->nMTF;
  276.       gs = 0;
  277.       while (nPart > 0) {
  278.          tFreq = remF / nPart;
  279.          ge = gs-1;
  280.          aFreq = 0;
  281.          while (aFreq < tFreq && ge < alphaSize-1) {
  282.             ge++;
  283.             aFreq += s->mtfFreq[ge];
  284.          }
  285.          if (ge > gs 
  286.              && nPart != nGroups && nPart != 1 
  287.              && ((nGroups-nPart) % 2 == 1)) {
  288.             aFreq -= s->mtfFreq[ge];
  289.             ge--;
  290.          }
  291.          if (s->verbosity >= 3)
  292.             VPrintf5( "      initial group %d, [%d .. %d], "
  293.                       "has %d syms (%4.1f%%)n",
  294.                       nPart, gs, ge, aFreq, 
  295.                       (100.0 * (float)aFreq) / (float)(s->nMTF) );
  296.  
  297.          for (v = 0; v < alphaSize; v++)
  298.             if (v >= gs && v <= ge) 
  299.                s->len[nPart-1][v] = BZ_LESSER_ICOST; else
  300.                s->len[nPart-1][v] = BZ_GREATER_ICOST;
  301.  
  302.          nPart--;
  303.          gs = ge+1;
  304.          remF -= aFreq;
  305.       }
  306.    }
  307.    /*--- 
  308.       Iterate up to BZ_N_ITERS times to improve the tables.
  309.    ---*/
  310.    for (iter = 0; iter < BZ_N_ITERS; iter++) {
  311.       for (t = 0; t < nGroups; t++) fave[t] = 0;
  312.       for (t = 0; t < nGroups; t++)
  313.          for (v = 0; v < alphaSize; v++)
  314.             s->rfreq[t][v] = 0;
  315.       /*---
  316.         Set up an auxiliary length table which is used to fast-track
  317. the common case (nGroups == 6). 
  318.       ---*/
  319.       if (nGroups == 6) {
  320.          for (v = 0; v < alphaSize; v++) {
  321.             s->len_pack[v][0] = (s->len[1][v] << 16) | s->len[0][v];
  322.             s->len_pack[v][1] = (s->len[3][v] << 16) | s->len[2][v];
  323.             s->len_pack[v][2] = (s->len[5][v] << 16) | s->len[4][v];
  324.  }
  325.       }
  326.       nSelectors = 0;
  327.       totc = 0;
  328.       gs = 0;
  329.       while (True) {
  330.          /*--- Set group start & end marks. --*/
  331.          if (gs >= s->nMTF) break;
  332.          ge = gs + BZ_G_SIZE - 1; 
  333.          if (ge >= s->nMTF) ge = s->nMTF-1;
  334.          /*-- 
  335.             Calculate the cost of this group as coded
  336.             by each of the coding tables.
  337.          --*/
  338.          for (t = 0; t < nGroups; t++) cost[t] = 0;
  339.          if (nGroups == 6 && 50 == ge-gs+1) {
  340.             /*--- fast track the common case ---*/
  341.             register UInt32 cost01, cost23, cost45;
  342.             register UInt16 icv;
  343.             cost01 = cost23 = cost45 = 0;
  344. #           define BZ_ITER(nn)                
  345.                icv = mtfv[gs+(nn)];           
  346.                cost01 += s->len_pack[icv][0]; 
  347.                cost23 += s->len_pack[icv][1]; 
  348.                cost45 += s->len_pack[icv][2]; 
  349.             BZ_ITER(0);  BZ_ITER(1);  BZ_ITER(2);  BZ_ITER(3);  BZ_ITER(4);
  350.             BZ_ITER(5);  BZ_ITER(6);  BZ_ITER(7);  BZ_ITER(8);  BZ_ITER(9);
  351.             BZ_ITER(10); BZ_ITER(11); BZ_ITER(12); BZ_ITER(13); BZ_ITER(14);
  352.             BZ_ITER(15); BZ_ITER(16); BZ_ITER(17); BZ_ITER(18); BZ_ITER(19);
  353.             BZ_ITER(20); BZ_ITER(21); BZ_ITER(22); BZ_ITER(23); BZ_ITER(24);
  354.             BZ_ITER(25); BZ_ITER(26); BZ_ITER(27); BZ_ITER(28); BZ_ITER(29);
  355.             BZ_ITER(30); BZ_ITER(31); BZ_ITER(32); BZ_ITER(33); BZ_ITER(34);
  356.             BZ_ITER(35); BZ_ITER(36); BZ_ITER(37); BZ_ITER(38); BZ_ITER(39);
  357.             BZ_ITER(40); BZ_ITER(41); BZ_ITER(42); BZ_ITER(43); BZ_ITER(44);
  358.             BZ_ITER(45); BZ_ITER(46); BZ_ITER(47); BZ_ITER(48); BZ_ITER(49);
  359. #           undef BZ_ITER
  360.             cost[0] = cost01 & 0xffff; cost[1] = cost01 >> 16;
  361.             cost[2] = cost23 & 0xffff; cost[3] = cost23 >> 16;
  362.             cost[4] = cost45 & 0xffff; cost[5] = cost45 >> 16;
  363.          } else {
  364.     /*--- slow version which correctly handles all situations ---*/
  365.             for (i = gs; i <= ge; i++) { 
  366.                UInt16 icv = mtfv[i];
  367.                for (t = 0; t < nGroups; t++) cost[t] += s->len[t][icv];
  368.             }
  369.          }
  370.  
  371.          /*-- 
  372.             Find the coding table which is best for this group,
  373.             and record its identity in the selector table.
  374.          --*/
  375.          bc = 999999999; bt = -1;
  376.          for (t = 0; t < nGroups; t++)
  377.             if (cost[t] < bc) { bc = cost[t]; bt = t; };
  378.          totc += bc;
  379.          fave[bt]++;
  380.          s->selector[nSelectors] = bt;
  381.          nSelectors++;
  382.          /*-- 
  383.             Increment the symbol frequencies for the selected table.
  384.           --*/
  385.          if (nGroups == 6 && 50 == ge-gs+1) {
  386.             /*--- fast track the common case ---*/
  387. #           define BZ_ITUR(nn) s->rfreq[bt][ mtfv[gs+(nn)] ]++
  388.             BZ_ITUR(0);  BZ_ITUR(1);  BZ_ITUR(2);  BZ_ITUR(3);  BZ_ITUR(4);
  389.             BZ_ITUR(5);  BZ_ITUR(6);  BZ_ITUR(7);  BZ_ITUR(8);  BZ_ITUR(9);
  390.             BZ_ITUR(10); BZ_ITUR(11); BZ_ITUR(12); BZ_ITUR(13); BZ_ITUR(14);
  391.             BZ_ITUR(15); BZ_ITUR(16); BZ_ITUR(17); BZ_ITUR(18); BZ_ITUR(19);
  392.             BZ_ITUR(20); BZ_ITUR(21); BZ_ITUR(22); BZ_ITUR(23); BZ_ITUR(24);
  393.             BZ_ITUR(25); BZ_ITUR(26); BZ_ITUR(27); BZ_ITUR(28); BZ_ITUR(29);
  394.             BZ_ITUR(30); BZ_ITUR(31); BZ_ITUR(32); BZ_ITUR(33); BZ_ITUR(34);
  395.             BZ_ITUR(35); BZ_ITUR(36); BZ_ITUR(37); BZ_ITUR(38); BZ_ITUR(39);
  396.             BZ_ITUR(40); BZ_ITUR(41); BZ_ITUR(42); BZ_ITUR(43); BZ_ITUR(44);
  397.             BZ_ITUR(45); BZ_ITUR(46); BZ_ITUR(47); BZ_ITUR(48); BZ_ITUR(49);
  398. #           undef BZ_ITUR
  399.          } else {
  400.     /*--- slow version which correctly handles all situations ---*/
  401.             for (i = gs; i <= ge; i++)
  402.                s->rfreq[bt][ mtfv[i] ]++;
  403.          }
  404.          gs = ge+1;
  405.       }
  406.       if (s->verbosity >= 3) {
  407.          VPrintf2 ( "      pass %d: size is %d, grp uses are ", 
  408.                    iter+1, totc/8 );
  409.          for (t = 0; t < nGroups; t++)
  410.             VPrintf1 ( "%d ", fave[t] );
  411.          VPrintf0 ( "n" );
  412.       }
  413.       /*--
  414.         Recompute the tables based on the accumulated frequencies.
  415.       --*/
  416.       for (t = 0; t < nGroups; t++)
  417.          BZ2_hbMakeCodeLengths ( &(s->len[t][0]), &(s->rfreq[t][0]), 
  418.                                  alphaSize, 20 );
  419.    }
  420.    AssertH( nGroups < 8, 3002 );
  421.    AssertH( nSelectors < 32768 &&
  422.             nSelectors <= (2 + (900000 / BZ_G_SIZE)),
  423.             3003 );
  424.    /*--- Compute MTF values for the selectors. ---*/
  425.    {
  426.       UChar pos[BZ_N_GROUPS], ll_i, tmp2, tmp;
  427.       for (i = 0; i < nGroups; i++) pos[i] = i;
  428.       for (i = 0; i < nSelectors; i++) {
  429.          ll_i = s->selector[i];
  430.          j = 0;
  431.          tmp = pos[j];
  432.          while ( ll_i != tmp ) {
  433.             j++;
  434.             tmp2 = tmp;
  435.             tmp = pos[j];
  436.             pos[j] = tmp2;
  437.          };
  438.          pos[0] = tmp;
  439.          s->selectorMtf[i] = j;
  440.       }
  441.    };
  442.    /*--- Assign actual codes for the tables. --*/
  443.    for (t = 0; t < nGroups; t++) {
  444.       minLen = 32;
  445.       maxLen = 0;
  446.       for (i = 0; i < alphaSize; i++) {
  447.          if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
  448.          if (s->len[t][i] < minLen) minLen = s->len[t][i];
  449.       }
  450.       AssertH ( !(maxLen > 20), 3004 );
  451.       AssertH ( !(minLen < 1),  3005 );
  452.       BZ2_hbAssignCodes ( &(s->code[t][0]), &(s->len[t][0]), 
  453.                           minLen, maxLen, alphaSize );
  454.    }
  455.    /*--- Transmit the mapping table. ---*/
  456.    { 
  457.       Bool inUse16[16];
  458.       for (i = 0; i < 16; i++) {
  459.           inUse16[i] = False;
  460.           for (j = 0; j < 16; j++)
  461.              if (s->inUse[i * 16 + j]) inUse16[i] = True;
  462.       }
  463.      
  464.       nBytes = s->numZ;
  465.       for (i = 0; i < 16; i++)
  466.          if (inUse16[i]) bsW(s,1,1); else bsW(s,1,0);
  467.       for (i = 0; i < 16; i++)
  468.          if (inUse16[i])
  469.             for (j = 0; j < 16; j++) {
  470.                if (s->inUse[i * 16 + j]) bsW(s,1,1); else bsW(s,1,0);
  471.             }
  472.       if (s->verbosity >= 3) 
  473.          VPrintf1( "      bytes: mapping %d, ", s->numZ-nBytes );
  474.    }
  475.    /*--- Now the selectors. ---*/
  476.    nBytes = s->numZ;
  477.    bsW ( s, 3, nGroups );
  478.    bsW ( s, 15, nSelectors );
  479.    for (i = 0; i < nSelectors; i++) { 
  480.       for (j = 0; j < s->selectorMtf[i]; j++) bsW(s,1,1);
  481.       bsW(s,1,0);
  482.    }
  483.    if (s->verbosity >= 3)
  484.       VPrintf1( "selectors %d, ", s->numZ-nBytes );
  485.    /*--- Now the coding tables. ---*/
  486.    nBytes = s->numZ;
  487.    for (t = 0; t < nGroups; t++) {
  488.       Int32 curr = s->len[t][0];
  489.       bsW ( s, 5, curr );
  490.       for (i = 0; i < alphaSize; i++) {
  491.          while (curr < s->len[t][i]) { bsW(s,2,2); curr++; /* 10 */ };
  492.          while (curr > s->len[t][i]) { bsW(s,2,3); curr--; /* 11 */ };
  493.          bsW ( s, 1, 0 );
  494.       }
  495.    }
  496.    if (s->verbosity >= 3)
  497.       VPrintf1 ( "code lengths %d, ", s->numZ-nBytes );
  498.    /*--- And finally, the block data proper ---*/
  499.    nBytes = s->numZ;
  500.    selCtr = 0;
  501.    gs = 0;
  502.    while (True) {
  503.       if (gs >= s->nMTF) break;
  504.       ge = gs + BZ_G_SIZE - 1; 
  505.       if (ge >= s->nMTF) ge = s->nMTF-1;
  506.       AssertH ( s->selector[selCtr] < nGroups, 3006 );
  507.       if (nGroups == 6 && 50 == ge-gs+1) {
  508.             /*--- fast track the common case ---*/
  509.             UInt16 mtfv_i;
  510.             UChar* s_len_sel_selCtr 
  511.                = &(s->len[s->selector[selCtr]][0]);
  512.             Int32* s_code_sel_selCtr
  513.                = &(s->code[s->selector[selCtr]][0]);
  514. #           define BZ_ITAH(nn)                      
  515.                mtfv_i = mtfv[gs+(nn)];              
  516.                bsW ( s,                             
  517.                      s_len_sel_selCtr[mtfv_i],      
  518.                      s_code_sel_selCtr[mtfv_i] )
  519.             BZ_ITAH(0);  BZ_ITAH(1);  BZ_ITAH(2);  BZ_ITAH(3);  BZ_ITAH(4);
  520.             BZ_ITAH(5);  BZ_ITAH(6);  BZ_ITAH(7);  BZ_ITAH(8);  BZ_ITAH(9);
  521.             BZ_ITAH(10); BZ_ITAH(11); BZ_ITAH(12); BZ_ITAH(13); BZ_ITAH(14);
  522.             BZ_ITAH(15); BZ_ITAH(16); BZ_ITAH(17); BZ_ITAH(18); BZ_ITAH(19);
  523.             BZ_ITAH(20); BZ_ITAH(21); BZ_ITAH(22); BZ_ITAH(23); BZ_ITAH(24);
  524.             BZ_ITAH(25); BZ_ITAH(26); BZ_ITAH(27); BZ_ITAH(28); BZ_ITAH(29);
  525.             BZ_ITAH(30); BZ_ITAH(31); BZ_ITAH(32); BZ_ITAH(33); BZ_ITAH(34);
  526.             BZ_ITAH(35); BZ_ITAH(36); BZ_ITAH(37); BZ_ITAH(38); BZ_ITAH(39);
  527.             BZ_ITAH(40); BZ_ITAH(41); BZ_ITAH(42); BZ_ITAH(43); BZ_ITAH(44);
  528.             BZ_ITAH(45); BZ_ITAH(46); BZ_ITAH(47); BZ_ITAH(48); BZ_ITAH(49);
  529. #           undef BZ_ITAH
  530.       } else {
  531.  /*--- slow version which correctly handles all situations ---*/
  532.          for (i = gs; i <= ge; i++) {
  533.             bsW ( s, 
  534.                   s->len  [s->selector[selCtr]] [mtfv[i]],
  535.                   s->code [s->selector[selCtr]] [mtfv[i]] );
  536.          }
  537.       }
  538.       gs = ge+1;
  539.       selCtr++;
  540.    }
  541.    AssertH( selCtr == nSelectors, 3007 );
  542.    if (s->verbosity >= 3)
  543.       VPrintf1( "codes %dn", s->numZ-nBytes );
  544. }
  545. /*---------------------------------------------------*/
  546. void BZ2_compressBlock ( EState* s, Bool is_last_block )
  547. {
  548.    if (s->nblock > 0) {
  549.       BZ_FINALISE_CRC ( s->blockCRC );
  550.       s->combinedCRC = (s->combinedCRC << 1) | (s->combinedCRC >> 31);
  551.       s->combinedCRC ^= s->blockCRC;
  552.       if (s->blockNo > 1) s->numZ = 0;
  553.       if (s->verbosity >= 2)
  554.          VPrintf4( "    block %d: crc = 0x%8x, "
  555.                    "combined CRC = 0x%8x, size = %dn",
  556.                    s->blockNo, s->blockCRC, s->combinedCRC, s->nblock );
  557.       BZ2_blockSort ( s );
  558.    }
  559.    s->zbits = (UChar*) (&((UChar*)s->arr2)[s->nblock]);
  560.    /*-- If this is the first block, create the stream header. --*/
  561.    if (s->blockNo == 1) {
  562.       BZ2_bsInitWrite ( s );
  563.       bsPutUChar ( s, BZ_HDR_B );
  564.       bsPutUChar ( s, BZ_HDR_Z );
  565.       bsPutUChar ( s, BZ_HDR_h );
  566.       bsPutUChar ( s, (UChar)(BZ_HDR_0 + s->blockSize100k) );
  567.    }
  568.    if (s->nblock > 0) {
  569.       bsPutUChar ( s, 0x31 ); bsPutUChar ( s, 0x41 );
  570.       bsPutUChar ( s, 0x59 ); bsPutUChar ( s, 0x26 );
  571.       bsPutUChar ( s, 0x53 ); bsPutUChar ( s, 0x59 );
  572.       /*-- Now the block's CRC, so it is in a known place. --*/
  573.       bsPutUInt32 ( s, s->blockCRC );
  574.       /*-- 
  575.          Now a single bit indicating (non-)randomisation. 
  576.          As of version 0.9.5, we use a better sorting algorithm
  577.          which makes randomisation unnecessary.  So always set
  578.          the randomised bit to 'no'.  Of course, the decoder
  579.          still needs to be able to handle randomised blocks
  580.          so as to maintain backwards compatibility with
  581.          older versions of bzip2.
  582.       --*/
  583.       bsW(s,1,0);
  584.       bsW ( s, 24, s->origPtr );
  585.       generateMTFValues ( s );
  586.       sendMTFValues ( s );
  587.    }
  588.    /*-- If this is the last block, add the stream trailer. --*/
  589.    if (is_last_block) {
  590.       bsPutUChar ( s, 0x17 ); bsPutUChar ( s, 0x72 );
  591.       bsPutUChar ( s, 0x45 ); bsPutUChar ( s, 0x38 );
  592.       bsPutUChar ( s, 0x50 ); bsPutUChar ( s, 0x90 );
  593.       bsPutUInt32 ( s, s->combinedCRC );
  594.       if (s->verbosity >= 2)
  595.          VPrintf1( "    final combined CRC = 0x%xn   ", s->combinedCRC );
  596.       bsFinishWrite ( s );
  597.    }
  598. }
  599. /*-------------------------------------------------------------*/
  600. /*--- end                                        compress.c ---*/
  601. /*-------------------------------------------------------------*/