blob: f286462449034ddc583ebb40f8d98df0668359d8 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001/*
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
19package grpc
20
21import (
22 "context"
23 "fmt"
24 "net"
25 "time"
26
27 "google.golang.org/grpc/balancer"
28 "google.golang.org/grpc/credentials"
29 "google.golang.org/grpc/internal"
30 "google.golang.org/grpc/internal/backoff"
31 "google.golang.org/grpc/internal/envconfig"
32 "google.golang.org/grpc/internal/transport"
33 "google.golang.org/grpc/keepalive"
34 "google.golang.org/grpc/resolver"
35 "google.golang.org/grpc/stats"
36)
37
38// dialOptions configure a Dial call. dialOptions are set by the DialOption
39// values passed to Dial.
40type dialOptions struct {
41 unaryInt UnaryClientInterceptor
42 streamInt StreamClientInterceptor
43 cp Compressor
44 dc Decompressor
45 bs backoff.Strategy
46 block bool
47 insecure bool
48 timeout time.Duration
49 scChan <-chan ServiceConfig
50 authority string
51 copts transport.ConnectOptions
52 callOptions []CallOption
53 // This is used by v1 balancer dial option WithBalancer to support v1
54 // balancer, and also by WithBalancerName dial option.
55 balancerBuilder balancer.Builder
56 // This is to support grpclb.
57 resolverBuilder resolver.Builder
58 reqHandshake envconfig.RequireHandshakeSetting
59 channelzParentID int64
60 disableServiceConfig bool
61 disableRetry bool
62 disableHealthCheck bool
Stephane Barbarie260a5632019-02-26 16:12:49 -050063 healthCheckFunc internal.HealthChecker
khenaidooac637102019-01-14 15:44:34 -050064}
65
66// DialOption configures how we set up the connection.
67type DialOption interface {
68 apply(*dialOptions)
69}
70
71// EmptyDialOption does not alter the dial configuration. It can be embedded in
72// another structure to build custom dial options.
73//
74// This API is EXPERIMENTAL.
75type EmptyDialOption struct{}
76
77func (EmptyDialOption) apply(*dialOptions) {}
78
79// funcDialOption wraps a function that modifies dialOptions into an
80// implementation of the DialOption interface.
81type funcDialOption struct {
82 f func(*dialOptions)
83}
84
85func (fdo *funcDialOption) apply(do *dialOptions) {
86 fdo.f(do)
87}
88
89func newFuncDialOption(f func(*dialOptions)) *funcDialOption {
90 return &funcDialOption{
91 f: f,
92 }
93}
94
95// WithWaitForHandshake blocks until the initial settings frame is received from
96// the server before assigning RPCs to the connection.
97//
Stephane Barbarie260a5632019-02-26 16:12:49 -050098// Deprecated: this is the default behavior, and this option will be removed
99// after the 1.18 release.
khenaidooac637102019-01-14 15:44:34 -0500100func WithWaitForHandshake() DialOption {
101 return newFuncDialOption(func(o *dialOptions) {
102 o.reqHandshake = envconfig.RequireHandshakeOn
103 })
104}
105
106// WithWriteBufferSize determines how much data can be batched before doing a
107// write on the wire. The corresponding memory allocation for this buffer will
108// be twice the size to keep syscalls low. The default value for this buffer is
109// 32KB.
110//
111// Zero will disable the write buffer such that each write will be on underlying
112// connection. Note: A Send call may not directly translate to a write.
113func WithWriteBufferSize(s int) DialOption {
114 return newFuncDialOption(func(o *dialOptions) {
115 o.copts.WriteBufferSize = s
116 })
117}
118
119// WithReadBufferSize lets you set the size of read buffer, this determines how
120// much data can be read at most for each read syscall.
121//
122// The default value for this buffer is 32KB. Zero will disable read buffer for
123// a connection so data framer can access the underlying conn directly.
124func WithReadBufferSize(s int) DialOption {
125 return newFuncDialOption(func(o *dialOptions) {
126 o.copts.ReadBufferSize = s
127 })
128}
129
130// WithInitialWindowSize returns a DialOption which sets the value for initial
131// window size on a stream. The lower bound for window size is 64K and any value
132// smaller than that will be ignored.
133func WithInitialWindowSize(s int32) DialOption {
134 return newFuncDialOption(func(o *dialOptions) {
135 o.copts.InitialWindowSize = s
136 })
137}
138
139// WithInitialConnWindowSize returns a DialOption which sets the value for
140// initial window size on a connection. The lower bound for window size is 64K
141// and any value smaller than that will be ignored.
142func WithInitialConnWindowSize(s int32) DialOption {
143 return newFuncDialOption(func(o *dialOptions) {
144 o.copts.InitialConnWindowSize = s
145 })
146}
147
148// WithMaxMsgSize returns a DialOption which sets the maximum message size the
149// client can receive.
150//
151// Deprecated: use WithDefaultCallOptions(MaxCallRecvMsgSize(s)) instead.
152func WithMaxMsgSize(s int) DialOption {
153 return WithDefaultCallOptions(MaxCallRecvMsgSize(s))
154}
155
156// WithDefaultCallOptions returns a DialOption which sets the default
157// CallOptions for calls over the connection.
158func WithDefaultCallOptions(cos ...CallOption) DialOption {
159 return newFuncDialOption(func(o *dialOptions) {
160 o.callOptions = append(o.callOptions, cos...)
161 })
162}
163
164// WithCodec returns a DialOption which sets a codec for message marshaling and
165// unmarshaling.
166//
167// Deprecated: use WithDefaultCallOptions(CallCustomCodec(c)) instead.
168func WithCodec(c Codec) DialOption {
169 return WithDefaultCallOptions(CallCustomCodec(c))
170}
171
172// WithCompressor returns a DialOption which sets a Compressor to use for
173// message compression. It has lower priority than the compressor set by the
174// UseCompressor CallOption.
175//
176// Deprecated: use UseCompressor instead.
177func WithCompressor(cp Compressor) DialOption {
178 return newFuncDialOption(func(o *dialOptions) {
179 o.cp = cp
180 })
181}
182
183// WithDecompressor returns a DialOption which sets a Decompressor to use for
184// incoming message decompression. If incoming response messages are encoded
185// using the decompressor's Type(), it will be used. Otherwise, the message
186// encoding will be used to look up the compressor registered via
187// encoding.RegisterCompressor, which will then be used to decompress the
188// message. If no compressor is registered for the encoding, an Unimplemented
189// status error will be returned.
190//
191// Deprecated: use encoding.RegisterCompressor instead.
192func WithDecompressor(dc Decompressor) DialOption {
193 return newFuncDialOption(func(o *dialOptions) {
194 o.dc = dc
195 })
196}
197
198// WithBalancer returns a DialOption which sets a load balancer with the v1 API.
199// Name resolver will be ignored if this DialOption is specified.
200//
201// Deprecated: use the new balancer APIs in balancer package and
202// WithBalancerName.
203func WithBalancer(b Balancer) DialOption {
204 return newFuncDialOption(func(o *dialOptions) {
205 o.balancerBuilder = &balancerWrapperBuilder{
206 b: b,
207 }
208 })
209}
210
211// WithBalancerName sets the balancer that the ClientConn will be initialized
212// with. Balancer registered with balancerName will be used. This function
213// panics if no balancer was registered by balancerName.
214//
215// The balancer cannot be overridden by balancer option specified by service
216// config.
217//
218// This is an EXPERIMENTAL API.
219func WithBalancerName(balancerName string) DialOption {
220 builder := balancer.Get(balancerName)
221 if builder == nil {
222 panic(fmt.Sprintf("grpc.WithBalancerName: no balancer is registered for name %v", balancerName))
223 }
224 return newFuncDialOption(func(o *dialOptions) {
225 o.balancerBuilder = builder
226 })
227}
228
229// withResolverBuilder is only for grpclb.
230func withResolverBuilder(b resolver.Builder) DialOption {
231 return newFuncDialOption(func(o *dialOptions) {
232 o.resolverBuilder = b
233 })
234}
235
236// WithServiceConfig returns a DialOption which has a channel to read the
237// service configuration.
238//
239// Deprecated: service config should be received through name resolver, as
240// specified here.
241// https://github.com/grpc/grpc/blob/master/doc/service_config.md
242func WithServiceConfig(c <-chan ServiceConfig) DialOption {
243 return newFuncDialOption(func(o *dialOptions) {
244 o.scChan = c
245 })
246}
247
248// WithBackoffMaxDelay configures the dialer to use the provided maximum delay
249// when backing off after failed connection attempts.
250func WithBackoffMaxDelay(md time.Duration) DialOption {
251 return WithBackoffConfig(BackoffConfig{MaxDelay: md})
252}
253
254// WithBackoffConfig configures the dialer to use the provided backoff
255// parameters after connection failures.
256//
257// Use WithBackoffMaxDelay until more parameters on BackoffConfig are opened up
258// for use.
259func WithBackoffConfig(b BackoffConfig) DialOption {
260 return withBackoff(backoff.Exponential{
261 MaxDelay: b.MaxDelay,
262 })
263}
264
265// withBackoff sets the backoff strategy used for connectRetryNum after a failed
266// connection attempt.
267//
268// This can be exported if arbitrary backoff strategies are allowed by gRPC.
269func withBackoff(bs backoff.Strategy) DialOption {
270 return newFuncDialOption(func(o *dialOptions) {
271 o.bs = bs
272 })
273}
274
275// WithBlock returns a DialOption which makes caller of Dial blocks until the
276// underlying connection is up. Without this, Dial returns immediately and
277// connecting the server happens in background.
278func WithBlock() DialOption {
279 return newFuncDialOption(func(o *dialOptions) {
280 o.block = true
281 })
282}
283
284// WithInsecure returns a DialOption which disables transport security for this
285// ClientConn. Note that transport security is required unless WithInsecure is
286// set.
287func WithInsecure() DialOption {
288 return newFuncDialOption(func(o *dialOptions) {
289 o.insecure = true
290 })
291}
292
293// WithTransportCredentials returns a DialOption which configures a connection
294// level security credentials (e.g., TLS/SSL). This should not be used together
295// with WithCredentialsBundle.
296func WithTransportCredentials(creds credentials.TransportCredentials) DialOption {
297 return newFuncDialOption(func(o *dialOptions) {
298 o.copts.TransportCredentials = creds
299 })
300}
301
302// WithPerRPCCredentials returns a DialOption which sets credentials and places
303// auth state on each outbound RPC.
304func WithPerRPCCredentials(creds credentials.PerRPCCredentials) DialOption {
305 return newFuncDialOption(func(o *dialOptions) {
306 o.copts.PerRPCCredentials = append(o.copts.PerRPCCredentials, creds)
307 })
308}
309
310// WithCredentialsBundle returns a DialOption to set a credentials bundle for
311// the ClientConn.WithCreds. This should not be used together with
312// WithTransportCredentials.
313//
314// This API is experimental.
315func WithCredentialsBundle(b credentials.Bundle) DialOption {
316 return newFuncDialOption(func(o *dialOptions) {
317 o.copts.CredsBundle = b
318 })
319}
320
321// WithTimeout returns a DialOption that configures a timeout for dialing a
322// ClientConn initially. This is valid if and only if WithBlock() is present.
323//
324// Deprecated: use DialContext and context.WithTimeout instead.
325func WithTimeout(d time.Duration) DialOption {
326 return newFuncDialOption(func(o *dialOptions) {
327 o.timeout = d
328 })
329}
330
331func withContextDialer(f func(context.Context, string) (net.Conn, error)) DialOption {
332 return newFuncDialOption(func(o *dialOptions) {
333 o.copts.Dialer = f
334 })
335}
336
337func init() {
338 internal.WithContextDialer = withContextDialer
339 internal.WithResolverBuilder = withResolverBuilder
Stephane Barbarie260a5632019-02-26 16:12:49 -0500340 internal.WithHealthCheckFunc = withHealthCheckFunc
khenaidooac637102019-01-14 15:44:34 -0500341}
342
343// WithDialer returns a DialOption that specifies a function to use for dialing
344// network addresses. If FailOnNonTempDialError() is set to true, and an error
345// is returned by f, gRPC checks the error's Temporary() method to decide if it
346// should try to reconnect to the network address.
347func WithDialer(f func(string, time.Duration) (net.Conn, error)) DialOption {
348 return withContextDialer(
349 func(ctx context.Context, addr string) (net.Conn, error) {
350 if deadline, ok := ctx.Deadline(); ok {
351 return f(addr, deadline.Sub(time.Now()))
352 }
353 return f(addr, 0)
354 })
355}
356
357// WithStatsHandler returns a DialOption that specifies the stats handler for
358// all the RPCs and underlying network connections in this ClientConn.
359func WithStatsHandler(h stats.Handler) DialOption {
360 return newFuncDialOption(func(o *dialOptions) {
361 o.copts.StatsHandler = h
362 })
363}
364
365// FailOnNonTempDialError returns a DialOption that specifies if gRPC fails on
366// non-temporary dial errors. If f is true, and dialer returns a non-temporary
367// error, gRPC will fail the connection to the network address and won't try to
368// reconnect. The default value of FailOnNonTempDialError is false.
369//
370// FailOnNonTempDialError only affects the initial dial, and does not do
371// anything useful unless you are also using WithBlock().
372//
373// This is an EXPERIMENTAL API.
374func FailOnNonTempDialError(f bool) DialOption {
375 return newFuncDialOption(func(o *dialOptions) {
376 o.copts.FailOnNonTempDialError = f
377 })
378}
379
380// WithUserAgent returns a DialOption that specifies a user agent string for all
381// the RPCs.
382func WithUserAgent(s string) DialOption {
383 return newFuncDialOption(func(o *dialOptions) {
384 o.copts.UserAgent = s
385 })
386}
387
388// WithKeepaliveParams returns a DialOption that specifies keepalive parameters
389// for the client transport.
390func WithKeepaliveParams(kp keepalive.ClientParameters) DialOption {
391 return newFuncDialOption(func(o *dialOptions) {
392 o.copts.KeepaliveParams = kp
393 })
394}
395
396// WithUnaryInterceptor returns a DialOption that specifies the interceptor for
397// unary RPCs.
398func WithUnaryInterceptor(f UnaryClientInterceptor) DialOption {
399 return newFuncDialOption(func(o *dialOptions) {
400 o.unaryInt = f
401 })
402}
403
404// WithStreamInterceptor returns a DialOption that specifies the interceptor for
405// streaming RPCs.
406func WithStreamInterceptor(f StreamClientInterceptor) DialOption {
407 return newFuncDialOption(func(o *dialOptions) {
408 o.streamInt = f
409 })
410}
411
412// WithAuthority returns a DialOption that specifies the value to be used as the
413// :authority pseudo-header. This value only works with WithInsecure and has no
414// effect if TransportCredentials are present.
415func WithAuthority(a string) DialOption {
416 return newFuncDialOption(func(o *dialOptions) {
417 o.authority = a
418 })
419}
420
421// WithChannelzParentID returns a DialOption that specifies the channelz ID of
422// current ClientConn's parent. This function is used in nested channel creation
423// (e.g. grpclb dial).
424func WithChannelzParentID(id int64) DialOption {
425 return newFuncDialOption(func(o *dialOptions) {
426 o.channelzParentID = id
427 })
428}
429
430// WithDisableServiceConfig returns a DialOption that causes grpc to ignore any
431// service config provided by the resolver and provides a hint to the resolver
432// to not fetch service configs.
433func WithDisableServiceConfig() DialOption {
434 return newFuncDialOption(func(o *dialOptions) {
435 o.disableServiceConfig = true
436 })
437}
438
439// WithDisableRetry returns a DialOption that disables retries, even if the
440// service config enables them. This does not impact transparent retries, which
441// will happen automatically if no data is written to the wire or if the RPC is
442// unprocessed by the remote server.
443//
444// Retry support is currently disabled by default, but will be enabled by
445// default in the future. Until then, it may be enabled by setting the
446// environment variable "GRPC_GO_RETRY" to "on".
447//
448// This API is EXPERIMENTAL.
449func WithDisableRetry() DialOption {
450 return newFuncDialOption(func(o *dialOptions) {
451 o.disableRetry = true
452 })
453}
454
455// WithMaxHeaderListSize returns a DialOption that specifies the maximum
456// (uncompressed) size of header list that the client is prepared to accept.
457func WithMaxHeaderListSize(s uint32) DialOption {
458 return newFuncDialOption(func(o *dialOptions) {
459 o.copts.MaxHeaderListSize = &s
460 })
461}
462
463// WithDisableHealthCheck disables the LB channel health checking for all SubConns of this ClientConn.
464//
465// This API is EXPERIMENTAL.
466func WithDisableHealthCheck() DialOption {
467 return newFuncDialOption(func(o *dialOptions) {
468 o.disableHealthCheck = true
469 })
470}
Stephane Barbarie260a5632019-02-26 16:12:49 -0500471
472// withHealthCheckFunc replaces the default health check function with the provided one. It makes
473// tests easier to change the health check function.
474//
475// For testing purpose only.
476func withHealthCheckFunc(f internal.HealthChecker) DialOption {
477 return newFuncDialOption(func(o *dialOptions) {
478 o.healthCheckFunc = f
479 })
480}
481
khenaidooac637102019-01-14 15:44:34 -0500482func defaultDialOptions() dialOptions {
483 return dialOptions{
Stephane Barbarie260a5632019-02-26 16:12:49 -0500484 disableRetry: !envconfig.Retry,
485 reqHandshake: envconfig.RequireHandshake,
486 healthCheckFunc: internal.HealthCheckFunc,
khenaidooac637102019-01-14 15:44:34 -0500487 copts: transport.ConnectOptions{
488 WriteBufferSize: defaultWriteBufSize,
489 ReadBufferSize: defaultReadBufSize,
490 },
491 }
492}