query_set_components.go
4.8 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
package domain
import "fmt"
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"`
}
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 {
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.正常赋值
//SubGroup []SelectExpr `json:"subGroup,omitempty"`
}
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 {
//LabelColumns []LabelColumn `json:"labelColumns"`
TableFields []TableField `json:"tableFields"`
ExprHuman string `json:"exprHuman"`
ExprSql string `json:"exprSql"`
}
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
}