blob: b96b3597caa1e61787e334a3dfe919477130e082 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001/*
2 * Copyright 2016 gRPC authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18// Package internal contains gRPC-internal code, to avoid polluting
19// the godoc of the top-level grpc package. It must not import any grpc
20// symbols to avoid circular dependencies.
21package internal
22
23import (
24 "context"
25 "time"
26
27 "google.golang.org/grpc/connectivity"
28)
29
30var (
Don Newtone0d34a82019-11-14 10:58:06 -050031 // WithResolverBuilder is set by dialoptions.go
Don Newton98fd8812019-09-23 15:15:02 -040032 WithResolverBuilder interface{} // func (resolver.Builder) grpc.DialOption
Don Newtone0d34a82019-11-14 10:58:06 -050033 // WithHealthCheckFunc is set by dialoptions.go
Don Newton98fd8812019-09-23 15:15:02 -040034 WithHealthCheckFunc interface{} // func (HealthChecker) DialOption
35 // HealthCheckFunc is used to provide client-side LB channel health checking
36 HealthCheckFunc HealthChecker
37 // BalancerUnregister is exported by package balancer to unregister a balancer.
38 BalancerUnregister func(name string)
39 // KeepaliveMinPingTime is the minimum ping interval. This must be 10s by
40 // default, but tests may wish to set it lower for convenience.
41 KeepaliveMinPingTime = 10 * time.Second
Don Newton98fd8812019-09-23 15:15:02 -040042 // StatusRawProto is exported by status/status.go. This func returns a
43 // pointer to the wrapped Status proto for a given status.Status without a
44 // call to proto.Clone(). The returned Status proto should not be mutated by
45 // the caller.
46 StatusRawProto interface{} // func (*status.Status) *spb.Status
Don Newtone0d34a82019-11-14 10:58:06 -050047 // NewRequestInfoContext creates a new context based on the argument context attaching
48 // the passed in RequestInfo to the new context.
49 NewRequestInfoContext interface{} // func(context.Context, credentials.RequestInfo) context.Context
50 // ParseServiceConfigForTesting is for creating a fake
51 // ClientConn for resolver testing only
52 ParseServiceConfigForTesting interface{} // func(string) *serviceconfig.ParseResult
Don Newton98fd8812019-09-23 15:15:02 -040053)
54
55// HealthChecker defines the signature of the client-side LB channel health checking function.
56//
57// The implementation is expected to create a health checking RPC stream by
58// calling newStream(), watch for the health status of serviceName, and report
59// it's health back by calling setConnectivityState().
60//
61// The health checking protocol is defined at:
62// https://github.com/grpc/grpc/blob/master/doc/health-checking.md
63type HealthChecker func(ctx context.Context, newStream func(string) (interface{}, error), setConnectivityState func(connectivity.State), serviceName string) error
64
65const (
66 // CredsBundleModeFallback switches GoogleDefaultCreds to fallback mode.
67 CredsBundleModeFallback = "fallback"
68 // CredsBundleModeBalancer switches GoogleDefaultCreds to grpclb balancer
69 // mode.
70 CredsBundleModeBalancer = "balancer"
71 // CredsBundleModeBackendFromBalancer switches GoogleDefaultCreds to mode
72 // that supports backend returned by grpclb balancer.
73 CredsBundleModeBackendFromBalancer = "backend-from-balancer"
74)