zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.changhong.epc.count.service.system.func.set;
 
import com.changhong.epc.bean.count.func.FunNameKey;
import com.changhong.epc.count.service.count.model.UnitInfo;
import com.changhong.epc.bean.count.MeInfo;
import com.changhong.epc.count.service.system.model.SystemFunContextType;
import com.googlecode.aviator.runtime.function.AbstractFunction;
import com.googlecode.aviator.runtime.function.FunctionUtils;
import com.googlecode.aviator.runtime.type.AviatorLong;
import com.googlecode.aviator.runtime.type.AviatorObject;
import com.googlecode.aviator.runtime.type.AviatorString;
import com.iemsoft.framework.cloud.core.tools.DateTool;
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
import org.apache.commons.lang3.StringUtils;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
public abstract class AbsFuncSupper extends AbstractFunction implements FunNameKey{
    public static final AviatorString fun_empty = new AviatorString("");
    
    protected String format(String dateStr, String pattern){
        Date date = DateTool.stringToDate(dateStr);
        if(date == null){
            return "";
        }
        return DateTool.dateToString(date, pattern);
    }
 
    /**
     * 获取所有行程
     * @param env
     * @return
     */
    protected List<UnitInfo> getJourneyList(Map<String, Object> env){
        List<UnitInfo> jList = (List<UnitInfo>) env.get(SystemFunContextType.ALL_JOURNEY.toString());
        return jList;
    }
 
    protected boolean isNotEmpty(List<MeInfo> params){
        if(ObjectUtil.empty(params)){
            return true;
        }
        for (MeInfo meInfo : params) {
            if(StringUtils.isBlank(meInfo.getMeValue())){
                return false;
            }
        }
        return true;
    }
    /**
     * 安全获得参数
     * @param env
     * @param arg
     * @return
     */
    protected Object getParameter(Map<String, Object> env, AviatorObject arg) {
        try {
            return FunctionUtils.getJavaObject(arg, env);
        } catch (Exception e) {
            return arg.getValue(env);
        }
    }
    
    protected AviatorLong getAviatorLong(Object data){
        return new AviatorLong (new Long(data.toString()));
    }
    
     public AviatorObject call(Map<String, Object> env, AviatorObject arg1) {
         return this.throwArity(1);
     }
}