فهرست منبع

Auto Upload background test

Marino Faggiana 7 سال پیش
والد
کامیت
e06716b768
2فایلهای تغییر یافته به همراه19 افزوده شده و 13 حذف شده
  1. 14 12
      iOSClient/AppDelegate.m
  2. 5 1
      iOSClient/Main/CCMain.m

+ 14 - 12
iOSClient/AppDelegate.m

@@ -371,11 +371,13 @@
 {
     // BACKGROND & FOREGROUND
 
+    NSLog(@"-P-R-O-C-E-S-S-");
     
     if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
 
         // ONLY BACKGROUND
-       
+        [app performSelectorOnMainThread:@selector(loadAutomaticUpload:) withObject:[NSNumber numberWithInt:1] waitUntilDone:NO];
+        
     } else {
 
         // ONLY FOREFROUND
@@ -1224,19 +1226,15 @@
 
 - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
 {
-    NSLog(@"[LOG] Start Fetch");
+    NSLog(@"[LOG] Start perform Fetch With Completion Handler");
     
     // Verify new photo
     [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"initStateAutoUpload" object:nil];
     
-    // after 20 sec verify Re
+    // after 20 sec
     dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
         
-        NSLog(@"[LOG] End Fetch 20 sec.");
-    });
-    
-    // after 25 sec
-    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 25 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
+        [app performSelectorOnMainThread:@selector(loadAutomaticUpload:) withObject:[NSNumber numberWithInt:1] waitUntilDone:NO];
         
         NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND session != ''", self.activeAccount] sorted:nil ascending:NO];
         
@@ -1246,7 +1244,7 @@
             completionHandler(UIBackgroundFetchResultNoData);
         }
         
-        NSLog(@"[LOG] End Fetch 25 sec.");
+        NSLog(@"[LOG] End 20 sec. perform Fetch With Completion Handler");
     });
 }
 
@@ -1259,16 +1257,20 @@
 //
 - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)())completionHandler
 {
-    NSLog(@"[LOG] Start completition handler from background - identifier : %@", identifier);
+    NSLog(@"[LOG] Start handle Events For Background URLSession: %@", identifier);
     
-    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 25 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
+    // after 20 sec
+    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
+        
+        // ONLY BACKGROUND
+        [app performSelectorOnMainThread:@selector(loadAutomaticUpload:) withObject:[NSNumber numberWithInt:1] waitUntilDone:NO];
         
         self.backgroundSessionCompletionHandler = completionHandler;
         void (^completionHandler)() = self.backgroundSessionCompletionHandler;
         self.backgroundSessionCompletionHandler = nil;
         completionHandler();
         
-        NSLog(@"[LOG] End 25 sec. completition handler - identifier : %@", identifier);
+        NSLog(@"[LOG] End 20 sec. Start handle Events For Background URLSession: %@", identifier);
     });
 }
 

+ 5 - 1
iOSClient/Main/CCMain.m

@@ -1641,10 +1641,14 @@
 
 - (void)uploadFileSuccess:(CCMetadataNet *)metadataNet fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost
 {
-    // Automatic upload All
+    // Auto upload All
     if([selector isEqualToString:selectorUploadAutomaticAll])
         [app performSelectorOnMainThread:@selector(loadAutomaticUpload:) withObject:[NSNumber numberWithInt:k_maxConcurrentOperationDownloadUpload] waitUntilDone:NO];
     
+    // Auto Upload
+    if([selector isEqualToString:selectorUploadAutomatic])
+        [app performSelectorOnMainThread:@selector(loadAutomaticUpload:) withObject:[NSNumber numberWithInt:1] waitUntilDone:NO];
+
     if ([selectorPost isEqualToString:selectorReadFolderForced] ) {
             
         [self readFolderWithForced:YES serverUrl:serverUrl];