| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*
- *
- * 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 grpclb
- import (
- "encoding/json"
- "google.golang.org/grpc"
- "google.golang.org/grpc/balancer/roundrobin"
- )
- type serviceConfig struct {
- LoadBalancingConfig *[]map[string]*grpclbServiceConfig
- }
- type grpclbServiceConfig struct {
- ChildPolicy *[]map[string]json.RawMessage
- }
- func parseFullServiceConfig(s string) *serviceConfig {
- var ret serviceConfig
- err := json.Unmarshal([]byte(s), &ret)
- if err != nil {
- return nil
- }
- return &ret
- }
- func parseServiceConfig(s string) *grpclbServiceConfig {
- parsedSC := parseFullServiceConfig(s)
- if parsedSC == nil {
- return nil
- }
- lbConfigs := parsedSC.LoadBalancingConfig
- if lbConfigs == nil {
- return nil
- }
- for _, lbC := range *lbConfigs {
- if v, ok := lbC[grpclbName]; ok {
- return v
- }
- }
- return nil
- }
- const (
- roundRobinName = roundrobin.Name
- pickFirstName = grpc.PickFirstBalancerName
- )
- func childIsPickFirst(s string) bool {
- parsedSC := parseServiceConfig(s)
- if parsedSC == nil {
- return false
- }
- childConfigs := parsedSC.ChildPolicy
- if childConfigs == nil {
- return false
- }
- for _, childC := range *childConfigs {
- // If round_robin exists before pick_first, return false
- if _, ok := childC[roundRobinName]; ok {
- return false
- }
- // If pick_first is before round_robin, return true
- if _, ok := childC[pickFirstName]; ok {
- return true
- }
- }
- return false
- }
|