resolver.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. *
  3. * Copyright 2017 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. // Package resolver defines APIs for name resolution in gRPC.
  19. // All APIs in this package are experimental.
  20. package resolver
  21. var (
  22. // m is a map from scheme to resolver builder.
  23. m = make(map[string]Builder)
  24. // defaultScheme is the default scheme to use.
  25. defaultScheme = "passthrough"
  26. )
  27. // TODO(bar) install dns resolver in init(){}.
  28. // Register registers the resolver builder to the resolver map.
  29. // b.Scheme will be used as the scheme registered with this builder.
  30. func Register(b Builder) {
  31. m[b.Scheme()] = b
  32. }
  33. // Get returns the resolver builder registered with the given scheme.
  34. //
  35. // If no builder is register with the scheme, nil will be returned.
  36. func Get(scheme string) Builder {
  37. if b, ok := m[scheme]; ok {
  38. return b
  39. }
  40. return nil
  41. }
  42. // SetDefaultScheme sets the default scheme that will be used.
  43. // The default default scheme is "passthrough".
  44. func SetDefaultScheme(scheme string) {
  45. defaultScheme = scheme
  46. }
  47. // GetDefaultScheme gets the default scheme that will be used.
  48. func GetDefaultScheme() string {
  49. return defaultScheme
  50. }
  51. // AddressType indicates the address type returned by name resolution.
  52. type AddressType uint8
  53. const (
  54. // Backend indicates the address is for a backend server.
  55. Backend AddressType = iota
  56. // GRPCLB indicates the address is for a grpclb load balancer.
  57. GRPCLB
  58. )
  59. // Address represents a server the client connects to.
  60. // This is the EXPERIMENTAL API and may be changed or extended in the future.
  61. type Address struct {
  62. // Addr is the server address on which a connection will be established.
  63. Addr string
  64. // Type is the type of this address.
  65. Type AddressType
  66. // ServerName is the name of this address.
  67. //
  68. // e.g. if Type is GRPCLB, ServerName should be the name of the remote load
  69. // balancer, not the name of the backend.
  70. ServerName string
  71. // Metadata is the information associated with Addr, which may be used
  72. // to make load balancing decision.
  73. Metadata interface{}
  74. }
  75. // BuildOption includes additional information for the builder to create
  76. // the resolver.
  77. type BuildOption struct {
  78. }
  79. // ClientConn contains the callbacks for resolver to notify any updates
  80. // to the gRPC ClientConn.
  81. //
  82. // This interface is to be implemented by gRPC. Users should not need a
  83. // brand new implementation of this interface. For the situations like
  84. // testing, the new implementation should embed this interface. This allows
  85. // gRPC to add new methods to this interface.
  86. type ClientConn interface {
  87. // NewAddress is called by resolver to notify ClientConn a new list
  88. // of resolved addresses.
  89. // The address list should be the complete list of resolved addresses.
  90. NewAddress(addresses []Address)
  91. // NewServiceConfig is called by resolver to notify ClientConn a new
  92. // service config. The service config should be provided as a json string.
  93. NewServiceConfig(serviceConfig string)
  94. }
  95. // Target represents a target for gRPC, as specified in:
  96. // https://github.com/grpc/grpc/blob/master/doc/naming.md.
  97. type Target struct {
  98. Scheme string
  99. Authority string
  100. Endpoint string
  101. }
  102. // Builder creates a resolver that will be used to watch name resolution updates.
  103. type Builder interface {
  104. // Build creates a new resolver for the given target.
  105. //
  106. // gRPC dial calls Build synchronously, and fails if the returned error is
  107. // not nil.
  108. Build(target Target, cc ClientConn, opts BuildOption) (Resolver, error)
  109. // Scheme returns the scheme supported by this resolver.
  110. // Scheme is defined at https://github.com/grpc/grpc/blob/master/doc/naming.md.
  111. Scheme() string
  112. }
  113. // ResolveNowOption includes additional information for ResolveNow.
  114. type ResolveNowOption struct{}
  115. // Resolver watches for the updates on the specified target.
  116. // Updates include address updates and service config updates.
  117. type Resolver interface {
  118. // ResolveNow will be called by gRPC to try to resolve the target name
  119. // again. It's just a hint, resolver can ignore this if it's not necessary.
  120. //
  121. // It could be called multiple times concurrently.
  122. ResolveNow(ResolveNowOption)
  123. // Close closes the resolver.
  124. Close()
  125. }
  126. // UnregisterForTesting removes the resolver builder with the given scheme from the
  127. // resolver map.
  128. // This function is for testing only.
  129. func UnregisterForTesting(scheme string) {
  130. delete(m, scheme)
  131. }