| OLD | NEW |
| 1 // Protocol Buffers - Google's data interchange format | 1 // Protocol Buffers - Google's data interchange format |
| 2 // Copyright 2008 Google Inc. All rights reserved. | 2 // Copyright 2008 Google Inc. All rights reserved. |
| 3 // http://code.google.com/p/protobuf/ | 3 // https://developers.google.com/protocol-buffers/ |
| 4 // | 4 // |
| 5 // Redistribution and use in source and binary forms, with or without | 5 // Redistribution and use in source and binary forms, with or without |
| 6 // modification, are permitted provided that the following conditions are | 6 // modification, are permitted provided that the following conditions are |
| 7 // met: | 7 // met: |
| 8 // | 8 // |
| 9 // * Redistributions of source code must retain the above copyright | 9 // * Redistributions of source code must retain the above copyright |
| 10 // notice, this list of conditions and the following disclaimer. | 10 // notice, this list of conditions and the following disclaimer. |
| 11 // * Redistributions in binary form must reproduce the above | 11 // * Redistributions in binary form must reproduce the above |
| 12 // copyright notice, this list of conditions and the following disclaimer | 12 // copyright notice, this list of conditions and the following disclaimer |
| 13 // in the documentation and/or other materials provided with the | 13 // in the documentation and/or other materials provided with the |
| 14 // distribution. | 14 // distribution. |
| 15 // * Neither the name of Google Inc. nor the names of its | 15 // * Neither the name of Google Inc. nor the names of its |
| 16 // contributors may be used to endorse or promote products derived from | 16 // contributors may be used to endorse or promote products derived from |
| 17 // this software without specific prior written permission. | 17 // this software without specific prior written permission. |
| 18 // | 18 // |
| 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 #ifndef GOOGLE_PROTOBUF_STUBS_TIME_H_ |
| 31 #define GOOGLE_PROTOBUF_STUBS_TIME_H_ |
| 30 | 32 |
| 31 // Author: kenton@google.com (Kenton Varda) | |
| 32 // Based on original Protocol Buffers design by | |
| 33 // Sanjay Ghemawat, Jeff Dean, and others. | |
| 34 | |
| 35 #include <algorithm> | |
| 36 | |
| 37 #include <google/protobuf/repeated_field.h> | |
| 38 #include <google/protobuf/stubs/common.h> | 33 #include <google/protobuf/stubs/common.h> |
| 39 | 34 |
| 40 namespace google { | 35 namespace google { |
| 41 namespace protobuf { | 36 namespace protobuf { |
| 42 | |
| 43 namespace internal { | 37 namespace internal { |
| 44 | 38 |
| 45 void RepeatedPtrFieldBase::Reserve(int new_size) { | 39 struct DateTime { |
| 46 if (total_size_ >= new_size) return; | 40 int year; |
| 41 int month; |
| 42 int day; |
| 43 int hour; |
| 44 int minute; |
| 45 int second; |
| 46 }; |
| 47 | 47 |
| 48 void** old_elements = elements_; | 48 // Converts a timestamp (seconds elapsed since 1970-01-01T00:00:00, could be |
| 49 total_size_ = max(kMinRepeatedFieldAllocationSize, | 49 // negative to represent time before 1970-01-01) to DateTime. Returns false |
| 50 max(total_size_ * 2, new_size)); | 50 // if the timestamp is not in the range between 0001-01-01T00:00:00 and |
| 51 elements_ = new void*[total_size_]; | 51 // 9999-12-31T23:59:59. |
| 52 if (old_elements != NULL) { | 52 bool LIBPROTOBUF_EXPORT SecondsToDateTime(int64 seconds, DateTime* time); |
| 53 memcpy(elements_, old_elements, allocated_size_ * sizeof(elements_[0])); | 53 // Converts DateTime to a timestamp (seconds since 1970-01-01T00:00:00). |
| 54 delete [] old_elements; | 54 // Returns false if the DateTime is not valid or is not in the valid range. |
| 55 } | 55 bool LIBPROTOBUF_EXPORT DateTimeToSeconds(const DateTime& time, int64* seconds); |
| 56 } | |
| 57 | 56 |
| 58 void RepeatedPtrFieldBase::Swap(RepeatedPtrFieldBase* other) { | 57 void LIBPROTOBUF_EXPORT GetCurrentTime(int64* seconds, int32* nanos); |
| 59 if (this == other) return; | |
| 60 void** swap_elements = elements_; | |
| 61 int swap_current_size = current_size_; | |
| 62 int swap_allocated_size = allocated_size_; | |
| 63 int swap_total_size = total_size_; | |
| 64 | 58 |
| 65 elements_ = other->elements_; | 59 // Formats a time string in RFC3339 fromat. |
| 66 current_size_ = other->current_size_; | 60 // |
| 67 allocated_size_ = other->allocated_size_; | 61 // For example, "2015-05-20T13:29:35.120Z". For nanos, 0, 3, 6 or 9 fractional |
| 68 total_size_ = other->total_size_; | 62 // digits will be used depending on how many are required to represent the exact |
| 69 | 63 // value. |
| 70 other->elements_ = swap_elements; | 64 // |
| 71 other->current_size_ = swap_current_size; | 65 // Note that "nanos" must in the range of [0, 999999999]. |
| 72 other->allocated_size_ = swap_allocated_size; | 66 string LIBPROTOBUF_EXPORT FormatTime(int64 seconds, int32 nanos); |
| 73 other->total_size_ = swap_total_size; | 67 // Parses a time string. This method accepts RFC3339 date/time string with UTC |
| 74 } | 68 // offset. For example, "2015-05-20T13:29:35.120-08:00". |
| 75 | 69 bool LIBPROTOBUF_EXPORT ParseTime(const string& vaule, int64* seconds, int32* na
nos); |
| 76 string* StringTypeHandlerBase::New() { | |
| 77 return new string; | |
| 78 } | |
| 79 void StringTypeHandlerBase::Delete(string* value) { | |
| 80 delete value; | |
| 81 } | |
| 82 | 70 |
| 83 } // namespace internal | 71 } // namespace internal |
| 84 | |
| 85 | |
| 86 } // namespace protobuf | 72 } // namespace protobuf |
| 87 } // namespace google | 73 } // namespace google |
| 74 |
| 75 #endif // GOOGLE_PROTOBUF_STUBS_TIME_H_ |
| OLD | NEW |