2019-10-11 16:44:42 +03:00
|
|
|
// Package service implements the store service interface
|
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/client"
|
2020-03-16 13:30:56 +03:00
|
|
|
"github.com/micro/go-micro/v2/errors"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/metadata"
|
|
|
|
"github.com/micro/go-micro/v2/store"
|
|
|
|
pb "github.com/micro/go-micro/v2/store/service/proto"
|
2019-10-11 16:44:42 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type serviceStore struct {
|
2019-12-16 17:38:51 +03:00
|
|
|
options store.Options
|
2019-10-11 16:44:42 +03:00
|
|
|
|
2020-04-08 21:25:57 +03:00
|
|
|
// The database to use
|
|
|
|
Database string
|
|
|
|
|
|
|
|
// The table to use
|
|
|
|
Table string
|
2019-12-16 15:13:18 +03:00
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
// Addresses of the nodes
|
|
|
|
Nodes []string
|
|
|
|
|
|
|
|
// store service client
|
|
|
|
Client pb.StoreService
|
|
|
|
}
|
|
|
|
|
2020-04-08 11:51:10 +03:00
|
|
|
func (s *serviceStore) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-08 15:11:31 +03:00
|
|
|
func (s *serviceStore) Init(opts ...store.Option) error {
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&s.options)
|
|
|
|
}
|
2020-04-08 21:25:57 +03:00
|
|
|
s.Database = s.options.Database
|
|
|
|
s.Table = s.options.Table
|
2020-01-08 15:11:31 +03:00
|
|
|
s.Nodes = s.options.Nodes
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-16 15:13:18 +03:00
|
|
|
func (s *serviceStore) Context() context.Context {
|
|
|
|
ctx := context.Background()
|
|
|
|
md := make(metadata.Metadata)
|
2020-05-01 02:25:17 +03:00
|
|
|
if len(s.Database) > 0 {
|
|
|
|
md["Micro-Database"] = s.Database
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(s.Table) > 0 {
|
|
|
|
md["Micro-Table"] = s.Table
|
|
|
|
}
|
2019-12-16 15:13:18 +03:00
|
|
|
return metadata.NewContext(ctx, md)
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
// Sync all the known records
|
2020-03-12 16:41:30 +03:00
|
|
|
func (s *serviceStore) List(opts ...store.ListOption) ([]string, error) {
|
2020-05-01 17:22:44 +03:00
|
|
|
options := store.ListOptions{
|
|
|
|
Database: s.Database,
|
|
|
|
Table: s.Table,
|
|
|
|
}
|
|
|
|
|
2020-05-01 00:51:25 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
|
|
|
listOpts := &pb.ListOptions{
|
|
|
|
Database: options.Database,
|
|
|
|
Table: options.Table,
|
|
|
|
Prefix: options.Prefix,
|
|
|
|
Suffix: options.Suffix,
|
|
|
|
Limit: uint64(options.Limit),
|
|
|
|
Offset: uint64(options.Offset),
|
|
|
|
}
|
|
|
|
|
|
|
|
stream, err := s.Client.List(s.Context(), &pb.ListRequest{Options: listOpts}, client.WithAddress(s.Nodes...))
|
2020-03-17 14:27:20 +03:00
|
|
|
if err != nil && errors.Equal(err, errors.NotFound("", "")) {
|
2020-03-16 13:30:56 +03:00
|
|
|
return nil, store.ErrNotFound
|
|
|
|
} else if err != nil {
|
2019-10-11 16:44:42 +03:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer stream.Close()
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
var keys []string
|
2019-10-11 16:44:42 +03:00
|
|
|
|
|
|
|
for {
|
|
|
|
rsp, err := stream.Recv()
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil {
|
2020-03-12 16:41:30 +03:00
|
|
|
return keys, err
|
2019-10-11 16:44:42 +03:00
|
|
|
}
|
2020-01-09 01:23:14 +03:00
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
for _, key := range rsp.Keys {
|
|
|
|
keys = append(keys, key)
|
2019-10-11 16:44:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
return keys, nil
|
2019-10-11 16:44:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Read a record with key
|
2020-01-09 01:23:14 +03:00
|
|
|
func (s *serviceStore) Read(key string, opts ...store.ReadOption) ([]*store.Record, error) {
|
2020-05-01 17:22:44 +03:00
|
|
|
options := store.ReadOptions{
|
|
|
|
Database: s.Database,
|
|
|
|
Table: s.Table,
|
|
|
|
}
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
2020-05-01 00:51:25 +03:00
|
|
|
readOpts := &pb.ReadOptions{
|
|
|
|
Database: options.Database,
|
|
|
|
Table: options.Table,
|
|
|
|
Prefix: options.Prefix,
|
|
|
|
Suffix: options.Suffix,
|
|
|
|
Limit: uint64(options.Limit),
|
|
|
|
Offset: uint64(options.Offset),
|
|
|
|
}
|
|
|
|
|
2019-12-16 15:13:18 +03:00
|
|
|
rsp, err := s.Client.Read(s.Context(), &pb.ReadRequest{
|
2020-05-01 00:51:25 +03:00
|
|
|
Key: key,
|
|
|
|
Options: readOpts,
|
2019-10-11 16:44:42 +03:00
|
|
|
}, client.WithAddress(s.Nodes...))
|
2020-03-17 14:27:20 +03:00
|
|
|
if err != nil && errors.Equal(err, errors.NotFound("", "")) {
|
2020-03-16 13:30:56 +03:00
|
|
|
return nil, store.ErrNotFound
|
|
|
|
} else if err != nil {
|
2019-10-11 16:44:42 +03:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-03 22:59:44 +03:00
|
|
|
|
|
|
|
records := make([]*store.Record, 0, len(rsp.Records))
|
2020-01-09 01:23:14 +03:00
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
for _, val := range rsp.Records {
|
|
|
|
records = append(records, &store.Record{
|
|
|
|
Key: val.Key,
|
|
|
|
Value: val.Value,
|
|
|
|
Expiry: time.Duration(val.Expiry) * time.Second,
|
|
|
|
})
|
|
|
|
}
|
2020-01-09 01:23:14 +03:00
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
return records, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write a record
|
2020-03-12 16:41:30 +03:00
|
|
|
func (s *serviceStore) Write(record *store.Record, opts ...store.WriteOption) error {
|
2020-05-01 17:22:44 +03:00
|
|
|
options := store.WriteOptions{
|
|
|
|
Database: s.Database,
|
|
|
|
Table: s.Table,
|
|
|
|
}
|
|
|
|
|
2020-05-01 00:51:25 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
|
|
|
writeOpts := &pb.WriteOptions{
|
|
|
|
Database: options.Database,
|
|
|
|
Table: options.Table,
|
|
|
|
}
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
_, err := s.Client.Write(s.Context(), &pb.WriteRequest{
|
|
|
|
Record: &pb.Record{
|
2019-10-11 16:44:42 +03:00
|
|
|
Key: record.Key,
|
|
|
|
Value: record.Value,
|
|
|
|
Expiry: int64(record.Expiry.Seconds()),
|
2020-01-09 01:23:14 +03:00
|
|
|
},
|
2020-05-01 00:51:25 +03:00
|
|
|
Options: writeOpts}, client.WithAddress(s.Nodes...))
|
2020-03-17 14:27:20 +03:00
|
|
|
if err != nil && errors.Equal(err, errors.NotFound("", "")) {
|
|
|
|
return store.ErrNotFound
|
|
|
|
}
|
2019-10-11 16:44:42 +03:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete a record with key
|
2020-03-12 16:41:30 +03:00
|
|
|
func (s *serviceStore) Delete(key string, opts ...store.DeleteOption) error {
|
2020-05-01 17:22:44 +03:00
|
|
|
options := store.DeleteOptions{
|
|
|
|
Database: s.Database,
|
|
|
|
Table: s.Table,
|
|
|
|
}
|
|
|
|
|
2020-05-01 00:51:25 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteOpts := &pb.DeleteOptions{
|
|
|
|
Database: options.Database,
|
|
|
|
Table: options.Table,
|
|
|
|
}
|
|
|
|
|
2019-12-16 15:13:18 +03:00
|
|
|
_, err := s.Client.Delete(s.Context(), &pb.DeleteRequest{
|
2020-05-01 00:51:25 +03:00
|
|
|
Key: key,
|
|
|
|
Options: deleteOpts,
|
2019-10-11 16:44:42 +03:00
|
|
|
}, client.WithAddress(s.Nodes...))
|
2020-03-17 14:27:20 +03:00
|
|
|
if err != nil && errors.Equal(err, errors.NotFound("", "")) {
|
2020-03-16 13:30:56 +03:00
|
|
|
return store.ErrNotFound
|
|
|
|
}
|
2020-03-17 14:27:20 +03:00
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-01-10 22:13:55 +03:00
|
|
|
func (s *serviceStore) String() string {
|
|
|
|
return "service"
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (s *serviceStore) Options() store.Options {
|
|
|
|
return s.options
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
// NewStore returns a new store service implementation
|
2019-12-16 17:38:51 +03:00
|
|
|
func NewStore(opts ...store.Option) store.Store {
|
|
|
|
var options store.Options
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
2019-12-16 15:13:18 +03:00
|
|
|
}
|
|
|
|
|
2020-05-11 19:57:39 +03:00
|
|
|
if options.Client == nil {
|
|
|
|
options.Client = client.DefaultClient
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:44:42 +03:00
|
|
|
service := &serviceStore{
|
2020-04-08 21:25:57 +03:00
|
|
|
options: options,
|
|
|
|
Database: options.Database,
|
|
|
|
Table: options.Table,
|
|
|
|
Nodes: options.Nodes,
|
2020-05-11 19:57:39 +03:00
|
|
|
Client: pb.NewStoreService("go.micro.store", options.Client),
|
2019-10-11 16:44:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return service
|
|
|
|
}
|