repeated_field.h 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * 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.
  18. //
  19. // 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.
  30. // Author: kenton@google.com (Kenton Varda)
  31. // Based on original Protocol Buffers design by
  32. // Sanjay Ghemawat, Jeff Dean, and others.
  33. //
  34. // RepeatedField and RepeatedPtrField are used by generated protocol message
  35. // classes to manipulate repeated fields. These classes are very similar to
  36. // STL's vector, but include a number of optimizations found to be useful
  37. // specifically in the case of Protocol Buffers. RepeatedPtrField is
  38. // particularly different from STL vector as it manages ownership of the
  39. // pointers that it contains.
  40. //
  41. // Typically, clients should not need to access RepeatedField objects directly,
  42. // but should instead use the accessor functions generated automatically by the
  43. // protocol compiler.
  44. #ifndef GOOGLE_PROTOBUF_REPEATED_FIELD_H__
  45. #define GOOGLE_PROTOBUF_REPEATED_FIELD_H__
  46. #ifdef _MSC_VER
  47. // This is required for min/max on VS2013 only.
  48. #include <algorithm>
  49. #endif
  50. #include <string>
  51. #include <iterator>
  52. #include <google/protobuf/stubs/common.h>
  53. #include <google/protobuf/stubs/type_traits.h>
  54. #include <google/protobuf/generated_message_util.h>
  55. #include <google/protobuf/message_lite.h>
  56. namespace google {
  57. namespace upb {
  58. namespace google_opensource {
  59. class GMR_Handlers;
  60. } // namespace google_opensource
  61. } // namespace upb
  62. namespace protobuf {
  63. class Message;
  64. namespace internal {
  65. static const int kMinRepeatedFieldAllocationSize = 4;
  66. // A utility function for logging that doesn't need any template types.
  67. void LogIndexOutOfBounds(int index, int size);
  68. template <typename Iter>
  69. inline int CalculateReserve(Iter begin, Iter end, std::forward_iterator_tag) {
  70. return std::distance(begin, end);
  71. }
  72. template <typename Iter>
  73. inline int CalculateReserve(Iter begin, Iter end, std::input_iterator_tag) {
  74. return -1;
  75. }
  76. template <typename Iter>
  77. inline int CalculateReserve(Iter begin, Iter end) {
  78. typedef typename std::iterator_traits<Iter>::iterator_category Category;
  79. return CalculateReserve(begin, end, Category());
  80. }
  81. } // namespace internal
  82. // RepeatedField is used to represent repeated fields of a primitive type (in
  83. // other words, everything except strings and nested Messages). Most users will
  84. // not ever use a RepeatedField directly; they will use the get-by-index,
  85. // set-by-index, and add accessors that are generated for all repeated fields.
  86. template <typename Element>
  87. class RepeatedField {
  88. public:
  89. RepeatedField();
  90. RepeatedField(const RepeatedField& other);
  91. template <typename Iter>
  92. RepeatedField(Iter begin, const Iter& end);
  93. ~RepeatedField();
  94. RepeatedField& operator=(const RepeatedField& other);
  95. bool empty() const;
  96. int size() const;
  97. const Element& Get(int index) const;
  98. Element* Mutable(int index);
  99. void Set(int index, const Element& value);
  100. void Add(const Element& value);
  101. Element* Add();
  102. // Remove the last element in the array.
  103. void RemoveLast();
  104. // Extract elements with indices in "[start .. start+num-1]".
  105. // Copy them into "elements[0 .. num-1]" if "elements" is not NULL.
  106. // Caution: implementation also moves elements with indices [start+num ..].
  107. // Calling this routine inside a loop can cause quadratic behavior.
  108. void ExtractSubrange(int start, int num, Element* elements);
  109. void Clear();
  110. void MergeFrom(const RepeatedField& other);
  111. void CopyFrom(const RepeatedField& other);
  112. // Reserve space to expand the field to at least the given size. If the
  113. // array is grown, it will always be at least doubled in size.
  114. void Reserve(int new_size);
  115. // Resize the RepeatedField to a new, smaller size. This is O(1).
  116. void Truncate(int new_size);
  117. void AddAlreadyReserved(const Element& value);
  118. Element* AddAlreadyReserved();
  119. int Capacity() const;
  120. // Like STL resize. Uses value to fill appended elements.
  121. // Like Truncate() if new_size <= size(), otherwise this is
  122. // O(new_size - size()).
  123. void Resize(int new_size, const Element& value);
  124. // Gets the underlying array. This pointer is possibly invalidated by
  125. // any add or remove operation.
  126. Element* mutable_data();
  127. const Element* data() const;
  128. // Swap entire contents with "other".
  129. void Swap(RepeatedField* other);
  130. // Swap two elements.
  131. void SwapElements(int index1, int index2);
  132. // STL-like iterator support
  133. typedef Element* iterator;
  134. typedef const Element* const_iterator;
  135. typedef Element value_type;
  136. typedef value_type& reference;
  137. typedef const value_type& const_reference;
  138. typedef value_type* pointer;
  139. typedef const value_type* const_pointer;
  140. typedef int size_type;
  141. typedef ptrdiff_t difference_type;
  142. iterator begin();
  143. const_iterator begin() const;
  144. iterator end();
  145. const_iterator end() const;
  146. // Reverse iterator support
  147. typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
  148. typedef std::reverse_iterator<iterator> reverse_iterator;
  149. reverse_iterator rbegin() {
  150. return reverse_iterator(end());
  151. }
  152. const_reverse_iterator rbegin() const {
  153. return const_reverse_iterator(end());
  154. }
  155. reverse_iterator rend() {
  156. return reverse_iterator(begin());
  157. }
  158. const_reverse_iterator rend() const {
  159. return const_reverse_iterator(begin());
  160. }
  161. // Returns the number of bytes used by the repeated field, excluding
  162. // sizeof(*this)
  163. int SpaceUsedExcludingSelf() const;
  164. private:
  165. static const int kInitialSize = 0;
  166. Element* elements_;
  167. int current_size_;
  168. int total_size_;
  169. // Move the contents of |from| into |to|, possibly clobbering |from| in the
  170. // process. For primitive types this is just a memcpy(), but it could be
  171. // specialized for non-primitive types to, say, swap each element instead.
  172. void MoveArray(Element to[], Element from[], int size);
  173. // Copy the elements of |from| into |to|.
  174. void CopyArray(Element to[], const Element from[], int size);
  175. };
  176. namespace internal {
  177. template <typename It> class RepeatedPtrIterator;
  178. template <typename It, typename VoidPtr> class RepeatedPtrOverPtrsIterator;
  179. } // namespace internal
  180. namespace internal {
  181. // This is a helper template to copy an array of elements effeciently when they
  182. // have a trivial copy constructor, and correctly otherwise. This really
  183. // shouldn't be necessary, but our compiler doesn't optimize std::copy very
  184. // effectively.
  185. template <typename Element,
  186. bool HasTrivialCopy = has_trivial_copy<Element>::value>
  187. struct ElementCopier {
  188. void operator()(Element to[], const Element from[], int array_size);
  189. };
  190. } // namespace internal
  191. namespace internal {
  192. // This is the common base class for RepeatedPtrFields. It deals only in void*
  193. // pointers. Users should not use this interface directly.
  194. //
  195. // The methods of this interface correspond to the methods of RepeatedPtrField,
  196. // but may have a template argument called TypeHandler. Its signature is:
  197. // class TypeHandler {
  198. // public:
  199. // typedef MyType Type;
  200. // static Type* New();
  201. // static void Delete(Type*);
  202. // static void Clear(Type*);
  203. // static void Merge(const Type& from, Type* to);
  204. //
  205. // // Only needs to be implemented if SpaceUsedExcludingSelf() is called.
  206. // static int SpaceUsed(const Type&);
  207. // };
  208. class LIBPROTOBUF_EXPORT RepeatedPtrFieldBase {
  209. protected:
  210. // The reflection implementation needs to call protected methods directly,
  211. // reinterpreting pointers as being to Message instead of a specific Message
  212. // subclass.
  213. friend class GeneratedMessageReflection;
  214. // ExtensionSet stores repeated message extensions as
  215. // RepeatedPtrField<MessageLite>, but non-lite ExtensionSets need to
  216. // implement SpaceUsed(), and thus need to call SpaceUsedExcludingSelf()
  217. // reinterpreting MessageLite as Message. ExtensionSet also needs to make
  218. // use of AddFromCleared(), which is not part of the public interface.
  219. friend class ExtensionSet;
  220. // To parse directly into a proto2 generated class, the upb class GMR_Handlers
  221. // needs to be able to modify a RepeatedPtrFieldBase directly.
  222. friend class LIBPROTOBUF_EXPORT upb::google_opensource::GMR_Handlers;
  223. RepeatedPtrFieldBase();
  224. // Must be called from destructor.
  225. template <typename TypeHandler>
  226. void Destroy();
  227. bool empty() const;
  228. int size() const;
  229. template <typename TypeHandler>
  230. const typename TypeHandler::Type& Get(int index) const;
  231. template <typename TypeHandler>
  232. typename TypeHandler::Type* Mutable(int index);
  233. template <typename TypeHandler>
  234. typename TypeHandler::Type* Add();
  235. template <typename TypeHandler>
  236. void RemoveLast();
  237. template <typename TypeHandler>
  238. void Clear();
  239. template <typename TypeHandler>
  240. void MergeFrom(const RepeatedPtrFieldBase& other);
  241. template <typename TypeHandler>
  242. void CopyFrom(const RepeatedPtrFieldBase& other);
  243. void CloseGap(int start, int num) {
  244. // Close up a gap of "num" elements starting at offset "start".
  245. for (int i = start + num; i < allocated_size_; ++i)
  246. elements_[i - num] = elements_[i];
  247. current_size_ -= num;
  248. allocated_size_ -= num;
  249. }
  250. void Reserve(int new_size);
  251. int Capacity() const;
  252. // Used for constructing iterators.
  253. void* const* raw_data() const;
  254. void** raw_mutable_data() const;
  255. template <typename TypeHandler>
  256. typename TypeHandler::Type** mutable_data();
  257. template <typename TypeHandler>
  258. const typename TypeHandler::Type* const* data() const;
  259. void Swap(RepeatedPtrFieldBase* other);
  260. void SwapElements(int index1, int index2);
  261. template <typename TypeHandler>
  262. int SpaceUsedExcludingSelf() const;
  263. // Advanced memory management --------------------------------------
  264. // Like Add(), but if there are no cleared objects to use, returns NULL.
  265. template <typename TypeHandler>
  266. typename TypeHandler::Type* AddFromCleared();
  267. template <typename TypeHandler>
  268. void AddAllocated(typename TypeHandler::Type* value);
  269. template <typename TypeHandler>
  270. typename TypeHandler::Type* ReleaseLast();
  271. int ClearedCount() const;
  272. template <typename TypeHandler>
  273. void AddCleared(typename TypeHandler::Type* value);
  274. template <typename TypeHandler>
  275. typename TypeHandler::Type* ReleaseCleared();
  276. private:
  277. static const int kInitialSize = 0;
  278. void** elements_;
  279. int current_size_;
  280. int allocated_size_;
  281. int total_size_;
  282. template <typename TypeHandler>
  283. static inline typename TypeHandler::Type* cast(void* element) {
  284. return reinterpret_cast<typename TypeHandler::Type*>(element);
  285. }
  286. template <typename TypeHandler>
  287. static inline const typename TypeHandler::Type* cast(const void* element) {
  288. return reinterpret_cast<const typename TypeHandler::Type*>(element);
  289. }
  290. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(RepeatedPtrFieldBase);
  291. };
  292. template <typename GenericType>
  293. class GenericTypeHandler {
  294. public:
  295. typedef GenericType Type;
  296. static GenericType* New() { return new GenericType; }
  297. static void Delete(GenericType* value) { delete value; }
  298. static void Clear(GenericType* value) { value->Clear(); }
  299. static void Merge(const GenericType& from, GenericType* to) {
  300. to->MergeFrom(from);
  301. }
  302. static int SpaceUsed(const GenericType& value) { return value.SpaceUsed(); }
  303. static const Type& default_instance() { return Type::default_instance(); }
  304. };
  305. template <>
  306. inline void GenericTypeHandler<MessageLite>::Merge(
  307. const MessageLite& from, MessageLite* to) {
  308. to->CheckTypeAndMergeFrom(from);
  309. }
  310. template <>
  311. inline const MessageLite& GenericTypeHandler<MessageLite>::default_instance() {
  312. // Yes, the behavior of the code is undefined, but this function is only
  313. // called when we're already deep into the world of undefined, because the
  314. // caller called Get(index) out of bounds.
  315. MessageLite* null = NULL;
  316. return *null;
  317. }
  318. template <>
  319. inline const Message& GenericTypeHandler<Message>::default_instance() {
  320. // Yes, the behavior of the code is undefined, but this function is only
  321. // called when we're already deep into the world of undefined, because the
  322. // caller called Get(index) out of bounds.
  323. Message* null = NULL;
  324. return *null;
  325. }
  326. // HACK: If a class is declared as DLL-exported in MSVC, it insists on
  327. // generating copies of all its methods -- even inline ones -- to include
  328. // in the DLL. But SpaceUsed() calls StringSpaceUsedExcludingSelf() which
  329. // isn't in the lite library, therefore the lite library cannot link if
  330. // StringTypeHandler is exported. So, we factor out StringTypeHandlerBase,
  331. // export that, then make StringTypeHandler be a subclass which is NOT
  332. // exported.
  333. // TODO(kenton): There has to be a better way.
  334. class LIBPROTOBUF_EXPORT StringTypeHandlerBase {
  335. public:
  336. typedef string Type;
  337. static string* New();
  338. static void Delete(string* value);
  339. static void Clear(string* value) { value->clear(); }
  340. static void Merge(const string& from, string* to) { *to = from; }
  341. static const Type& default_instance() {
  342. return ::google::protobuf::internal::GetEmptyString();
  343. }
  344. };
  345. class StringTypeHandler : public StringTypeHandlerBase {
  346. public:
  347. static int SpaceUsed(const string& value) {
  348. return sizeof(value) + StringSpaceUsedExcludingSelf(value);
  349. }
  350. };
  351. } // namespace internal
  352. // RepeatedPtrField is like RepeatedField, but used for repeated strings or
  353. // Messages.
  354. template <typename Element>
  355. class RepeatedPtrField : public internal::RepeatedPtrFieldBase {
  356. public:
  357. RepeatedPtrField();
  358. RepeatedPtrField(const RepeatedPtrField& other);
  359. template <typename Iter>
  360. RepeatedPtrField(Iter begin, const Iter& end);
  361. ~RepeatedPtrField();
  362. RepeatedPtrField& operator=(const RepeatedPtrField& other);
  363. bool empty() const;
  364. int size() const;
  365. const Element& Get(int index) const;
  366. Element* Mutable(int index);
  367. Element* Add();
  368. // Remove the last element in the array.
  369. // Ownership of the element is retained by the array.
  370. void RemoveLast();
  371. // Delete elements with indices in the range [start .. start+num-1].
  372. // Caution: implementation moves all elements with indices [start+num .. ].
  373. // Calling this routine inside a loop can cause quadratic behavior.
  374. void DeleteSubrange(int start, int num);
  375. void Clear();
  376. void MergeFrom(const RepeatedPtrField& other);
  377. void CopyFrom(const RepeatedPtrField& other);
  378. // Reserve space to expand the field to at least the given size. This only
  379. // resizes the pointer array; it doesn't allocate any objects. If the
  380. // array is grown, it will always be at least doubled in size.
  381. void Reserve(int new_size);
  382. int Capacity() const;
  383. // Gets the underlying array. This pointer is possibly invalidated by
  384. // any add or remove operation.
  385. Element** mutable_data();
  386. const Element* const* data() const;
  387. // Swap entire contents with "other".
  388. void Swap(RepeatedPtrField* other);
  389. // Swap two elements.
  390. void SwapElements(int index1, int index2);
  391. // STL-like iterator support
  392. typedef internal::RepeatedPtrIterator<Element> iterator;
  393. typedef internal::RepeatedPtrIterator<const Element> const_iterator;
  394. typedef Element value_type;
  395. typedef value_type& reference;
  396. typedef const value_type& const_reference;
  397. typedef value_type* pointer;
  398. typedef const value_type* const_pointer;
  399. typedef int size_type;
  400. typedef ptrdiff_t difference_type;
  401. iterator begin();
  402. const_iterator begin() const;
  403. iterator end();
  404. const_iterator end() const;
  405. // Reverse iterator support
  406. typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
  407. typedef std::reverse_iterator<iterator> reverse_iterator;
  408. reverse_iterator rbegin() {
  409. return reverse_iterator(end());
  410. }
  411. const_reverse_iterator rbegin() const {
  412. return const_reverse_iterator(end());
  413. }
  414. reverse_iterator rend() {
  415. return reverse_iterator(begin());
  416. }
  417. const_reverse_iterator rend() const {
  418. return const_reverse_iterator(begin());
  419. }
  420. // Custom STL-like iterator that iterates over and returns the underlying
  421. // pointers to Element rather than Element itself.
  422. typedef internal::RepeatedPtrOverPtrsIterator<Element, void*>
  423. pointer_iterator;
  424. typedef internal::RepeatedPtrOverPtrsIterator<const Element, const void*>
  425. const_pointer_iterator;
  426. pointer_iterator pointer_begin();
  427. const_pointer_iterator pointer_begin() const;
  428. pointer_iterator pointer_end();
  429. const_pointer_iterator pointer_end() const;
  430. // Returns (an estimate of) the number of bytes used by the repeated field,
  431. // excluding sizeof(*this).
  432. int SpaceUsedExcludingSelf() const;
  433. // Advanced memory management --------------------------------------
  434. // When hardcore memory management becomes necessary -- as it sometimes
  435. // does here at Google -- the following methods may be useful.
  436. // Add an already-allocated object, passing ownership to the
  437. // RepeatedPtrField.
  438. void AddAllocated(Element* value);
  439. // Remove the last element and return it, passing ownership to the caller.
  440. // Requires: size() > 0
  441. Element* ReleaseLast();
  442. // Extract elements with indices in the range "[start .. start+num-1]".
  443. // The caller assumes ownership of the extracted elements and is responsible
  444. // for deleting them when they are no longer needed.
  445. // If "elements" is non-NULL, then pointers to the extracted elements
  446. // are stored in "elements[0 .. num-1]" for the convenience of the caller.
  447. // If "elements" is NULL, then the caller must use some other mechanism
  448. // to perform any further operations (like deletion) on these elements.
  449. // Caution: implementation also moves elements with indices [start+num ..].
  450. // Calling this routine inside a loop can cause quadratic behavior.
  451. void ExtractSubrange(int start, int num, Element** elements);
  452. // When elements are removed by calls to RemoveLast() or Clear(), they
  453. // are not actually freed. Instead, they are cleared and kept so that
  454. // they can be reused later. This can save lots of CPU time when
  455. // repeatedly reusing a protocol message for similar purposes.
  456. //
  457. // Hardcore programs may choose to manipulate these cleared objects
  458. // to better optimize memory management using the following routines.
  459. // Get the number of cleared objects that are currently being kept
  460. // around for reuse.
  461. int ClearedCount() const;
  462. // Add an element to the pool of cleared objects, passing ownership to
  463. // the RepeatedPtrField. The element must be cleared prior to calling
  464. // this method.
  465. void AddCleared(Element* value);
  466. // Remove a single element from the cleared pool and return it, passing
  467. // ownership to the caller. The element is guaranteed to be cleared.
  468. // Requires: ClearedCount() > 0
  469. Element* ReleaseCleared();
  470. protected:
  471. // Note: RepeatedPtrField SHOULD NOT be subclassed by users. We only
  472. // subclass it in one place as a hack for compatibility with proto1. The
  473. // subclass needs to know about TypeHandler in order to call protected
  474. // methods on RepeatedPtrFieldBase.
  475. class TypeHandler;
  476. };
  477. // implementation ====================================================
  478. template <typename Element>
  479. inline RepeatedField<Element>::RepeatedField()
  480. : elements_(NULL),
  481. current_size_(0),
  482. total_size_(kInitialSize) {
  483. }
  484. template <typename Element>
  485. inline RepeatedField<Element>::RepeatedField(const RepeatedField& other)
  486. : elements_(NULL),
  487. current_size_(0),
  488. total_size_(kInitialSize) {
  489. CopyFrom(other);
  490. }
  491. template <typename Element>
  492. template <typename Iter>
  493. inline RepeatedField<Element>::RepeatedField(Iter begin, const Iter& end)
  494. : elements_(NULL),
  495. current_size_(0),
  496. total_size_(kInitialSize) {
  497. int reserve = internal::CalculateReserve(begin, end);
  498. if (reserve != -1) {
  499. Reserve(reserve);
  500. for (; begin != end; ++begin) {
  501. AddAlreadyReserved(*begin);
  502. }
  503. } else {
  504. for (; begin != end; ++begin) {
  505. Add(*begin);
  506. }
  507. }
  508. }
  509. template <typename Element>
  510. RepeatedField<Element>::~RepeatedField() {
  511. delete [] elements_;
  512. }
  513. template <typename Element>
  514. inline RepeatedField<Element>&
  515. RepeatedField<Element>::operator=(const RepeatedField& other) {
  516. if (this != &other)
  517. CopyFrom(other);
  518. return *this;
  519. }
  520. template <typename Element>
  521. inline bool RepeatedField<Element>::empty() const {
  522. return current_size_ == 0;
  523. }
  524. template <typename Element>
  525. inline int RepeatedField<Element>::size() const {
  526. return current_size_;
  527. }
  528. template <typename Element>
  529. inline int RepeatedField<Element>::Capacity() const {
  530. return total_size_;
  531. }
  532. template<typename Element>
  533. inline void RepeatedField<Element>::AddAlreadyReserved(const Element& value) {
  534. GOOGLE_DCHECK_LT(size(), Capacity());
  535. elements_[current_size_++] = value;
  536. }
  537. template<typename Element>
  538. inline Element* RepeatedField<Element>::AddAlreadyReserved() {
  539. GOOGLE_DCHECK_LT(size(), Capacity());
  540. return &elements_[current_size_++];
  541. }
  542. template<typename Element>
  543. inline void RepeatedField<Element>::Resize(int new_size, const Element& value) {
  544. GOOGLE_DCHECK_GE(new_size, 0);
  545. if (new_size > size()) {
  546. Reserve(new_size);
  547. std::fill(&elements_[current_size_], &elements_[new_size], value);
  548. }
  549. current_size_ = new_size;
  550. }
  551. template <typename Element>
  552. inline const Element& RepeatedField<Element>::Get(int index) const {
  553. GOOGLE_DCHECK_GE(index, 0);
  554. GOOGLE_DCHECK_LT(index, size());
  555. return elements_[index];
  556. }
  557. template <typename Element>
  558. inline Element* RepeatedField<Element>::Mutable(int index) {
  559. GOOGLE_DCHECK_GE(index, 0);
  560. GOOGLE_DCHECK_LT(index, size());
  561. return elements_ + index;
  562. }
  563. template <typename Element>
  564. inline void RepeatedField<Element>::Set(int index, const Element& value) {
  565. GOOGLE_DCHECK_GE(index, 0);
  566. GOOGLE_DCHECK_LT(index, size());
  567. elements_[index] = value;
  568. }
  569. template <typename Element>
  570. inline void RepeatedField<Element>::Add(const Element& value) {
  571. if (current_size_ == total_size_) Reserve(total_size_ + 1);
  572. elements_[current_size_++] = value;
  573. }
  574. template <typename Element>
  575. inline Element* RepeatedField<Element>::Add() {
  576. if (current_size_ == total_size_) Reserve(total_size_ + 1);
  577. return &elements_[current_size_++];
  578. }
  579. template <typename Element>
  580. inline void RepeatedField<Element>::RemoveLast() {
  581. GOOGLE_DCHECK_GT(current_size_, 0);
  582. --current_size_;
  583. }
  584. template <typename Element>
  585. void RepeatedField<Element>::ExtractSubrange(
  586. int start, int num, Element* elements) {
  587. GOOGLE_DCHECK_GE(start, 0);
  588. GOOGLE_DCHECK_GE(num, 0);
  589. GOOGLE_DCHECK_LE(start + num, this->size());
  590. // Save the values of the removed elements if requested.
  591. if (elements != NULL) {
  592. for (int i = 0; i < num; ++i)
  593. elements[i] = this->Get(i + start);
  594. }
  595. // Slide remaining elements down to fill the gap.
  596. if (num > 0) {
  597. for (int i = start + num; i < this->size(); ++i)
  598. this->Set(i - num, this->Get(i));
  599. this->Truncate(this->size() - num);
  600. }
  601. }
  602. template <typename Element>
  603. inline void RepeatedField<Element>::Clear() {
  604. current_size_ = 0;
  605. }
  606. template <typename Element>
  607. inline void RepeatedField<Element>::MergeFrom(const RepeatedField& other) {
  608. GOOGLE_CHECK_NE(&other, this);
  609. if (other.current_size_ != 0) {
  610. Reserve(current_size_ + other.current_size_);
  611. CopyArray(elements_ + current_size_, other.elements_, other.current_size_);
  612. current_size_ += other.current_size_;
  613. }
  614. }
  615. template <typename Element>
  616. inline void RepeatedField<Element>::CopyFrom(const RepeatedField& other) {
  617. if (&other == this) return;
  618. Clear();
  619. MergeFrom(other);
  620. }
  621. template <typename Element>
  622. inline Element* RepeatedField<Element>::mutable_data() {
  623. return elements_;
  624. }
  625. template <typename Element>
  626. inline const Element* RepeatedField<Element>::data() const {
  627. return elements_;
  628. }
  629. template <typename Element>
  630. void RepeatedField<Element>::Swap(RepeatedField* other) {
  631. if (this == other) return;
  632. Element* swap_elements = elements_;
  633. int swap_current_size = current_size_;
  634. int swap_total_size = total_size_;
  635. elements_ = other->elements_;
  636. current_size_ = other->current_size_;
  637. total_size_ = other->total_size_;
  638. other->elements_ = swap_elements;
  639. other->current_size_ = swap_current_size;
  640. other->total_size_ = swap_total_size;
  641. }
  642. template <typename Element>
  643. void RepeatedField<Element>::SwapElements(int index1, int index2) {
  644. using std::swap; // enable ADL with fallback
  645. swap(elements_[index1], elements_[index2]);
  646. }
  647. template <typename Element>
  648. inline typename RepeatedField<Element>::iterator
  649. RepeatedField<Element>::begin() {
  650. return elements_;
  651. }
  652. template <typename Element>
  653. inline typename RepeatedField<Element>::const_iterator
  654. RepeatedField<Element>::begin() const {
  655. return elements_;
  656. }
  657. template <typename Element>
  658. inline typename RepeatedField<Element>::iterator
  659. RepeatedField<Element>::end() {
  660. return elements_ + current_size_;
  661. }
  662. template <typename Element>
  663. inline typename RepeatedField<Element>::const_iterator
  664. RepeatedField<Element>::end() const {
  665. return elements_ + current_size_;
  666. }
  667. template <typename Element>
  668. inline int RepeatedField<Element>::SpaceUsedExcludingSelf() const {
  669. return (elements_ != NULL) ? total_size_ * sizeof(elements_[0]) : 0;
  670. }
  671. // Avoid inlining of Reserve(): new, copy, and delete[] lead to a significant
  672. // amount of code bloat.
  673. template <typename Element>
  674. void RepeatedField<Element>::Reserve(int new_size) {
  675. if (total_size_ >= new_size) return;
  676. Element* old_elements = elements_;
  677. total_size_ = max(google::protobuf::internal::kMinRepeatedFieldAllocationSize,
  678. max(total_size_ * 2, new_size));
  679. elements_ = new Element[total_size_];
  680. if (old_elements != NULL) {
  681. MoveArray(elements_, old_elements, current_size_);
  682. delete [] old_elements;
  683. }
  684. }
  685. template <typename Element>
  686. inline void RepeatedField<Element>::Truncate(int new_size) {
  687. GOOGLE_DCHECK_LE(new_size, current_size_);
  688. current_size_ = new_size;
  689. }
  690. template <typename Element>
  691. inline void RepeatedField<Element>::MoveArray(
  692. Element to[], Element from[], int array_size) {
  693. CopyArray(to, from, array_size);
  694. }
  695. template <typename Element>
  696. inline void RepeatedField<Element>::CopyArray(
  697. Element to[], const Element from[], int array_size) {
  698. internal::ElementCopier<Element>()(to, from, array_size);
  699. }
  700. namespace internal {
  701. template <typename Element, bool HasTrivialCopy>
  702. void ElementCopier<Element, HasTrivialCopy>::operator()(
  703. Element to[], const Element from[], int array_size) {
  704. std::copy(from, from + array_size, to);
  705. }
  706. template <typename Element>
  707. struct ElementCopier<Element, true> {
  708. void operator()(Element to[], const Element from[], int array_size) {
  709. memcpy(to, from, array_size * sizeof(Element));
  710. }
  711. };
  712. } // namespace internal
  713. // -------------------------------------------------------------------
  714. namespace internal {
  715. inline RepeatedPtrFieldBase::RepeatedPtrFieldBase()
  716. : elements_(NULL),
  717. current_size_(0),
  718. allocated_size_(0),
  719. total_size_(kInitialSize) {
  720. }
  721. template <typename TypeHandler>
  722. void RepeatedPtrFieldBase::Destroy() {
  723. for (int i = 0; i < allocated_size_; i++) {
  724. TypeHandler::Delete(cast<TypeHandler>(elements_[i]));
  725. }
  726. delete [] elements_;
  727. }
  728. inline bool RepeatedPtrFieldBase::empty() const {
  729. return current_size_ == 0;
  730. }
  731. inline int RepeatedPtrFieldBase::size() const {
  732. return current_size_;
  733. }
  734. template <typename TypeHandler>
  735. inline const typename TypeHandler::Type&
  736. RepeatedPtrFieldBase::Get(int index) const {
  737. GOOGLE_DCHECK_GE(index, 0);
  738. GOOGLE_DCHECK_LT(index, size());
  739. return *cast<TypeHandler>(elements_[index]);
  740. }
  741. template <typename TypeHandler>
  742. inline typename TypeHandler::Type*
  743. RepeatedPtrFieldBase::Mutable(int index) {
  744. GOOGLE_DCHECK_GE(index, 0);
  745. GOOGLE_DCHECK_LT(index, size());
  746. return cast<TypeHandler>(elements_[index]);
  747. }
  748. template <typename TypeHandler>
  749. inline typename TypeHandler::Type* RepeatedPtrFieldBase::Add() {
  750. if (current_size_ < allocated_size_) {
  751. return cast<TypeHandler>(elements_[current_size_++]);
  752. }
  753. if (allocated_size_ == total_size_) Reserve(total_size_ + 1);
  754. typename TypeHandler::Type* result = TypeHandler::New();
  755. ++allocated_size_;
  756. elements_[current_size_++] = result;
  757. return result;
  758. }
  759. template <typename TypeHandler>
  760. inline void RepeatedPtrFieldBase::RemoveLast() {
  761. GOOGLE_DCHECK_GT(current_size_, 0);
  762. TypeHandler::Clear(cast<TypeHandler>(elements_[--current_size_]));
  763. }
  764. template <typename TypeHandler>
  765. void RepeatedPtrFieldBase::Clear() {
  766. for (int i = 0; i < current_size_; i++) {
  767. TypeHandler::Clear(cast<TypeHandler>(elements_[i]));
  768. }
  769. current_size_ = 0;
  770. }
  771. template <typename TypeHandler>
  772. inline void RepeatedPtrFieldBase::MergeFrom(const RepeatedPtrFieldBase& other) {
  773. GOOGLE_CHECK_NE(&other, this);
  774. Reserve(current_size_ + other.current_size_);
  775. for (int i = 0; i < other.current_size_; i++) {
  776. TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
  777. }
  778. }
  779. template <typename TypeHandler>
  780. inline void RepeatedPtrFieldBase::CopyFrom(const RepeatedPtrFieldBase& other) {
  781. if (&other == this) return;
  782. RepeatedPtrFieldBase::Clear<TypeHandler>();
  783. RepeatedPtrFieldBase::MergeFrom<TypeHandler>(other);
  784. }
  785. inline int RepeatedPtrFieldBase::Capacity() const {
  786. return total_size_;
  787. }
  788. inline void* const* RepeatedPtrFieldBase::raw_data() const {
  789. return elements_;
  790. }
  791. inline void** RepeatedPtrFieldBase::raw_mutable_data() const {
  792. return elements_;
  793. }
  794. template <typename TypeHandler>
  795. inline typename TypeHandler::Type** RepeatedPtrFieldBase::mutable_data() {
  796. // TODO(kenton): Breaks C++ aliasing rules. We should probably remove this
  797. // method entirely.
  798. return reinterpret_cast<typename TypeHandler::Type**>(elements_);
  799. }
  800. template <typename TypeHandler>
  801. inline const typename TypeHandler::Type* const*
  802. RepeatedPtrFieldBase::data() const {
  803. // TODO(kenton): Breaks C++ aliasing rules. We should probably remove this
  804. // method entirely.
  805. return reinterpret_cast<const typename TypeHandler::Type* const*>(elements_);
  806. }
  807. inline void RepeatedPtrFieldBase::SwapElements(int index1, int index2) {
  808. using std::swap; // enable ADL with fallback
  809. swap(elements_[index1], elements_[index2]);
  810. }
  811. template <typename TypeHandler>
  812. inline int RepeatedPtrFieldBase::SpaceUsedExcludingSelf() const {
  813. int allocated_bytes =
  814. (elements_ != NULL) ? total_size_ * sizeof(elements_[0]) : 0;
  815. for (int i = 0; i < allocated_size_; ++i) {
  816. allocated_bytes += TypeHandler::SpaceUsed(*cast<TypeHandler>(elements_[i]));
  817. }
  818. return allocated_bytes;
  819. }
  820. template <typename TypeHandler>
  821. inline typename TypeHandler::Type* RepeatedPtrFieldBase::AddFromCleared() {
  822. if (current_size_ < allocated_size_) {
  823. return cast<TypeHandler>(elements_[current_size_++]);
  824. } else {
  825. return NULL;
  826. }
  827. }
  828. template <typename TypeHandler>
  829. void RepeatedPtrFieldBase::AddAllocated(
  830. typename TypeHandler::Type* value) {
  831. // Make room for the new pointer.
  832. if (current_size_ == total_size_) {
  833. // The array is completely full with no cleared objects, so grow it.
  834. Reserve(total_size_ + 1);
  835. ++allocated_size_;
  836. } else if (allocated_size_ == total_size_) {
  837. // There is no more space in the pointer array because it contains some
  838. // cleared objects awaiting reuse. We don't want to grow the array in this
  839. // case because otherwise a loop calling AddAllocated() followed by Clear()
  840. // would leak memory.
  841. TypeHandler::Delete(cast<TypeHandler>(elements_[current_size_]));
  842. } else if (current_size_ < allocated_size_) {
  843. // We have some cleared objects. We don't care about their order, so we
  844. // can just move the first one to the end to make space.
  845. elements_[allocated_size_] = elements_[current_size_];
  846. ++allocated_size_;
  847. } else {
  848. // There are no cleared objects.
  849. ++allocated_size_;
  850. }
  851. elements_[current_size_++] = value;
  852. }
  853. template <typename TypeHandler>
  854. inline typename TypeHandler::Type* RepeatedPtrFieldBase::ReleaseLast() {
  855. GOOGLE_DCHECK_GT(current_size_, 0);
  856. typename TypeHandler::Type* result =
  857. cast<TypeHandler>(elements_[--current_size_]);
  858. --allocated_size_;
  859. if (current_size_ < allocated_size_) {
  860. // There are cleared elements on the end; replace the removed element
  861. // with the last allocated element.
  862. elements_[current_size_] = elements_[allocated_size_];
  863. }
  864. return result;
  865. }
  866. inline int RepeatedPtrFieldBase::ClearedCount() const {
  867. return allocated_size_ - current_size_;
  868. }
  869. template <typename TypeHandler>
  870. inline void RepeatedPtrFieldBase::AddCleared(
  871. typename TypeHandler::Type* value) {
  872. if (allocated_size_ == total_size_) Reserve(total_size_ + 1);
  873. elements_[allocated_size_++] = value;
  874. }
  875. template <typename TypeHandler>
  876. inline typename TypeHandler::Type* RepeatedPtrFieldBase::ReleaseCleared() {
  877. GOOGLE_DCHECK_GT(allocated_size_, current_size_);
  878. return cast<TypeHandler>(elements_[--allocated_size_]);
  879. }
  880. } // namespace internal
  881. // -------------------------------------------------------------------
  882. template <typename Element>
  883. class RepeatedPtrField<Element>::TypeHandler
  884. : public internal::GenericTypeHandler<Element> {
  885. };
  886. template <>
  887. class RepeatedPtrField<string>::TypeHandler
  888. : public internal::StringTypeHandler {
  889. };
  890. template <typename Element>
  891. inline RepeatedPtrField<Element>::RepeatedPtrField() {}
  892. template <typename Element>
  893. inline RepeatedPtrField<Element>::RepeatedPtrField(
  894. const RepeatedPtrField& other)
  895. : RepeatedPtrFieldBase() {
  896. CopyFrom(other);
  897. }
  898. template <typename Element>
  899. template <typename Iter>
  900. inline RepeatedPtrField<Element>::RepeatedPtrField(
  901. Iter begin, const Iter& end) {
  902. int reserve = internal::CalculateReserve(begin, end);
  903. if (reserve != -1) {
  904. Reserve(reserve);
  905. }
  906. for (; begin != end; ++begin) {
  907. *Add() = *begin;
  908. }
  909. }
  910. template <typename Element>
  911. RepeatedPtrField<Element>::~RepeatedPtrField() {
  912. Destroy<TypeHandler>();
  913. }
  914. template <typename Element>
  915. inline RepeatedPtrField<Element>& RepeatedPtrField<Element>::operator=(
  916. const RepeatedPtrField& other) {
  917. if (this != &other)
  918. CopyFrom(other);
  919. return *this;
  920. }
  921. template <typename Element>
  922. inline bool RepeatedPtrField<Element>::empty() const {
  923. return RepeatedPtrFieldBase::empty();
  924. }
  925. template <typename Element>
  926. inline int RepeatedPtrField<Element>::size() const {
  927. return RepeatedPtrFieldBase::size();
  928. }
  929. template <typename Element>
  930. inline const Element& RepeatedPtrField<Element>::Get(int index) const {
  931. return RepeatedPtrFieldBase::Get<TypeHandler>(index);
  932. }
  933. template <typename Element>
  934. inline Element* RepeatedPtrField<Element>::Mutable(int index) {
  935. return RepeatedPtrFieldBase::Mutable<TypeHandler>(index);
  936. }
  937. template <typename Element>
  938. inline Element* RepeatedPtrField<Element>::Add() {
  939. return RepeatedPtrFieldBase::Add<TypeHandler>();
  940. }
  941. template <typename Element>
  942. inline void RepeatedPtrField<Element>::RemoveLast() {
  943. RepeatedPtrFieldBase::RemoveLast<TypeHandler>();
  944. }
  945. template <typename Element>
  946. inline void RepeatedPtrField<Element>::DeleteSubrange(int start, int num) {
  947. GOOGLE_DCHECK_GE(start, 0);
  948. GOOGLE_DCHECK_GE(num, 0);
  949. GOOGLE_DCHECK_LE(start + num, size());
  950. for (int i = 0; i < num; ++i)
  951. delete RepeatedPtrFieldBase::Mutable<TypeHandler>(start + i);
  952. ExtractSubrange(start, num, NULL);
  953. }
  954. template <typename Element>
  955. inline void RepeatedPtrField<Element>::ExtractSubrange(
  956. int start, int num, Element** elements) {
  957. GOOGLE_DCHECK_GE(start, 0);
  958. GOOGLE_DCHECK_GE(num, 0);
  959. GOOGLE_DCHECK_LE(start + num, size());
  960. if (num > 0) {
  961. // Save the values of the removed elements if requested.
  962. if (elements != NULL) {
  963. for (int i = 0; i < num; ++i)
  964. elements[i] = RepeatedPtrFieldBase::Mutable<TypeHandler>(i + start);
  965. }
  966. CloseGap(start, num);
  967. }
  968. }
  969. template <typename Element>
  970. inline void RepeatedPtrField<Element>::Clear() {
  971. RepeatedPtrFieldBase::Clear<TypeHandler>();
  972. }
  973. template <typename Element>
  974. inline void RepeatedPtrField<Element>::MergeFrom(
  975. const RepeatedPtrField& other) {
  976. RepeatedPtrFieldBase::MergeFrom<TypeHandler>(other);
  977. }
  978. template <typename Element>
  979. inline void RepeatedPtrField<Element>::CopyFrom(
  980. const RepeatedPtrField& other) {
  981. RepeatedPtrFieldBase::CopyFrom<TypeHandler>(other);
  982. }
  983. template <typename Element>
  984. inline Element** RepeatedPtrField<Element>::mutable_data() {
  985. return RepeatedPtrFieldBase::mutable_data<TypeHandler>();
  986. }
  987. template <typename Element>
  988. inline const Element* const* RepeatedPtrField<Element>::data() const {
  989. return RepeatedPtrFieldBase::data<TypeHandler>();
  990. }
  991. template <typename Element>
  992. void RepeatedPtrField<Element>::Swap(RepeatedPtrField* other) {
  993. RepeatedPtrFieldBase::Swap(other);
  994. }
  995. template <typename Element>
  996. void RepeatedPtrField<Element>::SwapElements(int index1, int index2) {
  997. RepeatedPtrFieldBase::SwapElements(index1, index2);
  998. }
  999. template <typename Element>
  1000. inline int RepeatedPtrField<Element>::SpaceUsedExcludingSelf() const {
  1001. return RepeatedPtrFieldBase::SpaceUsedExcludingSelf<TypeHandler>();
  1002. }
  1003. template <typename Element>
  1004. inline void RepeatedPtrField<Element>::AddAllocated(Element* value) {
  1005. RepeatedPtrFieldBase::AddAllocated<TypeHandler>(value);
  1006. }
  1007. template <typename Element>
  1008. inline Element* RepeatedPtrField<Element>::ReleaseLast() {
  1009. return RepeatedPtrFieldBase::ReleaseLast<TypeHandler>();
  1010. }
  1011. template <typename Element>
  1012. inline int RepeatedPtrField<Element>::ClearedCount() const {
  1013. return RepeatedPtrFieldBase::ClearedCount();
  1014. }
  1015. template <typename Element>
  1016. inline void RepeatedPtrField<Element>::AddCleared(Element* value) {
  1017. return RepeatedPtrFieldBase::AddCleared<TypeHandler>(value);
  1018. }
  1019. template <typename Element>
  1020. inline Element* RepeatedPtrField<Element>::ReleaseCleared() {
  1021. return RepeatedPtrFieldBase::ReleaseCleared<TypeHandler>();
  1022. }
  1023. template <typename Element>
  1024. inline void RepeatedPtrField<Element>::Reserve(int new_size) {
  1025. return RepeatedPtrFieldBase::Reserve(new_size);
  1026. }
  1027. template <typename Element>
  1028. inline int RepeatedPtrField<Element>::Capacity() const {
  1029. return RepeatedPtrFieldBase::Capacity();
  1030. }
  1031. // -------------------------------------------------------------------
  1032. namespace internal {
  1033. // STL-like iterator implementation for RepeatedPtrField. You should not
  1034. // refer to this class directly; use RepeatedPtrField<T>::iterator instead.
  1035. //
  1036. // The iterator for RepeatedPtrField<T>, RepeatedPtrIterator<T>, is
  1037. // very similar to iterator_ptr<T**> in util/gtl/iterator_adaptors.h,
  1038. // but adds random-access operators and is modified to wrap a void** base
  1039. // iterator (since RepeatedPtrField stores its array as a void* array and
  1040. // casting void** to T** would violate C++ aliasing rules).
  1041. //
  1042. // This code based on net/proto/proto-array-internal.h by Jeffrey Yasskin
  1043. // (jyasskin@google.com).
  1044. template<typename Element>
  1045. class RepeatedPtrIterator
  1046. : public std::iterator<
  1047. std::random_access_iterator_tag, Element> {
  1048. public:
  1049. typedef RepeatedPtrIterator<Element> iterator;
  1050. typedef std::iterator<
  1051. std::random_access_iterator_tag, Element> superclass;
  1052. // Shadow the value_type in std::iterator<> because const_iterator::value_type
  1053. // needs to be T, not const T.
  1054. typedef typename remove_const<Element>::type value_type;
  1055. // Let the compiler know that these are type names, so we don't have to
  1056. // write "typename" in front of them everywhere.
  1057. typedef typename superclass::reference reference;
  1058. typedef typename superclass::pointer pointer;
  1059. typedef typename superclass::difference_type difference_type;
  1060. RepeatedPtrIterator() : it_(NULL) {}
  1061. explicit RepeatedPtrIterator(void* const* it) : it_(it) {}
  1062. // Allow "upcasting" from RepeatedPtrIterator<T**> to
  1063. // RepeatedPtrIterator<const T*const*>.
  1064. template<typename OtherElement>
  1065. RepeatedPtrIterator(const RepeatedPtrIterator<OtherElement>& other)
  1066. : it_(other.it_) {
  1067. // Force a compiler error if the other type is not convertible to ours.
  1068. if (false) {
  1069. implicit_cast<Element*, OtherElement*>(0);
  1070. }
  1071. }
  1072. // dereferenceable
  1073. reference operator*() const { return *reinterpret_cast<Element*>(*it_); }
  1074. pointer operator->() const { return &(operator*()); }
  1075. // {inc,dec}rementable
  1076. iterator& operator++() { ++it_; return *this; }
  1077. iterator operator++(int) { return iterator(it_++); }
  1078. iterator& operator--() { --it_; return *this; }
  1079. iterator operator--(int) { return iterator(it_--); }
  1080. // equality_comparable
  1081. bool operator==(const iterator& x) const { return it_ == x.it_; }
  1082. bool operator!=(const iterator& x) const { return it_ != x.it_; }
  1083. // less_than_comparable
  1084. bool operator<(const iterator& x) const { return it_ < x.it_; }
  1085. bool operator<=(const iterator& x) const { return it_ <= x.it_; }
  1086. bool operator>(const iterator& x) const { return it_ > x.it_; }
  1087. bool operator>=(const iterator& x) const { return it_ >= x.it_; }
  1088. // addable, subtractable
  1089. iterator& operator+=(difference_type d) {
  1090. it_ += d;
  1091. return *this;
  1092. }
  1093. friend iterator operator+(iterator it, difference_type d) {
  1094. it += d;
  1095. return it;
  1096. }
  1097. friend iterator operator+(difference_type d, iterator it) {
  1098. it += d;
  1099. return it;
  1100. }
  1101. iterator& operator-=(difference_type d) {
  1102. it_ -= d;
  1103. return *this;
  1104. }
  1105. friend iterator operator-(iterator it, difference_type d) {
  1106. it -= d;
  1107. return it;
  1108. }
  1109. // indexable
  1110. reference operator[](difference_type d) const { return *(*this + d); }
  1111. // random access iterator
  1112. difference_type operator-(const iterator& x) const { return it_ - x.it_; }
  1113. private:
  1114. template<typename OtherElement>
  1115. friend class RepeatedPtrIterator;
  1116. // The internal iterator.
  1117. void* const* it_;
  1118. };
  1119. // Provide an iterator that operates on pointers to the underlying objects
  1120. // rather than the objects themselves as RepeatedPtrIterator does.
  1121. // Consider using this when working with stl algorithms that change
  1122. // the array.
  1123. // The VoidPtr template parameter holds the type-agnostic pointer value
  1124. // referenced by the iterator. It should either be "void *" for a mutable
  1125. // iterator, or "const void *" for a constant iterator.
  1126. template<typename Element, typename VoidPtr>
  1127. class RepeatedPtrOverPtrsIterator
  1128. : public std::iterator<std::random_access_iterator_tag, Element*> {
  1129. public:
  1130. typedef RepeatedPtrOverPtrsIterator<Element, VoidPtr> iterator;
  1131. typedef std::iterator<
  1132. std::random_access_iterator_tag, Element*> superclass;
  1133. // Shadow the value_type in std::iterator<> because const_iterator::value_type
  1134. // needs to be T, not const T.
  1135. typedef typename remove_const<Element*>::type value_type;
  1136. // Let the compiler know that these are type names, so we don't have to
  1137. // write "typename" in front of them everywhere.
  1138. typedef typename superclass::reference reference;
  1139. typedef typename superclass::pointer pointer;
  1140. typedef typename superclass::difference_type difference_type;
  1141. RepeatedPtrOverPtrsIterator() : it_(NULL) {}
  1142. explicit RepeatedPtrOverPtrsIterator(VoidPtr* it) : it_(it) {}
  1143. // dereferenceable
  1144. reference operator*() const { return *reinterpret_cast<Element**>(it_); }
  1145. pointer operator->() const { return &(operator*()); }
  1146. // {inc,dec}rementable
  1147. iterator& operator++() { ++it_; return *this; }
  1148. iterator operator++(int) { return iterator(it_++); }
  1149. iterator& operator--() { --it_; return *this; }
  1150. iterator operator--(int) { return iterator(it_--); }
  1151. // equality_comparable
  1152. bool operator==(const iterator& x) const { return it_ == x.it_; }
  1153. bool operator!=(const iterator& x) const { return it_ != x.it_; }
  1154. // less_than_comparable
  1155. bool operator<(const iterator& x) const { return it_ < x.it_; }
  1156. bool operator<=(const iterator& x) const { return it_ <= x.it_; }
  1157. bool operator>(const iterator& x) const { return it_ > x.it_; }
  1158. bool operator>=(const iterator& x) const { return it_ >= x.it_; }
  1159. // addable, subtractable
  1160. iterator& operator+=(difference_type d) {
  1161. it_ += d;
  1162. return *this;
  1163. }
  1164. friend iterator operator+(iterator it, difference_type d) {
  1165. it += d;
  1166. return it;
  1167. }
  1168. friend iterator operator+(difference_type d, iterator it) {
  1169. it += d;
  1170. return it;
  1171. }
  1172. iterator& operator-=(difference_type d) {
  1173. it_ -= d;
  1174. return *this;
  1175. }
  1176. friend iterator operator-(iterator it, difference_type d) {
  1177. it -= d;
  1178. return it;
  1179. }
  1180. // indexable
  1181. reference operator[](difference_type d) const { return *(*this + d); }
  1182. // random access iterator
  1183. difference_type operator-(const iterator& x) const { return it_ - x.it_; }
  1184. private:
  1185. template<typename OtherElement>
  1186. friend class RepeatedPtrIterator;
  1187. // The internal iterator.
  1188. VoidPtr* it_;
  1189. };
  1190. } // namespace internal
  1191. template <typename Element>
  1192. inline typename RepeatedPtrField<Element>::iterator
  1193. RepeatedPtrField<Element>::begin() {
  1194. return iterator(raw_data());
  1195. }
  1196. template <typename Element>
  1197. inline typename RepeatedPtrField<Element>::const_iterator
  1198. RepeatedPtrField<Element>::begin() const {
  1199. return iterator(raw_data());
  1200. }
  1201. template <typename Element>
  1202. inline typename RepeatedPtrField<Element>::iterator
  1203. RepeatedPtrField<Element>::end() {
  1204. return iterator(raw_data() + size());
  1205. }
  1206. template <typename Element>
  1207. inline typename RepeatedPtrField<Element>::const_iterator
  1208. RepeatedPtrField<Element>::end() const {
  1209. return iterator(raw_data() + size());
  1210. }
  1211. template <typename Element>
  1212. inline typename RepeatedPtrField<Element>::pointer_iterator
  1213. RepeatedPtrField<Element>::pointer_begin() {
  1214. return pointer_iterator(raw_mutable_data());
  1215. }
  1216. template <typename Element>
  1217. inline typename RepeatedPtrField<Element>::const_pointer_iterator
  1218. RepeatedPtrField<Element>::pointer_begin() const {
  1219. return const_pointer_iterator(const_cast<const void**>(raw_mutable_data()));
  1220. }
  1221. template <typename Element>
  1222. inline typename RepeatedPtrField<Element>::pointer_iterator
  1223. RepeatedPtrField<Element>::pointer_end() {
  1224. return pointer_iterator(raw_mutable_data() + size());
  1225. }
  1226. template <typename Element>
  1227. inline typename RepeatedPtrField<Element>::const_pointer_iterator
  1228. RepeatedPtrField<Element>::pointer_end() const {
  1229. return const_pointer_iterator(
  1230. const_cast<const void**>(raw_mutable_data() + size()));
  1231. }
  1232. // Iterators and helper functions that follow the spirit of the STL
  1233. // std::back_insert_iterator and std::back_inserter but are tailor-made
  1234. // for RepeatedField and RepatedPtrField. Typical usage would be:
  1235. //
  1236. // std::copy(some_sequence.begin(), some_sequence.end(),
  1237. // google::protobuf::RepeatedFieldBackInserter(proto.mutable_sequence()));
  1238. //
  1239. // Ported by johannes from util/gtl/proto-array-iterators.h
  1240. namespace internal {
  1241. // A back inserter for RepeatedField objects.
  1242. template<typename T> class RepeatedFieldBackInsertIterator
  1243. : public std::iterator<std::output_iterator_tag, T> {
  1244. public:
  1245. explicit RepeatedFieldBackInsertIterator(
  1246. RepeatedField<T>* const mutable_field)
  1247. : field_(mutable_field) {
  1248. }
  1249. RepeatedFieldBackInsertIterator<T>& operator=(const T& value) {
  1250. field_->Add(value);
  1251. return *this;
  1252. }
  1253. RepeatedFieldBackInsertIterator<T>& operator*() {
  1254. return *this;
  1255. }
  1256. RepeatedFieldBackInsertIterator<T>& operator++() {
  1257. return *this;
  1258. }
  1259. RepeatedFieldBackInsertIterator<T>& operator++(int /* unused */) {
  1260. return *this;
  1261. }
  1262. private:
  1263. RepeatedField<T>* field_;
  1264. };
  1265. // A back inserter for RepeatedPtrField objects.
  1266. template<typename T> class RepeatedPtrFieldBackInsertIterator
  1267. : public std::iterator<std::output_iterator_tag, T> {
  1268. public:
  1269. RepeatedPtrFieldBackInsertIterator(
  1270. RepeatedPtrField<T>* const mutable_field)
  1271. : field_(mutable_field) {
  1272. }
  1273. RepeatedPtrFieldBackInsertIterator<T>& operator=(const T& value) {
  1274. *field_->Add() = value;
  1275. return *this;
  1276. }
  1277. RepeatedPtrFieldBackInsertIterator<T>& operator=(
  1278. const T* const ptr_to_value) {
  1279. *field_->Add() = *ptr_to_value;
  1280. return *this;
  1281. }
  1282. RepeatedPtrFieldBackInsertIterator<T>& operator*() {
  1283. return *this;
  1284. }
  1285. RepeatedPtrFieldBackInsertIterator<T>& operator++() {
  1286. return *this;
  1287. }
  1288. RepeatedPtrFieldBackInsertIterator<T>& operator++(int /* unused */) {
  1289. return *this;
  1290. }
  1291. private:
  1292. RepeatedPtrField<T>* field_;
  1293. };
  1294. // A back inserter for RepeatedPtrFields that inserts by transfering ownership
  1295. // of a pointer.
  1296. template<typename T> class AllocatedRepeatedPtrFieldBackInsertIterator
  1297. : public std::iterator<std::output_iterator_tag, T> {
  1298. public:
  1299. explicit AllocatedRepeatedPtrFieldBackInsertIterator(
  1300. RepeatedPtrField<T>* const mutable_field)
  1301. : field_(mutable_field) {
  1302. }
  1303. AllocatedRepeatedPtrFieldBackInsertIterator<T>& operator=(
  1304. T* const ptr_to_value) {
  1305. field_->AddAllocated(ptr_to_value);
  1306. return *this;
  1307. }
  1308. AllocatedRepeatedPtrFieldBackInsertIterator<T>& operator*() {
  1309. return *this;
  1310. }
  1311. AllocatedRepeatedPtrFieldBackInsertIterator<T>& operator++() {
  1312. return *this;
  1313. }
  1314. AllocatedRepeatedPtrFieldBackInsertIterator<T>& operator++(
  1315. int /* unused */) {
  1316. return *this;
  1317. }
  1318. private:
  1319. RepeatedPtrField<T>* field_;
  1320. };
  1321. } // namespace internal
  1322. // Provides a back insert iterator for RepeatedField instances,
  1323. // similar to std::back_inserter().
  1324. template<typename T> internal::RepeatedFieldBackInsertIterator<T>
  1325. RepeatedFieldBackInserter(RepeatedField<T>* const mutable_field) {
  1326. return internal::RepeatedFieldBackInsertIterator<T>(mutable_field);
  1327. }
  1328. // Provides a back insert iterator for RepeatedPtrField instances,
  1329. // similar to std::back_inserter().
  1330. template<typename T> internal::RepeatedPtrFieldBackInsertIterator<T>
  1331. RepeatedPtrFieldBackInserter(RepeatedPtrField<T>* const mutable_field) {
  1332. return internal::RepeatedPtrFieldBackInsertIterator<T>(mutable_field);
  1333. }
  1334. // Special back insert iterator for RepeatedPtrField instances, just in
  1335. // case someone wants to write generic template code that can access both
  1336. // RepeatedFields and RepeatedPtrFields using a common name.
  1337. template<typename T> internal::RepeatedPtrFieldBackInsertIterator<T>
  1338. RepeatedFieldBackInserter(RepeatedPtrField<T>* const mutable_field) {
  1339. return internal::RepeatedPtrFieldBackInsertIterator<T>(mutable_field);
  1340. }
  1341. // Provides a back insert iterator for RepeatedPtrField instances
  1342. // similar to std::back_inserter() which transfers the ownership while
  1343. // copying elements.
  1344. template<typename T> internal::AllocatedRepeatedPtrFieldBackInsertIterator<T>
  1345. AllocatedRepeatedPtrFieldBackInserter(
  1346. RepeatedPtrField<T>* const mutable_field) {
  1347. return internal::AllocatedRepeatedPtrFieldBackInsertIterator<T>(
  1348. mutable_field);
  1349. }
  1350. } // namespace protobuf
  1351. } // namespace google
  1352. #endif // GOOGLE_PROTOBUF_REPEATED_FIELD_H__