storj/pkg/transport/transport.go
Dylan Lott 7569b7d71b
Node lifecycle hooks (#920)
* wires up first draft of lifecycle methods

* creates interface on transport

* node lifecycle hooks works

* linter fixes

* adds error log at connection success

* chnages Observer interface to use context

* Makes Discovery take its own logger

* WIP

* linter fixes

* Test fixes

* adds in ConnFailure code for cache
2018-12-21 21:51:42 -07:00

114 lines
3.0 KiB
Go

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package transport
import (
"context"
"time"
"github.com/zeebo/errs"
"google.golang.org/grpc"
"gopkg.in/spacemonkeygo/monkit.v2"
"storj.io/storj/pkg/pb"
"storj.io/storj/pkg/provider"
"storj.io/storj/pkg/storj"
)
var (
mon = monkit.Package()
//Error is the errs class of standard Transport Client errors
Error = errs.Class("transport error")
// default time to wait for a connection to be established
timeout = 20 * time.Second
)
// Observer implements the ConnSuccess and ConnFailure methods
// for Discovery and other services to use
type Observer interface {
ConnSuccess(ctx context.Context, node *pb.Node)
ConnFailure(ctx context.Context, node *pb.Node, err error)
}
// Client defines the interface to an transport client.
type Client interface {
DialNode(ctx context.Context, node *pb.Node, opts ...grpc.DialOption) (*grpc.ClientConn, error)
DialAddress(ctx context.Context, address string, opts ...grpc.DialOption) (*grpc.ClientConn, error)
Identity() *provider.FullIdentity
}
// Transport interface structure
type Transport struct {
identity *provider.FullIdentity
observers []Observer
}
// NewClient returns a newly instantiated Transport Client
func NewClient(identity *provider.FullIdentity, obs ...Observer) Client {
return &Transport{
identity: identity,
observers: obs,
}
}
// DialNode returns a grpc connection with tls to a node
func (transport *Transport) DialNode(ctx context.Context, node *pb.Node, opts ...grpc.DialOption) (conn *grpc.ClientConn, err error) {
defer mon.Task()(&ctx)(&err)
if node.Address == nil || node.Address.Address == "" {
return nil, Error.New("no address")
}
// add ID of node we are wanting to connect to
dialOpt, err := transport.identity.DialOption(node.Id)
if err != nil {
return nil, err
}
options := append([]grpc.DialOption{dialOpt}, opts...)
ctx, cf := context.WithTimeout(ctx, timeout)
defer cf()
conn, err = grpc.DialContext(ctx, node.GetAddress().Address, options...)
if err != nil {
alertFail(ctx, transport.observers, node, err)
return nil, Error.Wrap(err)
}
alertSuccess(ctx, transport.observers, node)
return conn, err
}
// DialAddress returns a grpc connection with tls to an IP address
func (transport *Transport) DialAddress(ctx context.Context, address string, opts ...grpc.DialOption) (conn *grpc.ClientConn, err error) {
defer mon.Task()(&ctx)(&err)
dialOpt, err := transport.identity.DialOption(storj.NodeID{})
if err != nil {
return nil, err
}
options := append([]grpc.DialOption{dialOpt}, opts...)
return grpc.Dial(address, options...)
}
// Identity is a getter for the transport's identity
func (transport *Transport) Identity() *provider.FullIdentity {
return transport.identity
}
func alertFail(ctx context.Context, obs []Observer, node *pb.Node, err error) {
for _, o := range obs {
o.ConnFailure(ctx, node, err)
}
}
func alertSuccess(ctx context.Context, obs []Observer, node *pb.Node) {
for _, o := range obs {
o.ConnSuccess(ctx, node)
}
}