|
@@ -1,22 +1,22 @@
|
|
|
/**
|
|
|
- * ownCloud Android client application
|
|
|
+ * ownCloud Android client application
|
|
|
*
|
|
|
- * @author LukeOwncloud
|
|
|
- * @author David A. Velasco
|
|
|
- * @author masensio
|
|
|
- * Copyright (C) 2016 ownCloud Inc.
|
|
|
+ * @author LukeOwncloud
|
|
|
+ * @author David A. Velasco
|
|
|
+ * @author masensio
|
|
|
+ * Copyright (C) 2016 ownCloud Inc.
|
|
|
*
|
|
|
- * This program is free software: you can redistribute it and/or modify
|
|
|
- * it under the terms of the GNU General Public License version 2,
|
|
|
- * as published by the Free Software Foundation.
|
|
|
+ * This program is free software: you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU General Public License version 2,
|
|
|
+ * as published by the Free Software Foundation.
|
|
|
*
|
|
|
- * This program is distributed in the hope that it will be useful,
|
|
|
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
- * GNU General Public License for more details.
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ * GNU General Public License for more details.
|
|
|
*
|
|
|
- * You should have received a copy of the GNU General Public License
|
|
|
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ * You should have received a copy of the GNU General Public License
|
|
|
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
*/
|
|
|
package com.owncloud.android.datamodel;
|
|
|
|
|
@@ -26,8 +26,6 @@ import android.content.ContentValues;
|
|
|
import android.content.Context;
|
|
|
import android.database.Cursor;
|
|
|
import android.net.Uri;
|
|
|
-import android.os.Build;
|
|
|
-import android.support.annotation.RequiresApi;
|
|
|
|
|
|
import com.evernote.android.job.JobManager;
|
|
|
import com.evernote.android.job.JobRequest;
|
|
@@ -163,9 +161,9 @@ public class UploadsStorageManager extends Observable {
|
|
|
cv.put(ProviderTableMeta.UPLOADS_UPLOAD_END_TIMESTAMP, ocUpload.getUploadEndTimestamp());
|
|
|
|
|
|
int result = getDB().update(ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
- cv,
|
|
|
- ProviderTableMeta._ID + "=?",
|
|
|
- new String[]{String.valueOf(ocUpload.getUploadId())}
|
|
|
+ cv,
|
|
|
+ ProviderTableMeta._ID + "=?",
|
|
|
+ new String[]{String.valueOf(ocUpload.getUploadId())}
|
|
|
);
|
|
|
|
|
|
Log_OC.d(TAG, "updateUpload returns with: " + result + " for file: " + ocUpload.getLocalPath());
|
|
@@ -188,15 +186,15 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
String path = c.getString(c.getColumnIndex(ProviderTableMeta.UPLOADS_LOCAL_PATH));
|
|
|
Log_OC.v(
|
|
|
- TAG,
|
|
|
- "Updating " + path + " with status:" + status + " and result:"
|
|
|
- + (result == null ? "null" : result.toString()) + " (old:"
|
|
|
- + upload.toFormattedString() + ")");
|
|
|
+ TAG,
|
|
|
+ "Updating " + path + " with status:" + status + " and result:"
|
|
|
+ + (result == null ? "null" : result.toString()) + " (old:"
|
|
|
+ + upload.toFormattedString() + ")");
|
|
|
|
|
|
upload.setUploadStatus(status);
|
|
|
upload.setLastResult(result);
|
|
|
upload.setRemotePath(remotePath);
|
|
|
- if(localPath != null) {
|
|
|
+ if (localPath != null) {
|
|
|
upload.setLocalPath(localPath);
|
|
|
}
|
|
|
if (status == UploadStatus.UPLOAD_SUCCEEDED) {
|
|
@@ -236,7 +234,7 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
if (c.getCount() != 1) {
|
|
|
Log_OC.e(TAG, c.getCount() + " items for id=" + id
|
|
|
- + " available in UploadDb. Expected 1. Failed to update upload db.");
|
|
|
+ + " available in UploadDb. Expected 1. Failed to update upload db.");
|
|
|
} else {
|
|
|
returnValue = updateUploadInternal(c, status, result, remotePath, localPath);
|
|
|
}
|
|
@@ -266,7 +264,7 @@ public class UploadsStorageManager extends Observable {
|
|
|
public int removeUpload(OCUpload upload) {
|
|
|
int result = getDB().delete(
|
|
|
ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
- ProviderTableMeta._ID + "=?" ,
|
|
|
+ ProviderTableMeta._ID + "=?",
|
|
|
new String[]{Long.toString(upload.getUploadId())}
|
|
|
);
|
|
|
Log_OC.d(TAG, "delete returns " + result + " for upload " + upload);
|
|
@@ -287,7 +285,7 @@ public class UploadsStorageManager extends Observable {
|
|
|
public int removeUpload(String accountName, String remotePath) {
|
|
|
int result = getDB().delete(
|
|
|
ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
- ProviderTableMeta.UPLOADS_ACCOUNT_NAME + "=? AND " + ProviderTableMeta.UPLOADS_REMOTE_PATH + "=?" ,
|
|
|
+ ProviderTableMeta.UPLOADS_ACCOUNT_NAME + "=? AND " + ProviderTableMeta.UPLOADS_REMOTE_PATH + "=?",
|
|
|
new String[]{accountName, remotePath}
|
|
|
);
|
|
|
Log_OC.d(TAG, "delete returns " + result + " for file " + remotePath + " in " + accountName);
|
|
@@ -379,6 +377,7 @@ public class UploadsStorageManager extends Observable {
|
|
|
*/
|
|
|
public OCUpload[] getCurrentAndPendingUploads() {
|
|
|
|
|
|
+
|
|
|
OCUpload[] uploads = getUploads(
|
|
|
ProviderTableMeta.UPLOADS_STATUS + "==" + UploadStatus.UPLOAD_IN_PROGRESS.value + " OR " +
|
|
|
ProviderTableMeta.UPLOADS_LAST_RESULT + "==" + UploadResult.DELAYED_FOR_WIFI.getValue() + " OR " +
|
|
@@ -386,17 +385,13 @@ public class UploadsStorageManager extends Observable {
|
|
|
null
|
|
|
);
|
|
|
|
|
|
- // add pending Jobs
|
|
|
- if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
|
|
|
- return uploads;
|
|
|
- } else {
|
|
|
- List<OCUpload> result = getPendingJobs();
|
|
|
- Collections.addAll(result, uploads);
|
|
|
- return result.toArray(uploads);
|
|
|
- }
|
|
|
+ //return uploads;
|
|
|
+
|
|
|
+ List<OCUpload> result = getPendingJobs();
|
|
|
+ Collections.addAll(result, uploads);
|
|
|
+ return result.toArray(uploads);
|
|
|
}
|
|
|
|
|
|
- @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
private List<OCUpload> getPendingJobs() {
|
|
|
Set<JobRequest> jobRequests = JobManager.create(mContext).getAllJobRequestsForTag(AutoUploadJob.TAG);
|
|
|
|
|
@@ -404,11 +399,11 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
for (JobRequest ji : jobRequests) {
|
|
|
PersistableBundleCompat extras = ji.getExtras();
|
|
|
- OCUpload upload = new OCUpload(extras.getString("filePath", ""),
|
|
|
- extras.getString("remotePath", ""),
|
|
|
- extras.getString("account", ""));
|
|
|
+ OCUpload upload = new OCUpload(extras.getString("filePath", ""),
|
|
|
+ extras.getString("remotePath", ""),
|
|
|
+ extras.getString("account", ""));
|
|
|
|
|
|
- list.add(upload);
|
|
|
+ list.add(upload);
|
|
|
}
|
|
|
|
|
|
return list;
|
|
@@ -416,15 +411,14 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
public void cancelPendingAutoUploadJobsForAccount(Account account) {
|
|
|
JobManager jobManager = JobManager.create(mContext);
|
|
|
- for (JobRequest ji: jobManager.getAllJobRequestsForTag(AutoUploadJob.TAG)) {
|
|
|
+ for (JobRequest ji : jobManager.getAllJobRequestsForTag(AutoUploadJob.TAG)) {
|
|
|
if (ji.getExtras().getString(AutoUploadJob.ACCOUNT, "").equalsIgnoreCase(account.name)) {
|
|
|
jobManager.cancel(ji.getJobId());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
- public void cancelPendingJob(String accountName, String remotePath){
|
|
|
+ public void cancelPendingJob(String accountName, String remotePath) {
|
|
|
JobManager jobManager = JobManager.create(mContext);
|
|
|
Set<JobRequest> jobRequests = jobManager.getAllJobRequests();
|
|
|
|
|
@@ -457,14 +451,14 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
/**
|
|
|
* Get all failed uploads, except for those that were not performed due to lack of Wifi connection
|
|
|
- * @return Array of failed uploads, except for those that were not performed due to lack of Wifi connection.
|
|
|
+ * @return Array of failed uploads, except for those that were not performed due to lack of Wifi connection.
|
|
|
*/
|
|
|
public OCUpload[] getFailedButNotDelayedUploads() {
|
|
|
|
|
|
return getUploads(ProviderTableMeta.UPLOADS_STATUS + "==" + UploadStatus.UPLOAD_FAILED.value + AND +
|
|
|
- ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_WIFI.getValue() + AND +
|
|
|
- ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_CHARGING.getValue(),
|
|
|
- null
|
|
|
+ ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_WIFI.getValue() + AND +
|
|
|
+ ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_CHARGING.getValue(),
|
|
|
+ null
|
|
|
);
|
|
|
}
|
|
|
|
|
@@ -474,11 +468,11 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
public long clearFailedButNotDelayedUploads() {
|
|
|
long result = getDB().delete(
|
|
|
- ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
+ ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
ProviderTableMeta.UPLOADS_STATUS + "==" + UploadStatus.UPLOAD_FAILED.value + AND +
|
|
|
- ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_WIFI.getValue() + AND +
|
|
|
- ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_CHARGING.getValue(),
|
|
|
- null
|
|
|
+ ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_WIFI.getValue() + AND +
|
|
|
+ ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_CHARGING.getValue(),
|
|
|
+ null
|
|
|
);
|
|
|
Log_OC.d(TAG, "delete all failed uploads but those delayed for Wifi");
|
|
|
if (result > 0) {
|
|
@@ -491,7 +485,7 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
long result = getDB().delete(
|
|
|
ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
- ProviderTableMeta.UPLOADS_STATUS + "=="+ UploadStatus.UPLOAD_SUCCEEDED.value, null
|
|
|
+ ProviderTableMeta.UPLOADS_STATUS + "==" + UploadStatus.UPLOAD_SUCCEEDED.value, null
|
|
|
);
|
|
|
Log_OC.d(TAG, "delete all successful uploads");
|
|
|
if (result > 0) {
|
|
@@ -508,8 +502,8 @@ public class UploadsStorageManager extends Observable {
|
|
|
long result = getDB().delete(
|
|
|
ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
ProviderTableMeta.UPLOADS_STATUS + "=? OR " + ProviderTableMeta.UPLOADS_STATUS + "=? AND " +
|
|
|
- ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_WIFI.getValue() + AND +
|
|
|
- ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_CHARGING.getValue(),
|
|
|
+ ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_WIFI.getValue() + AND +
|
|
|
+ ProviderTableMeta.UPLOADS_LAST_RESULT + "<>" + UploadResult.DELAYED_FOR_CHARGING.getValue(),
|
|
|
whereArgs
|
|
|
);
|
|
|
Log_OC.d(TAG, "delete all finished uploads");
|
|
@@ -528,28 +522,28 @@ public class UploadsStorageManager extends Observable {
|
|
|
|
|
|
if (uploadResult.isCancelled()) {
|
|
|
removeUpload(
|
|
|
- upload.getAccount().name,
|
|
|
- upload.getRemotePath()
|
|
|
+ upload.getAccount().name,
|
|
|
+ upload.getRemotePath()
|
|
|
);
|
|
|
} else {
|
|
|
String localPath = (FileUploader.LOCAL_BEHAVIOUR_MOVE == upload.getLocalBehaviour())
|
|
|
- ? upload.getStoragePath() : null;
|
|
|
+ ? upload.getStoragePath() : null;
|
|
|
|
|
|
if (uploadResult.isSuccess()) {
|
|
|
updateUploadStatus(
|
|
|
- upload.getOCUploadId(),
|
|
|
- UploadStatus.UPLOAD_SUCCEEDED,
|
|
|
- UploadResult.UPLOADED,
|
|
|
- upload.getRemotePath(),
|
|
|
- localPath
|
|
|
+ upload.getOCUploadId(),
|
|
|
+ UploadStatus.UPLOAD_SUCCEEDED,
|
|
|
+ UploadResult.UPLOADED,
|
|
|
+ upload.getRemotePath(),
|
|
|
+ localPath
|
|
|
);
|
|
|
} else {
|
|
|
updateUploadStatus(
|
|
|
- upload.getOCUploadId(),
|
|
|
- UploadStatus.UPLOAD_FAILED,
|
|
|
- UploadResult.fromOperationResult(uploadResult),
|
|
|
- upload.getRemotePath(),
|
|
|
- localPath
|
|
|
+ upload.getOCUploadId(),
|
|
|
+ UploadStatus.UPLOAD_FAILED,
|
|
|
+ UploadResult.fromOperationResult(uploadResult),
|
|
|
+ upload.getRemotePath(),
|
|
|
+ localPath
|
|
|
);
|
|
|
}
|
|
|
}
|
|
@@ -560,14 +554,14 @@ public class UploadsStorageManager extends Observable {
|
|
|
*/
|
|
|
public void updateDatabaseUploadStart(UploadFileOperation upload) {
|
|
|
String localPath = (FileUploader.LOCAL_BEHAVIOUR_MOVE == upload.getLocalBehaviour())
|
|
|
- ? upload.getStoragePath() : null;
|
|
|
+ ? upload.getStoragePath() : null;
|
|
|
|
|
|
updateUploadStatus(
|
|
|
- upload.getOCUploadId(),
|
|
|
- UploadStatus.UPLOAD_IN_PROGRESS,
|
|
|
- UploadResult.UNKNOWN,
|
|
|
- upload.getRemotePath(),
|
|
|
- localPath
|
|
|
+ upload.getOCUploadId(),
|
|
|
+ UploadStatus.UPLOAD_IN_PROGRESS,
|
|
|
+ UploadResult.UNKNOWN,
|
|
|
+ upload.getRemotePath(),
|
|
|
+ localPath
|
|
|
);
|
|
|
}
|
|
|
|
|
@@ -576,7 +570,7 @@ 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.
|
|
|
+ * @return Number of uploads which status was changed.
|
|
|
*/
|
|
|
public int failInProgressUploads(UploadResult fail) {
|
|
|
Log_OC.v(TAG, "Updating state of any killed upload");
|
|
@@ -584,16 +578,16 @@ public class UploadsStorageManager extends Observable {
|
|
|
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()
|
|
|
+ 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())}
|
|
|
+ ProviderTableMeta.CONTENT_URI_UPLOADS,
|
|
|
+ cv,
|
|
|
+ ProviderTableMeta.UPLOADS_STATUS + "=?",
|
|
|
+ new String[]{String.valueOf(UploadStatus.UPLOAD_IN_PROGRESS.getValue())}
|
|
|
);
|
|
|
|
|
|
if (result == 0) {
|