2019-06-03 20:44:43 +03:00
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
2020-11-26 01:17:21 +03:00
|
|
|
"io"
|
|
|
|
|
2021-10-27 01:00:27 +03:00
|
|
|
"go.unistack.org/micro/v3/codec"
|
|
|
|
"go.unistack.org/micro/v3/metadata"
|
|
|
|
"go.unistack.org/micro/v3/server"
|
2021-04-26 19:04:27 +03:00
|
|
|
)
|
|
|
|
|
2024-04-06 22:32:12 +03:00
|
|
|
var _ server.Request = &rpcRequest{}
|
2019-06-03 20:44:43 +03:00
|
|
|
|
|
|
|
type rpcRequest struct {
|
2020-11-26 01:17:21 +03:00
|
|
|
rw io.ReadWriter
|
2021-04-26 19:04:27 +03:00
|
|
|
payload interface{}
|
|
|
|
codec codec.Codec
|
|
|
|
header metadata.Metadata
|
2019-06-03 20:44:43 +03:00
|
|
|
method string
|
2020-11-26 01:17:21 +03:00
|
|
|
endpoint string
|
2019-06-03 20:44:43 +03:00
|
|
|
contentType string
|
2021-04-26 19:04:27 +03:00
|
|
|
service string
|
2019-06-03 20:44:43 +03:00
|
|
|
stream bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) ContentType() string {
|
|
|
|
return r.contentType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) Service() string {
|
|
|
|
return r.service
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) Method() string {
|
|
|
|
return r.method
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) Endpoint() string {
|
2021-04-26 19:04:27 +03:00
|
|
|
return r.endpoint
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|
|
|
|
|
2020-11-26 01:17:21 +03:00
|
|
|
func (r *rpcRequest) Codec() codec.Codec {
|
2019-06-03 20:44:43 +03:00
|
|
|
return r.codec
|
|
|
|
}
|
|
|
|
|
2020-11-18 12:27:44 +03:00
|
|
|
func (r *rpcRequest) Header() metadata.Metadata {
|
2019-06-03 20:44:43 +03:00
|
|
|
return r.header
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) Read() ([]byte, error) {
|
2020-11-26 01:17:21 +03:00
|
|
|
f := &codec.Frame{}
|
|
|
|
if err := r.codec.ReadBody(r.rw, f); err != nil {
|
2019-06-18 20:51:52 +03:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return f.Data, nil
|
2019-06-03 20:44:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) Stream() bool {
|
|
|
|
return r.stream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rpcRequest) Body() interface{} {
|
|
|
|
return r.payload
|
|
|
|
}
|