mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 12:29:36 +08:00
bb9c906ef6
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
64 lines
1.7 KiB
Go
64 lines
1.7 KiB
Go
// Copyright 2016 TiKV Project 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,
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package typeutil
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/czs007/suvlim/errors"
|
|
)
|
|
|
|
// Duration is a wrapper of time.Duration for TOML and JSON.
|
|
type Duration struct {
|
|
time.Duration
|
|
}
|
|
|
|
// NewDuration creates a Duration from time.Duration.
|
|
func NewDuration(duration time.Duration) Duration {
|
|
return Duration{Duration: duration}
|
|
}
|
|
|
|
// MarshalJSON returns the duration as a JSON string.
|
|
func (d *Duration) MarshalJSON() ([]byte, error) {
|
|
return []byte(fmt.Sprintf(`"%s"`, d.String())), nil
|
|
}
|
|
|
|
// UnmarshalJSON parses a JSON string into the duration.
|
|
func (d *Duration) UnmarshalJSON(text []byte) error {
|
|
s, err := strconv.Unquote(string(text))
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
duration, err := time.ParseDuration(s)
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
d.Duration = duration
|
|
return nil
|
|
}
|
|
|
|
// UnmarshalText parses a TOML string into the duration.
|
|
func (d *Duration) UnmarshalText(text []byte) error {
|
|
var err error
|
|
d.Duration, err = time.ParseDuration(string(text))
|
|
return errors.WithStack(err)
|
|
}
|
|
|
|
// MarshalText returns the duration as a JSON string.
|
|
func (d Duration) MarshalText() ([]byte, error) {
|
|
return []byte(d.String()), nil
|
|
}
|