mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 16:06:08 +00:00
138 lines
5.7 KiB
Java
138 lines
5.7 KiB
Java
/* ownCloud Android Library is available under MIT license
|
|
* Copyright (C) 2018 ownCloud GmbH.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
package com.owncloud.android.lib.resources.files.chunks;
|
|
|
|
import com.owncloud.android.lib.common.OwnCloudClient;
|
|
import com.owncloud.android.lib.common.http.methods.webdav.PutMethod;
|
|
import com.owncloud.android.lib.common.network.ChunkFromFileRequestBody;
|
|
import com.owncloud.android.lib.common.operations.OperationCancelledException;
|
|
import com.owncloud.android.lib.common.operations.RemoteOperationResult;
|
|
import com.owncloud.android.lib.common.utils.Log_OC;
|
|
import com.owncloud.android.lib.resources.files.FileUtils;
|
|
import com.owncloud.android.lib.resources.files.UploadRemoteFileOperation;
|
|
|
|
import java.io.File;
|
|
import java.io.RandomAccessFile;
|
|
import java.net.URL;
|
|
import java.nio.channels.FileChannel;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
import okhttp3.MediaType;
|
|
|
|
import static com.owncloud.android.lib.common.http.HttpConstants.IF_MATCH_HEADER;
|
|
import static com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode.OK;
|
|
|
|
/**
|
|
* Remote operation performing the chunked upload of a remote file to the ownCloud server.
|
|
*
|
|
* @author David A. Velasco
|
|
* @author David González Verdugo
|
|
*/
|
|
public class ChunkedUploadRemoteFileOperation extends UploadRemoteFileOperation {
|
|
|
|
private static final int LAST_CHUNK_TIMEOUT = 900000; //15 mins.
|
|
public static final long CHUNK_SIZE = 1024000;
|
|
private static final String TAG = ChunkedUploadRemoteFileOperation.class.getSimpleName();
|
|
|
|
private String mTransferId;
|
|
|
|
public ChunkedUploadRemoteFileOperation(String transferId, String localPath, String remotePath, String mimeType,
|
|
String requiredEtag, String fileLastModifTimestamp) {
|
|
super(localPath, remotePath, mimeType, requiredEtag, fileLastModifTimestamp);
|
|
mTransferId = transferId;
|
|
}
|
|
|
|
@Override
|
|
protected RemoteOperationResult uploadFile(OwnCloudClient client) throws Exception {
|
|
int status;
|
|
RemoteOperationResult result = null;
|
|
FileChannel channel;
|
|
RandomAccessFile raf;
|
|
|
|
File fileToUpload = new File(mLocalPath);
|
|
MediaType mediaType = MediaType.parse(mMimeType);
|
|
|
|
raf = new RandomAccessFile(fileToUpload, "r");
|
|
channel = raf.getChannel();
|
|
|
|
mFileRequestBody = new ChunkFromFileRequestBody(fileToUpload, mediaType, channel, CHUNK_SIZE);
|
|
|
|
synchronized (mDataTransferListeners) {
|
|
mFileRequestBody.addDatatransferProgressListeners(mDataTransferListeners);
|
|
}
|
|
|
|
long offset = 0;
|
|
String uriPrefix = client.getUploadsWebDavUri() + FileUtils.PATH_SEPARATOR + String.valueOf(mTransferId);
|
|
long totalLength = fileToUpload.length();
|
|
long chunkCount = (long) Math.ceil((double) totalLength / CHUNK_SIZE);
|
|
|
|
for (int chunkIndex = 0; chunkIndex < chunkCount; chunkIndex++, offset += CHUNK_SIZE) {
|
|
mPutMethod = new PutMethod(
|
|
new URL(uriPrefix + FileUtils.PATH_SEPARATOR + chunkIndex)
|
|
);
|
|
|
|
if (mRequiredEtag != null && mRequiredEtag.length() > 0) {
|
|
mPutMethod.addRequestHeader(IF_MATCH_HEADER, "\"" + mRequiredEtag + "\"");
|
|
}
|
|
|
|
((ChunkFromFileRequestBody) mFileRequestBody).setOffset(offset);
|
|
|
|
if (mCancellationRequested.get()) {
|
|
result = new RemoteOperationResult<>(new OperationCancelledException());
|
|
break;
|
|
} else {
|
|
if (chunkIndex == chunkCount - 1) {
|
|
// Added a high timeout to the last chunk due to when the last chunk
|
|
// arrives to the server with the last PUT, all chunks get assembled
|
|
// within that PHP request, so last one takes longer.
|
|
mPutMethod.setReadTimeout(LAST_CHUNK_TIMEOUT, TimeUnit.MILLISECONDS);
|
|
}
|
|
|
|
mPutMethod.setRequestBody(mFileRequestBody);
|
|
|
|
status = client.executeHttpMethod(mPutMethod);
|
|
|
|
Log_OC.d(TAG, "Upload of " + mLocalPath + " to " + mRemotePath +
|
|
", chunk index " + chunkIndex + ", count " + chunkCount +
|
|
", HTTP result status " + status);
|
|
|
|
if (isSuccess(status)) {
|
|
result = new RemoteOperationResult<>(OK);
|
|
} else {
|
|
result = new RemoteOperationResult<>(mPutMethod);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (channel != null)
|
|
channel.close();
|
|
|
|
if (raf != null)
|
|
raf.close();
|
|
|
|
return result;
|
|
}
|
|
} |