grpc 1.26.0 → 1.27.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1654 -1519
  3. data/etc/roots.pem +44 -0
  4. data/include/grpc/grpc_security.h +37 -15
  5. data/include/grpc/grpc_security_constants.h +27 -0
  6. data/include/grpc/impl/codegen/grpc_types.h +14 -0
  7. data/include/grpc/impl/codegen/port_platform.h +1 -1
  8. data/src/core/ext/filters/client_channel/client_channel.cc +0 -20
  9. data/src/core/ext/filters/client_channel/http_proxy.cc +4 -4
  10. data/src/core/ext/filters/client_channel/lb_policy.cc +4 -3
  11. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +191 -201
  12. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +3 -2
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +88 -121
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +28 -57
  17. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +0 -7
  18. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +8 -9
  19. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +53 -34
  20. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +18 -5
  21. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +24 -19
  22. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +2 -1
  23. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +4 -2
  24. data/src/core/ext/filters/client_channel/server_address.cc +6 -9
  25. data/src/core/ext/filters/client_channel/server_address.h +3 -10
  26. data/src/core/ext/filters/client_channel/xds/xds_api.cc +394 -150
  27. data/src/core/ext/filters/client_channel/xds/xds_api.h +75 -35
  28. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +59 -22
  29. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +13 -9
  30. data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +8 -6
  31. data/src/core/ext/filters/client_channel/xds/xds_client.cc +456 -175
  32. data/src/core/ext/filters/client_channel/xds/xds_client.h +33 -21
  33. data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +5 -8
  34. data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +18 -24
  35. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +2 -2
  36. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +13 -5
  37. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +34 -0
  38. data/src/core/lib/channel/channelz.h +11 -1
  39. data/src/core/lib/gpr/time_precise.cc +1 -1
  40. data/src/core/lib/gprpp/optional.h +26 -0
  41. data/src/core/lib/gprpp/string_view.h +14 -10
  42. data/src/core/lib/iomgr/executor.cc +1 -1
  43. data/src/core/lib/iomgr/fork_posix.cc +4 -0
  44. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
  45. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
  46. data/src/core/lib/iomgr/socket_utils_common_posix.cc +14 -0
  47. data/src/core/lib/iomgr/socket_utils_posix.h +12 -0
  48. data/src/core/lib/iomgr/tcp_custom.h +3 -0
  49. data/src/core/lib/iomgr/tcp_posix.cc +607 -56
  50. data/src/core/lib/iomgr/tcp_server_custom.cc +15 -2
  51. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +8 -0
  52. data/src/core/lib/json/json.h +11 -1
  53. data/src/core/lib/json/json_reader.cc +206 -28
  54. data/src/core/lib/json/json_writer.cc +111 -24
  55. data/src/core/lib/security/credentials/composite/composite_credentials.cc +7 -0
  56. data/src/core/lib/security/credentials/composite/composite_credentials.h +5 -1
  57. data/src/core/lib/security/credentials/credentials.h +10 -1
  58. data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -1
  59. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +1 -1
  60. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -4
  61. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -1
  62. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +20 -0
  63. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +8 -0
  64. data/src/core/lib/security/credentials/tls/{spiffe_credentials.cc → tls_credentials.cc} +23 -24
  65. data/src/core/lib/security/credentials/tls/{spiffe_credentials.h → tls_credentials.h} +9 -9
  66. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +13 -0
  67. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +22 -2
  68. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +2 -2
  69. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +2 -2
  70. data/src/core/lib/security/security_connector/local/local_security_connector.cc +30 -3
  71. data/src/core/lib/security/security_connector/ssl_utils.cc +45 -3
  72. data/src/core/lib/security/security_connector/ssl_utils.h +12 -0
  73. data/src/core/lib/security/security_connector/tls/{spiffe_security_connector.cc → tls_security_connector.cc} +82 -69
  74. data/src/core/lib/security/security_connector/tls/{spiffe_security_connector.h → tls_security_connector.h} +17 -18
  75. data/src/core/lib/security/transport/client_auth_filter.cc +33 -0
  76. data/src/core/lib/surface/completion_queue.cc +22 -1
  77. data/src/core/lib/surface/version.cc +1 -1
  78. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +11 -1
  79. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
  80. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +3 -3
  81. data/src/core/tsi/fake_transport_security.cc +7 -3
  82. data/src/core/tsi/fake_transport_security.h +2 -0
  83. data/src/core/tsi/ssl_transport_security.cc +144 -8
  84. data/src/core/tsi/ssl_transport_security.h +15 -1
  85. data/src/core/tsi/transport_security.cc +13 -0
  86. data/src/core/tsi/transport_security_grpc.cc +2 -2
  87. data/src/core/tsi/transport_security_grpc.h +2 -2
  88. data/src/core/tsi/transport_security_interface.h +12 -0
  89. data/src/ruby/bin/math_pb.rb +5 -5
  90. data/src/ruby/ext/grpc/rb_call_credentials.c +4 -1
  91. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  92. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +4 -1
  93. data/src/ruby/lib/grpc/version.rb +1 -1
  94. data/src/ruby/pb/grpc/health/v1/health_pb.rb +3 -3
  95. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -1
  96. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +23 -13
  97. data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
  98. data/third_party/abseil-cpp/absl/base/attributes.h +609 -0
  99. data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
  100. data/third_party/abseil-cpp/absl/base/casts.h +184 -0
  101. data/third_party/abseil-cpp/absl/base/config.h +622 -0
  102. data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
  103. data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
  104. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
  105. data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +179 -0
  106. data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
  107. data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
  108. data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
  109. data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
  110. data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
  111. data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
  112. data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
  113. data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
  114. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
  115. data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
  116. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +237 -0
  117. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +179 -0
  118. data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
  119. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
  120. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
  121. data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
  122. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +67 -0
  123. data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
  124. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
  125. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
  126. data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
  127. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +414 -0
  128. data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
  129. data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
  130. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +140 -0
  131. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +250 -0
  132. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
  133. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
  134. data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
  135. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
  136. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +103 -0
  137. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
  138. data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
  139. data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
  140. data/third_party/abseil-cpp/absl/base/macros.h +220 -0
  141. data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
  142. data/third_party/abseil-cpp/absl/base/options.h +214 -0
  143. data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
  144. data/third_party/abseil-cpp/absl/base/port.h +26 -0
  145. data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
  146. data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
  147. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
  148. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
  149. data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
  150. data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
  151. data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
  152. data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
  153. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
  154. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
  155. data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
  156. data/third_party/abseil-cpp/absl/strings/ascii.h +241 -0
  157. data/third_party/abseil-cpp/absl/strings/charconv.cc +985 -0
  158. data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
  159. data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
  160. data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
  161. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
  162. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
  163. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +421 -0
  164. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
  165. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
  166. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
  167. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
  168. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
  169. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
  170. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
  171. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
  172. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
  173. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
  174. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
  175. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
  176. data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
  177. data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
  178. data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
  179. data/third_party/abseil-cpp/absl/strings/match.h +90 -0
  180. data/third_party/abseil-cpp/absl/strings/numbers.cc +916 -0
  181. data/third_party/abseil-cpp/absl/strings/numbers.h +263 -0
  182. data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
  183. data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
  184. data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
  185. data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
  186. data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
  187. data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
  188. data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
  189. data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
  190. data/third_party/abseil-cpp/absl/strings/string_view.h +615 -0
  191. data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
  192. data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
  193. data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
  194. data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
  195. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
  196. data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
  197. data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
  198. data/third_party/abseil-cpp/absl/types/optional.h +776 -0
  199. data/third_party/abseil-cpp/absl/types/span.h +713 -0
  200. data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
  201. data/third_party/upb/upb/decode.c +4 -0
  202. data/third_party/upb/upb/port.c +0 -1
  203. data/third_party/upb/upb/port_def.inc +1 -3
  204. data/third_party/upb/upb/table.c +2 -1
  205. metadata +147 -43
  206. data/src/core/lib/json/json_common.h +0 -34
  207. data/src/core/lib/json/json_reader.h +0 -146
  208. data/src/core/lib/json/json_string.cc +0 -367
  209. data/src/core/lib/json/json_writer.h +0 -84
@@ -0,0 +1,265 @@
1
+ // Copyright 2018 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+ //
15
+ // Helper class to perform the Empty Base Optimization.
16
+ // Ts can contain classes and non-classes, empty or not. For the ones that
17
+ // are empty classes, we perform the optimization. If all types in Ts are empty
18
+ // classes, then CompressedTuple<Ts...> is itself an empty class.
19
+ //
20
+ // To access the members, use member get<N>() function.
21
+ //
22
+ // Eg:
23
+ // absl::container_internal::CompressedTuple<int, T1, T2, T3> value(7, t1, t2,
24
+ // t3);
25
+ // assert(value.get<0>() == 7);
26
+ // T1& t1 = value.get<1>();
27
+ // const T2& t2 = value.get<2>();
28
+ // ...
29
+ //
30
+ // https://en.cppreference.com/w/cpp/language/ebo
31
+
32
+ #ifndef ABSL_CONTAINER_INTERNAL_COMPRESSED_TUPLE_H_
33
+ #define ABSL_CONTAINER_INTERNAL_COMPRESSED_TUPLE_H_
34
+
35
+ #include <initializer_list>
36
+ #include <tuple>
37
+ #include <type_traits>
38
+ #include <utility>
39
+
40
+ #include "absl/utility/utility.h"
41
+
42
+ #if defined(_MSC_VER) && !defined(__NVCC__)
43
+ // We need to mark these classes with this declspec to ensure that
44
+ // CompressedTuple happens.
45
+ #define ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC __declspec(empty_bases)
46
+ #else
47
+ #define ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC
48
+ #endif
49
+
50
+ namespace absl {
51
+ ABSL_NAMESPACE_BEGIN
52
+ namespace container_internal {
53
+
54
+ template <typename... Ts>
55
+ class CompressedTuple;
56
+
57
+ namespace internal_compressed_tuple {
58
+
59
+ template <typename D, size_t I>
60
+ struct Elem;
61
+ template <typename... B, size_t I>
62
+ struct Elem<CompressedTuple<B...>, I>
63
+ : std::tuple_element<I, std::tuple<B...>> {};
64
+ template <typename D, size_t I>
65
+ using ElemT = typename Elem<D, I>::type;
66
+
67
+ // Use the __is_final intrinsic if available. Where it's not available, classes
68
+ // declared with the 'final' specifier cannot be used as CompressedTuple
69
+ // elements.
70
+ // TODO(sbenza): Replace this with std::is_final in C++14.
71
+ template <typename T>
72
+ constexpr bool IsFinal() {
73
+ #if defined(__clang__) || defined(__GNUC__)
74
+ return __is_final(T);
75
+ #else
76
+ return false;
77
+ #endif
78
+ }
79
+
80
+ // We can't use EBCO on other CompressedTuples because that would mean that we
81
+ // derive from multiple Storage<> instantiations with the same I parameter,
82
+ // and potentially from multiple identical Storage<> instantiations. So anytime
83
+ // we use type inheritance rather than encapsulation, we mark
84
+ // CompressedTupleImpl, to make this easy to detect.
85
+ struct uses_inheritance {};
86
+
87
+ template <typename T>
88
+ constexpr bool ShouldUseBase() {
89
+ return std::is_class<T>::value && std::is_empty<T>::value && !IsFinal<T>() &&
90
+ !std::is_base_of<uses_inheritance, T>::value;
91
+ }
92
+
93
+ // The storage class provides two specializations:
94
+ // - For empty classes, it stores T as a base class.
95
+ // - For everything else, it stores T as a member.
96
+ template <typename T, size_t I,
97
+ #if defined(_MSC_VER)
98
+ bool UseBase =
99
+ ShouldUseBase<typename std::enable_if<true, T>::type>()>
100
+ #else
101
+ bool UseBase = ShouldUseBase<T>()>
102
+ #endif
103
+ struct Storage {
104
+ T value;
105
+ constexpr Storage() = default;
106
+ template <typename V>
107
+ explicit constexpr Storage(absl::in_place_t, V&& v)
108
+ : value(absl::forward<V>(v)) {}
109
+ constexpr const T& get() const& { return value; }
110
+ T& get() & { return value; }
111
+ constexpr const T&& get() const&& { return absl::move(*this).value; }
112
+ T&& get() && { return std::move(*this).value; }
113
+ };
114
+
115
+ template <typename T, size_t I>
116
+ struct ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC Storage<T, I, true> : T {
117
+ constexpr Storage() = default;
118
+
119
+ template <typename V>
120
+ explicit constexpr Storage(absl::in_place_t, V&& v)
121
+ : T(absl::forward<V>(v)) {}
122
+
123
+ constexpr const T& get() const& { return *this; }
124
+ T& get() & { return *this; }
125
+ constexpr const T&& get() const&& { return absl::move(*this); }
126
+ T&& get() && { return std::move(*this); }
127
+ };
128
+
129
+ template <typename D, typename I, bool ShouldAnyUseBase>
130
+ struct ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC CompressedTupleImpl;
131
+
132
+ template <typename... Ts, size_t... I, bool ShouldAnyUseBase>
133
+ struct ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC CompressedTupleImpl<
134
+ CompressedTuple<Ts...>, absl::index_sequence<I...>, ShouldAnyUseBase>
135
+ // We use the dummy identity function through std::integral_constant to
136
+ // convince MSVC of accepting and expanding I in that context. Without it
137
+ // you would get:
138
+ // error C3548: 'I': parameter pack cannot be used in this context
139
+ : uses_inheritance,
140
+ Storage<Ts, std::integral_constant<size_t, I>::value>... {
141
+ constexpr CompressedTupleImpl() = default;
142
+ template <typename... Vs>
143
+ explicit constexpr CompressedTupleImpl(absl::in_place_t, Vs&&... args)
144
+ : Storage<Ts, I>(absl::in_place, absl::forward<Vs>(args))... {}
145
+ friend CompressedTuple<Ts...>;
146
+ };
147
+
148
+ template <typename... Ts, size_t... I>
149
+ struct ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC CompressedTupleImpl<
150
+ CompressedTuple<Ts...>, absl::index_sequence<I...>, false>
151
+ // We use the dummy identity function as above...
152
+ : Storage<Ts, std::integral_constant<size_t, I>::value, false>... {
153
+ constexpr CompressedTupleImpl() = default;
154
+ template <typename... Vs>
155
+ explicit constexpr CompressedTupleImpl(absl::in_place_t, Vs&&... args)
156
+ : Storage<Ts, I, false>(absl::in_place, absl::forward<Vs>(args))... {}
157
+ friend CompressedTuple<Ts...>;
158
+ };
159
+
160
+ std::false_type Or(std::initializer_list<std::false_type>);
161
+ std::true_type Or(std::initializer_list<bool>);
162
+
163
+ // MSVC requires this to be done separately rather than within the declaration
164
+ // of CompressedTuple below.
165
+ template <typename... Ts>
166
+ constexpr bool ShouldAnyUseBase() {
167
+ return decltype(
168
+ Or({std::integral_constant<bool, ShouldUseBase<Ts>()>()...})){};
169
+ }
170
+
171
+ template <typename T, typename V>
172
+ using TupleMoveConstructible = typename std::conditional<
173
+ std::is_reference<T>::value, std::is_convertible<V, T>,
174
+ std::is_constructible<T, V&&>>::type;
175
+
176
+ } // namespace internal_compressed_tuple
177
+
178
+ // Helper class to perform the Empty Base Class Optimization.
179
+ // Ts can contain classes and non-classes, empty or not. For the ones that
180
+ // are empty classes, we perform the CompressedTuple. If all types in Ts are
181
+ // empty classes, then CompressedTuple<Ts...> is itself an empty class. (This
182
+ // does not apply when one or more of those empty classes is itself an empty
183
+ // CompressedTuple.)
184
+ //
185
+ // To access the members, use member .get<N>() function.
186
+ //
187
+ // Eg:
188
+ // absl::container_internal::CompressedTuple<int, T1, T2, T3> value(7, t1, t2,
189
+ // t3);
190
+ // assert(value.get<0>() == 7);
191
+ // T1& t1 = value.get<1>();
192
+ // const T2& t2 = value.get<2>();
193
+ // ...
194
+ //
195
+ // https://en.cppreference.com/w/cpp/language/ebo
196
+ template <typename... Ts>
197
+ class ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC CompressedTuple
198
+ : private internal_compressed_tuple::CompressedTupleImpl<
199
+ CompressedTuple<Ts...>, absl::index_sequence_for<Ts...>,
200
+ internal_compressed_tuple::ShouldAnyUseBase<Ts...>()> {
201
+ private:
202
+ template <int I>
203
+ using ElemT = internal_compressed_tuple::ElemT<CompressedTuple, I>;
204
+
205
+ template <int I>
206
+ using StorageT = internal_compressed_tuple::Storage<ElemT<I>, I>;
207
+
208
+ public:
209
+ // There seems to be a bug in MSVC dealing in which using '=default' here will
210
+ // cause the compiler to ignore the body of other constructors. The work-
211
+ // around is to explicitly implement the default constructor.
212
+ #if defined(_MSC_VER)
213
+ constexpr CompressedTuple() : CompressedTuple::CompressedTupleImpl() {}
214
+ #else
215
+ constexpr CompressedTuple() = default;
216
+ #endif
217
+ explicit constexpr CompressedTuple(const Ts&... base)
218
+ : CompressedTuple::CompressedTupleImpl(absl::in_place, base...) {}
219
+
220
+ template <typename... Vs,
221
+ absl::enable_if_t<
222
+ absl::conjunction<
223
+ // Ensure we are not hiding default copy/move constructors.
224
+ absl::negation<std::is_same<void(CompressedTuple),
225
+ void(absl::decay_t<Vs>...)>>,
226
+ internal_compressed_tuple::TupleMoveConstructible<
227
+ Ts, Vs&&>...>::value,
228
+ bool> = true>
229
+ explicit constexpr CompressedTuple(Vs&&... base)
230
+ : CompressedTuple::CompressedTupleImpl(absl::in_place,
231
+ absl::forward<Vs>(base)...) {}
232
+
233
+ template <int I>
234
+ ElemT<I>& get() & {
235
+ return internal_compressed_tuple::Storage<ElemT<I>, I>::get();
236
+ }
237
+
238
+ template <int I>
239
+ constexpr const ElemT<I>& get() const& {
240
+ return StorageT<I>::get();
241
+ }
242
+
243
+ template <int I>
244
+ ElemT<I>&& get() && {
245
+ return std::move(*this).StorageT<I>::get();
246
+ }
247
+
248
+ template <int I>
249
+ constexpr const ElemT<I>&& get() const&& {
250
+ return absl::move(*this).StorageT<I>::get();
251
+ }
252
+ };
253
+
254
+ // Explicit specialization for a zero-element tuple
255
+ // (needed to avoid ambiguous overloads for the default constructor).
256
+ template <>
257
+ class ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC CompressedTuple<> {};
258
+
259
+ } // namespace container_internal
260
+ ABSL_NAMESPACE_END
261
+ } // namespace absl
262
+
263
+ #undef ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC
264
+
265
+ #endif // ABSL_CONTAINER_INTERNAL_COMPRESSED_TUPLE_H_
@@ -0,0 +1,892 @@
1
+ // Copyright 2019 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef ABSL_CONTAINER_INTERNAL_INLINED_VECTOR_INTERNAL_H_
16
+ #define ABSL_CONTAINER_INTERNAL_INLINED_VECTOR_INTERNAL_H_
17
+
18
+ #include <algorithm>
19
+ #include <cstddef>
20
+ #include <cstring>
21
+ #include <iterator>
22
+ #include <limits>
23
+ #include <memory>
24
+ #include <utility>
25
+
26
+ #include "absl/base/macros.h"
27
+ #include "absl/container/internal/compressed_tuple.h"
28
+ #include "absl/memory/memory.h"
29
+ #include "absl/meta/type_traits.h"
30
+ #include "absl/types/span.h"
31
+
32
+ namespace absl {
33
+ ABSL_NAMESPACE_BEGIN
34
+ namespace inlined_vector_internal {
35
+
36
+ template <typename Iterator>
37
+ using IsAtLeastForwardIterator = std::is_convertible<
38
+ typename std::iterator_traits<Iterator>::iterator_category,
39
+ std::forward_iterator_tag>;
40
+
41
+ template <typename AllocatorType,
42
+ typename ValueType =
43
+ typename absl::allocator_traits<AllocatorType>::value_type>
44
+ using IsMemcpyOk =
45
+ absl::conjunction<std::is_same<AllocatorType, std::allocator<ValueType>>,
46
+ absl::is_trivially_copy_constructible<ValueType>,
47
+ absl::is_trivially_copy_assignable<ValueType>,
48
+ absl::is_trivially_destructible<ValueType>>;
49
+
50
+ template <typename AllocatorType, typename Pointer, typename SizeType>
51
+ void DestroyElements(AllocatorType* alloc_ptr, Pointer destroy_first,
52
+ SizeType destroy_size) {
53
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
54
+
55
+ if (destroy_first != nullptr) {
56
+ for (auto i = destroy_size; i != 0;) {
57
+ --i;
58
+ AllocatorTraits::destroy(*alloc_ptr, destroy_first + i);
59
+ }
60
+
61
+ #if !defined(NDEBUG)
62
+ {
63
+ using ValueType = typename AllocatorTraits::value_type;
64
+
65
+ // Overwrite unused memory with `0xab` so we can catch uninitialized
66
+ // usage.
67
+ //
68
+ // Cast to `void*` to tell the compiler that we don't care that we might
69
+ // be scribbling on a vtable pointer.
70
+ void* memory_ptr = destroy_first;
71
+ auto memory_size = destroy_size * sizeof(ValueType);
72
+ std::memset(memory_ptr, 0xab, memory_size);
73
+ }
74
+ #endif // !defined(NDEBUG)
75
+ }
76
+ }
77
+
78
+ template <typename AllocatorType, typename Pointer, typename ValueAdapter,
79
+ typename SizeType>
80
+ void ConstructElements(AllocatorType* alloc_ptr, Pointer construct_first,
81
+ ValueAdapter* values_ptr, SizeType construct_size) {
82
+ for (SizeType i = 0; i < construct_size; ++i) {
83
+ ABSL_INTERNAL_TRY {
84
+ values_ptr->ConstructNext(alloc_ptr, construct_first + i);
85
+ }
86
+ ABSL_INTERNAL_CATCH_ANY {
87
+ inlined_vector_internal::DestroyElements(alloc_ptr, construct_first, i);
88
+ ABSL_INTERNAL_RETHROW;
89
+ }
90
+ }
91
+ }
92
+
93
+ template <typename Pointer, typename ValueAdapter, typename SizeType>
94
+ void AssignElements(Pointer assign_first, ValueAdapter* values_ptr,
95
+ SizeType assign_size) {
96
+ for (SizeType i = 0; i < assign_size; ++i) {
97
+ values_ptr->AssignNext(assign_first + i);
98
+ }
99
+ }
100
+
101
+ template <typename AllocatorType>
102
+ struct StorageView {
103
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
104
+ using Pointer = typename AllocatorTraits::pointer;
105
+ using SizeType = typename AllocatorTraits::size_type;
106
+
107
+ Pointer data;
108
+ SizeType size;
109
+ SizeType capacity;
110
+ };
111
+
112
+ template <typename AllocatorType, typename Iterator>
113
+ class IteratorValueAdapter {
114
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
115
+ using Pointer = typename AllocatorTraits::pointer;
116
+
117
+ public:
118
+ explicit IteratorValueAdapter(const Iterator& it) : it_(it) {}
119
+
120
+ void ConstructNext(AllocatorType* alloc_ptr, Pointer construct_at) {
121
+ AllocatorTraits::construct(*alloc_ptr, construct_at, *it_);
122
+ ++it_;
123
+ }
124
+
125
+ void AssignNext(Pointer assign_at) {
126
+ *assign_at = *it_;
127
+ ++it_;
128
+ }
129
+
130
+ private:
131
+ Iterator it_;
132
+ };
133
+
134
+ template <typename AllocatorType>
135
+ class CopyValueAdapter {
136
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
137
+ using ValueType = typename AllocatorTraits::value_type;
138
+ using Pointer = typename AllocatorTraits::pointer;
139
+ using ConstPointer = typename AllocatorTraits::const_pointer;
140
+
141
+ public:
142
+ explicit CopyValueAdapter(const ValueType& v) : ptr_(std::addressof(v)) {}
143
+
144
+ void ConstructNext(AllocatorType* alloc_ptr, Pointer construct_at) {
145
+ AllocatorTraits::construct(*alloc_ptr, construct_at, *ptr_);
146
+ }
147
+
148
+ void AssignNext(Pointer assign_at) { *assign_at = *ptr_; }
149
+
150
+ private:
151
+ ConstPointer ptr_;
152
+ };
153
+
154
+ template <typename AllocatorType>
155
+ class DefaultValueAdapter {
156
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
157
+ using ValueType = typename AllocatorTraits::value_type;
158
+ using Pointer = typename AllocatorTraits::pointer;
159
+
160
+ public:
161
+ explicit DefaultValueAdapter() {}
162
+
163
+ void ConstructNext(AllocatorType* alloc_ptr, Pointer construct_at) {
164
+ AllocatorTraits::construct(*alloc_ptr, construct_at);
165
+ }
166
+
167
+ void AssignNext(Pointer assign_at) { *assign_at = ValueType(); }
168
+ };
169
+
170
+ template <typename AllocatorType>
171
+ class AllocationTransaction {
172
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
173
+ using Pointer = typename AllocatorTraits::pointer;
174
+ using SizeType = typename AllocatorTraits::size_type;
175
+
176
+ public:
177
+ explicit AllocationTransaction(AllocatorType* alloc_ptr)
178
+ : alloc_data_(*alloc_ptr, nullptr) {}
179
+
180
+ ~AllocationTransaction() {
181
+ if (DidAllocate()) {
182
+ AllocatorTraits::deallocate(GetAllocator(), GetData(), GetCapacity());
183
+ }
184
+ }
185
+
186
+ AllocationTransaction(const AllocationTransaction&) = delete;
187
+ void operator=(const AllocationTransaction&) = delete;
188
+
189
+ AllocatorType& GetAllocator() { return alloc_data_.template get<0>(); }
190
+ Pointer& GetData() { return alloc_data_.template get<1>(); }
191
+ SizeType& GetCapacity() { return capacity_; }
192
+
193
+ bool DidAllocate() { return GetData() != nullptr; }
194
+ Pointer Allocate(SizeType capacity) {
195
+ GetData() = AllocatorTraits::allocate(GetAllocator(), capacity);
196
+ GetCapacity() = capacity;
197
+ return GetData();
198
+ }
199
+
200
+ void Reset() {
201
+ GetData() = nullptr;
202
+ GetCapacity() = 0;
203
+ }
204
+
205
+ private:
206
+ container_internal::CompressedTuple<AllocatorType, Pointer> alloc_data_;
207
+ SizeType capacity_ = 0;
208
+ };
209
+
210
+ template <typename AllocatorType>
211
+ class ConstructionTransaction {
212
+ using AllocatorTraits = absl::allocator_traits<AllocatorType>;
213
+ using Pointer = typename AllocatorTraits::pointer;
214
+ using SizeType = typename AllocatorTraits::size_type;
215
+
216
+ public:
217
+ explicit ConstructionTransaction(AllocatorType* alloc_ptr)
218
+ : alloc_data_(*alloc_ptr, nullptr) {}
219
+
220
+ ~ConstructionTransaction() {
221
+ if (DidConstruct()) {
222
+ inlined_vector_internal::DestroyElements(std::addressof(GetAllocator()),
223
+ GetData(), GetSize());
224
+ }
225
+ }
226
+
227
+ ConstructionTransaction(const ConstructionTransaction&) = delete;
228
+ void operator=(const ConstructionTransaction&) = delete;
229
+
230
+ AllocatorType& GetAllocator() { return alloc_data_.template get<0>(); }
231
+ Pointer& GetData() { return alloc_data_.template get<1>(); }
232
+ SizeType& GetSize() { return size_; }
233
+
234
+ bool DidConstruct() { return GetData() != nullptr; }
235
+ template <typename ValueAdapter>
236
+ void Construct(Pointer data, ValueAdapter* values_ptr, SizeType size) {
237
+ inlined_vector_internal::ConstructElements(std::addressof(GetAllocator()),
238
+ data, values_ptr, size);
239
+ GetData() = data;
240
+ GetSize() = size;
241
+ }
242
+ void Commit() {
243
+ GetData() = nullptr;
244
+ GetSize() = 0;
245
+ }
246
+
247
+ private:
248
+ container_internal::CompressedTuple<AllocatorType, Pointer> alloc_data_;
249
+ SizeType size_ = 0;
250
+ };
251
+
252
+ template <typename T, size_t N, typename A>
253
+ class Storage {
254
+ public:
255
+ using AllocatorTraits = absl::allocator_traits<A>;
256
+ using allocator_type = typename AllocatorTraits::allocator_type;
257
+ using value_type = typename AllocatorTraits::value_type;
258
+ using pointer = typename AllocatorTraits::pointer;
259
+ using const_pointer = typename AllocatorTraits::const_pointer;
260
+ using size_type = typename AllocatorTraits::size_type;
261
+ using difference_type = typename AllocatorTraits::difference_type;
262
+
263
+ using reference = value_type&;
264
+ using const_reference = const value_type&;
265
+ using RValueReference = value_type&&;
266
+ using iterator = pointer;
267
+ using const_iterator = const_pointer;
268
+ using reverse_iterator = std::reverse_iterator<iterator>;
269
+ using const_reverse_iterator = std::reverse_iterator<const_iterator>;
270
+ using MoveIterator = std::move_iterator<iterator>;
271
+ using IsMemcpyOk = inlined_vector_internal::IsMemcpyOk<allocator_type>;
272
+
273
+ using StorageView = inlined_vector_internal::StorageView<allocator_type>;
274
+
275
+ template <typename Iterator>
276
+ using IteratorValueAdapter =
277
+ inlined_vector_internal::IteratorValueAdapter<allocator_type, Iterator>;
278
+ using CopyValueAdapter =
279
+ inlined_vector_internal::CopyValueAdapter<allocator_type>;
280
+ using DefaultValueAdapter =
281
+ inlined_vector_internal::DefaultValueAdapter<allocator_type>;
282
+
283
+ using AllocationTransaction =
284
+ inlined_vector_internal::AllocationTransaction<allocator_type>;
285
+ using ConstructionTransaction =
286
+ inlined_vector_internal::ConstructionTransaction<allocator_type>;
287
+
288
+ static size_type NextCapacity(size_type current_capacity) {
289
+ return current_capacity * 2;
290
+ }
291
+
292
+ static size_type ComputeCapacity(size_type current_capacity,
293
+ size_type requested_capacity) {
294
+ return (std::max)(NextCapacity(current_capacity), requested_capacity);
295
+ }
296
+
297
+ // ---------------------------------------------------------------------------
298
+ // Storage Constructors and Destructor
299
+ // ---------------------------------------------------------------------------
300
+
301
+ Storage() : metadata_() {}
302
+
303
+ explicit Storage(const allocator_type& alloc) : metadata_(alloc, {}) {}
304
+
305
+ ~Storage() {
306
+ pointer data = GetIsAllocated() ? GetAllocatedData() : GetInlinedData();
307
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), data, GetSize());
308
+ DeallocateIfAllocated();
309
+ }
310
+
311
+ // ---------------------------------------------------------------------------
312
+ // Storage Member Accessors
313
+ // ---------------------------------------------------------------------------
314
+
315
+ size_type& GetSizeAndIsAllocated() { return metadata_.template get<1>(); }
316
+
317
+ const size_type& GetSizeAndIsAllocated() const {
318
+ return metadata_.template get<1>();
319
+ }
320
+
321
+ size_type GetSize() const { return GetSizeAndIsAllocated() >> 1; }
322
+
323
+ bool GetIsAllocated() const { return GetSizeAndIsAllocated() & 1; }
324
+
325
+ pointer GetAllocatedData() { return data_.allocated.allocated_data; }
326
+
327
+ const_pointer GetAllocatedData() const {
328
+ return data_.allocated.allocated_data;
329
+ }
330
+
331
+ pointer GetInlinedData() {
332
+ return reinterpret_cast<pointer>(
333
+ std::addressof(data_.inlined.inlined_data[0]));
334
+ }
335
+
336
+ const_pointer GetInlinedData() const {
337
+ return reinterpret_cast<const_pointer>(
338
+ std::addressof(data_.inlined.inlined_data[0]));
339
+ }
340
+
341
+ size_type GetAllocatedCapacity() const {
342
+ return data_.allocated.allocated_capacity;
343
+ }
344
+
345
+ size_type GetInlinedCapacity() const { return static_cast<size_type>(N); }
346
+
347
+ StorageView MakeStorageView() {
348
+ return GetIsAllocated()
349
+ ? StorageView{GetAllocatedData(), GetSize(),
350
+ GetAllocatedCapacity()}
351
+ : StorageView{GetInlinedData(), GetSize(), GetInlinedCapacity()};
352
+ }
353
+
354
+ allocator_type* GetAllocPtr() {
355
+ return std::addressof(metadata_.template get<0>());
356
+ }
357
+
358
+ const allocator_type* GetAllocPtr() const {
359
+ return std::addressof(metadata_.template get<0>());
360
+ }
361
+
362
+ // ---------------------------------------------------------------------------
363
+ // Storage Member Mutators
364
+ // ---------------------------------------------------------------------------
365
+
366
+ template <typename ValueAdapter>
367
+ void Initialize(ValueAdapter values, size_type new_size);
368
+
369
+ template <typename ValueAdapter>
370
+ void Assign(ValueAdapter values, size_type new_size);
371
+
372
+ template <typename ValueAdapter>
373
+ void Resize(ValueAdapter values, size_type new_size);
374
+
375
+ template <typename ValueAdapter>
376
+ iterator Insert(const_iterator pos, ValueAdapter values,
377
+ size_type insert_count);
378
+
379
+ template <typename... Args>
380
+ reference EmplaceBack(Args&&... args);
381
+
382
+ iterator Erase(const_iterator from, const_iterator to);
383
+
384
+ void Reserve(size_type requested_capacity);
385
+
386
+ void ShrinkToFit();
387
+
388
+ void Swap(Storage* other_storage_ptr);
389
+
390
+ void SetIsAllocated() {
391
+ GetSizeAndIsAllocated() |= static_cast<size_type>(1);
392
+ }
393
+
394
+ void UnsetIsAllocated() {
395
+ GetSizeAndIsAllocated() &= ((std::numeric_limits<size_type>::max)() - 1);
396
+ }
397
+
398
+ void SetSize(size_type size) {
399
+ GetSizeAndIsAllocated() =
400
+ (size << 1) | static_cast<size_type>(GetIsAllocated());
401
+ }
402
+
403
+ void SetAllocatedSize(size_type size) {
404
+ GetSizeAndIsAllocated() = (size << 1) | static_cast<size_type>(1);
405
+ }
406
+
407
+ void SetInlinedSize(size_type size) {
408
+ GetSizeAndIsAllocated() = size << static_cast<size_type>(1);
409
+ }
410
+
411
+ void AddSize(size_type count) {
412
+ GetSizeAndIsAllocated() += count << static_cast<size_type>(1);
413
+ }
414
+
415
+ void SubtractSize(size_type count) {
416
+ assert(count <= GetSize());
417
+
418
+ GetSizeAndIsAllocated() -= count << static_cast<size_type>(1);
419
+ }
420
+
421
+ void SetAllocatedData(pointer data, size_type capacity) {
422
+ data_.allocated.allocated_data = data;
423
+ data_.allocated.allocated_capacity = capacity;
424
+ }
425
+
426
+ void AcquireAllocatedData(AllocationTransaction* allocation_tx_ptr) {
427
+ SetAllocatedData(allocation_tx_ptr->GetData(),
428
+ allocation_tx_ptr->GetCapacity());
429
+
430
+ allocation_tx_ptr->Reset();
431
+ }
432
+
433
+ void MemcpyFrom(const Storage& other_storage) {
434
+ assert(IsMemcpyOk::value || other_storage.GetIsAllocated());
435
+
436
+ GetSizeAndIsAllocated() = other_storage.GetSizeAndIsAllocated();
437
+ data_ = other_storage.data_;
438
+ }
439
+
440
+ void DeallocateIfAllocated() {
441
+ if (GetIsAllocated()) {
442
+ AllocatorTraits::deallocate(*GetAllocPtr(), GetAllocatedData(),
443
+ GetAllocatedCapacity());
444
+ }
445
+ }
446
+
447
+ private:
448
+ using Metadata =
449
+ container_internal::CompressedTuple<allocator_type, size_type>;
450
+
451
+ struct Allocated {
452
+ pointer allocated_data;
453
+ size_type allocated_capacity;
454
+ };
455
+
456
+ struct Inlined {
457
+ alignas(value_type) char inlined_data[sizeof(value_type[N])];
458
+ };
459
+
460
+ union Data {
461
+ Allocated allocated;
462
+ Inlined inlined;
463
+ };
464
+
465
+ Metadata metadata_;
466
+ Data data_;
467
+ };
468
+
469
+ template <typename T, size_t N, typename A>
470
+ template <typename ValueAdapter>
471
+ auto Storage<T, N, A>::Initialize(ValueAdapter values, size_type new_size)
472
+ -> void {
473
+ // Only callable from constructors!
474
+ assert(!GetIsAllocated());
475
+ assert(GetSize() == 0);
476
+
477
+ pointer construct_data;
478
+ if (new_size > GetInlinedCapacity()) {
479
+ // Because this is only called from the `InlinedVector` constructors, it's
480
+ // safe to take on the allocation with size `0`. If `ConstructElements(...)`
481
+ // throws, deallocation will be automatically handled by `~Storage()`.
482
+ size_type new_capacity = ComputeCapacity(GetInlinedCapacity(), new_size);
483
+ construct_data = AllocatorTraits::allocate(*GetAllocPtr(), new_capacity);
484
+ SetAllocatedData(construct_data, new_capacity);
485
+ SetIsAllocated();
486
+ } else {
487
+ construct_data = GetInlinedData();
488
+ }
489
+
490
+ inlined_vector_internal::ConstructElements(GetAllocPtr(), construct_data,
491
+ &values, new_size);
492
+
493
+ // Since the initial size was guaranteed to be `0` and the allocated bit is
494
+ // already correct for either case, *adding* `new_size` gives us the correct
495
+ // result faster than setting it directly.
496
+ AddSize(new_size);
497
+ }
498
+
499
+ template <typename T, size_t N, typename A>
500
+ template <typename ValueAdapter>
501
+ auto Storage<T, N, A>::Assign(ValueAdapter values, size_type new_size) -> void {
502
+ StorageView storage_view = MakeStorageView();
503
+
504
+ AllocationTransaction allocation_tx(GetAllocPtr());
505
+
506
+ absl::Span<value_type> assign_loop;
507
+ absl::Span<value_type> construct_loop;
508
+ absl::Span<value_type> destroy_loop;
509
+
510
+ if (new_size > storage_view.capacity) {
511
+ size_type new_capacity = ComputeCapacity(storage_view.capacity, new_size);
512
+ construct_loop = {allocation_tx.Allocate(new_capacity), new_size};
513
+ destroy_loop = {storage_view.data, storage_view.size};
514
+ } else if (new_size > storage_view.size) {
515
+ assign_loop = {storage_view.data, storage_view.size};
516
+ construct_loop = {storage_view.data + storage_view.size,
517
+ new_size - storage_view.size};
518
+ } else {
519
+ assign_loop = {storage_view.data, new_size};
520
+ destroy_loop = {storage_view.data + new_size, storage_view.size - new_size};
521
+ }
522
+
523
+ inlined_vector_internal::AssignElements(assign_loop.data(), &values,
524
+ assign_loop.size());
525
+
526
+ inlined_vector_internal::ConstructElements(
527
+ GetAllocPtr(), construct_loop.data(), &values, construct_loop.size());
528
+
529
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), destroy_loop.data(),
530
+ destroy_loop.size());
531
+
532
+ if (allocation_tx.DidAllocate()) {
533
+ DeallocateIfAllocated();
534
+ AcquireAllocatedData(&allocation_tx);
535
+ SetIsAllocated();
536
+ }
537
+
538
+ SetSize(new_size);
539
+ }
540
+
541
+ template <typename T, size_t N, typename A>
542
+ template <typename ValueAdapter>
543
+ auto Storage<T, N, A>::Resize(ValueAdapter values, size_type new_size) -> void {
544
+ StorageView storage_view = MakeStorageView();
545
+
546
+ IteratorValueAdapter<MoveIterator> move_values(
547
+ MoveIterator(storage_view.data));
548
+
549
+ AllocationTransaction allocation_tx(GetAllocPtr());
550
+ ConstructionTransaction construction_tx(GetAllocPtr());
551
+
552
+ absl::Span<value_type> construct_loop;
553
+ absl::Span<value_type> move_construct_loop;
554
+ absl::Span<value_type> destroy_loop;
555
+
556
+ if (new_size > storage_view.capacity) {
557
+ size_type new_capacity = ComputeCapacity(storage_view.capacity, new_size);
558
+ pointer new_data = allocation_tx.Allocate(new_capacity);
559
+ construct_loop = {new_data + storage_view.size,
560
+ new_size - storage_view.size};
561
+ move_construct_loop = {new_data, storage_view.size};
562
+ destroy_loop = {storage_view.data, storage_view.size};
563
+ } else if (new_size > storage_view.size) {
564
+ construct_loop = {storage_view.data + storage_view.size,
565
+ new_size - storage_view.size};
566
+ } else {
567
+ destroy_loop = {storage_view.data + new_size, storage_view.size - new_size};
568
+ }
569
+
570
+ construction_tx.Construct(construct_loop.data(), &values,
571
+ construct_loop.size());
572
+
573
+ inlined_vector_internal::ConstructElements(
574
+ GetAllocPtr(), move_construct_loop.data(), &move_values,
575
+ move_construct_loop.size());
576
+
577
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), destroy_loop.data(),
578
+ destroy_loop.size());
579
+
580
+ construction_tx.Commit();
581
+ if (allocation_tx.DidAllocate()) {
582
+ DeallocateIfAllocated();
583
+ AcquireAllocatedData(&allocation_tx);
584
+ SetIsAllocated();
585
+ }
586
+
587
+ SetSize(new_size);
588
+ }
589
+
590
+ template <typename T, size_t N, typename A>
591
+ template <typename ValueAdapter>
592
+ auto Storage<T, N, A>::Insert(const_iterator pos, ValueAdapter values,
593
+ size_type insert_count) -> iterator {
594
+ StorageView storage_view = MakeStorageView();
595
+
596
+ size_type insert_index =
597
+ std::distance(const_iterator(storage_view.data), pos);
598
+ size_type insert_end_index = insert_index + insert_count;
599
+ size_type new_size = storage_view.size + insert_count;
600
+
601
+ if (new_size > storage_view.capacity) {
602
+ AllocationTransaction allocation_tx(GetAllocPtr());
603
+ ConstructionTransaction construction_tx(GetAllocPtr());
604
+ ConstructionTransaction move_construciton_tx(GetAllocPtr());
605
+
606
+ IteratorValueAdapter<MoveIterator> move_values(
607
+ MoveIterator(storage_view.data));
608
+
609
+ size_type new_capacity = ComputeCapacity(storage_view.capacity, new_size);
610
+ pointer new_data = allocation_tx.Allocate(new_capacity);
611
+
612
+ construction_tx.Construct(new_data + insert_index, &values, insert_count);
613
+
614
+ move_construciton_tx.Construct(new_data, &move_values, insert_index);
615
+
616
+ inlined_vector_internal::ConstructElements(
617
+ GetAllocPtr(), new_data + insert_end_index, &move_values,
618
+ storage_view.size - insert_index);
619
+
620
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), storage_view.data,
621
+ storage_view.size);
622
+
623
+ construction_tx.Commit();
624
+ move_construciton_tx.Commit();
625
+ DeallocateIfAllocated();
626
+ AcquireAllocatedData(&allocation_tx);
627
+
628
+ SetAllocatedSize(new_size);
629
+ return iterator(new_data + insert_index);
630
+ } else {
631
+ size_type move_construction_destination_index =
632
+ (std::max)(insert_end_index, storage_view.size);
633
+
634
+ ConstructionTransaction move_construction_tx(GetAllocPtr());
635
+
636
+ IteratorValueAdapter<MoveIterator> move_construction_values(
637
+ MoveIterator(storage_view.data +
638
+ (move_construction_destination_index - insert_count)));
639
+ absl::Span<value_type> move_construction = {
640
+ storage_view.data + move_construction_destination_index,
641
+ new_size - move_construction_destination_index};
642
+
643
+ pointer move_assignment_values = storage_view.data + insert_index;
644
+ absl::Span<value_type> move_assignment = {
645
+ storage_view.data + insert_end_index,
646
+ move_construction_destination_index - insert_end_index};
647
+
648
+ absl::Span<value_type> insert_assignment = {move_assignment_values,
649
+ move_construction.size()};
650
+
651
+ absl::Span<value_type> insert_construction = {
652
+ insert_assignment.data() + insert_assignment.size(),
653
+ insert_count - insert_assignment.size()};
654
+
655
+ move_construction_tx.Construct(move_construction.data(),
656
+ &move_construction_values,
657
+ move_construction.size());
658
+
659
+ for (pointer destination = move_assignment.data() + move_assignment.size(),
660
+ last_destination = move_assignment.data(),
661
+ source = move_assignment_values + move_assignment.size();
662
+ ;) {
663
+ --destination;
664
+ --source;
665
+ if (destination < last_destination) break;
666
+ *destination = std::move(*source);
667
+ }
668
+
669
+ inlined_vector_internal::AssignElements(insert_assignment.data(), &values,
670
+ insert_assignment.size());
671
+
672
+ inlined_vector_internal::ConstructElements(
673
+ GetAllocPtr(), insert_construction.data(), &values,
674
+ insert_construction.size());
675
+
676
+ move_construction_tx.Commit();
677
+
678
+ AddSize(insert_count);
679
+ return iterator(storage_view.data + insert_index);
680
+ }
681
+ }
682
+
683
+ template <typename T, size_t N, typename A>
684
+ template <typename... Args>
685
+ auto Storage<T, N, A>::EmplaceBack(Args&&... args) -> reference {
686
+ StorageView storage_view = MakeStorageView();
687
+
688
+ AllocationTransaction allocation_tx(GetAllocPtr());
689
+
690
+ IteratorValueAdapter<MoveIterator> move_values(
691
+ MoveIterator(storage_view.data));
692
+
693
+ pointer construct_data;
694
+ if (storage_view.size == storage_view.capacity) {
695
+ size_type new_capacity = NextCapacity(storage_view.capacity);
696
+ construct_data = allocation_tx.Allocate(new_capacity);
697
+ } else {
698
+ construct_data = storage_view.data;
699
+ }
700
+
701
+ pointer last_ptr = construct_data + storage_view.size;
702
+
703
+ AllocatorTraits::construct(*GetAllocPtr(), last_ptr,
704
+ std::forward<Args>(args)...);
705
+
706
+ if (allocation_tx.DidAllocate()) {
707
+ ABSL_INTERNAL_TRY {
708
+ inlined_vector_internal::ConstructElements(
709
+ GetAllocPtr(), allocation_tx.GetData(), &move_values,
710
+ storage_view.size);
711
+ }
712
+ ABSL_INTERNAL_CATCH_ANY {
713
+ AllocatorTraits::destroy(*GetAllocPtr(), last_ptr);
714
+ ABSL_INTERNAL_RETHROW;
715
+ }
716
+
717
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), storage_view.data,
718
+ storage_view.size);
719
+
720
+ DeallocateIfAllocated();
721
+ AcquireAllocatedData(&allocation_tx);
722
+ SetIsAllocated();
723
+ }
724
+
725
+ AddSize(1);
726
+ return *last_ptr;
727
+ }
728
+
729
+ template <typename T, size_t N, typename A>
730
+ auto Storage<T, N, A>::Erase(const_iterator from, const_iterator to)
731
+ -> iterator {
732
+ StorageView storage_view = MakeStorageView();
733
+
734
+ size_type erase_size = std::distance(from, to);
735
+ size_type erase_index =
736
+ std::distance(const_iterator(storage_view.data), from);
737
+ size_type erase_end_index = erase_index + erase_size;
738
+
739
+ IteratorValueAdapter<MoveIterator> move_values(
740
+ MoveIterator(storage_view.data + erase_end_index));
741
+
742
+ inlined_vector_internal::AssignElements(storage_view.data + erase_index,
743
+ &move_values,
744
+ storage_view.size - erase_end_index);
745
+
746
+ inlined_vector_internal::DestroyElements(
747
+ GetAllocPtr(), storage_view.data + (storage_view.size - erase_size),
748
+ erase_size);
749
+
750
+ SubtractSize(erase_size);
751
+ return iterator(storage_view.data + erase_index);
752
+ }
753
+
754
+ template <typename T, size_t N, typename A>
755
+ auto Storage<T, N, A>::Reserve(size_type requested_capacity) -> void {
756
+ StorageView storage_view = MakeStorageView();
757
+
758
+ if (ABSL_PREDICT_FALSE(requested_capacity <= storage_view.capacity)) return;
759
+
760
+ AllocationTransaction allocation_tx(GetAllocPtr());
761
+
762
+ IteratorValueAdapter<MoveIterator> move_values(
763
+ MoveIterator(storage_view.data));
764
+
765
+ size_type new_capacity =
766
+ ComputeCapacity(storage_view.capacity, requested_capacity);
767
+ pointer new_data = allocation_tx.Allocate(new_capacity);
768
+
769
+ inlined_vector_internal::ConstructElements(GetAllocPtr(), new_data,
770
+ &move_values, storage_view.size);
771
+
772
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), storage_view.data,
773
+ storage_view.size);
774
+
775
+ DeallocateIfAllocated();
776
+ AcquireAllocatedData(&allocation_tx);
777
+ SetIsAllocated();
778
+ }
779
+
780
+ template <typename T, size_t N, typename A>
781
+ auto Storage<T, N, A>::ShrinkToFit() -> void {
782
+ // May only be called on allocated instances!
783
+ assert(GetIsAllocated());
784
+
785
+ StorageView storage_view{GetAllocatedData(), GetSize(),
786
+ GetAllocatedCapacity()};
787
+
788
+ if (ABSL_PREDICT_FALSE(storage_view.size == storage_view.capacity)) return;
789
+
790
+ AllocationTransaction allocation_tx(GetAllocPtr());
791
+
792
+ IteratorValueAdapter<MoveIterator> move_values(
793
+ MoveIterator(storage_view.data));
794
+
795
+ pointer construct_data;
796
+ if (storage_view.size > GetInlinedCapacity()) {
797
+ size_type new_capacity = storage_view.size;
798
+ construct_data = allocation_tx.Allocate(new_capacity);
799
+ } else {
800
+ construct_data = GetInlinedData();
801
+ }
802
+
803
+ ABSL_INTERNAL_TRY {
804
+ inlined_vector_internal::ConstructElements(GetAllocPtr(), construct_data,
805
+ &move_values, storage_view.size);
806
+ }
807
+ ABSL_INTERNAL_CATCH_ANY {
808
+ SetAllocatedData(storage_view.data, storage_view.capacity);
809
+ ABSL_INTERNAL_RETHROW;
810
+ }
811
+
812
+ inlined_vector_internal::DestroyElements(GetAllocPtr(), storage_view.data,
813
+ storage_view.size);
814
+
815
+ AllocatorTraits::deallocate(*GetAllocPtr(), storage_view.data,
816
+ storage_view.capacity);
817
+
818
+ if (allocation_tx.DidAllocate()) {
819
+ AcquireAllocatedData(&allocation_tx);
820
+ } else {
821
+ UnsetIsAllocated();
822
+ }
823
+ }
824
+
825
+ template <typename T, size_t N, typename A>
826
+ auto Storage<T, N, A>::Swap(Storage* other_storage_ptr) -> void {
827
+ using std::swap;
828
+ assert(this != other_storage_ptr);
829
+
830
+ if (GetIsAllocated() && other_storage_ptr->GetIsAllocated()) {
831
+ swap(data_.allocated, other_storage_ptr->data_.allocated);
832
+ } else if (!GetIsAllocated() && !other_storage_ptr->GetIsAllocated()) {
833
+ Storage* small_ptr = this;
834
+ Storage* large_ptr = other_storage_ptr;
835
+ if (small_ptr->GetSize() > large_ptr->GetSize()) swap(small_ptr, large_ptr);
836
+
837
+ for (size_type i = 0; i < small_ptr->GetSize(); ++i) {
838
+ swap(small_ptr->GetInlinedData()[i], large_ptr->GetInlinedData()[i]);
839
+ }
840
+
841
+ IteratorValueAdapter<MoveIterator> move_values(
842
+ MoveIterator(large_ptr->GetInlinedData() + small_ptr->GetSize()));
843
+
844
+ inlined_vector_internal::ConstructElements(
845
+ large_ptr->GetAllocPtr(),
846
+ small_ptr->GetInlinedData() + small_ptr->GetSize(), &move_values,
847
+ large_ptr->GetSize() - small_ptr->GetSize());
848
+
849
+ inlined_vector_internal::DestroyElements(
850
+ large_ptr->GetAllocPtr(),
851
+ large_ptr->GetInlinedData() + small_ptr->GetSize(),
852
+ large_ptr->GetSize() - small_ptr->GetSize());
853
+ } else {
854
+ Storage* allocated_ptr = this;
855
+ Storage* inlined_ptr = other_storage_ptr;
856
+ if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
857
+
858
+ StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
859
+ allocated_ptr->GetSize(),
860
+ allocated_ptr->GetAllocatedCapacity()};
861
+
862
+ IteratorValueAdapter<MoveIterator> move_values(
863
+ MoveIterator(inlined_ptr->GetInlinedData()));
864
+
865
+ ABSL_INTERNAL_TRY {
866
+ inlined_vector_internal::ConstructElements(
867
+ inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
868
+ &move_values, inlined_ptr->GetSize());
869
+ }
870
+ ABSL_INTERNAL_CATCH_ANY {
871
+ allocated_ptr->SetAllocatedData(allocated_storage_view.data,
872
+ allocated_storage_view.capacity);
873
+ ABSL_INTERNAL_RETHROW;
874
+ }
875
+
876
+ inlined_vector_internal::DestroyElements(inlined_ptr->GetAllocPtr(),
877
+ inlined_ptr->GetInlinedData(),
878
+ inlined_ptr->GetSize());
879
+
880
+ inlined_ptr->SetAllocatedData(allocated_storage_view.data,
881
+ allocated_storage_view.capacity);
882
+ }
883
+
884
+ swap(GetSizeAndIsAllocated(), other_storage_ptr->GetSizeAndIsAllocated());
885
+ swap(*GetAllocPtr(), *other_storage_ptr->GetAllocPtr());
886
+ }
887
+
888
+ } // namespace inlined_vector_internal
889
+ ABSL_NAMESPACE_END
890
+ } // namespace absl
891
+
892
+ #endif // ABSL_CONTAINER_INTERNAL_INLINED_VECTOR_INTERNAL_H_