You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.8 KiB

//
// ANTLRInputStream.m
// ANTLR
//
// Created by Alan Condit on 2/21/11.
// Copyright 2011 Alan's MachineWorks. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ANTLRInputStream.h"
@implementation ANTLRInputStream
@synthesize encoding;
+ (id) newANTLRInputStream
{
return [[ANTLRInputStream alloc] init];
}
+ (id) newANTLRInputStream:(NSInputStream *)anInput
{
return [[ANTLRInputStream alloc] initWithInput:anInput size:ANTLRReaderStream.INITIAL_BUFFER_SIZE readBufferSize:ANTLRReaderStream.READ_BUFFER_SIZE encoding:NSASCIIStringEncoding];
}
+ (id) newANTLRInputStream:(NSInputStream *)anInput size:(NSInteger)theSize
{
return [[ANTLRInputStream alloc] initWithInput:anInput size:theSize readBufferSize:ANTLRReaderStream.READ_BUFFER_SIZE encoding:NSASCIIStringEncoding];
}
+ (id) newANTLRInputStream:(NSInputStream *)anInput encoding:(NSStringEncoding)theEncoding
{
return [[ANTLRInputStream alloc] initWithInput:anInput size:ANTLRReaderStream.INITIAL_BUFFER_SIZE readBufferSize:ANTLRReaderStream.READ_BUFFER_SIZE encoding:theEncoding];
}
+ (id) newANTLRInputStream:(NSInputStream *)anInput
size:(NSInteger)theSize
readBufferSize:(NSInteger)theRBSize
encoding:(NSStringEncoding)theEncoding
{
return [[ANTLRInputStream alloc] initWithInput:anInput size:theSize readBufferSize:theRBSize encoding:theEncoding];
}
- (id) init
{
self = [super init];
return self;
}
- (id) initWithInput:(NSInputStream *)anInput
size:(NSInteger)theSize
readBufferSize:(NSInteger)theRBSize
encoding:(NSStringEncoding)theEncoding
{
self = [super initWithReader:anInput size:theSize readBufferSize:theRBSize];
if ( self != nil ) {
//[self load:theSize readBufferSize:theRBSize]; // load called in super class
}
return self;
}
@end