-
Notifications
You must be signed in to change notification settings - Fork 397
/
Copy pathgolden_kitchen_sink_connection.h
254 lines (218 loc) · 10.3 KB
/
golden_kitchen_sink_connection.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// Copyright 2022 Google LLC
//
// 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
//
// https://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.
// Generated by the Codegen C++ plugin.
// If you make any local changes, they will be lost.
// source: generator/integration_tests/test.proto
#ifndef GOOGLE_CLOUD_CPP_GENERATOR_INTEGRATION_TESTS_GOLDEN_V1_GOLDEN_KITCHEN_SINK_CONNECTION_H
#define GOOGLE_CLOUD_CPP_GENERATOR_INTEGRATION_TESTS_GOLDEN_V1_GOLDEN_KITCHEN_SINK_CONNECTION_H
#include "generator/integration_tests/golden/v1/golden_kitchen_sink_connection_idempotency_policy.h"
#include "generator/integration_tests/golden/v1/internal/golden_kitchen_sink_retry_traits.h"
#include "google/cloud/backoff_policy.h"
#include "google/cloud/future.h"
#include "google/cloud/internal/async_read_write_stream_impl.h"
#include "google/cloud/internal/retry_policy_impl.h"
#include "google/cloud/options.h"
#include "google/cloud/status_or.h"
#include "google/cloud/stream_range.h"
#include "google/cloud/version.h"
#include <generator/integration_tests/backup.pb.h>
#include <generator/integration_tests/test.pb.h>
#include <memory>
namespace google {
namespace cloud {
namespace golden_v1 {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
/// The retry policy for `GoldenKitchenSinkConnection`.
class GoldenKitchenSinkRetryPolicy : public ::google::cloud::RetryPolicy {
};
/**
* A retry policy for `GoldenKitchenSinkConnection` based on counting errors.
*
* This policy stops retrying if:
* - An RPC returns a non-transient error.
* - More than a prescribed number of transient failures is detected.
*
* In this class the following status codes are treated as transient errors:
* - [`kInternal`](@ref google::cloud::StatusCode)
* - [`kUnavailable`](@ref google::cloud::StatusCode)
*/
class GoldenKitchenSinkLimitedErrorCountRetryPolicy : public GoldenKitchenSinkRetryPolicy {
public:
/**
* Create an instance that tolerates up to @p maximum_failures transient
* errors.
*
* @note Disable the retry loop by providing an instance of this policy with
* @p maximum_failures == 0.
*/
explicit GoldenKitchenSinkLimitedErrorCountRetryPolicy(int maximum_failures)
: impl_(maximum_failures) {}
GoldenKitchenSinkLimitedErrorCountRetryPolicy(
GoldenKitchenSinkLimitedErrorCountRetryPolicy&& rhs) noexcept
: GoldenKitchenSinkLimitedErrorCountRetryPolicy(rhs.maximum_failures()) {}
GoldenKitchenSinkLimitedErrorCountRetryPolicy(
GoldenKitchenSinkLimitedErrorCountRetryPolicy const& rhs) noexcept
: GoldenKitchenSinkLimitedErrorCountRetryPolicy(rhs.maximum_failures()) {}
int maximum_failures() const { return impl_.maximum_failures(); }
bool OnFailure(Status const& status) override {
return impl_.OnFailure(status);
}
bool IsExhausted() const override { return impl_.IsExhausted(); }
bool IsPermanentFailure(Status const& status) const override {
return impl_.IsPermanentFailure(status);
}
std::unique_ptr<RetryPolicy> clone() const override {
return std::make_unique<GoldenKitchenSinkLimitedErrorCountRetryPolicy>(
maximum_failures());
}
// This is provided only for backwards compatibility.
using BaseType = GoldenKitchenSinkRetryPolicy;
private:
google::cloud::internal::LimitedErrorCountRetryPolicy<golden_v1_internal::GoldenKitchenSinkRetryTraits> impl_;
};
/**
* A retry policy for `GoldenKitchenSinkConnection` based on elapsed time.
*
* This policy stops retrying if:
* - An RPC returns a non-transient error.
* - The elapsed time in the retry loop exceeds a prescribed duration.
*
* In this class the following status codes are treated as transient errors:
* - [`kInternal`](@ref google::cloud::StatusCode)
* - [`kUnavailable`](@ref google::cloud::StatusCode)
*/
class GoldenKitchenSinkLimitedTimeRetryPolicy : public GoldenKitchenSinkRetryPolicy {
public:
/**
* Constructor given a `std::chrono::duration<>` object.
*
* @tparam DurationRep a placeholder to match the `Rep` tparam for @p
* duration's type. The semantics of this template parameter are
* documented in `std::chrono::duration<>`. In brief, the underlying
* arithmetic type used to store the number of ticks. For our purposes it
* is simply a formal parameter.
* @tparam DurationPeriod a placeholder to match the `Period` tparam for @p
* duration's type. The semantics of this template parameter are
* documented in `std::chrono::duration<>`. In brief, the length of the
* tick in seconds, expressed as a `std::ratio<>`. For our purposes it is
* simply a formal parameter.
* @param maximum_duration the maximum time allowed before the policy expires.
* While the application can express this time in any units they desire,
* the class truncates to milliseconds.
*
* @see https://en.cppreference.com/w/cpp/chrono/duration for more information
* about `std::chrono::duration`.
*/
template <typename DurationRep, typename DurationPeriod>
explicit GoldenKitchenSinkLimitedTimeRetryPolicy(
std::chrono::duration<DurationRep, DurationPeriod> maximum_duration)
: impl_(maximum_duration) {}
GoldenKitchenSinkLimitedTimeRetryPolicy(GoldenKitchenSinkLimitedTimeRetryPolicy&& rhs) noexcept
: GoldenKitchenSinkLimitedTimeRetryPolicy(rhs.maximum_duration()) {}
GoldenKitchenSinkLimitedTimeRetryPolicy(GoldenKitchenSinkLimitedTimeRetryPolicy const& rhs) noexcept
: GoldenKitchenSinkLimitedTimeRetryPolicy(rhs.maximum_duration()) {}
std::chrono::milliseconds maximum_duration() const {
return impl_.maximum_duration();
}
bool OnFailure(Status const& status) override {
return impl_.OnFailure(status);
}
bool IsExhausted() const override { return impl_.IsExhausted(); }
bool IsPermanentFailure(Status const& status) const override {
return impl_.IsPermanentFailure(status);
}
std::unique_ptr<RetryPolicy> clone() const override {
return std::make_unique<GoldenKitchenSinkLimitedTimeRetryPolicy>(
maximum_duration());
}
// This is provided only for backwards compatibility.
using BaseType = GoldenKitchenSinkRetryPolicy;
private:
google::cloud::internal::LimitedTimeRetryPolicy<golden_v1_internal::GoldenKitchenSinkRetryTraits> impl_;
};
/**
* The `GoldenKitchenSinkConnection` object for `GoldenKitchenSinkClient`.
*
* This interface defines virtual methods for each of the user-facing overload
* sets in `GoldenKitchenSinkClient`. This allows users to inject custom behavior
* (e.g., with a Google Mock object) when writing tests that use objects of type
* `GoldenKitchenSinkClient`.
*
* To create a concrete instance, see `MakeGoldenKitchenSinkConnection()`.
*
* For mocking, see `golden_v1_mocks::MockGoldenKitchenSinkConnection`.
*/
class GoldenKitchenSinkConnection {
public:
virtual ~GoldenKitchenSinkConnection() = 0;
virtual Options options() { return Options{}; }
virtual StatusOr<google::test::admin::database::v1::GenerateAccessTokenResponse>
GenerateAccessToken(google::test::admin::database::v1::GenerateAccessTokenRequest const& request);
virtual StatusOr<google::test::admin::database::v1::GenerateIdTokenResponse>
GenerateIdToken(google::test::admin::database::v1::GenerateIdTokenRequest const& request);
virtual StatusOr<google::test::admin::database::v1::WriteLogEntriesResponse>
WriteLogEntries(google::test::admin::database::v1::WriteLogEntriesRequest const& request);
virtual StreamRange<std::string>
ListLogs(google::test::admin::database::v1::ListLogsRequest request);
virtual StatusOr<google::test::admin::database::v1::ListServiceAccountKeysResponse>
ListServiceAccountKeys(google::test::admin::database::v1::ListServiceAccountKeysRequest const& request);
virtual Status
DoNothing(google::protobuf::Empty const& request);
virtual Status
Deprecated2(google::test::admin::database::v1::GenerateAccessTokenRequest const& request);
virtual StreamRange<google::test::admin::database::v1::Response>
StreamingRead(google::test::admin::database::v1::Request const& request);
virtual std::unique_ptr<::google::cloud::AsyncStreamingReadWriteRpc<
google::test::admin::database::v1::Request,
google::test::admin::database::v1::Response>>
AsyncStreamingReadWrite();
virtual Status
ExplicitRouting1(google::test::admin::database::v1::ExplicitRoutingRequest const& request);
virtual Status
ExplicitRouting2(google::test::admin::database::v1::ExplicitRoutingRequest const& request);
virtual StatusOr<google::cloud::location::Location>
GetLocation(google::cloud::location::GetLocationRequest const& request);
virtual StatusOr<google::iam::v1::Policy>
GetIamPolicy(google::iam::v1::GetIamPolicyRequest const& request);
virtual StreamRange<google::longrunning::Operation>
ListOperations(google::longrunning::ListOperationsRequest request);
};
/**
* A factory function to construct an object of type `GoldenKitchenSinkConnection`.
*
* The returned connection object should not be used directly; instead it
* should be passed as an argument to the constructor of GoldenKitchenSinkClient.
*
* The optional @p options argument may be used to configure aspects of the
* returned `GoldenKitchenSinkConnection`. Expected options are any of the types in
* the following option lists:
*
* - `google::cloud::CommonOptionList`
* - `google::cloud::GrpcOptionList`
* - `google::cloud::UnifiedCredentialsOptionList`
* - `google::cloud::golden_v1::GoldenKitchenSinkPolicyOptionList`
*
* @note Unexpected options will be ignored. To log unexpected options instead,
* set `GOOGLE_CLOUD_CPP_ENABLE_CLOG=yes` in the environment.
*
* @param options (optional) Configure the `GoldenKitchenSinkConnection` created by
* this function.
*/
std::shared_ptr<GoldenKitchenSinkConnection> MakeGoldenKitchenSinkConnection(
Options options = {});
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace golden_v1
} // namespace cloud
} // namespace google
#endif // GOOGLE_CLOUD_CPP_GENERATOR_INTEGRATION_TESTS_GOLDEN_V1_GOLDEN_KITCHEN_SINK_CONNECTION_H