Skip to content

Commit

Permalink
decode Labels using DecodeMapstructure
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
  • Loading branch information
ndeloof committed Oct 2, 2023
1 parent 8dc6561 commit 88eac1d
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 12 deletions.
1 change: 0 additions & 1 deletion loader/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,6 @@ func createTransformHook(additionalTransformers ...Transformer) mapstructure.Dec
reflect.TypeOf(map[string]*types.ServiceNetworkConfig{}): transformServiceNetworkMap,
reflect.TypeOf(types.Mapping{}): transformMappingOrListFunc("=", false),
reflect.TypeOf(types.MappingWithEquals{}): transformMappingOrListFunc("=", true),
reflect.TypeOf(types.Labels{}): transformMappingOrListFunc("=", false),
reflect.TypeOf(types.MappingWithColon{}): transformMappingOrListFunc(":", false),
reflect.TypeOf(types.HostsList{}): transformMappingOrListFunc(":", false),
reflect.TypeOf(types.ServiceVolumeConfig{}): transformServiceVolumeConfig,
Expand Down
80 changes: 80 additions & 0 deletions types/labels.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
Copyright 2020 The Compose Specification Authors.
Licensed 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 types

import (
"fmt"
"strings"
)

// Labels is a mapping type for labels
type Labels map[string]string

func (l Labels) Add(key, value string) Labels {
if l == nil {
l = Labels{}
}
l[key] = value
return l
}

func (l Labels) AsList() []string {
s := make([]string, len(l))
i := 0
for k, v := range l {
s[i] = fmt.Sprintf("%s=%s", k, v)
i++
}
return s
}

// label value can be a string | number | boolean | null (empty)
func labelValue(e interface{}) string {
if e == nil {
return ""
}
switch v := e.(type) {
case string:
return v
default:
return fmt.Sprint(v)
}
}

func (l *Labels) DecodeMapstructure(value interface{}) error {
switch v := value.(type) {
case map[string]interface{}:
labels := make(map[string]string, len(v))
for k, e := range v {
labels[k] = labelValue(e)
}
*l = labels
case []interface{}:
labels := make(map[string]string, len(v))
for _, s := range v {
k, e, ok := strings.Cut(fmt.Sprint(s), "=")
if !ok {
return fmt.Errorf("invalid label %q", v)
}
labels[k] = labelValue(e)
}
*l = labels
default:
return fmt.Errorf("unexpected value type %T for labels", value)
}
return nil
}
11 changes: 0 additions & 11 deletions types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -452,17 +452,6 @@ func (m Mapping) Merge(o Mapping) Mapping {
// Options is a mapping type for options we pass as-is to container runtime
type Options map[string]string

// Labels is a mapping type for labels
type Labels map[string]string

func (l Labels) Add(key, value string) Labels {
if l == nil {
l = Labels{}
}
l[key] = value
return l
}

type SSHKey struct {
ID string
Path string
Expand Down

0 comments on commit 88eac1d

Please sign in to comment.