forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.java
More file actions
executable file
·150 lines (101 loc) · 4.02 KB
/
Parser.java
File metadata and controls
executable file
·150 lines (101 loc) · 4.02 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
/*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.orm;
import java.sql.SQLException;
import java.sql.Savepoint;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import apijson.NotNull;
import apijson.RequestMethod;
import apijson.RequestRole;
/**解析器
* @author Lemon
*/
public interface Parser<T> {
int DEFAULT_QUERY_COUNT = 10;
int MAX_QUERY_PAGE = 100;
int MAX_QUERY_COUNT = 100;
int MAX_UPDATE_COUNT = 10;
int MAX_SQL_COUNT = 200;
int MAX_OBJECT_COUNT = 5;
int MAX_ARRAY_COUNT = 5;
int MAX_QUERY_DEPTH = 5;
@NotNull
Visitor<T> getVisitor();
Parser<T> setVisitor(@NotNull Visitor<T> visitor);
@NotNull
RequestMethod getMethod();
Parser<T> setMethod(@NotNull RequestMethod method);
int getVersion();
Parser<T> setVersion(int version);
String getTag();
Parser<T> setTag(String tag);
JSONObject getRequest();
Parser<T> setRequest(JSONObject request);
Parser<T> setNeedVerify(boolean needVerify);
boolean isNeedVerifyLogin();
Parser<T> setNeedVerifyLogin(boolean needVerifyLogin);
boolean isNeedVerifyRole();
Parser<T> setNeedVerifyRole(boolean needVerifyRole);
boolean isNeedVerifyContent();
Parser<T> setNeedVerifyContent(boolean needVerifyContent);
String parse(String request);
String parse(JSONObject request);
JSONObject parseResponse(String request);
JSONObject parseResponse(JSONObject request);
JSONObject parseCorrectRequest() throws Exception;
JSONObject parseCorrectRequest(RequestMethod method, String tag, int version, String name, JSONObject request,
int maxUpdateCount, SQLCreator creator) throws Exception;
JSONObject parseCorrectResponse(String table, JSONObject response) throws Exception;
JSONObject getStructure(String table, String key, String value, int version) throws Exception;
JSONObject onObjectParse(JSONObject request, String parentPath, String name, SQLConfig arrayConfig, boolean isSubquery) throws Exception;
JSONArray onArrayParse(JSONObject request, String parentPath, String name, boolean isSubquery) throws Exception;
/**解析远程函数
* @param key
* @param function
* @param parentPath
* @param currentName
* @param currentObject
* @return
* @throws Exception
*/
Object onFunctionParse(String key, String function, String parentPath, String currentName, JSONObject currentObject) throws Exception;
ObjectParser createObjectParser(JSONObject request, String parentPath, String name, SQLConfig arrayConfig, boolean isSubquery) throws Exception;
int getDefaultQueryCount();
int getMaxQueryPage();
int getMaxQueryCount();
int getMaxUpdateCount();
int getMaxSQLCount();
int getMaxObjectCount();
int getMaxArrayCount();
int getMaxQueryDepth();
void putQueryResult(String path, Object result);
Object getValueByPath(String valuePath);
void onVerifyLogin() throws Exception;
void onVerifyContent() throws Exception;
void onVerifyRole(SQLConfig config) throws Exception;
JSONObject executeSQL(SQLConfig config, boolean isSubquery) throws Exception;
SQLExecutor getSQLExecutor();
Verifier<T> getVerifier();
Boolean getGlobleFormat();
RequestRole getGlobleRole();
String getGlobleDatabase();
String getGlobleSchema();
Boolean getGlobleExplain();
String getGlobleCache();
int getTransactionIsolation();
void setTransactionIsolation(int transactionIsolation);
void begin(int transactionIsolation);
void rollback() throws SQLException;
void rollback(Savepoint savepoint) throws SQLException;
void commit() throws SQLException;
void close();
}