blob: f1946d7802e917d2dfe8c6f8e32a4e380f149ed9 [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 k8s
import (
"fmt"
)
import (
core_model "github.com/apache/dubbo-kubernetes/pkg/core/resources/model"
k8s_common "github.com/apache/dubbo-kubernetes/pkg/plugins/common/k8s"
k8s_model "github.com/apache/dubbo-kubernetes/pkg/plugins/resources/k8s/native/pkg/model"
"github.com/apache/dubbo-kubernetes/pkg/plugins/resources/k8s/native/pkg/registry"
)
var _ k8s_common.Converter = &SimpleConverter{}
type SimpleConverter struct {
KubeFactory KubeFactory
}
func NewSimpleConverter() k8s_common.Converter {
return &SimpleConverter{
KubeFactory: NewSimpleKubeFactory(),
}
}
func NewSimpleKubeFactory() KubeFactory {
return &SimpleKubeFactory{
KubeTypes: registry.Global(),
}
}
func (c *SimpleConverter) ToKubernetesObject(r core_model.Resource) (k8s_model.KubernetesObject, error) {
obj, err := c.KubeFactory.NewObject(r)
if err != nil {
return nil, err
}
obj.SetSpec(r.GetSpec())
if r.GetMeta() != nil {
if adapter, ok := r.GetMeta().(*KubernetesMetaAdapter); ok {
obj.SetMesh(adapter.Mesh)
obj.SetObjectMeta(&adapter.ObjectMeta)
} else {
return nil, fmt.Errorf("meta has unexpected type: %#v", r.GetMeta())
}
}
return obj, nil
}
func (c *SimpleConverter) ToKubernetesList(rl core_model.ResourceList) (k8s_model.KubernetesList, error) {
return c.KubeFactory.NewList(rl)
}
func (c *SimpleConverter) ToCoreResource(obj k8s_model.KubernetesObject, out core_model.Resource) error {
out.SetMeta(&KubernetesMetaAdapter{ObjectMeta: *obj.GetObjectMeta(), Mesh: obj.GetMesh()})
spec, err := obj.GetSpec()
if err != nil {
return err
}
return out.SetSpec(spec)
}
func (c *SimpleConverter) ToCoreList(in k8s_model.KubernetesList, out core_model.ResourceList, predicate k8s_common.ConverterPredicate) error {
for _, o := range in.GetItems() {
r := out.NewItem()
if err := c.ToCoreResource(o, r); err != nil {
return err
}
if predicate(r) {
_ = out.AddItem(r)
}
}
return nil
}