forked from uber-go/dosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
760 lines (652 loc) · 26.1 KB
/
client.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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
// Copyright (c) 2019 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.
// The simplest way to create a DOSA client is by using the yarpc connector:
//
// func MakeDosaYarpcClient(
// gwHost string,
// gwPort uint16,
// scope, prefix string,
// callerName string,
// models... dosa.DomainObject,
// ) (c dosa.Client, err error) {
// cfg := yarpc.ClientConfig{
// Scope: scope,
// NamePrefix: prefix,
// Yarpc: yarpc.Config{
// Host: gwHost,
// Port: fmt.Sprintf("%d", gwPort),
// CallerName: callerName,
// ServiceName: "dosa-gateway", // or "dosa-gateway-staging"
// },
// }
// if c, err = cfg.NewClient(models...); err != nil { return }
// ctx, cancel := context.WithTimeout(context.Background(), timeout); defer cancel()
// if err = c.Initialize(ctx); err != nil { c = nil }
// return
// }
package dosa
import (
"bytes"
"context"
"fmt"
"io"
"reflect"
"time"
"github.com/pkg/errors"
)
// DomainObject is a marker interface method for an Entity
type DomainObject interface {
// dummy marker interface method
isDomainObject() bool
}
// Entity represents any object that can be persisted by DOSA
type Entity struct {
// dynamic ttl set to an entity by user
ttl *time.Duration
}
// make entity a DomainObject
func (*Entity) isDomainObject() bool {
return true
}
// TTL sets dynamic ttl to an entity
func (e *Entity) TTL(t *time.Duration) {
e.ttl = t
}
// DomainIndex is a marker interface method for an Index
type DomainIndex interface {
// dummy marker interface method
isDomainIndex() bool
}
// Index represents any object that can be indexed by by DOSA
type Index struct{}
func (*Index) isDomainIndex() bool {
return true
}
// ErrNotInitialized is returned when a user didn't call Initialize
type ErrNotInitialized struct{}
// Error returns a constant string "client not initialized"
func (*ErrNotInitialized) Error() string {
return "client not initialized"
}
// ErrorIsNotInitialized checks if the error is a "ErrNotInitialized"
// (possibly wrapped)
func ErrorIsNotInitialized(err error) bool {
_, ok := errors.Cause(err).(*ErrNotInitialized)
return ok
}
// ErrNotFound is an error when a row is not found (single or multiple)
type ErrNotFound struct{}
// Error returns a constant string "Not found" for this error
func (*ErrNotFound) Error() string {
return "not found"
}
// ErrorIsNotFound checks if the error is a "ErrNotFound"
// (possibly wrapped)
func ErrorIsNotFound(err error) bool {
_, ok := errors.Cause(err).(*ErrNotFound)
return ok
}
// ErrAlreadyExists is an error returned when CreateIfNotExists but a row already exists
type ErrAlreadyExists struct{}
func (*ErrAlreadyExists) Error() string {
return "already exists"
}
// ErrorIsAlreadyExists checks if the error is caused by "ErrAlreadyExists"
func ErrorIsAlreadyExists(err error) bool {
_, ok := errors.Cause(err).(*ErrAlreadyExists)
return ok
}
// Client defines the methods to operate with DOSA entities
type Client interface {
// GetRegistrar returns the registrar
GetRegistrar() Registrar
// Initialize must be called before any data operation
Initialize(ctx context.Context) error
// Create creates an entity; it fails if the entity already exists.
// You must fill in all of the fields of the DomainObject before
// calling this method, or they will be inserted with the zero value
// This is a relatively expensive operation. Use Upsert whenever possible.
CreateIfNotExists(ctx context.Context, objectToCreate DomainObject) error
// Read fetches a row by primary key. A list of fields to read can be
// specified. Use All() or nil for all fields.
// Before calling this method, fill in the DomainObject with ALL
// of the primary key fields; the other field values will be populated
// as a result of the read
Read(ctx context.Context, fieldsToRead []string, objectToRead DomainObject) error
// MultiRead fetches several rows by primary key. A list of fields can be
// specified. Use All() or nil for all fields.
// The domainObject will be filled by corresponding values if the object is fetched successfully.
// Otherwise the DomainObject as key and an error message as value will be saved into
// MultiResult map.
// NOTE: This API only fetches objects of same entity type from same scope.
//
// Range should be preferred over MultiRead. If you are not sure which endpoint to use,
// use Range instead of MultiRead.
MultiRead(context.Context, []string, ...DomainObject) (MultiResult, error)
// Upsert creates or update a row. A list of fields to update can be
// specified. Use All() or nil for all fields.
// Before calling this method, fill in the DomainObject with ALL
// of the primary key fields, along with whatever fields you specify
// to update in fieldsToUpdate (or all the fields if you use dosa.All())
Upsert(ctx context.Context, fieldsToUpdate []string, objectToUpdate DomainObject) error
// Remove removes a row by primary key. The passed-in entity should contain
// the primary key field values, all other fields are ignored.
Remove(ctx context.Context, objectToRemove DomainObject) error
// RemoveRange removes all of the rows that fall within the range specified by the
// given RemoveRangeOp.
RemoveRange(ctx context.Context, removeRangeOp *RemoveRangeOp) error
// Range fetches entities within a range
// Before calling range, create a RangeOp and fill in the table
// along with the partition key information. You will get back
// an array of DomainObjects, which will be of the type you requested
// in the rangeOp.
//
// Range only fetches a portion of the range at a time (the size of that portion is defined
// by the Limit parameter of the RangeOp). A continuation token is returned so subsequent portions
// of the range can be fetched with additional calls to the range function.
Range(ctx context.Context, rangeOp *RangeOp) ([]DomainObject, string, error)
// WalkRange starts at the offset specified by the RangeOp and walks the entire
// range of values that fall within the RangeOp conditions. It will make multiple, sequential
// range requests, fetching values until there are no more left in the range.
//
// For each value fetched, the provided onNext function is called with the value as it's argument.
WalkRange(ctx context.Context, r *RangeOp, onNext func(value DomainObject) error) error
// ScanEverything fetches all entities of a type
// Before calling ScanEverything, create a scanOp to specify the
// table to scan. The return values are an array of objects, that
// you can type-assert to the appropriate dosa.Entity, a string
// that contains the continuation token, and any error.
// To scan the next set of rows, modify the scanOp to provide
// the string returned as an Offset()
ScanEverything(ctx context.Context, scanOp *ScanOp) ([]DomainObject, string, error)
// Shutdown gracefully shuts down the client, cleaning up any resources it may have
// allocated during its usage. Shutdown should be called whenever the client
// is no longer needed. After calling shutdown there should be no further usage
// of the client.
Shutdown() error
}
// MultiResult contains the result for each entity operation in the case of
// MultiRead. If the operation succeeded for
// an entity, the value for in the map will be nil; otherwise, the entity is
// untouched and error is not nil.
type MultiResult map[DomainObject]error
// All is used for "fields []string" to read/update all fields.
// It's a convenience function for code readability.
func All() []string { return nil }
// AdminClient has methods to manage schemas and scopes
type AdminClient interface {
// Directories sets admin client search path
Directories(dirs []string) AdminClient
// Excludes sets patters to exclude when searching for entities
Excludes(excludes []string) AdminClient
// Scope sets the admin client scope
Scope(scope string) AdminClient
// CanUpsertSchema checks the compatibility of to-be-upserted schemas
CanUpsertSchema(ctx context.Context, namePrefix string) (*SchemaStatus, error)
// CheckSchemaStatus checks the status of schema application
CheckSchemaStatus(ctx context.Context, namePrefix string, version int32) (*SchemaStatus, error)
// UpsertSchema upserts the schemas
UpsertSchema(ctx context.Context, namePrefix string) (*SchemaStatus, error)
// GetSchema finds entity definitions
GetSchema() ([]*EntityDefinition, error)
// CreateScope creates a new scope
CreateScope(ctx context.Context, md *ScopeMetadata) error
// TruncateScope keeps the scope and the schemas, but drops the data associated with the scope
TruncateScope(ctx context.Context, s string) error
// DropScope drops the scope and the data and schemas in the scope
DropScope(ctx context.Context, s string) error
// Shutdown gracefully shuts down the client, cleaning up any resources it may have
// allocated during its usage. Shutdown should be called whenever the client
// is no longer needed. After calling shutdown there should be no further usage
// of the client.
Shutdown() error
}
type client struct {
initialized bool
registrar Registrar
connector Connector
}
// NewClient returns a new DOSA client for the registrar and connector provided.
// This is currently only a partial implementation to demonstrate basic CRUD functionality.
func NewClient(reg Registrar, conn Connector) Client {
return &client{
registrar: reg,
connector: conn,
}
}
// GetRegistrar returns the registrar that is registered in the client
func (c *client) GetRegistrar() Registrar {
return c.registrar
}
// Initialize performs initial schema checks against all registered entities.
func (c *client) Initialize(ctx context.Context) error {
if c.initialized {
return nil
}
// check schema for all registered entities
registered := c.registrar.FindAll()
if len(registered) == 0 {
return errors.Errorf("No registered entities found")
}
eds := []*EntityDefinition{}
for _, re := range registered {
eds = append(eds, re.EntityDefinition())
}
// fetch latest version for all registered entities, assume order is preserved
version, err := c.connector.CheckSchema(ctx, c.registrar.Scope(), c.registrar.NamePrefix(), eds)
if err != nil {
return errors.Wrap(err, "CheckSchema failed")
}
// set version for all registered entities
for _, reg := range registered {
reg.SetVersion(version)
}
c.initialized = true
return nil
}
// CreateIfNotExists creates a row, but only if it does not exist. The entity
// provided must contain values for all components of its primary key for the
// operation to succeed.
func (c *client) CreateIfNotExists(ctx context.Context, entity DomainObject) error {
return c.createOrUpsert(ctx, nil, entity, c.connector.CreateIfNotExists)
}
// Read fetches an entity by primary key, The entity provided must contain
// values for all components of its primary key for the operation to succeed.
// If `fieldsToRead` is provided, only a subset of fields will be
// marshalled onto the given entity
func (c *client) Read(ctx context.Context, fieldsToRead []string, entity DomainObject) error {
if !c.initialized {
return &ErrNotInitialized{}
}
// lookup registered entity, the registrar will return error if it is not found
re, err := c.registrar.Find(entity)
if err != nil {
return err
}
// translate entity field values to a map of primary key name/values pairs
// required to perform a read
fieldValues := re.KeyFieldValues(entity)
// build a list of column names from a list of entities field names
columnsToRead, err := re.ColumnNames(fieldsToRead)
if err != nil {
return err
}
results, err := c.connector.Read(ctx, re.EntityInfo(), fieldValues, columnsToRead)
if err != nil {
return err
}
// map results to entity fields
re.SetFieldValues(entity, results, columnsToRead)
return nil
}
// MultiRead fetches several entities by primary key, The entities provided
// must contain values for all components of its primary key for the operation
// to succeed. If `fieldsToRead` is provided, only a subset of fields will be
// marshalled onto the given entities.
func (c *client) MultiRead(ctx context.Context, fieldsToRead []string, entities ...DomainObject) (MultiResult, error) {
if !c.initialized {
return nil, &ErrNotInitialized{}
}
if len(entities) == 0 {
return nil, fmt.Errorf("the number of entities to read is zero")
}
// lookup registered entity, the registrar will return error if it is not found
var re *RegisteredEntity
var listFieldValues []map[string]FieldValue
for _, entity := range entities {
ere, err := c.registrar.Find(entity)
if err != nil {
return nil, err
}
if re == nil {
re = ere
} else if re != ere {
return nil, fmt.Errorf("inconsistent entity type for multi read: %v vs %v", re, ere)
}
// translate entity field values to a map of primary key name/values pairs
// required to perform a read
listFieldValues = append(listFieldValues, re.KeyFieldValues(entity))
}
// build a list of column names from a list of entities field names
columnsToRead, err := re.ColumnNames(fieldsToRead)
if err != nil {
return nil, err
}
results, err := c.connector.MultiRead(ctx, re.EntityInfo(), listFieldValues, columnsToRead)
if err != nil {
return nil, err
}
multiResult := MultiResult{}
// map results to entity fields
for i, entity := range entities {
if results[i].Error != nil {
multiResult[entity] = results[i].Error
continue
}
re.SetFieldValues(entity, results[i].Values, columnsToRead)
}
return multiResult, nil
}
type createOrUpsertType func(context.Context, *EntityInfo, map[string]FieldValue) error
// Upsert updates some values of an entity, or creates it if it doesn't exist.
// The entity provided must contain values for all components of its primary
// key for the operation to succeed. If `fieldsToUpdate` is provided, only a
// subset of fields will be updated.
func (c *client) Upsert(ctx context.Context, fieldsToUpdate []string, entity DomainObject) error {
return c.createOrUpsert(ctx, fieldsToUpdate, entity, c.connector.Upsert)
}
func (c *client) createOrUpsert(ctx context.Context, fieldsToUpdate []string, entity DomainObject, fn createOrUpsertType) error {
if !c.initialized {
return &ErrNotInitialized{}
}
// lookup registered entity, the registrar will return error if it is not found
re, err := c.registrar.Find(entity)
if err != nil {
return err
}
// translate entity field values to a map of primary key name/values pairs
keyFieldValues := re.KeyFieldValues(entity)
// translate remaining entity fields values to map of column name/value pairs
fieldValues, err := re.OnlyFieldValues(entity, fieldsToUpdate)
if err != nil {
return err
}
// merge key and remaining values
for k, v := range keyFieldValues {
fieldValues[k] = v
}
// get registered entity's EntityInfo
ei := re.EntityInfo()
// fetch, validate and set the dynamic TTL for current entity
e := reflect.ValueOf(entity).Elem().FieldByName("Entity")
dynTTL := e.Interface().(Entity).ttl
if dynTTL != nil {
if err = ValidateTTL(*dynTTL); err != nil {
return err
}
ei.TTL = dynTTL
}
return fn(ctx, ei, fieldValues)
}
// Remove deletes an entity by primary key, The entity provided must contain
// values for all components of its primary key for the operation to succeed.
func (c *client) Remove(ctx context.Context, entity DomainObject) error {
if !c.initialized {
return &ErrNotInitialized{}
}
// lookup registered entity, the registrar will return error if it is not found
re, err := c.registrar.Find(entity)
if err != nil {
return err
}
// translate entity field values to a map of primary key name/values pairs
keyFieldValues := re.KeyFieldValues(entity)
err = c.connector.Remove(ctx, re.EntityInfo(), keyFieldValues)
return err
}
// RemoveRange removes all of the rows that fall within the range specified by the
// given RemoveRangeOp.
func (c *client) RemoveRange(ctx context.Context, r *RemoveRangeOp) error {
if !c.initialized {
return &ErrNotInitialized{}
}
// look up the entity in the registry
re, err := c.registrar.Find(r.object)
if err != nil {
return errors.Wrap(err, "RemoveRange")
}
// now convert the client range columns to server side column conditions structure
columnConditions, err := ConvertConditions(r.conditions, re.table)
if err != nil {
return errors.Wrap(err, "RemoveRange")
}
return errors.Wrap(c.connector.RemoveRange(ctx, re.EntityInfo(), columnConditions), "RemoveRange")
}
// Range uses the connector to fetch DOSA entities for a given range.
func (c *client) Range(ctx context.Context, r *RangeOp) ([]DomainObject, string, error) {
if !c.initialized {
return nil, "", &ErrNotInitialized{}
}
// look up the entity in the registry
re, err := c.registrar.Find(r.object)
if err != nil {
return nil, "", errors.Wrap(err, "Range")
}
// now convert the client range columns to server side column conditions structure
columnConditions, err := ConvertConditions(r.conditions, re.table)
if err != nil {
return nil, "", errors.Wrap(err, "Range")
}
// convert the fieldsToRead to the server side equivalent
fieldsToRead, err := re.ColumnNames(r.fieldsToRead)
if err != nil {
return nil, "", errors.Wrap(err, "Range")
}
// call the server side method
values, token, err := c.connector.Range(ctx, re.EntityInfo(), columnConditions, fieldsToRead, r.token, r.limit)
if err != nil {
return nil, "", errors.Wrap(err, "Range")
}
objectArray := objectsFromValueArray(r.object, values, re, nil)
return objectArray, token, nil
}
func (c *client) WalkRange(ctx context.Context, r *RangeOp, onNext func(value DomainObject) error) error {
for {
results, nextToken, err := c.Range(ctx, r)
if err != nil {
return err
}
for _, result := range results {
if cerr := onNext(result); cerr != nil {
return cerr
}
}
if len(nextToken) == 0 {
return nil
}
r = r.Offset(nextToken)
}
}
func objectsFromValueArray(object DomainObject, values []map[string]FieldValue, re *RegisteredEntity, columnsToRead []string) []DomainObject {
goType := reflect.TypeOf(object).Elem() // get the reflect.Type of the client entity
doType := reflect.TypeOf((*DomainObject)(nil)).Elem()
slice := reflect.MakeSlice(reflect.SliceOf(doType), 0, len(values)) // make a slice of these
elements := reflect.New(slice.Type())
elements.Elem().Set(slice)
for _, flist := range values { // for each row returned
newObject := reflect.New(goType).Interface() // make a new entity
re.SetFieldValues(newObject.(DomainObject), flist, columnsToRead) // fill it in from server values
slice = reflect.Append(slice, reflect.ValueOf(newObject.(DomainObject))) // append to slice
}
return slice.Interface().([]DomainObject)
}
// ScanEverything uses the connector to fetch all DOSA entities of the given type.
func (c *client) ScanEverything(ctx context.Context, sop *ScanOp) ([]DomainObject, string, error) {
if !c.initialized {
return nil, "", &ErrNotInitialized{}
}
// look up the entity in the registry
re, err := c.registrar.Find(sop.object)
if err != nil {
return nil, "", errors.Wrap(err, "failed to ScanEverything")
}
// convert the fieldsToRead to the server side equivalent
fieldsToRead, err := re.ColumnNames(sop.fieldsToRead)
if err != nil {
return nil, "", errors.Wrap(err, "failed to ScanEverything")
}
// call the server side method
values, token, err := c.connector.Scan(ctx, re.EntityInfo(), fieldsToRead, sop.token, sop.limit)
if err != nil {
return nil, "", err
}
objectArray := objectsFromValueArray(sop.object, values, re, nil)
return objectArray, token, nil
}
func (c *client) Shutdown() error {
return c.connector.Shutdown()
}
type adminClient struct {
scope string
dirs []string
excludes []string
connector Connector
}
// NewAdminClient returns a new DOSA admin client for the connector provided.
func NewAdminClient(conn Connector) AdminClient {
return &adminClient{
scope: "default",
dirs: []string{"."},
excludes: []string{"_test.go"},
connector: conn,
}
}
// Directories sets the given paths to the client's list of file paths to scan
// during schema operations. Defaults to ["."].
func (c *adminClient) Directories(dirs []string) AdminClient {
c.dirs = dirs
return c
}
// Excludes sets the substrings used when considering filenames for inclusion
// when searching for DOSA entities. Defaults to ["_test.go"]
func (c *adminClient) Excludes(excludes []string) AdminClient {
c.excludes = excludes
return c
}
// Scope sets the scope used for schema operations. Defaults to $USER
func (c *adminClient) Scope(scope string) AdminClient {
c.scope = scope
return c
}
// CanUpsertSchema first searches for entity definitions within configured
// directories before checking the compatibility of each entity for the givena
// the namePrefix. The client's scope and search directories should be
// configured on initialization and be non-empty when CheckSchema is called.
// An error is returned if client is misconfigured (eg. invalid scope) or if
// any of the entities found are incompatible, not found or not uniquely named.
// The definition of "incompatible" and "not found" may vary but is ultimately
// defined by the client connector implementation.
func (c *adminClient) CanUpsertSchema(ctx context.Context, namePrefix string) (*SchemaStatus, error) {
defs, err := c.GetSchema()
if err != nil {
return nil, errors.Wrapf(err, "GetSchema failed")
}
version, err := c.connector.CanUpsertSchema(ctx, c.scope, namePrefix, defs)
if err != nil {
return nil, errors.Wrapf(err, "CheckSchema failed, directories: %s, excludes: %s, scope: %s", c.dirs, c.excludes, c.scope)
}
return &SchemaStatus{
Version: version,
Status: "OK",
}, nil
}
func (c *adminClient) CheckSchemaStatus(ctx context.Context, namePrefix string, version int32) (*SchemaStatus, error) {
status, err := c.connector.CheckSchemaStatus(ctx, c.scope, namePrefix, version)
if err != nil {
return nil, errors.Wrapf(err, "CheckSchemaStatus status failed")
}
return status, nil
}
// UpsertSchema creates or updates the schema for entities in the given
// namespace. See CheckSchema for more detail about scope and namePrefix.
func (c *adminClient) UpsertSchema(ctx context.Context, namePrefix string) (*SchemaStatus, error) {
defs, err := c.GetSchema()
if err != nil {
return nil, errors.Wrapf(err, "GetSchema failed")
}
status, err := c.connector.UpsertSchema(ctx, c.scope, namePrefix, defs)
if err != nil {
return nil, errors.Wrapf(err, "UpsertSchema failed, directories: %s, excludes: %s, scope: %s", c.dirs, c.excludes, c.scope)
}
return status, nil
}
// GetSchema returns the derived entity definitions that are found within the
// current search path of the client. GetSchema can be used to introspect the
// state of schema before further operations are performed. For example,
// GetSchema is called by both CheckSchema and UpsertSchema before their
// respective operations are performed. An error is returned when:
// - invalid scope name (eg. length, invalid characters, see names.go)
// - invalid directory (eg. path does not exist, is not a directory)
// - unparseable entity (eg. invalid primary key)
// - no entities were found
func (c *adminClient) GetSchema() ([]*EntityDefinition, error) {
// prevent bogus scope names from reaching connectors
if err := IsValidName(c.scope); err != nil {
return nil, errors.Wrapf(err, "invalid scope name %q", c.scope)
}
// "warnings" mean entity was found but contained invalid annotations
entities, warns, err := findEntities(c.dirs, c.excludes)
if len(warns) > 0 {
return nil, NewEntityErrors(warns)
}
// I/O and AST parsing errors
if err != nil {
return nil, err
}
// prevent unnecessary connector calls when nothing was found
if len(entities) == 0 {
return nil, fmt.Errorf("no entities found; did you specify the right directories for your source?")
}
defs := make([]*EntityDefinition, len(entities))
for idx, e := range entities {
defs[idx] = &e.EntityDefinition
}
return defs, nil
}
// EntityErrors is a container for parse errors/warning.
type EntityErrors struct {
warns []error
}
// NewEntityErrors returns a wrapper for errors encountered while parsing
// entity struct tags.
func NewEntityErrors(warns []error) *EntityErrors {
return &EntityErrors{warns: warns}
}
// Error makes parse errors discernable to end-user.
func (ee *EntityErrors) Error() string {
var str bytes.Buffer
if _, err := io.WriteString(&str, "The following entities had warnings/errors:"); err != nil {
// for linting, WriteString will never return error
return "could not write errors to output buffer"
}
for _, err := range ee.warns {
str.WriteByte('\n')
if _, err := io.WriteString(&str, err.Error()); err != nil {
// for linting, WriteString will never return error
return "could not write errors to output buffer"
}
}
return str.String()
}
// CreateScope creates a new scope
func (c *adminClient) CreateScope(ctx context.Context, md *ScopeMetadata) error {
return c.connector.CreateScope(ctx, md)
}
// TruncateScope keeps the scope and the schemas, but drops the data associated with the scope
func (c *adminClient) TruncateScope(ctx context.Context, s string) error {
return c.connector.TruncateScope(ctx, s)
}
// DropScope drops the scope and the data and schemas in the scope
func (c *adminClient) DropScope(ctx context.Context, s string) error {
return c.connector.DropScope(ctx, s)
}
func (c *adminClient) Shutdown() error {
return c.connector.Shutdown()
}