internal.go 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 exported by dialoptions.go
  28. WithResolverBuilder interface{} // func (resolver.Builder) grpc.DialOption
  29. // WithHealthCheckFunc is not exported 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. // ParseServiceConfig is a function to parse JSON service configs into
  39. // opaque data structures.
  40. ParseServiceConfig func(sc string) (interface{}, error)
  41. // StatusRawProto is exported by status/status.go. This func returns a
  42. // pointer to the wrapped Status proto for a given status.Status without a
  43. // call to proto.Clone(). The returned Status proto should not be mutated by
  44. // the caller.
  45. StatusRawProto interface{} // func (*status.Status) *spb.Status
  46. )
  47. // HealthChecker defines the signature of the client-side LB channel health checking function.
  48. //
  49. // The implementation is expected to create a health checking RPC stream by
  50. // calling newStream(), watch for the health status of serviceName, and report
  51. // it's health back by calling setConnectivityState().
  52. //
  53. // The health checking protocol is defined at:
  54. // https://github.com/grpc/grpc/blob/master/doc/health-checking.md
  55. type HealthChecker func(ctx context.Context, newStream func(string) (interface{}, error), setConnectivityState func(connectivity.State), serviceName string) error
  56. const (
  57. // CredsBundleModeFallback switches GoogleDefaultCreds to fallback mode.
  58. CredsBundleModeFallback = "fallback"
  59. // CredsBundleModeBalancer switches GoogleDefaultCreds to grpclb balancer
  60. // mode.
  61. CredsBundleModeBalancer = "balancer"
  62. // CredsBundleModeBackendFromBalancer switches GoogleDefaultCreds to mode
  63. // that supports backend returned by grpclb balancer.
  64. CredsBundleModeBackendFromBalancer = "backend-from-balancer"
  65. )