2015-07-20 17:44:35 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright 2014, Google Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following disclaimer
|
|
|
|
* in the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name of Google Inc. nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2016-03-22 17:42:33 +00:00
|
|
|
"fmt"
|
2015-07-20 17:44:35 +00:00
|
|
|
"net"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
2016-03-22 17:42:33 +00:00
|
|
|
"golang.org/x/net/trace"
|
2015-07-20 17:44:35 +00:00
|
|
|
"google.golang.org/grpc/credentials"
|
|
|
|
"google.golang.org/grpc/grpclog"
|
|
|
|
"google.golang.org/grpc/transport"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrUnspecTarget indicates that the target address is unspecified.
|
|
|
|
ErrUnspecTarget = errors.New("grpc: target is unspecified")
|
2016-03-22 17:42:33 +00:00
|
|
|
// ErrNoTransportSecurity indicates that there is no transport security
|
|
|
|
// being set for ClientConn. Users should either set one or explicitly
|
|
|
|
// call WithInsecure DialOption to disable security.
|
|
|
|
ErrNoTransportSecurity = errors.New("grpc: no transport security set (use grpc.WithInsecure() explicitly or set credentials)")
|
|
|
|
// ErrCredentialsMisuse indicates that users want to transmit security information
|
|
|
|
// (e.g., oauth2 token) which requires secure connection on an insecure
|
|
|
|
// connection.
|
|
|
|
ErrCredentialsMisuse = errors.New("grpc: the credentials require transport level security (use grpc.WithTransportAuthenticator() to set)")
|
2015-07-20 17:44:35 +00:00
|
|
|
// ErrClientConnClosing indicates that the operation is illegal because
|
|
|
|
// the session is closing.
|
|
|
|
ErrClientConnClosing = errors.New("grpc: the client connection is closing")
|
|
|
|
// ErrClientConnTimeout indicates that the connection could not be
|
|
|
|
// established or re-established within the specified timeout.
|
|
|
|
ErrClientConnTimeout = errors.New("grpc: timed out trying to connect")
|
2016-03-22 17:42:33 +00:00
|
|
|
// minimum time to give a connection to complete
|
|
|
|
minConnectTimeout = 20 * time.Second
|
2015-07-20 17:44:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// dialOptions configure a Dial call. dialOptions are set by the DialOption
|
|
|
|
// values passed to Dial.
|
|
|
|
type dialOptions struct {
|
2016-03-22 17:42:33 +00:00
|
|
|
codec Codec
|
|
|
|
cp Compressor
|
|
|
|
dc Decompressor
|
|
|
|
picker Picker
|
|
|
|
block bool
|
|
|
|
insecure bool
|
|
|
|
copts transport.ConnectOptions
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DialOption configures how we set up the connection.
|
|
|
|
type DialOption func(*dialOptions)
|
|
|
|
|
|
|
|
// WithCodec returns a DialOption which sets a codec for message marshaling and unmarshaling.
|
|
|
|
func WithCodec(c Codec) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.codec = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// WithCompressor returns a DialOption which sets a CompressorGenerator for generating message
|
|
|
|
// compressor.
|
|
|
|
func WithCompressor(cp Compressor) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.cp = cp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithDecompressor returns a DialOption which sets a DecompressorGenerator for generating
|
|
|
|
// message decompressor.
|
|
|
|
func WithDecompressor(dc Decompressor) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.dc = dc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithPicker returns a DialOption which sets a picker for connection selection.
|
|
|
|
func WithPicker(p Picker) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.picker = p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:44:35 +00:00
|
|
|
// WithBlock returns a DialOption which makes caller of Dial blocks until the underlying
|
|
|
|
// connection is up. Without this, Dial returns immediately and connecting the server
|
|
|
|
// happens in background.
|
|
|
|
func WithBlock() DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.block = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// WithInsecure returns a DialOption which disables transport security for this ClientConn.
|
|
|
|
// Note that transport security is required unless WithInsecure is set.
|
|
|
|
func WithInsecure() DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.insecure = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:44:35 +00:00
|
|
|
// WithTransportCredentials returns a DialOption which configures a
|
|
|
|
// connection level security credentials (e.g., TLS/SSL).
|
|
|
|
func WithTransportCredentials(creds credentials.TransportAuthenticator) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.copts.AuthOptions = append(o.copts.AuthOptions, creds)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithPerRPCCredentials returns a DialOption which sets
|
|
|
|
// credentials which will place auth state on each outbound RPC.
|
|
|
|
func WithPerRPCCredentials(creds credentials.Credentials) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.copts.AuthOptions = append(o.copts.AuthOptions, creds)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithTimeout returns a DialOption that configures a timeout for dialing a client connection.
|
|
|
|
func WithTimeout(d time.Duration) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.copts.Timeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithDialer returns a DialOption that specifies a function to use for dialing network addresses.
|
|
|
|
func WithDialer(f func(addr string, timeout time.Duration) (net.Conn, error)) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.copts.Dialer = f
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// WithUserAgent returns a DialOption that specifies a user agent string for all the RPCs.
|
|
|
|
func WithUserAgent(s string) DialOption {
|
|
|
|
return func(o *dialOptions) {
|
|
|
|
o.copts.UserAgent = s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:44:35 +00:00
|
|
|
// Dial creates a client connection the given target.
|
|
|
|
func Dial(target string, opts ...DialOption) (*ClientConn, error) {
|
|
|
|
cc := &ClientConn{
|
2016-03-22 17:42:33 +00:00
|
|
|
target: target,
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(&cc.dopts)
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
if cc.dopts.codec == nil {
|
|
|
|
// Set the default codec.
|
|
|
|
cc.dopts.codec = protoCodec{}
|
|
|
|
}
|
|
|
|
if cc.dopts.picker == nil {
|
|
|
|
cc.dopts.picker = &unicastPicker{
|
|
|
|
target: target,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := cc.dopts.picker.Init(cc); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
colonPos := strings.LastIndex(target, ":")
|
|
|
|
if colonPos == -1 {
|
|
|
|
colonPos = len(target)
|
|
|
|
}
|
|
|
|
cc.authority = target[:colonPos]
|
2016-03-22 17:42:33 +00:00
|
|
|
return cc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectivityState indicates the state of a client connection.
|
|
|
|
type ConnectivityState int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Idle indicates the ClientConn is idle.
|
|
|
|
Idle ConnectivityState = iota
|
|
|
|
// Connecting indicates the ClienConn is connecting.
|
|
|
|
Connecting
|
|
|
|
// Ready indicates the ClientConn is ready for work.
|
|
|
|
Ready
|
|
|
|
// TransientFailure indicates the ClientConn has seen a failure but expects to recover.
|
|
|
|
TransientFailure
|
|
|
|
// Shutdown indicates the ClientConn has started shutting down.
|
|
|
|
Shutdown
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s ConnectivityState) String() string {
|
|
|
|
switch s {
|
|
|
|
case Idle:
|
|
|
|
return "IDLE"
|
|
|
|
case Connecting:
|
|
|
|
return "CONNECTING"
|
|
|
|
case Ready:
|
|
|
|
return "READY"
|
|
|
|
case TransientFailure:
|
|
|
|
return "TRANSIENT_FAILURE"
|
|
|
|
case Shutdown:
|
|
|
|
return "SHUTDOWN"
|
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("unknown connectivity state: %d", s))
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ClientConn represents a client connection to an RPC service.
|
|
|
|
type ClientConn struct {
|
|
|
|
target string
|
|
|
|
authority string
|
|
|
|
dopts dialOptions
|
|
|
|
}
|
|
|
|
|
|
|
|
// State returns the connectivity state of cc.
|
|
|
|
// This is EXPERIMENTAL API.
|
|
|
|
func (cc *ClientConn) State() (ConnectivityState, error) {
|
|
|
|
return cc.dopts.picker.State()
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForStateChange blocks until the state changes to something other than the sourceState.
|
|
|
|
// It returns the new state or error.
|
|
|
|
// This is EXPERIMENTAL API.
|
|
|
|
func (cc *ClientConn) WaitForStateChange(ctx context.Context, sourceState ConnectivityState) (ConnectivityState, error) {
|
|
|
|
return cc.dopts.picker.WaitForStateChange(ctx, sourceState)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close starts to tear down the ClientConn.
|
|
|
|
func (cc *ClientConn) Close() error {
|
|
|
|
return cc.dopts.picker.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Conn is a client connection to a single destination.
|
|
|
|
type Conn struct {
|
|
|
|
target string
|
|
|
|
dopts dialOptions
|
|
|
|
resetChan chan int
|
|
|
|
shutdownChan chan struct{}
|
|
|
|
events trace.EventLog
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
state ConnectivityState
|
|
|
|
stateCV *sync.Cond
|
|
|
|
// ready is closed and becomes nil when a new transport is up or failed
|
|
|
|
// due to timeout.
|
|
|
|
ready chan struct{}
|
|
|
|
transport transport.ClientTransport
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewConn creates a Conn.
|
|
|
|
func NewConn(cc *ClientConn) (*Conn, error) {
|
|
|
|
if cc.target == "" {
|
|
|
|
return nil, ErrUnspecTarget
|
|
|
|
}
|
|
|
|
c := &Conn{
|
|
|
|
target: cc.target,
|
|
|
|
dopts: cc.dopts,
|
|
|
|
resetChan: make(chan int, 1),
|
|
|
|
shutdownChan: make(chan struct{}),
|
|
|
|
}
|
|
|
|
if EnableTracing {
|
|
|
|
c.events = trace.NewEventLog("grpc.ClientConn", c.target)
|
|
|
|
}
|
|
|
|
if !c.dopts.insecure {
|
|
|
|
var ok bool
|
|
|
|
for _, cd := range c.dopts.copts.AuthOptions {
|
|
|
|
if _, ok := cd.(credentials.TransportAuthenticator); !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ok = true
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
return nil, ErrNoTransportSecurity
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, cd := range c.dopts.copts.AuthOptions {
|
|
|
|
if cd.RequireTransportSecurity() {
|
|
|
|
return nil, ErrCredentialsMisuse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c.stateCV = sync.NewCond(&c.mu)
|
|
|
|
if c.dopts.block {
|
|
|
|
if err := c.resetTransport(false); err != nil {
|
|
|
|
c.Close()
|
2015-07-20 17:44:35 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Start to monitor the error status of transport.
|
2016-03-22 17:42:33 +00:00
|
|
|
go c.transportMonitor()
|
2015-07-20 17:44:35 +00:00
|
|
|
} else {
|
|
|
|
// Start a goroutine connecting to the server asynchronously.
|
|
|
|
go func() {
|
2016-03-22 17:42:33 +00:00
|
|
|
if err := c.resetTransport(false); err != nil {
|
|
|
|
grpclog.Printf("Failed to dial %s: %v; please retry.", c.target, err)
|
|
|
|
c.Close()
|
2015-07-20 17:44:35 +00:00
|
|
|
return
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
c.transportMonitor()
|
2015-07-20 17:44:35 +00:00
|
|
|
}()
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
return c, nil
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// printf records an event in cc's event log, unless cc has been closed.
|
|
|
|
// REQUIRES cc.mu is held.
|
|
|
|
func (cc *Conn) printf(format string, a ...interface{}) {
|
|
|
|
if cc.events != nil {
|
|
|
|
cc.events.Printf(format, a...)
|
|
|
|
}
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// errorf records an error in cc's event log, unless cc has been closed.
|
|
|
|
// REQUIRES cc.mu is held.
|
|
|
|
func (cc *Conn) errorf(format string, a ...interface{}) {
|
|
|
|
if cc.events != nil {
|
|
|
|
cc.events.Errorf(format, a...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// State returns the connectivity state of the Conn
|
|
|
|
func (cc *Conn) State() ConnectivityState {
|
|
|
|
cc.mu.Lock()
|
|
|
|
defer cc.mu.Unlock()
|
|
|
|
return cc.state
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForStateChange blocks until the state changes to something other than the sourceState.
|
|
|
|
func (cc *Conn) WaitForStateChange(ctx context.Context, sourceState ConnectivityState) (ConnectivityState, error) {
|
|
|
|
cc.mu.Lock()
|
|
|
|
defer cc.mu.Unlock()
|
|
|
|
if sourceState != cc.state {
|
|
|
|
return cc.state, nil
|
|
|
|
}
|
|
|
|
done := make(chan struct{})
|
|
|
|
var err error
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
cc.mu.Lock()
|
|
|
|
err = ctx.Err()
|
|
|
|
cc.stateCV.Broadcast()
|
|
|
|
cc.mu.Unlock()
|
|
|
|
case <-done:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
defer close(done)
|
|
|
|
for sourceState == cc.state {
|
|
|
|
cc.stateCV.Wait()
|
|
|
|
if err != nil {
|
|
|
|
return cc.state, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cc.state, nil
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// NotifyReset tries to signal the underlying transport needs to be reset due to
|
|
|
|
// for example a name resolution change in flight.
|
|
|
|
func (cc *Conn) NotifyReset() {
|
|
|
|
select {
|
|
|
|
case cc.resetChan <- 0:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cc *Conn) resetTransport(closeTransport bool) error {
|
2015-07-20 17:44:35 +00:00
|
|
|
var retries int
|
|
|
|
start := time.Now()
|
|
|
|
for {
|
|
|
|
cc.mu.Lock()
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.printf("connecting")
|
|
|
|
if cc.state == Shutdown {
|
|
|
|
// cc.Close() has been invoked.
|
2015-07-20 17:44:35 +00:00
|
|
|
cc.mu.Unlock()
|
|
|
|
return ErrClientConnClosing
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.state = Connecting
|
|
|
|
cc.stateCV.Broadcast()
|
2015-07-20 17:44:35 +00:00
|
|
|
cc.mu.Unlock()
|
|
|
|
if closeTransport {
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.transport.Close()
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
|
|
|
// Adjust timeout for the current try.
|
|
|
|
copts := cc.dopts.copts
|
|
|
|
if copts.Timeout < 0 {
|
|
|
|
cc.Close()
|
|
|
|
return ErrClientConnTimeout
|
|
|
|
}
|
|
|
|
if copts.Timeout > 0 {
|
|
|
|
copts.Timeout -= time.Since(start)
|
|
|
|
if copts.Timeout <= 0 {
|
|
|
|
cc.Close()
|
|
|
|
return ErrClientConnTimeout
|
|
|
|
}
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
sleepTime := backoff(retries)
|
|
|
|
timeout := sleepTime
|
|
|
|
if timeout < minConnectTimeout {
|
|
|
|
timeout = minConnectTimeout
|
|
|
|
}
|
|
|
|
if copts.Timeout == 0 || copts.Timeout > timeout {
|
|
|
|
copts.Timeout = timeout
|
|
|
|
}
|
|
|
|
connectTime := time.Now()
|
|
|
|
addr, err := cc.dopts.picker.PickAddr()
|
|
|
|
var newTransport transport.ClientTransport
|
|
|
|
if err == nil {
|
|
|
|
newTransport, err = transport.NewClientTransport(addr, &copts)
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
if err != nil {
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.mu.Lock()
|
|
|
|
if cc.state == Shutdown {
|
|
|
|
// cc.Close() has been invoked.
|
|
|
|
cc.mu.Unlock()
|
|
|
|
return ErrClientConnClosing
|
|
|
|
}
|
|
|
|
cc.errorf("transient failure: %v", err)
|
|
|
|
cc.state = TransientFailure
|
|
|
|
cc.stateCV.Broadcast()
|
|
|
|
if cc.ready != nil {
|
|
|
|
close(cc.ready)
|
|
|
|
cc.ready = nil
|
|
|
|
}
|
|
|
|
cc.mu.Unlock()
|
|
|
|
sleepTime -= time.Since(connectTime)
|
|
|
|
if sleepTime < 0 {
|
|
|
|
sleepTime = 0
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
// Fail early before falling into sleep.
|
|
|
|
if cc.dopts.copts.Timeout > 0 && cc.dopts.copts.Timeout < sleepTime+time.Since(start) {
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.mu.Lock()
|
|
|
|
cc.errorf("connection timeout")
|
|
|
|
cc.mu.Unlock()
|
2015-07-20 17:44:35 +00:00
|
|
|
cc.Close()
|
|
|
|
return ErrClientConnTimeout
|
|
|
|
}
|
|
|
|
closeTransport = false
|
|
|
|
time.Sleep(sleepTime)
|
|
|
|
retries++
|
2016-03-22 17:42:33 +00:00
|
|
|
grpclog.Printf("grpc: Conn.resetTransport failed to create client transport: %v; Reconnecting to %q", err, cc.target)
|
2015-07-20 17:44:35 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
cc.mu.Lock()
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.printf("ready")
|
|
|
|
if cc.state == Shutdown {
|
2015-07-20 17:44:35 +00:00
|
|
|
// cc.Close() has been invoked.
|
|
|
|
cc.mu.Unlock()
|
|
|
|
newTransport.Close()
|
|
|
|
return ErrClientConnClosing
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.state = Ready
|
|
|
|
cc.stateCV.Broadcast()
|
2015-07-20 17:44:35 +00:00
|
|
|
cc.transport = newTransport
|
|
|
|
if cc.ready != nil {
|
|
|
|
close(cc.ready)
|
|
|
|
cc.ready = nil
|
|
|
|
}
|
|
|
|
cc.mu.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
func (cc *Conn) reconnect() bool {
|
|
|
|
cc.mu.Lock()
|
|
|
|
if cc.state == Shutdown {
|
|
|
|
// cc.Close() has been invoked.
|
|
|
|
cc.mu.Unlock()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
cc.state = TransientFailure
|
|
|
|
cc.stateCV.Broadcast()
|
|
|
|
cc.mu.Unlock()
|
|
|
|
if err := cc.resetTransport(true); err != nil {
|
|
|
|
// The ClientConn is closing.
|
|
|
|
cc.mu.Lock()
|
|
|
|
cc.printf("transport exiting: %v", err)
|
|
|
|
cc.mu.Unlock()
|
|
|
|
grpclog.Printf("grpc: Conn.transportMonitor exits due to: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:44:35 +00:00
|
|
|
// Run in a goroutine to track the error in transport and create the
|
|
|
|
// new transport if an error happens. It returns when the channel is closing.
|
2016-03-22 17:42:33 +00:00
|
|
|
func (cc *Conn) transportMonitor() {
|
2015-07-20 17:44:35 +00:00
|
|
|
for {
|
|
|
|
select {
|
2016-03-22 17:42:33 +00:00
|
|
|
// shutdownChan is needed to detect the teardown when
|
2015-07-20 17:44:35 +00:00
|
|
|
// the ClientConn is idle (i.e., no RPC in flight).
|
|
|
|
case <-cc.shutdownChan:
|
|
|
|
return
|
2016-03-22 17:42:33 +00:00
|
|
|
case <-cc.resetChan:
|
|
|
|
if !cc.reconnect() {
|
|
|
|
return
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
case <-cc.transport.Error():
|
2016-03-22 17:42:33 +00:00
|
|
|
if !cc.reconnect() {
|
2015-07-20 17:44:35 +00:00
|
|
|
return
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
// Tries to drain reset signal if there is any since it is out-dated.
|
|
|
|
select {
|
|
|
|
case <-cc.resetChan:
|
|
|
|
default:
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// Wait blocks until i) the new transport is up or ii) ctx is done or iii) cc is closed.
|
|
|
|
func (cc *Conn) Wait(ctx context.Context) (transport.ClientTransport, error) {
|
2015-07-20 17:44:35 +00:00
|
|
|
for {
|
|
|
|
cc.mu.Lock()
|
|
|
|
switch {
|
2016-03-22 17:42:33 +00:00
|
|
|
case cc.state == Shutdown:
|
2015-07-20 17:44:35 +00:00
|
|
|
cc.mu.Unlock()
|
2016-03-22 17:42:33 +00:00
|
|
|
return nil, ErrClientConnClosing
|
|
|
|
case cc.state == Ready:
|
|
|
|
ct := cc.transport
|
|
|
|
cc.mu.Unlock()
|
|
|
|
return ct, nil
|
2015-07-20 17:44:35 +00:00
|
|
|
default:
|
|
|
|
ready := cc.ready
|
|
|
|
if ready == nil {
|
|
|
|
ready = make(chan struct{})
|
|
|
|
cc.ready = ready
|
|
|
|
}
|
|
|
|
cc.mu.Unlock()
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2016-03-22 17:42:33 +00:00
|
|
|
return nil, transport.ContextErr(ctx.Err())
|
2015-07-20 17:44:35 +00:00
|
|
|
// Wait until the new transport is ready or failed.
|
|
|
|
case <-ready:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// Close starts to tear down the Conn. Returns ErrClientConnClosing if
|
2015-07-20 17:44:35 +00:00
|
|
|
// it has been closed (mostly due to dial time-out).
|
|
|
|
// TODO(zhaoq): Make this synchronous to avoid unbounded memory consumption in
|
|
|
|
// some edge cases (e.g., the caller opens and closes many ClientConn's in a
|
|
|
|
// tight loop.
|
2016-03-22 17:42:33 +00:00
|
|
|
func (cc *Conn) Close() error {
|
2015-07-20 17:44:35 +00:00
|
|
|
cc.mu.Lock()
|
|
|
|
defer cc.mu.Unlock()
|
2016-03-22 17:42:33 +00:00
|
|
|
if cc.state == Shutdown {
|
2015-07-20 17:44:35 +00:00
|
|
|
return ErrClientConnClosing
|
|
|
|
}
|
2016-03-22 17:42:33 +00:00
|
|
|
cc.state = Shutdown
|
|
|
|
cc.stateCV.Broadcast()
|
|
|
|
if cc.events != nil {
|
|
|
|
cc.events.Finish()
|
|
|
|
cc.events = nil
|
|
|
|
}
|
2015-07-20 17:44:35 +00:00
|
|
|
if cc.ready != nil {
|
|
|
|
close(cc.ready)
|
|
|
|
cc.ready = nil
|
|
|
|
}
|
|
|
|
if cc.transport != nil {
|
|
|
|
cc.transport.Close()
|
|
|
|
}
|
|
|
|
if cc.shutdownChan != nil {
|
|
|
|
close(cc.shutdownChan)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|