Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2017. Eric Angeli
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software
* and associated documentation files (the "Software"),
* to deal in the Software without restriction,
* including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit
* persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission
* notice shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
* AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package com.thegoate.dsl.words;
import com.thegoate.Goate;
import com.thegoate.annotations.AnnotationFactory;
import com.thegoate.annotations.GoateDescription;
import com.thegoate.dsl.DSL;
import com.thegoate.dsl.GoateDSL;
import com.thegoate.staff.GoateTask;
import com.thegoate.staff.GoateTaskContainer;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
/**
* Executes and runs the specified task.
* Returns the return from the task or null if the task is void.
* Created by gtque on 4/21/2017.
*/
@GoateDSL(word = "do")
@GoateDescription(description = "Executes and runs the specified task.", parameters = {"Object: value"})
public class RunTask extends DSL {
Goate parameters = new Goate();
public RunTask(Object value) {
super(value);
}
AnnotationFactory af = new AnnotationFactory();
public static RunTask task(String task){
return new RunTask("do::"+task);
}
public RunTask parameter(String key, Object value){
parameters.put(key, value);
return this;
}
public Object run(){
return run(new Goate());
}
public Object run(Goate data){
return evaluate(data);
}
@Override
public Object evaluate(Goate data){
parameters.merge(data, false);
String task = "" + get(1, parameters);
Object result = null;
Object[] constructorParams = null;
if(definition.size()>2){
constructorParams = new Object[definition.size()-2];
for(int i = 0; i values = extractValues(task);
int index = 0;
Object[] valKeys = filteredKeys(values);
for(Parameter p:m.getParameters()){
Long ix = Long.parseLong(""+valKeys[index]);
Object v = data.get(""+values.get(ix),null);
args[index] = v;
index++;
}
}
return args;
}
protected Map extractValues(String task){
Map vals = new ConcurrentHashMap<>();
String params = task;
while(params.contains("${")){
Long stamp = System.nanoTime();
String val = params.substring(params.indexOf("${")+2,params.indexOf("}"));
params = params.replace("${"+val+"}",""+stamp);
vals.put(stamp, val);
}
return vals;
}
protected Object[] filteredKeys(Map map){
List list = new ArrayList<>();
Set keys = map.keySet();
if(map!=null){
for(Long k:keys){
list.add(k);
}
Collections.sort(list);
}
return list.toArray();
}
}