cannam@147
|
1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
|
cannam@147
|
2 // Licensed under the MIT License:
|
cannam@147
|
3 //
|
cannam@147
|
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
|
cannam@147
|
5 // of this software and associated documentation files (the "Software"), to deal
|
cannam@147
|
6 // in the Software without restriction, including without limitation the rights
|
cannam@147
|
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
cannam@147
|
8 // copies of the Software, and to permit persons to whom the Software is
|
cannam@147
|
9 // furnished to do so, subject to the following conditions:
|
cannam@147
|
10 //
|
cannam@147
|
11 // The above copyright notice and this permission notice shall be included in
|
cannam@147
|
12 // all copies or substantial portions of the Software.
|
cannam@147
|
13 //
|
cannam@147
|
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
cannam@147
|
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
cannam@147
|
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
cannam@147
|
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
cannam@147
|
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
cannam@147
|
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
cannam@147
|
20 // THE SOFTWARE.
|
cannam@147
|
21
|
cannam@147
|
22 #ifndef CAPNP_ORPHAN_H_
|
cannam@147
|
23 #define CAPNP_ORPHAN_H_
|
cannam@147
|
24
|
cannam@147
|
25 #if defined(__GNUC__) && !defined(CAPNP_HEADER_WARNINGS)
|
cannam@147
|
26 #pragma GCC system_header
|
cannam@147
|
27 #endif
|
cannam@147
|
28
|
cannam@147
|
29 #include "layout.h"
|
cannam@147
|
30
|
cannam@147
|
31 namespace capnp {
|
cannam@147
|
32
|
cannam@147
|
33 class StructSchema;
|
cannam@147
|
34 class ListSchema;
|
cannam@147
|
35 struct DynamicStruct;
|
cannam@147
|
36 struct DynamicList;
|
cannam@147
|
37 namespace _ { struct OrphanageInternal; }
|
cannam@147
|
38
|
cannam@147
|
39 template <typename T>
|
cannam@147
|
40 class Orphan {
|
cannam@147
|
41 // Represents an object which is allocated within some message builder but has no pointers
|
cannam@147
|
42 // pointing at it. An Orphan can later be "adopted" by some other object as one of that object's
|
cannam@147
|
43 // fields, without having to copy the orphan. For a field `foo` of pointer type, the generated
|
cannam@147
|
44 // code will define builder methods `void adoptFoo(Orphan<T>)` and `Orphan<T> disownFoo()`.
|
cannam@147
|
45 // Orphans can also be created independently of any parent using an Orphanage.
|
cannam@147
|
46 //
|
cannam@147
|
47 // `Orphan<T>` can be moved but not copied, like `Own<T>`, so that it is impossible for one
|
cannam@147
|
48 // orphan to be adopted multiple times. If an orphan is destroyed without being adopted, its
|
cannam@147
|
49 // contents are zero'd out (and possibly reused, if we ever implement the ability to reuse space
|
cannam@147
|
50 // in a message arena).
|
cannam@147
|
51
|
cannam@147
|
52 public:
|
cannam@147
|
53 Orphan() = default;
|
cannam@147
|
54 KJ_DISALLOW_COPY(Orphan);
|
cannam@147
|
55 Orphan(Orphan&&) = default;
|
cannam@147
|
56 Orphan& operator=(Orphan&&) = default;
|
cannam@147
|
57 inline Orphan(_::OrphanBuilder&& builder): builder(kj::mv(builder)) {}
|
cannam@147
|
58
|
cannam@147
|
59 inline BuilderFor<T> get();
|
cannam@147
|
60 // Get the underlying builder. If the orphan is null, this will allocate and return a default
|
cannam@147
|
61 // object rather than crash. This is done for security -- otherwise, you might enable a DoS
|
cannam@147
|
62 // attack any time you disown a field and fail to check if it is null. In the case of structs,
|
cannam@147
|
63 // this means that the orphan is no longer null after get() returns. In the case of lists,
|
cannam@147
|
64 // no actual object is allocated since a simple empty ListBuilder can be returned.
|
cannam@147
|
65
|
cannam@147
|
66 inline ReaderFor<T> getReader() const;
|
cannam@147
|
67
|
cannam@147
|
68 inline bool operator==(decltype(nullptr)) const { return builder == nullptr; }
|
cannam@147
|
69 inline bool operator!=(decltype(nullptr)) const { return builder != nullptr; }
|
cannam@147
|
70
|
cannam@147
|
71 inline void truncate(uint size);
|
cannam@147
|
72 // Resize an object (which must be a list or a blob) to the given size.
|
cannam@147
|
73 //
|
cannam@147
|
74 // If the new size is less than the original, the remaining elements will be discarded. The
|
cannam@147
|
75 // list is never moved in this case. If the list happens to be located at the end of its segment
|
cannam@147
|
76 // (which is always true if the list was the last thing allocated), the removed memory will be
|
cannam@147
|
77 // reclaimed (reducing the messag size), otherwise it is simply zeroed. The reclaiming behavior
|
cannam@147
|
78 // is particularly useful for allocating buffer space when you aren't sure how much space you
|
cannam@147
|
79 // actually need: you can pre-allocate, say, a 4k byte array, read() from a file into it, and
|
cannam@147
|
80 // then truncate it back to the amount of space actually used.
|
cannam@147
|
81 //
|
cannam@147
|
82 // If the new size is greater than the original, the list is extended with default values. If
|
cannam@147
|
83 // the list is the last object in its segment *and* there is enough space left in the segment to
|
cannam@147
|
84 // extend it to cover the new values, then the list is extended in-place. Otherwise, it must be
|
cannam@147
|
85 // moved to a new location, leaving a zero'd hole in the previous space that won't be filled.
|
cannam@147
|
86 // This copy is shallow; sub-objects will simply be reparented, not copied.
|
cannam@147
|
87 //
|
cannam@147
|
88 // Any existing readers or builders pointing at the object are invalidated by this call (even if
|
cannam@147
|
89 // it doesn't move). You must call `get()` or `getReader()` again to get the new, valid pointer.
|
cannam@147
|
90
|
cannam@147
|
91 private:
|
cannam@147
|
92 _::OrphanBuilder builder;
|
cannam@147
|
93
|
cannam@147
|
94 template <typename, Kind>
|
cannam@147
|
95 friend struct _::PointerHelpers;
|
cannam@147
|
96 template <typename, Kind>
|
cannam@147
|
97 friend struct List;
|
cannam@147
|
98 template <typename U>
|
cannam@147
|
99 friend class Orphan;
|
cannam@147
|
100 friend class Orphanage;
|
cannam@147
|
101 friend class MessageBuilder;
|
cannam@147
|
102 };
|
cannam@147
|
103
|
cannam@147
|
104 class Orphanage: private kj::DisallowConstCopy {
|
cannam@147
|
105 // Use to directly allocate Orphan objects, without having a parent object allocate and then
|
cannam@147
|
106 // disown the object.
|
cannam@147
|
107
|
cannam@147
|
108 public:
|
cannam@147
|
109 inline Orphanage(): arena(nullptr) {}
|
cannam@147
|
110
|
cannam@147
|
111 template <typename BuilderType>
|
cannam@147
|
112 static Orphanage getForMessageContaining(BuilderType builder);
|
cannam@147
|
113 // Construct an Orphanage that allocates within the message containing the given Builder. This
|
cannam@147
|
114 // allows the constructed Orphans to be adopted by objects within said message.
|
cannam@147
|
115 //
|
cannam@147
|
116 // This constructor takes the builder rather than having the builder have a getOrphanage() method
|
cannam@147
|
117 // because this is an advanced feature and we don't want to pollute the builder APIs with it.
|
cannam@147
|
118 //
|
cannam@147
|
119 // Note that if you have a direct pointer to the `MessageBuilder`, you can simply call its
|
cannam@147
|
120 // `getOrphanage()` method.
|
cannam@147
|
121
|
cannam@147
|
122 template <typename RootType>
|
cannam@147
|
123 Orphan<RootType> newOrphan() const;
|
cannam@147
|
124 // Allocate a new orphaned struct.
|
cannam@147
|
125
|
cannam@147
|
126 template <typename RootType>
|
cannam@147
|
127 Orphan<RootType> newOrphan(uint size) const;
|
cannam@147
|
128 // Allocate a new orphaned list or blob.
|
cannam@147
|
129
|
cannam@147
|
130 Orphan<DynamicStruct> newOrphan(StructSchema schema) const;
|
cannam@147
|
131 // Dynamically create an orphan struct with the given schema. You must
|
cannam@147
|
132 // #include <capnp/dynamic.h> to use this.
|
cannam@147
|
133
|
cannam@147
|
134 Orphan<DynamicList> newOrphan(ListSchema schema, uint size) const;
|
cannam@147
|
135 // Dynamically create an orphan list with the given schema. You must #include <capnp/dynamic.h>
|
cannam@147
|
136 // to use this.
|
cannam@147
|
137
|
cannam@147
|
138 template <typename Reader>
|
cannam@147
|
139 Orphan<FromReader<Reader>> newOrphanCopy(Reader copyFrom) const;
|
cannam@147
|
140 // Allocate a new orphaned object (struct, list, or blob) and initialize it as a copy of the
|
cannam@147
|
141 // given object.
|
cannam@147
|
142
|
cannam@147
|
143 template <typename T>
|
cannam@147
|
144 Orphan<List<ListElementType<FromReader<T>>>> newOrphanConcat(kj::ArrayPtr<T> lists) const;
|
cannam@147
|
145 template <typename T>
|
cannam@147
|
146 Orphan<List<ListElementType<FromReader<T>>>> newOrphanConcat(kj::ArrayPtr<const T> lists) const;
|
cannam@147
|
147 // Given an array of List readers, copy and concatenate the lists, creating a new Orphan.
|
cannam@147
|
148 //
|
cannam@147
|
149 // Note that compared to allocating the list yourself and using `setWithCaveats()` to set each
|
cannam@147
|
150 // item, this method avoids the "caveats": the new list will be allocated with the element size
|
cannam@147
|
151 // being the maximum of that from all the input lists. This is particularly important when
|
cannam@147
|
152 // concatenating struct lists: if the lists were created using a newer version of the protocol
|
cannam@147
|
153 // in which some new fields had been added to the struct, using `setWithCaveats()` would
|
cannam@147
|
154 // truncate off those new fields.
|
cannam@147
|
155
|
cannam@147
|
156 Orphan<Data> referenceExternalData(Data::Reader data) const;
|
cannam@147
|
157 // Creates an Orphan<Data> that points at an existing region of memory (e.g. from another message)
|
cannam@147
|
158 // without copying it. There are some SEVERE restrictions on how this can be used:
|
cannam@147
|
159 // - The memory must remain valid until the `MessageBuilder` is destroyed (even if the orphan is
|
cannam@147
|
160 // abandoned).
|
cannam@147
|
161 // - Because the data is const, you will not be allowed to obtain a `Data::Builder`
|
cannam@147
|
162 // for this blob. Any call which would return such a builder will throw an exception. You
|
cannam@147
|
163 // can, however, obtain a Reader, e.g. via orphan.getReader() or from a parent Reader (once
|
cannam@147
|
164 // the orphan is adopted). It is your responsibility to make sure your code can deal with
|
cannam@147
|
165 // these problems when using this optimization; if you can't, allocate a copy instead.
|
cannam@147
|
166 // - `data.begin()` must be aligned to a machine word boundary (32-bit or 64-bit depending on
|
cannam@147
|
167 // the CPU). Any pointer returned by malloc() as well as any data blob obtained from another
|
cannam@147
|
168 // Cap'n Proto message satisfies this.
|
cannam@147
|
169 // - If `data.size()` is not a multiple of 8, extra bytes past data.end() up until the next 8-byte
|
cannam@147
|
170 // boundary will be visible in the raw message when it is written out. Thus, there must be no
|
cannam@147
|
171 // secrets in these bytes. Data blobs obtained from other Cap'n Proto messages should be safe
|
cannam@147
|
172 // as these bytes should be zero (unless the sender had the same problem).
|
cannam@147
|
173 //
|
cannam@147
|
174 // The array will actually become one of the message's segments. The data can thus be adopted
|
cannam@147
|
175 // into the message tree without copying it. This is particularly useful when referencing very
|
cannam@147
|
176 // large blobs, such as whole mmap'd files.
|
cannam@147
|
177
|
cannam@147
|
178 private:
|
cannam@147
|
179 _::BuilderArena* arena;
|
cannam@147
|
180 _::CapTableBuilder* capTable;
|
cannam@147
|
181
|
cannam@147
|
182 inline explicit Orphanage(_::BuilderArena* arena, _::CapTableBuilder* capTable)
|
cannam@147
|
183 : arena(arena), capTable(capTable) {}
|
cannam@147
|
184
|
cannam@147
|
185 template <typename T, Kind = CAPNP_KIND(T)>
|
cannam@147
|
186 struct GetInnerBuilder;
|
cannam@147
|
187 template <typename T, Kind = CAPNP_KIND(T)>
|
cannam@147
|
188 struct GetInnerReader;
|
cannam@147
|
189 template <typename T>
|
cannam@147
|
190 struct NewOrphanListImpl;
|
cannam@147
|
191
|
cannam@147
|
192 friend class MessageBuilder;
|
cannam@147
|
193 friend struct _::OrphanageInternal;
|
cannam@147
|
194 };
|
cannam@147
|
195
|
cannam@147
|
196 // =======================================================================================
|
cannam@147
|
197 // Inline implementation details.
|
cannam@147
|
198
|
cannam@147
|
199 namespace _ { // private
|
cannam@147
|
200
|
cannam@147
|
201 template <typename T, Kind = CAPNP_KIND(T)>
|
cannam@147
|
202 struct OrphanGetImpl;
|
cannam@147
|
203
|
cannam@147
|
204 template <typename T>
|
cannam@147
|
205 struct OrphanGetImpl<T, Kind::PRIMITIVE> {
|
cannam@147
|
206 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
207 builder.truncate(size, _::elementSizeForType<T>());
|
cannam@147
|
208 }
|
cannam@147
|
209 };
|
cannam@147
|
210
|
cannam@147
|
211 template <typename T>
|
cannam@147
|
212 struct OrphanGetImpl<T, Kind::STRUCT> {
|
cannam@147
|
213 static inline typename T::Builder apply(_::OrphanBuilder& builder) {
|
cannam@147
|
214 return typename T::Builder(builder.asStruct(_::structSize<T>()));
|
cannam@147
|
215 }
|
cannam@147
|
216 static inline typename T::Reader applyReader(const _::OrphanBuilder& builder) {
|
cannam@147
|
217 return typename T::Reader(builder.asStructReader(_::structSize<T>()));
|
cannam@147
|
218 }
|
cannam@147
|
219 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
220 builder.truncate(size, _::structSize<T>());
|
cannam@147
|
221 }
|
cannam@147
|
222 };
|
cannam@147
|
223
|
cannam@147
|
224 #if !CAPNP_LITE
|
cannam@147
|
225 template <typename T>
|
cannam@147
|
226 struct OrphanGetImpl<T, Kind::INTERFACE> {
|
cannam@147
|
227 static inline typename T::Client apply(_::OrphanBuilder& builder) {
|
cannam@147
|
228 return typename T::Client(builder.asCapability());
|
cannam@147
|
229 }
|
cannam@147
|
230 static inline typename T::Client applyReader(const _::OrphanBuilder& builder) {
|
cannam@147
|
231 return typename T::Client(builder.asCapability());
|
cannam@147
|
232 }
|
cannam@147
|
233 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
234 builder.truncate(size, ElementSize::POINTER);
|
cannam@147
|
235 }
|
cannam@147
|
236 };
|
cannam@147
|
237 #endif // !CAPNP_LITE
|
cannam@147
|
238
|
cannam@147
|
239 template <typename T, Kind k>
|
cannam@147
|
240 struct OrphanGetImpl<List<T, k>, Kind::LIST> {
|
cannam@147
|
241 static inline typename List<T>::Builder apply(_::OrphanBuilder& builder) {
|
cannam@147
|
242 return typename List<T>::Builder(builder.asList(_::ElementSizeForType<T>::value));
|
cannam@147
|
243 }
|
cannam@147
|
244 static inline typename List<T>::Reader applyReader(const _::OrphanBuilder& builder) {
|
cannam@147
|
245 return typename List<T>::Reader(builder.asListReader(_::ElementSizeForType<T>::value));
|
cannam@147
|
246 }
|
cannam@147
|
247 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
248 builder.truncate(size, ElementSize::POINTER);
|
cannam@147
|
249 }
|
cannam@147
|
250 };
|
cannam@147
|
251
|
cannam@147
|
252 template <typename T>
|
cannam@147
|
253 struct OrphanGetImpl<List<T, Kind::STRUCT>, Kind::LIST> {
|
cannam@147
|
254 static inline typename List<T>::Builder apply(_::OrphanBuilder& builder) {
|
cannam@147
|
255 return typename List<T>::Builder(builder.asStructList(_::structSize<T>()));
|
cannam@147
|
256 }
|
cannam@147
|
257 static inline typename List<T>::Reader applyReader(const _::OrphanBuilder& builder) {
|
cannam@147
|
258 return typename List<T>::Reader(builder.asListReader(_::ElementSizeForType<T>::value));
|
cannam@147
|
259 }
|
cannam@147
|
260 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
261 builder.truncate(size, ElementSize::POINTER);
|
cannam@147
|
262 }
|
cannam@147
|
263 };
|
cannam@147
|
264
|
cannam@147
|
265 template <>
|
cannam@147
|
266 struct OrphanGetImpl<Text, Kind::BLOB> {
|
cannam@147
|
267 static inline Text::Builder apply(_::OrphanBuilder& builder) {
|
cannam@147
|
268 return Text::Builder(builder.asText());
|
cannam@147
|
269 }
|
cannam@147
|
270 static inline Text::Reader applyReader(const _::OrphanBuilder& builder) {
|
cannam@147
|
271 return Text::Reader(builder.asTextReader());
|
cannam@147
|
272 }
|
cannam@147
|
273 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
274 builder.truncate(size, ElementSize::POINTER);
|
cannam@147
|
275 }
|
cannam@147
|
276 };
|
cannam@147
|
277
|
cannam@147
|
278 template <>
|
cannam@147
|
279 struct OrphanGetImpl<Data, Kind::BLOB> {
|
cannam@147
|
280 static inline Data::Builder apply(_::OrphanBuilder& builder) {
|
cannam@147
|
281 return Data::Builder(builder.asData());
|
cannam@147
|
282 }
|
cannam@147
|
283 static inline Data::Reader applyReader(const _::OrphanBuilder& builder) {
|
cannam@147
|
284 return Data::Reader(builder.asDataReader());
|
cannam@147
|
285 }
|
cannam@147
|
286 static inline void truncateListOf(_::OrphanBuilder& builder, ElementCount size) {
|
cannam@147
|
287 builder.truncate(size, ElementSize::POINTER);
|
cannam@147
|
288 }
|
cannam@147
|
289 };
|
cannam@147
|
290
|
cannam@147
|
291 struct OrphanageInternal {
|
cannam@147
|
292 static inline _::BuilderArena* getArena(Orphanage orphanage) { return orphanage.arena; }
|
cannam@147
|
293 static inline _::CapTableBuilder* getCapTable(Orphanage orphanage) { return orphanage.capTable; }
|
cannam@147
|
294 };
|
cannam@147
|
295
|
cannam@147
|
296 } // namespace _ (private)
|
cannam@147
|
297
|
cannam@147
|
298 template <typename T>
|
cannam@147
|
299 inline BuilderFor<T> Orphan<T>::get() {
|
cannam@147
|
300 return _::OrphanGetImpl<T>::apply(builder);
|
cannam@147
|
301 }
|
cannam@147
|
302
|
cannam@147
|
303 template <typename T>
|
cannam@147
|
304 inline ReaderFor<T> Orphan<T>::getReader() const {
|
cannam@147
|
305 return _::OrphanGetImpl<T>::applyReader(builder);
|
cannam@147
|
306 }
|
cannam@147
|
307
|
cannam@147
|
308 template <typename T>
|
cannam@147
|
309 inline void Orphan<T>::truncate(uint size) {
|
cannam@147
|
310 _::OrphanGetImpl<ListElementType<T>>::truncateListOf(builder, bounded(size) * ELEMENTS);
|
cannam@147
|
311 }
|
cannam@147
|
312
|
cannam@147
|
313 template <>
|
cannam@147
|
314 inline void Orphan<Text>::truncate(uint size) {
|
cannam@147
|
315 builder.truncateText(bounded(size) * ELEMENTS);
|
cannam@147
|
316 }
|
cannam@147
|
317
|
cannam@147
|
318 template <>
|
cannam@147
|
319 inline void Orphan<Data>::truncate(uint size) {
|
cannam@147
|
320 builder.truncate(bounded(size) * ELEMENTS, ElementSize::BYTE);
|
cannam@147
|
321 }
|
cannam@147
|
322
|
cannam@147
|
323 template <typename T>
|
cannam@147
|
324 struct Orphanage::GetInnerBuilder<T, Kind::STRUCT> {
|
cannam@147
|
325 static inline _::StructBuilder apply(typename T::Builder& t) {
|
cannam@147
|
326 return t._builder;
|
cannam@147
|
327 }
|
cannam@147
|
328 };
|
cannam@147
|
329
|
cannam@147
|
330 template <typename T>
|
cannam@147
|
331 struct Orphanage::GetInnerBuilder<T, Kind::LIST> {
|
cannam@147
|
332 static inline _::ListBuilder apply(typename T::Builder& t) {
|
cannam@147
|
333 return t.builder;
|
cannam@147
|
334 }
|
cannam@147
|
335 };
|
cannam@147
|
336
|
cannam@147
|
337 template <typename BuilderType>
|
cannam@147
|
338 Orphanage Orphanage::getForMessageContaining(BuilderType builder) {
|
cannam@147
|
339 auto inner = GetInnerBuilder<FromBuilder<BuilderType>>::apply(builder);
|
cannam@147
|
340 return Orphanage(inner.getArena(), inner.getCapTable());
|
cannam@147
|
341 }
|
cannam@147
|
342
|
cannam@147
|
343 template <typename RootType>
|
cannam@147
|
344 Orphan<RootType> Orphanage::newOrphan() const {
|
cannam@147
|
345 return Orphan<RootType>(_::OrphanBuilder::initStruct(arena, capTable, _::structSize<RootType>()));
|
cannam@147
|
346 }
|
cannam@147
|
347
|
cannam@147
|
348 template <typename T, Kind k>
|
cannam@147
|
349 struct Orphanage::NewOrphanListImpl<List<T, k>> {
|
cannam@147
|
350 static inline _::OrphanBuilder apply(
|
cannam@147
|
351 _::BuilderArena* arena, _::CapTableBuilder* capTable, uint size) {
|
cannam@147
|
352 return _::OrphanBuilder::initList(
|
cannam@147
|
353 arena, capTable, bounded(size) * ELEMENTS, _::ElementSizeForType<T>::value);
|
cannam@147
|
354 }
|
cannam@147
|
355 };
|
cannam@147
|
356
|
cannam@147
|
357 template <typename T>
|
cannam@147
|
358 struct Orphanage::NewOrphanListImpl<List<T, Kind::STRUCT>> {
|
cannam@147
|
359 static inline _::OrphanBuilder apply(
|
cannam@147
|
360 _::BuilderArena* arena, _::CapTableBuilder* capTable, uint size) {
|
cannam@147
|
361 return _::OrphanBuilder::initStructList(
|
cannam@147
|
362 arena, capTable, bounded(size) * ELEMENTS, _::structSize<T>());
|
cannam@147
|
363 }
|
cannam@147
|
364 };
|
cannam@147
|
365
|
cannam@147
|
366 template <>
|
cannam@147
|
367 struct Orphanage::NewOrphanListImpl<Text> {
|
cannam@147
|
368 static inline _::OrphanBuilder apply(
|
cannam@147
|
369 _::BuilderArena* arena, _::CapTableBuilder* capTable, uint size) {
|
cannam@147
|
370 return _::OrphanBuilder::initText(arena, capTable, bounded(size) * BYTES);
|
cannam@147
|
371 }
|
cannam@147
|
372 };
|
cannam@147
|
373
|
cannam@147
|
374 template <>
|
cannam@147
|
375 struct Orphanage::NewOrphanListImpl<Data> {
|
cannam@147
|
376 static inline _::OrphanBuilder apply(
|
cannam@147
|
377 _::BuilderArena* arena, _::CapTableBuilder* capTable, uint size) {
|
cannam@147
|
378 return _::OrphanBuilder::initData(arena, capTable, bounded(size) * BYTES);
|
cannam@147
|
379 }
|
cannam@147
|
380 };
|
cannam@147
|
381
|
cannam@147
|
382 template <typename RootType>
|
cannam@147
|
383 Orphan<RootType> Orphanage::newOrphan(uint size) const {
|
cannam@147
|
384 return Orphan<RootType>(NewOrphanListImpl<RootType>::apply(arena, capTable, size));
|
cannam@147
|
385 }
|
cannam@147
|
386
|
cannam@147
|
387 template <typename T>
|
cannam@147
|
388 struct Orphanage::GetInnerReader<T, Kind::STRUCT> {
|
cannam@147
|
389 static inline _::StructReader apply(const typename T::Reader& t) {
|
cannam@147
|
390 return t._reader;
|
cannam@147
|
391 }
|
cannam@147
|
392 };
|
cannam@147
|
393
|
cannam@147
|
394 template <typename T>
|
cannam@147
|
395 struct Orphanage::GetInnerReader<T, Kind::LIST> {
|
cannam@147
|
396 static inline _::ListReader apply(const typename T::Reader& t) {
|
cannam@147
|
397 return t.reader;
|
cannam@147
|
398 }
|
cannam@147
|
399 };
|
cannam@147
|
400
|
cannam@147
|
401 template <typename T>
|
cannam@147
|
402 struct Orphanage::GetInnerReader<T, Kind::BLOB> {
|
cannam@147
|
403 static inline const typename T::Reader& apply(const typename T::Reader& t) {
|
cannam@147
|
404 return t;
|
cannam@147
|
405 }
|
cannam@147
|
406 };
|
cannam@147
|
407
|
cannam@147
|
408 template <typename Reader>
|
cannam@147
|
409 inline Orphan<FromReader<Reader>> Orphanage::newOrphanCopy(Reader copyFrom) const {
|
cannam@147
|
410 return Orphan<FromReader<Reader>>(_::OrphanBuilder::copy(
|
cannam@147
|
411 arena, capTable, GetInnerReader<FromReader<Reader>>::apply(copyFrom)));
|
cannam@147
|
412 }
|
cannam@147
|
413
|
cannam@147
|
414 template <typename T>
|
cannam@147
|
415 inline Orphan<List<ListElementType<FromReader<T>>>>
|
cannam@147
|
416 Orphanage::newOrphanConcat(kj::ArrayPtr<T> lists) const {
|
cannam@147
|
417 return newOrphanConcat(kj::implicitCast<kj::ArrayPtr<const T>>(lists));
|
cannam@147
|
418 }
|
cannam@147
|
419 template <typename T>
|
cannam@147
|
420 inline Orphan<List<ListElementType<FromReader<T>>>>
|
cannam@147
|
421 Orphanage::newOrphanConcat(kj::ArrayPtr<const T> lists) const {
|
cannam@147
|
422 // Optimization / simplification: Rely on List<T>::Reader containing nothing except a
|
cannam@147
|
423 // _::ListReader.
|
cannam@147
|
424 static_assert(sizeof(T) == sizeof(_::ListReader), "lists are not bare readers?");
|
cannam@147
|
425 kj::ArrayPtr<const _::ListReader> raw(
|
cannam@147
|
426 reinterpret_cast<const _::ListReader*>(lists.begin()), lists.size());
|
cannam@147
|
427 typedef ListElementType<FromReader<T>> Element;
|
cannam@147
|
428 return Orphan<List<Element>>(
|
cannam@147
|
429 _::OrphanBuilder::concat(arena, capTable,
|
cannam@147
|
430 _::elementSizeForType<Element>(),
|
cannam@147
|
431 _::minStructSizeForElement<Element>(), raw));
|
cannam@147
|
432 }
|
cannam@147
|
433
|
cannam@147
|
434 inline Orphan<Data> Orphanage::referenceExternalData(Data::Reader data) const {
|
cannam@147
|
435 return Orphan<Data>(_::OrphanBuilder::referenceExternalData(arena, data));
|
cannam@147
|
436 }
|
cannam@147
|
437
|
cannam@147
|
438 } // namespace capnp
|
cannam@147
|
439
|
cannam@147
|
440 #endif // CAPNP_ORPHAN_H_
|