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
|
#import "XADRegex.h"
static BOOL IsRegexSpecialCharacter(unichar c)
{
return c=='^'||c=='.'||c=='['||c=='$'||c=='('||c==')'||
c=='|'||c=='*'||c=='+'||c=='?'||c=='{'||c=='\\';
}
@implementation XADRegex
+(XADRegex *)regexWithPattern:(NSString *)pattern options:(int)options
{ return [[[XADRegex alloc] initWithPattern:pattern options:options] autorelease]; }
+(XADRegex *)regexWithPattern:(NSString *)pattern
{ return [[[XADRegex alloc] initWithPattern:pattern options:0] autorelease]; }
+(NSString *)null
{
static NSString *nullstring=nil;
if(!nullstring) nullstring=[[NSMutableString alloc] initWithString:@""];
return nullstring;
}
+(NSString *)patternForLiteralString:(NSString *)string
{
int len=[string length];
NSMutableString *escaped=[NSMutableString stringWithCapacity:len];
for(int i=0;i<len;i++)
{
unichar c=[string characterAtIndex:i];
if(IsRegexSpecialCharacter(c)) [escaped appendFormat:@"\\%C",c];
else [escaped appendFormat:@"%C",c];
}
return [NSString stringWithString:escaped];
}
+(NSString *)patternForGlob:(NSString *)glob
{
int len=[glob length];
NSMutableString *pattern=[NSMutableString stringWithCapacity:len+2];
[pattern appendString:@"^"];
for(int i=0;i<len;i++)
{
unichar c=[glob characterAtIndex:i];
if(c=='\\')
{
if(i==len-1) [pattern appendString:@"\\"];
else
{
i++;
unichar c=[glob characterAtIndex:i];
if(IsRegexSpecialCharacter(c)) [pattern appendFormat:@"\\%C",c];
else [pattern appendFormat:@"%C",c];
}
}
else if(c=='*')
{
[pattern appendString:@".*"];
}
else if(c=='?')
{
[pattern appendString:@"."];
}
else if(c=='[')
{
[pattern appendString:@"["];
}
else if(c==']')
{
[pattern appendString:@"]"];
}
else if(IsRegexSpecialCharacter(c))
{
[pattern appendFormat:@"\\%C",c];
}
else
{
[pattern appendFormat:@"%C",c];
}
}
[pattern appendString:@"$"];
return [NSString stringWithString:pattern];
}
-(id)initWithPattern:(NSString *)pattern options:(int)options
{
if((self=[super init]))
{
patternstring=[pattern retain];
currdata=nil;
matches=NULL;
int err=regcomp(&preg,[pattern UTF8String],options|REG_EXTENDED);
if(err)
{
[self autorelease];
char errbuf[256];
regerror(err,&preg,errbuf,sizeof(errbuf));
[NSException raise:@"XADRegexException" format:@"Could not compile regex \"%@\": %s",pattern,errbuf];
}
matches=calloc(sizeof(regmatch_t),preg.re_nsub+1);
if(!matches)
{
[self autorelease];
[NSException raise:NSMallocException format:@"Out of memory when creating regex \"%@\"",pattern];
}
}
return self;
}
-(void)dealloc
{
[patternstring release];
regfree(&preg);
free(matches);
[currdata release];
[super dealloc];
}
-(void)beginMatchingString:(NSString *)string { [self beginMatchingData:[string dataUsingEncoding:NSUTF8StringEncoding]]; }
-(void)beginMatchingData:(NSData *)data { [self beginMatchingData:data range:NSMakeRange(0,[data length])]; }
-(void)beginMatchingData:(NSData *)data range:(NSRange)range
{
matchrange=range;
if(data==currdata) return;
[currdata release];
currdata=[data retain];
}
-(void)finishMatching { [currdata release]; currdata=nil; }
-(BOOL)matchNext
{
matches[0].rm_so=matchrange.location;
matches[0].rm_eo=matchrange.location+matchrange.length;
if(regexec(&preg,[currdata bytes],preg.re_nsub+1,matches,REG_STARTEND)==0)
{
matchrange.length-=matches[0].rm_eo-matchrange.location;
matchrange.location=matches[0].rm_eo;
return YES;
}
[self finishMatching];
return NO;
}
-(NSString *)stringForMatch:(int)n
{
if(n>preg.re_nsub||n<0) [NSException raise:NSRangeException format:@"Index %d out of range for regex \"%@\"",n,self];
if(matches[n].rm_so==-1&&matches[n].rm_eo==-1) return nil;
return [[[NSString alloc] initWithBytes:[currdata bytes]+matches[n].rm_so
length:matches[n].rm_eo-matches[n].rm_so encoding:NSUTF8StringEncoding] autorelease];
}
-(NSArray *)allMatches
{
NSMutableArray *array=[NSMutableArray arrayWithCapacity:preg.re_nsub+1];
for(int i=0;i<=preg.re_nsub;i++)
{
NSString *str=[self stringForMatch:i];
if(str) [array addObject:str];
else [array addObject:[XADRegex null]];
}
return [NSArray arrayWithArray:array];
}
-(BOOL)matchesString:(NSString *)string
{
[self beginMatchingString:string];
BOOL res=[self matchNext];
[self finishMatching];
return res;
}
-(NSString *)matchedSubstringOfString:(NSString *)string
{
[self beginMatchingString:string];
NSString *res=nil;
if([self matchNext]) res=[self stringForMatch:0];
[self finishMatching];
return res;
}
-(NSArray *)capturedSubstringsOfString:(NSString *)string
{
[self beginMatchingString:string];
NSArray *res=nil;
if([self matchNext]) res=[self allMatches];
[self finishMatching];
return res;
}
-(NSArray *)allMatchedSubstringsOfString:(NSString *)string
{
[self beginMatchingString:string];
NSMutableArray *array=[NSMutableArray array];
while([self matchNext]) [array addObject:[self stringForMatch:0]];
[self finishMatching];
return [NSArray arrayWithArray:array];
}
-(NSArray *)allCapturedSubstringsOfString:(NSString *)string
{
[self beginMatchingString:string];
NSMutableArray *array=[NSMutableArray array];
while([self matchNext]) [array addObject:[self allMatches]];
[self finishMatching];
return [NSArray arrayWithArray:array];
}
-(NSArray *)componentsOfSeparatedString:(NSString *)string
{
[self beginMatchingString:string];
NSMutableArray *array=[NSMutableArray array];
regoff_t prevstart=0;
const char *bytes=[currdata bytes];
while([self matchNext])
{
[array addObject:[[[NSString alloc] initWithBytes:bytes+prevstart length:matches[0].rm_so-prevstart
encoding:NSUTF8StringEncoding] autorelease]];
prevstart=matches[0].rm_eo;
}
[array addObject:[[[NSString alloc] initWithBytes:bytes+prevstart length:[currdata length]-prevstart
encoding:NSUTF8StringEncoding] autorelease]];
[self finishMatching];
return [NSArray arrayWithArray:array];
}
-(NSString *)pattern { return patternstring; }
-(NSString *)description { return patternstring; }
@end
@implementation NSString (XADRegex)
-(BOOL)matchedByPattern:(NSString *)pattern { return [self matchedByPattern:pattern options:0]; }
-(BOOL)matchedByPattern:(NSString *)pattern options:(int)options
{ return [[XADRegex regexWithPattern:pattern options:options] matchesString:self]; }
-(NSString *)substringMatchedByPattern:(NSString *)pattern { return [self substringMatchedByPattern:pattern options:0]; }
-(NSString *)substringMatchedByPattern:(NSString *)pattern options:(int)options
{ return [[XADRegex regexWithPattern:pattern options:options] matchedSubstringOfString:self]; }
-(NSArray *)substringsCapturedByPattern:(NSString *)pattern { return [self substringsCapturedByPattern:pattern options:0]; }
-(NSArray *)substringsCapturedByPattern:(NSString *)pattern options:(int)options
{ return [[XADRegex regexWithPattern:pattern options:options] capturedSubstringsOfString:self]; }
-(NSArray *)allSubstringsMatchedByPattern:(NSString *)pattern { return [self allSubstringsMatchedByPattern:pattern options:0]; }
-(NSArray *)allSubstringsMatchedByPattern:(NSString *)pattern options:(int)options
{ return [[XADRegex regexWithPattern:pattern options:options] allMatchedSubstringsOfString:self]; }
-(NSArray *)allSubstringsCapturedByPattern:(NSString *)pattern { return [self allSubstringsCapturedByPattern:pattern options:0]; }
-(NSArray *)allSubstringsCapturedByPattern:(NSString *)pattern options:(int)options
{ return [[XADRegex regexWithPattern:pattern options:options] allCapturedSubstringsOfString:self]; }
-(NSArray *)componentsSeparatedByPattern:(NSString *)pattern { return [self componentsSeparatedByPattern:pattern options:0]; }
-(NSArray *)componentsSeparatedByPattern:(NSString *)pattern options:(int)options
{ return [[XADRegex regexWithPattern:pattern options:options] componentsOfSeparatedString:self]; }
-(NSString *)escapedPattern { return [XADRegex patternForLiteralString:self]; }
@end
|