duration.pb.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/duration.proto
  3. package duration
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. math "math"
  8. )
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  18. // A Duration represents a signed, fixed-length span of time represented
  19. // as a count of seconds and fractions of seconds at nanosecond
  20. // resolution. It is independent of any calendar and concepts like "day"
  21. // or "month". It is related to Timestamp in that the difference between
  22. // two Timestamp values is a Duration and it can be added or subtracted
  23. // from a Timestamp. Range is approximately +-10,000 years.
  24. //
  25. // # Examples
  26. //
  27. // Example 1: Compute Duration from two Timestamps in pseudo code.
  28. //
  29. // Timestamp start = ...;
  30. // Timestamp end = ...;
  31. // Duration duration = ...;
  32. //
  33. // duration.seconds = end.seconds - start.seconds;
  34. // duration.nanos = end.nanos - start.nanos;
  35. //
  36. // if (duration.seconds < 0 && duration.nanos > 0) {
  37. // duration.seconds += 1;
  38. // duration.nanos -= 1000000000;
  39. // } else if (durations.seconds > 0 && duration.nanos < 0) {
  40. // duration.seconds -= 1;
  41. // duration.nanos += 1000000000;
  42. // }
  43. //
  44. // Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
  45. //
  46. // Timestamp start = ...;
  47. // Duration duration = ...;
  48. // Timestamp end = ...;
  49. //
  50. // end.seconds = start.seconds + duration.seconds;
  51. // end.nanos = start.nanos + duration.nanos;
  52. //
  53. // if (end.nanos < 0) {
  54. // end.seconds -= 1;
  55. // end.nanos += 1000000000;
  56. // } else if (end.nanos >= 1000000000) {
  57. // end.seconds += 1;
  58. // end.nanos -= 1000000000;
  59. // }
  60. //
  61. // Example 3: Compute Duration from datetime.timedelta in Python.
  62. //
  63. // td = datetime.timedelta(days=3, minutes=10)
  64. // duration = Duration()
  65. // duration.FromTimedelta(td)
  66. //
  67. // # JSON Mapping
  68. //
  69. // In JSON format, the Duration type is encoded as a string rather than an
  70. // object, where the string ends in the suffix "s" (indicating seconds) and
  71. // is preceded by the number of seconds, with nanoseconds expressed as
  72. // fractional seconds. For example, 3 seconds with 0 nanoseconds should be
  73. // encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
  74. // be expressed in JSON format as "3.000000001s", and 3 seconds and 1
  75. // microsecond should be expressed in JSON format as "3.000001s".
  76. //
  77. //
  78. type Duration struct {
  79. // Signed seconds of the span of time. Must be from -315,576,000,000
  80. // to +315,576,000,000 inclusive. Note: these bounds are computed from:
  81. // 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
  82. Seconds int64 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"`
  83. // Signed fractions of a second at nanosecond resolution of the span
  84. // of time. Durations less than one second are represented with a 0
  85. // `seconds` field and a positive or negative `nanos` field. For durations
  86. // of one second or more, a non-zero value for the `nanos` field must be
  87. // of the same sign as the `seconds` field. Must be from -999,999,999
  88. // to +999,999,999 inclusive.
  89. Nanos int32 `protobuf:"varint,2,opt,name=nanos,proto3" json:"nanos,omitempty"`
  90. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  91. XXX_unrecognized []byte `json:"-"`
  92. XXX_sizecache int32 `json:"-"`
  93. }
  94. func (m *Duration) Reset() { *m = Duration{} }
  95. func (m *Duration) String() string { return proto.CompactTextString(m) }
  96. func (*Duration) ProtoMessage() {}
  97. func (*Duration) Descriptor() ([]byte, []int) {
  98. return fileDescriptor_23597b2ebd7ac6c5, []int{0}
  99. }
  100. func (*Duration) XXX_WellKnownType() string { return "Duration" }
  101. func (m *Duration) XXX_Unmarshal(b []byte) error {
  102. return xxx_messageInfo_Duration.Unmarshal(m, b)
  103. }
  104. func (m *Duration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  105. return xxx_messageInfo_Duration.Marshal(b, m, deterministic)
  106. }
  107. func (m *Duration) XXX_Merge(src proto.Message) {
  108. xxx_messageInfo_Duration.Merge(m, src)
  109. }
  110. func (m *Duration) XXX_Size() int {
  111. return xxx_messageInfo_Duration.Size(m)
  112. }
  113. func (m *Duration) XXX_DiscardUnknown() {
  114. xxx_messageInfo_Duration.DiscardUnknown(m)
  115. }
  116. var xxx_messageInfo_Duration proto.InternalMessageInfo
  117. func (m *Duration) GetSeconds() int64 {
  118. if m != nil {
  119. return m.Seconds
  120. }
  121. return 0
  122. }
  123. func (m *Duration) GetNanos() int32 {
  124. if m != nil {
  125. return m.Nanos
  126. }
  127. return 0
  128. }
  129. func init() {
  130. proto.RegisterType((*Duration)(nil), "google.protobuf.Duration")
  131. }
  132. func init() { proto.RegisterFile("google/protobuf/duration.proto", fileDescriptor_23597b2ebd7ac6c5) }
  133. var fileDescriptor_23597b2ebd7ac6c5 = []byte{
  134. // 190 bytes of a gzipped FileDescriptorProto
  135. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcf, 0xcf, 0x4f,
  136. 0xcf, 0x49, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0x4d, 0xd3, 0x4f, 0x29, 0x2d, 0x4a,
  137. 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x03, 0x8b, 0x08, 0xf1, 0x43, 0xe4, 0xf5, 0x60, 0xf2, 0x4a, 0x56,
  138. 0x5c, 0x1c, 0x2e, 0x50, 0x25, 0x42, 0x12, 0x5c, 0xec, 0xc5, 0xa9, 0xc9, 0xf9, 0x79, 0x29, 0xc5,
  139. 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xcc, 0x41, 0x30, 0xae, 0x90, 0x08, 0x17, 0x6b, 0x5e, 0x62, 0x5e,
  140. 0x7e, 0xb1, 0x04, 0x93, 0x02, 0xa3, 0x06, 0x6b, 0x10, 0x84, 0xe3, 0x54, 0xc3, 0x25, 0x9c, 0x9c,
  141. 0x9f, 0xab, 0x87, 0x66, 0xa4, 0x13, 0x2f, 0xcc, 0xc0, 0x00, 0x90, 0x48, 0x00, 0x63, 0x94, 0x56,
  142. 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x7a, 0x7e, 0x4e, 0x62, 0x5e,
  143. 0x3a, 0xc2, 0x7d, 0x05, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x70, 0x67, 0xfe, 0x60, 0x64, 0x5c, 0xc4,
  144. 0xc4, 0xec, 0x1e, 0xe0, 0xb4, 0x8a, 0x49, 0xce, 0x1d, 0x62, 0x6e, 0x00, 0x54, 0xa9, 0x5e, 0x78,
  145. 0x6a, 0x4e, 0x8e, 0x77, 0x5e, 0x7e, 0x79, 0x5e, 0x08, 0x48, 0x4b, 0x12, 0x1b, 0xd8, 0x0c, 0x63,
  146. 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x84, 0x30, 0xff, 0xf3, 0x00, 0x00, 0x00,
  147. }