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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package com.changhong.autoform.entity.sql;
 
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
 
import java.util.ArrayList;
import java.util.List;
 
public class Where {
 
    private String name;
    
    private String sql;
    
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Where(Conditions... conditions) {
        super();
        this.conditions = conditions;
    }
    
    public Where(String sql, Conditions... conditions) {
        super();
        this.sql = sql;
        this.conditions = conditions;
    }
    
    public Where(String sql){
        this.sql = sql;
    }
 
    private Conditions[] conditions;
    
    private List<Object> params = new ArrayList<>();
 
    private String whereSql;
 
    public String getSql() {
        if(whereSql != null){
            return whereSql;
        }
        StringBuilder where = new StringBuilder();
        if(sql != null){
            where.append(sql);
        }
        boolean isOne = true;
        if(conditions != null) {
            for (Conditions c : conditions) {
                if (!isOne) {
                    where.append(c.joinType.sql);
                } else {
                    where.append(" AND ");
                }
                where.append(c.field).append(c.getType().sql);
                setConditionsSql(where, c.getType(), c.getVal());
                isOne = false;
            }
        }
        if(where.length() > 0){
            String whereSql = where.toString().trim().replaceAll("^(?i)(or|and)|(?i)(or|and)$", "");
            String[] whereArray = whereSql.split("(?i)where");
            if(whereArray.length == 1) {
                return " WHERE " + whereSql;
            }
            else if(whereArray.length == 2){
                if(ObjectUtil.empty(whereArray[1])){
                    return " "+whereArray[0];
                }
            }
        }
        return " "+(whereSql = where.toString());
    }
//public static void main(String... args){
//    System.out.println(
//            new Where("left join aa on a = b where 1 = 1", new Conditions("deleteFlg", Type.EQ, JoinType.AND, 0)).getSql()
//    );
//}
    private void setConditionsSql(StringBuilder where, Type type, Object val){
        if(type.isIn){
            where.append('(');
        }
        if(val instanceof List){
            boolean isOne = true;
            for(Object item : (List)val){
                if(!isOne){
                    where.append(" , ");
                }
                where.append(" ? ");
                params.add(item);
                isOne = false;
            }
        }else{
            where.append(" ? ");
            params.add(val);
        }
        if(type.isIn){
            where.append(')');
        }
    }
 
    public Object[] getParams() {
        return this.params.toArray();
    }
 
    /**
     * 关联类型
     * @author WangYX
     *
     */
    public static enum JoinType{
        OR    (" OR "),
        AND (" AND ");
        
        private String sql;
 
        private JoinType(String sql) {
            this.sql = sql;
        }
    }
    
    /**
     * 条件类型
     * @author WangYX
     *
     */
    public static enum Type{
        IN    (" IN "        , true),
        NIN    (" NOT IN "    , true),
        EQ    (" = "        ),
        NEQ    (" != "        ),
        AS  (" AS "     ),
        LIKE(" LIKE "    ),
        COMMA(" , "        );
        
        private String sql;
        
        private boolean isIn;
        
        private Type(String sql,boolean isIn) {
            this.sql = sql;
            this.isIn = isIn;
        }
        
        private Type(String sql) {
            this.sql = sql;
            this.isIn = false;
        }
    }
    
    /**
     * 条件实体类
     * @author WangYX
     *
     */
    public static class Conditions{
        
        public Conditions(String field, Type type, JoinType joinType, Object val) {
            super();
            this.field = field;
            this.type = type;
            this.joinType = joinType;
            this.val = val;
        }
 
        public Conditions(String field, Type type, Object val) {
            super();
            this.field = field;
            this.type = type;
            this.joinType = null;
            this.val = val;
        }
        
 
        public Conditions(String conditionSql){
            this.conditionSql = conditionSql;
        }
        
        private String conditionSql;
        
        private String field;
        
        private Type type;
        
        private JoinType joinType;
        
        private Object val;
 
        
        public String getConditionSql() {
            return conditionSql;
        }
 
        public void setConditionSql(String conditionSql) {
            this.conditionSql = conditionSql;
        }
 
        public String getField() {
            return field;
        }
 
        public void setField(String field) {
            this.field = field;
        }
 
        public Type getType() {
            return type;
        }
 
        public void setType(Type type) {
            this.type = type;
        }
 
        public Object getVal() {
            return val;
        }
 
        public void setVal(Object val) {
            this.val = val;
        }
 
        public JoinType getJoinType() {
            return joinType;
        }
 
        public void setJoinType(JoinType joinType) {
            this.joinType = joinType;
        }
        
    }
    
}