https://git.trustie.net/fhx569287825/aggregation-platform into web_backend_develope Conflicts: src/com/platform/controller/ExcelController.javaweb_backend_develope
commit
59205f5917
@ -0,0 +1,68 @@
|
||||
package com.platform.entities;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.HashSet;
|
||||
|
||||
import com.platform.utils.HttpUtils;
|
||||
|
||||
public class ResumableInfo {
|
||||
|
||||
public int resumableChunkSize;
|
||||
public long resumableTotalSize;
|
||||
public String resumableIdentifier;
|
||||
public String resumableFilename;
|
||||
public String resumableRelativePath;
|
||||
|
||||
public static class ResumableChunkNumber {
|
||||
public ResumableChunkNumber(int number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public int number;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
return obj instanceof ResumableChunkNumber ? ((ResumableChunkNumber) obj).number == this.number
|
||||
: false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return number;
|
||||
}
|
||||
}
|
||||
|
||||
// Chunks uploaded
|
||||
public HashSet<ResumableChunkNumber> uploadedChunks = new HashSet<ResumableChunkNumber>();
|
||||
|
||||
public String resumableFilePath;
|
||||
|
||||
public boolean vaild() {
|
||||
if (resumableChunkSize < 0 || resumableTotalSize < 0
|
||||
|| HttpUtils.isEmpty(resumableIdentifier)
|
||||
|| HttpUtils.isEmpty(resumableFilename)
|
||||
|| HttpUtils.isEmpty(resumableRelativePath)) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean checkIfUploadFinished() {
|
||||
// check if upload finished
|
||||
int count = (int) Math.ceil(((double) resumableTotalSize)
|
||||
/ ((double) resumableChunkSize));
|
||||
for (int i = 1; i < count; i++) {
|
||||
if (!uploadedChunks.contains(new ResumableChunkNumber(i))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Upload finished, change filename.
|
||||
File file = new File(resumableFilePath);
|
||||
String new_path = file.getAbsolutePath().substring(0,
|
||||
file.getAbsolutePath().length() - ".temp".length());
|
||||
file.renameTo(new File(new_path));
|
||||
return true;
|
||||
}
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
package com.platform.entities;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public class ResumableInfoStorage {
|
||||
|
||||
// Single instance
|
||||
private ResumableInfoStorage() {
|
||||
}
|
||||
|
||||
private static ResumableInfoStorage sInstance;
|
||||
|
||||
public static synchronized ResumableInfoStorage getInstance() {
|
||||
if (sInstance == null) {
|
||||
sInstance = new ResumableInfoStorage();
|
||||
}
|
||||
return sInstance;
|
||||
}
|
||||
|
||||
// resumableIdentifier -- ResumableInfo
|
||||
private HashMap<String, ResumableInfo> mMap = new HashMap<String, ResumableInfo>();
|
||||
|
||||
/**
|
||||
* Get ResumableInfo from mMap or Create a new one.
|
||||
*
|
||||
* @param resumableChunkSize
|
||||
* @param resumableTotalSize
|
||||
* @param resumableIdentifier
|
||||
* @param resumableFilename
|
||||
* @param resumableRelativePath
|
||||
* @param resumableFilePath
|
||||
* @return
|
||||
*/
|
||||
public synchronized ResumableInfo get(int resumableChunkSize,
|
||||
long resumableTotalSize, String resumableIdentifier,
|
||||
String resumableFilename, String resumableRelativePath,
|
||||
String resumableFilePath) {
|
||||
|
||||
ResumableInfo info = mMap.get(resumableIdentifier);
|
||||
|
||||
if (info == null) {
|
||||
info = new ResumableInfo();
|
||||
|
||||
info.resumableChunkSize = resumableChunkSize;
|
||||
info.resumableTotalSize = resumableTotalSize;
|
||||
info.resumableIdentifier = resumableIdentifier;
|
||||
info.resumableFilename = resumableFilename;
|
||||
info.resumableRelativePath = resumableRelativePath;
|
||||
info.resumableFilePath = resumableFilePath;
|
||||
|
||||
mMap.put(resumableIdentifier, info);
|
||||
}
|
||||
return info;
|
||||
}
|
||||
|
||||
/**
|
||||
* ɾ³ýResumableInfo
|
||||
*
|
||||
* @param info
|
||||
*/
|
||||
public void remove(ResumableInfo info) {
|
||||
mMap.remove(info.resumableIdentifier);
|
||||
}
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package com.platform.utils;
|
||||
|
||||
public class HttpUtils {
|
||||
|
||||
public static boolean isEmpty(String value) {
|
||||
return value == null || "".equals(value);
|
||||
}
|
||||
/**
|
||||
* Convert String to long
|
||||
* @param value
|
||||
* @param def default value
|
||||
* @return
|
||||
*/
|
||||
public static long toLong(String value, long def) {
|
||||
if (isEmpty(value)) {
|
||||
return def;
|
||||
}
|
||||
|
||||
try {
|
||||
return Long.valueOf(value);
|
||||
} catch (NumberFormatException e) {
|
||||
e.printStackTrace();
|
||||
return def;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert String to int
|
||||
* @param value
|
||||
* @param def default value
|
||||
* @return
|
||||
*/
|
||||
public static int toInt(String value, int def) {
|
||||
if (isEmpty(value)) {
|
||||
return def;
|
||||
}
|
||||
try {
|
||||
return Integer.valueOf(value);
|
||||
} catch (NumberFormatException e) {
|
||||
e.printStackTrace();
|
||||
return def;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue