mirror of https://github.com/status-im/consul.git
50 lines
1.6 KiB
Go
50 lines
1.6 KiB
Go
|
package xdscommon
|
||
|
|
||
|
import (
|
||
|
"github.com/golang/protobuf/proto"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// Resource types in xDS v3. These are copied from
|
||
|
// envoyproxy/go-control-plane/pkg/resource/v3/resource.go since we don't need any of
|
||
|
// the rest of that package.
|
||
|
apiTypePrefix = "type.googleapis.com/"
|
||
|
|
||
|
// EndpointType is the TypeURL for Endpoint discovery responses.
|
||
|
EndpointType = apiTypePrefix + "envoy.config.endpoint.v3.ClusterLoadAssignment"
|
||
|
|
||
|
// ClusterType is the TypeURL for Cluster discovery responses.
|
||
|
ClusterType = apiTypePrefix + "envoy.config.cluster.v3.Cluster"
|
||
|
|
||
|
// RouteType is the TypeURL for Route discovery responses.
|
||
|
RouteType = apiTypePrefix + "envoy.config.route.v3.RouteConfiguration"
|
||
|
|
||
|
// ListenerType is the TypeURL for Listener discovery responses.
|
||
|
ListenerType = apiTypePrefix + "envoy.config.listener.v3.Listener"
|
||
|
)
|
||
|
|
||
|
type IndexedResources struct {
|
||
|
// Index is a map of typeURL => resourceName => resource
|
||
|
Index map[string]map[string]proto.Message
|
||
|
|
||
|
// ChildIndex is a map of typeURL => parentResourceName => list of
|
||
|
// childResourceNames. This only applies if the child and parent do not
|
||
|
// share a name.
|
||
|
ChildIndex map[string]map[string][]string
|
||
|
}
|
||
|
|
||
|
func EmptyIndexedResources() *IndexedResources {
|
||
|
return &IndexedResources{
|
||
|
Index: map[string]map[string]proto.Message{
|
||
|
ListenerType: make(map[string]proto.Message),
|
||
|
RouteType: make(map[string]proto.Message),
|
||
|
ClusterType: make(map[string]proto.Message),
|
||
|
EndpointType: make(map[string]proto.Message),
|
||
|
},
|
||
|
ChildIndex: map[string]map[string][]string{
|
||
|
ListenerType: make(map[string][]string),
|
||
|
ClusterType: make(map[string][]string),
|
||
|
},
|
||
|
}
|
||
|
}
|