191 lines
5.0 KiB
Go
191 lines
5.0 KiB
Go
/*
|
|
Copyright 2021 The Dapr 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 statechange
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
r "github.com/dancannon/gorethink"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/dapr/components-contrib/bindings"
|
|
"github.com/dapr/components-contrib/internal/utils"
|
|
"github.com/dapr/kit/logger"
|
|
)
|
|
|
|
// Binding represents RethinkDB change state input binding which fires handler with
|
|
// both the previous and current state store content each time there is a change.
|
|
type Binding struct {
|
|
logger logger.Logger
|
|
session *r.Session
|
|
config StateConfig
|
|
}
|
|
|
|
// StateConfig is the binding config.
|
|
type StateConfig struct {
|
|
r.ConnectOpts
|
|
Table string `json:"table"`
|
|
}
|
|
|
|
// NewRethinkDBStateChangeBinding returns a new RethinkDB actor event input binding.
|
|
func NewRethinkDBStateChangeBinding(logger logger.Logger) bindings.InputBinding {
|
|
return &Binding{
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
// Init initializes the RethinkDB binding.
|
|
func (b *Binding) Init(metadata bindings.Metadata) error {
|
|
cfg, err := metadataToConfig(metadata.Properties, b.logger)
|
|
if err != nil {
|
|
return errors.Wrap(err, "unable to parse metadata properties")
|
|
}
|
|
b.config = cfg
|
|
|
|
ses, err := r.Connect(b.config.ConnectOpts)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error connecting to the database")
|
|
}
|
|
b.session = ses
|
|
|
|
return nil
|
|
}
|
|
|
|
// Read triggers the RethinkDB scheduler.
|
|
func (b *Binding) Read(ctx context.Context, handler bindings.Handler) error {
|
|
b.logger.Infof("subscribing to state changes in %s.%s...", b.config.Database, b.config.Table)
|
|
cursor, err := r.DB(b.config.Database).
|
|
Table(b.config.Table).
|
|
Changes(r.ChangesOpts{
|
|
IncludeTypes: true,
|
|
}).
|
|
Run(b.session, r.RunOpts{
|
|
Context: ctx,
|
|
})
|
|
if err != nil {
|
|
errors.Wrapf(err, "error connecting to table %s", b.config.Table)
|
|
}
|
|
|
|
go func() {
|
|
for ctx.Err() == nil {
|
|
var change interface{}
|
|
ok := cursor.Next(&change)
|
|
if !ok {
|
|
b.logger.Errorf("error detecting change: %v", cursor.Err())
|
|
continue
|
|
}
|
|
|
|
data, err := json.Marshal(change)
|
|
if err != nil {
|
|
b.logger.Errorf("error marshalling change handler: %v", err)
|
|
}
|
|
b.logger.Debugf("event: %s", string(data))
|
|
|
|
resp := &bindings.ReadResponse{
|
|
Data: data,
|
|
Metadata: map[string]string{
|
|
"store-address": b.config.Address,
|
|
"store-database": b.config.Database,
|
|
"store-table": b.config.Table,
|
|
},
|
|
}
|
|
|
|
if _, err := handler(ctx, resp); err != nil {
|
|
b.logger.Errorf("error invoking change handler: %v", err)
|
|
continue
|
|
}
|
|
}
|
|
|
|
cursor.Close()
|
|
}()
|
|
|
|
return nil
|
|
}
|
|
|
|
func metadataToConfig(cfg map[string]string, logger logger.Logger) (StateConfig, error) {
|
|
c := StateConfig{}
|
|
for k, v := range cfg {
|
|
switch k {
|
|
case "address": // string
|
|
c.Address = v
|
|
case "addresses": // []string
|
|
c.Addresses = strings.Split(v, ",")
|
|
case "database": // string
|
|
c.Database = v
|
|
case "username": // string
|
|
c.Username = v
|
|
case "password": // string
|
|
c.Password = v
|
|
case "authkey": // string
|
|
c.AuthKey = v
|
|
case "table": // string
|
|
c.Table = v
|
|
case "timeout": // time.Duration
|
|
d, err := time.ParseDuration(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid timeout format: %v", v)
|
|
}
|
|
c.Timeout = d
|
|
case "write_timeout": // time.Duration
|
|
d, err := time.ParseDuration(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid write timeout format: %v", v)
|
|
}
|
|
c.WriteTimeout = d
|
|
case "read_timeout": // time.Duration
|
|
d, err := time.ParseDuration(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid read timeout format: %v", v)
|
|
}
|
|
c.ReadTimeout = d
|
|
case "keep_alive_timeout": // time.Duration
|
|
d, err := time.ParseDuration(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid keep alive timeout format: %v", v)
|
|
}
|
|
c.KeepAlivePeriod = d
|
|
case "initial_cap": // int
|
|
i, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid keep initial cap format: %v", v)
|
|
}
|
|
c.InitialCap = i
|
|
case "max_open": // int
|
|
i, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid keep max open format: %v", v)
|
|
}
|
|
c.MaxOpen = i
|
|
case "discover_hosts": // bool
|
|
c.DiscoverHosts = utils.IsTruthy(v)
|
|
case "use-open-tracing": // bool
|
|
c.UseOpentracing = utils.IsTruthy(v)
|
|
case "max_idle": // int
|
|
i, err := strconv.Atoi(v)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "invalid keep max idle format: %v", v)
|
|
}
|
|
c.InitialCap = i
|
|
default:
|
|
logger.Infof("unrecognized metadata: %s", k)
|
|
}
|
|
}
|
|
|
|
return c, nil
|
|
}
|