// Copyright 2016 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.package ptypesimport (durationpb)// Range of google.protobuf.Duration as specified in duration.proto.// This is about 10,000 years in seconds.const (maxSeconds = int64(10000 * 365.25 * 24 * 60 * 60)minSeconds = -maxSeconds)// Duration converts a durationpb.Duration to a time.Duration.// Duration returns an error if dur is invalid or overflows a time.Duration.//// Deprecated: Call the dur.AsDuration and dur.CheckValid methods instead.func ( *durationpb.Duration) (time.Duration, error) {if := validateDuration(); != nil {return0, } := time.Duration(.Seconds) * time.Secondifint64(/time.Second) != .Seconds {return0, fmt.Errorf("duration: %v is out of range for time.Duration", ) }if .Nanos != 0 { += time.Duration(.Nanos) * time.Nanosecondif ( < 0) != (.Nanos < 0) {return0, fmt.Errorf("duration: %v is out of range for time.Duration", ) } }return , nil}// DurationProto converts a time.Duration to a durationpb.Duration.//// Deprecated: Call the durationpb.New function instead.func ( time.Duration) *durationpb.Duration { := .Nanoseconds() := / 1e9 -= * 1e9return &durationpb.Duration{Seconds: int64(),Nanos: int32(), }}// validateDuration determines whether the durationpb.Duration is valid// according to the definition in google/protobuf/duration.proto.// A valid durpb.Duration may still be too large to fit into a time.Duration// Note that the range of durationpb.Duration is about 10,000 years,// while the range of time.Duration is about 290 years.func ( *durationpb.Duration) error {if == nil {returnerrors.New("duration: nil Duration") }if .Seconds < minSeconds || .Seconds > maxSeconds {returnfmt.Errorf("duration: %v: seconds out of range", ) }if .Nanos <= -1e9 || .Nanos >= 1e9 {returnfmt.Errorf("duration: %v: nanos out of range", ) }// Seconds and Nanos must have the same sign, unless d.Nanos is zero.if (.Seconds < 0 && .Nanos > 0) || (.Seconds > 0 && .Nanos < 0) {returnfmt.Errorf("duration: %v: seconds and nanos have different signs", ) }returnnil}
The pages are generated with Goldsv0.4.9. (GOOS=linux GOARCH=amd64)