2017-01-26 15:51:44 +00:00
|
|
|
/*
|
|
|
|
*
|
2017-09-30 16:47:47 +00:00
|
|
|
* Copyright 2016 gRPC authors.
|
2017-01-26 15:51:44 +00:00
|
|
|
*
|
2017-09-30 16:47:47 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2017-01-26 15:51:44 +00:00
|
|
|
*
|
2017-09-30 16:47:47 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2017-01-26 15:51:44 +00:00
|
|
|
*
|
2017-09-30 16:47:47 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2017-01-26 15:51:44 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UnaryInvoker is called by UnaryClientInterceptor to complete RPCs.
|
|
|
|
type UnaryInvoker func(ctx context.Context, method string, req, reply interface{}, cc *ClientConn, opts ...CallOption) error
|
|
|
|
|
2017-09-30 16:47:47 +00:00
|
|
|
// UnaryClientInterceptor intercepts the execution of a unary RPC on the client. invoker is the handler to complete the RPC
|
2017-01-26 15:51:44 +00:00
|
|
|
// and it is the responsibility of the interceptor to call it.
|
2017-09-30 16:47:47 +00:00
|
|
|
// This is an EXPERIMENTAL API.
|
2017-01-26 15:51:44 +00:00
|
|
|
type UnaryClientInterceptor func(ctx context.Context, method string, req, reply interface{}, cc *ClientConn, invoker UnaryInvoker, opts ...CallOption) error
|
|
|
|
|
|
|
|
// Streamer is called by StreamClientInterceptor to create a ClientStream.
|
|
|
|
type Streamer func(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...CallOption) (ClientStream, error)
|
|
|
|
|
|
|
|
// StreamClientInterceptor intercepts the creation of ClientStream. It may return a custom ClientStream to intercept all I/O
|
2017-09-30 16:47:47 +00:00
|
|
|
// operations. streamer is the handler to create a ClientStream and it is the responsibility of the interceptor to call it.
|
|
|
|
// This is an EXPERIMENTAL API.
|
2017-01-26 15:51:44 +00:00
|
|
|
type StreamClientInterceptor func(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, streamer Streamer, opts ...CallOption) (ClientStream, error)
|
|
|
|
|
|
|
|
// UnaryServerInfo consists of various information about a unary RPC on
|
|
|
|
// server side. All per-rpc information may be mutated by the interceptor.
|
|
|
|
type UnaryServerInfo struct {
|
|
|
|
// Server is the service implementation the user provides. This is read-only.
|
|
|
|
Server interface{}
|
|
|
|
// FullMethod is the full RPC method string, i.e., /package.service/method.
|
|
|
|
FullMethod string
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnaryHandler defines the handler invoked by UnaryServerInterceptor to complete the normal
|
|
|
|
// execution of a unary RPC.
|
|
|
|
type UnaryHandler func(ctx context.Context, req interface{}) (interface{}, error)
|
|
|
|
|
|
|
|
// UnaryServerInterceptor provides a hook to intercept the execution of a unary RPC on the server. info
|
|
|
|
// contains all the information of this RPC the interceptor can operate on. And handler is the wrapper
|
|
|
|
// of the service method implementation. It is the responsibility of the interceptor to invoke handler
|
|
|
|
// to complete the RPC.
|
|
|
|
type UnaryServerInterceptor func(ctx context.Context, req interface{}, info *UnaryServerInfo, handler UnaryHandler) (resp interface{}, err error)
|
|
|
|
|
|
|
|
// StreamServerInfo consists of various information about a streaming RPC on
|
|
|
|
// server side. All per-rpc information may be mutated by the interceptor.
|
|
|
|
type StreamServerInfo struct {
|
|
|
|
// FullMethod is the full RPC method string, i.e., /package.service/method.
|
|
|
|
FullMethod string
|
|
|
|
// IsClientStream indicates whether the RPC is a client streaming RPC.
|
|
|
|
IsClientStream bool
|
|
|
|
// IsServerStream indicates whether the RPC is a server streaming RPC.
|
|
|
|
IsServerStream bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// StreamServerInterceptor provides a hook to intercept the execution of a streaming RPC on the server.
|
|
|
|
// info contains all the information of this RPC the interceptor can operate on. And handler is the
|
|
|
|
// service method implementation. It is the responsibility of the interceptor to invoke handler to
|
|
|
|
// complete the RPC.
|
|
|
|
type StreamServerInterceptor func(srv interface{}, ss ServerStream, info *StreamServerInfo, handler StreamHandler) error
|