| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You 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 model |
| |
| // LbPolicyType the load balance policy enum |
| type LbPolicyType string |
| |
| const ( |
| LoadBalancerRand LbPolicyType = "Rand" |
| LoadBalancerRoundRobin LbPolicyType = "RoundRobin" |
| LoadBalancerRingHashing LbPolicyType = "RingHashing" |
| LoadBalancerMaglevHashing LbPolicyType = "MaglevHashing" |
| LoadBalancerWeightRandom LbPolicyType = "WeightRandom" |
| ) |
| |
| var LbPolicyTypeValue = map[string]LbPolicyType{ |
| "Rand": LoadBalancerRand, |
| "RoundRobin": LoadBalancerRoundRobin, |
| "RingHashing": LoadBalancerRingHashing, |
| "MaglevHashing": LoadBalancerMaglevHashing, |
| "WeightRandom": LoadBalancerWeightRandom, |
| } |
| |
| type LbPolicy interface { |
| GenerateHash() string |
| } |
| |
| // LbConsistentHashView supports read-only consistent hash lookups. |
| type LbConsistentHashView interface { |
| Hash(key string) uint32 |
| Get(key string) (string, error) |
| GetHash(key uint32) (string, error) |
| } |
| |
| // LbConsistentHash supports mutable consistent hash load balancing. |
| type LbConsistentHash interface { |
| LbConsistentHashView |
| Add(host string) |
| Remove(host string) bool |
| } |
| |
| type readOnlyConsistentHash struct { |
| hash LbConsistentHash |
| } |
| |
| func (h readOnlyConsistentHash) Hash(key string) uint32 { |
| return h.hash.Hash(key) |
| } |
| |
| func (h readOnlyConsistentHash) Get(key string) (string, error) { |
| return h.hash.Get(key) |
| } |
| |
| func (h readOnlyConsistentHash) GetHash(key uint32) (string, error) { |
| return h.hash.GetHash(key) |
| } |
| |
| // ReadOnlyConsistentHash wraps an LbConsistentHash so callers on the request |
| // path cannot mutate it. Returns nil if hash is nil. |
| func ReadOnlyConsistentHash(hash LbConsistentHash) LbConsistentHashView { |
| if hash == nil { |
| return nil |
| } |
| return readOnlyConsistentHash{hash: hash} |
| } |
| |
| type ConsistentHashInitFunc = func(ConsistentHash, []*Endpoint) LbConsistentHash |
| |
| // ConsistentHashInitMap stores the Init functions for consistent hash load balancing |
| var ConsistentHashInitMap = map[LbPolicyType]ConsistentHashInitFunc{} |