Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.qiniu.service.qoss.QueryHash Maven / Gradle / Ivy
Go to download
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.service.qoss;
import com.google.gson.JsonParser;
import com.qiniu.persistence.FileMap;
import com.qiniu.common.QiniuException;
import com.qiniu.service.interfaces.ILineProcess;
import com.qiniu.util.Auth;
import com.qiniu.util.HttpResponseUtils;
import com.qiniu.util.RequestUtils;
import com.qiniu.util.URLUtils;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class QueryHash implements ILineProcess>, Cloneable {
private String domain;
private String protocol;
final private String urlIndex;
final private String accessKey;
final private String secretKey;
final private String algorithm;
private FileChecker fileChecker;
final private String processName;
private int retryCount;
final private String savePath;
private String saveTag;
private int saveIndex;
private FileMap fileMap;
public QueryHash(String domain, String algorithm, String protocol, String urlIndex, String accessKey, String secretKey,
String savePath, int saveIndex) throws IOException {
this.processName = "qhash";
if (urlIndex == null || "".equals(urlIndex)) {
this.urlIndex = null;
if (domain == null || "".equals(domain)) throw new IOException("please set one of domain and urlIndex.");
else {
RequestUtils.checkHost(domain);
this.domain = domain;
this.protocol = protocol == null || !protocol.matches("(http|https)") ? "http" : protocol;
}
} else this.urlIndex = urlIndex;
this.algorithm = algorithm;
this.accessKey = accessKey;
this.secretKey = secretKey;
this.fileChecker = new FileChecker(algorithm, protocol, accessKey == null ? null :
Auth.create(accessKey, secretKey));
this.savePath = savePath;
this.saveTag = "";
this.saveIndex = saveIndex;
this.fileMap = new FileMap(savePath, processName, String.valueOf(saveIndex));
this.fileMap.initDefaultWriters();
}
public QueryHash(String domain, String algorithm, String protocol, String urlIndex, String accessKey, String secretKey,
String savePath) throws IOException {
this(domain, algorithm, protocol, urlIndex, accessKey, secretKey, savePath, 0);
}
public String getProcessName() {
return this.processName;
}
public void setRetryCount(int retryCount) {
this.retryCount = retryCount < 1 ? 1 : retryCount;
}
public void setSaveTag(String saveTag) {
this.saveTag = saveTag == null ? "" : saveTag;
}
public QueryHash clone() throws CloneNotSupportedException {
QueryHash queryHash = (QueryHash)super.clone();
queryHash.fileChecker = new FileChecker(algorithm, protocol, accessKey == null ? null :
Auth.create(accessKey, secretKey));
queryHash.fileMap = new FileMap(savePath, processName, saveTag + String.valueOf(++saveIndex));
try {
queryHash.fileMap.initDefaultWriters();
} catch (IOException e) {
throw new CloneNotSupportedException("init writer failed.");
}
return queryHash;
}
public void processLine(List> lineList, int retryCount) throws IOException {
String url;
String key;
String qhash;
JsonParser jsonParser = new JsonParser();
int retry;
for (Map line : lineList) {
if (urlIndex != null) {
url = line.get(urlIndex);
try {
key = URLUtils.getKey(url);
} catch (IOException e) {
fileMap.writeError(String.valueOf(line) + "\t" + e.getMessage(), false);
continue;
}
} else {
key = line.get("key").replaceAll("\\?", "%3F");
url = protocol + "://" + domain + "/" + key;
}
String finalInfo = key + "\t" + url;
retry = retryCount;
while (retry > 0) {
try {
qhash = fileChecker.getQHashBody(url);
if (qhash != null && !"".equals(qhash)) {
// 由于响应的 body 经过格式化通过 JsonParser 处理为一行字符串
fileMap.writeSuccess(finalInfo + "\t" + jsonParser.parse(qhash).toString(), false);
} else {
// 因为需要经过 JsonParser 处理,进行下控制判断,避免抛出异常
fileMap.writeKeyFile("empty_result", finalInfo, false);
}
retry = 0;
} catch (QiniuException e) {
retry--;
retry = HttpResponseUtils.processException(e, retry, fileMap, new ArrayList(){{ add(finalInfo); }});
}
}
}
}
public void processLine(List> lineList) throws IOException {
processLine(lineList, retryCount);
}
public void closeResource() {
fileMap.closeWriters();
}
}