blob: cf142f7e3f8cb5f2f98cea56a42ab83473c07fd2 [file] [log] [blame]
/*
* 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 mesh
import (
"hash/fnv"
"net"
"strconv"
)
import (
"github.com/apache/dubbo-kubernetes/pkg/core/resources/model"
)
func (r *ZoneEgressResource) UsesInboundInterface(address net.IP, port uint32) bool {
if r == nil {
return false
}
if port == r.Spec.GetNetworking().GetPort() && overlap(address, net.ParseIP(r.Spec.GetNetworking().GetAddress())) {
return true
}
return false
}
func (r *ZoneEgressResource) IsIPv6() bool {
if r == nil {
return false
}
ip := net.ParseIP(r.Spec.GetNetworking().GetAddress())
if ip == nil {
return false
}
return ip.To4() == nil
}
func (r *ZoneEgressResource) AdminAddress(defaultAdminPort uint32) string {
if r == nil {
return ""
}
ip := r.Spec.GetNetworking().GetAddress()
adminPort := r.Spec.GetNetworking().GetAdmin().GetPort()
if adminPort == 0 {
adminPort = defaultAdminPort
}
return net.JoinHostPort(ip, strconv.FormatUint(uint64(adminPort), 10))
}
func (r *ZoneEgressResource) Hash() []byte {
hasher := fnv.New128a()
_, _ = hasher.Write(model.HashMeta(r))
_, _ = hasher.Write([]byte(r.Spec.GetNetworking().GetAddress()))
return hasher.Sum(nil)
}