-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
172 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package apis | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
|
||
github_com_golang_protobuf_jsonpb "github.com/golang/protobuf/jsonpb" // nolint: depguard | ||
"google.golang.org/protobuf/types/known/wrapperspb" | ||
"k8s.io/apimachinery/pkg/util/intstr" | ||
) | ||
|
||
// nolint | ||
var _ github_com_golang_protobuf_jsonpb.JSONPBUnmarshaler = &IntOrString{} | ||
|
||
// UnmarshalJSON implements the json.Unmarshaller interface. | ||
func (i *IntOrString) UnmarshalJSON(value []byte) error { | ||
if value[0] == '"' { | ||
i.Type = int64(intstr.String) | ||
var s string | ||
err := json.Unmarshal(value, &s) | ||
if err != nil { | ||
return err | ||
} | ||
i.StrVal = &wrapperspb.StringValue{Value: s} | ||
return nil | ||
} | ||
i.Type = int64(intstr.Int) | ||
var s int32 | ||
err := json.Unmarshal(value, &s) | ||
if err != nil { | ||
return err | ||
} | ||
i.IntVal = &wrapperspb.Int32Value{Value: s} | ||
return nil | ||
} | ||
|
||
func (i *IntOrString) MarshalJSONPB(_ *github_com_golang_protobuf_jsonpb.Marshaler) ([]byte, error) { | ||
return i.MarshalJSON() | ||
} | ||
|
||
func (i *IntOrString) MarshalJSON() ([]byte, error) { | ||
if i.IntVal != nil { | ||
return json.Marshal(i.IntVal.GetValue()) | ||
} | ||
return json.Marshal(i.StrVal.GetValue()) | ||
} | ||
|
||
func (i *IntOrString) UnmarshalJSONPB(_ *github_com_golang_protobuf_jsonpb.Unmarshaler, value []byte) error { | ||
return i.UnmarshalJSON(value) | ||
} | ||
|
||
func (i *IntOrString) ToKubernetes() intstr.IntOrString { | ||
if i.IntVal != nil { | ||
return intstr.FromInt32(i.GetIntVal().GetValue()) | ||
} | ||
return intstr.FromString(i.GetStrVal().GetValue()) | ||
} | ||
|
||
// MarshalJSON is a custom marshaler for Values | ||
func (in *Values) MarshalJSON() ([]byte, error) { | ||
str, err := OperatorMarshaler.MarshalToString(in) | ||
return []byte(str), err | ||
} | ||
|
||
// UnmarshalJSON is a custom unmarshaler for Values | ||
func (in *Values) UnmarshalJSON(b []byte) error { | ||
return OperatorUnmarshaler.Unmarshal(bytes.NewReader(b), in) | ||
} | ||
|
||
var ( | ||
OperatorMarshaler = &github_com_golang_protobuf_jsonpb.Marshaler{} | ||
OperatorUnmarshaler = &github_com_golang_protobuf_jsonpb.Unmarshaler{} | ||
) |
Oops, something went wrong.