Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I save file packages in the iCloud and everything works until I reinstall the app or delete all content for that app direct from the iCloud (in Settings). I use that code to query and read files:

    NSMetadataQuery query = [[NSMetadataQuery alloc] init];
    [query setSearchScopes:[NSArray arrayWithObjects:NSMetadataQueryUbiquitousDocumentsScope, nil]];
    [query setPredicate:[NSPredicate predicateWithFormat:@"%K like '*'", NSMetadataItemFSNameKey]];

    NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
    [notificationCenter addObserver:self selector:@selector(metadataQueryDidFinishGatheringNotifiction:) name:NSMetadataQueryDidFinishGatheringNotification object:query];
    [notificationCenter addObserver:self selector:@selector(metadataQueryDidUpdateNotifiction:) name:NSMetadataQueryDidUpdateNotification object:query];

    [query startQuery];
    self.metadataQuery = query;



 - (void)metadataQueryDidFinishGatheringNotifiction:(NSNotification *)n
 {
      [self fileListReceived];
 }

 - (void)metadataQueryDidUpdateNotifiction:(NSNotification *)n
 {
      [self fileListReceived];
 }




- (void) fileListReceived
{
     [metadataQuery disableUpdates];

     dispatch_queue_t backgroundQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
     dispatch_async(backgroundQueue,^{
         NSInteger i;
         BOOL isDownloaded = NO;

         if (files == nil)
             files = [[NSMutableArray alloc] init];

         [self.files removeAllObjects];

         __block BOOL updateAfterDownloading = NO;

         for (i = 0; i < [metadataQuery resultCount]; i++) {
             @autoreleasepool {

                 NSMetadataItem *theFile = [metadataQuery resultAtIndex:i];

                 NSURL *fileURL = [theFile valueForAttribute:NSMetadataItemURLKey];

                 NSString *fileName = [theFile valueForAttribute:NSMetadataItemFSNameKey];

                 NSNumber *downloaded = (NSNumber *)[theFile valueForAttribute:NSMetadataUbiquitousItemIsDownloadedKey];
                 NSNumber *uploaded = (NSNumber *)[theFile valueForAttribute:NSMetadataUbiquitousItemIsUploadedKey];
                 NSNumber *stored = (NSNumber *)[theFile valueForAttribute:NSMetadataItemIsUbiquitousKey];

                 if (downloaded) {
                     isDownloaded = [downloaded boolValue];

                     if (!isDownloaded) {
                         NSError *error = nil;
                         if ([[NSFileManager defaultManager] startDownloadingUbiquitousItemAtURL:[theFile valueForAttribute:NSMetadataItemURLKey] error:&error]) {
                             NSURL *itemURL = fileURL;

                             NSError *error = nil;

                             NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
                             [coordinator coordinateReadingItemAtURL:itemURL options:0 error:&error byAccessor:^(NSURL *newURL) {
                                 updateAfterDownloading = YES;
                            }];
                         } else {
                             if (error) {
                                 NSLog(@"Error trying to download file: %@", error);
                             }
                         }
                     }
                 }

                 [self.files addObject:fileUrl];
             }
         }

         [self checkOrders];

         dispatch_async(dispatch_get_main_queue(),^{
                 [[NSNotificationCenter defaultCenter] postNotificationName:kiCloudFilesReceivedNotif object:self userInfo:nil];

             if (delegate != nil && [self.delegate respondsToSelector:@selector(iCloudFilesListReceived:)])
                 [self.delegate iCloudFilesListReceived:content];

             [metadataQuery enableUpdates];
         });
     });
 }

checkOrders:

- (void) checkOrders
{
    NSArray *orderFiles = [[NSArray alloc] initWithArray:self.files];

    for (NSURL *url in orderFiles) {
        Order *order = nil;
        [self getOrderAndContentForURL:url order:&order content:nil];
    }
}

This function I use to save order in the iCloud:

- (BOOL) saveOrderIniCloud:(Order *) order
{
    NSURL *pathURL = [[Global ubiquitousDocumentsDirectoryURL] URLByAppendingPathComponent:@"Orders"];

    if (pathURL == nil)
        return NO;

    if ([[NSFileManager defaultManager] fileExistsAtPath:pathURL.path isDirectory:nil] == NO) {
        NSError *error = nil;
        [[NSFileManager defaultManager] createDirectoryAtURL:pathURL withIntermediateDirectories:NO attributes:nil error:&error];
    }

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    NSURL *fileURL = nil;

    [dateFormatter setDateFormat:@"ddMMyyHHmmss"];

    fileURL = [pathURL URLByAppendingPathComponent:[NSString stringWithFormat:@"%@.ford", [dateFormatter stringFromDate:order.date]]];        

    NSFileWrapper *fileWrapper = [[NSFileWrapper alloc] initDirectoryWithFileWrappers:nil];
    NSData *content = [NSData dataWithContentsOfFile:order.filePath];

    NSString *extension = [[NSString alloc] initWithString:[order.filePath pathExtension]];
    order.filePath = [fileURL.path stringByReplacingOccurrencesOfString:@"ford" withString:extension options:0 range:NSMakeRange(0, [fileURL.path length])];

    if (([[fileWrapper fileWrappers] objectForKey:DATA_FILENAME] == nil) && (content != nil)) {
        NSFileWrapper *dataFileWrapper = [[NSFileWrapper alloc] initRegularFileWithContents:content];

        [dataFileWrapper setPreferredFilename:DATA_FILENAME];

        [fileWrapper addFileWrapper:dataFileWrapper];
    }

    if (([[fileWrapper fileWrappers] objectForKey:METADATA_FILENAME] == nil) && (order != nil)) {
        NSMutableData * data = [NSMutableData data];
        NSKeyedArchiver * archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
        [archiver encodeObject:order forKey:@"order"];
        [archiver finishEncoding];

        NSFileWrapper *orderFileWrapper = [[NSFileWrapper alloc] initRegularFileWithContents:data];

        [orderFileWrapper setPreferredFilename:METADATA_FILENAME];

        [fileWrapper addFileWrapper:orderFileWrapper];

    }

    BOOL saved = NO;

    NSError *error = nil;
    if ([fileWrapper writeToURL:fileURL options:NSFileWrapperWritingAtomic originalContentsURL:nil error:&error]) {
        saved = YES;
    } else {
        saved = NO;
    }


    return saved;
}

getOrderAndContent:

- (void) getOrderAndContentForURL:(NSURL *) fileURL order:(Order **) order content:(NSData **) content
{
if (fileURL == nil)
    return;

NSError *error = nil;
NSFileWrapper *fileWrapper = [[NSFileWrapper alloc] initWithURL:fileURL options:0 error:&error];

if (error) {
    return;
}

if (fileWrapper == nil)
    return;

NSFileWrapper *wrapper = [[fileWrapper fileWrappers] objectForKey:DATA_FILENAME];

if (!wrapper) {
    return;
}

NSData *contentData = [wrapper regularFileContents];

if (contentData == nil) {
    return;
}

if (content) {
    *content = contentData;
}

NSFileWrapper *orderWrapper = [[fileWrapper fileWrappers] objectForKey:METADATA_FILENAME];

if (!orderWrapper) {
    return;
}

NSData * data = [orderWrapper regularFileContents];

if (data == nil || [data length] == 0) {
    return;
}

NSKeyedUnarchiver * unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];

Order *sorder = (FaxOrder *)[unarchiver decodeObjectForKey:@"order"];

if (sorder == nil || ![sorder isKindOfClass:[Order class]]) {
    return;
}


if (order)
    *order = sorder;
}

If I save some orders (file packages) in the iCloud, then I delete the app and install it again, then in the fileListReceived function, the function coordinateReadingItemAtURL is blocking or waiting for something on the first order on the list. If I then delete that order direct from the iCloud, then I get EXC_BAD_ACCESS in the getOrderAndContentForURL function on that line NSKeyedUnarchiver * unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data]; If I delete all app content from the iCloud the problem is the same, even if I delete iCloud account and active it again and reinstall the app, I got the list of orders from the iCloud and app crashes in the same place. Could someone help me?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.