liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
public without sharing class QueryWrapper {
     private Map<String, Object> searchMap = new Map<String, Object>();
     public String searchs = '';
     private Schema.SObjectType type;
     private List<SObjectField> sObjectFieldList  = null;
     public QueryWrapper(Schema.SObjectType type){
        this.type = type;
     }
     public QueryWrapper(Schema.SObjectType type, List<SObjectField> sObjectFieldList){
        this.type = type;
        this.sObjectFieldList = sObjectFieldList;
     }
 
 
     public QueryWrapper() {
        // more code here
     }
     //public QueryWrapper(String type){
     //   this.type = type;
     //}
    
     private String statmentType(Object o){
         String whereO = '';
        if(o instanceof Double) {
            whereO = ((Double)o).format();
        } else if(o instanceof Integer){
            whereO = ((Integer)o).format();
        } else if(o instanceof Long){
            whereO = ((Long)o).format();
        } else if(o instanceof String){
            if(!''.equals(o)){
               whereO = '\'' + String.escapeSingleQuotes((String)o) + '\'' ;
            }else{
                //报错
            }
            
        } else if(o instanceof Boolean){
            if((Boolean)o){
                whereO = 'true';
            }else{
                whereO = 'false';
            }
        } else if(o instanceof Decimal){
            whereO = ((Decimal)o).format();
        }else if(o instanceof ID){
          //  whereO = ((ID)o).format();
        }else if(o instanceof Date){
            whereO = ((Date)o).format();
        }else if(o instanceof Datetime){
            whereO = ((Datetime)o).format();
        }
        
        return whereO;
     }
 
     private void statment(String column, Object o, String wheres){
        String whereO = '';
        if(column != null && column != '' && o != null){
            if('='.equals(wheres.trim()) || '!='.equals(wheres.trim()) ) {
                whereO = statmentType(o);
            } else if(' Like '.equals(wheres)) {
                whereO = statmentType(o);
                if(!''.equals(whereO)){
                    //之前Like的sql拼写有误重新拼接
                    whereO = whereO.substring(1,whereO.length()-1);
                    whereO = '%' + whereO + '%';
                    whereO = '\'' + whereO + '\'' ;
                }
            } else if(' rightLike '.equals(wheres)) {
                whereO = statmentType(o);
                if(!''.equals(whereO)){
                    //之前Like的sql拼写有误重新拼接
                    whereO = whereO.substring(1,whereO.length()-1);
                    whereO = whereO + '%';
                    whereO = '\'' + whereO + '\'' ;
                   
                }
            } else if(' leftLike '.equals(wheres)) {
                whereO = statmentType(o);
                if(!''.equals(whereO)){
                    //之前Like的sql拼写有误重新拼接
                    whereO = whereO.substring(1,whereO.length()-1);
                    whereO = '%' + whereO;
                    whereO = '\'' + whereO + '\'' ;
                    
                }
            }
 
            if(searchs.equals('')){
                searchs = searchs  + column + wheres + whereO;
            }else{
                searchs = searchs + ' AND ' + column + wheres + whereO;
            }
            
            searchMap.put(column, o);
        } else {
            // throw
        }
     }
     // in 和not in 
     private void statmentIn(String column, List<Object> o, String wheres){
        String inList = '(';
        if(o != null && o.size() > 0){
            for(Object s : o){
                if(s instanceof Double) {
                    s = ((Double)s).format();
                } else if(s instanceof Integer){
                    s = ((Integer)s).format();
                } else if(s instanceof Long){
                    s = ((Long)s).format();
                } else if(s instanceof String){
                    if(!''.equals(s)){
                       s = '\'' + String.escapeSingleQuotes((String)s) + '\'' ;
                    }else{
                        //报错
                    }
                }
                inList += '' + s + ',';
            }
            inList = inList.substring(0,inList.length() - 1);
            inList += ')';
 
            if(searchs.equals('')){
                searchs = searchs + column + wheres + inList;
            }else{
                searchs = searchs + ' AND ' + column + wheres + inList;
            }
        }else{
            //报错
        }
 
     }
     /**
     * 等于
     */
    public QueryWrapper eq(String column, Object o){
        statment(column, o,' = ');
        return this;
    }
     /**
     * 不等于
     */
    public QueryWrapper ne(String column, Object o){
        statment(column, o,' != ');
        return this;
    }
    /**
     * IN
     */
    public QueryWrapper inPlus(String column, List<Object> o){
        statmentIn(column,o,' In ');
        return this;
    }
    /**
     * not in 
     */
    public QueryWrapper notIn(String column, List<Object> o){
        statmentIn(column,o,' notIn ');
        return this;
    }
 
    /**
     * 大于
     */
    public QueryWrapper gt(String column, Object o){
        return null;
    }
    /**
     * 大于等于
     */
    public QueryWrapper ge(String column, Object o){
        return null;
    }
    /**
     * 小于等于
     */
    public QueryWrapper lt(String column, Object o){
        return null;
    }
    /**
     * 小于等于
     */
    public QueryWrapper le(String column, Object o){
        return null;
    }
    /**
     * Like 
     */
    public QueryWrapper likePlus(String column, Object o){
        statment(column,o,' Like ');
        return this;
    }
    /**
     * right LIKE
     */
    public QueryWrapper likeRight(String column, Object o){
        statment(column,o,' rightLike ');
        return this;
    }
 
    /**
     * left LIKE
     */
    public QueryWrapper likeLeft(String column, Object o){
        statment(column,o,' leftLike ');
        return this;
    }
 
    /**
     * is null
     */
    public QueryWrapper isNull(String column){
        return this;
    }
    /**
     * is not null
     */
    public QueryWrapper isNotNull(String column){
        return this;
    }
 
    /**
     * 排序
     */
    public QueryWrapper orderBy(String column, Object o){
        searchMap.put('sort', column);
        searchMap.put('sortOrder', o);
        return this;
    }
    /**
     * 正序
     */
    public QueryWrapper orderByAsc(String column){
        searchMap.put('sort', column);
        searchMap.put('sortOrder', 'asc');
        return this;
    }
    /**
     * 倒序
     */
    public QueryWrapper orderByDesc(String column){
        searchMap.put('sort', column);
        searchMap.put('sortOrder', ' desc');
        return this;
    }
 
    //group by 
    public QueryWrapper groupBy(String column, String o){
        searchMap.put('groupby', o);
        return this;
    }
 
 
    public Schema.SObjectType getType(){
        return this.type;
     }
     public void setType(Schema.SObjectType type){
         this.type = type;
     }
 
     public List<SObjectField> getSObjectFieldList(){
        return this.sObjectFieldList;
     }
     public void setSObjectFieldList(List<SObjectField> sObjectField){
         this.sObjectFieldList = sObjectField;
     }
 
 
     public String build(){
         String s = '';
         if(!''.equals(searchs)){
            s = ' where  ' + searchs;
         } 
         if(searchMap.containsKey('groupby') && !''.equals(searchMap.get('groupby'))){
            s = s + ' group by ' + searchMap.get('groupby');
         }
         if(searchMap.containsKey('sort') && !''.equals(searchMap.get('sort')) && !''.equals('sortOrder')){
            s = s + ' order by ' + searchMap.get('sort') + ' ' + searchMap.get('sortOrder');
         }
         return s;
     }
   
}