20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "OFZIPArchiveEntry.h"
#import "OFZIPArchiveEntry+Private.h"
#import "OFDataArray.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFFile.h"
#import "OFDeflateStream.h"
#import "OFChecksumFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFNotImplementedException.h"
#import "OFOpenFileFailedException.h"
#import "OFOutOfRangeException.h"
|
>
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#import "OFZIPArchiveEntry.h"
#import "OFZIPArchiveEntry+Private.h"
#import "OFDataArray.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFFile.h"
#import "OFDeflateStream.h"
#import "OFDeflate64Stream.h"
#import "OFChecksumFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFNotImplementedException.h"
#import "OFOpenFileFailedException.h"
#import "OFOutOfRangeException.h"
|
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
case 0: /* No compression */
_stream = [_file retain];
break;
case 8: /* Deflate */
_stream = [[OFDeflateStream alloc]
initWithStream: _file];
break;
default:
@throw [OFNotImplementedException
exceptionWithSelector: _cmd
object: self];
}
_localFileHeader = [localFileHeader retain];
|
>
>
>
>
|
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
|
case 0: /* No compression */
_stream = [_file retain];
break;
case 8: /* Deflate */
_stream = [[OFDeflateStream alloc]
initWithStream: _file];
break;
case 9: /* Deflate64 */
_stream = [[OFDeflate64Stream alloc]
initWithStream: _file];
break;
default:
@throw [OFNotImplementedException
exceptionWithSelector: _cmd
object: self];
}
_localFileHeader = [localFileHeader retain];
|