mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 22:25:44 +03:00
cleanup uploader. add comments. uncomment unused functions. rename.
This commit is contained in:
parent
068b826b32
commit
5af3c6d389
5 changed files with 136 additions and 136 deletions
1
SETUP.md
1
SETUP.md
|
@ -71,6 +71,7 @@ NOTE: Even though API level is set to 19, APK also runs on older devices because
|
|||
NOTE: You must sign the [Contributor Agreement][1] before your changes can be accepted!
|
||||
|
||||
* Commit your changes locally: "git commit -a"
|
||||
* If substantial changes were done to the official repository while you were working, merge those changes: "git merge upstream/develop"
|
||||
* Push your changes to your Github repo: "git push"
|
||||
* Browse to https://github.com/YOURGITHUBNAME/android/pulls and issue pull request
|
||||
* Click "Edit" and set "base:develop"
|
||||
|
|
|
@ -40,8 +40,7 @@ public class DbHandler {
|
|||
|
||||
private final String TABLE_INSTANT_UPLOAD = "instant_upload";
|
||||
|
||||
public static final int UPLOAD_STATUS_UPLOAD_LATER = 0;
|
||||
public static final int UPLOAD_STATUS_UPLOAD_FAILED = 1;
|
||||
public enum UploadStatus {UPLOAD_STATUS_UPLOAD_LATER, UPLOAD_STATUS_UPLOAD_FAILED};
|
||||
|
||||
public DbHandler(Context context) {
|
||||
mDatabaseName = MainApp.getDBName();
|
||||
|
@ -53,20 +52,35 @@ public class DbHandler {
|
|||
mDB.close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a file persistantly for upload.
|
||||
* @param filepath
|
||||
* @param account
|
||||
* @param message
|
||||
* @return
|
||||
*/
|
||||
public boolean putFileForLater(String filepath, String account, String message) {
|
||||
ContentValues cv = new ContentValues();
|
||||
cv.put("path", filepath);
|
||||
cv.put("account", account);
|
||||
cv.put("attempt", UPLOAD_STATUS_UPLOAD_LATER);
|
||||
cv.put("attempt", String.valueOf(UploadStatus.UPLOAD_STATUS_UPLOAD_LATER));
|
||||
cv.put("message", message);
|
||||
long result = mDB.insert(TABLE_INSTANT_UPLOAD, null, cv);
|
||||
Log_OC.d(TABLE_INSTANT_UPLOAD, "putFileForLater returns with: " + result + " for file: " + filepath);
|
||||
return result != -1;
|
||||
}
|
||||
|
||||
public int updateFileState(String filepath, Integer status, String message) {
|
||||
/**
|
||||
* Update upload status of file.
|
||||
*
|
||||
* @param filepath
|
||||
* @param status
|
||||
* @param message
|
||||
* @return
|
||||
*/
|
||||
public int updateFileState(String filepath, UploadStatus status, String message) {
|
||||
ContentValues cv = new ContentValues();
|
||||
cv.put("attempt", status);
|
||||
cv.put("attempt", String.valueOf(status));
|
||||
cv.put("message", message);
|
||||
int result = mDB.update(TABLE_INSTANT_UPLOAD, cv, "path=?", new String[] { filepath });
|
||||
Log_OC.d(TABLE_INSTANT_UPLOAD, "updateFileState returns with: " + result + " for file: " + filepath);
|
||||
|
@ -74,23 +88,25 @@ public class DbHandler {
|
|||
}
|
||||
|
||||
public Cursor getAwaitingFiles() {
|
||||
return mDB.query(TABLE_INSTANT_UPLOAD, null, "attempt=" + UPLOAD_STATUS_UPLOAD_LATER, null, null, null, null);
|
||||
return mDB.query(TABLE_INSTANT_UPLOAD, null, "attempt=" + UploadStatus.UPLOAD_STATUS_UPLOAD_LATER, null, null, null, null);
|
||||
}
|
||||
|
||||
public Cursor getFailedFiles() {
|
||||
return mDB.query(TABLE_INSTANT_UPLOAD, null, "attempt>" + UPLOAD_STATUS_UPLOAD_LATER, null, null, null, null);
|
||||
}
|
||||
//ununsed until now. uncomment if needed.
|
||||
// public Cursor getFailedFiles() {
|
||||
// return mDB.query(TABLE_INSTANT_UPLOAD, null, "attempt>" + UploadStatus.UPLOAD_STATUS_UPLOAD_LATER, null, null, null, null);
|
||||
// }
|
||||
|
||||
public void clearFiles() {
|
||||
mDB.delete(TABLE_INSTANT_UPLOAD, null, null);
|
||||
}
|
||||
//ununsed until now. uncomment if needed.
|
||||
// public void clearFiles() {
|
||||
// mDB.delete(TABLE_INSTANT_UPLOAD, null, null);
|
||||
// }
|
||||
|
||||
/**
|
||||
*
|
||||
* Remove file from upload list. Should be called when upload succeed or failed and should not be retried.
|
||||
* @param localPath
|
||||
* @return true when one or more pending files was removed
|
||||
*/
|
||||
public boolean removeIUPendingFile(String localPath) {
|
||||
public boolean removePendingFile(String localPath) {
|
||||
long result = mDB.delete(TABLE_INSTANT_UPLOAD, "path = ?", new String[] { localPath });
|
||||
Log_OC.d(TABLE_INSTANT_UPLOAD, "delete returns with: " + result + " for file: " + localPath);
|
||||
return result != 0;
|
||||
|
|
|
@ -301,7 +301,7 @@ public class FileDownloader extends Service implements OnDatatransferProgressLis
|
|||
/**
|
||||
* Download worker. Performs the pending downloads in the order they were requested.
|
||||
*
|
||||
* Created with the Looper of a new thread, started in {@link FileUploader#onCreate()}.
|
||||
* Created with the Looper of a new thread, started in {@link FileDownloader#onCreate()}.
|
||||
*/
|
||||
private static class ServiceHandler extends Handler {
|
||||
// don't make it a final class, and don't remove the static ; lint will warn about a possible memory leak
|
||||
|
|
|
@ -76,7 +76,7 @@ import com.owncloud.android.utils.ErrorMessageAdapter;
|
|||
|
||||
|
||||
|
||||
public class FileUploader extends Service implements OnDatatransferProgressListener {
|
||||
public class FileUploader extends Service {
|
||||
|
||||
private static final String UPLOAD_FINISH_MESSAGE = "UPLOAD_FINISH";
|
||||
public static final String EXTRA_UPLOAD_RESULT = "RESULT";
|
||||
|
@ -273,7 +273,6 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|||
}
|
||||
mPendingUploads.putIfAbsent(uploadKey, newUpload); // Grants that the file only upload once time
|
||||
|
||||
newUpload.addDatatransferProgressListener(this);
|
||||
newUpload.addDatatransferProgressListener((FileUploaderBinder)mBinder);
|
||||
requestedUploads.add(uploadKey);
|
||||
}
|
||||
|
@ -473,7 +472,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|||
* @param uploadKey Key to access the upload to perform, contained in
|
||||
* mPendingUploads
|
||||
*/
|
||||
public void uploadFile(String uploadKey) {
|
||||
private void uploadFile(String uploadKey) {
|
||||
|
||||
synchronized (mPendingUploads) {
|
||||
mCurrentUpload = mPendingUploads.get(uploadKey);
|
||||
|
@ -707,22 +706,6 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|||
mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback method to update the progress bar in the status notification
|
||||
*/
|
||||
@Override
|
||||
public void onTransferProgress(long progressRate, long totalTransferredSoFar, long totalToTransfer, String filePath) {
|
||||
int percent = (int) (100.0 * ((double) totalTransferredSoFar) / ((double) totalToTransfer));
|
||||
if (percent != mLastPercent) {
|
||||
mNotificationBuilder.setProgress(100, percent, false);
|
||||
String fileName = filePath.substring(filePath.lastIndexOf(FileUtils.PATH_SEPARATOR) + 1);
|
||||
String text = String.format(getString(R.string.uploader_upload_in_progress_content), percent, fileName);
|
||||
mNotificationBuilder.setContentText(text);
|
||||
mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
|
||||
}
|
||||
mLastPercent = percent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the status notification with the result of an upload operation.
|
||||
*
|
||||
|
@ -797,7 +780,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|||
//message = getString(R.string.failed_upload_quota_exceeded_text);
|
||||
if (db.updateFileState(
|
||||
upload.getOriginalStoragePath(),
|
||||
DbHandler.UPLOAD_STATUS_UPLOAD_FAILED,
|
||||
DbHandler.UploadStatus.UPLOAD_STATUS_UPLOAD_FAILED,
|
||||
message) == 0) {
|
||||
db.putFileForLater(
|
||||
upload.getOriginalStoragePath(),
|
||||
|
@ -820,7 +803,7 @@ public class FileUploader extends Service implements OnDatatransferProgressListe
|
|||
if (uploadResult.isSuccess()) {
|
||||
|
||||
DbHandler db = new DbHandler(this.getBaseContext());
|
||||
db.removeIUPendingFile(mCurrentUpload.getOriginalStoragePath());
|
||||
db.removePendingFile(mCurrentUpload.getOriginalStoragePath());
|
||||
db.close();
|
||||
|
||||
// remove success notification, with a delay of 2 seconds
|
||||
|
|
Loading…
Reference in a new issue