GRPC C++  1.13.0-dev
client_unary_call.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_IMPL_CODEGEN_CLIENT_UNARY_CALL_H
20 #define GRPCPP_IMPL_CODEGEN_CLIENT_UNARY_CALL_H
21 
27 
28 namespace grpc {
29 
30 class Channel;
31 class ClientContext;
32 class CompletionQueue;
33 
34 namespace internal {
35 class RpcMethod;
37 template <class InputMessage, class OutputMessage>
39  ClientContext* context, const InputMessage& request,
40  OutputMessage* result) {
42  channel, method, context, request, result)
43  .status();
44 }
45 
46 template <class InputMessage, class OutputMessage>
48  public:
50  ClientContext* context, const InputMessage& request,
51  OutputMessage* result) {
54  GRPC_CQ_DEFAULT_POLLING}); // Pluckable completion queue
55  Call call(channel->CreateCall(method, context, &cq));
59  ops;
60  status_ = ops.SendMessage(request);
61  if (!status_.ok()) {
62  return;
63  }
64  ops.SendInitialMetadata(context->send_initial_metadata_,
65  context->initial_metadata_flags());
66  ops.RecvInitialMetadata(context);
67  ops.RecvMessage(result);
68  ops.AllowNoMessage();
69  ops.ClientSendClose();
70  ops.ClientRecvStatus(context, &status_);
71  call.PerformOps(&ops);
72  if (cq.Pluck(&ops)) {
73  if (!ops.got_message && status_.ok()) {
75  "No message returned for unary request");
76  }
77  } else {
78  GPR_CODEGEN_ASSERT(!status_.ok());
79  }
80  }
81  Status status() { return status_; }
82 
83  private:
84  Status status_;
85 };
86 
87 } // namespace internal
88 } // namespace grpc
89 
90 #endif // GRPCPP_IMPL_CODEGEN_CLIENT_UNARY_CALL_H
#define GPR_CODEGEN_ASSERT(x)
Codegen specific version of GPR_ASSERT.
Definition: core_codegen_interface.h:138
Status status()
Definition: client_unary_call.h:81
Primary implementation of CallOpSetInterface.
Definition: call.h:619
#define GRPC_CQ_CURRENT_VERSION
Definition: grpc_types.h:651
Definition: grpc_types.h:652
A ClientContext allows the person implementing a service client to:
Definition: client_context.h:162
Descriptor of an RPC method.
Definition: rpc_method.h:29
Events are popped out by calling grpc_completion_queue_pluck() API ONLY.
Definition: grpc_types.h:648
Definition: call.h:268
An Alarm posts the user provided tag to its associated completion queue upon expiry or cancellation...
Definition: alarm.h:31
Codegen interface for grpc::Channel.
Definition: channel_interface.h:55
The completion queue will have an associated pollset and there is no restriction on the type of file ...
Definition: grpc_types.h:628
Definition: byte_buffer.h:41
Status BlockingUnaryCall(ChannelInterface *channel, const RpcMethod &method, ClientContext *context, const InputMessage &request, OutputMessage *result)
Wrapper that performs a blocking unary call.
Definition: client_unary_call.h:38
A thin wrapper around grpc_completion_queue (see src/core/lib/surface/completion_queue.h).
Definition: completion_queue.h:94
BlockingUnaryCallImpl(ChannelInterface *channel, const RpcMethod &method, ClientContext *context, const InputMessage &request, OutputMessage *result)
Definition: client_unary_call.h:49
bool ok() const
Is the status OK?
Definition: status.h:118
Definition: channel_interface.h:43
Did it work? If it didn&#39;t, why?
Definition: status.h:31
Operation is not implemented or not supported/enabled in this service.
Definition: status_code_enum.h:115
Straightforward wrapping of the C call object.
Definition: call.h:660