| /* |
| * |
| * Copyright 2019 gRPC authors. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| * |
| */ |
| |
| // Package weightedroundrobin defines a weighted roundrobin balancer. |
| package weightedroundrobin |
| |
| import ( |
| "google.golang.org/grpc/resolver" |
| ) |
| |
| // Name is the name of weighted_round_robin balancer. |
| const Name = "weighted_round_robin" |
| |
| // attributeKey is the type used as the key to store AddrInfo in the Attributes |
| // field of resolver.Address. |
| type attributeKey struct{} |
| |
| // AddrInfo will be stored inside Address metadata in order to use weighted |
| // roundrobin balancer. |
| type AddrInfo struct { |
| Weight uint32 |
| } |
| |
| // SetAddrInfo returns a copy of addr in which the Attributes field is updated |
| // with addrInfo. |
| // |
| // Experimental |
| // |
| // Notice: This API is EXPERIMENTAL and may be changed or removed in a |
| // later release. |
| func SetAddrInfo(addr resolver.Address, addrInfo AddrInfo) resolver.Address { |
| addr.Attributes = addr.Attributes.WithValues(attributeKey{}, addrInfo) |
| return addr |
| } |
| |
| // GetAddrInfo returns the AddrInfo stored in the Attributes fields of addr. |
| // |
| // Experimental |
| // |
| // Notice: This API is EXPERIMENTAL and may be changed or removed in a |
| // later release. |
| func GetAddrInfo(addr resolver.Address) AddrInfo { |
| v := addr.Attributes.Value(attributeKey{}) |
| ai, _ := v.(AddrInfo) |
| return ai |
| } |