-
Notifications
You must be signed in to change notification settings - Fork 37
/
entity.go
599 lines (517 loc) · 16 KB
/
entity.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
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
// Copyright (c) 2020 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package dosa
import (
"bytes"
"fmt"
"sort"
"strings"
"time"
"github.com/pkg/errors"
)
// Table represents a parsed entity format on the client side
// In addition to shared EntityDefinition, it records struct name and field names.
type Table struct {
EntityDefinition
StructName string
ColToField map[string]string // map from column name -> field name
FieldToCol map[string]string // map from field name -> column name
TTL time.Duration
}
// ClusteringKey stores name and ordering of a clustering key
type ClusteringKey struct {
Name string
Descending bool
}
// String takes a ClusteringKey and returns "column-name ASC|DESC"
func (ck ClusteringKey) String() string {
if ck.Descending {
return ck.Name + " DESC"
}
return ck.Name + " ASC"
}
// Format a key's ClusteringKeys.
func formatClusteringKeys(keys []*ClusteringKey) string {
pieces := make([]string, len(keys))
for index, ck := range keys {
pieces[index] = ck.String()
}
return strings.Join(pieces, ", ")
}
// PrimaryKey stores information about partition keys and clustering keys
type PrimaryKey struct {
PartitionKeys []string
ClusteringKeys []*ClusteringKey
}
// Clone returns a deep copy of PrimaryKey
func (pk PrimaryKey) Clone() *PrimaryKey {
npk := &PrimaryKey{}
if pk.PartitionKeys != nil {
npk.PartitionKeys = make([]string, len(pk.PartitionKeys))
for i, k := range pk.PartitionKeys {
npk.PartitionKeys[i] = k
}
}
if pk.ClusteringKeys != nil {
npk.ClusteringKeys = make([]*ClusteringKey, len(pk.ClusteringKeys))
for i, c := range pk.ClusteringKeys {
npk.ClusteringKeys[i] = &ClusteringKey{
Name: c.Name,
Descending: c.Descending,
}
}
}
return npk
}
func (pk PrimaryKey) String() string {
var b bytes.Buffer
b.WriteByte('(')
b.WriteString(formatPartitionKeys(pk.PartitionKeys))
b.WriteString(pk.clusteringKeysString())
b.WriteByte(')')
return b.String()
}
func (pk PrimaryKey) clusteringKeysString() string {
if pk.ClusteringKeys == nil || len(pk.ClusteringKeys) == 0 {
return ""
}
return ", " + formatClusteringKeys(pk.ClusteringKeys)
}
func (pk PrimaryKey) equal(other *PrimaryKey) error {
if !stringSliceEqual(pk.PartitionKeys, other.PartitionKeys) {
return errors.Errorf("partition key mismatch: (%v vs %v)", pk.PartitionKeys, other.PartitionKeys)
}
if err := clusteringKeysEqual(pk.ClusteringKeys, other.ClusteringKeys); err != nil {
return err
}
return nil
}
func clusteringKeysEqual(ck1, ck2 []*ClusteringKey) error {
if len(ck1) != len(ck2) {
return errors.Errorf("clustering keys mismatch: (%v vs %v)", ck1, ck2)
}
for i, k1 := range ck1 {
k2 := ck2[i]
if *k1 != *k2 {
return errors.Errorf("clustering key mismatch: (%v vs %v)", k1, k2)
}
}
return nil
}
// ClusteringKeySet returns a set of all clustering keys.
func (pk PrimaryKey) ClusteringKeySet() map[string]struct{} {
m := make(map[string]struct{})
for _, c := range pk.ClusteringKeys {
m[c.Name] = struct{}{}
}
return m
}
// PartitionKeySet returns the set of partition keys
func (pk PrimaryKey) PartitionKeySet() map[string]struct{} {
m := make(map[string]struct{})
for _, p := range pk.PartitionKeys {
m[p] = struct{}{}
}
return m
}
// PrimaryKeySet returns the union of the set of partition keys and clustering keys
func (pk PrimaryKey) PrimaryKeySet() map[string]struct{} {
m := pk.ClusteringKeySet()
for _, p := range pk.PartitionKeys {
m[p] = struct{}{}
}
return m
}
func formatPartitionKeys(keys []string) string {
if len(keys) > 1 {
return "(" + strings.Join(keys, ", ") + ")"
}
return keys[0]
}
// ColumnDefinition stores information about a column
type ColumnDefinition struct {
Name string // normalized column name
Type Type
IsPointer bool // used by client only to indicate whether this field is pointer
Tags map[string]string
}
// Clone returns a deep copy of ColumnDefinition
func (cd *ColumnDefinition) Clone() *ColumnDefinition {
return &ColumnDefinition{
Name: cd.Name,
Type: cd.Type,
IsPointer: cd.IsPointer,
Tags: cd.cloneTags(),
}
}
func (cd *ColumnDefinition) cloneTags() map[string]string {
if cd.Tags == nil {
return nil
}
tags := map[string]string{}
for k, v := range cd.Tags {
tags[k] = v
}
return tags
}
func (cd *ColumnDefinition) String() string {
// We want this to be deterministic, and cd.Tags is a map....
return fmt.Sprintf("{Name: %s, Type: %v, IsPointer: %v, Tags: %s}", cd.Name, cd.Type, cd.IsPointer,
deterministicPrintMap(cd.Tags))
}
// IndexDefinition stores information about a DOSA entity's index
type IndexDefinition struct {
Key *PrimaryKey
Columns []string
TableName string // May be empty
}
// Clone returns a deep copy of IndexDefinition
func (id *IndexDefinition) Clone() *IndexDefinition {
var columns []string
for _, c := range id.Columns {
columns = append(columns, c)
}
return &IndexDefinition{
Key: id.Key.Clone(),
Columns: columns,
}
}
func (id *IndexDefinition) String() string {
return fmt.Sprintf("%+v", *id)
}
func (id *IndexDefinition) equal(other *IndexDefinition) error {
if err := id.Key.equal(other.Key); err != nil {
return errors.Errorf("key mismatch: (%v)", err)
}
if !stringSliceEqual(id.Columns, other.Columns) {
return errors.Errorf("columns mismatch: (%v vs %v)", id.Columns, other.Columns)
}
return nil
}
// EntityDefinition stores information about a DOSA entity
type EntityDefinition struct {
Name string // normalized entity name
Key *PrimaryKey
Columns []*ColumnDefinition
Indexes map[string]*IndexDefinition
ETL ETLState
}
func (e *EntityDefinition) String() string {
return fmt.Sprintf("[Entity %s PK %s [Columns %s] [Indexes %s]]", e.Name, e.Key.String(),
strColumns(e.Columns), strIndexes(e.Indexes))
}
// Clone returns a deep copy of EntityDefinition
func (e *EntityDefinition) Clone() *EntityDefinition {
newEd := &EntityDefinition{
Name: e.Name,
Key: e.Key.Clone(),
ETL: e.ETL,
}
if e.Columns != nil {
newEd.Columns = make([]*ColumnDefinition, len(e.Columns))
for i, col := range e.Columns {
newEd.Columns[i] = col.Clone()
}
}
if e.Indexes != nil {
newEd.Indexes = make(map[string]*IndexDefinition)
if e.Indexes == nil {
newEd.Indexes = nil
}
for k, index := range e.Indexes {
newEd.Indexes[k] = index.Clone()
}
}
return newEd
}
// EnsureValid ensures the entity definition is valid.
// All the names used (entity name, column name) must be valid.
// No duplicate names can be used in column names or key names.
// The primary key must not be nil and must contain at least one partition key.
func (e *EntityDefinition) EnsureValid() error {
if e == nil {
return errors.New("EntityDefinition is nil")
}
if err := IsValidName(e.Name); err != nil {
return errors.Wrap(err, "EntityDefinition has invalid name")
}
columnNamesSeen := map[string]struct{}{}
for _, c := range e.Columns {
if c == nil {
return errors.New("EntityDefinition has nil column")
}
if err := IsValidName(c.Name); err != nil {
return errors.Wrap(err, "EntityDefinition has invalid column name")
}
if _, ok := columnNamesSeen[c.Name]; ok {
return errors.Errorf("duplicated column found: %q", c.Name)
}
if c.Type == Invalid {
return errors.Errorf("invalid type for column: %q", c.Name)
}
columnNamesSeen[c.Name] = struct{}{}
}
if e.Key == nil {
return errors.New("EntityDefinition has nil primary key")
}
if len(e.Key.PartitionKeys) == 0 {
return errors.New("EntityDefinition does not have partition key")
}
keyNamesSeen := map[string]struct{}{}
for _, p := range e.Key.PartitionKeys {
if _, ok := columnNamesSeen[p]; !ok {
return errors.Errorf("partition key does not refer to a column: %q", p)
}
if _, ok := keyNamesSeen[p]; ok {
return errors.Errorf("a column cannot be used twice in key: %q", p)
}
keyNamesSeen[p] = struct{}{}
}
for _, c := range e.Key.ClusteringKeys {
if c == nil {
return errors.New("EntityDefinition has invalid nil clustering key")
}
if _, ok := columnNamesSeen[c.Name]; !ok {
return errors.Errorf("clustering key does not refer to a column: %q", c.Name)
}
if _, ok := keyNamesSeen[c.Name]; ok {
return errors.Errorf("a column cannot be used twice in key: %q", c.Name)
}
keyNamesSeen[c.Name] = struct{}{}
}
if err := e.ensureNonNullablePrimaryKeys(); err != nil {
return err
}
// validate index
for indexName, index := range e.Indexes {
if err := IsValidName(indexName); err != nil {
return errors.Wrap(err, "IndexDefinition has invalid name")
}
if index == nil {
return errors.New("IndexDefinition is nil")
}
if index.Key == nil {
return errors.New("IndexDefinition has nil key")
}
if len(index.Key.PartitionKeys) == 0 {
return errors.New("index does not have partition key")
}
keyNamesSeen := map[string]struct{}{}
for _, p := range index.Key.PartitionKeys {
if _, ok := columnNamesSeen[p]; !ok {
return errors.Errorf("index partition key does not refer to a column: %q", p)
}
if _, ok := keyNamesSeen[p]; ok {
return errors.Errorf("a column cannot be used twice in index key: %q", p)
}
keyNamesSeen[p] = struct{}{}
}
for _, c := range index.Key.ClusteringKeys {
if c == nil {
return errors.New("IndexDefinition has invalid nil clustering key")
}
if _, ok := columnNamesSeen[c.Name]; !ok {
return errors.Errorf("clustering key does not refer to a column: %q", c.Name)
}
if _, ok := keyNamesSeen[c.Name]; ok {
return errors.Errorf("a column cannot be used twice in index key: %q", c.Name)
}
keyNamesSeen[c.Name] = struct{}{}
}
columnsTagFieldsSeen := map[string]struct{}{}
for _, c := range index.Columns {
if _, ok := columnNamesSeen[c]; !ok {
return errors.Errorf("columns tag field does not refer to a column: %q", c)
}
if _, ok := columnsTagFieldsSeen[c]; ok {
return errors.Errorf("a column cannot be used twice in column tags: %q", c)
}
columnsTagFieldsSeen[c] = struct{}{}
}
}
return nil
}
func (e *EntityDefinition) ensureNonNullablePrimaryKeys() error {
columns := e.ColumnMap()
for k := range e.PartitionKeySet() {
if isInvalidPrimaryKeyType(columns[k]) {
return errors.Errorf("primary key is of nullable type: %q", k)
}
}
for k := range e.Key.ClusteringKeySet() {
if isInvalidPrimaryKeyType(columns[k]) {
return errors.Errorf("clustering key is of nullable type: %q", k)
}
}
return nil
}
// ColumnTypes returns a map of column name to column type for all columns.
func (e *EntityDefinition) ColumnTypes() map[string]Type {
m := make(map[string]Type)
for _, c := range e.Columns {
m[c.Name] = c.Type
}
return m
}
// ColumnMap returns a map of column name to column definition for all columns.
func (e *EntityDefinition) ColumnMap() map[string]*ColumnDefinition {
m := make(map[string]*ColumnDefinition)
for _, c := range e.Columns {
m[c.Name] = c
}
return m
}
// PartitionKeySet returns a set of all partition keys.
func (e *EntityDefinition) PartitionKeySet() map[string]struct{} {
m := make(map[string]struct{})
for _, p := range e.Key.PartitionKeys {
m[p] = struct{}{}
}
return m
}
// KeySet returns a set of all keys, including partition keys and clustering keys.
func (e *EntityDefinition) KeySet() map[string]struct{} {
m := e.Key.ClusteringKeySet()
pks := e.PartitionKeySet()
for p := range pks {
m[p] = struct{}{}
}
return m
}
// CanBeUpsertedOn checks upsertability: Can I be upserted on top of the prior definition?
func (e *EntityDefinition) CanBeUpsertedOn(older *EntityDefinition) error {
// Better name
newer := e
// entity name should be the same
if newer.Name != older.Name {
return errors.Errorf("entity name mismatch: (%s vs %s)", newer.Name, older.Name)
}
// primary key should be exactly same
if err := newer.Key.equal(older.Key); err != nil {
return err
}
// only allow to add new columns
colsMapNewer := newer.ColumnTypes()
colsMapOlder := older.ColumnTypes()
for name, colTypeOlder := range colsMapOlder {
colTypeNewer, ok := colsMapNewer[name]
if !ok {
return errors.Errorf("the column %s in old entity %s but not in new entity", name, older.Name)
}
if colTypeNewer != colTypeOlder {
return errors.Errorf("the type for column %s mismatch: (%v vs %v)", name, colTypeNewer, colTypeOlder)
}
}
// Index can only be added, not mutated
if len(older.Indexes) > len(newer.Indexes) {
return errors.Errorf("Old entity %s has %d indexes but new entity has %d indexes", older.Name, len(older.Indexes), len(newer.Indexes))
}
if older.Indexes != nil {
for name, indexOlder := range older.Indexes {
indexNewer, ok := newer.Indexes[name]
if !ok {
return errors.Errorf("Index %s in the old entity %s are missing in the new entity", name, older.Name)
}
// Type here is *IndexDefinition
if err := indexNewer.equal(indexOlder); err != nil {
return errors.Errorf("index %q mismatch: %v", name, err)
}
}
}
// TODO Handle tags in the future
// ETL tag cannot be disabled
if newer.ETL != EtlOn && older.ETL == EtlOn {
return errors.Errorf("ETL tag cannot be disabled once it's on")
}
return nil
}
// FindColumnDefinition finds the column definition by the column name
func (e *EntityDefinition) FindColumnDefinition(name string) *ColumnDefinition {
for _, cd := range e.Columns {
if cd.Name == name {
return cd
}
}
return nil
}
// UniqueKey adds any missing keys from the entity's primary key to the keys
// specified in the index, to guarantee that the returned key is unique
// This method is used to create materialized views
func (e *EntityDefinition) UniqueKey(oldKey *PrimaryKey) *PrimaryKey {
indexHas := oldKey.PrimaryKeySet()
result := *oldKey
// look for missing primary keys
for _, key := range e.Key.PartitionKeys {
if _, ok := indexHas[key]; !ok {
result.ClusteringKeys = append(result.ClusteringKeys, &ClusteringKey{
Name: key})
}
}
// look for missing clustering keys
for _, key := range e.Key.ClusteringKeys {
if _, ok := indexHas[key.Name]; !ok {
result.ClusteringKeys = append(result.ClusteringKeys, &ClusteringKey{
Name: key.Name})
}
}
return &result
}
func stringSliceEqual(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i, s := range a {
if s != b[i] {
return false
}
}
return true
}
func deterministicPrintMap(m map[string]string) string {
keys := make([]string, 0, len(m))
for k := range m {
keys = append(keys, k)
}
sort.Strings(keys)
pairs := make([]string, 0, len(m))
for _, k := range keys {
pairs = append(pairs, fmt.Sprintf("%s: %s", k, m[k]))
}
return "{" + strings.Join(pairs, ", ") + "}"
}
func strColumns(cols []*ColumnDefinition) string {
s := make([]string, 0, len(cols))
for _, c := range cols {
s = append(s, c.String())
}
return "[" + strings.Join(s, ", ") + "]"
}
func strIndexes(indexes map[string]*IndexDefinition) string {
names := make([]string, 0, len(indexes))
for n := range indexes {
names = append(names, n)
}
sort.Strings(names)
pairs := make([]string, 0, len(indexes))
for _, n := range names {
pairs = append(pairs, fmt.Sprintf("%s: %s", n, indexes[n].String()))
}
return "{" + strings.Join(pairs, ", ") + "}"
}