com.alogic.timer.core.Task Maven / Gradle / Ivy
package com.alogic.timer.core;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import com.alogic.json.JsonFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import com.anysoft.util.DefaultProperties;
import com.anysoft.util.JsonSerializer;
import com.anysoft.util.JsonTools;
import com.anysoft.util.Reportable;
import com.anysoft.util.Settings;
/**
* 任务
*
* @author duanyy
* @since 1.6.3.37
*
* @version 1.6.9.2 [20170601 duanyy]
* - 改造TaskCenter模型,以便提供分布式任务处理支持;
*
* @version 1.6.9.6 [20170719 duanyy]
* - Task参数可读取Settings中的变量
*
* @version 1.6.9.8 [20170821]
* - 任务id修改为18位数字(当前时间戳+随机数字)
*/
public interface Task extends JsonSerializer,Reportable{
/**
* 任务状态
*
* @author duanyy
*
*/
public static enum State{
/**
* 新建
*/
New,
/**
* 已进入队列
*/
Queued,
/**
* 已从队列中领取
*/
Polled,
/**
* 正在运行
*/
Running,
/**
* 运行失败
*/
Failed,
/**
* 已完成
*/
Done
}
/**
* 获取任务ID
* @return id
*/
public String id();
/**
* 获取事件id
* @return 事件id
*/
public String getEventId();
/**
* 任务参数
* @return 任务参数
*/
public DefaultProperties getParameters();
/**
* 从json形式的string中解析任务
* @param jsonString json形式的string
*/
public void fromJsonString(String jsonString);
/**
* 生成json形式的string
* @return json形式的string
*/
public String toJsonString();
/**
* 缺省实现
*
* @author duanyy
*
*/
public static class Default implements Task{
/**
* id
*/
protected String id;
/**
* event
*/
protected String event;
/**
* 属性
*/
protected DefaultProperties p;
/**
* Json provider
*/
protected JsonFactory jsonFactory = Settings.getToolkit(JsonFactory.class);
public Default(String id,String event){
this(id,event,(DefaultProperties)null);
}
public Default(String id,String event,Map _p){
this.id = id;
this.event = event;
this.p = new DefaultProperties("default",Settings.get());
if (_p != null){
Iterator> iter = _p.entrySet().iterator();
while (iter.hasNext()){
Entry entry = iter.next();
p.SetValue(entry.getKey(), entry.getValue());
}
}
}
public Default(String id,String event,DefaultProperties p){
this.id = id;
this.event = event;
this.p = p;
}
public Default(Map json){
fromJson(json);
}
@Override
public String getEventId() {
return event;
}
@Override
public void toJson(Map json) {
if (json != null){
json.put("id", id);
json.put("event", event);
if (p != null){
Map parameters = new HashMap();
p.toJson(parameters);
json.put("parameters", parameters);
}
}
}
@Override
@SuppressWarnings("unchecked")
public void fromJson(Map json) {
if (json != null){
id = JsonTools.getString(json, "id", "");
event = JsonTools.getString(json, "event", "");
if (p == null){
p = new DefaultProperties("default",Settings.get());
}
Object parameters = json.get("parameters");
if (parameters != null && parameters instanceof Map){
p.fromJson((Map)parameters);
}
}
}
public void toXML(Element root) {
if (root != null){
root.setAttribute("id", id);
root.setAttribute("event", event);
if (p != null){
Document doc = root.getOwnerDocument();
Element _parameters = doc.createElement("parameters");
p.toXML(_parameters);
root.appendChild(_parameters);
}
}
}
@Override
public void report(Element xml) {
toXML(xml);
}
@Override
public void report(Map json) {
toJson(json);
}
@Override
public String id() {
return id;
}
@Override
public DefaultProperties getParameters() {
return p;
}
@Override
public void fromJsonString(String jsonString) {
Object jsonObj = jsonFactory.fromJsonString(jsonString);
if (jsonObj instanceof Map){
@SuppressWarnings("unchecked")
Map json = (Map)jsonObj;
fromJson(json);
}
}
@Override
public String toJsonString() {
Map json = new HashMap();
toJson(json);
return jsonFactory.toJsonString(json);
}
}
}