com.alogic.blob.service.BlobQuery 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.HashMap;
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;
/**
* 查询指定id的BlobManager
*
* @author duanyy
* @since 1.6.4.4
* @version 1.6.4.18 [duanyy 20151218]
* - 增加自动图标集
*/
public class BlobQuery 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);
}
Element elem = doc.createElement("blob");
found.report(elem);
root.appendChild(elem);
return 0;
}
@Override
protected int onJson(Context ctx){
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);
}
Map map = new HashMap(); // NOSONAR
found.report(map);
msg.getRoot().put("blob", map);
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