blob: 949e0a235dffa35604378e79684d6f156e6061ce [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001// Protocol Buffers - Google's data interchange format
kenton@google.com24bf56f2008-09-24 20:31:01 +00002// Copyright 2008 Google Inc. All rights reserved.
Feng Xiaoe4288622014-10-01 16:26:23 -07003// https://developers.google.com/protocol-buffers/
temporal40ee5512008-07-10 02:12:20 +00004//
kenton@google.com24bf56f2008-09-24 20:31:01 +00005// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
temporal40ee5512008-07-10 02:12:20 +00008//
kenton@google.com24bf56f2008-09-24 20:31:01 +00009// * Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11// * Redistributions in binary form must reproduce the above
12// copyright notice, this list of conditions and the following disclaimer
13// in the documentation and/or other materials provided with the
14// distribution.
15// * Neither the name of Google Inc. nor the names of its
16// contributors may be used to endorse or promote products derived from
17// this software without specific prior written permission.
temporal40ee5512008-07-10 02:12:20 +000018//
kenton@google.com24bf56f2008-09-24 20:31:01 +000019// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
temporal40ee5512008-07-10 02:12:20 +000030
31// Author: kenton@google.com (Kenton Varda)
32// Based on original Protocol Buffers design by
33// Sanjay Ghemawat, Jeff Dean, and others.
34
liujisi@google.com33165fe2010-11-02 13:14:58 +000035#include <algorithm>
36
temporal40ee5512008-07-10 02:12:20 +000037#include <google/protobuf/repeated_field.h>
Feng Xiaoeee38b02015-08-22 18:25:48 -070038#include <google/protobuf/stubs/logging.h>
kenton@google.com80b1d622009-07-29 01:13:20 +000039#include <google/protobuf/stubs/common.h>
temporal40ee5512008-07-10 02:12:20 +000040
41namespace google {
42namespace protobuf {
liujisi@google.com33165fe2010-11-02 13:14:58 +000043
temporal40ee5512008-07-10 02:12:20 +000044namespace internal {
45
Feng Xiao6ef984a2014-11-10 17:34:54 -080046void** RepeatedPtrFieldBase::InternalExtend(int extend_amount) {
47 int new_size = current_size_ + extend_amount;
48 if (total_size_ >= new_size) {
49 // N.B.: rep_ is non-NULL because extend_amount is always > 0, hence
50 // total_size must be non-zero since it is lower-bounded by new_size.
51 return &rep_->elements[current_size_];
52 }
53 Rep* old_rep = rep_;
54 Arena* arena = GetArenaNoVirtual();
55 new_size = max(kMinRepeatedFieldAllocationSize,
56 max(total_size_ * 2, new_size));
Feng Xiaoeee38b02015-08-22 18:25:48 -070057 GOOGLE_CHECK_LE(new_size,
58 (std::numeric_limits<size_t>::max() - kRepHeaderSize) /
59 sizeof(old_rep->elements[0]))
60 << "Requested size is too large to fit into size_t.";
Feng Xiao6ef984a2014-11-10 17:34:54 -080061 if (arena == NULL) {
62 rep_ = reinterpret_cast<Rep*>(
Feng Xiaoeee38b02015-08-22 18:25:48 -070063 new char[kRepHeaderSize + sizeof(old_rep->elements[0]) * new_size]);
Feng Xiao6ef984a2014-11-10 17:34:54 -080064 } else {
65 rep_ = reinterpret_cast<Rep*>(
66 ::google::protobuf::Arena::CreateArray<char>(arena,
Feng Xiaoeee38b02015-08-22 18:25:48 -070067 kRepHeaderSize + sizeof(old_rep->elements[0]) * new_size));
Feng Xiao6ef984a2014-11-10 17:34:54 -080068 }
69 total_size_ = new_size;
70 if (old_rep && old_rep->allocated_size > 0) {
71 memcpy(rep_->elements, old_rep->elements,
72 old_rep->allocated_size * sizeof(rep_->elements[0]));
73 rep_->allocated_size = old_rep->allocated_size;
74 } else {
75 rep_->allocated_size = 0;
76 }
77 if (arena == NULL) {
78 delete [] reinterpret_cast<char*>(old_rep);
79 }
80 return &rep_->elements[current_size_];
81}
kenton@google.comfccb1462009-12-18 02:11:36 +000082
Feng Xiao6ef984a2014-11-10 17:34:54 -080083void RepeatedPtrFieldBase::Reserve(int new_size) {
84 if (new_size > current_size_) {
85 InternalExtend(new_size - current_size_);
kenton@google.comfccb1462009-12-18 02:11:36 +000086 }
87}
88
Feng Xiao6ef984a2014-11-10 17:34:54 -080089void RepeatedPtrFieldBase::CloseGap(int start, int num) {
90 if (rep_ == NULL) return;
91 // Close up a gap of "num" elements starting at offset "start".
92 for (int i = start + num; i < rep_->allocated_size; ++i)
93 rep_->elements[i - num] = rep_->elements[i];
94 current_size_ -= num;
95 rep_->allocated_size -= num;
kenton@google.com80b1d622009-07-29 01:13:20 +000096}
97
liujisi@google.com33165fe2010-11-02 13:14:58 +000098} // namespace internal
kenton@google.com80b1d622009-07-29 01:13:20 +000099
temporal40ee5512008-07-10 02:12:20 +0000100
kenton@google.coma2a32c22008-11-14 17:29:32 +0000101} // namespace protobuf
temporal40ee5512008-07-10 02:12:20 +0000102} // namespace google