summaryrefslogtreecommitdiff
path: root/vendor/k8s.io/apimachinery/third_party
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-03-26 18:26:55 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-27 18:09:12 +0000
commitaf64e10400f8533a0c48ecdf5ab9b7fbf329e14e (patch)
tree59160e3841b440dd35189c724bbb4375a7be173b /vendor/k8s.io/apimachinery/third_party
parent26d7e3c7b85e28c4e42998c90fdcc14079f13eef (diff)
downloadpodman-af64e10400f8533a0c48ecdf5ab9b7fbf329e14e.tar.gz
podman-af64e10400f8533a0c48ecdf5ab9b7fbf329e14e.tar.bz2
podman-af64e10400f8533a0c48ecdf5ab9b7fbf329e14e.zip
Vendor in lots of kubernetes stuff to shrink image size
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #554 Approved by: mheon
Diffstat (limited to 'vendor/k8s.io/apimachinery/third_party')
-rw-r--r--vendor/k8s.io/apimachinery/third_party/forked/golang/json/fields.go10
-rw-r--r--vendor/k8s.io/apimachinery/third_party/forked/golang/reflect/type.go91
2 files changed, 5 insertions, 96 deletions
diff --git a/vendor/k8s.io/apimachinery/third_party/forked/golang/json/fields.go b/vendor/k8s.io/apimachinery/third_party/forked/golang/json/fields.go
index ac6d9cb96..8205a4dd1 100644
--- a/vendor/k8s.io/apimachinery/third_party/forked/golang/json/fields.go
+++ b/vendor/k8s.io/apimachinery/third_party/forked/golang/json/fields.go
@@ -26,14 +26,14 @@ const (
// struct field given the struct type and the JSON name of the field.
// It returns field type, a slice of patch strategies, merge key and error.
// TODO: fix the returned errors to be introspectable.
-func LookupPatchMetadata(t reflect.Type, jsonField string) (
+func LookupPatchMetadataForStruct(t reflect.Type, jsonField string) (
elemType reflect.Type, patchStrategies []string, patchMergeKey string, e error) {
- if t.Kind() == reflect.Map {
- elemType = t.Elem()
- return
+ if t.Kind() == reflect.Ptr {
+ t = t.Elem()
}
+
if t.Kind() != reflect.Struct {
- e = fmt.Errorf("merging an object in json but data type is not map or struct, instead is: %s",
+ e = fmt.Errorf("merging an object in json but data type is not struct, instead is: %s",
t.Kind().String())
return
}
diff --git a/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect/type.go b/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect/type.go
deleted file mode 100644
index 67957ee33..000000000
--- a/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect/type.go
+++ /dev/null
@@ -1,91 +0,0 @@
-//This package is copied from Go library reflect/type.go.
-//The struct tag library provides no way to extract the list of struct tags, only
-//a specific tag
-package reflect
-
-import (
- "fmt"
-
- "strconv"
- "strings"
-)
-
-type StructTag struct {
- Name string
- Value string
-}
-
-func (t StructTag) String() string {
- return fmt.Sprintf("%s:%q", t.Name, t.Value)
-}
-
-type StructTags []StructTag
-
-func (tags StructTags) String() string {
- s := make([]string, 0, len(tags))
- for _, tag := range tags {
- s = append(s, tag.String())
- }
- return "`" + strings.Join(s, " ") + "`"
-}
-
-func (tags StructTags) Has(name string) bool {
- for i := range tags {
- if tags[i].Name == name {
- return true
- }
- }
- return false
-}
-
-// ParseStructTags returns the full set of fields in a struct tag in the order they appear in
-// the struct tag.
-func ParseStructTags(tag string) (StructTags, error) {
- tags := StructTags{}
- for tag != "" {
- // Skip leading space.
- i := 0
- for i < len(tag) && tag[i] == ' ' {
- i++
- }
- tag = tag[i:]
- if tag == "" {
- break
- }
-
- // Scan to colon. A space, a quote or a control character is a syntax error.
- // Strictly speaking, control chars include the range [0x7f, 0x9f], not just
- // [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
- // as it is simpler to inspect the tag's bytes than the tag's runes.
- i = 0
- for i < len(tag) && tag[i] > ' ' && tag[i] != ':' && tag[i] != '"' && tag[i] != 0x7f {
- i++
- }
- if i == 0 || i+1 >= len(tag) || tag[i] != ':' || tag[i+1] != '"' {
- break
- }
- name := string(tag[:i])
- tag = tag[i+1:]
-
- // Scan quoted string to find value.
- i = 1
- for i < len(tag) && tag[i] != '"' {
- if tag[i] == '\\' {
- i++
- }
- i++
- }
- if i >= len(tag) {
- break
- }
- qvalue := string(tag[:i+1])
- tag = tag[i+1:]
-
- value, err := strconv.Unquote(qvalue)
- if err != nil {
- return nil, err
- }
- tags = append(tags, StructTag{Name: name, Value: value})
- }
- return tags, nil
-}