不,因为操作系统 [可能] 实际上会将文件复制到不同的位置,以便为您提供对其的访问权限,因此您必须使用NSFileCoordinator
.
但一切都没有丢失!有一个技巧:即使您的后端代码被设计为可移植的,如果您.cpp
在 Xcode 中将文件读取设置为“Objective-C++ Source”,您也可以在#import <Foundation/Foundation.h>
此处使用 Foundation 功能 ()。
因此,无论您当前在哪里实例化和读取std::ifstream
,都有一个#if defined(PLATFORM_MAC_OS_X)
(或其他),并在其中用代码包装您的文件读取NSFileCoordinator
。
上顶:
#ifdef PLATFORM_MAC_OS_X
#import <Foundation/Foundation.h>
@interface SidecarPresenter : NSObject<NSFilePresenter>
@property(readwrite, copy) NSURL* presentedItemURL;
@property(readwrite, copy) NSURL* primaryPresentedItemURL;
@property(readwrite, assign) NSOperationQueue* presentedItemOperationQueue;
-(instancetype)initWithImageUrl:(NSURL*)imageUrl andSidecarExtension:(NSString*)newExt;
@end
@implementation SidecarPresenter
- (instancetype)initWithImageUrl:(NSURL*)imageUrl andSidecarExtension:(NSString*)newExt
{
self = [super init];
if (self)
{
[self setPrimaryPresentedItemURL:imageURL];
[self setPresentedItemURL:[[imageUrl URLByDeletingPathExtension] URLByAppendingPathExtension:newExt]];
[self setPresentedItemOperationQueue:[NSOperationQueue mainQueue]];
}
return self;
}
- (void)dealloc
{
[_primaryPresentedItemURL release];
[_presentedItemURL release];
[super dealloc];
}
@end
#endif
然后:
#ifdef PLATFORM_MAC_OS_X
SidecarPresenter* presenter = [SidecarPresenter alloc];
[presenter initWithImageUrl:[NSURL fileURLWithPath:documentFilename]
andSidecarExtension:sidecarExtension]];
[presenter autorelease];
[NSFileCoordinator addFilePresenter:presenter];
NSFileCoordinator* coordinator = [[[NSFileCoordinator alloc] initWithFilePresenter:presenter] autorelease];
NSError* error = nil;
[coordinator coordinateReadingItemAtURL:presenter.presentedItemURL
options:NSFileCoordinatorReadingWithoutChanges
error:&error
byAccessor:^(NSURL* newURL)
{
std::ifstream strm([newURL fileSystemRepresentation]);
foo(strm);
}];
[NSFileCoordinator removeFilePresenter:presenter];
#else
std::ifstream strm(documentFilename);
foo(strm);
#endif
这样,后端和前端之间就没有来回的乒乓球了。并且 lambda 是同步调用的,因此您也不必担心竞争条件(可能只是一点额外的延迟)。唯一的代价是一些特定于平台的泄漏,但至少它隐藏在预处理器指令中。