@@ -107,7 +107,7 @@ type App struct {
107
107
Revision int64 ` gorm:"column:revision"`
108
108
}
109
109
110
- DataStore.RegisterWithDAL (context.TODO (), roleMappingForAppUser, appUser{})
110
+ DataStore.Register (context.TODO (), roleMappingForAppUser, appUser{})
111
111
112
112
datastore.DataStore .Insert (ctx, user1)
113
113
var queryResult appUser = appUser{Id: user1.Id }
@@ -158,6 +158,10 @@ tx.Commit()
158
158
- [ func FromConfig(l * logrus.Entry, authorizer authorizer.Authorizer, cfg DBConfig) (d DataStore, err error)] ( < #func-fromconfig > )
159
159
- [ func FromEnv(l * logrus.Entry, authorizer authorizer.Authorizer) (d DataStore, err error)] ( < #func-fromenv > )
160
160
- [ type Helper] ( < #type-helper > )
161
+ - [ type Pagination] ( < #type-pagination > )
162
+ - [ func DefaultPagination() * Pagination] ( < #func-defaultpagination > )
163
+ - [ func GetPagination(offset int, limit int, sortBy string) * Pagination] ( < #func-getpagination > )
164
+ - [ func NoPagination() * Pagination] ( < #func-nopagination > )
161
165
- [ type Record] ( < #type-record > )
162
166
- [ func GetRecordInstanceFromSlice(x interface{}) Record] ( < #func-getrecordinstancefromslice > )
163
167
- [ type TestHelper] ( < #type-testhelper > )
@@ -188,6 +192,14 @@ const (
188
192
)
189
193
```
190
194
195
+ ``` go
196
+ const (
197
+ DEFAULT_OFFSET = 0
198
+ DEFAULT_LIMIT = 1000
199
+ DEFAULT_SORTBY = " "
200
+ )
201
+ ```
202
+
191
203
``` go
192
204
const (
193
205
// Struct Field Names.
@@ -291,25 +303,27 @@ type DBConfig struct {
291
303
}
292
304
```
293
305
294
- ## type [ DataStore] ( < https://github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/datastore.go#L81-L95 > )
306
+ ## type [ DataStore] ( < https://github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/datastore.go#L81-L97 > )
295
307
296
308
DataStore /\* .
297
309
298
310
``` go
299
311
type DataStore interface {
300
- GetAuthorizer () authorizer.Authorizer
301
312
Find (ctx context.Context , record Record ) error
302
- FindAll (ctx context.Context , records interface {}) error
303
- FindWithFilter (ctx context.Context , record Record , records interface {}) error
313
+ FindAll (ctx context.Context , records interface {}, pagination *Pagination ) error
314
+ FindWithFilter (ctx context.Context , filter Record , records interface {}, pagination *Pagination ) error
304
315
Insert (ctx context.Context , record Record ) (int64 , error )
305
316
Delete (ctx context.Context , record Record ) (int64 , error )
306
317
Update (ctx context.Context , record Record ) (int64 , error )
307
318
Upsert (ctx context.Context , record Record ) (int64 , error )
308
- RegisterWithDAL (ctx context.Context , roleMapping map [string ]dbrole.DbRole , record Record ) error
319
+ GetTransaction (ctx context.Context , record ...Record ) (tx *gorm.DB , err error )
320
+
321
+ Register (ctx context.Context , roleMapping map [string ]dbrole.DbRole , records ...Record ) error
309
322
Reset ()
323
+
324
+ GetAuthorizer () authorizer.Authorizer
310
325
Helper () Helper
311
326
TestHelper () TestHelper
312
- GetTransaction (ctx context.Context , record ...Record ) (tx *gorm.DB , err error )
313
327
}
314
328
```
315
329
@@ -325,16 +339,46 @@ func FromConfig(l *logrus.Entry, authorizer authorizer.Authorizer, cfg DBConfig)
325
339
func FromEnv(l *logrus.Entry, authorizer authorizer.Authorizer) (d DataStore, err error)
326
340
```
327
341
328
- ## type [Helper](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/datastore.go#L97-L101 >)
342
+ ## type [Helper](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/datastore.go#L99-L105 >)
329
343
330
344
```go
331
345
type Helper interface {
346
+ FindAllInTable (ctx context.Context , tableName string , records interface {}, pagination *Pagination) error
347
+ FindWithFilterInTable (ctx context.Context , tableName string , record Record, records interface {}, pagination *Pagination) error
332
348
GetDBTransaction (ctx context.Context , tableName string , record Record) (tx *gorm.DB , err error )
333
- FindAllInTable (ctx context. Context , tableName string , records interface {}) error
334
- FindWithFilterInTable (ctx context.Context , tableName string , record Record, records interface {} ) error
349
+
350
+ RegisterHelper (ctx context.Context , roleMapping map [ string ]dbrole. DbRole , tableName string , record Record ) error
335
351
}
336
352
```
337
353
354
+ ## type [ Pagination] ( < https://github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/pagination.go#L27-L31 > )
355
+
356
+ ``` go
357
+ type Pagination struct {
358
+ Offset int
359
+ Limit int
360
+ SortBy string
361
+ }
362
+ ```
363
+
364
+ ### func [ DefaultPagination] ( < https://github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/pagination.go#L41 > )
365
+
366
+ ``` go
367
+ func DefaultPagination () *Pagination
368
+ ```
369
+
370
+ ### func [GetPagination](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/pagination.go#L33>)
371
+
372
+ ```go
373
+ func GetPagination(offset int, limit int, sortBy string) *Pagination
374
+ ```
375
+
376
+ ### func [NoPagination](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/pagination.go#L45>)
377
+
378
+ ```go
379
+ func NoPagination() *Pagination
380
+ ```
381
+
338
382
## type [Record](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/record.go#L23-L26>)
339
383
340
384
```go
@@ -348,7 +392,7 @@ type Record interface {
348
392
func GetRecordInstanceFromSlice (x interface {}) Record
349
393
```
350
394
351
- ## type [TestHelper](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/datastore.go#L103- L107>)
395
+ ## type [TestHelper](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/datastore/datastore.go#L107-L111 >)
352
396
353
397
```go
354
398
type TestHelper interface {
@@ -656,8 +700,8 @@ protoStore.DeleteById(ctx, id, &pb.Memory{})
656
700
- [ type ProtobufDataStore] ( < #type-protobufdatastore > )
657
701
- [ func (p ProtobufDataStore) DeleteById(ctx context.Context, id string, msg proto.Message) (int64, error)] ( < #func-protobufdatastore-deletebyid > )
658
702
- [ func (p ProtobufDataStore) DropTables(msgs ...proto.Message) error] ( < #func-protobufdatastore-droptables > )
659
- - [ func (p ProtobufDataStore) FindAll(ctx context.Context, msgs interface{}) (metadataMap map[ string] Metadata, err error)] ( < #func-protobufdatastore-findall > )
660
- - [ func (p ProtobufDataStore) FindAllAsMap(ctx context.Context, msgsMap interface{}) (metadataMap map[ string] Metadata, err error)] ( < #func-protobufdatastore-findallasmap > )
703
+ - [ func (p ProtobufDataStore) FindAll(ctx context.Context, msgs interface{}, pagination * datastore.Pagination ) (metadataMap map[ string] Metadata, err error)] ( < #func-protobufdatastore-findall > )
704
+ - [ func (p ProtobufDataStore) FindAllAsMap(ctx context.Context, msgsMap interface{}, pagination * datastore.Pagination ) (metadataMap map[ string] Metadata, err error)] ( < #func-protobufdatastore-findallasmap > )
661
705
- [ func (p ProtobufDataStore) FindById(ctx context.Context, id string, msg proto.Message, metadata * Metadata) error] ( < #func-protobufdatastore-findbyid > )
662
706
- [ func (p ProtobufDataStore) GetAuthorizer() authorizer.Authorizer] ( < #func-protobufdatastore-getauthorizer > )
663
707
- [ func (p ProtobufDataStore) GetMetadata(ctx context.Context, id string, msg proto.Message) (md Metadata, err error)] ( < #func-protobufdatastore-getmetadata > )
@@ -712,8 +756,8 @@ type ProtoStore interface {
712
756
Update (ctx context.Context , id string , msg proto.Message ) (rowsAffected int64 , md Metadata, err error )
713
757
Upsert (ctx context.Context , id string , msg proto.Message ) (rowsAffected int64 , md Metadata, err error )
714
758
FindById (ctx context.Context , id string , msg proto.Message , metadata *Metadata) error
715
- FindAll (ctx context.Context , msgs interface {}) (metadataMap map [string ]Metadata, err error )
716
- FindAllAsMap (ctx context.Context , msgsMap interface {}) (metadataMap map [string ]Metadata, err error )
759
+ FindAll (ctx context.Context , msgs interface {}, pagination *datastore. Pagination ) (metadataMap map [string ]Metadata, err error )
760
+ FindAllAsMap (ctx context.Context , msgsMap interface {}, pagination *datastore. Pagination ) (metadataMap map [string ]Metadata, err error )
717
761
DeleteById (ctx context.Context , id string , msg proto.Message ) (rowsAffected int64 , err error )
718
762
719
763
InsertWithMetadata (ctx context.Context , id string , msg proto.Message , metadata Metadata) (rowsAffected int64 , md Metadata, err error )
@@ -781,15 +825,15 @@ func (p ProtobufDataStore) DropTables(msgs ...proto.Message) error
781
825
### func \(ProtobufDataStore\) [FindAll](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/protostore/protostore.go#L386>)
782
826
783
827
```go
784
- func (p ProtobufDataStore) FindAll(ctx context.Context, msgs interface{}) (metadataMap map [string ]Metadata, err error )
828
+ func (p ProtobufDataStore) FindAll(ctx context.Context, msgs interface{}, pagination *datastore. Pagination ) (metadataMap map [string ]Metadata, err error )
785
829
```
786
830
787
831
FindAll Finds all messages \( of the same type as the element of msgs\) in Protostore and stores the result in msgs. msgs must be a pointer to a slice of Protobuf structs or a pointer to a slice of pointers to Protobuf structs. It will be modified in\- place. Returns a map of Protobuf messages' IDs to their metadata \( parent ID & revision\) .
788
832
789
833
### func \( ProtobufDataStore\) [ FindAllAsMap] ( < https://github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/protostore/protostore.go#L328 > )
790
834
791
835
``` go
792
- func (p ProtobufDataStore ) FindAllAsMap (ctx context .Context , msgsMap interface {}) (metadataMap map [string ]Metadata , err error )
836
+ func (p ProtobufDataStore ) FindAllAsMap (ctx context .Context , msgsMap interface {}, pagination * datastore . Pagination ) (metadataMap map [string ]Metadata , err error )
793
837
```
794
838
795
839
### func \(ProtobufDataStore\) [FindById](<https:// github.com/vmware-labs/multi-tenant-persistence-for-saas/blob/main/pkg/protostore/protostore.go#L294>)
0 commit comments