-
Notifications
You must be signed in to change notification settings - Fork 8
/
NSString+MyAdditions.m
416 lines (294 loc) · 10.9 KB
/
NSString+MyAdditions.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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//----------------------------------------------------------------------------------------
// NSString+MyAdditions.m - Additional NSString methods & utilities.
//
// Created by Dominique PERETTI on Sun Jul 18 2004.
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
// Copyright © Chris, 2007 - 2010. All rights reserved.
//----------------------------------------------------------------------------------------
#import "NSString+MyAdditions.h"
//----------------------------------------------------------------------------------------
NSString*
UTF8 (const char* aUTF8String)
{
return aUTF8String ? [NSString stringWithUTF8String: aUTF8String] : @"";
}
//----------------------------------------------------------------------------------------
BOOL
ToUTF8 (NSString* string, char* buf, unsigned int bufSize)
{
return string &&
[string getCString: buf maxLength: bufSize encoding: NSUTF8StringEncoding];
}
//----------------------------------------------------------------------------------------
NSString*
EscapeURL (NSString* url)
{
return [url stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
}
//----------------------------------------------------------------------------------------
NSString*
UnEscapeURL (id url)
{
if ([url isKindOfClass: [NSURL class]])
url = [url absoluteString];
return [url stringByReplacingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
}
//----------------------------------------------------------------------------------------
static inline BOOL
isURLChar (unichar ch)
{
// Based on table in http://www.opensource.apple.com/darwinsource/10.5.6/CF-476.17/CFURL.c
if (ch >= 33 && ch <= 126)
if (ch != '"' && ch != '%' && ch != '<' && ch != '>' &&
(ch < '[' || ch > '^') && ch != '`' && (ch < '{' || ch == '~'))
return TRUE;
return FALSE;
}
//----------------------------------------------------------------------------------------
static inline BOOL
isHexChar (unichar ch)
{
return (ch >= '0' && ch <= '9') || (ch >= 'A' && ch <= 'F') || (ch >= 'a' && ch <= 'f');
}
//----------------------------------------------------------------------------------------
// Convert a string to a URL, escaping if necessary.
NSURL*
StringToURL (NSString* urlString, BOOL isDirectory)
{
int length = [urlString length];
if (isDirectory && [urlString characterAtIndex: length - 1] != '/')
urlString = [urlString stringByAppendingString: @"/"];
// Escape urlString iff it isn't already escaped
for (int i = 0; i < length; ++i)
{
unichar ch = [urlString characterAtIndex: i];
if (!isURLChar(ch) &&
(ch != '%' || i >= length - 2 || !isHexChar([urlString characterAtIndex: i + 1]) ||
!isHexChar([urlString characterAtIndex: i + 2])))
{
urlString = [urlString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
break;
}
}
return [NSURL URLWithString: urlString];
}
//----------------------------------------------------------------------------------------
// Returns "<path>" of "<path>/+<name>/*"
NSString*
DeleteLastComponent (NSString* path)
{
Assert(path != nil);
unsigned int length0 = [path length], length = length0;
// Strip trailing '/'s
while (length > 0 && [path characterAtIndex: length - 1] == '/')
--length;
// Strip trailing name
while (length > 0 && [path characterAtIndex: length - 1] != '/')
--length;
// Strip final '/'
if (length > 0)
--length;
if (length == 0 && length0 > 0 && [path characterAtIndex: 0] == '/')
return @"/";
return [path substringToIndex: length];
}
//----------------------------------------------------------------------------------------
// Returns "<path>/<name>"
NSString*
AppendPathComponent (NSString* path, NSString* name)
{
Assert(path != nil);
Assert(name != nil);
unsigned int length = [path length];
if (length == 0)
return name;
if ([path characterAtIndex: length - 1] != '/')
return [path stringByAppendingFormat: @"/%@", name];
return [path stringByAppendingString: name];
}
//----------------------------------------------------------------------------------------
// Returns "<path> [Rev. <revision>]"
NSString*
PathWithRevision (id path, id revision)
{
assert(path != nil);
path = UnEscapeURL(path);
if (revision == nil)
return path;
// if ([revision isKindOfClass: [NSNumber class]])
// revision = [revision absoluteString];
return [NSString stringWithFormat: @"%@ [Rev. %@]", path, revision];
}
//----------------------------------------------------------------------------------------
// Returns "<path>@<revision>"
NSString*
PathPegRevision (id path, id revision)
{
assert(path != nil);
if ([path isKindOfClass: [NSURL class]])
path = [path absoluteString];
const int lastIndex = [path length] - 1;
if ([path characterAtIndex: lastIndex] == '/')
path = [path substringToIndex: lastIndex];
if (revision == nil)
return path;
return [NSString stringWithFormat: @"%@@%@", path, revision];
}
//----------------------------------------------------------------------------------------
// Returns "<path>@<revision>"
NSString*
PathPegRevNum (id path, unsigned int revision)
{
assert(path != nil);
if ([path isKindOfClass: [NSURL class]])
path = [path absoluteString];
return [NSString stringWithFormat: @"%@@%u", path, revision];
}
//----------------------------------------------------------------------------------------
#pragma mark -
//----------------------------------------------------------------------------------------
// An NSString that responds to [fileSystemRepresentation] by calling [UTF8String].
@interface MsgString : NSString
{
NSString* fString;
}
@end
//----------------------------------------------------------------------------------------
@implementation MsgString
- (id) initWithString: (NSString*) aString
{
self = [super init];
if (self != nil)
{
fString = [aString copy];
}
return self;
}
//----------------------------------------------------------------------------------------
- (void) dealloc
{
[fString release];
[super dealloc];
}
//----------------------------------------------------------------------------------------
- (unsigned int) length
{
return [fString length];
}
//----------------------------------------------------------------------------------------
- (unichar) characterAtIndex: (unsigned) index
{
return [fString characterAtIndex: index];
}
//----------------------------------------------------------------------------------------
- (void) getCharacters: (unichar*) buffer range: (NSRange) aRange
{
return [fString getCharacters: buffer range: aRange];
}
//----------------------------------------------------------------------------------------
- (const char*) fileSystemRepresentation
{
return [fString UTF8String];
}
@end
//----------------------------------------------------------------------------------------
// Return a normalized string that prevents [fileSystemRepresentation] from decomposing it.
NSString*
MessageString (NSString* str)
{
assert(str != nil);
return [MsgString stringWithString: [str normalizeEOLs]];
}
//----------------------------------------------------------------------------------------
#pragma mark -
//----------------------------------------------------------------------------------------
@implementation NSString (MyAdditions)
//----------------------------------------------------------------------------------------
- (NSComparisonResult) compareAlphaNum: (NSString*) aString
{
return [self compare: aString options: NSCaseInsensitiveSearch | NSNumericSearch];
}
//----------------------------------------------------------------------------------------
+ (NSString*) stringByAddingPercentEscape: (NSString*) url
{
return [(id) CFURLCreateStringByAddingPercentEscapes(NULL, (CFStringRef) url, NULL, NULL,
kCFStringEncodingUTF8) autorelease];
}
//----------------------------------------------------------------------------------------
// used in MyRepository.m as a workaround to a problem in standard
// [NSString stringByDeletingLastPathComponent] which turns "svn://blah" to "svn:/blah"
- (NSString*) stringByDeletingLastComponent
{
NSRange r = [[self trimSlashes] rangeOfString: @"/" options: NSBackwardsSearch];
if ( r.length > 0 )
return [self substringToIndex: r.location];
return self;
}
//----------------------------------------------------------------------------------------
- (NSString*) escapeURL
{
return [(id) CFURLCreateStringByAddingPercentEscapes(NULL, (CFStringRef) self, NULL, NULL,
kCFStringEncodingUTF8) autorelease];
}
//----------------------------------------------------------------------------------------
- (NSString*) trimSlashes
{
static NSCharacterSet* chSet = nil;
if (chSet == nil)
[chSet = [NSCharacterSet characterSetWithCharactersInString: @"/"] retain];
return [self stringByTrimmingCharactersInSet: chSet];
}
//----------------------------------------------------------------------------------------
// Normalize end-of-line characters. Also remove any spurious control characters.
- (NSString*) normalizeEOLs
{
NSMutableString* str = [NSMutableString string];
[str setString: self];
[str replaceOccurrencesOfString: @"\r\n" withString: @"\n"
options: NSLiteralSearch range: NSMakeRange(0, [str length])];
[str replaceOccurrencesOfString: @"\r" withString: @"\n"
options: NSLiteralSearch range: NSMakeRange(0, [str length])];
int i;
for (i = 0; i < 32; ++i)
if (i != 9 && i != 10 && i != 13)
{
unichar ch = i;
NSString* chStr = [NSString stringWithCharacters: &ch length: sizeof(ch)];
[str replaceOccurrencesOfString: chStr withString: @""
options: NSLiteralSearch range: NSMakeRange(0, [str length])];
}
return str;
}
//----------------------------------------------------------------------------------------
// Returns "<self> [Rev. <revision>]"
- (NSString*) withRevision: (NSString*) revision
{
if (revision == nil)
return self;
return [NSString stringWithFormat: @"%@ [Rev. %@]", self, revision];
}
//----------------------------------------------------------------------------------------
// Returns TRUE if self begins with <str>
- (BOOL) beginsWith: (NSString*) str
{
Assert(str != nil);
return [self rangeOfString: str options: NSLiteralSearch | NSAnchoredSearch].location == 0;
}
//----------------------------------------------------------------------------------------
// Returns TRUE if self ends with <str>
- (BOOL) endsWith: (NSString*) str
{
Assert(str != nil);
const unsigned flags = NSLiteralSearch | NSAnchoredSearch | NSBackwardsSearch;
return [self rangeOfString: str options: flags].location != NSNotFound;
}
//----------------------------------------------------------------------------------------
// Returns TRUE if self contains <str>
- (BOOL) contains: (NSString*) str
{
Assert(str != nil);
return [self rangeOfString: str options: NSLiteralSearch].location != NSNotFound;
}
@end
//----------------------------------------------------------------------------------------
// End of NSString+MyAdditions.m