com.logicbus.service.ServicePause Maven / Gradle / Ivy
package com.logicbus.service;
import java.util.HashMap;
import java.util.Map;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import com.anysoft.util.Settings;
import com.logicbus.backend.AbstractServant;
import com.logicbus.backend.Context;
import com.logicbus.backend.ServantException;
import com.logicbus.backend.ServantFactory;
import com.logicbus.backend.ServantPool;
import com.logicbus.backend.ServantRegistry;
import com.logicbus.backend.message.JsonMessage;
import com.logicbus.backend.message.XMLMessage;
import com.logicbus.models.catalog.Path;
import com.logicbus.models.servant.ServiceDescription;
/**
* 暂停服务
*
*
* 将指定的服务暂停,暂停成功的服务将暂时不对外服务.
*
* 实现了一个内部核心服务,定义在/com/logicbus/service/servant.xml中,具体配置如下:
*
* {@code
*
* }
*
*
* 本服务需要客户端传送参数,包括:
* - service 要查询的服务ID,本参数属于必选项
*
* 本服务属于系统核心管理服务,内置了快捷访问,在其他服务的URL中加上pause参数即可直接访问,
* 例如:要暂停/demo/logicbus/Helloworld服务,可输入URL为:
* {@code
* http://[host]:[port]/[webcontext]/services/demo/logicbus/Helloworld?pause
* }
*
* 如果配置在服务器中,访问地址为:
* {@code
* http://[host]:[port]/[webcontext]/services/core/ServicePause?service=[服务ID]
* }
*
* @author duanyy
* @version 1.2.6 [20140807 duanyy]
* - ServantPool和ServantFactory插件化
*
* @version 1.2.8.2 [20141014 duanyy]
* - 支持双协议:XML,JSON
*
* @version 1.4.0 [20141117 duanyy]
* - 将MessageDoc和Context进行合并整合
*
* @version 1.6.7.20
* - 改造ServantManager模型,增加服务配置监控机制
*
*/
public class ServicePause extends AbstractServant {
protected void onDestroy() {
}
protected void onCreate(ServiceDescription sd) throws ServantException {
}
protected int onXml(Context ctx) {
XMLMessage msg = (XMLMessage)ctx.asMessage(XMLMessage.class);
String id = ctx.GetValue("service", "");
if (id == null || id.length() <= 0) {
throw new ServantException("client.args_not_found",
"Can not find parameter:service");
}
Path path = new Path(id);
Settings settings = Settings.get();
ServantFactory sf = (ServantFactory)settings.get("servantFactory");
ServantRegistry sm = sf.getServantRegistry();
ServiceDescription sd = sm.get(path);
if (sd == null){
throw new ServantException("user.data_not_found","Service does not exist:" + id);
}
Element root = msg.getRoot();
Document doc = root.getOwnerDocument();
Element service = doc.createElement("service");
sd.report(service);
ServantPool pool = sf.getPool(path);
if (pool != null) {
pool.pause();
pool.report(service);
}
root.appendChild(service);
return 0;
}
protected int onJson(Context ctx) {
JsonMessage msg = (JsonMessage)ctx.asMessage(JsonMessage.class);
String id = getArgument("service", ctx);
Path path = new Path(id);
Settings settings = Settings.get();
ServantFactory sf = (ServantFactory)settings.get("servantFactory");
ServantRegistry sm = sf.getServantRegistry();
ServiceDescription sd = sm.get(path);
if (sd == null){
throw new ServantException("user.data_not_found","Service does not exist:" + id);
}
Map root = msg.getRoot();
Map service = new HashMap();
sd.report(service);
//关联服务的实时统计信息
ServantPool pool = sf.getPool(path);
if (pool != null) {
pool.pause();
pool.report(service);
}
root.put("service", service);
return 0;
}
}