forked from zepouet/Xee-xCode-4.5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XeeIFFHandle.m
250 lines (181 loc) · 5.42 KB
/
XeeIFFHandle.m
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
#import "XeeIFFHandle.h"
@implementation XeeIFFHandle
-(id)initWithFilePointer:(FILE *)file closeOnDealloc:(BOOL)closeondealloc description:(NSString *)description fileType:(uint32_t)type
{
if(self=[super initWithFilePointer:file closeOnDealloc:closeondealloc name:description])
{
file_id=[super readID];
switch(file_id)
{
case 'FORM': case 'LIST': case 'CAT ': case 'PROP': case 'RIFX':
align_mask=1;
big_endian=YES;
break;
case 'FOR4': case 'LIS4': case 'CAT4': case 'PRO4':
align_mask=3;
big_endian=YES;
break;
case 'FOR8': case 'LIS8': case 'CAT8': case 'PRO8':
align_mask=7;
big_endian=YES;
break;
case 'RIFF':
align_mask=1;
big_endian=NO;
break;
default:
[self release];
return nil;
}
file_end=[self offsetInFile]+[self _readHeaderUint32];
file_type=[super readID];
if(type&&file_type!=type)
{
[self release];
return nil;
}
next_chunk=[self offsetInFile];
curr_id=curr_start=curr_size=0;
}
return self;
}
-(BOOL)isShort
{
return file_end>=[self fileSize];
}
-(uint32_t)fileID { return file_id; }
-(uint32_t)fileType { return file_type; }
-(uint32_t)nextChunk
{
if(next_chunk>=file_end)
{
curr_id=0;
curr_size=0;
curr_start=0;
return 0;
}
[super seekToFileOffset:next_chunk];
curr_id=[super readID];
curr_size=[self _readHeaderUint32];
curr_start=next_chunk+8;
next_chunk=curr_start+((curr_size+align_mask)&~align_mask);
return curr_id;
}
-(uint32_t)offsetInChunk { return [self offsetInFile]-curr_start; }
-(uint32_t)chunkSize { return curr_size; }
-(uint32_t)chunkID { return curr_id; }
-(uint32_t)bytesLeft { return curr_start+curr_size-[self offsetInFile]; }
-(void)seekToChunkOffset:(off_t)offs
{
uint32_t newpos=curr_start+offs;
if(newpos<curr_start||newpos>=curr_start+curr_size) [self _raiseChunk];
[super seekToFileOffset:newpos];
}
-(void)seekToEndOfFile { [self _raiseNotSupported:_cmd]; }
-(void)seekToFileOffset:(off_t)offs
{
if(offs<curr_start||offs>=curr_start+curr_size) [self _raiseChunk];
[super seekToFileOffset:offs];
}
-(int16_t)readInt16
{
if(big_endian) return [self readInt16BE];
else return [self readInt16LE];
}
-(int32_t)readInt32
{
if(big_endian) return [self readInt32BE];
else return [self readInt32LE];
}
-(int64_t)readInt64
{
if(big_endian) return [self readInt64BE];
else return [self readInt64LE];
}
-(uint16_t)readUInt16
{
if(big_endian) return [self readUInt16BE];
else return [self readUInt16LE];
}
-(uint32_t)readUInt32
{
if(big_endian) return [self readUInt32BE];
else return [self readUInt32LE];
}
-(uint64_t)readUInt64
{
if(big_endian) return [self readUInt64BE];
else return [self readUInt64LE];
}
-(uint32_t)_readHeaderUint32
{
if(big_endian) return [super readUInt32BE];
else return [super readUInt32LE];
}
#define XeeIFFReadValueImpl(type,name) \
-(type)name \
{ \
if([self bytesLeft]<sizeof(type)) [self _raiseChunk]; \
return [super name]; \
}
XeeIFFReadValueImpl(int8_t,readInt8)
XeeIFFReadValueImpl(uint8_t,readUInt8)
XeeIFFReadValueImpl(int16_t,readInt16BE)
XeeIFFReadValueImpl(int32_t,readInt32BE)
XeeIFFReadValueImpl(int64_t,readInt64BE)
XeeIFFReadValueImpl(uint16_t,readUInt16BE)
XeeIFFReadValueImpl(uint32_t,readUInt32BE)
XeeIFFReadValueImpl(uint64_t,readUInt64BE)
XeeIFFReadValueImpl(int16_t,readInt16LE)
XeeIFFReadValueImpl(int32_t,readInt32LE)
XeeIFFReadValueImpl(int64_t,readInt64LE)
XeeIFFReadValueImpl(uint16_t,readUInt16LE)
XeeIFFReadValueImpl(uint32_t,readUInt32LE)
XeeIFFReadValueImpl(uint64_t,readUInt64LE)
XeeIFFReadValueImpl(uint32_t,readID)
-(void)pushBackByte:(int)byte { [self _raiseNotSupported:_cmd]; }
-(NSData *)chunkContents { return [[self copyChunkContents] autorelease]; }
-(NSData *)remainingChunkContents { return [[self copyRemainingChunkContents] autorelease]; }
-(NSData *)copyChunkContents
{
[self seekToChunkOffset:0];
return [self copyRemainingChunkContents];
}
-(NSData *)copyRemainingChunkContents
{
return [super copyDataOfLength:[self bytesLeft]];
}
-(NSData *)fileContents { [self _raiseNotSupported:_cmd]; return nil; }
-(NSData *)remainingFileContents { [self _raiseNotSupported:_cmd]; return nil; }
-(void)readBytes:(int)num toBuffer:(void *)buffer
{
if([self offsetInFile]+num>curr_start+curr_size) [self _raiseChunk];
[super readBytes:num toBuffer:buffer];
}
-(XeeIFFHandle *)IFFHandleForChunk
{
if(!curr_start) [self _raiseChunk];
[super seekToFileOffset:curr_start-8];
return [[[XeeIFFHandle alloc] initWithFilePointer:fh closeOnDealloc:NO description:name fileType:0] autorelease];
}
-(void)_raiseChunk
{
if(!curr_start) [NSException raise:@"XeeNoIFFChunkException" format:@"Attempted to read from an IFF handle before the first chunk has been parsed."];
else [NSException raise:@"XeeReadOutsideChunkException" format:@"Attempted to read outside the current IFF chunk."];
}
-(NSString *)description
{
return [NSString stringWithFormat:@"XeeIFFHandle for file \"%@\", position %d in chunk %c%c%c%c",
name,[self offsetInChunk],(curr_id>>24)&0xff,(curr_id>>16)&0xff,(curr_id>>8)&0xff,curr_id&0xff];
}
+(id)IFFHandleWithPath:(NSString *)path { return [self IFFHandleWithPath:path fileType:0]; }
+(id)IFFHandleWithPath:(NSString *)path fileType:(uint32_t)type
{
if(!path) return nil;
FILE *fh=fopen([path fileSystemRepresentation],"rb");
CSFileHandle *handle=[[[XeeIFFHandle alloc] initWithFilePointer:fh closeOnDealloc:YES description:path fileType:type] autorelease];
if(handle) return handle;
fclose(fh);
return nil;
}
@end