소스 검색

Recovery of FileUploader after sudden death

David A. Velasco 9 년 전
부모
커밋
5694915151
2개의 변경된 파일54개의 추가작업 그리고 5개의 파일을 삭제
  1. 38 3
      src/com/owncloud/android/datamodel/UploadsStorageManager.java
  2. 16 2
      src/com/owncloud/android/files/services/FileUploader.java

+ 38 - 3
src/com/owncloud/android/datamodel/UploadsStorageManager.java

@@ -137,7 +137,7 @@ public class UploadsStorageManager extends Observable {
      * @return num of updated uploads.
      */
     public int updateUpload(OCUpload ocUpload) {
-        Log_OC.e(TAG, "Updating " + ocUpload.getLocalPath() + " with status=" + ocUpload.getUploadStatus());
+        Log_OC.v(TAG, "Updating " + ocUpload.getLocalPath() + " with status=" + ocUpload.getUploadStatus());
 
         ContentValues cv = new ContentValues();
         cv.put(ProviderTableMeta.UPLOADS_LOCAL_PATH, ocUpload.getLocalPath());
@@ -212,7 +212,7 @@ public class UploadsStorageManager extends Observable {
      * @return 1 if file status was updated, else 0.
      */
     public int updateUploadStatus(long id, UploadStatus status, UploadResult result, String remotePath) {
-        //Log_OC.e(TAG, "Updating "+filepath+" with uploadStatus="+status +" and result="+result);
+        //Log_OC.v(TAG, "Updating "+filepath+" with uploadStatus="+status +" and result="+result);
 
         Cursor c = getDB().query(
                 ProviderTableMeta.CONTENT_URI_UPLOADS,
@@ -234,7 +234,7 @@ public class UploadsStorageManager extends Observable {
 
     /*
     public int updateFileIdUpload(long uploadId, long fileId) {
-        Log_OC.e(TAG, "Updating " + uploadId + " with fileId= " + fileId);
+        Log_OC.v(TAG, "Updating " + uploadId + " with fileId= " + fileId);
 
         ContentValues cv = new ContentValues();
         cv.put(ProviderTableMeta.UPLOADS_FILE_ID, fileId);
@@ -573,5 +573,40 @@ public class UploadsStorageManager extends Observable {
     }
 
 
+    /**
+     * Changes the status of any in progress upload from UploadStatus.UPLOAD_IN_PROGRESS
+     * to UploadStatus.UPLOAD_FAILED
+     *
+     *
+     *
+     * @return      Number of uploads which status was changed.
+     */
+    public int failInProgressUploads(UploadResult fail) {
+        Log_OC.v(TAG, "Updating state of any killed upload");
+
+        ContentValues cv = new ContentValues();
+        cv.put(ProviderTableMeta.UPLOADS_STATUS, UploadStatus.UPLOAD_FAILED.getValue());
+        cv.put(
+            ProviderTableMeta.UPLOADS_LAST_RESULT,
+            fail != null ? fail.getValue() : UploadResult.UNKNOWN.getValue()
+        );
+        cv.put(ProviderTableMeta.UPLOADS_UPLOAD_END_TIMESTAMP, Calendar.getInstance().getTimeInMillis());
+
+        int result = getDB().update(
+            ProviderTableMeta.CONTENT_URI_UPLOADS,
+            cv,
+            ProviderTableMeta.UPLOADS_STATUS + "=?",
+            new String[]{String.valueOf(UploadStatus.UPLOAD_IN_PROGRESS.getValue())}
+        );
+
+        if (result == 0) {
+            Log_OC.v(TAG, "No upload was killed");
+        } else {
+            Log_OC.w(TAG, Integer.toString(result) + " uploads where abruptly interrupted");
+            notifyObserversNow();
+        }
+        return result;
+    }
+
 
 }

+ 16 - 2
src/com/owncloud/android/files/services/FileUploader.java

@@ -321,14 +321,28 @@ public class FileUploader extends Service
 
         mUploadsStorageManager = new UploadsStorageManager(getContentResolver());
 
-//      Log_OC.d(TAG, "FileUploader.retry() called by onCreate()");
-//      FileUploader.retry(getApplicationContext());
+        int failedCounter = mUploadsStorageManager.failInProgressUploads(
+            UploadResult.UNKNOWN    // Add UploadResult.KILLED?
+        );
+        if (failedCounter > 0) {
+            resurrection();
+        }
 
         // add AccountsUpdatedListener
         AccountManager am = AccountManager.get(getApplicationContext());
         am.addOnAccountsUpdatedListener(this, null, false);
     }
 
+
+    /**
+     * Service clean-up when restarted after being killed
+     */
+    private void resurrection() {
+        // remove stucked notification
+        mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
+    }
+
+
     /**
      * Service clean up
      */