// // // Copyright 2015 gRPC authors. // // 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // 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. // // #ifndef GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H #define GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H #include <memory> #include <vector> #include <grpc/support/log.h> #include <grpcpp/impl/rpc_method.h> #include <grpcpp/support/interceptor.h> #include <grpcpp/support/string_ref.h> namespace grpc { class Channel; class ClientContext; namespace internal { class InterceptorBatchMethodsImpl; } namespace experimental { class ClientRpcInfo; // A factory interface for creation of client interceptors. A vector of // factories can be provided at channel creation which will be used to create a // new vector of client interceptors per RPC. Client interceptor authors should // create a subclass of ClientInterceptorFactorInterface which creates objects // of their interceptors. class ClientInterceptorFactoryInterface { … }; } // namespace experimental namespace internal { extern experimental::ClientInterceptorFactoryInterface* g_global_client_interceptor_factory; } /// ClientRpcInfo represents the state of a particular RPC as it /// appears to an interceptor. It is created and owned by the library and /// passed to the CreateClientInterceptor method of the application's /// ClientInterceptorFactoryInterface implementation namespace experimental { class ClientRpcInfo { … }; // PLEASE DO NOT USE THIS. ALWAYS PREFER PER CHANNEL INTERCEPTORS OVER A GLOBAL // INTERCEPTOR. IF USAGE IS ABSOLUTELY NECESSARY, PLEASE READ THE SAFETY NOTES. // Registers a global client interceptor factory object, which is used for all // RPCs made in this process. The application is responsible for maintaining the // life of the object while gRPC operations are in progress. The global // interceptor factory should only be registered once at the start of the // process before any gRPC operations have begun. void RegisterGlobalClientInterceptorFactory( ClientInterceptorFactoryInterface* factory); // For testing purposes only void TestOnlyResetGlobalClientInterceptorFactory(); } // namespace experimental } // namespace grpc #endif // GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H