Cocoa NSBrowser和CFURLEnumeratorCreateDirectoryURL

时间:2012-03-28 19:16:18

标签: objective-c macos cocoa nsbrowser

我正在尝试理解来自Apple“ComplexBrowser”的示例,但很难找到“CFURLEnumeratorCreateDirectoryURL”的任何材料/教程。

ComplexBrowser Sample from Apple

这段代码到底发生了什么?

我不明白这种循环使用CFURLEnumeratorGetNextURL和东西。

对我来说,使用NSFileManager的方法似乎更简单,但更有限?

  

NSArray * contentsAtPath = [[NSFileManager defaultManager]   contentsOfDirectoryAtPath:parentPath错误:NULL];

- (NSArray *)children {
if (_children == nil || _childrenDirty) {
    // This logic keeps the same pointers around, if possible.
    NSMutableArray *newChildren = [NSMutableArray array];

    CFURLEnumeratorRef enumerator = CFURLEnumeratorCreateForDirectoryURL(NULL, (CFURLRef) _url, kCFURLEnumeratorSkipInvisibles, (CFArrayRef) [NSArray array]);
    NSURL *childURL = nil;
    CFURLEnumeratorResult enumeratorResult;
    do {
        enumeratorResult = CFURLEnumeratorGetNextURL(enumerator, (CFURLRef *) &childURL, NULL);
        if (enumeratorResult == kCFURLEnumeratorSuccess) {
            FileSystemNode *node = [[[FileSystemNode alloc] initWithURL:childURL] autorelease];
            if (_children != nil) {
                NSInteger oldIndex = [_children indexOfObject:childURL];
                if (oldIndex != NSNotFound) {
                    // Use the same pointer value, if possible
                    node = [_children objectAtIndex:oldIndex];
                }
            }
            [newChildren addObject:node];
        } else if (enumeratorResult == kCFURLEnumeratorError) {
            // A possible enhancement would be to present error-based items to the user.
        }
    } while (enumeratorResult != kCFURLEnumeratorEnd);

    [_children release];
    _childrenDirty = NO;
    // Now sort them
    _children = [[newChildren sortedArrayUsingComparator:^(id obj1, id obj2) {
        NSString *objName = [obj1 displayName];
        NSString *obj2Name = [obj2 displayName];
        NSComparisonResult result = [objName compare:obj2Name options:NSNumericSearch | NSCaseInsensitiveSearch | NSWidthInsensitiveSearch | NSForcedOrderingSearch range:NSMakeRange(0, [objName length]) locale:[NSLocale currentLocale]];
        return result;
    }] retain];
}

return _children;

}

1 个答案:

答案 0 :(得分:1)

由于此信息存储在不透明的C数据类型中,因此在核心基础中,它们提供C例程,为您提供有关数据的信息。这是一种封装形式,因此它们可以在幕后更改内容,而不会影响库的公共接口。

基本上,他们创建一个循环并继续从目录中询问下一个URL,直到他们找到目录的末尾。

  • enumerator是一种索引,用于跟踪网址列表中的位置。
  • enumeratorResult告诉我们是否有新网址(或者说有) 是错误,或者我们是最后的记录。)

当它遍历每个URL时,它会创建FileSystemNode并将它们添加到数组中,然后在循环遍历目录中的所有URL时返回该数组。