2019-07-07 17:04:07 +03:00
|
|
|
// Package transport is an interface for synchronous connection based communication
|
2015-05-21 00:57:19 +03:00
|
|
|
package transport
|
|
|
|
|
2016-01-04 00:25:03 +03:00
|
|
|
import (
|
2020-11-03 02:02:32 +03:00
|
|
|
"context"
|
2016-01-04 00:25:03 +03:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2020-08-28 11:52:51 +03:00
|
|
|
var (
|
2020-11-03 01:08:23 +03:00
|
|
|
// DefaultTransport is the global default transport
|
|
|
|
DefaultTransport Transport = NewTransport()
|
2020-08-28 11:52:51 +03:00
|
|
|
)
|
|
|
|
|
2019-07-07 17:03:08 +03:00
|
|
|
// Transport is an interface which is used for communication between
|
|
|
|
// services. It uses connection based socket send/recv semantics and
|
|
|
|
// has various implementations; http, grpc, quic.
|
|
|
|
type Transport interface {
|
|
|
|
Init(...Option) error
|
|
|
|
Options() Options
|
2020-11-03 02:02:32 +03:00
|
|
|
Dial(ctx context.Context, addr string, opts ...DialOption) (Client, error)
|
|
|
|
Listen(ctx context.Context, addr string, opts ...ListenOption) (Listener, error)
|
2019-07-07 17:03:08 +03:00
|
|
|
String() string
|
|
|
|
}
|
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// Message is used to transfer data
|
2015-05-21 00:57:19 +03:00
|
|
|
type Message struct {
|
|
|
|
Header map[string]string
|
|
|
|
Body []byte
|
|
|
|
}
|
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// Socket bastraction interface
|
2015-05-21 00:57:19 +03:00
|
|
|
type Socket interface {
|
2015-05-21 23:08:19 +03:00
|
|
|
Recv(*Message) error
|
|
|
|
Send(*Message) error
|
|
|
|
Close() error
|
2018-11-14 22:49:04 +03:00
|
|
|
Local() string
|
|
|
|
Remote() string
|
2015-05-21 00:57:19 +03:00
|
|
|
}
|
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// Client is the socket owner
|
2015-05-21 00:57:19 +03:00
|
|
|
type Client interface {
|
2016-11-05 14:44:02 +03:00
|
|
|
Socket
|
2015-05-21 00:57:19 +03:00
|
|
|
}
|
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// Listener is the interface for stream oriented messaging
|
2015-05-21 23:08:19 +03:00
|
|
|
type Listener interface {
|
2015-05-21 00:57:19 +03:00
|
|
|
Addr() string
|
|
|
|
Close() error
|
2015-05-21 23:08:19 +03:00
|
|
|
Accept(func(Socket)) error
|
2015-05-21 00:57:19 +03:00
|
|
|
}
|
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// Option is the option signature
|
2015-12-31 21:11:46 +03:00
|
|
|
type Option func(*Options)
|
2015-05-23 22:04:16 +03:00
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// DialOption is the option signature
|
2015-12-31 21:11:46 +03:00
|
|
|
type DialOption func(*DialOptions)
|
2015-06-01 20:55:27 +03:00
|
|
|
|
2020-08-25 14:33:36 +03:00
|
|
|
// ListenOption is the option signature
|
2016-01-18 03:10:04 +03:00
|
|
|
type ListenOption func(*ListenOptions)
|
|
|
|
|
2015-05-21 00:57:19 +03:00
|
|
|
var (
|
2020-08-25 14:33:36 +03:00
|
|
|
// Default dial timeout
|
2016-01-04 00:25:03 +03:00
|
|
|
DefaultDialTimeout = time.Second * 5
|
2015-05-21 00:57:19 +03:00
|
|
|
)
|