forked from TrueCloudLab/certificates
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package provisioner
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Duration is a wrapper around Time.Duration to aid with marshal/unmarshal.
|
|
type Duration struct {
|
|
time.Duration
|
|
}
|
|
|
|
// MarshalJSON parses a duration string and sets it to the duration.
|
|
//
|
|
// A duration string is a possibly signed sequence of decimal numbers, each with
|
|
// optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m".
|
|
// Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
|
func (d *Duration) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(d.Duration.String())
|
|
}
|
|
|
|
// UnmarshalJSON parses a duration string and sets it to the duration.
|
|
//
|
|
// A duration string is a possibly signed sequence of decimal numbers, each with
|
|
// optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m".
|
|
// Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
|
func (d *Duration) UnmarshalJSON(data []byte) (err error) {
|
|
var (
|
|
s string
|
|
_d time.Duration
|
|
)
|
|
if d == nil {
|
|
return errors.New("duration cannot be nil")
|
|
}
|
|
if err = json.Unmarshal(data, &s); err != nil {
|
|
return errors.Wrapf(err, "error unmarshaling %s", data)
|
|
}
|
|
if _d, err = time.ParseDuration(s); err != nil {
|
|
return errors.Wrapf(err, "error parsing %s as duration", s)
|
|
}
|
|
d.Duration = _d
|
|
return
|
|
}
|