internal.go 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  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. // Package internal contains gRPC-internal code, to avoid polluting
  18. // the godoc of the top-level grpc package. It must not import any grpc
  19. // symbols to avoid circular dependencies.
  20. package internal
  21. import (
  22. "context"
  23. "time"
  24. "google.golang.org/grpc/connectivity"
  25. )
  26. var (
  27. // WithResolverBuilder is set by dialoptions.go
  28. WithResolverBuilder interface{} // func (resolver.Builder) grpc.DialOption
  29. // WithHealthCheckFunc is set by dialoptions.go
  30. WithHealthCheckFunc interface{} // func (HealthChecker) DialOption
  31. // HealthCheckFunc is used to provide client-side LB channel health checking
  32. HealthCheckFunc HealthChecker
  33. // BalancerUnregister is exported by package balancer to unregister a balancer.
  34. BalancerUnregister func(name string)
  35. // KeepaliveMinPingTime is the minimum ping interval. This must be 10s by
  36. // default, but tests may wish to set it lower for convenience.
  37. KeepaliveMinPingTime = 10 * time.Second
  38. // StatusRawProto is exported by status/status.go. This func returns a
  39. // pointer to the wrapped Status proto for a given status.Status without a
  40. // call to proto.Clone(). The returned Status proto should not be mutated by
  41. // the caller.
  42. StatusRawProto interface{} // func (*status.Status) *spb.Status
  43. // NewRequestInfoContext creates a new context based on the argument context attaching
  44. // the passed in RequestInfo to the new context.
  45. NewRequestInfoContext interface{} // func(context.Context, credentials.RequestInfo) context.Context
  46. // ParseServiceConfigForTesting is for creating a fake
  47. // ClientConn for resolver testing only
  48. ParseServiceConfigForTesting interface{} // func(string) *serviceconfig.ParseResult
  49. )
  50. // HealthChecker defines the signature of the client-side LB channel health checking function.
  51. //
  52. // The implementation is expected to create a health checking RPC stream by
  53. // calling newStream(), watch for the health status of serviceName, and report
  54. // it's health back by calling setConnectivityState().
  55. //
  56. // The health checking protocol is defined at:
  57. // https://github.com/grpc/grpc/blob/master/doc/health-checking.md
  58. type HealthChecker func(ctx context.Context, newStream func(string) (interface{}, error), setConnectivityState func(connectivity.State, error), serviceName string) error
  59. const (
  60. // CredsBundleModeFallback switches GoogleDefaultCreds to fallback mode.
  61. CredsBundleModeFallback = "fallback"
  62. // CredsBundleModeBalancer switches GoogleDefaultCreds to grpclb balancer
  63. // mode.
  64. CredsBundleModeBalancer = "balancer"
  65. // CredsBundleModeBackendFromBalancer switches GoogleDefaultCreds to mode
  66. // that supports backend returned by grpclb balancer.
  67. CredsBundleModeBackendFromBalancer = "backend-from-balancer"
  68. )