1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-05 22:53:41 +02:00
kratos/transport/transport.go

92 lines
2.4 KiB
Go
Raw Normal View History

2021-02-17 11:14:47 +02:00
package transport
import (
"context"
"net/url"
2021-02-17 11:14:47 +02:00
// init encoding
_ "github.com/go-kratos/kratos/v2/encoding/form"
2021-02-17 11:14:47 +02:00
_ "github.com/go-kratos/kratos/v2/encoding/json"
_ "github.com/go-kratos/kratos/v2/encoding/proto"
_ "github.com/go-kratos/kratos/v2/encoding/xml"
2021-05-17 15:52:23 +02:00
_ "github.com/go-kratos/kratos/v2/encoding/yaml"
2021-02-17 11:14:47 +02:00
)
// Server is transport server.
type Server interface {
Start(context.Context) error
Stop(context.Context) error
2021-02-17 11:14:47 +02:00
}
2021-05-28 09:30:55 +02:00
// Endpointer is registry endpoint.
type Endpointer interface {
Endpoint() (*url.URL, error)
2021-05-28 09:30:55 +02:00
}
// Header is the storage medium used by a Header.
type Header interface {
Get(key string) string
Set(key string, value string)
Keys() []string
}
// Transporter is transport context value interface.
type Transporter interface {
// Kind transporter
2021-06-17 04:26:45 +02:00
// grpc
// http
Kind() Kind
// Endpoint return server or client endpoint
2021-06-17 04:26:45 +02:00
// Server Transport: grpc://127.0.0.1:9000
// Client Transport: discovery:///provider-demo
Endpoint() string
// Operation Service full method selector generated by protobuf
2021-06-17 04:26:45 +02:00
// example: /helloworld.Greeter/SayHello
Operation() string
// RequestHeader return transport request header
2021-06-17 04:26:45 +02:00
// http: http.Header
// grpc: metadata.MD
RequestHeader() Header
// ReplyHeader return transport reply/response header
// only valid for server transport
// http: http.Header
// grpc: metadata.MD
ReplyHeader() Header
2021-02-17 11:14:47 +02:00
}
// Kind defines the type of Transport
type Kind string
func (k Kind) String() string { return string(k) }
// Defines a set of transport kind
const (
KindGRPC Kind = "grpc"
KindHTTP Kind = "http"
)
type serverTransportKey struct{}
type clientTransportKey struct{}
// NewServerContext returns a new Context that carries value.
func NewServerContext(ctx context.Context, tr Transporter) context.Context {
return context.WithValue(ctx, serverTransportKey{}, tr)
}
// FromServerContext returns the Transport value stored in ctx, if any.
func FromServerContext(ctx context.Context) (tr Transporter, ok bool) {
tr, ok = ctx.Value(serverTransportKey{}).(Transporter)
return
}
2021-02-17 11:14:47 +02:00
// NewClientContext returns a new Context that carries value.
func NewClientContext(ctx context.Context, tr Transporter) context.Context {
return context.WithValue(ctx, clientTransportKey{}, tr)
2021-02-17 11:14:47 +02:00
}
// FromClientContext returns the Transport value stored in ctx, if any.
func FromClientContext(ctx context.Context) (tr Transporter, ok bool) {
tr, ok = ctx.Value(clientTransportKey{}).(Transporter)
2021-02-17 11:14:47 +02:00
return
}