1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
|
//start of PreLh5Decoder.java
//TEXT_STYLE:CODE=Shift_JIS(Japanese):RET_CODE=CRLF
/**
* PreLh5Decoder.java
*
* Copyright (C) 2001-2002 Michel Ishizuka All rights reserved.
*
* ȉ̏ɓӂȂ\[XƃoCi`̍ĔzzƎgp
* ύX̗Lɂ炸B
*
* PD\[XR[h̍ĔzzɂĒ쌠\ ̏̃Xg
* щL̐ێȂĂ͂ȂȂB
*
* QDoCi`̍ĔzzɂĒ쌠\ ̏̃Xg
* щL̐gp ̑̔zz
* ܂ގɋLqȂȂȂB
*
* ̃\tgEFA͐Β˔ڂɂĖۏŒA̖
* IBłƂۏAilLƂۏɂƂǂ܂炸A
* Ȃ閾IшÎIȕۏȂB
* Β˔ڂ ̃\tgEFA̎gpɂ钼ړIAԐړIA
* IAȁAT^IȁA邢͕KRIȑQ(gpɂf[^
* AƖ̒f〈܂Ăv̈⎸Ai
* T[rX̓l邪AĂꂾɌ肳Ȃ
* Q)ɑāAȂ鎖Ԃ̌ƂȂƂĂA_̐
* C△ߎӔC܂ ȂӔC낤ƂAƂꂪs
* ŝׂ߂łƂĂA܂͂̂悤ȑQ̉\
* ĂƂĂ̐ӔCȂ̂ƂB
*/
package jp.gr.java_conf.dangan.util.lha;
//import classes and interfaces
import java.io.InputStream;
import java.lang.Math;
import jp.gr.java_conf.dangan.io.Bits;
import jp.gr.java_conf.dangan.util.lha.CompressMethod;
import jp.gr.java_conf.dangan.util.lha.StaticHuffman;
import jp.gr.java_conf.dangan.util.lha.PreLzssDecoder;
//import exceptions
import java.io.IOException;
import java.io.EOFException;
import java.lang.NullPointerException;
import java.lang.IllegalArgumentException;
import jp.gr.java_conf.dangan.io.BitDataBrokenException;
import jp.gr.java_conf.dangan.io.NotEnoughBitsException;
import jp.gr.java_conf.dangan.util.lha.BadHuffmanTableException;
/**
* -lh4-, -lh5-, -lh6-, -lh7- 𓀗p PreLzssDecoderB<br>
*
* <pre>
* -- revision history --
* $Log: PreLh5Decoder.java,v $
* Revision 1.3 2002/12/08 00:00:00 dangan
* [bug fix]
* readCode Ńnt}ǂݍݓr
* EndOfStream ɒBꍇ EOFException 𓊂ĂȂB
*
* Revision 1.2 2002/12/08 00:00:00 dangan
* [change]
* NX PreLh5DecoderFast PreLh5Decoder ɕύXB
*
* Revision 1.1 2002/12/06 00:00:00 dangan
* [maintenance]
* \[X
*
* Revision 1.0 2002/08/05 00:00:00 dangan
* add to version control
* [maintenance]
* ŐV BitInputStream PreLh5Decoder \[X荞ށB
* \[X
* ^up~
* CZX̏C
*
* </pre>
*
* @author $Author: dangan $
* @version $Revision: 1.3 $
*/
public class PreLh5Decoder implements PreLzssDecoder{
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// source
//------------------------------------------------------------------
// private InputStream in
//------------------------------------------------------------------
/**
* ڑꂽ̓Xg[
*/
private InputStream in;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// staff of BitInputStream
//------------------------------------------------------------------
// cache
//------------------------------------------------------------------
// private byte[] cache
// private int cacheLimit
// private int cachePosition
//------------------------------------------------------------------
/**
* xቺ}~poCgz
*/
private byte[] cache;
/**
* cache ̗LoCg
*/
private int cacheLimit;
/**
* cache ̌ݏʒu
*/
private int cachePosition;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// staff of BitInputStream
//------------------------------------------------------------------
// bit buffer
//------------------------------------------------------------------
// private int bitBuffer
// private int bitCount
//------------------------------------------------------------------
/**
* rbgobt@
*/
private int bitBuffer;
/**
* bitBuffer Lrbg
*/
private int bitCount;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// huffman decoder
//------------------------------------------------------------------
// private int blockSize
// private int[] codeLen
// private short[] codeTable
// private int codeTableBits
// private short[][] codeTree
// private short[] offLenTable
// private int offLenTableBits
// private short[][] offLenTree
//------------------------------------------------------------------
/**
* ݏ̃ubN̎cTCYB
*/
private int blockSize;
/**
* code ̃nt}̕\
*/
private int[] codeLen;
/**
* code p̃e[u
* ̏ꍇ codeTree indexB
* ̏ꍇ code Srbg]́B
*/
private short[] codeTable;
/**
* codeTable ߂ɕKvbitB
*/
private int codeTableBits;
/**
* codeTable Ɏ܂肫Ȃf[^̕p̖
* ̏ꍇ codeTree indexB
* ̏ꍇ code Srbg]́B
*/
private short[][] codeTree;
/**
* offLen ̃nt}̕\
*/
private int[] offLenLen;
/**
* offLen p̃e[u
* ̏ꍇ offLenTree indexB
* ̏ꍇ offLen Srbg]́B
*/
private short[] offLenTable;
/**
* offLenTable ߂ɕKvbitB
*/
private int offLenTableBits;
/**
* offLenTable Ɏ܂肫Ȃf[^̕p̖
* ̏ꍇ offLenTree indexB
* ̏ꍇ offLen Srbg]́B
*/
private short[][] offLenTree;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// LZSS parameter
//------------------------------------------------------------------
// private int DictionarySize
// private int MaxMatch
// private int Threshold
//------------------------------------------------------------------
/**
* LZSS TCY
*/
private int DictionarySize;
/**
* LZSS Œv
*/
private int MaxMatch;
/**
* LZSS k/k臒l
*/
private int Threshold;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// backup for mark/reset
//------------------------------------------------------------------
// private boolean markPositionIsInCache
// private byte[] markCache
// private int markCacheLimit
// private int markCachePosition
// private int markBitBuffer
// private int markBitCount
// private int markBlockSize
// private int[] markCodeLen
// private short[] markCodeTable
// private short[][] markCodeTree
// private int[] markOffLenLen
// private short[] markOffLenTable
// private short[][] markOffLenTree
//------------------------------------------------------------------
/**
* markʒuLbV͈͓̔ɂ邩B
* markꂽƂ true ɐݒ肳A
* in LbVւ̓ǂݍ݂
* sꂽƂ false ɐݒ肳B
*/
private boolean markPositionIsInCache;
/** cache obNAbvp */
private byte[] markCache;
/** cacheAvailable ̃obNAbvp */
private int markCacheLimit;
/** cachePosition ̃obNAbvp */
private int markCachePosition;
/** bitBuffer ̃obNAbvp */
private int markBitBuffer;
/** bitCount ̃obNAbvp */
private int markBitCount;
/** blockSizẽobNAbvp */
private int markBlockSize;
/** codeLen ̃obNAbvp */
private int[] markCodeLen;
/** codeTable ̃obNAbvp */
private short[] markCodeTable;
/** codeTree ̃obNAbvp */
private short[][] markCodeTree;
/** offLenLen ̃obNAbvp */
private int[] markOffLenLen;
/** offLenTable ̃obNAbvp */
private short[] markOffLenTable;
/** offLenTree ̃obNAbvp */
private short[][] markOffLenTree;
//------------------------------------------------------------------
// constructor
//------------------------------------------------------------------
// private PreLh5Decoder()
// public PreLh5Decoder( InputStream in )
// public PreLh5Decoder( InputStream in, String CompressMethod )
// public PreLh5Decoder( InputStream in, String CompressMethod,
// int CodeTableBits, int OffLenTableBits )
//------------------------------------------------------------------
/**
* ftHgRXgN^B
* gpsB
*/
private PreLh5Decoder(){ }
/**
* -lh5- 𓀗p PreLzssDecoder \zB<br>
* e[uTCY̓ftHglgpB
*
* @param in -lh5-`̈kf[^̓Xg[
*/
public PreLh5Decoder( InputStream in ){
this( in, CompressMethod.LH5, 12, 8 );
}
/**
* -lh4-,-lh5-,-lh6-,-lh7- 𓀗p PreLzssDecoder \zB<br>
* e[uTCYɂ ftHglgpB
*
* @param in kf[^̓Xg[
* @param method k@ʎq<br>
*    CompressMethod.LH4 <br>
*    CompressMethod.LH5 <br>
*    CompressMethod.LH6 <br>
*    CompressMethod.LH7 <br>
*    ̉ꂩw肷B
*
* @exception IllegalArgumentException
* method LȊȌꍇ
*/
public PreLh5Decoder( InputStream in,
String method ){
this( in, method, 12, 8 );
}
/**
* -lh4-,-lh5-,-lh6-,-lh7- 𓀗p PreLzssDecoder \zB
*
* @param in kf[^̓Xg[
* @param method k@ʎq<br>
*    CompressMethod.LH4 <br>
*    CompressMethod.LH5 <br>
*    CompressMethod.LH6 <br>
*    CompressMethod.LH7 <br>
*    ̉ꂩw肷B
* @param CodeTableBits code 邽߂Ɏgp
* e[ũTCYrbgŎw肷B
* 12 w肷 4096 ̃bNAbve[uB
* @param OffLenTableBits offLen 邽߂Ɏgp
* e[ũTCYrbgŎw肷B
* 8 w肷 256 ̃bNAbve[uB
*
* @exception IllegalArgumentException <br>
*    (1) method LȊȌꍇ<br>
*    (2) CodeTableBits
* OffLenTableBits 0ȉ̏ꍇ<br>
*    ̉ꂩ
*/
public PreLh5Decoder( InputStream in,
String method,
int CodeTableBits,
int OffLenTableBits ){
if( CompressMethod.LH4.equals( method )
|| CompressMethod.LH5.equals( method )
|| CompressMethod.LH6.equals( method )
|| CompressMethod.LH7.equals( method ) ){
this.DictionarySize = CompressMethod.toDictionarySize( method );
this.MaxMatch = CompressMethod.toMaxMatch( method );
this.Threshold = CompressMethod.toThreshold( method );
if( in != null
&& 0 < CodeTableBits
&& 0 < OffLenTableBits ){
this.in = in;
this.cache = new byte[ 1024 ];
this.cacheLimit = 0;
this.cachePosition = 0;
this.bitBuffer = 0;
this.bitCount = 0;
this.blockSize = 0;
this.codeTableBits = CodeTableBits;
this.offLenTableBits = OffLenTableBits;
this.markPositionIsInCache = false;
this.markCache = null;
this.markCacheLimit = 0;
this.markCachePosition = 0;
this.markBitBuffer = 0;
this.markBitCount = 0;
}else if( in == null ){
throw new NullPointerException( "in" );
}else if( CodeTableBits <= 0 ){
throw new IllegalArgumentException( "CodeTableBits too small. CodeTableBits must be larger than 1." );
}else{
throw new IllegalArgumentException( "OffHiTableBits too small. OffHiTableBits must be larger than 1." );
}
}else if( null == method ){
throw new NullPointerException( "method" );
}else{
throw new IllegalArgumentException( "Unknown compress method " + method );
}
}
//------------------------------------------------------------------
// method of jp.gr.java_conf.dangan.util.lha.PreLzssDecoder
//------------------------------------------------------------------
// read
//------------------------------------------------------------------
// public int readCode()
// public int readOffset()
//------------------------------------------------------------------
/**
* -lh5- n̈k@ňkꂽ
* 1byte LZSSk̃f[^A
* ͈kR[ĥvǂݍށB<br>
*
* @return 1byte k̃f[^A
* ͈kꂽkR[ĥv
*
* @exception IOException o̓G[ꍇ
* @exception EOFException EndOfStreamɒBꍇ
* @exception BadHuffmanTableException
* nt}\邽߂
* nt}̕\słꍇ
*/
public int readCode() throws IOException {
if( this.blockSize <= 0 ){
this.readBlockHead();
}
this.blockSize--;
if( this.bitCount < 16 ){
if( 2 <= this.cacheLimit - this.cachePosition ){
this.bitBuffer |= ( ( this.cache[ this.cachePosition++ ] & 0xFF ) << ( 24 - this.bitCount ) )
| ( ( this.cache[ this.cachePosition++ ] & 0xFF ) << ( 16 - this.bitCount ) );
this.bitCount += 16;
}else{
this.fillBitBuffer();
int node = this.codeTable[ this.bitBuffer >>> ( 32 - this.codeTableBits ) ];
if( 0 <= node ){
int bits = this.bitBuffer << this.codeTableBits;
do{
node = this.codeTree[ bits >>> 31 ][ node ];
bits <<= 1;
}while( 0 <= node );
}
int len = this.codeLen[ ~node ];
if( len <= this.bitCount ){
this.bitBuffer <<= len;
this.bitCount -= len;
return ~node;
}else{
this.bitCount = 0;
this.bitBuffer = 0;
throw new EOFException();
}
}
}
int node = this.codeTable[ this.bitBuffer >>> ( 32 - this.codeTableBits ) ];
if( 0 <= node ){
int bits = this.bitBuffer << this.codeTableBits;
do{
node = this.codeTree[ bits >>> 31 ][ node ];
bits <<= 1;
}while( 0 <= node );
}
int len = this.codeLen[ ~node ];
this.bitBuffer <<= len;
this.bitCount -= len;
return ~node;
}
/**
* -lh5- n̈k@ňkꂽ
* LZSSkR[ĥvʒuǂݍށB<br>
*
* @return -lh5- nňkꂽkR[ĥvʒu
*
* @exception IOException o̓G[ꍇ
*/
public int readOffset() throws IOException {
if( this.bitCount < 16 ){
if( 2 <= this.cacheLimit - this.cachePosition ){
this.bitBuffer |= ( ( this.cache[ this.cachePosition++ ] & 0xFF ) << ( 24 - this.bitCount ) )
| ( ( this.cache[ this.cachePosition++ ] & 0xFF ) << ( 16 - this.bitCount ) );
this.bitCount += 16;
}else{
this.fillBitBuffer();
}
}
int node = this.offLenTable[ this.bitBuffer >>> ( 32 - this.offLenTableBits ) ];
if( 0 <= node ){
int bits = this.bitBuffer << this.offLenTableBits;
do{
node = this.offLenTree[ bits >>> 31 ][ node ];
bits <<= 1;
}while( 0 <= node );
}
int offlen = ~node;
int len = this.offLenLen[ offlen ];
this.bitBuffer <<= len;
this.bitCount -= len;
offlen--;
if( 0 <= offlen ){
return ( 1 << offlen ) | this.readBits( offlen );
}else{
return 0;
}
}
//------------------------------------------------------------------
// method of jp.gr.java_conf.dangan.util.lha.PreLzssDecoder
//------------------------------------------------------------------
// mark/reset
//------------------------------------------------------------------
// public void mark( int readLimit )
// public void reset()
// public boolean markSupported()
//------------------------------------------------------------------
/**
* ڑꂽ̓Xg[݈̌ʒuɃ}[Nݒ肵A
* reset() \bhŃ}[N_ ǂݍ݈ʒu
* ߂悤ɂB<br>
* InputStream mark() ƈႢAreadLimit Őݒ肵
* EoCgOɃ}[NʒuɂȂ\
* 鎖ɒӂ邱ƁB<br>
*
* @param readLimit }[Nʒuɖ߂ẼoCgB
* ̃oCgăf[^ǂ
* ꍇ reset()łȂȂ
* \B<br>
*
* @see PreLzssDecoder#mark(int)
*/
public void mark( int readLimit ){
//------------------------------------------------------------------
// nt}ōň̏ꍇl readLimit vZ
if( this.blockSize < readLimit ){
readLimit = readLimit * StaticHuffman.LimitLen / 8;
readLimit += 272; //block head
}else{
readLimit = readLimit * StaticHuffman.LimitLen / 8;
}
//------------------------------------------------------------------
// BitInputStream pLbV readLimit vZB
readLimit -= this.cacheLimit - this.cachePosition;
readLimit -= this.bitCount / 8;
readLimit += 4;
readLimit = ( readLimit + this.cache.length - 1 ) / this.cache.length
* this.cache.length;
//------------------------------------------------------------------
// mark
this.in.mark( readLimit );
if( this.markCache == null ){
this.markCache = (byte[])this.cache.clone();
}else{
System.arraycopy( this.cache, 0,
this.markCache, 0,
this.cacheLimit );
}
this.markCacheLimit = this.cacheLimit;
this.markCachePosition = this.cachePosition;
this.markBitBuffer = this.bitBuffer;
this.markBitCount = this.bitCount;
this.markPositionIsInCache = true;
this.markBlockSize = this.blockSize;
this.markCodeLen = this.codeLen;
this.markCodeTable = this.codeTable;
this.markCodeTree = this.codeTree;
this.markOffLenLen = this.offLenLen;
this.markOffLenTable = this.offLenTable;
this.markOffLenTree = this.offLenTree;
}
/**
* ڑꂽ̓Xg[̓ǂݍ݈ʒuŌ
* mark() \bhĂяoꂽƂ̈ʒuɐݒ肷B<br>
*
* @exception IOException <br>
*    (1) mark() reset() 悤ƂꍇB<br>
*    (2) ڑꂽ̓Xg[ markSupported()
* false ԂꍇB<br>
*    (3) ڑꂽ̓Xg[
* o̓G[ꍇB<br>
*    ̉ꂩB
*/
public void reset() throws IOException {
if( this.markPositionIsInCache ){
this.cachePosition = this.markCachePosition;
this.bitBuffer = this.markBitBuffer;
this.bitCount = this.markBitCount;
this.blockSize = this.markBlockSize;
this.codeLen = this.markCodeLen;
this.codeTable = this.markCodeTable;
this.codeTree = this.markCodeTree;
this.offLenLen = this.markOffLenLen;
this.offLenTable = this.markOffLenTable;
this.offLenTree = this.markOffLenTree;
}else if( !this.in.markSupported() ){
throw new IOException( "not support mark()/reset()." );
}else if( this.markCache == null ){ //͖̏Ƀ}[NĂȂƂBRXgN^ markCache null ɐݒ肳̂𗘗pB
throw new IOException( "not marked." );
}else{
//in reset() łȂꍇ
//ŏ̍s this.in.reset()
//IOException 𓊂邱Ƃ҂ĂB
this.in.reset(); //throws IOException
System.arraycopy( this.markCache, 0,
this.cache, 0,
this.markCacheLimit );
this.cacheLimit = this.markCacheLimit;
this.cachePosition = this.markCachePosition;
this.bitBuffer = this.markBitBuffer;
this.bitCount = this.markBitCount;
this.blockSize = this.markBlockSize;
this.codeLen = this.markCodeLen;
this.codeTable = this.markCodeTable;
this.codeTree = this.markCodeTree;
this.offLenLen = this.markOffLenLen;
this.offLenTable = this.markOffLenTable;
this.offLenTree = this.markOffLenTree;
}
}
/**
* ڑꂽ̓Xg[ mark() reset()
* T|[g邩B<br>
*
* @return Xg[ mark() reset()
* T|[gꍇ trueB<br>
* T|[gȂꍇ falseB<br>
*/
public boolean markSupported(){
return this.in.markSupported();
}
//------------------------------------------------------------------
// method of jp.gr.java_conf.dangan.util.lha.PreLzssDecoder
//------------------------------------------------------------------
// other
//------------------------------------------------------------------
// public int available()
// public void close()
//------------------------------------------------------------------
/**
* ubNɓǂݏoƂ̏oŒoCgB<br>
* InputStream available() ƈႢA
* ̍ŒoCg͕KۏႳĂȂɒӂ邱ƁB<br>
*
* @return ubNȂœǂݏoŒoCgB<br>
*
* @exception IOException o̓G[ꍇ
*
* @see PreLzssDecoder#available()
*/
public int available() throws IOException {
int avail = ( ( this.cacheLimit - this.cachePosition )
+ this.in.available() / this.cache.length * this.cache.length );//throws IOException
avail += this.bitCount - 32;
avail = avail / StaticHuffman.LimitLen;
if( this.blockSize < avail ){
avail -= 272;
}
return Math.max( avail, 0 );
}
/**
* ̃Xg[AgpĂSĂ̎B
*
* @exception IOException o̓G[ꍇ
*/
public void close() throws IOException {
this.in.close(); //throws IOException
this.in = null;
this.cache = null;
this.cacheLimit = 0;
this.cachePosition = 0;
this.bitBuffer = 0;
this.bitCount = 0;
this.markCache = null;
this.markCacheLimit = 0;
this.markCachePosition = 0;
this.markBitBuffer = 0;
this.markBitCount = 0;
this.markPositionIsInCache = false;
this.blockSize = 0;
this.codeLen = null;
this.codeTable = null;
this.codeTree = null;
this.offLenLen = null;
this.offLenTable = null;
this.offLenTree = null;
this.markBlockSize = 0;
this.markCodeLen = null;
this.markCodeTable = null;
this.markCodeTree = null;
this.markOffLenLen = null;
this.markOffLenTable = null;
this.markOffLenTree = null;
}
//------------------------------------------------------------------
// method of jp.gr.java_conf.dangan.util.lha.PreLzssDecoder
//------------------------------------------------------------------
// get LZSS parameter
//------------------------------------------------------------------
// public int getDictionarySize()
// public int getMaxMatch()
// public int getThreshold()
//------------------------------------------------------------------
/**
* PreLh5Decoder LZSS̃TCYB
*
* @return PreLh5Decoder LZSS̃TCY
*/
public int getDictionarySize(){
return this.DictionarySize;
}
/**
* PreLh5Decoder LZSS̍ővB
*
* @return PreLh5Decoder LZSS̍őv
*/
public int getMaxMatch(){
return this.MaxMatch;
}
/**
* PreLh5Decoder kAk臒lB
*
* @return PreLh5Decoder kAk臒l
*/
public int getThreshold(){
return this.Threshold;
}
//------------------------------------------------------------------
// local method
//------------------------------------------------------------------
// read block head
//------------------------------------------------------------------
// private void readBlockHead()
// private int[] readCodeLenLenList()
// private int[] readCodeLenList( HuffmanDecoder decoder )
// private int[] readOffLenLenList()
//------------------------------------------------------------------
/**
* nt}ubN̐擪ɂ
* ubNTCYnt}̃XgǂݍށB
*
* @exception IOException o̓G[ꍇ
* @exception EOFException EndOfStreamɒBꍇ
* @exception BadHuffmanTableException
* nt}\邽߂
* nt}̕\sȂ߁A
* nt}킪łȂꍇ
* @exception BitDataBrokenException
* \ʌŃf[^ǂ݂݂
* fꂽߗvꂽrbg
* ̃f[^Ȃꍇ
* @exception NotEnoughBitsException
* \ʌŃf[^ǂ݂݂
* fꂽߗvꂽrbg
* ̃f[^Ȃꍇ
*/
private void readBlockHead() throws IOException {
//ubNTCYǂݍ
//ȃf[^̏ꍇA̕ EndOfStream ɓBB
try{
this.blockSize = this.readBits( 16 ); //throws BitDataBrokenException, EOFException, IOException
}catch( BitDataBrokenException exception ){
if( exception.getCause() instanceof EOFException ){
throw (EOFException)exception.getCause();
}else{
throw exception;
}
}
//codeLen ̏
int[] codeLenLen = this.readCodeLenLen(); //throws BitDataBrokenException, EOFException, IOException
short[] codeLenTable;
if( null != codeLenLen ){
codeLenTable = StaticHuffman.createTable( codeLenLen ); //throws BadHuffmanTableException
}else{
codeLenTable = new short[]{ (short)this.readBits( 5 ) }; //throws BitDataBrokenException EOFException IOException
codeLenLen = new int[ codeLenTable[0] + 1 ];
}
//code ̏
this.codeLen = this.readCodeLen( codeLenTable, codeLenLen ); //throws BitDataBrokenException NotEnoughBitsException EOFException IOException
if( null != this.codeLen ){
short[][] tableAndTree =
StaticHuffman.createTableAndTree( this.codeLen, this.codeTableBits );//throws BadHuffmanTableException
this.codeTable = tableAndTree[0];
this.codeTree = new short[][]{ tableAndTree[1], tableAndTree[2] };
}else{
int code = this.readBits( 9 ); //throws BitDataBrokenException EOFException IOException
this.codeLen = new int[ 256 + this.MaxMatch - this.Threshold + 1 ];
this.codeTable = new short[ 1 << this.codeTableBits ];
for( int i = 0 ; i < this.codeTable.length ; i++ ){
this.codeTable[i] = ((short)~code);
}
this.codeTree = new short[][]{ new short[0], new short[0] };
}
//offLen ̏
this.offLenLen = this.readOffLenLen(); //throws BitDataBrokenException EOFException IOException
if( null != this.offLenLen ){
short[][] tableAndTree =
StaticHuffman.createTableAndTree( this.offLenLen, this.offLenTableBits );//throws BadHuffmanTableException
this.offLenTable = tableAndTree[0];
this.offLenTree = new short[][]{ tableAndTree[1], tableAndTree[2] };
}else{
int offLen = this.readBits( Bits.len( Bits.len( this.DictionarySize ) ) );//throws BitDataBrokenException EOFException IOException
this.offLenLen = new int[ Bits.len( this.DictionarySize ) ];
this.offLenTable = new short[ 1 << this.offLenTableBits ];
for( int i = 0 ; i < this.offLenTable.length ; i++ ){
this.offLenTable[i] = ((short)~offLen);
}
this.offLenTree = new short[][]{ new short[0], new short[0] };
}
}
/**
* Codẽnt}̃Xg
* nt}邽߂
* nt}̃Xgǂ݂ށB
*
* @return nt}̃XgB
* ̃Xgꍇ null
*
* @exception IOException o̓G[ꍇ
* @exception EOFException EndOfStreamɒBꍇ
* @exception BitDataBrokenException
* \ʌŃf[^ǂ݂݂
* fꂽߗvꂽrbg
* ̃f[^Ȃꍇ
*/
private int[] readCodeLenLen() throws IOException {
int listlen = this.readBits( 5 ); //throws BitDataBrokenException, EOFException, IOException
if( 0 < listlen ){
int[] codeLenLen = new int[listlen];
int index = 0;
while( index < listlen ){
int codelenlen = this.readBits( 3 ); //throws BitDataBrokenException, EOFException, IOException
if( codelenlen == 0x07 ){
while( this.readBoolean() ) codelenlen++; //throws EOFException, IOException
}
codeLenLen[index++] = codelenlen;
if( index == 3 ){
index += this.readBits( 2 ); //throws BitDataBrokenException, EOFException, IOException
}
}
return codeLenLen;
}else{
return null;
}
}
/**
* Codẽnt}̃XgȂǂ݂
*
* @return nt}̃XgB
* ̃Xgꍇ null
*
* @exception IOException o̓G[ꍇ
* @exception EOFException EndOfStreamɒBꍇ
* @exception BitDataBrokenException
* \ʌŃf[^ǂ݂݂
* fꂽߗvꂽrbg
* ̃f[^Ȃꍇ
* @exception NotEnouthBitsException
* \ʌŃf[^ǂ݂݂
* fꂽߗvꂽrbg
* ̃f[^Ȃꍇ
*/
private int[] readCodeLen( short[] codeLenTable, int[] codeLenLen )
throws IOException {
final int codeLenTableBits = Bits.len( codeLenTable.length - 1 );
int listlen = this.readBits( 9 ); //throws BitDataBrokenException, EOFException, IOException
if( 0 < listlen ){
int[] codeLen = new int[listlen];
int index = 0;
while( index < listlen ){
this.fillBitBuffer();
int bits = ( 0 < codeLenTableBits
? this.bitBuffer >>> ( 32 - codeLenTableBits )
: 0 );
int codelen = codeLenTable[ bits ];
int len = codeLenLen[ codelen ];
this.bitBuffer <<= len;
this.bitCount -= len;
if( codelen == 0 ) index++;
else if( codelen == 1 ) index += this.readBits( 4 ) + 3; //throws BitDataBrokenException, EOFException, IOException
else if( codelen == 2 ) index += this.readBits( 9 ) + 20; //throws BitDataBrokenException, EOFException, IOException
else codeLen[index++] = codelen - 2;
}
return codeLen;
}else{
return null;
}
}
/**
* offLen ̃nt}̃Xgǂ݂
*
* @return nt}̃XgB
* ̃Xgꍇ null
*
* @exception IOException o̓G[ꍇ
* @exception EOFException EndOfStreamɒBꍇ
* @exception BitDataBrokenException
* \ʌŃf[^ǂ݂݂
* fꂽߗvꂽrbg
* ̃f[^Ȃꍇ
*/
private int[] readOffLenLen() throws IOException {
int listlen = this.readBits( Bits.len( Bits.len( this.DictionarySize ) ) );//throws BitDataBrokenException, EOFException, IOException
if( 0 < listlen ){
int[] offLenLen = new int[listlen];
int index = 0;
while( index < listlen ){
int offlenlen = this.readBits( 3 ); //throws BitDataBrokenException, EOFException, IOException
if( offlenlen == 0x07 ){
while( this.readBoolean() ) offlenlen++; //throws EOFException, IOException
}
offLenLen[index++] = offlenlen;
}
return offLenLen;
}else{
return null;
}
}
//------------------------------------------------------------------
// staff of BitInputStream
//------------------------------------------------------------------
// bit read
//------------------------------------------------------------------
// private boolean readBoolean()
// private int readBits( int count )
// private int cachedBits()
//------------------------------------------------------------------
/**
* ڑꂽ̓Xg[ 1rbg̃f[^
* ^UlƂēǂݍށB<br>
*
* @return ǂݍ܂ꂽ1rbg̃f[^
* 1ł trueA0ł false ԂB<br>
*
* @exception EOFException EndOfStreamɒBĂꍇ
* @exception IOException ڑꂽ̓Xg[
* o̓G[ꍇ
*/
private boolean readBoolean() throws IOException {
if( 0 < this.bitCount ){
boolean bool = ( this.bitBuffer < 0 );
this.bitBuffer <<= 1;
this.bitCount -= 1;
return bool;
}else{
this.fillBitBuffer();
boolean bool = ( this.bitBuffer < 0 );
this.bitBuffer <<= 1;
this.bitCount -= 1;
return bool;
}
}
/**
* ڑꂽ̓Xg[ count rbg̃f[^
* ǂݍށB ߂l intlł鎖悤
* ǂݍނƂ̂ł őLrbg 32rbg
* 邪Acount 32ȏ̒lݒ肵Ă`FbN
* Ȃ ȏ̒lݒ肵ꍇ rbg
* f[^ǂݎ̂ĂB<br>
* Ƃ readBits( 33 ) ƂƂ ܂1rbg
* f[^ǂݎ̂āǍ 32rbg̃f[^ԂB<br>
* ܂ count 0ȉ̐ݒ肵ČĂяoꍇA
* f[^ǂݍޓȂ ߂l 0A
* EndOfStream ɒBĂĂ EOFException
* Ȃ_ɒӂ邱ƁB<br>
*
* @param count ǂݍރf[^̃rbg
*
* @return ǂݍ܂ꂽrbgf[^B<br>
*
* @exception IOException
* ڑꂽ̓Xg[
* o̓G[ꍇ
* @exception EOFException
* EndOfStreamɒBĂꍇ
* @exception BitDataBrokenException
* ǂݍݓr EndOfStreamɒB
* vꂽrbg̃f[^̓ǂݍ
* ɎsꍇB<br>
*/
private int readBits( int count ) throws IOException {
if( 0 < count ){
if( count <= this.bitCount ){
int bits = this.bitBuffer >>> ( 32 - count );
this.bitBuffer <<= count;
this.bitCount -= count;
return bits;
}else{
final int requested = count;
int bits = 0;
try{
this.fillBitBuffer(); //throws LocalEOFException IOException
while( this.bitCount < count ){
count -= this.bitCount;
if( count < 32 ){
bits |= ( this.bitBuffer >>> ( 32 - this.bitCount ) ) << count;
}
this.bitBuffer = 0;
this.bitCount = 0;
this.fillBitBuffer(); //throws LocalEOFException IOException
}
bits |= this.bitBuffer >>> ( 32 - count );
this.bitBuffer <<= count;
this.bitCount -= count;
return bits;
}catch( LocalEOFException exception ){
if( exception.thrownBy( this ) && count < requested ){
throw new BitDataBrokenException( exception, bits >>> count, requested - count );
}else{
throw exception;
}
}
}
}else{
return 0;
}
}
/**
* BitInputStream ɒ~ĂrbgB<br>
*
* @return BitInputStream ɒ~ĂrbgB<br>
*/
private int cachedBits(){
return this.bitCount + ( ( this.cacheLimit - this.cachePosition ) << 3 );
}
//------------------------------------------------------------------
// staff of BitInputSteram
//------------------------------------------------------------------
// fill
//------------------------------------------------------------------
// private void fillBitBuffer()
// private void fillCache()
//------------------------------------------------------------------
/**
* bitBuffer Ƀf[^B
* EndOfStream t߂ bitBuffer ɂ
* 25bit ̃f[^mۂ邱ƂۏႷB
*
* @exception IOException o̓G[ꍇ
* @exception LocalEOFException bitBuffer ̏Ԃ EndOfStream ɒBꍇ
*/
private void fillBitBuffer() throws IOException {
if( 32 <= this.cachedBits() ){
if( this.bitCount <= 24 ){
if( this.bitCount <= 16 ){
if( this.bitCount <= 8 ){
if( this.bitCount <= 0 ){
this.bitBuffer = this.cache[this.cachePosition++] << 24;
this.bitCount = 8;
}
this.bitBuffer |= ( this.cache[this.cachePosition++] & 0xFF )
<< ( 24 - this.bitCount );
this.bitCount += 8;
}
this.bitBuffer |= ( this.cache[this.cachePosition++] & 0xFF )
<< ( 24 - this.bitCount );
this.bitCount += 8;
}
this.bitBuffer |= ( this.cache[this.cachePosition++] & 0xFF )
<< ( 24 - this.bitCount );
this.bitCount += 8;
}
}else if( this.bitCount < 25 ){
if( this.bitCount == 0 ){
this.bitBuffer = 0;
}
int count = Math.min( ( 32 - this.bitCount ) >> 3,
this.cacheLimit - this.cachePosition );
while( 0 < count-- ){
this.bitBuffer |= ( this.cache[this.cachePosition++] & 0xFF )
<< ( 24 - this.bitCount );
this.bitCount += 8;
}
this.fillCache(); //throws IOException
if( this.cachePosition < this.cacheLimit ){
count = Math.min( ( 32 - this.bitCount ) >> 3,
this.cacheLimit - this.cachePosition );
while( 0 < count-- ){
this.bitBuffer |= ( this.cache[this.cachePosition++] & 0xFF )
<< ( 24 - this.bitCount );
this.bitCount += 8;
}
}else if( this.bitCount <= 0 ){
throw new LocalEOFException( this );
}
}
}
/**
* cache ɂȂ cache Ƀf[^ǂݍށB
*
* @exception IOException o̓G[ꍇ
*/
private void fillCache() throws IOException {
this.markPositionIsInCache = false;
this.cacheLimit = 0;
this.cachePosition = 0;
//cache Ƀf[^ǂݍ
int read = 0;
while( 0 <= read && this.cacheLimit < this.cache.length ){
read = this.in.read( this.cache,
this.cacheLimit,
this.cache.length - this.cacheLimit ); //throws IOException
if( 0 < read ) this.cacheLimit += read;
}
}
//------------------------------------------------------------------
// inner classes
//------------------------------------------------------------------
// private static class LocalEOFException
//------------------------------------------------------------------
/**
* BitInputStream EndOfStream ̌o
* EOFException gp̂͏X肪̂
* [J EOFException `B
*/
private static class LocalEOFException extends EOFException {
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// private Object owner
//------------------------------------------------------------------
/**
* ̗O𓊂IuWFNg
*/
private Object owner;
//------------------------------------------------------------------
// constructor
//------------------------------------------------------------------
// public LocalEOFException()
// public LocalEOFException( String message )
//------------------------------------------------------------------
/**
* RXgN^B
*
* @param object ̗O𓊂IuWFNg
*/
public LocalEOFException( Object object ){
super();
this.owner = object;
}
//------------------------------------------------------------------
// original method
//------------------------------------------------------------------
// public boolean thrownBy( Object object )
//------------------------------------------------------------------
/**
* ̗O object ɂēꂽǂB<br>
*
* @param object IuWFNg
*
* @return ̗O objectɂ
* ꂽOł true<br>
* Ⴆ false<br>
*/
public boolean thrownBy( Object object ){
return this.owner == object;
}
}
}
//end of PreLh5Decoder.java
|