forked from karelia/KSFileUtilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KSPathUtilities.m
346 lines (262 loc) · 12.3 KB
/
KSPathUtilities.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
//
// KSPathUtilities.m
//
// Created by Mike Abdullah based on earlier code by Dan Wood
// Copyright © 2005 Karelia Software
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
#import "KSPathUtilities.h"
@interface KSIncrementedPath : NSString
{
@private
NSString *_storage;
NSString *_basePath;
NSUInteger _suffix;
}
- (instancetype)initWithBasePath:(NSString *)basePath suffix:(NSUInteger)suffix;
@end
#pragma mark -
@implementation NSString (KSPathUtilities)
#pragma mark Making Paths
+ (NSString *)ks_stringWithPath:(NSString *)path relativeToDirectory:(NSString *)directory;
{
NSParameterAssert(path);
if (!directory || path.absolutePath) return path;
NSString *result = [directory stringByAppendingPathComponent:path];
return result;
}
#pragma mark Path Suffix
- (NSString *)ks_stringWithPathSuffix:(NSString *)aString;
{
NSString *extension = self.pathExtension;
if (extension.length)
{
NSString *result = [[self.stringByDeletingPathExtension
stringByAppendingString:aString]
stringByAppendingPathExtension:extension];
return result;
}
else
{
// It's possible that the extension-less path ends with a slash. They need to be stripped
return [[self ks_standardizedPOSIXPath] stringByAppendingString:aString];
}
}
- (NSString *)ks_stringByIncrementingPath;
{
return [[KSIncrementedPath alloc] initWithBasePath:self suffix:2];
}
#pragma mark Finding Path Components
- (void)ks_enumeratePathComponentsInRange:(NSRange)range
options:(NSStringEnumerationOptions)opts // only NSStringEnumerationSubstringNotRequired is supported for now
usingBlock:(void (^)(NSString *component, NSRange componentRange, NSRange enclosingRange, BOOL *stop))block;
{
while (range.length)
{
// Seek for next path separator
NSRange enclosingRange = NSMakeRange(range.location, 0);
NSRange separatorRange = [self rangeOfString:@"/" options:NSLiteralSearch range:range];
// Separators that don't mark a new component can be more-or-less ignored
while (separatorRange.location == range.location)
{
// Absolute paths are a special case where we have to treat the leading slash as a component
if (separatorRange.location == 0)
{
// Search for immediately following separator, but no more
separatorRange = NSMakeRange(separatorRange.length, 0); // weird fake, yes
if (self.length > separatorRange.location && [self characterAtIndex:separatorRange.location] == '/') separatorRange.length = 1;
break;
}
range.location += separatorRange.length; range.length -= separatorRange.length;
if (range.length == 0) return;
enclosingRange.length += separatorRange.length;
separatorRange = [self rangeOfString:@"/" options:NSLiteralSearch range:range];
}
// Now we know where the component lies
NSRange componentRange = range;
if (separatorRange.location == NSNotFound)
{
range.length = 0; // so we finish after this iteration
}
else
{
range = NSMakeRange(NSMaxRange(separatorRange), NSMaxRange(range) - NSMaxRange(separatorRange));
componentRange.length = (separatorRange.location - componentRange.location);
enclosingRange.length += separatorRange.length;
// Look for remainder of enclosingRange that immediately follow the component
separatorRange = [self rangeOfString:@"/" options:NSAnchoredSearch|NSLiteralSearch range:range];
while (separatorRange.location != NSNotFound)
{
enclosingRange.length += separatorRange.length;
range.location += separatorRange.length; range.length -= separatorRange.length;
separatorRange = [self rangeOfString:@"/" options:NSAnchoredSearch|NSLiteralSearch range:range];
}
}
enclosingRange.length += componentRange.length; // only add now that componentRange.length is correct
BOOL stop = NO;
block((opts & NSStringEnumerationSubstringNotRequired ? nil : [self substringWithRange:componentRange]),
componentRange,
enclosingRange,
&stop);
if (stop) return;
}
}
#pragma mark Comparing Paths
- (BOOL)ks_isEqualToPath:(NSString *)aPath;
{
NSString *myPath = self.stringByStandardizingPath;
aPath = aPath.stringByStandardizingPath;
BOOL result = ([myPath caseInsensitiveCompare:aPath] == NSOrderedSame);
return result;
}
/* We can somewhat cheat by giving each path a trailing slash and then do simple string comparison.
That way we ensure that we don't have something like ABCDEFGH being considered a subpath of ABCD
But ABCD/EFGH will be.
*/
- (BOOL)ks_isSubpathOfPath:(NSString *)aPath
{
NSParameterAssert(aPath); // karelia case #115844
// Strip off trailing slashes as they confuse the search
while ([aPath hasSuffix:@"/"] && ![self hasSuffix:@"/"] && aPath.length > 1)
{
aPath = [aPath substringToIndex:aPath.length - 1];
}
// Used to -hasPrefix:, but really need to do it case insensitively
NSRange range = [self rangeOfString:aPath
options:(NSAnchoredSearch | NSCaseInsensitiveSearch)];
if (range.location != 0) return NO;
// Correct for last component being only a sub*string*
if (self.length == range.length) return YES; // shortcut for exact match
if ([aPath hasSuffix:@"/"]) return YES; // when has a directory termintator, no risk of mismatch
BOOL result = ([self characterAtIndex:range.length] == '/');
return result;
}
- (NSString *)ks_pathRelativeToDirectory:(NSString *)dirPath
{
if (dirPath.absolutePath)
{
if (!self.absolutePath) return self; // job's already done for us!
}
else
{
// An absolute path relative to a relative path is always going to be self
if (self.absolutePath) return self;
// But comparing two relative paths is a bit of an edge case. Internally, pretend they're absolute
dirPath = (dirPath ? [@"/" stringByAppendingString:dirPath] : @"/");
return [[@"/" stringByAppendingString:self] ks_pathRelativeToDirectory:dirPath];
}
// Determine the common ancestor directory containing both paths
__block NSRange mySearchRange = NSMakeRange(1, self.length - 1);
NSMutableString *result = [NSMutableString string];
if ([self hasPrefix:dirPath]) // easy win when self is obviously a subpath
{
mySearchRange.location = NSMaxRange([self rangeOfString:dirPath options:NSAnchoredSearch]);
mySearchRange.length = self.length - mySearchRange.location;
}
else
{
__block NSRange dirSearchRange = NSMakeRange(1, dirPath.length - 1);
[self ks_enumeratePathComponentsInRange:mySearchRange options:0 usingBlock:^(NSString *myComponent, NSRange myRange, NSRange enclosingRange, BOOL *stopOuter) {
// Does it match the other path?
[dirPath ks_enumeratePathComponentsInRange:dirSearchRange options:0 usingBlock:^(NSString *dirComponent, NSRange dirRange, NSRange enclosingRange, BOOL *stopInner) {
if ([myComponent compare:dirComponent options:0] == NSOrderedSame)
{
dirSearchRange = NSMakeRange(NSMaxRange(dirRange),
NSMaxRange(dirSearchRange) - NSMaxRange(dirRange));
mySearchRange = NSMakeRange(NSMaxRange(myRange),
NSMaxRange(mySearchRange) - NSMaxRange(myRange));
}
else
{
*stopOuter = YES;
}
*stopInner = YES;
}];
}];
// How do you get from the directory path, to commonDir?
[dirPath ks_enumeratePathComponentsInRange:dirSearchRange options:NSStringEnumerationSubstringNotRequired usingBlock:^(NSString *component, NSRange range, NSRange enclosingRange, BOOL *stop) {
// Ignore components which just specify current directory
if ([dirPath compare:@"." options:NSLiteralSearch range:range] == NSOrderedSame) return;
if (range.length == 2) NSAssert([dirPath compare:@".." options:NSLiteralSearch range:range] != NSOrderedSame, @".. unsupported: %@", dirPath);
if (result.length) [result appendString:@"/"];
[result appendString:@".."];
}];
}
// And then navigating from commonDir, to self, is mostly a simple append
NSString *pathRelativeToCommonDir = [self substringWithRange:mySearchRange];
// But ignore leading slash(es) since they cause relative path to be reported as absolute
while ([pathRelativeToCommonDir hasPrefix:@"/"])
{
pathRelativeToCommonDir = [pathRelativeToCommonDir substringFromIndex:1];
}
if (pathRelativeToCommonDir.length)
{
if (result.length) [result appendString:@"/"];
[result appendString:pathRelativeToCommonDir];
}
// Were the paths found to be equal?
if (result.length == 0)
{
[result appendString:@"."];
[result appendString:[self substringWithRange:mySearchRange]]; // match original's oddities
}
return result;
}
#pragma mark POSIX
/* Trailing slashes are insignificant under the POSIX standard. If the receiver has a trailing
* slash, a new string is returned with the slash removed.
*/
- (NSString *)ks_standardizedPOSIXPath
{
NSString *result = self;
while (result.length > 1 && [result hasSuffix:@"/"]) // Stops @"/" being altered
{
result = [result substringToIndex:(result.length - 1)];
}
return result;
}
/* You should generally use this method when comparing two paths for equality. Unlike -isEqualToString:
* it treats any trailing slash as insignificant. NO reference to the local filesystem is used.
*/
- (BOOL)ks_isEqualToPOSIXPath:(NSString *)otherPath
{
BOOL result = [[self ks_standardizedPOSIXPath] isEqualToString:[otherPath ks_standardizedPOSIXPath]];
return result;
}
@end
#pragma mark -
@implementation KSIncrementedPath
- (instancetype)initWithBasePath:(NSString *)basePath suffix:(NSUInteger)suffix;
{
NSParameterAssert(suffix >= 2);
self = [self init];
_basePath = [basePath copy];
_suffix = suffix;
_storage = [[basePath ks_stringWithPathSuffix:[NSString stringWithFormat:@"-%lu", (unsigned long) suffix]] copy];
return self;
}
- (NSString *)ks_stringByIncrementingPath;
{
return [[[self class] alloc] initWithBasePath:_basePath suffix:(_suffix + 1)];
}
#pragma mark NSString Primitives
- (NSUInteger)length; { return _storage.length; }
- (unichar)characterAtIndex:(NSUInteger)index; { return [_storage characterAtIndex:index]; }
@end