-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
view.go
311 lines (264 loc) · 8.52 KB
/
view.go
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
/*
Copyright 2022 The Vitess Authors.
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 schemadiff
import (
"strings"
"vitess.io/vitess/go/vt/sqlparser"
)
type AlterViewEntityDiff struct {
from *CreateViewEntity
to *CreateViewEntity
alterView *sqlparser.AlterView
}
// IsEmpty implements EntityDiff
func (d *AlterViewEntityDiff) IsEmpty() bool {
return d.Statement() == nil
}
// Entities implements EntityDiff
func (d *AlterViewEntityDiff) Entities() (from Entity, to Entity) {
return d.from, d.to
}
// Statement implements EntityDiff
func (d *AlterViewEntityDiff) Statement() sqlparser.Statement {
if d == nil {
return nil
}
return d.alterView
}
// AlterView returns the underlying sqlparser.AlterView that was generated for the diff.
func (d *AlterViewEntityDiff) AlterView() *sqlparser.AlterView {
if d == nil {
return nil
}
return d.alterView
}
// StatementString implements EntityDiff
func (d *AlterViewEntityDiff) StatementString() (s string) {
if stmt := d.Statement(); stmt != nil {
s = sqlparser.String(stmt)
}
return s
}
// CanonicalStatementString implements EntityDiff
func (d *AlterViewEntityDiff) CanonicalStatementString() (s string) {
if stmt := d.Statement(); stmt != nil {
s = sqlparser.CanonicalString(stmt)
}
return s
}
// SubsequentDiff implements EntityDiff
func (d *AlterViewEntityDiff) SubsequentDiff() EntityDiff {
return nil
}
// SetSubsequentDiff implements EntityDiff
func (d *AlterViewEntityDiff) SetSubsequentDiff(EntityDiff) {
}
type CreateViewEntityDiff struct {
createView *sqlparser.CreateView
}
// IsEmpty implements EntityDiff
func (d *CreateViewEntityDiff) IsEmpty() bool {
return d.Statement() == nil
}
// Entities implements EntityDiff
func (d *CreateViewEntityDiff) Entities() (from Entity, to Entity) {
return nil, &CreateViewEntity{CreateView: d.createView}
}
// Statement implements EntityDiff
func (d *CreateViewEntityDiff) Statement() sqlparser.Statement {
if d == nil {
return nil
}
return d.createView
}
// CreateView returns the underlying sqlparser.CreateView that was generated for the diff.
func (d *CreateViewEntityDiff) CreateView() *sqlparser.CreateView {
if d == nil {
return nil
}
return d.createView
}
// StatementString implements EntityDiff
func (d *CreateViewEntityDiff) StatementString() (s string) {
if stmt := d.Statement(); stmt != nil {
s = sqlparser.String(stmt)
}
return s
}
// CanonicalStatementString implements EntityDiff
func (d *CreateViewEntityDiff) CanonicalStatementString() (s string) {
if stmt := d.Statement(); stmt != nil {
s = sqlparser.CanonicalString(stmt)
}
return s
}
// SubsequentDiff implements EntityDiff
func (d *CreateViewEntityDiff) SubsequentDiff() EntityDiff {
return nil
}
// SetSubsequentDiff implements EntityDiff
func (d *CreateViewEntityDiff) SetSubsequentDiff(EntityDiff) {
}
type DropViewEntityDiff struct {
from *CreateViewEntity
dropView *sqlparser.DropView
}
// IsEmpty implements EntityDiff
func (d *DropViewEntityDiff) IsEmpty() bool {
return d.Statement() == nil
}
// Entities implements EntityDiff
func (d *DropViewEntityDiff) Entities() (from Entity, to Entity) {
return d.from, nil
}
// Statement implements EntityDiff
func (d *DropViewEntityDiff) Statement() sqlparser.Statement {
if d == nil {
return nil
}
return d.dropView
}
// DropView returns the underlying sqlparser.DropView that was generated for the diff.
func (d *DropViewEntityDiff) DropView() *sqlparser.DropView {
if d == nil {
return nil
}
return d.dropView
}
// CanonicalStatementString implements EntityDiff
func (d *DropViewEntityDiff) CanonicalStatementString() (s string) {
if stmt := d.Statement(); stmt != nil {
s = sqlparser.CanonicalString(stmt)
}
return s
}
// StatementString implements EntityDiff
func (d *DropViewEntityDiff) StatementString() (s string) {
if stmt := d.Statement(); stmt != nil {
s = sqlparser.String(stmt)
}
return s
}
// SubsequentDiff implements EntityDiff
func (d *DropViewEntityDiff) SubsequentDiff() EntityDiff {
return nil
}
// SetSubsequentDiff implements EntityDiff
func (d *DropViewEntityDiff) SetSubsequentDiff(EntityDiff) {
}
// CreateViewEntity stands for a VIEW construct. It contains the view's CREATE statement.
type CreateViewEntity struct {
*sqlparser.CreateView
}
func NewCreateViewEntity(c *sqlparser.CreateView) (*CreateViewEntity, error) {
if !c.IsFullyParsed() {
return nil, &NotFullyParsedError{Entity: c.ViewName.Name.String(), Statement: sqlparser.CanonicalString(c)}
}
entity := &CreateViewEntity{CreateView: c}
entity.normalize()
return entity, nil
}
func (c *CreateViewEntity) normalize() {
// Drop the default algorithm
if strings.EqualFold(c.CreateView.Algorithm, "undefined") {
c.CreateView.Algorithm = ""
}
// Drop the default security model
if strings.EqualFold(c.CreateView.Security, "definer") {
c.CreateView.Security = ""
}
}
// Name implements Entity interface
func (c *CreateViewEntity) Name() string {
return c.CreateView.GetTable().Name.String()
}
// Diff implements Entity interface function
func (c *CreateViewEntity) Diff(other Entity, hints *DiffHints) (EntityDiff, error) {
otherCreateView, ok := other.(*CreateViewEntity)
if !ok {
return nil, ErrEntityTypeMismatch
}
return c.ViewDiff(otherCreateView, hints)
}
// ViewDiff compares this view statement with another view statement, and sees what it takes to
// change this view to look like the other view.
// It returns an AlterView statement if changes are found, or nil if not.
// the other view may be of different name; its name is ignored.
func (c *CreateViewEntity) ViewDiff(other *CreateViewEntity, _ *DiffHints) (*AlterViewEntityDiff, error) {
if !c.IsFullyParsed() {
return nil, &NotFullyParsedError{Entity: c.Name(), Statement: sqlparser.CanonicalString(c.CreateView)}
}
if !other.CreateView.IsFullyParsed() {
return nil, &NotFullyParsedError{Entity: c.Name(), Statement: sqlparser.CanonicalString(other.CreateView)}
}
if c.identicalOtherThanName(other) {
return nil, nil
}
alterView := &sqlparser.AlterView{
ViewName: c.CreateView.ViewName,
Algorithm: other.CreateView.Algorithm,
Definer: other.CreateView.Definer,
Security: other.CreateView.Security,
Columns: other.CreateView.Columns,
Select: other.CreateView.Select,
CheckOption: other.CreateView.CheckOption,
}
return &AlterViewEntityDiff{alterView: alterView, from: c, to: other}, nil
}
// Create implements Entity interface
func (c *CreateViewEntity) Create() EntityDiff {
return &CreateViewEntityDiff{createView: c.CreateView}
}
// Drop implements Entity interface
func (c *CreateViewEntity) Drop() EntityDiff {
dropView := &sqlparser.DropView{
FromTables: []sqlparser.TableName{c.ViewName},
}
return &DropViewEntityDiff{from: c, dropView: dropView}
}
// apply attempts to apply an ALTER VIEW diff onto this entity's view definition.
// supported modifications are only those created by schemadiff's Diff() function.
func (c *CreateViewEntity) apply(diff *AlterViewEntityDiff) error {
c.CreateView = diff.to.CreateView
return nil
}
// Apply attempts to apply given ALTER VIEW diff onto the view defined by this entity.
// This entity is unmodified. If successful, a new CREATE VIEW entity is returned.
func (c *CreateViewEntity) Apply(diff EntityDiff) (Entity, error) {
alterDiff, ok := diff.(*AlterViewEntityDiff)
if !ok {
return nil, ErrEntityTypeMismatch
}
dup := c.Clone().(*CreateViewEntity)
if err := dup.apply(alterDiff); err != nil {
return nil, err
}
dup.normalize()
return dup, nil
}
func (c *CreateViewEntity) Clone() Entity {
return &CreateViewEntity{CreateView: sqlparser.CloneRefOfCreateView(c.CreateView)}
}
func (c *CreateViewEntity) identicalOtherThanName(other *CreateViewEntity) bool {
if other == nil {
return false
}
return c.Algorithm == other.Algorithm &&
c.Security == other.Security &&
c.CheckOption == other.CheckOption &&
c.IsReplace == other.IsReplace &&
sqlparser.Equals.RefOfDefiner(c.Definer, other.Definer) &&
sqlparser.Equals.Columns(c.Columns, other.Columns) &&
sqlparser.Equals.SelectStatement(c.Select, other.Select) &&
sqlparser.Equals.RefOfParsedComments(c.Comments, other.Comments)
}