FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
APIJSON/src/main/java/apijson/orm/SQLConfig.java at main · APIJSON/APIJSON · GitHub
APIJSON
/
APIJSON
Public
Notifications
You must be signed in to change notification settings
Fork
2.3k
Star
18.4k
Code
Issues
236
Pull requests
1
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
APIJSON
/
src
/
main
/
java
/
apijson
/
orm
/
SQLConfig.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
440 lines (325 loc) · 11.9 KB
Breadcrumbs
APIJSON
/
src
/
main
/
java
/
apijson
/
orm
/
SQLConfig.java
Copy path
File metadata and controls
executable file
·
440 lines (325 loc) · 11.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
/*Copyright (C) 2026 the APIJSON group. All rights reserved.
This source code is licensed under the Apache License Version 2.0.*/
package
apijson
.
orm
;
import
java
.
util
.
List
;
import
java
.
util
.
Map
;
import
apijson
.
NotNull
;
import
apijson
.
RequestMethod
;
import
apijson
.
StringUtil
;
/**SQL配置
* @author Lemon
*/
public
interface
SQLConfig
<
T
,
M
extends
Map
<
String
,
Object
>,
L
extends
List
<
Object
>> {
String
DATABASE_MYSQL
=
"MYSQL"
;
// https://www.mysql.com
String
DATABASE_POSTGRESQL
=
"POSTGRESQL"
;
// https://www.postgresql.org
String
DATABASE_SQLSERVER
=
"SQLSERVER"
;
// https://www.microsoft.com/en-us/sql-server
String
DATABASE_ORACLE
=
"ORACLE"
;
// https://www.oracle.com/database
String
DATABASE_DB2
=
"DB2"
;
// https://www.ibm.com/products/db2
String
DATABASE_MARIADB
=
"MARIADB"
;
// https://mariadb.org
String
DATABASE_TIDB
=
"TIDB"
;
// https://www.pingcap.com/tidb
String
DATABASE_COCKROACHDB
=
"COCKROACHDB"
;
// https://www.cockroachlabs.com
String
DATABASE_DAMENG
=
"DAMENG"
;
// https://www.dameng.com
String
DATABASE_KINGBASE
=
"KINGBASE"
;
// https://www.kingbase.com.cn
String
DATABASE_KINGBASE_MYSQL
=
"KINGBASE_MYSQL"
;
// Kingbase in MySQL compatibility mode
String
DATABASE_KINGBASE_ORACLE
=
"KINGBASE_ORACLE"
;
// Kingbase in Oracle compatibility mode
String
DATABASE_KINGBASE_SQLSERVER
=
"KINGBASE_SQLSERVER"
;
// Kingbase in SQL Server compatibility mode
String
DATABASE_ELASTICSEARCH
=
"ELASTICSEARCH"
;
// https://www.elastic.co/guide/en/elasticsearch/reference/7.4/xpack-sql.html
String
DATABASE_MANTICORE
=
"MANTICORE"
;
// https://manticoresearch.com
String
DATABASE_CLICKHOUSE
=
"CLICKHOUSE"
;
// https://clickhouse.com
String
DATABASE_HIVE
=
"HIVE"
;
// https://hive.apache.org
String
DATABASE_PRESTO
=
"PRESTO"
;
// Facebook PrestoDB https://prestodb.io
String
DATABASE_TRINO
=
"TRINO"
;
// PrestoSQL https://trino.io
String
DATABASE_DORIS
=
"DORIS"
;
// https://doris.apache.org
String
DATABASE_SNOWFLAKE
=
"SNOWFLAKE"
;
// https://www.snowflake.com
String
DATABASE_DATABEND
=
"DATABEND"
;
// https://www.databend.com
String
DATABASE_DATABRICKS
=
"DATABRICKS"
;
// https://www.databricks.com
String
DATABASE_CASSANDRA
=
"CASSANDRA"
;
// https://cassandra.apache.org
String
DATABASE_MILVUS
=
"MILVUS"
;
// https://milvus.io
String
DATABASE_INFLUXDB
=
"INFLUXDB"
;
// https://www.influxdata.com/products/influxdb-overview
String
DATABASE_TDENGINE
=
"TDENGINE"
;
// https://tdengine.com
String
DATABASE_TIMESCALEDB
=
"TIMESCALEDB"
;
// https://www.timescale.com
String
DATABASE_QUESTDB
=
"QUESTDB"
;
// https://questdb.com
String
DATABASE_IOTDB
=
"IOTDB"
;
// https://iotdb.apache.org/zh/UserGuide/latest/API/Programming-JDBC.html
String
DATABASE_REDIS
=
"REDIS"
;
// https://redisql.com
String
DATABASE_MONGODB
=
"MONGODB"
;
// https://www.mongodb.com/docs/atlas/data-federation/query/query-with-sql
String
DATABASE_KAFKA
=
"KAFKA"
;
// https://github.com/APIJSON/APIJSON-Demo/tree/master/APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Kafka
String
DATABASE_SQLITE
=
"SQLITE"
;
// https://www.sqlite.org
String
DATABASE_DUCKDB
=
"DUCKDB"
;
// https://duckdb.org
String
DATABASE_SURREALDB
=
"SURREALDB"
;
// https://surrealdb.com
String
DATABASE_OPENGAUSS
=
"OPENGAUSS"
;
// https://opengauss.org
String
DATABASE_STARROCKS
=
"STARROCKS"
;
// https://docs.starrocks.io/zh/docs/quick_start/shared-nothing
String
DATABASE_MQ
=
"MQ"
;
//
String
SCHEMA_INFORMATION
=
"information_schema"
;
//MySQL, PostgreSQL, SQL Server 都有的系统模式
String
SCHEMA_SYS
=
"sys"
;
//SQL Server 系统模式
String
TABLE_SCHEMA
=
"table_schema"
;
String
TABLE_NAME
=
"table_name"
;
int
TYPE_CHILD
=
0
;
int
TYPE_ITEM
=
1
;
int
TYPE_ITEM_CHILD_0
=
2
;
Parser
<
T
,
M
,
L
>
gainParser
();
SQLConfig
<
T
,
M
,
L
>
setParser
(
Parser
<
T
,
M
,
L
>
parser
);
ObjectParser
<
T
,
M
,
L
>
gainObjectParser
();
SQLConfig
<
T
,
M
,
L
>
setObjectParser
(
ObjectParser
<
T
,
M
,
L
>
objectParser
);
int
getVersion
();
SQLConfig
<
T
,
M
,
L
>
setVersion
(
int
version
);
String
getTag
();
SQLConfig
<
T
,
M
,
L
>
setTag
(
String
tag
);
boolean
isTSQL
();
boolean
isMSQL
();
boolean
isPSQL
();
boolean
isMySQL
();
boolean
isPostgreSQL
();
boolean
isSQLServer
();
boolean
isOracle
();
boolean
isDb2
();
boolean
isMariaDB
();
boolean
isTiDB
();
boolean
isCockroachDB
();
boolean
isDameng
();
boolean
isKingBase
();
boolean
isKingBaseMySQL
();
boolean
isKingBaseOracle
();
boolean
isKingBaseSQLServer
();
boolean
isElasticsearch
();
boolean
isManticore
();
boolean
isClickHouse
();
boolean
isHive
();
boolean
isPresto
();
boolean
isTrino
();
boolean
isSnowflake
();
boolean
isDatabend
();
boolean
isDatabricks
();
boolean
isCassandra
();
boolean
isMilvus
();
boolean
isInfluxDB
();
boolean
isTDengine
();
boolean
isTimescaleDB
();
boolean
isQuestDB
();
boolean
isIoTDB
();
boolean
isRedis
();
boolean
isMongoDB
();
boolean
isKafka
();
boolean
isMQ
();
boolean
isSQLite
();
boolean
isDuckDB
();
boolean
isSurrealDB
();
boolean
isOpenGauss
();
boolean
isDoris
();
boolean
isStarRocks
();
// 暂时只兼容以上几种
// boolean isSQL();
// boolean isTSQL();
// boolean isPLSQL();
// boolean isAnsiSQL();
/**用来给 Table, Column 等系统属性表来绕过 MAX_SQL_COUNT 等限制
* @return
*/
boolean
limitSQLCount
();
/**是否开启 WITH AS 表达式来简化 SQL 和提升性能
* @return
*/
boolean
isWithAsEnable
();
/**允许增删改部分失败
* @return
*/
boolean
allowPartialUpdateFailed
();
@
NotNull
String
getIdKey
();
@
NotNull
String
getUserIdKey
();
/**获取数据库版本号,可通过判断版本号解决一些 JDBC 驱动连接数据库的兼容问题
* MYSQL: 8.0, 5.7, 5.6 等; PostgreSQL: 11, 10, 9.6 等
* @return
*/
String
gainDBVersion
();
@
NotNull
default
int
[]
gainDBVersionNums
() {
String
dbVersion
=
StringUtil
.
noBlank
(
gainDBVersion
());
if
(
dbVersion
.
isEmpty
()) {
return
new
int
[]{
0
};
}
int
index
=
dbVersion
.
indexOf
(
"-"
);
if
(
index
>
0
) {
dbVersion
=
dbVersion
.
substring
(
0
,
index
);
}
String
[]
ss
=
dbVersion
.
split
(
"[.]"
);
int
[]
nums
=
new
int
[
Math
.
max
(
1
,
ss
.
length
)];
for
(
int
i
=
0
;
i
<
ss
.
length
;
i
++) {
nums
[
i
] =
Integer
.
valueOf
(
ss
[
i
]);
}
return
nums
;
}
/**获取数据库地址
* @return
*/
String
gainDBUri
();
/**获取数据库账号
* @return
*/
String
gainDBAccount
();
/**获取数据库密码
* @return
*/
String
gainDBPassword
();
/**获取SQL语句
* @return
* @throws Exception
*/
String
gainSQL
(
boolean
prepared
)
throws
Exception
;
boolean
isTest
();
SQLConfig
<
T
,
M
,
L
>
setTest
(
boolean
test
);
int
getType
();
SQLConfig
<
T
,
M
,
L
>
setType
(
int
type
);
int
getCount
();
SQLConfig
<
T
,
M
,
L
>
setCount
(
int
count
);
int
getPage
();
SQLConfig
<
T
,
M
,
L
>
setPage
(
int
page
);
int
getQuery
();
SQLConfig
<
T
,
M
,
L
>
setQuery
(
int
query
);
Boolean
getCompat
();
SQLConfig
<
T
,
M
,
L
>
setCompat
(
Boolean
compat
);
int
getPosition
();
SQLConfig
<
T
,
M
,
L
>
setPosition
(
int
position
);
int
getCache
();
SQLConfig
<
T
,
M
,
L
>
setCache
(
int
cache
);
boolean
isExplain
();
SQLConfig
<
T
,
M
,
L
>
setExplain
(
boolean
explain
);
RequestMethod
getMethod
();
SQLConfig
<
T
,
M
,
L
>
setMethod
(
RequestMethod
method
);
Object
getId
();
SQLConfig
<
T
,
M
,
L
>
setId
(
Object
id
);
/**Whether the current id was supplied by {@link AbstractSQLConfig.IdCallback}, rather than by the request.*/
default
boolean
isIdGeneratedByAPIJSON
() {
return
false
;
}
default
SQLConfig
<
T
,
M
,
L
>
setIdGeneratedByAPIJSON
(
boolean
generated
) {
return
this
;
}
Object
getIdIn
();
SQLConfig
<
T
,
M
,
L
>
setIdIn
(
Object
idIn
);
Object
getUserId
();
SQLConfig
<
T
,
M
,
L
>
setUserId
(
Object
userId
);
Object
getUserIdIn
();
SQLConfig
<
T
,
M
,
L
>
setUserIdIn
(
Object
userIdIn
);
String
getRole
();
SQLConfig
<
T
,
M
,
L
>
setRole
(
String
role
);
public
boolean
isDistinct
();
public
SQLConfig
<
T
,
M
,
L
>
setDistinct
(
boolean
distinct
);
String
getDatabase
();
SQLConfig
<
T
,
M
,
L
>
setDatabase
(
String
database
);
String
getSQLNamespace
();
String
getNamespace
();
SQLConfig
<
T
,
M
,
L
>
setNamespace
(
String
namespace
);
String
gainSQLCatalog
();
String
getCatalog
();
SQLConfig
<
T
,
M
,
L
>
setCatalog
(
String
catalog
);
String
gainSQLSchema
();
String
getSchema
();
SQLConfig
<
T
,
M
,
L
>
setSchema
(
String
schema
);
String
getDatasource
();
SQLConfig
<
T
,
M
,
L
>
setDatasource
(
String
datasource
);
String
getQuote
();
List
<
String
>
getJson
();
SQLConfig
<
T
,
M
,
L
>
setJson
(
List
<
String
>
json
);
/**请求传进来的Table名
* @return
* @see {@link #gainSQLTable()}
*/
String
getTable
();
SQLConfig
<
T
,
M
,
L
>
setTable
(
String
table
);
/**数据库里的真实Table名
* 通过 {@link AbstractSQLConfig.TABLE_KEY_MAP} 映射
* @return
*/
String
gainSQLTable
();
String
gainTablePath
();
Map
<
String
,
String
>
getKeyMap
();
SQLConfig
<
T
,
M
,
L
>
setKeyMap
(
Map
<
String
,
String
>
keyMap
);
List
<
String
>
getRaw
();
SQLConfig
<
T
,
M
,
L
>
setRaw
(
List
<
String
>
raw
);
Subquery
<
T
,
M
,
L
>
getFrom
();
SQLConfig
<
T
,
M
,
L
>
setFrom
(
Subquery
<
T
,
M
,
L
>
from
);
List
<
String
>
getColumn
();
SQLConfig
<
T
,
M
,
L
>
setColumn
(
List
<
String
>
column
);
List
<
List
<
Object
>>
getValues
();
SQLConfig
<
T
,
M
,
L
>
setValues
(
List
<
List
<
Object
>>
values
);
Map
<
String
,
Object
>
getContent
();
SQLConfig
<
T
,
M
,
L
>
setContent
(
Map
<
String
,
Object
>
content
);
Map
<
String
,
List
<
String
>>
getCombineMap
();
SQLConfig
<
T
,
M
,
L
>
setCombineMap
(
Map
<
String
,
List
<
String
>>
combineMap
);
String
getCombine
();
SQLConfig
<
T
,
M
,
L
>
setCombine
(
String
combine
);
Map
<
String
,
String
>
getCast
();
SQLConfig
<
T
,
M
,
L
>
setCast
(
Map
<
String
,
String
>
cast
);
List
<
String
>
getNull
();
SQLConfig
<
T
,
M
,
L
>
setNull
(
List
<
String
>
nulls
);
Map
<
String
,
Object
>
getWhere
();
SQLConfig
<
T
,
M
,
L
>
setWhere
(
Map
<
String
,
Object
>
where
);
String
getGroup
();
SQLConfig
<
T
,
M
,
L
>
setGroup
(
String
group
);
Map
<
String
,
Object
>
getHaving
();
SQLConfig
<
T
,
M
,
L
>
setHaving
(
Map
<
String
,
Object
>
having
);
String
getHavingCombine
();
SQLConfig
<
T
,
M
,
L
>
setHavingCombine
(
String
havingCombine
);
String
getSample
();
SQLConfig
<
T
,
M
,
L
>
setSample
(
String
order
);
String
getLatest
();
SQLConfig
<
T
,
M
,
L
>
setLatest
(
String
latest
);
String
getPartition
();
SQLConfig
<
T
,
M
,
L
>
setPartition
(
String
partition
);
String
getFill
();
SQLConfig
<
T
,
M
,
L
>
setFill
(
String
fill
);
String
getOrder
();
SQLConfig
<
T
,
M
,
L
>
setOrder
(
String
order
);
/**
* exactMatch = false
* @param key
* @return
*/
Object
getWhere
(
String
key
);
/**
* @param key
* @param exactMatch
* @return
*/
Object
getWhere
(
String
key
,
boolean
exactMatch
);
/**
* @param key
* @param value
* @return
*/
SQLConfig
<
T
,
M
,
L
>
putWhere
(
String
key
,
Object
value
,
boolean
prior
);
boolean
isPrepared
();
SQLConfig
<
T
,
M
,
L
>
setPrepared
(
boolean
prepared
);
boolean
isMain
();
SQLConfig
<
T
,
M
,
L
>
setMain
(
boolean
main
);
List
<
Object
>
getPreparedValueList
();
SQLConfig
<
T
,
M
,
L
>
setPreparedValueList
(
List
<
Object
>
preparedValueList
);
String
getAlias
();
SQLConfig
<
T
,
M
,
L
>
setAlias
(
String
alias
);
default
String
gainTableKey
() {
String
alias
=
getAlias
();
return
getTable
() + (
StringUtil
.
isEmpty
(
alias
) ?
""
:
":"
+
alias
);
}
default
String
gainSQLAlias
() {
return
gainSQLAlias
(
getTable
(),
getAlias
());
}
static
String
gainSQLAlias
(
@
NotNull
String
table
,
String
alias
) {
// 这里不用 : $ 等符号,因为部分数据库/引擎似乎不支持 `key`, "key", [key] 等避免关键词冲突的方式,只能使用符合变量命名的表别名
return
StringUtil
.
isEmpty
(
alias
) ?
table
:
table
+
"__"
+
alias
;
// 带上原表名,避免 alias 和其它表名/字段名冲突
}
String
gainWhereString
(
boolean
hasPrefix
)
throws
Exception
;
String
gainRawSQL
(
String
key
,
Object
value
)
throws
Exception
;
String
gainRawSQL
(
String
key
,
Object
value
,
boolean
throwWhenMissing
)
throws
Exception
;
boolean
isKeyPrefix
();
SQLConfig
<
T
,
M
,
L
>
setKeyPrefix
(
boolean
keyPrefix
);
List
<
Join
<
T
,
M
,
L
>>
getJoinList
();
SQLConfig
<
T
,
M
,
L
>
setJoinList
(
List
<
Join
<
T
,
M
,
L
>>
joinList
);
boolean
hasJoin
();
String
gainSubqueryString
(
Subquery
<
T
,
M
,
L
>
subquery
)
throws
Exception
;
SQLConfig
<
T
,
M
,
L
>
setProcedure
(
String
procedure
);
List
<
Object
>
getWithAsExprPreparedValueList
();
SQLConfig
<
T
,
M
,
L
>
setWithAsExprPreparedValueList
(
List
<
Object
>
withAsExprePreparedValueList
);
boolean
isFakeDelete
();
Map
<
String
,
Object
>
onFakeDelete
(
Map
<
String
,
Object
>
map
);
}
Back
|
FazBrowse Home
|
New Git URL