com.alogic.blob.service.BlobFileList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alogic-blob Show documentation
Show all versions of alogic-blob Show documentation
BLOB(binary large object),二进制大对象存储框架
package com.alogic.blob.service;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import com.alogic.blob.context.BlobManagerSource;
import com.alogic.blob.core.BlobManager;
import com.logicbus.backend.AbstractServant;
import com.logicbus.backend.Context;
import com.logicbus.backend.ServantException;
import com.logicbus.backend.message.JsonMessage;
import com.logicbus.backend.message.XMLMessage;
import com.logicbus.models.servant.ServiceDescription;
/**
* 查询指定blob中文件id列表
*
* @author duanyy
* @since 1.6.4.7
*
* @version 1.6.4.18 [duanyy 20151218]
* - 增加自动图标集
*/
public class BlobFileList extends AbstractServant {
@Override
protected int onXml(Context ctx){
XMLMessage msg = (XMLMessage) ctx.asMessage(XMLMessage.class);
String id = getArgument("id",ctx);
Document doc = msg.getDocument();
Element root = msg.getRoot();
BlobManagerSource src = BlobManagerSource.get();
BlobManager found = src.get(id);
if (found == null){
throw new ServantException("user.data_not_found","Can not find the blob manager :" + id);
}
String cookies = getArgument("cookies","",ctx); // NOSONAR
int limit = getLimit(ctx);
List ids = new ArrayList(); // NOSONAR
cookies = found.list(ids, cookies, limit);
Element blob = doc.createElement("blob");
blob.setAttribute("id", id);
if (cookies != null){
blob.setAttribute("cookies", cookies);
}
blob.setAttribute("limit", String.valueOf(limit)); // NOSONAR
if (!ids.isEmpty()){
for (String _id:ids){
Element elem = doc.createElement("file");
elem.setAttribute("id", _id);
blob.appendChild(elem);
}
}
root.appendChild(blob);
return 0;
}
private int getLimit(Context ctx){
String value = getArgument("limit","100",ctx);
try {
return Integer.parseInt(value);
}catch (NumberFormatException ex){
return 100;
}
}
@Override
protected int onJson(Context ctx) throws Exception{
JsonMessage msg = (JsonMessage)ctx.asMessage(JsonMessage.class);
String id = getArgument("id",ctx);
BlobManagerSource src = BlobManagerSource.get();
BlobManager found = src.get(id);
if (found == null){
throw new ServantException("user.data_not_found","Can not find the blob manager :" + id);
}
String cookies = getArgument("cookies","",ctx);
int limit = getLimit(ctx);
List ids = new ArrayList(); // NOSONAR
cookies = found.list(ids, cookies, limit);
Map _blob = new HashMap(); // NOSONAR
_blob.put("file",ids);
_blob.put("id", id);
if (cookies != null){
_blob.put("cookies",cookies);
}
_blob.put("limit", limit);
msg.getRoot().put("blob", _blob);
return 0;
}
@Override
protected void onDestroy() {
// nothing to do
}
@Override
protected void onCreate(ServiceDescription sd) {
// nothing to do
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy