forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrpc_options.cc
166 lines (151 loc) · 6.15 KB
/
grpc_options.cc
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
// Copyright 2021 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.
#include "google/cloud/grpc_options.h"
#include "google/cloud/common_options.h"
#include "google/cloud/internal/absl_str_cat_quiet.h"
#include "google/cloud/internal/absl_str_join_quiet.h"
#include "google/cloud/internal/background_threads_impl.h"
namespace google {
namespace cloud {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
namespace internal {
void SetMetadata(grpc::ClientContext& context, Options const& options,
std::multimap<std::string, std::string> const& fixed_metadata,
std::string const& api_client_header) {
for (auto const& kv : fixed_metadata) {
context.AddMetadata(kv.first, kv.second);
}
context.AddMetadata("x-goog-api-client", api_client_header);
if (options.has<UserProjectOption>()) {
context.AddMetadata("x-goog-user-project",
options.get<UserProjectOption>());
}
auto const& authority = options.get<AuthorityOption>();
if (!authority.empty()) context.set_authority(authority);
for (auto const& h : options.get<CustomHeadersOption>()) {
context.AddMetadata(h.first, h.second);
}
if (options.has<UserIpOption>() && !options.has<QuotaUserOption>()) {
context.AddMetadata("x-goog-user-ip", options.get<UserIpOption>());
}
if (options.has<QuotaUserOption>()) {
context.AddMetadata("x-goog-quota-user", options.get<QuotaUserOption>());
}
if (options.has<FieldMaskOption>()) {
context.AddMetadata("x-goog-fieldmask", options.get<FieldMaskOption>());
}
}
void ConfigureContext(grpc::ClientContext& context, Options const& opts) {
if (opts.has<GrpcSetupOption>()) {
opts.get<GrpcSetupOption>()(context);
}
if (opts.has<GrpcCompressionAlgorithmOption>()) {
// Overwrites anything set by the GrpcSetupOption.
context.set_compression_algorithm(
opts.get<GrpcCompressionAlgorithmOption>());
}
}
void ConfigurePollContext(grpc::ClientContext& context, Options const& opts) {
if (opts.has<GrpcSetupPollOption>()) {
opts.get<GrpcSetupPollOption>()(context);
}
}
std::string MakeGrpcHttpProxy(ProxyConfig const& config) {
if (config.hostname().empty()) return {};
auto result = absl::StrCat(config.scheme(), "://");
char const* sep = "";
if (!config.username().empty()) {
sep = "@";
absl::StrAppend(&result, config.username());
}
if (!config.password().empty()) {
sep = "@";
absl::StrAppend(&result, ":", config.password());
}
absl::StrAppend(&result, sep, config.hostname());
if (!config.port().empty()) absl::StrAppend(&result, ":", config.port());
return result;
}
grpc::ChannelArguments MakeChannelArguments(Options const& opts) {
auto channel_arguments = opts.get<GrpcChannelArgumentsNativeOption>();
for (auto const& p : opts.get<GrpcChannelArgumentsOption>()) {
channel_arguments.SetString(p.first, p.second);
}
auto const& user_agent_prefix = opts.get<UserAgentProductsOption>();
if (!user_agent_prefix.empty()) {
channel_arguments.SetUserAgentPrefix(absl::StrJoin(user_agent_prefix, " "));
}
// Effectively disable keepalive messages.
if (!GetIntChannelArgument(channel_arguments, GRPC_ARG_KEEPALIVE_TIME_MS)) {
auto constexpr kDisableKeepaliveTime =
std::chrono::milliseconds(std::chrono::hours(24));
channel_arguments.SetInt(GRPC_ARG_KEEPALIVE_TIME_MS,
static_cast<int>(kDisableKeepaliveTime.count()));
}
// Make gRPC set the TCP_USER_TIMEOUT socket option to a value that detects
// broken servers more quickly.
if (!GetIntChannelArgument(channel_arguments,
GRPC_ARG_KEEPALIVE_TIMEOUT_MS)) {
auto constexpr kKeepaliveTimeout =
std::chrono::milliseconds(std::chrono::seconds(60));
channel_arguments.SetInt(GRPC_ARG_KEEPALIVE_TIMEOUT_MS,
static_cast<int>(kKeepaliveTimeout.count()));
}
auto const proxy = MakeGrpcHttpProxy(opts.get<ProxyOption>());
if (!proxy.empty()) channel_arguments.SetString(GRPC_ARG_HTTP_PROXY, proxy);
return channel_arguments;
}
absl::optional<int> GetIntChannelArgument(grpc::ChannelArguments const& args,
std::string const& key) {
auto c_args = args.c_channel_args();
// Just do a linear search for the key; the data structure is not organized
// in any other useful way.
for (auto const* a = c_args.args; a != c_args.args + c_args.num_args; ++a) {
if (key != a->key) continue;
if (a->type != GRPC_ARG_INTEGER) return absl::nullopt;
return a->value.integer;
}
return absl::nullopt;
}
absl::optional<std::string> GetStringChannelArgument(
grpc::ChannelArguments const& args, std::string const& key) {
auto c_args = args.c_channel_args();
// Just do a linear search for the key; the data structure is not organized
// in any other useful way.
for (auto const* a = c_args.args; a != c_args.args + c_args.num_args; ++a) {
if (key != a->key) continue;
if (a->type != GRPC_ARG_STRING) return absl::nullopt;
return a->value.string;
}
return absl::nullopt;
}
BackgroundThreadsFactory MakeBackgroundThreadsFactory(Options const& opts) {
if (opts.has<GrpcCompletionQueueOption>()) {
auto const& cq = opts.get<GrpcCompletionQueueOption>();
return [cq] {
return std::make_unique<CustomerSuppliedBackgroundThreads>(cq);
};
}
if (opts.has<GrpcBackgroundThreadsFactoryOption>()) {
return opts.get<GrpcBackgroundThreadsFactoryOption>();
}
auto const s = opts.get<GrpcBackgroundThreadPoolSizeOption>();
return [s] {
return std::make_unique<AutomaticallyCreatedBackgroundThreads>(s);
};
}
} // namespace internal
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace cloud
} // namespace google