forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemoFunction.java
More file actions
executable file
·292 lines (248 loc) · 8.39 KB
/
Copy pathDemoFunction.java
File metadata and controls
executable file
·292 lines (248 loc) · 8.39 KB
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
284
285
286
287
288
289
290
291
292
/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
package apijson.demo.server;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import apijson.demo.server.model.BaseModel;
import zuo.biao.apijson.Log;
import zuo.biao.apijson.RequestRole;
import zuo.biao.apijson.server.Function;
import zuo.biao.apijson.server.NotNull;
/**可远程调用的函数类
* @author Lemon
*/
public class DemoFunction extends Function implements FunctionList {
private static final String TAG = "DemoFunction";
public static void test() throws Exception {
int i0 = 1, i1 = -2;
JSONObject request = new JSONObject();
request.put("id", 10);
request.put("i0", i0);
request.put("i1", i1);
JSONArray arr = new JSONArray();
arr.add(new JSONObject());
request.put("arr", arr);
JSONArray array = new JSONArray();
array.add(1);//new JSONObject());
array.add(2);//new JSONObject());
array.add(4);//new JSONObject());
array.add(10);//new JSONObject());
request.put("array", array);
request.put("position", 1);
request.put("@position", 0);
request.put("key", "key");
JSONObject object = new JSONObject();
object.put("key", true);
request.put("object", object);
Log.i(TAG, "plus(1,-2) = " + invoke(request, "plus(i0,i1)"));
Log.i(TAG, "count([1,2,4,10]) = " + invoke(request, "countArray(array)"));
Log.i(TAG, "isContain([1,2,4,10], 10) = " + invoke(request, "isContain(array,id)"));
Log.i(TAG, "getFromArray([1,2,4,10], 0) = " + invoke(request, "getFromArray(array,@position)"));
Log.i(TAG, "getFromObject({key:true}, key) = " + invoke(request, "getFromObject(object,key)"));
}
public static final DemoFunction instance;
static {
instance = new DemoFunction();
}
/**反射调用
* @param request
* @param function 例如get(object,key),参数只允许引用,不能直接传值
* @return
*/
public static Object invoke(JSONObject request, String function) throws Exception {
//TODO 不允许调用invoke,避免死循环
// if (function.startsWith("invoke(")) {
//
// }
return invoke(instance, request, function);
}
/**TODO 仅用来测试 "key-()":"getIdList()" 和 "key()":"getIdList()"
* @param request
* @return JSONArray 只能用JSONArray,用long[]会在SQLConfig解析崩溃
* @throws Exception
*/
public JSONArray getIdList(@NotNull JSONObject request) throws Exception {
return new JSONArray(new ArrayList<Object>(Arrays.asList(12, 15, 301, 82001, 82002, 38710)));
}
/**TODO 仅用来测试 "key-()":"verifyAccess()"
* @param request
* @return
* @throws Exception
*/
public Object verifyAccess(@NotNull JSONObject request) throws Exception {
long userId = request.getLongValue(zuo.biao.apijson.JSONObject.KEY_USER_ID);
RequestRole role = RequestRole.get(request.getString(zuo.biao.apijson.JSONObject.KEY_ROLE));
if (userId != 70793 && role == RequestRole.ADMIN) {
throw new IllegalAccessException("verifyAccess:ADMIN账号只能为70793!");
}
return null;
}
public double plus(@NotNull JSONObject request, String i0, String i1) {
return request.getDoubleValue(i0) + request.getDoubleValue(i1);
}
public double minus(@NotNull JSONObject request, String i0, String i1) {
return request.getDoubleValue(i0) - request.getDoubleValue(i1);
}
public double multiply(@NotNull JSONObject request, String i0, String i1) {
return request.getDoubleValue(i0) * request.getDoubleValue(i1);
}
public double divide(@NotNull JSONObject request, String i0, String i1) {
return request.getDoubleValue(i0) / request.getDoubleValue(i1);
}
//判断是否为空 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
/**判断array是否为空
* @param request
* @param array
* @return
*/
@Override
public boolean isArrayEmpty(@NotNull JSONObject request, String array) {
return BaseModel.isEmpty(request.getJSONArray(array));
}
/**判断object是否为空
* @param request
* @param object
* @return
*/
@Override
public boolean isObjectEmpty(@NotNull JSONObject request, String object) {
return BaseModel.isEmpty(request.getJSONObject(object));
}
//判断是否为空 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//判断是否为包含 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
/**判断array是否包含value
* @param request
* @param array
* @param value
* @return
*/
@Override
public boolean isContain(@NotNull JSONObject request, String array, String value) {
//解决isContain((List<Long>) [82001,...], (Integer) 82001) == false及类似问题, list元素可能是从数据库查到的bigint类型的值
// return BaseModel.isContain(request.getJSONArray(array), request.get(value));
//不用准确的的 request.getString(value).getClass() ,因为Long值转Integer崩溃,而且转成一种类型本身就和字符串对比效果一样了。
List<String> list = com.alibaba.fastjson.JSON.parseArray(request.getString(array), String.class);
return list != null && list.contains(request.getString(value));
}
/**判断object是否包含key
* @param request
* @param object
* @param key
* @return
*/
@Override
public boolean isContainKey(@NotNull JSONObject request, String object, String key) {
return BaseModel.isContainKey(request.getJSONObject(object), request.getString(key));
}
/**判断object是否包含value
* @param request
* @param object
* @param value
* @return
*/
@Override
public boolean isContainValue(@NotNull JSONObject request, String object, String value) {
return BaseModel.isContainValue(request.getJSONObject(object), request.get(value));
}
//判断是否为包含 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//获取集合长度 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
/**获取数量
* @param request
* @param array
* @return
*/
@Override
public int countArray(@NotNull JSONObject request, String array) {
return BaseModel.count(request.getJSONArray(array));
}
/**获取数量
* @param request
* @param object
* @return
*/
@Override
public int countObject(@NotNull JSONObject request, String object) {
return BaseModel.count(request.getJSONObject(object));
}
//获取集合长度 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//根据键获取值 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
/**获取
** @param request
* @param array
* @param position
* @return
*/
@Override
public Object getFromArray(@NotNull JSONObject request, String array, String position) {
return BaseModel.get(request.getJSONArray(array), request.getIntValue(position));
}
/**获取
* @param request
* @param object
* @param key
* @return
*/
@Override
public Object getFromObject(@NotNull JSONObject request, String object, String key) {
return BaseModel.get(request.getJSONObject(object), request.getString(key));
}
//根据键获取值 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//获取非基本类型对应基本类型的非空值 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
/**获取非空值
* @param request
* @param value
* @return
*/
@Override
public boolean booleanValue(@NotNull JSONObject request, String value) {
return request.getBooleanValue(value);
}
/**获取非空值
* @param request
* @param value
* @return
*/
@Override
public int intValue(@NotNull JSONObject request, String value) {
return request.getIntValue(value);
}
/**获取非空值
* @param request
* @param value
* @return
*/
@Override
public long longValue(@NotNull JSONObject request, String value) {
return request.getLongValue(value);
}
/**获取非空值
* @param request
* @param value
* @return
*/
@Override
public float floatValue(@NotNull JSONObject request, String value) {
return request.getFloatValue(value);
}
/**获取非空值
* @param request
* @param value
* @return
*/
@Override
public double doubleValue(@NotNull JSONObject request, String value) {
return request.getDoubleValue(value);
}
//获取非基本类型对应基本类型的非空值 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>
}