GRPC C++  1.30.0
call_op_set.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2018 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_IMPL_CODEGEN_CALL_OP_SET_H
20 #define GRPCPP_IMPL_CODEGEN_CALL_OP_SET_H
21 
22 #include <cstring>
23 #include <map>
24 #include <memory>
25 
42 
43 namespace grpc {
44 
45 extern CoreCodegenInterface* g_core_codegen_interface;
46 
47 namespace internal {
48 class Call;
49 class CallHook;
50 
51 // TODO(yangg) if the map is changed before we send, the pointers will be a
52 // mess. Make sure it does not happen.
54  const std::multimap<grpc::string, grpc::string>& metadata,
55  size_t* metadata_count, const grpc::string& optional_error_details) {
56  *metadata_count = metadata.size() + (optional_error_details.empty() ? 0 : 1);
57  if (*metadata_count == 0) {
58  return nullptr;
59  }
60  grpc_metadata* metadata_array =
62  (*metadata_count) * sizeof(grpc_metadata)));
63  size_t i = 0;
64  for (auto iter = metadata.cbegin(); iter != metadata.cend(); ++iter, ++i) {
65  metadata_array[i].key = SliceReferencingString(iter->first);
66  metadata_array[i].value = SliceReferencingString(iter->second);
67  }
68  if (!optional_error_details.empty()) {
69  metadata_array[i].key =
72  metadata_array[i].value = SliceReferencingString(optional_error_details);
73  }
74  return metadata_array;
75 }
76 } // namespace internal
77 
79 class WriteOptions {
80  public:
81  WriteOptions() : flags_(0), last_message_(false) {}
82  WriteOptions(const WriteOptions& other)
83  : flags_(other.flags_), last_message_(other.last_message_) {}
84 
86  WriteOptions& operator=(const WriteOptions& other) = default;
87 
89  inline void Clear() { flags_ = 0; }
90 
92  inline uint32_t flags() const { return flags_; }
93 
98  SetBit(GRPC_WRITE_NO_COMPRESS);
99  return *this;
100  }
101 
106  ClearBit(GRPC_WRITE_NO_COMPRESS);
107  return *this;
108  }
109 
114  inline bool get_no_compression() const {
115  return GetBit(GRPC_WRITE_NO_COMPRESS);
116  }
117 
123  SetBit(GRPC_WRITE_BUFFER_HINT);
124  return *this;
125  }
126 
132  ClearBit(GRPC_WRITE_BUFFER_HINT);
133  return *this;
134  }
135 
140  inline bool get_buffer_hint() const { return GetBit(GRPC_WRITE_BUFFER_HINT); }
141 
145  SetBit(GRPC_WRITE_BUFFER_HINT);
146  return *this;
147  }
148 
150  ClearBit(GRPC_WRITE_BUFFER_HINT);
151  return *this;
152  }
153 
154  inline bool is_corked() const { return GetBit(GRPC_WRITE_BUFFER_HINT); }
155 
162  last_message_ = true;
163  return *this;
164  }
165 
169  last_message_ = false;
170  return *this;
171  }
172 
176  SetBit(GRPC_WRITE_THROUGH);
177  return *this;
178  }
179 
180  inline bool is_write_through() const { return GetBit(GRPC_WRITE_THROUGH); }
181 
186  bool is_last_message() const { return last_message_; }
187 
188  private:
189  void SetBit(const uint32_t mask) { flags_ |= mask; }
190 
191  void ClearBit(const uint32_t mask) { flags_ &= ~mask; }
192 
193  bool GetBit(const uint32_t mask) const { return (flags_ & mask) != 0; }
194 
195  uint32_t flags_;
196  bool last_message_;
197 };
198 
199 namespace internal {
200 
203 template <int I>
204 class CallNoOp {
205  protected:
206  void AddOp(grpc_op* /*ops*/, size_t* /*nops*/) {}
207  void FinishOp(bool* /*status*/) {}
209  InterceptorBatchMethodsImpl* /*interceptor_methods*/) {}
211  InterceptorBatchMethodsImpl* /*interceptor_methods*/) {}
212  void SetHijackingState(InterceptorBatchMethodsImpl* /*interceptor_methods*/) {
213  }
214 };
215 
217  public:
219  maybe_compression_level_.is_set = false;
220  }
221 
222  void SendInitialMetadata(std::multimap<grpc::string, grpc::string>* metadata,
223  uint32_t flags) {
224  maybe_compression_level_.is_set = false;
225  send_ = true;
226  flags_ = flags;
227  metadata_map_ = metadata;
228  }
229 
231  maybe_compression_level_.is_set = true;
233  }
234 
235  protected:
236  void AddOp(grpc_op* ops, size_t* nops) {
237  if (!send_ || hijacked_) return;
238  grpc_op* op = &ops[(*nops)++];
240  op->flags = flags_;
241  op->reserved = NULL;
248  if (maybe_compression_level_.is_set) {
251  }
252  }
253  void FinishOp(bool* /*status*/) {
254  if (!send_ || hijacked_) return;
256  send_ = false;
257  }
258 
260  InterceptorBatchMethodsImpl* interceptor_methods) {
261  if (!send_) return;
262  interceptor_methods->AddInterceptionHookPoint(
264  interceptor_methods->SetSendInitialMetadata(metadata_map_);
265  }
266 
268  InterceptorBatchMethodsImpl* /*interceptor_methods*/) {}
269 
270  void SetHijackingState(InterceptorBatchMethodsImpl* /*interceptor_methods*/) {
271  hijacked_ = true;
272  }
273 
274  bool hijacked_ = false;
275  bool send_;
276  uint32_t flags_;
278  std::multimap<grpc::string, grpc::string>* metadata_map_;
280  struct {
281  bool is_set;
284 };
285 
287  public:
288  CallOpSendMessage() : send_buf_() {}
289 
292  template <class M>
293  Status SendMessage(const M& message,
295 
296  template <class M>
297  Status SendMessage(const M& message) GRPC_MUST_USE_RESULT;
298 
302  template <class M>
303  Status SendMessagePtr(const M* message,
305 
308  template <class M>
309  Status SendMessagePtr(const M* message) GRPC_MUST_USE_RESULT;
310 
311  protected:
312  void AddOp(grpc_op* ops, size_t* nops) {
313  if (msg_ == nullptr && !send_buf_.Valid()) return;
314  if (hijacked_) {
315  serializer_ = nullptr;
316  return;
317  }
318  if (msg_ != nullptr) {
319  GPR_CODEGEN_ASSERT(serializer_(msg_).ok());
320  }
321  serializer_ = nullptr;
322  grpc_op* op = &ops[(*nops)++];
323  op->op = GRPC_OP_SEND_MESSAGE;
324  op->flags = write_options_.flags();
325  op->reserved = NULL;
326  op->data.send_message.send_message = send_buf_.c_buffer();
327  // Flags are per-message: clear them after use.
328  write_options_.Clear();
329  }
330  void FinishOp(bool* status) {
331  if (msg_ == nullptr && !send_buf_.Valid()) return;
332  if (hijacked_ && failed_send_) {
333  // Hijacking interceptor failed this Op
334  *status = false;
335  } else if (!*status) {
336  // This Op was passed down to core and the Op failed
337  failed_send_ = true;
338  }
339  }
340 
342  InterceptorBatchMethodsImpl* interceptor_methods) {
343  if (msg_ == nullptr && !send_buf_.Valid()) return;
344  interceptor_methods->AddInterceptionHookPoint(
346  interceptor_methods->SetSendMessage(&send_buf_, &msg_, &failed_send_,
347  serializer_);
348  }
349 
351  InterceptorBatchMethodsImpl* interceptor_methods) {
352  if (msg_ != nullptr || send_buf_.Valid()) {
353  interceptor_methods->AddInterceptionHookPoint(
355  }
356  send_buf_.Clear();
357  msg_ = nullptr;
358  // The contents of the SendMessage value that was previously set
359  // has had its references stolen by core's operations
360  interceptor_methods->SetSendMessage(nullptr, nullptr, &failed_send_,
361  nullptr);
362  }
363 
364  void SetHijackingState(InterceptorBatchMethodsImpl* /*interceptor_methods*/) {
365  hijacked_ = true;
366  }
367 
368  private:
369  const void* msg_ = nullptr; // The original non-serialized message
370  bool hijacked_ = false;
371  bool failed_send_ = false;
372  ByteBuffer send_buf_;
373  WriteOptions write_options_;
374  std::function<Status(const void*)> serializer_;
375 };
376 
377 template <class M>
379  write_options_ = options;
380  serializer_ = [this](const void* message) {
381  bool own_buf;
382  send_buf_.Clear();
383  // TODO(vjpai): Remove the void below when possible
384  // The void in the template parameter below should not be needed
385  // (since it should be implicit) but is needed due to an observed
386  // difference in behavior between clang and gcc for certain internal users
388  *static_cast<const M*>(message), send_buf_.bbuf_ptr(), &own_buf);
389  if (!own_buf) {
390  send_buf_.Duplicate();
391  }
392  return result;
393  };
394  // Serialize immediately only if we do not have access to the message pointer
395  if (msg_ == nullptr) {
396  Status result = serializer_(&message);
397  serializer_ = nullptr;
398  return result;
399  }
400  return Status();
401 }
402 
403 template <class M>
405  return SendMessage(message, WriteOptions());
406 }
407 
408 template <class M>
410  WriteOptions options) {
411  msg_ = message;
412  return SendMessage(*message, options);
413 }
414 
415 template <class M>
417  msg_ = message;
418  return SendMessage(*message, WriteOptions());
419 }
420 
421 template <class R>
422 class CallOpRecvMessage {
423  public:
424  void RecvMessage(R* message) { message_ = message; }
425 
426  // Do not change status if no message is received.
427  void AllowNoMessage() { allow_not_getting_message_ = true; }
428 
429  bool got_message = false;
430 
431  protected:
432  void AddOp(grpc_op* ops, size_t* nops) {
433  if (message_ == nullptr || hijacked_) return;
434  grpc_op* op = &ops[(*nops)++];
435  op->op = GRPC_OP_RECV_MESSAGE;
436  op->flags = 0;
437  op->reserved = NULL;
438  op->data.recv_message.recv_message = recv_buf_.c_buffer_ptr();
439  }
440 
441  void FinishOp(bool* status) {
442  if (message_ == nullptr) return;
443  if (recv_buf_.Valid()) {
444  if (*status) {
445  got_message = *status =
446  SerializationTraits<R>::Deserialize(recv_buf_.bbuf_ptr(), message_)
447  .ok();
448  recv_buf_.Release();
449  } else {
450  got_message = false;
451  recv_buf_.Clear();
452  }
453  } else if (hijacked_) {
454  if (hijacked_recv_message_failed_) {
455  FinishOpRecvMessageFailureHandler(status);
456  } else {
457  // The op was hijacked and it was successful. There is no further action
458  // to be performed since the message is already in its non-serialized
459  // form.
460  }
461  } else {
462  FinishOpRecvMessageFailureHandler(status);
463  }
464  }
465 
467  InterceptorBatchMethodsImpl* interceptor_methods) {
468  if (message_ == nullptr) return;
469  interceptor_methods->SetRecvMessage(message_,
470  &hijacked_recv_message_failed_);
471  }
472 
474  InterceptorBatchMethodsImpl* interceptor_methods) {
475  if (message_ == nullptr) return;
476  interceptor_methods->AddInterceptionHookPoint(
478  if (!got_message) interceptor_methods->SetRecvMessage(nullptr, nullptr);
479  }
480  void SetHijackingState(InterceptorBatchMethodsImpl* interceptor_methods) {
481  hijacked_ = true;
482  if (message_ == nullptr) return;
483  interceptor_methods->AddInterceptionHookPoint(
485  got_message = true;
486  }
487 
488  private:
489  // Sets got_message and \a status for a failed recv message op
490  void FinishOpRecvMessageFailureHandler(bool* status) {
491  got_message = false;
492  if (!allow_not_getting_message_) {
493  *status = false;
494  }
495  }
496 
497  R* message_ = nullptr;
498  ByteBuffer recv_buf_;
499  bool allow_not_getting_message_ = false;
500  bool hijacked_ = false;
501  bool hijacked_recv_message_failed_ = false;
502 };
503 
505  public:
506  virtual Status Deserialize(ByteBuffer* buf) = 0;
507  virtual ~DeserializeFunc() {}
508 };
509 
510 template <class R>
511 class DeserializeFuncType final : public DeserializeFunc {
512  public:
513  DeserializeFuncType(R* message) : message_(message) {}
514  Status Deserialize(ByteBuffer* buf) override {
515  return SerializationTraits<R>::Deserialize(buf->bbuf_ptr(), message_);
516  }
517 
518  ~DeserializeFuncType() override {}
519 
520  private:
521  R* message_; // Not a managed pointer because management is external to this
522 };
523 
525  public:
526  template <class R>
527  void RecvMessage(R* message) {
528  // Use an explicit base class pointer to avoid resolution error in the
529  // following unique_ptr::reset for some old implementations.
530  DeserializeFunc* func = new DeserializeFuncType<R>(message);
531  deserialize_.reset(func);
532  message_ = message;
533  }
534 
535  // Do not change status if no message is received.
536  void AllowNoMessage() { allow_not_getting_message_ = true; }
537 
538  bool got_message = false;
539 
540  protected:
541  void AddOp(grpc_op* ops, size_t* nops) {
542  if (!deserialize_ || hijacked_) return;
543  grpc_op* op = &ops[(*nops)++];
544  op->op = GRPC_OP_RECV_MESSAGE;
545  op->flags = 0;
546  op->reserved = NULL;
547  op->data.recv_message.recv_message = recv_buf_.c_buffer_ptr();
548  }
549 
550  void FinishOp(bool* status) {
551  if (!deserialize_ || hijacked_) return;
552  if (recv_buf_.Valid()) {
553  if (*status) {
554  got_message = true;
555  *status = deserialize_->Deserialize(&recv_buf_).ok();
556  recv_buf_.Release();
557  } else {
558  got_message = false;
559  recv_buf_.Clear();
560  }
561  } else if (hijacked_) {
562  if (hijacked_recv_message_failed_) {
563  FinishOpRecvMessageFailureHandler(status);
564  } else {
565  // The op was hijacked and it was successful. There is no further action
566  // to be performed since the message is already in its non-serialized
567  // form.
568  }
569  } else {
570  got_message = false;
571  if (!allow_not_getting_message_) {
572  *status = false;
573  }
574  }
575  }
576 
578  InterceptorBatchMethodsImpl* interceptor_methods) {
579  if (!deserialize_) return;
580  interceptor_methods->SetRecvMessage(message_,
581  &hijacked_recv_message_failed_);
582  }
583 
585  InterceptorBatchMethodsImpl* interceptor_methods) {
586  if (!deserialize_) return;
587  interceptor_methods->AddInterceptionHookPoint(
589  if (!got_message) interceptor_methods->SetRecvMessage(nullptr, nullptr);
590  deserialize_.reset();
591  }
592  void SetHijackingState(InterceptorBatchMethodsImpl* interceptor_methods) {
593  hijacked_ = true;
594  if (!deserialize_) return;
595  interceptor_methods->AddInterceptionHookPoint(
597  got_message = true;
598  }
599 
600  private:
601  // Sets got_message and \a status for a failed recv message op
602  void FinishOpRecvMessageFailureHandler(bool* status) {
603  got_message = false;
604  if (!allow_not_getting_message_) {
605  *status = false;
606  }
607  }
608 
609  void* message_ = nullptr;
610  std::unique_ptr<DeserializeFunc> deserialize_;
611  ByteBuffer recv_buf_;
612  bool allow_not_getting_message_ = false;
613  bool hijacked_ = false;
614  bool hijacked_recv_message_failed_ = false;
615 };
616 
618  public:
619  CallOpClientSendClose() : send_(false) {}
620 
621  void ClientSendClose() { send_ = true; }
622 
623  protected:
624  void AddOp(grpc_op* ops, size_t* nops) {
625  if (!send_ || hijacked_) return;
626  grpc_op* op = &ops[(*nops)++];
628  op->flags = 0;
629  op->reserved = NULL;
630  }
631  void FinishOp(bool* /*status*/) { send_ = false; }
632 
634  InterceptorBatchMethodsImpl* interceptor_methods) {
635  if (!send_) return;
636  interceptor_methods->AddInterceptionHookPoint(
638  }
639 
641  InterceptorBatchMethodsImpl* /*interceptor_methods*/) {}
642 
643  void SetHijackingState(InterceptorBatchMethodsImpl* /*interceptor_methods*/) {
644  hijacked_ = true;
645  }
646 
647  private:
648  bool hijacked_ = false;
649  bool send_;
650 };
651 
653  public:
654  CallOpServerSendStatus() : send_status_available_(false) {}
655 
657  std::multimap<grpc::string, grpc::string>* trailing_metadata,
658  const Status& status) {
659  send_error_details_ = status.error_details();
660  metadata_map_ = trailing_metadata;
661  send_status_available_ = true;
662  send_status_code_ = static_cast<grpc_status_code>(status.error_code());
663  send_error_message_ = status.error_message();
664  }
665 
666  protected:
667  void AddOp(grpc_op* ops, size_t* nops) {
668  if (!send_status_available_ || hijacked_) return;
669  trailing_metadata_ = FillMetadataArray(
670  *metadata_map_, &trailing_metadata_count_, send_error_details_);
671  grpc_op* op = &ops[(*nops)++];
674  trailing_metadata_count_;
675  op->data.send_status_from_server.trailing_metadata = trailing_metadata_;
676  op->data.send_status_from_server.status = send_status_code_;
677  error_message_slice_ = SliceReferencingString(send_error_message_);
679  send_error_message_.empty() ? nullptr : &error_message_slice_;
680  op->flags = 0;
681  op->reserved = NULL;
682  }
683 
684  void FinishOp(bool* /*status*/) {
685  if (!send_status_available_ || hijacked_) return;
686  g_core_codegen_interface->gpr_free(trailing_metadata_);
687  send_status_available_ = false;
688  }
689 
691  InterceptorBatchMethodsImpl* interceptor_methods) {
692  if (!send_status_available_) return;
693  interceptor_methods->AddInterceptionHookPoint(
695  interceptor_methods->SetSendTrailingMetadata(metadata_map_);
696  interceptor_methods->SetSendStatus(&send_status_code_, &send_error_details_,
697  &send_error_message_);
698  }
699 
701  InterceptorBatchMethodsImpl* /*interceptor_methods*/) {}
702 
703  void SetHijackingState(InterceptorBatchMethodsImpl* /*interceptor_methods*/) {
704  hijacked_ = true;
705  }
706 
707  private:
708  bool hijacked_ = false;
709  bool send_status_available_;
710  grpc_status_code send_status_code_;
711  grpc::string send_error_details_;
712  grpc::string send_error_message_;
713  size_t trailing_metadata_count_;
714  std::multimap<grpc::string, grpc::string>* metadata_map_;
715  grpc_metadata* trailing_metadata_;
716  grpc_slice error_message_slice_;
717 };
718 
720  public:
721  CallOpRecvInitialMetadata() : metadata_map_(nullptr) {}
722 
724  context->initial_metadata_received_ = true;
725  metadata_map_ = &context->recv_initial_metadata_;
726  }
727 
728  protected:
729  void AddOp(grpc_op* ops, size_t* nops) {
730  if (metadata_map_ == nullptr || hijacked_) return;
731  grpc_op* op = &ops[(*nops)++];
733  op->data.recv_initial_metadata.recv_initial_metadata = metadata_map_->arr();
734  op->flags = 0;
735  op->reserved = NULL;
736  }
737 
738  void FinishOp(bool* /*status*/) {
739  if (metadata_map_ == nullptr || hijacked_) return;
740  }
741 
743  InterceptorBatchMethodsImpl* interceptor_methods) {
744  interceptor_methods->SetRecvInitialMetadata(metadata_map_);
745  }
746 
748  InterceptorBatchMethodsImpl* interceptor_methods) {
749  if (metadata_map_ == nullptr) return;
750  interceptor_methods->AddInterceptionHookPoint(
752  metadata_map_ = nullptr;
753  }
754 
755  void SetHijackingState(InterceptorBatchMethodsImpl* interceptor_methods) {
756  hijacked_ = true;
757  if (metadata_map_ == nullptr) return;
758  interceptor_methods->AddInterceptionHookPoint(
760  }
761 
762  private:
763  bool hijacked_ = false;
764  MetadataMap* metadata_map_;
765 };
766 
768  public:
770  : recv_status_(nullptr), debug_error_string_(nullptr) {}
771 
773  client_context_ = context;
774  metadata_map_ = &client_context_->trailing_metadata_;
775  recv_status_ = status;
776  error_message_ = g_core_codegen_interface->grpc_empty_slice();
777  }
778 
779  protected:
780  void AddOp(grpc_op* ops, size_t* nops) {
781  if (recv_status_ == nullptr || hijacked_) return;
782  grpc_op* op = &ops[(*nops)++];
784  op->data.recv_status_on_client.trailing_metadata = metadata_map_->arr();
785  op->data.recv_status_on_client.status = &status_code_;
786  op->data.recv_status_on_client.status_details = &error_message_;
787  op->data.recv_status_on_client.error_string = &debug_error_string_;
788  op->flags = 0;
789  op->reserved = NULL;
790  }
791 
792  void FinishOp(bool* /*status*/) {
793  if (recv_status_ == nullptr || hijacked_) return;
794  if (static_cast<StatusCode>(status_code_) == StatusCode::OK) {
795  *recv_status_ = Status();
796  GPR_CODEGEN_DEBUG_ASSERT(debug_error_string_ == nullptr);
797  } else {
798  *recv_status_ =
799  Status(static_cast<StatusCode>(status_code_),
800  GRPC_SLICE_IS_EMPTY(error_message_)
801  ? grpc::string()
802  : grpc::string(GRPC_SLICE_START_PTR(error_message_),
803  GRPC_SLICE_END_PTR(error_message_)),
804  metadata_map_->GetBinaryErrorDetails());
805  if (debug_error_string_ != nullptr) {
806  client_context_->set_debug_error_string(debug_error_string_);
807  g_core_codegen_interface->gpr_free((void*)debug_error_string_);
808  }
809  }
810  // TODO(soheil): Find callers that set debug string even for status OK,
811  // and fix them.
813  }
814 
816  InterceptorBatchMethodsImpl* interceptor_methods) {
817  interceptor_methods->SetRecvStatus(recv_status_);
818  interceptor_methods->SetRecvTrailingMetadata(metadata_map_);
819  }
820 
822  InterceptorBatchMethodsImpl* interceptor_methods) {
823  if (recv_status_ == nullptr) return;
824  interceptor_methods->AddInterceptionHookPoint(
826  recv_status_ = nullptr;
827  }
828 
829  void SetHijackingState(InterceptorBatchMethodsImpl* interceptor_methods) {
830  hijacked_ = true;
831  if (recv_status_ == nullptr) return;
832  interceptor_methods->AddInterceptionHookPoint(
834  }
835 
836  private:
837  bool hijacked_ = false;
838  ::grpc_impl::ClientContext* client_context_;
839  MetadataMap* metadata_map_;
840  Status* recv_status_;
841  const char* debug_error_string_;
842  grpc_status_code status_code_;
843  grpc_slice error_message_;
844 };
845 
846 template <class Op1 = CallNoOp<1>, class Op2 = CallNoOp<2>,
847  class Op3 = CallNoOp<3>, class Op4 = CallNoOp<4>,
848  class Op5 = CallNoOp<5>, class Op6 = CallNoOp<6>>
849 class CallOpSet;
850 
857 template <class Op1, class Op2, class Op3, class Op4, class Op5, class Op6>
858 class CallOpSet : public CallOpSetInterface,
859  public Op1,
860  public Op2,
861  public Op3,
862  public Op4,
863  public Op5,
864  public Op6 {
865  public:
866  CallOpSet() : core_cq_tag_(this), return_tag_(this) {}
867  // The copy constructor and assignment operator reset the value of
868  // core_cq_tag_, return_tag_, done_intercepting_ and interceptor_methods_
869  // since those are only meaningful on a specific object, not across objects.
870  CallOpSet(const CallOpSet& other)
871  : core_cq_tag_(this),
872  return_tag_(this),
873  call_(other.call_),
874  done_intercepting_(false),
875  interceptor_methods_(InterceptorBatchMethodsImpl()) {}
876 
877  CallOpSet& operator=(const CallOpSet& other) {
878  core_cq_tag_ = this;
879  return_tag_ = this;
880  call_ = other.call_;
881  done_intercepting_ = false;
882  interceptor_methods_ = InterceptorBatchMethodsImpl();
883  return *this;
884  }
885 
886  void FillOps(Call* call) override {
887  done_intercepting_ = false;
889  call_ =
890  *call; // It's fine to create a copy of call since it's just pointers
891 
892  if (RunInterceptors()) {
894  } else {
895  // After the interceptors are run, ContinueFillOpsAfterInterception will
896  // be run
897  }
898  }
899 
900  bool FinalizeResult(void** tag, bool* status) override {
901  if (done_intercepting_) {
902  // Complete the avalanching since we are done with this batch of ops
903  call_.cq()->CompleteAvalanching();
904  // We have already finished intercepting and filling in the results. This
905  // round trip from the core needed to be made because interceptors were
906  // run
907  *tag = return_tag_;
908  *status = saved_status_;
910  return true;
911  }
912 
913  this->Op1::FinishOp(status);
914  this->Op2::FinishOp(status);
915  this->Op3::FinishOp(status);
916  this->Op4::FinishOp(status);
917  this->Op5::FinishOp(status);
918  this->Op6::FinishOp(status);
919  saved_status_ = *status;
920  if (RunInterceptorsPostRecv()) {
921  *tag = return_tag_;
923  return true;
924  }
925  // Interceptors are going to be run, so we can't return the tag just yet.
926  // After the interceptors are run, ContinueFinalizeResultAfterInterception
927  return false;
928  }
929 
930  void set_output_tag(void* return_tag) { return_tag_ = return_tag; }
931 
932  void* core_cq_tag() override { return core_cq_tag_; }
933 
938  void set_core_cq_tag(void* core_cq_tag) { core_cq_tag_ = core_cq_tag; }
939 
940  // This will be called while interceptors are run if the RPC is a hijacked
941  // RPC. This should set hijacking state for each of the ops.
942  void SetHijackingState() override {
943  this->Op1::SetHijackingState(&interceptor_methods_);
944  this->Op2::SetHijackingState(&interceptor_methods_);
945  this->Op3::SetHijackingState(&interceptor_methods_);
946  this->Op4::SetHijackingState(&interceptor_methods_);
947  this->Op5::SetHijackingState(&interceptor_methods_);
948  this->Op6::SetHijackingState(&interceptor_methods_);
949  }
950 
951  // Should be called after interceptors are done running
953  static const size_t MAX_OPS = 6;
954  grpc_op ops[MAX_OPS];
955  size_t nops = 0;
956  this->Op1::AddOp(ops, &nops);
957  this->Op2::AddOp(ops, &nops);
958  this->Op3::AddOp(ops, &nops);
959  this->Op4::AddOp(ops, &nops);
960  this->Op5::AddOp(ops, &nops);
961  this->Op6::AddOp(ops, &nops);
962 
964  call_.call(), ops, nops, core_cq_tag(), nullptr);
965 
966  if (err != GRPC_CALL_OK) {
967  // A failure here indicates an API misuse; for example, doing a Write
968  // while another Write is already pending on the same RPC or invoking
969  // WritesDone multiple times
970  // gpr_log(GPR_ERROR, "API misuse of type %s observed",
971  // g_core_codegen_interface->grpc_call_error_to_string(err));
972  GPR_CODEGEN_ASSERT(false);
973  }
974  }
975 
976  // Should be called after interceptors are done running on the finalize result
977  // path
979  done_intercepting_ = true;
980  // The following call_start_batch is internally-generated so no need for an
981  // explanatory log on failure.
983  call_.call(), nullptr, 0, core_cq_tag(), nullptr) ==
984  GRPC_CALL_OK);
985  }
986 
987  private:
988  // Returns true if no interceptors need to be run
989  bool RunInterceptors() {
990  interceptor_methods_.ClearState();
991  interceptor_methods_.SetCallOpSetInterface(this);
992  interceptor_methods_.SetCall(&call_);
993  this->Op1::SetInterceptionHookPoint(&interceptor_methods_);
994  this->Op2::SetInterceptionHookPoint(&interceptor_methods_);
995  this->Op3::SetInterceptionHookPoint(&interceptor_methods_);
996  this->Op4::SetInterceptionHookPoint(&interceptor_methods_);
997  this->Op5::SetInterceptionHookPoint(&interceptor_methods_);
998  this->Op6::SetInterceptionHookPoint(&interceptor_methods_);
999  if (interceptor_methods_.InterceptorsListEmpty()) {
1000  return true;
1001  }
1002  // This call will go through interceptors and would need to
1003  // schedule new batches, so delay completion queue shutdown
1004  call_.cq()->RegisterAvalanching();
1005  return interceptor_methods_.RunInterceptors();
1006  }
1007  // Returns true if no interceptors need to be run
1008  bool RunInterceptorsPostRecv() {
1009  // Call and OpSet had already been set on the set state.
1010  // SetReverse also clears previously set hook points
1011  interceptor_methods_.SetReverse();
1012  this->Op1::SetFinishInterceptionHookPoint(&interceptor_methods_);
1013  this->Op2::SetFinishInterceptionHookPoint(&interceptor_methods_);
1014  this->Op3::SetFinishInterceptionHookPoint(&interceptor_methods_);
1015  this->Op4::SetFinishInterceptionHookPoint(&interceptor_methods_);
1016  this->Op5::SetFinishInterceptionHookPoint(&interceptor_methods_);
1017  this->Op6::SetFinishInterceptionHookPoint(&interceptor_methods_);
1018  return interceptor_methods_.RunInterceptors();
1019  }
1020 
1021  void* core_cq_tag_;
1022  void* return_tag_;
1023  Call call_;
1024  bool done_intercepting_ = false;
1025  InterceptorBatchMethodsImpl interceptor_methods_;
1026  bool saved_status_;
1027 };
1028 
1029 } // namespace internal
1030 } // namespace grpc
1031 
1032 #endif // GRPCPP_IMPL_CODEGEN_CALL_OP_SET_H
grpc::internal::CallOpSendMessage::SendMessagePtr
Status SendMessagePtr(const M *message, WriteOptions options) GRPC_MUST_USE_RESULT
Send message using options for the write.
Definition: call_op_set.h:409
grpc::Status::error_details
grpc::string error_details() const
Return the (binary) error details.
Definition: status.h:115
grpc::internal::CallOpSendMessage::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:364
grpc::internal::CallOpRecvInitialMetadata
Definition: call_op_set.h:719
grpc_op::grpc_op_data::grpc_op_send_message::send_message
struct grpc_byte_buffer * send_message
This op takes ownership of the slices in send_message.
Definition: grpc_types.h:635
grpc_op::flags
uint32_t flags
Write flags bitset for grpc_begin_messages.
Definition: grpc_types.h:611
grpc::internal::CallOpSendInitialMetadata::initial_metadata_
grpc_metadata * initial_metadata_
Definition: call_op_set.h:279
grpc::internal::CallOpRecvMessage::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:473
grpc_call_error
grpc_call_error
Result of a grpc call.
Definition: grpc_types.h:424
grpc::internal::CallOpSendInitialMetadata::metadata_map_
std::multimap< grpc::string, grpc::string > * metadata_map_
Definition: call_op_set.h:278
grpc::internal::MetadataMap::GetBinaryErrorDetails
grpc::string GetBinaryErrorDetails()
Definition: metadata_map.h:39
grpc::WriteOptions::clear_last_message
WriteOptions & clear_last_message()
Clears flag indicating that this is the last message in a stream, disabling coalescing.
Definition: call_op_set.h:168
grpc::WriteOptions::set_corked
WriteOptions & set_corked()
corked bit: aliases set_buffer_hint currently, with the intent that set_buffer_hint will be removed i...
Definition: call_op_set.h:144
grpc::experimental::InterceptionHookPoints::POST_RECV_STATUS
grpc::WriteOptions::get_buffer_hint
bool get_buffer_hint() const
Get value for the flag indicating that the write may be buffered and need not go out on the wire imme...
Definition: call_op_set.h:140
grpc::internal::CallOpClientRecvStatus::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:780
grpc_op::grpc_op_data::grpc_op_recv_status_on_client::trailing_metadata
grpc_metadata_array * trailing_metadata
ownership of the array is with the caller, but ownership of the elements stays with the call object (...
Definition: grpc_types.h:668
grpc::internal::CallOpClientSendClose
Definition: call_op_set.h:617
grpc_op::grpc_op_data::grpc_op_recv_status_on_client::status
grpc_status_code * status
Definition: grpc_types.h:669
grpc::experimental::InterceptionHookPoints::PRE_SEND_CLOSE
grpc::internal::CallOpRecvMessage::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:480
grpc::internal::CallOpClientSendClose::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:643
grpc::internal::CallOpSet::CallOpSet
CallOpSet()
Definition: call_op_set.h:866
grpc::WriteOptions::operator=
WriteOptions & operator=(const WriteOptions &other)=default
Default assignment operator.
grpc::internal::CallOpSendInitialMetadata::flags_
uint32_t flags_
Definition: call_op_set.h:276
grpc::internal::CallOpGenericRecvMessage
Definition: call_op_set.h:524
grpc::internal::CallNoOp::AddOp
void AddOp(grpc_op *, size_t *)
Definition: call_op_set.h:206
grpc::internal::CallOpRecvInitialMetadata::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:755
grpc::internal::CallOpServerSendStatus
Definition: call_op_set.h:652
grpc_status_code
grpc_status_code
Definition: status.h:26
grpc::ByteBuffer::Duplicate
void Duplicate()
Make a duplicate copy of the internals of this byte buffer so that we have our own owned version of i...
Definition: byte_buffer.h:140
grpc::internal::CallOpSendInitialMetadata::hijacked_
bool hijacked_
Definition: call_op_set.h:274
grpc::experimental::InterceptionHookPoints::PRE_SEND_INITIAL_METADATA
The first three in this list are for clients and servers.
grpc::internal::CallOpGenericRecvMessage::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:541
grpc
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
grpc::internal::CallOpSet
Primary implementation of CallOpSetInterface.
Definition: call_op_set.h:849
grpc_op::grpc_op_data::grpc_op_send_initial_metadata::grpc_op_send_initial_metadata_maybe_compression_level::level
grpc_compression_level level
Definition: grpc_types.h:626
grpc::CoreCodegenInterface::grpc_call_ref
virtual void grpc_call_ref(grpc_call *call)=0
grpc::internal::CallOpSendMessage
Definition: call_op_set.h:286
interceptor_common.h
grpc::WriteOptions::get_no_compression
bool get_no_compression() const
Get value for the flag indicating whether compression for the next message write is forcefully disabl...
Definition: call_op_set.h:114
grpc::internal::InterceptorBatchMethodsImpl::SetRecvInitialMetadata
void SetRecvInitialMetadata(MetadataMap *map)
Definition: interceptor_common.h:174
grpc::WriteOptions::set_last_message
WriteOptions & set_last_message()
last-message bit: indicates this is the last message in a stream client-side: makes Write the equival...
Definition: call_op_set.h:161
grpc::experimental::InterceptionHookPoints::POST_RECV_INITIAL_METADATA
The following two are for all clients and servers.
grpc::experimental::InterceptionHookPoints::POST_RECV_MESSAGE
grpc::internal::CallOpSendMessage::FinishOp
void FinishOp(bool *status)
Definition: call_op_set.h:330
grpc_op::reserved
void * reserved
Reserved for future usage.
Definition: grpc_types.h:613
grpc::internal::InterceptorBatchMethodsImpl::SetCallOpSetInterface
void SetCallOpSetInterface(CallOpSetInterface *ops)
Definition: interceptor_common.h:220
serialization_traits.h
grpc::internal::CallOpGenericRecvMessage::RecvMessage
void RecvMessage(R *message)
Definition: call_op_set.h:527
config.h
grpc::experimental::InterceptionHookPoints::PRE_RECV_MESSAGE
grpc::WriteOptions::is_write_through
bool is_write_through() const
Definition: call_op_set.h:180
grpc::experimental::InterceptionHookPoints::PRE_RECV_STATUS
grpc::internal::CallOpSet::FillOps
void FillOps(Call *call) override
Fills in grpc_op, starting from ops[*nops] and moving upwards.
Definition: call_op_set.h:886
grpc_op::grpc_op_data::send_initial_metadata
struct grpc_op::grpc_op_data::grpc_op_send_initial_metadata send_initial_metadata
grpc::internal::InterceptorBatchMethodsImpl::SetCall
void SetCall(Call *call)
Definition: interceptor_common.h:216
grpc::internal::InterceptorBatchMethodsImpl::InterceptorsListEmpty
bool InterceptorsListEmpty()
Definition: interceptor_common.h:224
grpc::internal::CallOpClientRecvStatus::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:829
grpc::internal::InterceptorBatchMethodsImpl::ClearState
void ClearState()
Definition: interceptor_common.h:202
grpc::internal::CallOpSendMessage::CallOpSendMessage
CallOpSendMessage()
Definition: call_op_set.h:288
grpc::internal::Call
Straightforward wrapping of the C call object.
Definition: call.h:38
grpc_op::grpc_op_data::grpc_op_send_initial_metadata::maybe_compression_level
struct grpc_op::grpc_op_data::grpc_op_send_initial_metadata::grpc_op_send_initial_metadata_maybe_compression_level maybe_compression_level
grpc::CoreCodegenInterface::grpc_call_start_batch
virtual grpc_call_error grpc_call_start_batch(grpc_call *call, const grpc_op *ops, size_t nops, void *tag, void *reserved)=0
grpc::internal::MetadataMap::arr
grpc_metadata_array * arr()
Definition: metadata_map.h:70
GRPC_CALL_OK
everything went ok
Definition: grpc_types.h:426
grpc_op::grpc_op_data::send_message
struct grpc_op::grpc_op_data::grpc_op_send_message send_message
grpc::WriteOptions::WriteOptions
WriteOptions()
Definition: call_op_set.h:81
core_codegen_interface.h
grpc::WriteOptions::set_write_through
WriteOptions & set_write_through()
Guarantee that all bytes have been written to the socket before completing this write (usually writes...
Definition: call_op_set.h:175
grpc::internal::CallOpClientRecvStatus::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:821
grpc::internal::CallOpSendInitialMetadata
Definition: call_op_set.h:216
grpc::internal::CallOpSendInitialMetadata::initial_metadata_count_
size_t initial_metadata_count_
Definition: call_op_set.h:277
grpc::internal::CallOpClientSendClose::FinishOp
void FinishOp(bool *)
Definition: call_op_set.h:631
grpc::internal::CallOpClientRecvStatus::CallOpClientRecvStatus
CallOpClientRecvStatus()
Definition: call_op_set.h:769
grpc::internal::CallNoOp::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:210
grpc::internal::CallOpSendInitialMetadata::SendInitialMetadata
void SendInitialMetadata(std::multimap< grpc::string, grpc::string > *metadata, uint32_t flags)
Definition: call_op_set.h:222
GRPC_WRITE_NO_COMPRESS
#define GRPC_WRITE_NO_COMPRESS
Force compression to be disabled for a particular write (start_write/add_metadata).
Definition: grpc_types.h:473
byte_buffer.h
grpc::internal::CallOpRecvMessage::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:466
grpc_op::grpc_op_data::recv_initial_metadata
struct grpc_op::grpc_op_data::grpc_op_recv_initial_metadata recv_initial_metadata
grpc::internal::MetadataMap
Definition: metadata_map.h:33
grpc::internal::CallOpServerSendStatus::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:667
grpc::internal::CallOpRecvInitialMetadata::RecvInitialMetadata
void RecvInitialMetadata(::grpc_impl::ClientContext *context)
Definition: call_op_set.h:723
grpc_op::grpc_op_data::send_status_from_server
struct grpc_op::grpc_op_data::grpc_op_send_status_from_server send_status_from_server
grpc::experimental::InterceptionHookPoints::PRE_SEND_STATUS
grpc::internal::CallOpSendInitialMetadata::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:267
grpc::internal::CallOpRecvMessage::FinishOp
void FinishOp(bool *status)
Definition: call_op_set.h:441
grpc_types.h
grpc::internal::CallOpSet::CallOpSet
CallOpSet(const CallOpSet &other)
Definition: call_op_set.h:870
grpc::WriteOptions::flags
uint32_t flags() const
Returns raw flags bitset.
Definition: call_op_set.h:92
grpc::internal::CallOpServerSendStatus::CallOpServerSendStatus
CallOpServerSendStatus()
Definition: call_op_set.h:654
grpc::internal::CallOpSet::ContinueFillOpsAfterInterception
void ContinueFillOpsAfterInterception() override
Definition: call_op_set.h:952
grpc_op::grpc_op_data::grpc_op_recv_message::recv_message
struct grpc_byte_buffer ** recv_message
Definition: grpc_types.h:660
grpc::Status
Did it work? If it didn't, why?
Definition: status.h:31
grpc::internal::DeserializeFunc
Definition: call_op_set.h:504
grpc_metadata
A single metadata element.
Definition: grpc_types.h:502
grpc::internal::CallOpSendInitialMetadata::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:270
grpc::internal::CallOpSendMessage::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:312
grpc::internal::CallOpSet::core_cq_tag
void * core_cq_tag() override
Get the tag to be used at the core completion queue.
Definition: call_op_set.h:932
grpc::internal::CallOpRecvInitialMetadata::CallOpRecvInitialMetadata
CallOpRecvInitialMetadata()
Definition: call_op_set.h:721
grpc::internal::CallOpGenericRecvMessage::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:592
GRPC_OP_RECV_INITIAL_METADATA
Receive initial metadata: one and only one MUST be made on the client, must not be made on the server...
Definition: grpc_types.h:584
grpc::internal::CallOpRecvMessage::got_message
bool got_message
Definition: call_op_set.h:429
GRPC_OP_SEND_STATUS_FROM_SERVER
Send status from the server: one and only one instance MUST be sent from the server unless the call w...
Definition: grpc_types.h:579
grpc::OK
Not an error; returned on success.
Definition: status_code_enum.h:26
grpc::internal::kBinaryErrorDetailsKey
const char kBinaryErrorDetailsKey[]
Definition: metadata_map.h:31
grpc_op::grpc_op_data::grpc_op_send_status_from_server::status
grpc_status_code status
Definition: grpc_types.h:640
grpc_op::grpc_op_data::grpc_op_recv_status_on_client::error_string
const char ** error_string
If this is not nullptr, it will be populated with the full fidelity error string for debugging purpos...
Definition: grpc_types.h:674
grpc::internal::CallOpGenericRecvMessage::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:584
grpc::WriteOptions::is_corked
bool is_corked() const
Definition: call_op_set.h:154
grpc::ByteBuffer::Clear
void Clear()
Remove all data.
Definition: byte_buffer.h:128
grpc_metadata::value
grpc_slice value
Definition: grpc_types.h:506
grpc::internal::CallOpSendInitialMetadata::maybe_compression_level_
struct grpc::internal::CallOpSendInitialMetadata::@3 maybe_compression_level_
grpc::internal::DeserializeFuncType
Definition: byte_buffer.h:62
grpc::internal::CallOpSetInterface
An abstract collection of call ops, used to generate the grpc_call_op structure to pass down to the l...
Definition: call_op_set_interface.h:34
grpc::ByteBuffer
A sequence of bytes.
Definition: byte_buffer.h:67
grpc::internal::FillMetadataArray
grpc_metadata * FillMetadataArray(const std::multimap< grpc::string, grpc::string > &metadata, size_t *metadata_count, const grpc::string &optional_error_details)
Definition: call_op_set.h:53
grpc::CoreCodegenInterface::gpr_malloc
virtual void * gpr_malloc(size_t size)=0
GRPC_WRITE_BUFFER_HINT
#define GRPC_WRITE_BUFFER_HINT
Write Flags:
Definition: grpc_types.h:470
grpc::internal::CallOpClientRecvStatus::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:815
grpc::internal::DeserializeFunc::~DeserializeFunc
virtual ~DeserializeFunc()
Definition: call_op_set.h:507
grpc_op
Operation data: one field for each op type (except SEND_CLOSE_FROM_CLIENT which has no arguments)
Definition: grpc_types.h:607
completion_queue_tag.h
grpc::internal::InterceptorBatchMethodsImpl::SetReverse
void SetReverse()
Definition: interceptor_common.h:209
GRPC_OP_SEND_MESSAGE
Send a message: 0 or more of these operations can occur for each call.
Definition: grpc_types.h:569
grpc::internal::InterceptorBatchMethodsImpl::SetRecvStatus
void SetRecvStatus(Status *status)
Definition: interceptor_common.h:178
grpc::internal::CallOpClientSendClose::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:633
grpc::internal::InterceptorBatchMethodsImpl::SetSendStatus
void SetSendStatus(grpc_status_code *code, grpc::string *error_details, grpc::string *error_message)
Definition: interceptor_common.h:157
grpc::internal::CallOpSet::SetHijackingState
void SetHijackingState() override
Definition: call_op_set.h:942
grpc_op::grpc_op_data::recv_message
struct grpc_op::grpc_op_data::grpc_op_recv_message recv_message
grpc::internal::CallOpSendInitialMetadata::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:236
GRPC_WRITE_THROUGH
#define GRPC_WRITE_THROUGH
Force this message to be written to the socket before completing it.
Definition: grpc_types.h:475
grpc_op::grpc_op_data::grpc_op_send_status_from_server::trailing_metadata
grpc_metadata * trailing_metadata
Definition: grpc_types.h:639
grpc::internal::CallOpSendInitialMetadata::send_
bool send_
Definition: call_op_set.h:275
grpc::internal::CallOpClientRecvStatus::FinishOp
void FinishOp(bool *)
Definition: call_op_set.h:792
grpc::internal::InterceptorBatchMethodsImpl::SetSendTrailingMetadata
void SetSendTrailingMetadata(std::multimap< grpc::string, grpc::string > *metadata)
Definition: interceptor_common.h:164
grpc_slice
A grpc_slice s, if initialized, represents the byte range s.bytes[0..s.length-1].
Definition: slice.h:60
grpc::internal::CallOpServerSendStatus::ServerSendStatus
void ServerSendStatus(std::multimap< grpc::string, grpc::string > *trailing_metadata, const Status &status)
Definition: call_op_set.h:656
grpc::internal::CallOpRecvInitialMetadata::FinishOp
void FinishOp(bool *)
Definition: call_op_set.h:738
grpc::internal::CallNoOp::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:212
grpc_op::grpc_op_data::recv_status_on_client
struct grpc_op::grpc_op_data::grpc_op_recv_status_on_client recv_status_on_client
grpc::SerializationTraits
Defines how to serialize and deserialize some type.
Definition: serialization_traits.h:58
grpc::internal::CallOpGenericRecvMessage::FinishOp
void FinishOp(bool *status)
Definition: call_op_set.h:550
grpc::internal::CallOpRecvMessage::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:432
grpc_op::data
union grpc_op::grpc_op_data data
grpc::WriteOptions::WriteOptions
WriteOptions(const WriteOptions &other)
Definition: call_op_set.h:82
grpc::internal::CallOpSendInitialMetadata::CallOpSendInitialMetadata
CallOpSendInitialMetadata()
Definition: call_op_set.h:218
call_op_set_interface.h
grpc::internal::CallOpSendInitialMetadata::level
grpc_compression_level level
Definition: call_op_set.h:282
grpc::internal::CallOpSendInitialMetadata::set_compression_level
void set_compression_level(grpc_compression_level level)
Definition: call_op_set.h:230
grpc_op::op
grpc_op_type op
Operation type, as defined by grpc_op_type.
Definition: grpc_types.h:609
grpc_op::grpc_op_data::grpc_op_send_initial_metadata::count
size_t count
Definition: grpc_types.h:620
grpc::protobuf::util::Status
::google::protobuf::util::Status Status
Definition: config_protobuf.h:90
grpc_op::grpc_op_data::grpc_op_recv_status_on_client::status_details
grpc_slice * status_details
Definition: grpc_types.h:670
grpc::internal::DeserializeFuncType::DeserializeFuncType
DeserializeFuncType(R *message)
Definition: call_op_set.h:513
GRPC_SLICE_IS_EMPTY
#define GRPC_SLICE_IS_EMPTY(slice)
Definition: slice.h:107
compression_types.h
grpc::experimental::InterceptionHookPoints::PRE_SEND_MESSAGE
grpc::internal::InterceptorBatchMethodsImpl::SetRecvMessage
void SetRecvMessage(void *message, bool *hijacked_recv_message_failed)
Definition: interceptor_common.h:169
grpc::Status::error_code
StatusCode error_code() const
Return the instance's error code.
Definition: status.h:110
grpc::CoreCodegenInterface::grpc_call_unref
virtual void grpc_call_unref(grpc_call *call)=0
grpc::internal::DeserializeFuncType::Deserialize
Status Deserialize(ByteBuffer *buf) override
Definition: call_op_set.h:514
grpc::internal::CallOpSet::set_output_tag
void set_output_tag(void *return_tag)
Definition: call_op_set.h:930
GRPC_OP_RECV_MESSAGE
Receive a message: 0 or more of these operations can occur for each call.
Definition: grpc_types.h:588
string_ref.h
grpc::internal::CallOpClientSendClose::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:624
grpc::WriteOptions
Per-message write options.
Definition: call_op_set.h:79
grpc::internal::CallOpClientSendClose::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:640
GRPC_MUST_USE_RESULT
#define GRPC_MUST_USE_RESULT
Definition: port_platform.h:577
grpc::internal::CallOpRecvInitialMetadata::AddOp
void AddOp(grpc_op *ops, size_t *nops)
Definition: call_op_set.h:729
grpc::internal::CallOpServerSendStatus::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:690
grpc::internal::CallOpServerSendStatus::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:700
grpc::experimental::InterceptionHookPoints::POST_SEND_MESSAGE
grpc::internal::DeserializeFuncType::~DeserializeFuncType
~DeserializeFuncType() override
Definition: call_op_set.h:518
GRPC_OP_SEND_INITIAL_METADATA
Send initial metadata: one and only one instance MUST be sent for each call, unless the call was canc...
Definition: grpc_types.h:565
grpc::WriteOptions::clear_corked
WriteOptions & clear_corked()
Definition: call_op_set.h:149
grpc::internal::InterceptorBatchMethodsImpl::SetSendMessage
void SetSendMessage(ByteBuffer *buf, const void **msg, bool *fail_send_message, std::function< Status(const void *)> serializer)
Definition: interceptor_common.h:143
grpc::internal::CallNoOp::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:208
grpc::internal::Call::call
grpc_call * call() const
Definition: call.h:72
grpc_op::grpc_op_data::grpc_op_send_initial_metadata::metadata
grpc_metadata * metadata
Definition: grpc_types.h:621
grpc::CoreCodegenInterface::gpr_free
virtual void gpr_free(void *p)=0
grpc::internal::CallOpSet::operator=
CallOpSet & operator=(const CallOpSet &other)
Definition: call_op_set.h:877
call.h
grpc_compression_level
grpc_compression_level
Compression levels allow a party with knowledge of its peer's accepted encodings to request compressi...
Definition: compression_types.h:71
grpc_op::grpc_op_data::grpc_op_send_status_from_server::trailing_metadata_count
size_t trailing_metadata_count
Definition: grpc_types.h:638
grpc::internal::CallOpSet::FinalizeResult
bool FinalizeResult(void **tag, bool *status) override
FinalizeResult must be called before informing user code that the operation bound to the underlying c...
Definition: call_op_set.h:900
grpc::internal::CallOpClientRecvStatus
Definition: call_op_set.h:767
grpc::WriteOptions::set_buffer_hint
WriteOptions & set_buffer_hint()
Sets flag indicating that the write may be buffered and need not go out on the wire immediately.
Definition: call_op_set.h:122
grpc::Status::error_message
grpc::string error_message() const
Return the instance's error message.
Definition: status.h:112
grpc::string
std::string string
Definition: config.h:35
grpc::CoreCodegenInterface::grpc_slice_unref
virtual void grpc_slice_unref(grpc_slice slice)=0
grpc_op::grpc_op_data::grpc_op_send_initial_metadata::grpc_op_send_initial_metadata_maybe_compression_level::is_set
uint8_t is_set
Definition: grpc_types.h:625
call_hook.h
GRPC_SLICE_START_PTR
#define GRPC_SLICE_START_PTR(slice)
Definition: slice.h:96
grpc::internal::CallOpGenericRecvMessage::got_message
bool got_message
Definition: call_op_set.h:538
grpc::internal::CallOpClientSendClose::CallOpClientSendClose
CallOpClientSendClose()
Definition: call_op_set.h:619
grpc::WriteOptions::clear_no_compression
WriteOptions & clear_no_compression()
Clears flag for the disabling of compression for the next message write.
Definition: call_op_set.h:105
grpc::internal::CallNoOp::FinishOp
void FinishOp(bool *)
Definition: call_op_set.h:207
grpc::CoreCodegenInterface::grpc_empty_slice
virtual grpc_slice grpc_empty_slice()=0
grpc::ByteBuffer::Valid
bool Valid() const
Is this ByteBuffer valid?
Definition: byte_buffer.h:163
GRPC_SLICE_END_PTR
#define GRPC_SLICE_END_PTR(slice)
Definition: slice.h:105
grpc::CoreCodegenInterface::grpc_slice_from_static_buffer
virtual grpc_slice grpc_slice_from_static_buffer(const void *buffer, size_t length)=0
grpc::g_core_codegen_interface
CoreCodegenInterface * g_core_codegen_interface
Definition: completion_queue_impl.h:93
GPR_CODEGEN_ASSERT
#define GPR_CODEGEN_ASSERT(x)
Codegen specific version of GPR_ASSERT.
Definition: core_codegen_interface.h:146
grpc::internal::CallOpGenericRecvMessage::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:577
intercepted_channel.h
grpc::internal::InterceptorBatchMethodsImpl::RunInterceptors
bool RunInterceptors()
Definition: interceptor_common.h:247
grpc::internal::CallOpRecvInitialMetadata::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:742
grpc::internal::Call::cq
::grpc_impl::CompletionQueue * cq() const
Definition: call.h:73
slice.h
grpc::WriteOptions::Clear
void Clear()
Clear all flags.
Definition: call_op_set.h:89
grpc::WriteOptions::is_last_message
bool is_last_message() const
Get value for the flag indicating that this is the last message, and should be coalesced with trailin...
Definition: call_op_set.h:186
grpc_impl::ClientContext
A ClientContext allows the person implementing a service client to:
Definition: client_context_impl.h:184
grpc::internal::DeserializeFunc::Deserialize
virtual Status Deserialize(ByteBuffer *buf)=0
grpc::SliceReferencingString
grpc_slice SliceReferencingString(const grpc::string &str)
Definition: slice.h:131
grpc::internal::CallOpRecvMessage
Definition: byte_buffer.h:58
grpc::ByteBuffer::Release
void Release()
Forget underlying byte buffer without destroying Use this only for un-owned byte buffers.
Definition: byte_buffer.h:146
grpc::internal::CallOpSendInitialMetadata::FinishOp
void FinishOp(bool *)
Definition: call_op_set.h:253
completion_queue_impl.h
grpc_op::grpc_op_data::grpc_op_send_status_from_server::status_details
grpc_slice * status_details
optional: set to NULL if no details need sending, non-NULL if they do pointer will not be retained pa...
Definition: grpc_types.h:644
grpc::internal::CallOpClientSendClose::ClientSendClose
void ClientSendClose()
Definition: call_op_set.h:621
client_context_impl.h
GRPC_OP_RECV_STATUS_ON_CLIENT
Receive status on the client: one and only one must be made on the client.
Definition: grpc_types.h:594
grpc::internal::InterceptorBatchMethodsImpl::SetSendInitialMetadata
void SetSendInitialMetadata(std::multimap< grpc::string, grpc::string > *metadata)
Definition: interceptor_common.h:152
grpc_op::grpc_op_data::grpc_op_recv_initial_metadata::recv_initial_metadata
grpc_metadata_array * recv_initial_metadata
Definition: grpc_types.h:652
grpc::internal::CallOpRecvInitialMetadata::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:747
grpc::internal::InterceptorBatchMethodsImpl::SetRecvTrailingMetadata
void SetRecvTrailingMetadata(MetadataMap *map)
Definition: interceptor_common.h:180
grpc::internal::CallOpGenericRecvMessage::AllowNoMessage
void AllowNoMessage()
Definition: call_op_set.h:536
grpc::internal::CallOpSendMessage::SendMessage
Status SendMessage(const M &message, WriteOptions options) GRPC_MUST_USE_RESULT
Send message using options for the write.
Definition: call_op_set.h:378
grpc::internal::CallOpServerSendStatus::FinishOp
void FinishOp(bool *)
Definition: call_op_set.h:684
grpc::WriteOptions::set_no_compression
WriteOptions & set_no_compression()
Sets flag for the disabling of compression for the next message write.
Definition: call_op_set.h:97
grpc::internal::CallOpSet::set_core_cq_tag
void set_core_cq_tag(void *core_cq_tag)
set_core_cq_tag is used to provide a different core CQ tag than "this".
Definition: call_op_set.h:938
grpc::internal::CallOpSendInitialMetadata::is_set
bool is_set
Definition: call_op_set.h:281
grpc::internal::CallOpSendMessage::SetFinishInterceptionHookPoint
void SetFinishInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:350
grpc::internal::InterceptorBatchMethodsImpl
Definition: interceptor_common.h:36
grpc::internal::CallOpRecvMessage::RecvMessage
void RecvMessage(R *message)
Definition: call_op_set.h:424
grpc_metadata::key
grpc_slice key
the key, value values are expected to line up with grpc_mdelem: if changing them, update metadata....
Definition: grpc_types.h:505
grpc::internal::CallOpSendInitialMetadata::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:259
GRPC_OP_SEND_CLOSE_FROM_CLIENT
Send a close from the client: one and only one instance MUST be sent from the client,...
Definition: grpc_types.h:574
grpc::WriteOptions::clear_buffer_hint
WriteOptions & clear_buffer_hint()
Clears flag indicating that the write may be buffered and need not go out on the wire immediately.
Definition: call_op_set.h:131
grpc::internal::InterceptorBatchMethodsImpl::AddInterceptionHookPoint
void AddInterceptionHookPoint(experimental::InterceptionHookPoints type)
Definition: interceptor_common.h:78
grpc::internal::CallNoOp
Default argument for CallOpSet.
Definition: call_op_set.h:204
grpc::internal::CallOpServerSendStatus::SetHijackingState
void SetHijackingState(InterceptorBatchMethodsImpl *)
Definition: call_op_set.h:703
grpc::internal::CallOpRecvMessage::AllowNoMessage
void AllowNoMessage()
Definition: call_op_set.h:427
grpc::internal::CallOpSet::ContinueFinalizeResultAfterInterception
void ContinueFinalizeResultAfterInterception() override
Definition: call_op_set.h:978
grpc::internal::CallOpSendMessage::SetInterceptionHookPoint
void SetInterceptionHookPoint(InterceptorBatchMethodsImpl *interceptor_methods)
Definition: call_op_set.h:341
GPR_CODEGEN_DEBUG_ASSERT
#define GPR_CODEGEN_DEBUG_ASSERT(x)
Codegen specific version of GPR_DEBUG_ASSERT.
Definition: core_codegen_interface.h:155
grpc::internal::CallOpClientRecvStatus::ClientRecvStatus
void ClientRecvStatus(::grpc_impl::ClientContext *context, Status *status)
Definition: call_op_set.h:772
grpc::experimental::InterceptionHookPoints::PRE_RECV_INITIAL_METADATA
The following three are for hijacked clients only.