forked from KosmicTask/Fragaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ICUPattern.m
243 lines (188 loc) · 5.77 KB
/
ICUPattern.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
//
// ICUPattern.m
// CocoaICU
//
// Created by Aaron Evans on 11/19/06.
// Copyright 2006 Aaron Evans. All rights reserved.
//
// more info: http://icu.sourceforge.net/apiref/icu4c/uregex_8h.html
//
// inspiration: http://java.sun.com/j2se/1.5.0/docs/api/index.html?java/util/regex/Pattern.html
//
#import "ICUPattern.h"
#import "ICUMatcher.h"
#import "NSStringICUAdditions.h"
struct URegularExpression;
/**
* Structure represeting a compiled regular rexpression, plus the results
* of a match operation.
* @draft ICU 3.0
*/
typedef struct URegularExpression URegularExpression;
#define U_HIDE_DRAFT_API 1
#define U_DISABLE_RENAMING 1
#import <unicode/uregex.h>
#import <unicode/ustring.h>
unsigned const ICUCaseInsensitiveMatching = UREGEX_CASE_INSENSITIVE;
unsigned const ICUComments = UREGEX_COMMENTS;
unsigned const ICUDotMatchesAll = UREGEX_DOTALL;
unsigned const ICUMultiline = UREGEX_MULTILINE;
unsigned const ICUUnicodeWordBoundaries = UREGEX_UWORD;
@interface ICUPattern (Private)
-(void)setRe:(URegularExpression *)p;
-(unsigned)flags;
-(UChar *)textToSearch;
@end
@implementation ICUPattern
+(ICUPattern *)patternWithString:(NSString *)aPattern flags:(unsigned)flags {
return [[self alloc] initWithString:aPattern flags:flags];
}
+(ICUPattern *)patternWithString:(NSString *)aPattern {
return [[self alloc] initWithString:aPattern flags:0];
}
-(id)initWithString:(NSString *)aPattern flags:(unsigned)f {
self = [super init];
if (!self) {
return nil;
}
textToSearch = NULL;
flags = f;
UParseError err;
UErrorCode status = 0;
UChar *regexStr = [aPattern UTF16String];
URegularExpression *e = uregex_open(regexStr, -1, flags, &err, &status);
if(U_FAILURE(status)) {
[NSException raise:@"Invalid Pattern Exception"
format:@"Could not compile pattern: %s", u_errorName(status)];
}
[self setRe:e];
return self;
}
-(id)initWithString:(NSString *)aPattern {
return [self initWithString:aPattern flags:0];
}
-(void)dealloc {
// if(re != NULL)
// NSZoneFree([self zone], re);
if(textToSearch != NULL)
free(textToSearch);
}
-(NSString *)stringToSearch {
return [NSString stringWithICUString:[self textToSearch]];
}
-(void)setStringToSearch:(NSString *)aStringToSearchOver {
NSParameterAssert(aStringToSearchOver);
UChar *utf16String = [aStringToSearchOver copyUTF16String];
UErrorCode status = 0;
uregex_setText([self re], utf16String, -1, &status);
[self reset];
if(U_FAILURE(status)) {
free(utf16String);
[NSException raise:@"Invalid String Exception"
format:@"Could not set text to match against: %s", u_errorName(status)];
}
if(textToSearch)
free(textToSearch);
textToSearch = utf16String;
}
-(UChar *)textToSearch {
return (UChar *)textToSearch;
}
- (id)copyWithZone:(NSZone *)zone {
ICUPattern *p = [[[self class] allocWithZone:zone] initWithString:[self description] flags:[self flags]];
UErrorCode status = 0;
URegularExpression *r = uregex_clone([self re], &status);
if(U_FAILURE(status))
[NSException raise:@"Copy Exception"
format:@"Could not copy pattern: %s", u_errorName(status)];
[p setRe:r];
return p;
}
-(void)reset {
UErrorCode status = 0;
uregex_reset([self re], 0, &status);
if(U_FAILURE(status)) {
[NSException raise:@"Pattern Exception"
format:@"Could not reset pattern: %s", u_errorName(status)];
}
}
-(unsigned)flags {
return flags;
}
-(NSString *)pattern {
return [self description];
}
-(void)setRe:(URegularExpression *)p {
if(re != NULL)
NSZoneFree(nil, re);
re = p;
}
-(void *)re {
return re;
}
-(NSString *)description {
if([self re] != NULL) {
UChar *p = NULL;
UErrorCode status = 0;
int len = 0;
p = (UChar *)uregex_pattern([self re], &len, &status);
if(U_FAILURE(status)) {
[NSException raise:@"Pattern Exception"
format:@"Could not get pattern text from pattern."];
}
return [[NSString alloc] initWithBytes:p length:len encoding:[NSString nativeUTF16Encoding]];
}
return nil;
}
-(NSArray *)componentsSplitFromString:(NSString *)stringToSplit
{
[self setStringToSearch:stringToSplit];
BOOL isDone = NO;
UErrorCode status = 0;
NSMutableArray *results = [NSMutableArray array];
int destFieldsCapacity = 16;
size_t destCapacity = u_strlen([self textToSearch]);
while(!isDone) {
UChar *destBuf = (UChar *)NSZoneCalloc(nil, destCapacity, sizeof(UChar));
int requiredCapacity = 0;
UChar *destFields[destFieldsCapacity];
int numberOfComponents = uregex_split([self re],
destBuf,
destCapacity,
&requiredCapacity,
destFields,
destFieldsCapacity,
&status);
if(status == U_BUFFER_OVERFLOW_ERROR) { // buffer was too small, grow it
NSZoneFree(nil, destBuf);
NSAssert(destCapacity * 2 < INT_MAX, @"Overflow occurred splitting string.");
destCapacity = (destCapacity < (unsigned)requiredCapacity) ? (unsigned)requiredCapacity : destCapacity * 2;
status = 0;
} else if(destFieldsCapacity == numberOfComponents) {
destFieldsCapacity *= 2;
NSAssert(destFieldsCapacity *2 < INT_MAX, @"Overflow occurred splitting string.");
NSZoneFree(nil, destBuf);
status = 0;
} else if(U_FAILURE(status)) {
NSZoneFree(nil, destBuf);
isDone = YES;
} else {
int i;
for(i=0; i<numberOfComponents; i++) {
NSAssert(i < destFieldsCapacity, @"Unexpected number of components found in split.");
UChar *offsetStart = destFields[i];
[results addObject:[NSString stringWithICUString:offsetStart]];
}
isDone = YES;
}
}
if(U_FAILURE(status))
[NSException raise:@"Split Exception"
format:@"Unable to split string: %@", u_errorName(status)];
return [NSArray arrayWithArray:results];
}
-(BOOL)matchesString:(NSString *)stringToMatchAgainst {
ICUMatcher *m = [ICUMatcher matcherWithPattern:self overString:stringToMatchAgainst];
return [m matches];
}
@end