2016-12-14 18:41:48 +03:00
|
|
|
// Package client is an interface for an RPC client
|
2015-01-14 02:31:27 +03:00
|
|
|
package client
|
|
|
|
|
2015-05-21 21:24:57 +03:00
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2016-01-04 00:14:33 +03:00
|
|
|
"time"
|
2019-01-10 14:39:39 +03:00
|
|
|
|
2020-08-19 17:47:17 +03:00
|
|
|
"github.com/unistack-org/micro/v3/codec"
|
2020-11-18 16:50:41 +03:00
|
|
|
"github.com/unistack-org/micro/v3/metadata"
|
2015-05-21 21:24:57 +03:00
|
|
|
)
|
|
|
|
|
2020-08-28 11:52:51 +03:00
|
|
|
var (
|
2020-11-03 02:02:32 +03:00
|
|
|
// DefaultClient is the global default client
|
2021-02-14 11:28:50 +03:00
|
|
|
DefaultClient Client = NewClient()
|
|
|
|
// DefaultContentType is the default content-type if not specified
|
|
|
|
DefaultContentType = "application/json"
|
|
|
|
// DefaultBackoff is the default backoff function for retries
|
|
|
|
DefaultBackoff = exponentialBackoff
|
|
|
|
// DefaultRetry is the default check-for-retry function for retries
|
|
|
|
DefaultRetry = RetryNever
|
|
|
|
// DefaultRetries is the default number of times a request is tried
|
|
|
|
DefaultRetries = 0
|
|
|
|
// DefaultRequestTimeout is the default request timeout
|
|
|
|
DefaultRequestTimeout = time.Second * 5
|
|
|
|
// DefaultPoolSize sets the connection pool size
|
|
|
|
DefaultPoolSize = 100
|
|
|
|
// DefaultPoolTTL sets the connection pool ttl
|
|
|
|
DefaultPoolTTL = time.Minute
|
2020-08-28 11:52:51 +03:00
|
|
|
)
|
|
|
|
|
2016-01-31 00:15:08 +03:00
|
|
|
// Client is the interface used to make requests to services.
|
|
|
|
// It supports Request/Response via Transport and Publishing via the Broker.
|
2019-07-22 10:41:14 +03:00
|
|
|
// It also supports bidirectional streaming of requests.
|
2015-01-14 02:31:27 +03:00
|
|
|
type Client interface {
|
2021-01-29 13:17:32 +03:00
|
|
|
Name() string
|
2021-02-14 11:28:50 +03:00
|
|
|
Init(opts ...Option) error
|
2016-01-02 22:12:17 +03:00
|
|
|
Options() Options
|
2018-05-10 19:33:54 +03:00
|
|
|
NewMessage(topic string, msg interface{}, opts ...MessageOption) Message
|
2021-02-14 11:28:50 +03:00
|
|
|
NewRequest(service string, endpoint string, req interface{}, opts ...RequestOption) Request
|
2015-12-08 22:25:42 +03:00
|
|
|
Call(ctx context.Context, req Request, rsp interface{}, opts ...CallOption) error
|
2018-04-14 20:15:09 +03:00
|
|
|
Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error)
|
2018-04-14 20:06:52 +03:00
|
|
|
Publish(ctx context.Context, msg Message, opts ...PublishOption) error
|
2015-12-20 00:56:14 +03:00
|
|
|
String() string
|
2015-06-12 21:52:27 +03:00
|
|
|
}
|
|
|
|
|
2018-04-14 20:06:52 +03:00
|
|
|
// Message is the interface for publishing asynchronously
|
|
|
|
type Message interface {
|
2015-06-12 21:52:27 +03:00
|
|
|
Topic() string
|
2018-04-14 20:06:52 +03:00
|
|
|
Payload() interface{}
|
2015-06-12 21:52:27 +03:00
|
|
|
ContentType() string
|
|
|
|
}
|
|
|
|
|
2016-04-06 19:53:16 +03:00
|
|
|
// Request is the interface for a synchronous request used by Call or Stream
|
2015-06-12 21:52:27 +03:00
|
|
|
type Request interface {
|
2019-01-10 14:39:39 +03:00
|
|
|
// The service to call
|
2015-06-12 21:52:27 +03:00
|
|
|
Service() string
|
2019-01-18 13:12:57 +03:00
|
|
|
// The action to take
|
|
|
|
Method() string
|
|
|
|
// The endpoint to invoke
|
2019-01-11 00:25:31 +03:00
|
|
|
Endpoint() string
|
2019-01-10 14:39:39 +03:00
|
|
|
// The content type
|
2015-06-12 21:52:27 +03:00
|
|
|
ContentType() string
|
2019-01-10 14:39:39 +03:00
|
|
|
// The unencoded request body
|
|
|
|
Body() interface{}
|
|
|
|
// Write to the encoded request writer. This is nil before a call is made
|
2020-11-23 16:18:47 +03:00
|
|
|
Codec() codec.Codec
|
2015-12-17 23:37:35 +03:00
|
|
|
// indicates whether the request will be a streaming one rather than unary
|
|
|
|
Stream() bool
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 14:39:39 +03:00
|
|
|
// Response is the response received from a service
|
|
|
|
type Response interface {
|
|
|
|
// Read the response
|
2020-11-23 16:18:47 +03:00
|
|
|
Codec() codec.Codec
|
2019-01-10 14:39:39 +03:00
|
|
|
// read the header
|
2020-11-18 16:50:41 +03:00
|
|
|
Header() metadata.Metadata
|
2019-01-10 14:39:39 +03:00
|
|
|
// Read the undecoded response
|
|
|
|
Read() ([]byte, error)
|
|
|
|
}
|
|
|
|
|
2020-07-16 18:33:11 +03:00
|
|
|
// Stream is the interface for a bidirectional synchronous stream
|
2018-04-14 20:15:09 +03:00
|
|
|
type Stream interface {
|
2019-01-15 00:30:43 +03:00
|
|
|
// Context for the stream
|
2015-12-17 23:37:35 +03:00
|
|
|
Context() context.Context
|
2019-01-15 00:30:43 +03:00
|
|
|
// The request made
|
2015-06-01 20:55:27 +03:00
|
|
|
Request() Request
|
2019-01-15 00:30:43 +03:00
|
|
|
// The response read
|
|
|
|
Response() Response
|
|
|
|
// Send will encode and send a request
|
2021-02-14 11:28:50 +03:00
|
|
|
Send(msg interface{}) error
|
2019-01-15 00:30:43 +03:00
|
|
|
// Recv will decode and read a response
|
2021-02-14 11:28:50 +03:00
|
|
|
Recv(msg interface{}) error
|
2019-01-15 00:30:43 +03:00
|
|
|
// Error returns the stream error
|
2015-06-01 20:55:27 +03:00
|
|
|
Error() error
|
2019-01-15 00:30:43 +03:00
|
|
|
// Close closes the stream
|
2015-06-01 20:55:27 +03:00
|
|
|
Close() error
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2016-04-06 19:53:16 +03:00
|
|
|
// Option used by the Client
|
2015-12-31 21:11:46 +03:00
|
|
|
type Option func(*Options)
|
2016-04-06 19:53:16 +03:00
|
|
|
|
|
|
|
// CallOption used by Call or Stream
|
2015-12-31 21:11:46 +03:00
|
|
|
type CallOption func(*CallOptions)
|
2016-04-06 19:53:16 +03:00
|
|
|
|
|
|
|
// PublishOption used by Publish
|
2015-12-31 21:11:46 +03:00
|
|
|
type PublishOption func(*PublishOptions)
|
2016-04-06 19:53:16 +03:00
|
|
|
|
2018-05-10 19:33:54 +03:00
|
|
|
// MessageOption used by NewMessage
|
|
|
|
type MessageOption func(*MessageOptions)
|
|
|
|
|
2016-04-06 19:53:16 +03:00
|
|
|
// RequestOption used by NewRequest
|
2015-12-31 21:11:46 +03:00
|
|
|
type RequestOption func(*RequestOptions)
|