19 #ifndef GRPCPP_IMPL_CODEGEN_SERVER_CONTEXT_H 20 #define GRPCPP_IMPL_CODEGEN_SERVER_CONTEXT_H 42 struct census_context;
46 template <
class W,
class R>
47 class ServerAsyncReader;
49 class ServerAsyncWriter;
51 class ServerAsyncResponseWriter;
52 template <
class W,
class R>
53 class ServerAsyncReaderWriter;
59 template <
class W,
class R>
60 class ServerReaderWriterBody;
61 template <
class ServiceType,
class RequestType,
class ResponseType>
62 class RpcMethodHandler;
63 template <
class ServiceType,
class RequestType,
class ResponseType>
64 class ClientStreamingHandler;
65 template <
class ServiceType,
class RequestType,
class ResponseType>
66 class ServerStreamingHandler;
67 template <
class ServiceType,
class RequestType,
class ResponseType>
68 class BidiStreamingHandler;
69 template <
class RequestType,
class ResponseType>
70 class CallbackUnaryHandler;
71 template <
class RequestType,
class ResponseType>
72 class CallbackClientStreamingHandler;
73 template <
class RequestType,
class ResponseType>
74 class CallbackServerStreamingHandler;
75 template <
class RequestType,
class ResponseType>
76 class CallbackBidiHandler;
77 template <
class Streamer,
bool WriteNeeded>
78 class TemplatedBidiStreamingHandler;
79 template <StatusCode code>
80 class ErrorMethodHandler;
85 class CompletionQueue;
87 class ServerInterface;
90 class InteropServerContextInspector;
91 class ServerContextTestSpouse;
115 std::chrono::system_clock::time_point
deadline()
const {
167 bool IsCancelled()
const;
185 void TryCancel()
const;
198 return *client_metadata_.map();
203 return compression_level_;
210 compression_level_set_ =
true;
211 compression_level_ = level;
224 return compression_algorithm_;
232 void SetLoadReportingCosts(
const std::vector<grpc::string>& cost_data);
238 if (auth_context_.get() ==
nullptr) {
241 return auth_context_;
251 const struct census_context* census_context()
const;
259 has_notify_when_done_tag_ =
true;
260 async_notify_when_done_tag_ = tag;
268 friend class ::grpc::testing::InteropServerContextInspector;
269 friend class ::grpc::testing::ServerContextTestSpouse;
270 friend class ::grpc::ServerInterface;
271 friend class ::grpc::Server;
272 template <
class W,
class R>
273 friend class ::grpc::ServerAsyncReader;
275 friend class ::grpc::ServerAsyncWriter;
277 friend class ::grpc::ServerAsyncResponseWriter;
278 template <
class W,
class R>
279 friend class ::grpc::ServerAsyncReaderWriter;
281 friend class ::grpc::ServerReader;
283 friend class ::grpc::ServerWriter;
284 template <
class W,
class R>
285 friend class ::grpc::internal::ServerReaderWriterBody;
286 template <
class ServiceType,
class RequestType,
class ResponseType>
287 friend class ::grpc::internal::RpcMethodHandler;
288 template <
class ServiceType,
class RequestType,
class ResponseType>
289 friend class ::grpc::internal::ClientStreamingHandler;
290 template <
class ServiceType,
class RequestType,
class ResponseType>
291 friend class ::grpc::internal::ServerStreamingHandler;
292 template <
class Streamer,
bool WriteNeeded>
293 friend class ::grpc::internal::TemplatedBidiStreamingHandler;
294 template <
class RequestType,
class ResponseType>
295 friend class ::grpc::internal::CallbackUnaryHandler;
296 template <
class RequestType,
class ResponseType>
297 friend class ::grpc::internal::CallbackClientStreamingHandler;
298 template <
class RequestType,
class ResponseType>
299 friend class ::grpc::internal::CallbackServerStreamingHandler;
300 template <
class RequestType,
class ResponseType>
301 friend class ::grpc::internal::CallbackBidiHandler;
302 template <StatusCode code>
304 friend class ::grpc::ClientContext;
313 std::function<
void(
bool)> callback,
320 void set_call(
grpc_call* call) { call_ = call; }
328 uint32_t initial_metadata_flags()
const {
return 0; }
333 std::unique_ptr<experimental::ServerInterceptorFactoryInterface>>&
335 if (creators.size() != 0) {
337 rpc_info_->RegisterInterceptors(creators);
342 CompletionOp* completion_op_;
343 bool has_notify_when_done_tag_;
344 void* async_notify_when_done_tag_;
350 bool sent_initial_metadata_;
351 mutable std::shared_ptr<const AuthContext> auth_context_;
353 std::multimap<grpc::string, grpc::string> initial_metadata_;
354 std::multimap<grpc::string, grpc::string> trailing_metadata_;
356 bool compression_level_set_;
363 bool has_pending_ops_;
370 #endif // GRPCPP_IMPL_CODEGEN_SERVER_CONTEXT_H
struct grpc_call grpc_call
A Call represents an RPC.
Definition: grpc_types.h:70
std::shared_ptr< const AuthContext > CreateAuthContext(grpc_call *call)
std::string string
Definition: config.h:35
An interface allowing implementors to process and filter event tags.
Definition: completion_queue_tag.h:26
Primary implementation of CallOpSetInterface.
Definition: call_op_set.h:759
void set_compression_level(grpc_compression_level level)
Set level to be the compression level used for the server call.
Definition: server_context.h:209
grpc_compression_algorithm compression_algorithm() const
Return the compression algorithm the server call will request be used.
Definition: server_context.h:223
void AsyncNotifyWhenDone(void *tag)
Async only.
Definition: server_context.h:258
grpc_compression_level
Compression levels allow a party with knowledge of its peer's accepted encodings to request compressi...
Definition: compression_types.h:71
RpcType
Definition: rpc_method.h:31
const std::multimap< grpc::string_ref, grpc::string_ref > & client_metadata() const
Return a collection of initial metadata key-value pairs sent from the client.
Definition: server_context.h:196
grpc_compression_level compression_level() const
Return the compression algorithm to be used by the server call.
Definition: server_context.h:202
std::chrono::system_clock::time_point deadline() const
Return the deadline for the server call.
Definition: server_context.h:115
bool compression_level_set() const
Return a bool indicating whether the compression level for this call has been set (either implicitly ...
Definition: server_context.h:217
Definition: call_op_set.h:293
grpc_compression_algorithm
The various compression algorithms supported by gRPC (not sorted by compression level) ...
Definition: compression_types.h:57
ServerRpcInfo represents the state of a particular RPC as it appears to an interceptor.
Definition: server_interceptor.h:58
Definition: server_callback.h:40
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
A ServerContext allows the person implementing a service handler to:
Definition: server_context.h:109
gpr_timespec raw_deadline() const
Return a gpr_timespec representation of the server call's deadline.
Definition: server_context.h:120
A thin wrapper around grpc_completion_queue (see src/core/lib/surface/completion_queue.h).
Definition: completion_queue.h:95
CallbackWithSuccessTag can be reused multiple times, and will be used in this fashion for streaming o...
Definition: callback_common.h:132
std::shared_ptr< const AuthContext > auth_context() const
Return the authentication context for this server call.
Definition: server_context.h:237
General method handler class for errors that prevent real method use e.g., handle unknown method by r...
Definition: byte_buffer.h:53
Analogous to struct timespec.
Definition: gpr_types.h:47
std::chrono::system_clock::time_point Timespec2Timepoint(gpr_timespec t)
grpc_call * c_call()
Should be used for framework-level extensions only.
Definition: server_context.h:265
Straightforward wrapping of the C call object.
Definition: call.h:36