![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the k8s group with 5 updates: | Package | From | To | | --- | --- | --- | | [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.30.3` | `0.31.0` | | [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.30.3` | `0.31.0` | | [k8s.io/component-base](https://github.com/kubernetes/component-base) | `0.30.3` | `0.31.0` | | [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.30.3` | `0.31.0` | | [k8s.io/utils](https://github.com/kubernetes/utils) | `0.0.0-20230726121419-3b25d923346b` | `0.0.0-20240711033017-18e509b52bc8` | Updates `k8s.io/apimachinery` from 0.30.3 to 0.31.0 - [Commits](https://github.com/kubernetes/apimachinery/compare/v0.30.3...v0.31.0) Updates `k8s.io/client-go` from 0.30.3 to 0.31.0 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](https://github.com/kubernetes/client-go/compare/v0.30.3...v0.31.0) Updates `k8s.io/component-base` from 0.30.3 to 0.31.0 - [Commits](https://github.com/kubernetes/component-base/compare/v0.30.3...v0.31.0) Updates `k8s.io/kubelet` from 0.30.3 to 0.31.0 - [Commits](https://github.com/kubernetes/kubelet/compare/v0.30.3...v0.31.0) Updates `k8s.io/utils` from 0.0.0-20230726121419-3b25d923346b to 0.0.0-20240711033017-18e509b52bc8 - [Commits](https://github.com/kubernetes/utils/commits) --- updated-dependencies: - dependency-name: k8s.io/apimachinery dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s - dependency-name: k8s.io/component-base dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s - dependency-name: k8s.io/kubelet dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s - dependency-name: k8s.io/utils dependency-type: direct:production update-type: version-update:semver-patch dependency-group: k8s ... Signed-off-by: dependabot[bot] <support@github.com>
212 lines
5.2 KiB
Go
212 lines
5.2 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes 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 v1
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
|
|
)
|
|
|
|
// Time is a wrapper around time.Time which supports correct
|
|
// marshaling to YAML and JSON. Wrappers are provided for many
|
|
// of the factory methods that the time package offers.
|
|
//
|
|
// +protobuf.options.marshal=false
|
|
// +protobuf.as=Timestamp
|
|
// +protobuf.options.(gogoproto.goproto_stringer)=false
|
|
type Time struct {
|
|
time.Time `protobuf:"-"`
|
|
}
|
|
|
|
// DeepCopyInto creates a deep-copy of the Time value. The underlying time.Time
|
|
// type is effectively immutable in the time API, so it is safe to
|
|
// copy-by-assign, despite the presence of (unexported) Pointer fields.
|
|
func (t *Time) DeepCopyInto(out *Time) {
|
|
*out = *t
|
|
}
|
|
|
|
// NewTime returns a wrapped instance of the provided time
|
|
func NewTime(time time.Time) Time {
|
|
return Time{time}
|
|
}
|
|
|
|
// Date returns the Time corresponding to the supplied parameters
|
|
// by wrapping time.Date.
|
|
func Date(year int, month time.Month, day, hour, min, sec, nsec int, loc *time.Location) Time {
|
|
return Time{time.Date(year, month, day, hour, min, sec, nsec, loc)}
|
|
}
|
|
|
|
// Now returns the current local time.
|
|
func Now() Time {
|
|
return Time{time.Now()}
|
|
}
|
|
|
|
// IsZero returns true if the value is nil or time is zero.
|
|
func (t *Time) IsZero() bool {
|
|
if t == nil {
|
|
return true
|
|
}
|
|
return t.Time.IsZero()
|
|
}
|
|
|
|
// Before reports whether the time instant t is before u.
|
|
func (t *Time) Before(u *Time) bool {
|
|
if t != nil && u != nil {
|
|
return t.Time.Before(u.Time)
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Equal reports whether the time instant t is equal to u.
|
|
func (t *Time) Equal(u *Time) bool {
|
|
if t == nil && u == nil {
|
|
return true
|
|
}
|
|
if t != nil && u != nil {
|
|
return t.Time.Equal(u.Time)
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Unix returns the local time corresponding to the given Unix time
|
|
// by wrapping time.Unix.
|
|
func Unix(sec int64, nsec int64) Time {
|
|
return Time{time.Unix(sec, nsec)}
|
|
}
|
|
|
|
// Rfc3339Copy returns a copy of the Time at second-level precision.
|
|
func (t Time) Rfc3339Copy() Time {
|
|
copied, _ := time.Parse(time.RFC3339, t.Format(time.RFC3339))
|
|
return Time{copied}
|
|
}
|
|
|
|
// UnmarshalJSON implements the json.Unmarshaller interface.
|
|
func (t *Time) UnmarshalJSON(b []byte) error {
|
|
if len(b) == 4 && string(b) == "null" {
|
|
t.Time = time.Time{}
|
|
return nil
|
|
}
|
|
|
|
var str string
|
|
err := json.Unmarshal(b, &str)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pt, err := time.Parse(time.RFC3339, str)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
t.Time = pt.Local()
|
|
return nil
|
|
}
|
|
|
|
func (t *Time) UnmarshalCBOR(b []byte) error {
|
|
var s *string
|
|
if err := cbor.Unmarshal(b, &s); err != nil {
|
|
return err
|
|
}
|
|
if s == nil {
|
|
t.Time = time.Time{}
|
|
return nil
|
|
}
|
|
|
|
parsed, err := time.Parse(time.RFC3339, *s)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
t.Time = parsed.Local()
|
|
return nil
|
|
}
|
|
|
|
// UnmarshalQueryParameter converts from a URL query parameter value to an object
|
|
func (t *Time) UnmarshalQueryParameter(str string) error {
|
|
if len(str) == 0 {
|
|
t.Time = time.Time{}
|
|
return nil
|
|
}
|
|
// Tolerate requests from older clients that used JSON serialization to build query params
|
|
if len(str) == 4 && str == "null" {
|
|
t.Time = time.Time{}
|
|
return nil
|
|
}
|
|
|
|
pt, err := time.Parse(time.RFC3339, str)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
t.Time = pt.Local()
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON implements the json.Marshaler interface.
|
|
func (t Time) MarshalJSON() ([]byte, error) {
|
|
if t.IsZero() {
|
|
// Encode unset/nil objects as JSON's "null".
|
|
return []byte("null"), nil
|
|
}
|
|
buf := make([]byte, 0, len(time.RFC3339)+2)
|
|
buf = append(buf, '"')
|
|
// time cannot contain non escapable JSON characters
|
|
buf = t.UTC().AppendFormat(buf, time.RFC3339)
|
|
buf = append(buf, '"')
|
|
return buf, nil
|
|
}
|
|
|
|
func (t Time) MarshalCBOR() ([]byte, error) {
|
|
if t.IsZero() {
|
|
return cbor.Marshal(nil)
|
|
}
|
|
|
|
return cbor.Marshal(t.UTC().Format(time.RFC3339))
|
|
}
|
|
|
|
// ToUnstructured implements the value.UnstructuredConverter interface.
|
|
func (t Time) ToUnstructured() interface{} {
|
|
if t.IsZero() {
|
|
return nil
|
|
}
|
|
buf := make([]byte, 0, len(time.RFC3339))
|
|
buf = t.UTC().AppendFormat(buf, time.RFC3339)
|
|
return string(buf)
|
|
}
|
|
|
|
// OpenAPISchemaType is used by the kube-openapi generator when constructing
|
|
// the OpenAPI spec of this type.
|
|
//
|
|
// See: https://github.com/kubernetes/kube-openapi/tree/master/pkg/generators
|
|
func (_ Time) OpenAPISchemaType() []string { return []string{"string"} }
|
|
|
|
// OpenAPISchemaFormat is used by the kube-openapi generator when constructing
|
|
// the OpenAPI spec of this type.
|
|
func (_ Time) OpenAPISchemaFormat() string { return "date-time" }
|
|
|
|
// MarshalQueryParameter converts to a URL query parameter value
|
|
func (t Time) MarshalQueryParameter() (string, error) {
|
|
if t.IsZero() {
|
|
// Encode unset/nil objects as an empty string
|
|
return "", nil
|
|
}
|
|
|
|
return t.UTC().Format(time.RFC3339), nil
|
|
}
|