duration.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // Go support for Protocol Buffers - Google's data interchange format
  2. //
  3. // Copyright 2016 The Go Authors. All rights reserved.
  4. // https://github.com/golang/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. // * Neither the name of Google Inc. nor the names of its
  17. // contributors may be used to endorse or promote products derived from
  18. // this software without specific prior written permission.
  19. //
  20. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. package proto
  32. // This file implements conversions between google.protobuf.Duration
  33. // and time.Duration.
  34. import (
  35. "errors"
  36. "fmt"
  37. "time"
  38. )
  39. const (
  40. // Range of a Duration in seconds, as specified in
  41. // google/protobuf/duration.proto. This is about 10,000 years in seconds.
  42. maxSeconds = int64(10000 * 365.25 * 24 * 60 * 60)
  43. minSeconds = -maxSeconds
  44. )
  45. // validateDuration determines whether the Duration is valid according to the
  46. // definition in google/protobuf/duration.proto. A valid Duration
  47. // may still be too large to fit into a time.Duration (the range of Duration
  48. // is about 10,000 years, and the range of time.Duration is about 290).
  49. func validateDuration(d *duration) error {
  50. if d == nil {
  51. return errors.New("duration: nil Duration")
  52. }
  53. if d.Seconds < minSeconds || d.Seconds > maxSeconds {
  54. return fmt.Errorf("duration: %#v: seconds out of range", d)
  55. }
  56. if d.Nanos <= -1e9 || d.Nanos >= 1e9 {
  57. return fmt.Errorf("duration: %#v: nanos out of range", d)
  58. }
  59. // Seconds and Nanos must have the same sign, unless d.Nanos is zero.
  60. if (d.Seconds < 0 && d.Nanos > 0) || (d.Seconds > 0 && d.Nanos < 0) {
  61. return fmt.Errorf("duration: %#v: seconds and nanos have different signs", d)
  62. }
  63. return nil
  64. }
  65. // DurationFromProto converts a Duration to a time.Duration. DurationFromProto
  66. // returns an error if the Duration is invalid or is too large to be
  67. // represented in a time.Duration.
  68. func durationFromProto(p *duration) (time.Duration, error) {
  69. if err := validateDuration(p); err != nil {
  70. return 0, err
  71. }
  72. d := time.Duration(p.Seconds) * time.Second
  73. if int64(d/time.Second) != p.Seconds {
  74. return 0, fmt.Errorf("duration: %#v is out of range for time.Duration", p)
  75. }
  76. if p.Nanos != 0 {
  77. d += time.Duration(p.Nanos)
  78. if (d < 0) != (p.Nanos < 0) {
  79. return 0, fmt.Errorf("duration: %#v is out of range for time.Duration", p)
  80. }
  81. }
  82. return d, nil
  83. }
  84. // DurationProto converts a time.Duration to a Duration.
  85. func durationProto(d time.Duration) *duration {
  86. nanos := d.Nanoseconds()
  87. secs := nanos / 1e9
  88. nanos -= secs * 1e9
  89. return &duration{
  90. Seconds: secs,
  91. Nanos: int32(nanos),
  92. }
  93. }