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
74
package cn.autoform.web.client.util.auto;
 
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
 
import org.apache.commons.lang3.RandomStringUtils;
import org.apache.commons.lang3.RandomUtils;
 
public class ParamFactory {
 
    private static final Map<String, RuleActuator> RULE_ACTUATOR = new HashMap<>();
    
    private static String begain;
    
    static{
        /**
         * 日期
         */
        RULE_ACTUATOR.put("d", ruleParam->{
            return new SimpleDateFormat(ruleParam.getCondition()).format(new Date());
        });
        
        /**
         * 随机字符
         */
        RULE_ACTUATOR.put("rs", ruleParam->{
            return RandomStringUtils.randomAlphanumeric(Integer.parseInt(ruleParam.getCondition()));
        });
 
        /**
         * 随机数字
         */
        RULE_ACTUATOR.put("rn", ruleParam->{
            StringBuilder num = new StringBuilder();
            for (int i = 0; i < Integer.parseInt(ruleParam.getCondition()); i++) {
                num.append('9');
            }
            return String.format("%0"+ruleParam.getCondition()+"d", RandomUtils.nextInt(0, Integer.parseInt(num.toString())));
        });
        
        RULE_ACTUATOR.put("in", ruleParam->{
            StringBuilder num = new StringBuilder();
            Integer begain = getBegain().length();
            for (int i = 0; i < Integer.parseInt(ruleParam.getCondition())-begain; i++) {
                num.append('0');
            }
            num.append(getBegain());
            return num.toString();
        });
        
        
    }
    
    /**
     * 获得参数执行器
     * @param type
     * @return
     */
    public static RuleActuator getRuleActuator(String type){
        type = type.toLowerCase();
        return RULE_ACTUATOR.get(type);
    }
    
    private static String getBegain() {
        return begain;
    }
 
    public static void setBegain(String begain) {
        ParamFactory.begain = begain;
    }
    
}