objective-c – 使用iOS Dropbox SDK进行核心数据的分块上传

前端之家收集整理的这篇文章主要介绍了objective-c – 使用iOS Dropbox SDK进行核心数据的分块上传前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个iOS应用程序,它使用Core Data进行持久数据存储.我将DropBox集成为用户执行持久存储文件(appname.sqlite)备份的一种方式.

UIButton调用一个方法来查看DropBox上是否已存在文件

if([[DBSession sharedSession]isLinked])
            {
               NSString *folderName = [[self.dateFormatter stringFromDate:[NSDate date]] stringByReplacingOccurrencesOfString:@"/" withString:@"-"];
               NSString *destinationPath = [NSString stringWithFormat:@"/GradeBook Pro/Backup/%@/",folderName];
               self.MetadataIndex = MetaDATA_REQUEST_BACKUP;
               [self.restClient loadMetadata:destinationPath];
            }

loadedMetadata委托方法使用现有文件的rev号(如果存在)启动上载.

-(void) restClient:(DBRestClient *)client loadedMetadata:(DBMetadata *)Metadata
{
            SAVE_CORE_DATA;
            NSString *folderName = [[self.dateFormatter stringFromDate:[NSDate date]] stringByReplacingOccurrencesOfString:@"/" withString:@"-"];
            NSString *documentsDirectory = DOCUMENTS_DIRECTORY;
            NSString *sourcePath = [NSString stringWithFormat:@"%@/GradeBookPro.sqlite",documentsDirectory];
            NSString *destinationPath = [NSString stringWithFormat:@"/GradeBook Pro/Backup/%@/",folderName];
            [self.restClient uploadFile:@"GradeBookPro.sqlite" toPath:destinationPath withParentRev:[[Metadata.contents lastObject]rev] fromPath:sourcePath];               
}

这适用于完美网络连接上相当小的文件或大文件,但上传过程中的任何小错误都会取消整个过程.我想切换到使用分块上传方法,但我不知道如何实际执行.sqlite文件的’分块’.

我似乎无法找到任何使用我可以从中学习的分块上传的示例应用程序,文档只是说以块的形式提供文件.

所以,我的问题是:

>通过可能不稳定的网络连接上传文件,分块上传是否正确解决用户问题?
>你能指点我为’chunking’文件的示例代码/ app /文档吗?我对DropBox SDK非常满意.

谢谢!

解决方法

我将自己回答这个问题,以防万一其他人有同样的问题.

事实证明,我这样做比实际需要更困难. DropBox SDK处理文件分块,所以我只需要启动传输并对委托调用做出反应.使用的方法是:

要发送文件块 – 对于第一个块,使用nil作为uploadId,使用0作为offset:

- (void)uploadFileChunk:(NSString *)uploadId offset:(unsigned long long)offset fromPath:(NSString *)localPath;

发送最后一个块后,使用此方法提交上传

- (void)uploadFile:(NSString *)filename toPath:(NSString *)parentFolder withParentRev:(NSString *)parentRev fromUploadId:(NSString *)uploadId;

我按如下方式处理了委托方法

- (void)restClient:(DBRestClient *)client uploadedFileChunk:(NSString *)uploadId newOffset:(unsigned long long)offset fromFile:(NSString *)localPath expires:(NSDate *)expiresDate
    {
        unsigned long long fileSize = [[[NSFileManager defaultManager]attributesOfItemAtPath:[FileHelper localDatabaseFilePath] error:nil]fileSize];

        if (offset >= fileSize)
        {
            //Upload complete,commit the file.
            [self.restClient uploadFile:DATABASE_FILENAME toPath:[FileHelper remoteDatabaseDirectory] withParentRev:self.databaseRemoteRevision fromUploadId:uploadId];
        }
        else
        {
            //Send the next chunk and update the progress HUD.
            self.progressHUD.progress = (float)((float)offset / (float)fileSize);
            [self.restClient uploadFileChunk:uploadId offset:offset fromPath:[FileHelper localDatabaseFilePath]];
        }
    }

由于我试图解决的主要问题是处理不良连接,我实现了失败的块上传的委托方法

- (void)restClient:(DBRestClient *)client uploadFileChunkFailedWithError:(NSError *)error
{
    if (error != nil && (self.uploadErrorCount < DROPBox_MAX_UPLOAD_FAILURES))
    {
        self.uploadErrorCount++;
        NSString* uploadId = [error.userInfo objectForKey:@"upload_id"];
        unsigned long long offset = [[error.userInfo objectForKey:@"offset"]unsignedLongLongValue];
        [self.restClient uploadFileChunk:uploadId offset:offset fromPath:[FileHelper localDatabaseFilePath]];
    }
    else
    {
      //show an error message and cancel the process
    }
}
原文链接:https://www.f2er.com/c/119367.html

猜你在找的C&C++相关文章