2

我无法从我的应用程序在一个设备上将简单文件写入 iCloud 容器,然后在我的应用程序第一次在第二台设备上运行时成功读取同一个文件。

我在一对新重置的设备上使用空的 Ubiquity Container 开始了这个测试场景。下面是演示我遇到的问题的测试用例代码和控制台日志记录。下面的所有代码都在后台线程上运行。

我在第一台设备上安装并运行测试用例。代码在 ubiquity 容器中查找某个文件,并在找不到时创建它。显然,这是它第一次在第一台设备上运行时的预期。我希望(并期待)当应用程序全新安装并在第二台设备上运行时,它能够找到并读取在第一台设备上创建的文件的内容。似乎在重置设备上新安装的应用程序永远无法找到和读取现有文件,并且总是认为它需要创建一个新文件,如果它已经存在,不幸的是最终替换了 ubiquity 容器中的文件。

但是,在第一次尝试(在第二台设备上)未能找到并读取文件后,如果我删除应用程序,重新安装然后在同一设备上重新运行它,它确实找到了文件并能够读取其当前内容。似乎应用程序的第一次运行导致文件被加载到普遍存在的缓存中,但不是处于应用程序可以找到的状态。该应用程序的第二次运行似乎在缓存中找到了该文件。

我知道您应该开始在 iOS 设备上下载文件,但在第一次使用设备时,它会报告“找不到文件”。这里还有什么需要做的吗?或者这看起来像是一个新的或已知的错误?

以下代码用于确定 ubiquity 容器中是否存在令牌文件并确保它可以被读取。

NSError *error;
BOOL rc;

NSFileManager *fm = [[NSFileManager alloc] init];
NSURL *ubiquityURL = [fm URLForUbiquityContainerIdentifier:nil];
NSURL *tokenURL = [ubiquityURL URLByAppendingPathComponent:@"iCloudTokenFile"];

NSLog(@"isTokenFilePresentAtUrl: Entered for Device Name: %@", [[UIDevice currentDevice] name]);

error = nil;
rc = [fm startDownloadingUbiquitousItemAtURL:tokenURL error:&error];
NSLog(@"startDownloadingUbiquitousItemAtURL: %d Error: %@(%d)", rc, error.domain, error.code);

rc = [fm isUbiquitousItemAtURL:tokenURL];
NSLog(@"isUbiquitousItemAtURL: %d", rc);

NSNumber *isUbiquitousItem = nil;
error = nil;
rc = [tokenURL getResourceValue:&isUbiquitousItem forKey:NSURLIsUbiquitousItemKey error:&error];
NSLog(@"getResourceValue: %d isUbiquitousItem: %@ Error: %@(%d)", rc, isUbiquitousItem, error.domain, error.code);

NSNumber *isDownloading = nil;
error = nil;
rc = [tokenURL getResourceValue:&isDownloading forKey:NSURLUbiquitousItemIsDownloadingKey error:&error];
NSLog(@"getResourceValue: %d isDownloading: %@ Error: %@(%d)", rc, isDownloading, error.domain, error.code);

NSNumber *isDownloaded = nil;
error = nil;
rc = [tokenURL getResourceValue:&isDownloaded forKey:NSURLUbiquitousItemIsDownloadedKey error:&error];
NSLog(@"getResourceValue: %d isDownloaded: %@ Error: %@(%d)", rc, isDownloaded, error.domain, error.code);

以下代码用于尝试从 ubiquity 容器中读取令牌文件。

__block BOOL success = NO;
__block NSError *error = nil;

NSFileCoordinator *fc = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
[fc coordinateReadingItemAtURL:tokenURL
                       options:NSFileCoordinatorReadingWithoutChanges
                         error:&error
                    byAccessor:^(NSURL *newURL)
 {
     NSLog(@"readTokenFileFromUrl: Trying to read Token File.");

     NSNumber *isDownloaded = nil;
     error = nil;
     BOOL rc = [tokenURL getResourceValue:&isDownloaded forKey:NSURLUbiquitousItemIsDownloadedKey error:&error];
     NSLog(@"getResourceValue: %d isDownloaded: %@ Error: %@(%d)", rc, isDownloaded, error.domain, error.code);

     NSString *uuidString =  nil;
     NSError *blockerror = nil;
     uuidString = [NSString stringWithContentsOfURL:newURL
                                           encoding:NSUTF8StringEncoding
                                              error:&blockerror];

     NSLog(@"readTokenFileFromUrl: Token read from file: %@", uuidString);
 }];

如果无法读取现有令牌文件,以下代码用于将令牌文件写入 ubiquity 容器。我期望此代码只会由第一个设备运行一次。

NSFileCoordinator *fc = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
NSError *error = nil;
[fc coordinateWritingItemAtURL:tokenURL
                       options:NSFileCoordinatorWritingForReplacing
                         error:&error
                    byAccessor:^(NSURL *newURL)
 {
     NSUUID *uuid = [[NSUUID alloc] init];
     NSString *uuidString = [uuid UUIDString];

     NSError *blockerror = nil;
     NSLog(@"writeTokenFileToUrl: Writing token to file: %@", uuidString);

     [uuidString writeToURL:newURL
                 atomically:YES
                   encoding:NSUTF8StringEncoding
                      error:&blockerror];
 }];

该应用程序在“Red iPod touch”上首次安装并运行。

isTokenFilePresentAtUrl: Entered for Device Name: Red iPod touch 
startDownloadingUbiquitousItemAtURL: 0 Error: NSCocoaErrorDomain(4) 
isUbiquitousItemAtURL: 0 
getResourceValue: 0 isUbiquitousItem: (null) Error: NSPOSIXErrorDomain(2) 
getResourceValue: 0 isDownloading: (null) Error: NSPOSIXErrorDomain(2) 
getResourceValue: 0 isDownloaded: (null) Error: NSPOSIXErrorDomain(2) 
readTokenFileFromUrl: Trying to read Token File. 
getResourceValue: 0 isDownloaded: (null) Error: NSPOSIXErrorDomain(2) 
readTokenFileFromUrl: Token from File: (null) 
readTokenFileFromUrl: Error reading uuid Token from File: NSCocoaErrorDomain(260) 
loadiCloudStore: isUbiquitousItemAtURL: Token File actually does not appear to be present. 
writeTokenFileToUrl: Writing token to file: 6AAA8D81-4BB5-4BF4-AD31-E152D3BADD13

此时,通过 developer.icloud.com 网站验证该文件存在于 Ubiquity 容器中。然后在名为“Blue iPod touch”的第二台设备上安装并首次运行该应用程序。

isTokenFilePresentAtUrl: Entered for Device Name: Blue iPod touch
startDownloadingUbiquitousItemAtURL: 0 Error: NSCocoaErrorDomain(4)
isUbiquitousItemAtURL: 0
getResourceValue: 0 isUbiquitousItem: (null) Error: NSPOSIXErrorDomain(2)
getResourceValue: 0 isDownloading: (null) Error: NSPOSIXErrorDomain(2)
getResourceValue: 0 isDownloaded: (null) Error: NSPOSIXErrorDomain(2)
readTokenFileFromUrl: Trying to read Token File.
getResourceValue: 0 isDownloaded: (null) Error: NSPOSIXErrorDomain(2)
readTokenFileFromUrl: Token from File: (null)
readTokenFileFromUrl: Error reading uuid Token from File: NSCocoaErrorDomain(260)

对于本次测试,App 在尝试读取后停止,不允许尝试写入或替换令牌文件。然后该应用程序被杀死、删除并重新安装并在 Blue iPod touch 上再次运行。

isTokenFilePresentAtUrl: Entered for Device Name: Blue iPod touch
startDownloadingUbiquitousItemAtURL: 1 Error: (null)(0)
isUbiquitousItemAtURL: 1
getResourceValue: 1 isUbiquitousItem: 1 Error: (null)(0)
getResourceValue: 1 isDownloading: 1 Error: (null)(0)
getResourceValue: 1 isDownloaded: 0 Error: (null)(0)
readTokenFileFromUrl: Trying to read Token File.
getResourceValue: 1 isDownloaded: 0 Error: (null)(0)
readTokenFileFromUrl: Token read from file: 6AAA8D81-4BB5-4BF4-AD31-E152D3BADD13

这次它找到并读取具有预期内容的文件。

4

1 回答 1

0

好吧,我没有放弃,我现在认为我有一个可以接受的解决这个问题的方法。解决方案的关键是第二台设备能够成功检测到第一台设备写入泛在容器的令牌文件,而不是尝试写入文件本身。

以下是对我有用的步骤:

  • 立即尝试从容器中读取令牌文件。
  • 如果成功,请使用该文件并忽略其余步骤。
  • 否则,启动元数据查询,其谓词将触发两个特定文件名(您尝试读取的令牌文件和“虚拟”文件)。
  • 现在使用虚拟文件名将文件写入 ubiquity 容器。
  • 当元数据查询的结果到达时,检查它报告的文件的上传/下载状态。
  • 如果查询曾经报告看到令牌文件,那么这不是第一个设备,它应该继续尝试读取文件直到成功。这可能需要一段时间,但它最终会读到它。
  • 如果元数据查询报告虚拟文件已完全上传并且仍然没有令牌文件的迹象,那么可以安全地假设这是第一个设备并且现在可以写入令牌文件了。
  • 我发现等到令牌文件的状态完全上传后再尝试使用令牌很有用。否则,如果出现网络问题,另一台也启动此进程的设备可能会做同样的事情,并认为它是第一个设备。

似乎将虚拟文件写入通用容器“启动”了元数据查询,足以让它报告第二个设备上令牌文件的存在。没有它,元数据查询永远不会报告令牌文件在除第一台设备之外的任何设备上的存在。

于 2012-12-11T01:03:13.943 回答