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
|
//start of LhaRetainedOutputStream.java
//TEXT_STYLE:CODE=Shift_JIS(Japanese):RET_CODE=CRLF
/**
* LhaRetainedOutputStream.java
*
* Copyright (C) 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.File;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.RandomAccessFile;
import java.util.Vector;
import java.util.Properties;
import jp.gr.java_conf.dangan.util.lha.CRC16;
import jp.gr.java_conf.dangan.util.lha.LhaHeader;
import jp.gr.java_conf.dangan.util.lha.LhaProperty;
import jp.gr.java_conf.dangan.util.lha.CompressMethod;
//import exceptions
import java.io.IOException;
import java.io.EOFException;
import java.io.FileNotFoundException;
import java.io.UnsupportedEncodingException;
/**
* ڑꂽRandomAccessFile kf[^o͂邽߂̃[eBeBNXB<br>
* java.util.zip.ZipOutputStream ƎC^[tFCX悤ɍB<br>
* ks( kTCYkOTCYꍇ )̏IɍsB
* iꍇÂ悤ȏNXɉBƐi͉bԂ
* ɂĂ͉\ȂȂB(ႦMKoCg̃f[^ꍇ)
* ̂悤ȎԂꍇ LhaImmediateOutputStreamgp邱ƁB<br>
* ܂AJDK 1.1 ȑOł RandomAccessFile setLength Ȃ߁A
* Ƀf[^̌ɑ̃f[^ꍇłt@CTCYl߂邱ƂoȂB
* ̖_͏ɃTCY0̐Vt@CJɂĉ鎖łB<br>
*
* <pre>
* -- revision history --
* $Log: LhaRetainedOutputStream.java,v $
* Revision 1.2 2002/12/11 02:25:14 dangan
* [bug fix]
* jdk1.2 ŃRpCłȂӏCB
*
* Revision 1.1 2002/12/08 00:00:00 dangan
* [maintenance]
* LhaConstants CompressMethod ւ̃NX̕ύXɍ킹ďCB
*
* Revision 1.0 2002/08/05 00:00:00 dangan
* add to version control
* [change]
* RXgN^ String encode ̂p~A
* Properties Ɏ̂ljB
* [maintenance]
* \[X
* ^up~
* CZX̏C
*
* </pre>
*
* @author $Author: dangan $
* @version $Revision: 1.2 $
*/
public class LhaRetainedOutputStream extends OutputStream{
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// sink
//------------------------------------------------------------------
// private RandomAccessFile archive
//------------------------------------------------------------------
/**
* Ƀt@C
*/
private RandomAccessFile archive;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// to compress a file
//------------------------------------------------------------------
// private OutputStream out
// private RandomAccessFileOutputStream rafo
// private LhaHeader header
// private String encoding
// private long headerpos
// private CRC16 crc
//------------------------------------------------------------------
/**
* kpo̓Xg[
*/
private OutputStream out;
/**
* kpo̓Xg[
*/
private RandomAccessFileOutputStream rafo;
/**
* ݈k̃wb_
*/
private LhaHeader header;
/**
* wb_̏o͂ɎgpGR[fBO
*/
private String encoding;
/**
* wb_ʒu
*/
private long headerpos;
/**
* CRClZop
*/
private CRC16 crc;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// property
//------------------------------------------------------------------
// private Properties property
//------------------------------------------------------------------
/**
* ek`ɑΉ̐܂܂vpeB
*/
private Properties property;
//------------------------------------------------------------------
// constructor
//------------------------------------------------------------------
// private LhaRetainedOutputStream()
// public LhaRetainedOutputStream( String filename )
// public LhaRetainedOutputStream( String filename, Properties property )
// public LhaRetainedOutputStream( File file )
// public LhaRetainedOutputStream( File file, Properties property )
// public LhaRetainedOutputStream( RandomAccessFile archive )
// public LhaRetainedOutputStream( RandomAccessFile archive, Properties property )
// private void constructerHelper( RandomAccesFile archive, Properties property )
//------------------------------------------------------------------
/**
* ftHgRXgN^
* gps
*/
private LhaRetainedOutputStream(){ }
/**
* filename ̃t@C kf[^o͂OutputStream\zB<br>
* ek`ɑΉ̐vpeBɂ
* LhaProperty.getProperties() œꂽvpeBgpB<br>
*
* @param filename kf[^ރt@C̖O
*
* @exception FileNotFoundException
* filename ŗ^ꂽt@CȂꍇB
* @exception SecurityException
* ZLeB}l[Wt@Cւ̃ANZXȂꍇB
*
* @see LhaProperty#getProperties()
*/
public LhaRetainedOutputStream( String filename )
throws FileNotFoundException {
if( filename != null ){
RandomAccessFile file = new RandomAccessFile( filename, "rw" ); //throws FileNotFoundException, SecurityException
Properties property = LhaProperty.getProperties();
this.constructerHelper( file, property );
}else{
throw new NullPointerException( "filename" );
}
}
/**
* filename ̃t@C kf[^o͂OutputStream\zB<br>
*
* @param filename kf[^ރt@C̖O
* @param property ek`ɑΉ̐܂܂vpeB
*
* @exception FileNotFoundException
* filename ŗ^ꂽt@CȂꍇB
* @exception SecurityException
* ZLeB}l[Wt@Cւ̃ANZXȂꍇB
*
* @see LhaProperty
*/
public LhaRetainedOutputStream( String filename, Properties property )
throws FileNotFoundException {
if( filename != null ){
RandomAccessFile file = new RandomAccessFile( filename, "rw" ); //throws FileNotFoundException, SecurityException
this.constructerHelper( file, property );
}else{
throw new NullPointerException( "filename" );
}
}
/**
* filename ̃t@C kf[^o͂OutputStream\zB<br>
* ek`ɑΉ̐vpeBɂ
* LhaProperty.getProperties() œꂽvpeBgpB<br>
*
* @param filename kf[^ރt@C̖O
*
* @exception FileNotFoundException
* filename ŗ^ꂽt@CȂꍇB
* @exception SecurityException
* ZLeB}l[Wt@Cւ̃ANZXȂꍇB
* @exception IOException
* JDK1.2 ŃRpC邽߂ɑ݂B
*
* @see LhaProperty#getProperties()
*/
public LhaRetainedOutputStream( File filename ) throws IOException {
if( filename != null ){
RandomAccessFile file = new RandomAccessFile( filename, "rw" ); //throws FileNotFoundException, SecurityException
Properties property = LhaProperty.getProperties();
this.constructerHelper( file, property );
}else{
throw new NullPointerException( "filename" );
}
}
/**
* filename ̃t@C kf[^o͂OutputStream\zB<br>
*
* @param filename kf[^ރt@C̖O
* @param property ek`ɑΉ̐܂܂vpeB
*
* @exception FileNotFoundException
* filename ŗ^ꂽt@CȂꍇB
* @exception SecurityException
* ZLeB}l[Wt@Cւ̃ANZXȂꍇB
* @exception IOException
* JDK1.2 ŃRpC邽߂ɑ݂B
*
* @see LhaProperty
*/
public LhaRetainedOutputStream( File filename, Properties property )
throws IOException {
if( filename != null ){
RandomAccessFile file = new RandomAccessFile( filename, "rw" ); //throws FileNotFoundException, SecurityException
this.constructerHelper( file, property );
}else{
throw new NullPointerException( "filename" );
}
}
/**
* file kf[^o͂OutputStream\zB<br>
* ek`ɑΉ̐vpeBɂ
* LhaProperty.getProperties() œꂽvpeBgpB<br>
*
* @param file RandomAccessFile ̃CX^XB<br>
* <ul>
* <li> close() ĂȂB
* <li>RXgN^ mode ɂ "rw" IvVgpāA
* ǂ݂݂Ə݂o悤ɐꂽCX^Xł邱ƁB
* </ul>
* ̏́B
*
* @see LhaProperty#getProperties()
*/
public LhaRetainedOutputStream( RandomAccessFile file ){
if( file != null ){
Properties property = LhaProperty.getProperties();
this.constructerHelper( file, property );
}else{
throw new NullPointerException( "out" );
}
}
/**
* file kf[^o͂OutputStream\zB<br>
* ek`ɑΉ̐vpeBɂ
* LhaProperty.getProperties() œꂽvpeBgpB<br>
*
* @param file RandomAccessFile ̃CX^XB<br>
* <ul>
* <li> close() ĂȂB
* <li>RXgN^ mode ɂ "rw" IvVgpāA
* ǂ݂݂Ə݂o悤ɐꂽCX^Xł邱ƁB
* </ul>
* ̏́B
* @param property ek`ɑΉ̐܂܂vpeB
*
* @see LhaProperty
*/
public LhaRetainedOutputStream( RandomAccessFile file,
Properties property ){
if( file != null
&& property != null ){
this.constructerHelper( file, property ); //throws UnsupportedEncodingException
}else if( file == null ){
throw new NullPointerException( "null" );
}else{
throw new NullPointerException( "property" );
}
}
/**
* RXgN^̏S郁\bhB
*
* @param file RandomAccessFile ̃CX^XB<br>
* <ul>
* <li> close() ĂȂB
* <li>RXgN^ mode ɂ "rw" IvVgpāA
* ǂ݂݂Ə݂o悤ɐꂽCX^Xł邱ƁB
* </ul>
* ̏́B
* @param property ek`ɑΉ̐܂܂vpeB
*/
private void constructerHelper( RandomAccessFile file,
Properties property ){
this.archive = file;
this.out = null;
this.header = null;
this.headerpos = -1;
this.crc = new CRC16();
this.property = property;
}
//------------------------------------------------------------------
// method of java.io.OutputStream
//------------------------------------------------------------------
// write
//------------------------------------------------------------------
// public void write( int data )
// public void write( byte[] buffer )
// public void write( byte[] buffer, int index, int length )
//------------------------------------------------------------------
/**
* ݂̃Gg1oCg̃f[^ށB
*
* @param data ރf[^
*
* @exception IOException o̓G[ꍇB
*/
public void write( int data ) throws IOException {
if( this.out != null ){
if( this.header != null ){
crc.update( data );
}
this.out.write( data );
}else{
throw new IOException( "no entry" );
}
}
/**
* ݂̃Gg buffer̓eSďoB
*
* @param buffer of[^̓oCgz
*
* @exception IOException o̓G[ꍇB
*/
public void write( byte[] buffer ) throws IOException {
this.write( buffer, 0, buffer.length );
}
/**
* ݂̃Gg buffer index
* lengthoCg̃f[^oB
*
* @param buffer of[^̓oCgz
* @param index buffeȑoׂf[^̊Jnʒu
* @param length f[^̃oCg
*
* @exception IOException o̓G[ꍇB
*/
public void write( byte[] buffer, int index, int length ) throws IOException {
if( this.out != null ){
if( this.header != null ){
crc.update( buffer, index, length );
}
this.out.write( buffer, index, length );
}else{
throw new IOException( "no entry" );
}
}
//------------------------------------------------------------------
// method of java.io.OutputStream
//------------------------------------------------------------------
// other
//------------------------------------------------------------------
// public void flush()
// public void close()
//------------------------------------------------------------------
/**
* ݏݒ̃Gg̃f[^Iɏo͐ɏoB
* PostLzssEncoder, LzssOutputStream ̋Kǂ
* flush() ȂꍇƂ͕ʂ̃f[^o͂B
* (̏ꍇ PɈkቺ邾łB)
*
* @exception IOException o̓G[ꍇ
*
* @see PostLzssEncoder#flush()
* @see LzssOutputStream#flush()
*/
public void flush() throws IOException {
if( this.out != null ){
this.out.flush(); //throws IOException
}else{
throw new IOException( "no entry" );
}
}
/**
* o͐ɑSẴf[^o͂AXg[B<br>
* ܂AgpĂSẴ\[XB
*
* @exception IOException o̓G[ꍇ
*/
public void close() throws IOException {
if( this.out != null ){
this.closeEntry(); //throws IOException
}
//^[~l[^o
this.archive.write( 0 ); //throws IOException
try{
this.archive.setLength( this.archive.getFilePointer() ); //After Java1.2 throws IOException
}catch( NoSuchMethodError error ){
}
this.archive.close(); //throws IOException
this.archive = null;
this.header = null;
this.crc = null;
this.property = null;
this.rafo = null;
}
//------------------------------------------------------------------
// original method ( on the model of java.util.zip.ZipOutputStream )
//------------------------------------------------------------------
// manipulate entry
//------------------------------------------------------------------
// public void putNextEntry( LhaHeader header )
// public void putNextEntryAlreadyCompressed( LhaHeader header )
// public void putNextEntryNotYetCompressed( LhaHeader header )
// public void closeEntry()
//------------------------------------------------------------------
/**
* VGgނ悤ɃXg[ݒ肷B<br>
* ̃\bh Ɉkς݂̃Gg̏ꍇ
* putNextEntryAlreadyCompressed(),
* ɈkĂȂꍇ
* putNextEntryNotYetCompressed() ĂяoB<br>
* kĂ邩̔́A
* <ul>
* <li>header.getCompressedSize()<br>
* <li>header.getCRC()<br>
* </ul>
* ̂ǂꂩł LhaHeader.UNKNOWN łΖɈkĂȂƂB<br>
* header ɂ͐m OriginalSize w肳ĂKvB<br>
*
* @param header ރGgɂĂ̏
* LhaHeader̃CX^XB
*
* @exception IOException o̓G[ꍇ
* @exception IllegalArgumentException
* header.getOriginalSize() LhaHeader.UNKNOWN Ԃꍇ
*/
public void putNextEntry( LhaHeader header ) throws IOException {
if( header.getCompressedSize() == LhaHeader.UNKNOWN
|| header.getCRC() == LhaHeader.UNKNOWN ){
this.putNextEntryNotYetCompressed( header ); //throws IOException
}else{
this.putNextEntryAlreadyCompressed( header ); //throws IOException
}
}
/**
* Ɉkς݂̃Ggނ悤ɃXg[ݒ肷B<br>
* kς݃f[^́AĂяoۏ鎖B
*
* @param header ރGgɂĂ̏
* LhaHeader̃CX^XB
*
* @exception IOException o̓G[ꍇ
* @exception IllegalArgumentException
* <ol>
* <li>header.getOriginalSize() LhaHeader.UNKNOWN Ԃꍇ
* <li>header.getComressedSize() LhaHeader.UNKNOWN Ԃꍇ
* <li>header.getCRC() LhaHeader.UNKNOWN Ԃꍇ
* </ol>
* ̉ꂩB
*/
public void putNextEntryAlreadyCompressed( LhaHeader header )
throws IOException {
if( header.getOriginalSize() != LhaHeader.UNKNOWN
&& header.getCompressedSize() != LhaHeader.UNKNOWN
&& header.getCRC() != LhaHeader.UNKNOWN ){
if( this.out != null ){
this.closeEntry();
}
this.headerpos = this.archive.getFilePointer();
this.encoding = this.property.getProperty( "lha.encoding" );
if( this.encoding == null ){
this.encoding = LhaProperty.getProperty( "lha.encoding" );
}
this.archive.write( header.getBytes( encoding ) ); //throws IOException
this.out = new RandomAccessFileOutputStream( this.archive, header.getCompressedSize() );
}else if( header.getOriginalSize() == LhaHeader.UNKNOWN ){
throw new IllegalArgumentException( "OriginalSize must not \"LhaHeader.UNKNOWN\"." );
}else if( header.getCompressedSize() == LhaHeader.UNKNOWN ){
throw new IllegalArgumentException( "CompressedSize must not \"LhaHeader.UNKNOWN\"." );
}else{
throw new IllegalArgumentException( "CRC must not \"LhaHeader.UNKNOWN\"." );
}
}
/**
* ɈkĂȂGgނ悤ɃXg[ݒ肷B<br>
* header ɂ͐m OriginalSize w肳ĂKvB<br>
* header CompressedSize, CRCw肳ĂĂB<br>
*
* @param header ރGgɂĂ̏
* LhaHeader̃CX^XB
*
* @exception IOException o̓G[ꍇ
* @exception IllegalArgumentException
* header.getOriginalSize() LhaHeader.UNKNOWN Ԃꍇ
*/
public void putNextEntryNotYetCompressed( LhaHeader header )
throws IOException {
if( header.getOriginalSize() != LhaHeader.UNKNOWN ){
if( this.out != null ){
this.closeEntry();
}
this.crc.reset();
this.headerpos = this.archive.getFilePointer();
this.header = (LhaHeader)header.clone();
this.header.setCompressedSize( 0 );
this.header.setCRC( 0 );
this.encoding = this.property.getProperty( "lha.encoding" );
if( this.encoding == null ){
this.encoding = LhaProperty.getProperty( "lha.encoding" );
}
this.archive.write( this.header.getBytes( encoding ) );
this.rafo = new RandomAccessFileOutputStream( this.archive, header.getOriginalSize() );
this.out = CompressMethod.connectEncoder( this.rafo,
header.getCompressMethod(),
this.property );
}else{
throw new IllegalArgumentException( "OriginalSize must not \"LhaHeader.UNKNOWN\"." );
}
}
/**
* ݏo͒̃GgÃGgo͉\ȏԂɂB<br>
* kɎs(kTCYkOTCY)ꍇA
* 𓀂kŊi[BGg̃TCY傫ꍇA
* ̏ɂ͂Ȃ̎ԂB
*
* @exception IOException o̓G[ꍇ
*/
public void closeEntry() throws IOException {
if( this.header != null ){
this.out.close();
if( !this.rafo.cache.isEmpty() ){
RandomAccessFileInputStream rafi;
InputStream in;
long pos = this.rafo.start;
rafi = new RandomAccessFileInputStream( this.archive, this.rafo );
in = CompressMethod.connectDecoder( rafi,
header.getCompressMethod(),
this.property,
this.header.getOriginalSize() );
byte[] buffer = new byte[8192];
int length;
while( 0 <= ( length = in.read( buffer ) ) ){
rafi.cache( pos + length );
this.archive.seek( pos );
this.archive.write( buffer, 0, length );
pos += length;
}
in.close();
this.header.setCompressMethod( CompressMethod.LH0 );
}
long pos = this.archive.getFilePointer();
long size = ( pos - this.headerpos
- this.header.getBytes( this.encoding ).length );
this.header.setCompressedSize( size );
if( this.header.getCRC() != LhaHeader.NO_CRC ){
this.header.setCRC( (int)this.crc.getValue() );
}
this.archive.seek( this.headerpos );
this.archive.write( this.header.getBytes( this.encoding ) );
this.archive.seek( pos );
}
this.header = null;
this.out = null;
}
//------------------------------------------------------------------
// inner classes
//------------------------------------------------------------------
// private static class RandomAccessFileOutputStream
// private static class RandomAccessFileInputStream
// private static class Cache
//------------------------------------------------------------------
/**
* RandomAccessFile OutputStream C^tFCXɍ킹邽߂̃bpNX
*/
private static class RandomAccessFileOutputStream extends OutputStream {
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// sink
//------------------------------------------------------------------
// private RandomAccessFile archive
// private GrowthByteBuffer cache
//------------------------------------------------------------------
/**
* o͐RandomAccessFile
*/
private RandomAccessFile archive;
/**
* i[EďƂ
* ꍇ̃LbV
*/
private Cache cache;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// position
//------------------------------------------------------------------
// private long start
// private long pos
// private long limit
//------------------------------------------------------------------
/**
* i[Jnʒu
*/
private long start;
/**
* ݏʒu
*/
private long pos;
/**
* i[E
*/
private long limit;
//------------------------------------------------------------------
// consutructor
//------------------------------------------------------------------
// public RandomAccessFileOutputStream( RandomAccessFile archive,
// long length )
//------------------------------------------------------------------
/**
* RandomAccessFile bv OutputStream \zB
*
* @param archive o͐RandomAccessFile
* @param length o͌E
*
* @exception IOException o̓G[G[ꍇ
*/
public RandomAccessFileOutputStream( RandomAccessFile archive,
long length ) throws IOException {
this.archive = archive;
this.start = this.archive.getFilePointer(); //throws IOException
this.pos = this.start;
this.limit = this.start + length;
this.cache = new Cache();
}
//------------------------------------------------------------------
// method of java.io.OutputStream
//------------------------------------------------------------------
// write
//------------------------------------------------------------------
// public void write( int data )
// public void write( byte[] buffer )
// public void write( byte[] buffer, int index, int length )
//------------------------------------------------------------------
/**
* ڑꂽ RandomAccessFile 1oCgށB
*
* @param data 1bytẽf[^
*
* @exception IOException o̓G[ꍇ
*/
public void write( int data ) throws IOException {
if( this.pos < this.limit && this.cache.isEmpty() ){
this.pos++;
this.archive.write( data ); //throws IOException
}else{
this.cache.add( new byte[]{ (byte)data } );
}
}
/**
* ڑꂽ RandomAccessFile buffer ̓eSďށB
*
* @param buffer ރf[^̓oCgz
*
* @exception IOException o̓G[ꍇ
* @exception EOFException RXgN^ɓnꂽ
* Ƃꍇ
*/
public void write( byte[] buffer ) throws IOException {
this.write( buffer, 0, buffer.length ); //throws IOException
}
/**
* ڑꂽRandomAccessFilebuffer̓eindexlengthoCgށB
*
* @param buffer ރf[^̓oCgz
* @param index buffeȑރf[^̊Jnʒu
* @param length ރf[^
*
* @exception IOException o̓G[ꍇ
*/
public void write( byte[] buffer, int index, int length )
throws IOException {
if( this.pos + length < this.limit && this.cache.isEmpty() ){
this.pos += length;
this.archive.write( buffer, index, length ); //throws IOException
}else{
this.cache.add( buffer, index, length );
}
}
//------------------------------------------------------------------
// method of java.io.OutputStream
//------------------------------------------------------------------
// other
//------------------------------------------------------------------
// public void close()
//------------------------------------------------------------------
/**
* ̃Xg[ĎgpĂ\[XJB
*/
public void close(){
this.archive = null;
}
}
/**
* RandomAccessFile InputStream̃C^[tFCXԂ郉bpNXB
* k̃TCYkÕTCYƂɉ𓀂
* kŊi[Ȃ̂߂ɕKvB
*/
private static class RandomAccessFileInputStream extends InputStream {
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// source
//------------------------------------------------------------------
// private RandomAccessFile archive
// private Cache front
// private Cache rear
//------------------------------------------------------------------
/**
* ǂݍRandomAccessFile
*/
private RandomAccessFile archive;
/**
* OLbV
* ݂ǂݍ݂ǂz̃LbV
*/
private Cache front;
/**
* 㕔LbV
* Ẽf[^̃LbV
*/
private Cache rear;
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// position
//------------------------------------------------------------------
// private long pos
// private long limit
//------------------------------------------------------------------
/**
* ݏʒu
*/
private long pos;
/**
* ǂݍE
*/
private long limit;
//------------------------------------------------------------------
// consutructor
//------------------------------------------------------------------
// public RandomAccessFileInputStream( RandomAccessFile archive,
// RandomAccessFileOutputStream out )
//------------------------------------------------------------------
/**
* RandomAccessFile bv InputStream \zB
*
* @param archive f[^ RandomAccessFile
* @param out OɈkf[^Ă RandomAccessFileOutputStream
*/
public RandomAccessFileInputStream( RandomAccessFile archive,
RandomAccessFileOutputStream out ){
this.archive = archive;
this.pos = out.start;
this.limit = out.pos;
this.front = new Cache();
this.rear = out.cache;
}
//------------------------------------------------------------------
// method of java.io.InputStream
//------------------------------------------------------------------
// read
//------------------------------------------------------------------
// public int read()
// public int read( byte[] buffer )
// public int read( byte[] buffer, int index, int length )
//------------------------------------------------------------------
/**
* LbVRandomAccessFile 1oCg̃f[^ǂݍށB
*
* @return ǂݍ܂ꂽ1oCg̃f[^<br>
* ǂݍރf[^ -1
*
* @exception IOException o̓G[ꍇ
*/
public int read() throws IOException {
int return_value = this.front.read();
if( return_value < 0 ){
if( this.pos < this.limit ){
this.archive.seek( this.pos++ );
return_value = this.archive.read();
}else{
return_value = this.rear.read();
}
}
return return_value;
}
/**
* LbV RandomAccessFile buffer悤Ƀf[^ǂݍށB
*
* @param buffer ǂݍ܂ꂽf[^i[obt@
*
* @return ۂɓǂݍ܂ꂽf[^
*
* @exception IOException o̓G[ꍇ
*/
public int read( byte[] buffer ) throws IOException {
return this.read( buffer, 0, buffer.length );
}
/**
* LbV RandomAccessFile bufferindexlengthoCgǂݍށB
*
* @param buffer ǂݍ܂ꂽf[^i[obt@
* @param index buffer̓ǂݍ݊Jnʒu
* @param length ǂݍރf[^
*
* @return ۂɓǂݍ܂ꂽf[^
*
* @exception IOException o̓G[ꍇ
*/
public int read( byte[] buffer, int index, int length ) throws IOException {
int count = 0;
int ret = this.front.read( buffer, index, length );
if( 0 <= ret ){
count += ret;
}
this.archive.seek( this.pos ); //throws IOException
ret = Math.min( length - count,
Math.max( (int)( this.limit - this.pos ), 0 ) );
this.archive.readFully( buffer, index + count, ret ); //throws IOException
if( 0 <= ret ){
this.pos += ret;
count += ret;
}
ret = this.rear.read( buffer, index + count, length - count );
if( 0 <= ret ){
count += ret;
}
if( 0 < count ){
return count;
}else{
return -1;
}
}
//------------------------------------------------------------------
// method of java.io.InputStream
//------------------------------------------------------------------
// other
//------------------------------------------------------------------
// public void close()
//------------------------------------------------------------------
/**
* ̃Xg[
* gpĂ\[XJB
*/
public void close(){
this.front = null;
this.rear = null;
this.archive = null;
}
//------------------------------------------------------------------
// original method
//------------------------------------------------------------------
// public void cache( long pos )
//------------------------------------------------------------------
/**
* pos܂œǂݍłȂA
* ݓǂݍ݈ʒupos܂ł̃f[^
* OLbVɃf[^ljB
*
* @param pos archivȅoʒu
*/
public void cache( long pos ) throws IOException {
int length = (int)Math.min( this.limit - this.pos,
pos - this.pos );
byte[] buffer = new byte[ length ];
if( 0 < length ){
this.archive.seek( this.pos ); //throws IOException
this.archive.readFully( buffer ); //throws IOException
this.front.add( buffer );
this.pos += length;
}
}
}
/**
* E݂
* ǂݍ݈ʒu݂ꍇ
* f[^LbV邽߂ɎgpB
*/
private static class Cache{
//------------------------------------------------------------------
// instance field
//------------------------------------------------------------------
// private Vector cache
// private byte[] current
// private int position
//------------------------------------------------------------------
/**
* byte[] Vector
* evf Sēǂݍ܂ꂽ
* Ɏ̂ĂB
*/
private Vector cache;
/**
* ݓǂݍݒ̗vf
*/
private byte[] current;
/**
* currenťݏʒu
*/
private int position;
//------------------------------------------------------------------
// constructor
//------------------------------------------------------------------
// public Cache()
//------------------------------------------------------------------
/**
* f[^̈ꎞޔ@\\zB
*/
public Cache(){
this.current = null;
this.position = 0;
this.cache = new Vector();
}
//------------------------------------------------------------------
// read
//------------------------------------------------------------------
// public int read()
// public int read( byte[] buffer, int index, int length )
//------------------------------------------------------------------
/**
* LbV 1oCg̃f[^
* 0`255Ƀ}bvēǂݍށB
*
* @return ǂݍ܂ꂽ1bytẽf[^<br>
* LbVŃf[^ꍇ -1
*/
public int read(){
if( null != this.current ){
int ret = this.current[ this.position++ ] & 0xFF;
if( this.current.length <= this.position ){
if( 0 < this.cache.size() ){
this.current = (byte[])this.cache.firstElement();
this.cache.removeElementAt( 0 );
}else{
this.current = null;
}
this.position = 0;
}
return ret;
}else{
return -1;
}
}
/**
* LbV bufferindexŎn܂ꏊlengthoCgǂݍށB
*
* @param buffer ǂݍf[^ێobt@
* @param index buffer̓ǂݍ݊Jnʒu
* @param length ǂݍރf[^
*
* @return ۂɓǂݍ܂ꂽf[^<br>
* LbVŃf[^ꍇ -1
*/
public int read( byte[] buffer, int index, int length ){
int count = 0;
while( null != this.current && count < length ){
int copylen = Math.min( this.current.length - this.position,
length - count );
System.arraycopy( this.current, this.position,
buffer, index + count, copylen );
this.position += copylen;
count += copylen;
if( this.current.length <= this.position ){
if( 0 < this.cache.size() ){
this.current = (byte[])this.cache.firstElement();
this.cache.removeElementAt( 0 );
}else{
this.current = null;
}
this.position = 0;
}
}
if( count == 0 ){
return -1;
}else{
return count;
}
}
//------------------------------------------------------------------
// write
//------------------------------------------------------------------
// public void add( byte[] buffer )
// public void add( byte[] buffer, int index, int length )
//------------------------------------------------------------------
/**
* LbVɃf[^ljB
*
* @param buffer f[^̊i[ꂽobt@
*/
public void add( byte[] buffer ){
if( this.current == null ){
this.current = buffer;
}else{
this.cache.addElement( buffer );
}
}
/**
* LbVɃf[^ljB
*
* @parma buffer f[^̊i[ꂽobt@
* @param index buffer̃f[^Jnʒu
* @param length i[Ăf[^̗
*/
public void add( byte[] buffer, int index, int length ){
byte[] buf = new byte[ length ];
System.arraycopy( buffer, index, buf, 0, length );
if( this.current == null ){
this.current = buf;
}else{
this.cache.addElement( buf );
}
}
//------------------------------------------------------------------
// other
//------------------------------------------------------------------
// public boolean isEmpty()
//------------------------------------------------------------------
/**
* ̃LbVB
*
* @return ̃LbVȂ true
* łȂ false
*/
public boolean isEmpty(){
return this.current == null;
}
}
}
//end of LhaRetainedOutputStream.java
|