1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/client.go

142 lines
4.2 KiB
Go
Raw Normal View History

2016-12-14 17:41:48 +02:00
// Package client is an interface for an RPC client
2015-01-14 01:31:27 +02:00
package client
2015-05-21 20:24:57 +02:00
import (
2018-03-03 13:53:52 +02:00
"context"
2019-01-10 13:39:39 +02:00
2024-06-04 22:40:43 +02:00
"go-micro.dev/v5/codec"
2015-05-21 20:24:57 +02:00
)
var (
// NewClient returns a new client.
NewClient func(...Option) Client = newRPCClient
// DefaultClient is a default client to use out of the box.
DefaultClient Client = newRPCClient()
)
2016-01-30 23:15:08 +02: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 09:41:14 +02:00
// It also supports bidirectional streaming of requests.
2015-01-14 01:31:27 +02:00
type Client interface {
2016-01-02 21:12:17 +02:00
Init(...Option) error
Options() Options
2018-05-10 18:33:54 +02:00
NewMessage(topic string, msg interface{}, opts ...MessageOption) Message
2019-01-10 23:25:31 +02:00
NewRequest(service, endpoint string, req interface{}, reqOpts ...RequestOption) Request
2015-12-08 21:25:42 +02:00
Call(ctx context.Context, req Request, rsp interface{}, opts ...CallOption) error
2018-04-14 19:15:09 +02:00
Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error)
2018-04-14 19:06:52 +02:00
Publish(ctx context.Context, msg Message, opts ...PublishOption) error
2015-12-19 23:56:14 +02:00
String() string
}
2022-09-30 16:27:07 +02:00
// Router manages request routing.
2019-01-10 13:39:39 +02:00
type Router interface {
SendRequest(context.Context, Request) (Response, error)
}
2022-09-30 16:27:07 +02:00
// Message is the interface for publishing asynchronously.
2018-04-14 19:06:52 +02:00
type Message interface {
Topic() string
2018-04-14 19:06:52 +02:00
Payload() interface{}
ContentType() string
}
2022-09-30 16:27:07 +02:00
// Request is the interface for a synchronous request used by Call or Stream.
type Request interface {
2019-01-10 13:39:39 +02:00
// The service to call
Service() string
2019-01-18 12:12:57 +02:00
// The action to take
Method() string
// The endpoint to invoke
2019-01-10 23:25:31 +02:00
Endpoint() string
2019-01-10 13:39:39 +02:00
// The content type
ContentType() string
2019-01-10 13:39:39 +02:00
// The unencoded request body
Body() interface{}
// Write to the encoded request writer. This is nil before a call is made
Codec() codec.Writer
2015-12-17 22:37:35 +02:00
// indicates whether the request will be a streaming one rather than unary
Stream() bool
}
2022-09-30 16:27:07 +02:00
// Response is the response received from a service.
2019-01-10 13:39:39 +02:00
type Response interface {
// Read the response
Codec() codec.Reader
// read the header
Header() map[string]string
// Read the undecoded response
Read() ([]byte, error)
}
2022-09-30 16:27:07 +02:00
// Stream is the inteface for a bidirectional synchronous stream.
2018-04-14 19:15:09 +02:00
type Stream interface {
Closer
2019-01-14 23:30:43 +02:00
// Context for the stream
2015-12-17 22:37:35 +02:00
Context() context.Context
2019-01-14 23:30:43 +02:00
// The request made
Request() Request
2019-01-14 23:30:43 +02:00
// The response read
Response() Response
// Send will encode and send a request
2015-12-17 22:37:35 +02:00
Send(interface{}) error
2019-01-14 23:30:43 +02:00
// Recv will decode and read a response
2015-12-17 22:37:35 +02:00
Recv(interface{}) error
2019-01-14 23:30:43 +02:00
// Error returns the stream error
Error() error
2019-01-14 23:30:43 +02:00
// Close closes the stream
Close() error
2015-01-14 01:31:27 +02:00
}
2022-09-30 16:27:07 +02:00
// Closer handle client close.
type Closer interface {
// CloseSend closes the send direction of the stream.
CloseSend() error
}
2022-09-30 16:27:07 +02:00
// Option used by the Client.
type Option func(*Options)
2016-04-06 18:53:16 +02:00
2022-09-30 16:27:07 +02:00
// CallOption used by Call or Stream.
type CallOption func(*CallOptions)
2016-04-06 18:53:16 +02:00
2022-09-30 16:27:07 +02:00
// PublishOption used by Publish.
type PublishOption func(*PublishOptions)
2016-04-06 18:53:16 +02:00
2022-09-30 16:27:07 +02:00
// MessageOption used by NewMessage.
2018-05-10 18:33:54 +02:00
type MessageOption func(*MessageOptions)
2022-09-30 16:27:07 +02:00
// RequestOption used by NewRequest.
type RequestOption func(*RequestOptions)
2015-05-21 20:24:57 +02:00
2022-09-30 16:27:07 +02:00
// Makes a synchronous call to a service using the default client.
2018-04-17 12:00:22 +02:00
func Call(ctx context.Context, request Request, response interface{}, opts ...CallOption) error {
return DefaultClient.Call(ctx, request, response, opts...)
}
// Publishes a publication using the default client. Using the underlying broker
// set within the options.
2018-05-10 18:33:54 +02:00
func Publish(ctx context.Context, msg Message, opts ...PublishOption) error {
return DefaultClient.Publish(ctx, msg, opts...)
2018-04-17 12:00:22 +02:00
}
2022-09-30 16:27:07 +02:00
// Creates a new message using the default client.
2018-05-10 18:33:54 +02:00
func NewMessage(topic string, payload interface{}, opts ...MessageOption) Message {
return DefaultClient.NewMessage(topic, payload, opts...)
2018-04-17 12:00:22 +02:00
}
// Creates a new request using the default client. Content Type will
2022-09-30 16:27:07 +02:00
// be set to the default within options and use the appropriate codec.
2019-01-10 23:25:31 +02:00
func NewRequest(service, endpoint string, request interface{}, reqOpts ...RequestOption) Request {
return DefaultClient.NewRequest(service, endpoint, request, reqOpts...)
2018-04-17 12:00:22 +02:00
}
// Creates a streaming connection with a service and returns responses on the
// channel passed in. It's up to the user to close the streamer.
func NewStream(ctx context.Context, request Request, opts ...CallOption) (Stream, error) {
return DefaultClient.Stream(ctx, request, opts...)
}
func String() string {
return DefaultClient.String()
}