blob: 8537db0b6898e2187c99a0787ca3277492860b87 [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 context
import (
"encoding/base64"
)
import (
core_mesh "github.com/apache/dubbo-kubernetes/pkg/core/resources/apis/mesh"
"github.com/apache/dubbo-kubernetes/pkg/core/xds"
"github.com/apache/dubbo-kubernetes/pkg/xds/envoy"
)
type Context struct {
ControlPlane *ControlPlaneContext
Mesh MeshContext
}
type ConnectionInfo struct {
// Authority defines the URL that was used by the data plane to connect to the control plane
Authority string
}
// ControlPlaneContext contains shared global data and components that are required for generating XDS
// This data is the same regardless of a data plane proxy and mesh we are generating the data for.
type ControlPlaneContext struct {
CLACache envoy.CLACache
Zone string
}
// GlobalContext holds resources that are Global
type GlobalContext struct {
ResourceMap ResourceMap
hash []byte
}
// Hash base64 version of the hash mostly used for testing
func (g GlobalContext) Hash() string {
return base64.StdEncoding.EncodeToString(g.hash)
}
// BaseMeshContext holds for a Mesh a set of resources that are changing less often (policies, external services...)
type BaseMeshContext struct {
Mesh *core_mesh.MeshResource
ResourceMap ResourceMap
hash []byte
}
// Hash base64 version of the hash mostly useed for testing
func (g BaseMeshContext) Hash() string {
return base64.StdEncoding.EncodeToString(g.hash)
}
type MeshContext struct {
Hash string
Resource *core_mesh.MeshResource
Resources Resources
DataplanesByName map[string]*core_mesh.DataplaneResource
EndpointMap xds.EndpointMap
ServicesInformation map[string]*ServiceInformation
}
type ServiceInformation struct {
TLSReadiness bool
Protocol core_mesh.Protocol
IsExternalService bool
}
func (mc *MeshContext) GetServiceProtocol(serviceName string) core_mesh.Protocol {
if info, found := mc.ServicesInformation[serviceName]; found {
return info.Protocol
}
return core_mesh.ProtocolUnknown
}
// AggregatedMeshContexts is an aggregate of all MeshContext across all meshes
type AggregatedMeshContexts struct {
Hash string
Meshes []*core_mesh.MeshResource
MeshContextsByName map[string]MeshContext
}
// MustGetMeshContext panics if there is no mesh context for given mesh. Call it when iterating over .Meshes
// There is a guarantee that for every Mesh in .Meshes there is a MeshContext.
func (m AggregatedMeshContexts) MustGetMeshContext(meshName string) MeshContext {
meshCtx, ok := m.MeshContextsByName[meshName]
if !ok {
panic("there should be a corresponding mesh context for every mesh in mesh contexts")
}
return meshCtx
}
func (m AggregatedMeshContexts) AllDataplanes() []*core_mesh.DataplaneResource {
var resources []*core_mesh.DataplaneResource
for _, mesh := range m.Meshes {
meshCtx := m.MustGetMeshContext(mesh.Meta.GetName())
resources = append(resources, meshCtx.Resources.Dataplanes().Items...)
}
return resources
}
func (m AggregatedMeshContexts) ZoneIngresses() []*core_mesh.ZoneIngressResource {
for _, meshCtx := range m.MeshContextsByName {
return meshCtx.Resources.ZoneIngresses().Items // all mesh contexts has the same list
}
return nil
}