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

108 lines
1.7 KiB
Go
Raw Normal View History

2015-12-02 22:56:50 +02:00
package server
2019-01-09 18:20:57 +02:00
import (
"bytes"
2021-10-12 13:55:53 +02:00
"go-micro.dev/v4/codec"
"go-micro.dev/v4/transport"
"go-micro.dev/v4/util/buf"
2019-01-09 18:20:57 +02:00
)
2015-12-02 22:56:50 +02:00
type rpcRequest struct {
service string
2019-01-18 12:12:57 +02:00
method string
2019-01-10 23:25:31 +02:00
endpoint string
2015-12-02 22:56:50 +02:00
contentType string
2019-01-09 21:11:47 +02:00
socket transport.Socket
2019-01-09 18:20:57 +02:00
codec codec.Codec
2019-01-09 21:11:47 +02:00
header map[string]string
2019-01-09 18:20:57 +02:00
body []byte
2019-06-07 16:15:22 +02:00
rawBody interface{}
stream bool
2019-08-11 19:11:33 +02:00
first bool
2015-12-02 22:56:50 +02:00
}
2018-04-14 19:21:02 +02:00
type rpcMessage struct {
2015-12-02 22:56:50 +02:00
topic string
contentType string
2018-04-14 19:21:02 +02:00
payload interface{}
header map[string]string
body []byte
codec codec.NewCodec
2015-12-02 22:56:50 +02:00
}
2019-01-09 21:28:13 +02:00
func (r *rpcRequest) Codec() codec.Reader {
2019-01-09 18:20:57 +02:00
return r.codec
}
2015-12-02 22:56:50 +02:00
func (r *rpcRequest) ContentType() string {
return r.contentType
}
func (r *rpcRequest) Service() string {
return r.service
}
2019-01-18 12:12:57 +02:00
func (r *rpcRequest) Method() string {
return r.method
}
2019-01-10 23:25:31 +02:00
func (r *rpcRequest) Endpoint() string {
return r.endpoint
2015-12-02 22:56:50 +02:00
}
2019-01-09 21:11:47 +02:00
func (r *rpcRequest) Header() map[string]string {
return r.header
}
2019-02-04 15:13:03 +02:00
func (r *rpcRequest) Body() interface{} {
2019-06-07 16:15:22 +02:00
return r.rawBody
2019-02-04 15:13:03 +02:00
}
2019-01-09 21:11:47 +02:00
func (r *rpcRequest) Read() ([]byte, error) {
// got a body
2019-08-11 19:11:33 +02:00
if r.first {
2019-01-09 21:11:47 +02:00
b := r.body
2019-08-11 19:11:33 +02:00
r.first = false
2019-01-09 21:11:47 +02:00
return b, nil
}
var msg transport.Message
err := r.socket.Recv(&msg)
if err != nil {
return nil, err
}
r.header = msg.Header
return msg.Body, nil
2015-12-02 22:56:50 +02:00
}
func (r *rpcRequest) Stream() bool {
return r.stream
}
2018-04-14 19:21:02 +02:00
func (r *rpcMessage) ContentType() string {
2015-12-02 22:56:50 +02:00
return r.contentType
}
2018-04-14 19:21:02 +02:00
func (r *rpcMessage) Topic() string {
2015-12-02 22:56:50 +02:00
return r.topic
}
2018-04-14 19:21:02 +02:00
func (r *rpcMessage) Payload() interface{} {
return r.payload
2015-12-02 22:56:50 +02:00
}
func (r *rpcMessage) Header() map[string]string {
return r.header
}
func (r *rpcMessage) Body() []byte {
return r.body
}
func (r *rpcMessage) Codec() codec.Reader {
b := buf.New(bytes.NewBuffer(r.body))
return r.codec(b)
}