aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/grpc/test/cpp/util/cli_call.h
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:45:01 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:01 +0300
commit2d37894b1b037cf24231090eda8589bbb44fb6fc (patch)
treebe835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/grpc/test/cpp/util/cli_call.h
parent718c552901d703c502ccbefdfc3c9028d608b947 (diff)
downloadydb-2d37894b1b037cf24231090eda8589bbb44fb6fc.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/grpc/test/cpp/util/cli_call.h')
-rw-r--r--contrib/libs/grpc/test/cpp/util/cli_call.h166
1 files changed, 83 insertions, 83 deletions
diff --git a/contrib/libs/grpc/test/cpp/util/cli_call.h b/contrib/libs/grpc/test/cpp/util/cli_call.h
index b3a5a55dc1..79d00d99f4 100644
--- a/contrib/libs/grpc/test/cpp/util/cli_call.h
+++ b/contrib/libs/grpc/test/cpp/util/cli_call.h
@@ -1,51 +1,51 @@
-/*
- *
- * 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 GRPC_TEST_CPP_UTIL_CLI_CALL_H
-#define GRPC_TEST_CPP_UTIL_CLI_CALL_H
-
-#include <grpcpp/channel.h>
-#include <grpcpp/completion_queue.h>
-#include <grpcpp/generic/generic_stub.h>
-#include <grpcpp/support/status.h>
-#include <grpcpp/support/string_ref.h>
-
+/*
+ *
+ * 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 GRPC_TEST_CPP_UTIL_CLI_CALL_H
+#define GRPC_TEST_CPP_UTIL_CLI_CALL_H
+
+#include <grpcpp/channel.h>
+#include <grpcpp/completion_queue.h>
+#include <grpcpp/generic/generic_stub.h>
+#include <grpcpp/support/status.h>
+#include <grpcpp/support/string_ref.h>
+
#include <map>
-
+
namespace grpc {
-
+
class ClientContext;
struct CliArgs {
double timeout = -1;
};
-namespace testing {
-
-// CliCall handles the sending and receiving of generic messages given the name
-// of the remote method. This class is only used by GrpcTool. Its thread-safe
-// and thread-unsafe methods should not be used together.
-class CliCall final {
- public:
+namespace testing {
+
+// CliCall handles the sending and receiving of generic messages given the name
+// of the remote method. This class is only used by GrpcTool. Its thread-safe
+// and thread-unsafe methods should not be used together.
+class CliCall final {
+ public:
typedef std::multimap<TString, TString> OutgoingMetadataContainer;
- typedef std::multimap<grpc::string_ref, grpc::string_ref>
- IncomingMetadataContainer;
-
+ typedef std::multimap<grpc::string_ref, grpc::string_ref>
+ IncomingMetadataContainer;
+
CliCall(const std::shared_ptr<grpc::Channel>& channel,
const TString& method, const OutgoingMetadataContainer& metadata,
CliArgs args);
@@ -53,57 +53,57 @@ class CliCall final {
const TString& method, const OutgoingMetadataContainer& metadata)
: CliCall(channel, method, metadata, CliArgs{}) {}
- ~CliCall();
-
- // Perform an unary generic RPC.
+ ~CliCall();
+
+ // Perform an unary generic RPC.
static Status Call(const std::shared_ptr<grpc::Channel>& channel,
const TString& method, const TString& request,
TString* response,
- const OutgoingMetadataContainer& metadata,
- IncomingMetadataContainer* server_initial_metadata,
- IncomingMetadataContainer* server_trailing_metadata);
-
- // Send a generic request message in a synchronous manner. NOT thread-safe.
+ const OutgoingMetadataContainer& metadata,
+ IncomingMetadataContainer* server_initial_metadata,
+ IncomingMetadataContainer* server_trailing_metadata);
+
+ // Send a generic request message in a synchronous manner. NOT thread-safe.
void Write(const TString& request);
-
- // Send a generic request message in a synchronous manner. NOT thread-safe.
- void WritesDone();
-
- // Receive a generic response message in a synchronous manner.NOT thread-safe.
+
+ // Send a generic request message in a synchronous manner. NOT thread-safe.
+ void WritesDone();
+
+ // Receive a generic response message in a synchronous manner.NOT thread-safe.
bool Read(TString* response,
- IncomingMetadataContainer* server_initial_metadata);
-
- // Thread-safe write. Must be used with ReadAndMaybeNotifyWrite. Send out a
- // generic request message and wait for ReadAndMaybeNotifyWrite to finish it.
+ IncomingMetadataContainer* server_initial_metadata);
+
+ // Thread-safe write. Must be used with ReadAndMaybeNotifyWrite. Send out a
+ // generic request message and wait for ReadAndMaybeNotifyWrite to finish it.
void WriteAndWait(const TString& request);
-
- // Thread-safe WritesDone. Must be used with ReadAndMaybeNotifyWrite. Send out
- // WritesDone for gereneric request messages and wait for
- // ReadAndMaybeNotifyWrite to finish it.
- void WritesDoneAndWait();
-
- // Thread-safe Read. Blockingly receive a generic response message. Notify
- // writes if they are finished when this read is waiting for a resposne.
- bool ReadAndMaybeNotifyWrite(
+
+ // Thread-safe WritesDone. Must be used with ReadAndMaybeNotifyWrite. Send out
+ // WritesDone for gereneric request messages and wait for
+ // ReadAndMaybeNotifyWrite to finish it.
+ void WritesDoneAndWait();
+
+ // Thread-safe Read. Blockingly receive a generic response message. Notify
+ // writes if they are finished when this read is waiting for a resposne.
+ bool ReadAndMaybeNotifyWrite(
TString* response,
- IncomingMetadataContainer* server_initial_metadata);
-
- // Finish the RPC.
- Status Finish(IncomingMetadataContainer* server_trailing_metadata);
-
+ IncomingMetadataContainer* server_initial_metadata);
+
+ // Finish the RPC.
+ Status Finish(IncomingMetadataContainer* server_trailing_metadata);
+
TString peer() const { return ctx_.peer(); }
- private:
- std::unique_ptr<grpc::GenericStub> stub_;
+ private:
+ std::unique_ptr<grpc::GenericStub> stub_;
grpc::ClientContext ctx_;
- std::unique_ptr<grpc::GenericClientAsyncReaderWriter> call_;
- grpc::CompletionQueue cq_;
- gpr_mu write_mu_;
- gpr_cv write_cv_; // Protected by write_mu_;
- bool write_done_; // Portected by write_mu_;
-};
-
-} // namespace testing
-} // namespace grpc
-
-#endif // GRPC_TEST_CPP_UTIL_CLI_CALL_H
+ std::unique_ptr<grpc::GenericClientAsyncReaderWriter> call_;
+ grpc::CompletionQueue cq_;
+ gpr_mu write_mu_;
+ gpr_cv write_cv_; // Protected by write_mu_;
+ bool write_done_; // Portected by write_mu_;
+};
+
+} // namespace testing
+} // namespace grpc
+
+#endif // GRPC_TEST_CPP_UTIL_CLI_CALL_H