All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alogic.xscript.plugins.Asynchronized Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.xscript.plugins;

import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

import com.alogic.tracer.Tool;
import com.alogic.tracer.TraceContext;
import com.alogic.xscript.Block;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.alogic.xscript.doc.XsObject;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;

/**
 * 异步执行块
 * 
 * @author duanyy
 * @version 1.6.8.14 [20170509 duanyy] 
* - 增加xscript的中间文档模型,以便支持多种报文协议
*/ public class Asynchronized extends Block { protected long timeout = 1000L; protected static ScheduledThreadPoolExecutor exec = new ScheduledThreadPoolExecutor(5); public Asynchronized(String tag, Logiclet p) { super(tag, p); } @Override public void configure(Properties p) { super.configure(p); timeout = PropertiesConstants.getLong(p, "timeout", timeout); } @Override protected void onExecute(final XsObject root,final XsObject current, final LogicletContext ctx, final ExecuteWatcher watcher) { List list = children; final CountDownLatch latch = new CountDownLatch(list.size()); boolean error = false; String msg = "OK"; final TraceContext tc = traceEnable()?Tool.start():null; try { for (int i = 0 ; i < list.size(); i ++){ final Logiclet logiclet = list.get(i); exec.schedule(new Runnable(){ @Override public void run() { TraceContext child = (traceEnable()&&tc != null)?tc.newChild():null; try { if (logiclet != null){ logiclet.execute(root,current,ctx,watcher); } }finally{ if (latch != null){ latch.countDown(); } if (traceEnable()&&tc != null){ Tool.end(child, "ASYNC-CHILD", getXmlTag(),"OK", "OK"); } } } }, 0, TimeUnit.MICROSECONDS); } if (!latch.await(timeout, TimeUnit.MILLISECONDS)){ logger.warn("The async executing is timtout."); } }catch (Exception ex){ logger.error(ex.getMessage()); error = true; msg = ex.getMessage(); }finally{ if (traceEnable()){ Tool.end(tc, "ASYNC", getXmlTag(), error?"FAILED":"OK", msg); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy