GRPC C++  1.62.0
client_interceptor.h
Go to the documentation of this file.
1 //
2 //
3 // Copyright 2015 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18 
19 #ifndef GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H
20 #define GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H
21 
22 #include <memory>
23 #include <vector>
24 
25 #include <grpc/support/log.h>
26 #include <grpcpp/impl/rpc_method.h>
29 
30 namespace grpc {
31 
32 class Channel;
33 class ClientContext;
34 
35 namespace internal {
36 class InterceptorBatchMethodsImpl;
37 }
38 
39 namespace experimental {
40 class ClientRpcInfo;
41 
42 // A factory interface for creation of client interceptors. A vector of
43 // factories can be provided at channel creation which will be used to create a
44 // new vector of client interceptors per RPC. Client interceptor authors should
45 // create a subclass of ClientInterceptorFactorInterface which creates objects
46 // of their interceptors.
48  public:
50  // Returns a pointer to an Interceptor object on successful creation, nullptr
51  // otherwise. If nullptr is returned, this server interceptor factory is
52  // ignored for the purposes of that RPC.
54 };
55 } // namespace experimental
56 
57 namespace internal {
58 extern experimental::ClientInterceptorFactoryInterface*
60 
61 extern experimental::ClientInterceptorFactoryInterface*
63 } // namespace internal
64 
69 namespace experimental {
71  public:
72  // TODO(yashykt): Stop default-constructing ClientRpcInfo and remove UNKNOWN
73  // from the list of possible Types.
75  enum class Type {
76  UNARY,
80  UNKNOWN // UNKNOWN is not API and will be removed later
81  };
82 
84 
85  // Delete copy constructor but allow default move constructor
86  ClientRpcInfo(const ClientRpcInfo&) = delete;
87  ClientRpcInfo(ClientRpcInfo&&) = default;
88 
89  // Getter methods
90 
92  const char* method() const { return method_; }
93 
96  const char* suffix_for_stats() const { return suffix_for_stats_; }
97 
99  ChannelInterface* channel() { return channel_; }
100 
104 
106  Type type() const { return type_; }
107 
108  private:
109  static_assert(Type::UNARY ==
111  "violated expectation about Type enum");
112  static_assert(Type::CLIENT_STREAMING ==
114  "violated expectation about Type enum");
115  static_assert(Type::SERVER_STREAMING ==
117  "violated expectation about Type enum");
118  static_assert(Type::BIDI_STREAMING ==
120  "violated expectation about Type enum");
121 
122  // Default constructor should only be used by ClientContext
123  ClientRpcInfo() = default;
124 
125  // Constructor will only be called from ClientContext
127  const char* method, const char* suffix_for_stats,
129  : ctx_(ctx),
130  type_(static_cast<Type>(type)),
131  method_(method),
132  suffix_for_stats_(suffix_for_stats),
133  channel_(channel) {}
134 
135  // Move assignment should only be used by ClientContext
136  // TODO(yashykt): Delete move assignment
137  ClientRpcInfo& operator=(ClientRpcInfo&&) = default;
138 
139  // Runs interceptor at pos \a pos.
140  void RunInterceptor(
141  experimental::InterceptorBatchMethods* interceptor_methods, size_t pos) {
142  GPR_ASSERT(pos < interceptors_.size());
143  interceptors_[pos]->Intercept(interceptor_methods);
144  }
145 
146  void RegisterInterceptors(
147  const std::vector<std::unique_ptr<
148  experimental::ClientInterceptorFactoryInterface>>& creators,
149  size_t interceptor_pos) {
150  // TODO(yashykt): This calculation seems broken for the case where an
151  // interceptor factor returns nullptr.
152  size_t num_interceptors =
153  creators.size() +
156  if (interceptor_pos > num_interceptors) {
157  // No interceptors to register
158  return;
159  }
161  interceptors_.push_back(std::unique_ptr<experimental::Interceptor>(
163  ->CreateClientInterceptor(this)));
164  --interceptor_pos;
165  }
166  // NOTE: The following is not a range-based for loop because it will only
167  // iterate over a portion of the creators vector.
168  for (auto it = creators.begin() + interceptor_pos; it != creators.end();
169  ++it) {
170  auto* interceptor = (*it)->CreateClientInterceptor(this);
171  if (interceptor != nullptr) {
172  interceptors_.push_back(
173  std::unique_ptr<experimental::Interceptor>(interceptor));
174  }
175  }
177  interceptors_.push_back(std::unique_ptr<experimental::Interceptor>(
179  ->CreateClientInterceptor(this)));
180  }
181  }
182 
183  grpc::ClientContext* ctx_ = nullptr;
184  // TODO(yashykt): make type_ const once move-assignment is deleted
185  Type type_{Type::UNKNOWN};
186  const char* method_ = nullptr;
187  const char* suffix_for_stats_ = nullptr;
188  grpc::ChannelInterface* channel_ = nullptr;
189  std::vector<std::unique_ptr<experimental::Interceptor>> interceptors_;
190  bool hijacked_ = false;
191  size_t hijacked_interceptor_ = 0;
192 
194  friend class grpc::ClientContext;
195 };
196 
197 // PLEASE DO NOT USE THIS. ALWAYS PREFER PER CHANNEL INTERCEPTORS OVER A GLOBAL
198 // INTERCEPTOR. IF USAGE IS ABSOLUTELY NECESSARY, PLEASE READ THE SAFETY NOTES.
199 // Registers a global client interceptor factory object, which is used for all
200 // RPCs made in this process. The application is responsible for maintaining the
201 // life of the object while gRPC operations are in progress. The global
202 // interceptor factory should only be registered once at the start of the
203 // process before any gRPC operations have begun.
206 
207 // For testing purposes only
209 
210 } // namespace experimental
211 } // namespace grpc
212 
213 #endif // GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H
grpc::experimental::ClientRpcInfo::type
Type type() const
Return the type of the RPC (unary or a streaming flavor)
Definition: client_interceptor.h:106
interceptor.h
grpc
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
grpc::internal::g_global_client_stats_interceptor_factory
experimental::ClientInterceptorFactoryInterface * g_global_client_stats_interceptor_factory
grpc::experimental::ClientRpcInfo::method
const char * method() const
Return the fully-specified method name.
Definition: client_interceptor.h:92
GPR_ASSERT
#define GPR_ASSERT(x)
abort() the process if x is zero, having written a line to the log.
Definition: log.h:95
rpc_method.h
grpc::experimental::ClientRpcInfo::Type
Type
Type categorizes RPCs by unary or streaming type.
Definition: client_interceptor.h:75
grpc::internal::RpcMethod::CLIENT_STREAMING
@ CLIENT_STREAMING
Definition: rpc_method.h:33
grpc::experimental::ClientRpcInfo::suffix_for_stats
const char * suffix_for_stats() const
Return an identifying suffix for the client stub, or nullptr if one wasn't specified.
Definition: client_interceptor.h:96
grpc::experimental::ClientRpcInfo
Definition: client_interceptor.h:70
grpc::internal::g_global_client_interceptor_factory
experimental::ClientInterceptorFactoryInterface * g_global_client_interceptor_factory
log.h
grpc::internal::RpcMethod::BIDI_STREAMING
@ BIDI_STREAMING
Definition: rpc_method.h:35
grpc::experimental::ClientInterceptorFactoryInterface::~ClientInterceptorFactoryInterface
virtual ~ClientInterceptorFactoryInterface()
Definition: client_interceptor.h:49
grpc::ClientContext
A ClientContext allows the person implementing a service client to:
Definition: client_context.h:193
grpc::experimental::RegisterGlobalClientInterceptorFactory
void RegisterGlobalClientInterceptorFactory(ClientInterceptorFactoryInterface *factory)
grpc::experimental::ClientRpcInfo::~ClientRpcInfo
~ClientRpcInfo()
Definition: client_interceptor.h:83
grpc::experimental::ClientRpcInfo::Type::SERVER_STREAMING
@ SERVER_STREAMING
grpc::experimental::ClientRpcInfo::Type::BIDI_STREAMING
@ BIDI_STREAMING
grpc::experimental::ClientRpcInfo::Type::UNARY
@ UNARY
grpc::experimental::ClientRpcInfo::client_context
grpc::ClientContext * client_context()
Return a pointer to the underlying ClientContext structure associated with the RPC to support feature...
Definition: client_interceptor.h:103
grpc::ChannelInterface
Codegen interface for grpc::Channel.
Definition: channel_interface.h:71
grpc::experimental::ClientRpcInfo::channel
ChannelInterface * channel()
Return a pointer to the channel on which the RPC is being sent.
Definition: client_interceptor.h:99
grpc::internal::RpcMethod::SERVER_STREAMING
@ SERVER_STREAMING
Definition: rpc_method.h:34
grpc::experimental::ClientInterceptorFactoryInterface::CreateClientInterceptor
virtual Interceptor * CreateClientInterceptor(ClientRpcInfo *info)=0
grpc::internal::RpcMethod::RpcType
RpcType
Definition: rpc_method.h:31
grpc::internal::RpcMethod::NORMAL_RPC
@ NORMAL_RPC
Definition: rpc_method.h:32
grpc::experimental::Interceptor
Interface for an interceptor.
Definition: interceptor.h:218
grpc::experimental::ClientInterceptorFactoryInterface
Definition: client_interceptor.h:47
grpc::experimental::InterceptorBatchMethods
Class that is passed as an argument to the Intercept method of the application's Interceptor interfac...
Definition: interceptor.h:95
grpc::experimental::ClientRpcInfo::Type::CLIENT_STREAMING
@ CLIENT_STREAMING
grpc::experimental::ClientRpcInfo::Type::UNKNOWN
@ UNKNOWN
grpc::internal::InterceptorBatchMethodsImpl
Definition: interceptor_common.h:36
string_ref.h
grpc::experimental::TestOnlyResetGlobalClientInterceptorFactory
void TestOnlyResetGlobalClientInterceptorFactory()