1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: Apache-2.0
14 // Duration is time.Duration but looks like "12s" in JSON, rather than
15 // a number of nanoseconds.
16 type Duration time.Duration
18 // UnmarshalJSON implements json.Unmarshaler.
19 func (d *Duration) UnmarshalJSON(data []byte) error {
21 return d.Set(string(data[1 : len(data)-1]))
23 // Mimic error message returned by ParseDuration for a number
25 return fmt.Errorf("missing unit in duration %s", data)
28 // MarshalJSON implements json.Marshaler.
29 func (d Duration) MarshalJSON() ([]byte, error) {
30 return json.Marshal(d.String())
33 // String returns a format similar to (time.Duration)String() but with
34 // "0m" and "0s" removed: e.g., "1h" instead of "1h0m0s".
35 func (d Duration) String() string {
36 s := time.Duration(d).String()
37 s = strings.Replace(s, "m0s", "m", 1)
38 s = strings.Replace(s, "h0m", "h", 1)
42 // Duration returns a time.Duration.
43 func (d Duration) Duration() time.Duration {
44 return time.Duration(d)
47 // Set implements the flag.Value interface and sets the duration value by using time.ParseDuration to parse the string.
48 func (d *Duration) Set(s string) error {
49 dur, err := time.ParseDuration(s)