// 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 ptypes

import (
	
	
	

	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 {
		return 0, 
	}
	 := time.Duration(.Seconds) * time.Second
	if int64(/time.Second) != .Seconds {
		return 0, fmt.Errorf("duration: %v is out of range for time.Duration", )
	}
	if .Nanos != 0 {
		 += time.Duration(.Nanos) * time.Nanosecond
		if ( < 0) != (.Nanos < 0) {
			return 0, 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
	 -=  * 1e9
	return &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 {
		return errors.New("duration: nil Duration")
	}
	if .Seconds < minSeconds || .Seconds > maxSeconds {
		return fmt.Errorf("duration: %v: seconds out of range", )
	}
	if .Nanos <= -1e9 || .Nanos >= 1e9 {
		return fmt.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) {
		return fmt.Errorf("duration: %v: seconds and nanos have different signs", )
	}
	return nil
}