stl_util.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. // from google3/util/gtl/stl_util.h
  31. #ifndef GOOGLE_PROTOBUF_STUBS_STL_UTIL_H__
  32. #define GOOGLE_PROTOBUF_STUBS_STL_UTIL_H__
  33. #include <google/protobuf/stubs/common.h>
  34. namespace google {
  35. namespace protobuf {
  36. // STLDeleteContainerPointers()
  37. // For a range within a container of pointers, calls delete
  38. // (non-array version) on these pointers.
  39. // NOTE: for these three functions, we could just implement a DeleteObject
  40. // functor and then call for_each() on the range and functor, but this
  41. // requires us to pull in all of algorithm.h, which seems expensive.
  42. // For hash_[multi]set, it is important that this deletes behind the iterator
  43. // because the hash_set may call the hash function on the iterator when it is
  44. // advanced, which could result in the hash function trying to deference a
  45. // stale pointer.
  46. template <class ForwardIterator>
  47. void STLDeleteContainerPointers(ForwardIterator begin,
  48. ForwardIterator end) {
  49. while (begin != end) {
  50. ForwardIterator temp = begin;
  51. ++begin;
  52. delete *temp;
  53. }
  54. }
  55. // Inside Google, this function implements a horrible, disgusting hack in which
  56. // we reach into the string's private implementation and resize it without
  57. // initializing the new bytes. In some cases doing this can significantly
  58. // improve performance. However, since it's totally non-portable it has no
  59. // place in open source code. Feel free to fill this function in with your
  60. // own disgusting hack if you want the perf boost.
  61. inline void STLStringResizeUninitialized(string* s, size_t new_size) {
  62. s->resize(new_size);
  63. }
  64. // Return a mutable char* pointing to a string's internal buffer,
  65. // which may not be null-terminated. Writing through this pointer will
  66. // modify the string.
  67. //
  68. // string_as_array(&str)[i] is valid for 0 <= i < str.size() until the
  69. // next call to a string method that invalidates iterators.
  70. //
  71. // As of 2006-04, there is no standard-blessed way of getting a
  72. // mutable reference to a string's internal buffer. However, issue 530
  73. // (http://www.open-std.org/JTC1/SC22/WG21/docs/lwg-active.html#530)
  74. // proposes this as the method. According to Matt Austern, this should
  75. // already work on all current implementations.
  76. inline char* string_as_array(string* str) {
  77. // DO NOT USE const_cast<char*>(str->data())! See the unittest for why.
  78. return str->empty() ? NULL : &*str->begin();
  79. }
  80. // STLDeleteElements() deletes all the elements in an STL container and clears
  81. // the container. This function is suitable for use with a vector, set,
  82. // hash_set, or any other STL container which defines sensible begin(), end(),
  83. // and clear() methods.
  84. //
  85. // If container is NULL, this function is a no-op.
  86. //
  87. // As an alternative to calling STLDeleteElements() directly, consider
  88. // ElementDeleter (defined below), which ensures that your container's elements
  89. // are deleted when the ElementDeleter goes out of scope.
  90. template <class T>
  91. void STLDeleteElements(T *container) {
  92. if (!container) return;
  93. STLDeleteContainerPointers(container->begin(), container->end());
  94. container->clear();
  95. }
  96. // Given an STL container consisting of (key, value) pairs, STLDeleteValues
  97. // deletes all the "value" components and clears the container. Does nothing
  98. // in the case it's given a NULL pointer.
  99. template <class T>
  100. void STLDeleteValues(T *v) {
  101. if (!v) return;
  102. for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
  103. delete i->second;
  104. }
  105. v->clear();
  106. }
  107. } // namespace protobuf
  108. } // namespace google
  109. #endif // GOOGLE_PROTOBUF_STUBS_STL_UTIL_H__