query_set_components.go
6.1 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
package domain
import (
"fmt"
"github.com/zeromicro/go-zero/core/collection"
"strings"
)
var (
SchemaTable TableType = "Schema" // 方案
SubProcessTable TableType = "SubProcess" // 子过程
CalculateItem TableType = "CalculateItem" // 计算项
CalculateTable TableType = "CalculateTable" // 计算表
CalculateSet TableType = "CalculateSet" // 计算集
)
var (
FlagGroup = "Group"
FlagSet = "Set"
)
var (
TableSplit SelectExprType = "TableSplit" //拆分
SplitAssign SelectExprType = "SplitAssign" //拆分赋值
NormalAssign SelectExprType = "NormalAssign" //正常赋值
)
type SelectExprType string
type QueryComponent struct {
Id string `json:"id"`
MasterTable *QueryComponentTable `json:"masterTable"`
Conditions []ConditionExpr `json:"conditions"`
Selects []SelectExprGroup `json:"selects"`
Description string `json:"description"`
Formula *FieldFormulaExpr `json:"formula"`
Aggregation *AggregationRule `json:"aggregation"`
Layout *LayoutRule `json:"layout"`
}
func (qc QueryComponent) AllSelectExpr() []SelectExpr {
var res = make([]SelectExpr, 0)
for _, s := range qc.Selects {
res = append(res, s.SelectExpr)
if len(s.SubSelects) > 0 {
res = append(res, s.SubSelects...)
}
}
return res
}
type ConditionExpr struct { // 条件表达式
Id string `json:"id"`
FieldLeft FieldExpr `json:"fieldLeft"`
FieldRight FieldExpr `json:"fieldRight"`
OperatorSymbol string `json:"operatorSymbol"`
AndOr string `json:"andOr"` // and or
}
func (c ConditionExpr) Equal(compare ConditionExpr) bool {
return c.OperatorSymbol == compare.OperatorSymbol &&
c.FieldLeft.ExprSql == compare.FieldLeft.ExprSql &&
c.FieldRight.ExprSql == compare.FieldRight.ExprSql
}
func (c ConditionExpr) ExprHuman() string {
return c.FieldLeft.ExprHuman + c.OperatorSymbol + c.FieldRight.ExprHuman
}
type FieldFormulaExpr struct {
ExprMode int `json:"exprMode"` // 表达式模式 0:sql 1:excel function
FieldExpr
}
type SelectExpr struct { // 查询表达式
Id string `json:"id"`
FieldLeft FieldExpr `json:"fieldLeft"`
FieldRight FieldExpr `json:"fieldRight"` // has value when type is equal to 1
Type string `json:"type"` // 1.拆分 2.拆方赋值 3.正常赋值
}
func (s SelectExpr) Equal(compare SelectExpr) bool {
return s.FieldLeft.ExprSql == compare.FieldLeft.ExprSql &&
s.FieldRight.ExprSql == compare.FieldRight.ExprSql
}
func (c SelectExpr) ExprHuman() string {
return c.FieldLeft.ExprHuman + "=" + c.FieldRight.ExprHuman
}
type SelectExprGroup struct { // 查询表达式
SelectExpr
SubSelects []SelectExpr `json:"subSelects,omitempty"`
}
type FieldExpr struct {
ExprMode int `json:"exprMode,omitempty"`
TableFields []TableField `json:"tableFields"`
ExprHuman string `json:"exprHuman"`
ExprSql string `json:"exprSql"`
}
func (expr *FieldExpr) Complete() string {
exprSql := expr.ExprSql
for _, f := range expr.TableFields {
sql := fmt.Sprintf("%s.%s", f.TableSqlName, f.FieldSqlName)
sub := fmt.Sprintf("max(%s.%s)", f.TableSqlName, f.FieldSqlName)
if strings.Contains(expr.ExprSql, fmt.Sprintf("(%s)", sql)) {
continue
}
exprSql = strings.ReplaceAll(exprSql, sql, sub)
}
return exprSql
}
func (expr *FieldExpr) Tables() []int {
set := collection.NewSet()
for _, f := range expr.TableFields {
if f.TableId == 0 {
continue
}
set.Add(f.TableId)
}
return set.KeysInt()
}
func (expr *FieldExpr) MixTableModel() bool {
var result = 0
for _, f := range expr.TableFields {
if strings.HasPrefix(f.TableSqlName, strings.ToLower(CalculateItem.ToString())) {
if result&1 == 0 {
result += 1
}
} else {
if result&2 == 0 {
result += 2
}
}
}
return result == 3
}
type LabelColumn struct {
Column TableField `json:"column,omitempty"`
LabelExpr string `json:"labelExpr"`
}
type TableField struct {
TableId int `json:"tableId"`
TableName string `json:"tableName"`
TableSqlName string `json:"tableSqlName"`
FieldName string `json:"fieldName"`
FieldSqlName string `json:"fieldSqlName"`
FieldSQLType string `json:"fieldSqlType"`
}
func (f TableField) String() string {
return fmt.Sprintf("%s.%s", f.TableSqlName, f.FieldSqlName)
}
type QueryComponentTable struct {
// 表Id
TableId int `json:"tableId"`
// 表类型 MainTable:主表 SideTable:副表 SubTable:分表 ExcelTable:Excel表
TableType string `json:"tableType"`
// 名称
Name string `json:"name"`
// 对应数据库名称
SQLName string `json:"sqlName"`
// 父级ID
ParentId int `json:"parentId"`
// 所有列
Fields []*Field `json:"fields"`
}
type Join struct {
TableId int
TableName string
TableSqlName string
Conditions []ConditionExpr
On SelectExpr
}
func NewQueryComponentTable(t *Table) *QueryComponentTable {
return &QueryComponentTable{
TableId: t.TableId,
TableType: t.TableType,
Name: t.Name,
SQLName: t.SQLName,
ParentId: t.ParentId,
Fields: t.Fields(false),
}
}
func QueryComponentsToMapById(items []*QueryComponent) map[string]*QueryComponent {
var res = make(map[string]*QueryComponent)
for i := range items {
res[items[i].Id] = items[i]
}
return res
}
func ConditionsToMapById(items []ConditionExpr) map[string]ConditionExpr {
var res = make(map[string]ConditionExpr)
for i := range items {
res[items[i].Id] = items[i]
}
return res
}
func SelectsToMapById(items []SelectExprGroup) map[string]SelectExprGroup {
var res = make(map[string]SelectExprGroup)
for i := range items {
res[items[i].Id] = items[i]
}
return res
}
func SelectsExprToMapById(items []SelectExpr) map[string]SelectExpr {
var res = make(map[string]SelectExpr)
for i := range items {
res[items[i].Id] = items[i]
}
return res
}
type QueryComponents []*QueryComponent
func (list QueryComponents) IsEmpty(t TableType) bool {
if len(list) == 0 {
return true
}
for _, q := range list {
switch t {
case CalculateTable:
if q.Aggregation != nil && len(q.Aggregation.RowFields) == 0 && len(q.Aggregation.ValueFields) == 0 {
return true
}
}
}
return false
}