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
|
#import "CSByteStreamHandle.h"
NSString *CSByteStreamEOFReachedException=@"CSByteStreamEOFReachedException";
@implementation CSByteStreamHandle
-(id)initWithName:(NSString *)descname length:(off_t)length
{
if((self=[super initWithName:descname length:length]))
{
bytestreamproducebyte_ptr=(uint8_t (*)(id,SEL,off_t))[self methodForSelector:@selector(produceByteAtOffset:)];
}
return self;
}
-(id)initWithHandle:(CSHandle *)handle length:(off_t)length bufferSize:(int)buffersize;
{
if((self=[super initWithHandle:handle length:length bufferSize:buffersize]))
{
bytestreamproducebyte_ptr=(uint8_t (*)(id,SEL,off_t))[self methodForSelector:@selector(produceByteAtOffset:)];
}
return self;
}
-(id)initAsCopyOf:(CSByteStreamHandle *)other
{
[self _raiseNotSupported:_cmd];
return nil;
}
-(int)streamAtMost:(int)num toBuffer:(void *)buffer
{
bytesproduced=0;
if(setjmp(eofenv)==0)
{
while(bytesproduced<num)
{
uint8_t byte=bytestreamproducebyte_ptr(self,@selector(produceByteAtOffset:),streampos+bytesproduced);
((uint8_t *)buffer)[bytesproduced++]=byte;
if(endofstream) break;
}
}
else
{
[self endStream];
}
return bytesproduced;
}
-(void)resetStream
{
[self resetByteStream];
}
-(void)resetByteStream {}
-(uint8_t)produceByteAtOffset:(off_t)pos { return 0; }
-(void)endByteStream { [self endStream]; }
@end
/*
@implementation CSFilterHandle
-(id)initWithHandle:(CSHandle *)handle
{
if(self=[super initWithName:[handle name]])
{
parent=[handle retain];
readatmost_ptr=(int (*)(id,SEL,int,void *))[parent methodForSelector:@selector(readAtMost:toBuffer:)];
pos=0;
coro=nil;
// start couroutine which returns control immediately
}
return self;
}
-(id)initAsCopyOf:(CSFilterHandle *)other
{
parent=nil; coro=nil; [self release];
[self _raiseNotImplemented:_cmd];
return nil;
}
-(void)dealloc
{
[parent release];
[coro release];
[super dealloc];
}
-(off_t)offsetInFile { return pos; }
-(int)readAtMost:(int)num toBuffer:(void *)buffer
{
if(!num) return 0;
ptr=buffer;
left=num;
if(!coro)
{
coro=[self newCoroutine];
[(id)coro filter];
} else [coro switchTo];
//if(eof)...
return num-left;
}
-(void)filter {}
@end
*/
|