-
Notifications
You must be signed in to change notification settings - Fork 247
/
base_collections_input_iterable.h
351 lines (282 loc) · 10.4 KB
/
base_collections_input_iterable.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
namespace winrt::impl
{
template <typename T, typename Container>
struct input_iterable :
implements<input_iterable<T, Container>, non_agile, no_weak_ref, wfc::IIterable<T>>,
iterable_base<input_iterable<T, Container>, T>
{
static_assert(std::is_same_v<Container, std::remove_reference_t<Container>>, "Must be constructed with rvalue.");
explicit input_iterable(Container&& values) : m_values(std::forward<Container>(values))
{
}
auto& get_container() const noexcept
{
return m_values;
}
private:
Container const m_values;
};
template <typename T, typename InputIt>
struct scoped_input_iterable :
input_scope,
implements<scoped_input_iterable<T, InputIt>, non_agile, no_weak_ref, wfc::IIterable<T>>,
iterable_base<scoped_input_iterable<T, InputIt>, T>
{
void abi_enter() const
{
check_scope();
}
scoped_input_iterable(InputIt first, InputIt last) : m_begin(first), m_end(last)
{
}
auto get_container() const noexcept
{
return range_container<InputIt>{ m_begin, m_end };
}
#if defined(_DEBUG) && !defined(WINRT_NO_MAKE_DETECTION)
void use_make_function_to_create_this_object() final
{
}
#endif
private:
InputIt const m_begin;
InputIt const m_end;
};
template <typename T, typename Container>
auto make_input_iterable(Container&& values)
{
return make<input_iterable<T, Container>>(std::forward<Container>(values));
}
template <typename T, typename InputIt>
auto make_scoped_input_iterable(InputIt first, InputIt last)
{
using interface_type = wfc::IIterable<T>;
std::pair<interface_type, input_scope*> result;
auto ptr = new scoped_input_iterable<T, InputIt>(first, last);
*put_abi(result.first) = to_abi<interface_type>(ptr);
result.second = ptr;
return result;
}
}
WINRT_EXPORT namespace winrt::param
{
template <typename T>
struct iterable
{
using value_type = T;
using interface_type = Windows::Foundation::Collections::IIterable<value_type>;
iterable(std::nullptr_t) noexcept
{
}
iterable(iterable const& values) = delete;
iterable& operator=(iterable const& values) = delete;
iterable(interface_type const& values) noexcept : m_owned(false)
{
attach_abi(m_pair.first, winrt::get_abi(values));
}
template <typename Collection, std::enable_if_t<std::is_convertible_v<Collection, interface_type>, int> = 0>
iterable(Collection const& values) noexcept
{
m_pair.first = values;
}
template <typename Allocator>
iterable(std::vector<value_type, Allocator>&& values) : m_pair(impl::make_input_iterable<value_type>(std::move(values)), nullptr)
{
}
template <typename Allocator>
iterable(std::vector<value_type, Allocator> const& values) : m_pair(impl::make_scoped_input_iterable<value_type>(values.begin(), values.end()))
{
}
iterable(std::initializer_list<value_type> values) : m_pair(impl::make_scoped_input_iterable<value_type>(values.begin(), values.end()))
{
}
template <typename U, std::enable_if_t<std::is_convertible_v<U, value_type>, int> = 0>
iterable(std::initializer_list<U> values) : m_pair(impl::make_scoped_input_iterable<value_type>(values.begin(), values.end()))
{
}
template<class InputIt>
iterable(InputIt first, InputIt last) : m_pair(impl::make_scoped_input_iterable<value_type>(first, last))
{
}
~iterable() noexcept
{
if (m_pair.second)
{
m_pair.second->invalidate_scope();
}
if (!m_owned)
{
detach_abi(m_pair.first);
}
}
operator interface_type const& () const noexcept
{
return m_pair.first;
}
private:
std::pair<interface_type, impl::input_scope*> m_pair;
bool m_owned{ true };
};
template <typename K, typename V>
struct iterable<Windows::Foundation::Collections::IKeyValuePair<K, V>>
{
using value_type = Windows::Foundation::Collections::IKeyValuePair<K, V>;
using interface_type = Windows::Foundation::Collections::IIterable<value_type>;
iterable(std::nullptr_t) noexcept
{
}
iterable(iterable const& values) = delete;
iterable& operator=(iterable const& values) = delete;
iterable(interface_type const& values) noexcept : m_owned(false)
{
attach_abi(m_pair.first, winrt::get_abi(values));
}
template <typename Collection, std::enable_if_t<std::is_convertible_v<Collection, interface_type>, int> = 0>
iterable(Collection const& values) noexcept
{
m_pair.first = values;
}
template <typename Compare, typename Allocator>
iterable(std::map<K, V, Compare, Allocator>&& values) : m_pair(impl::make_input_iterable<value_type>(std::move(values)), nullptr)
{
}
template <typename Compare, typename Allocator>
iterable(std::map<K, V, Compare, Allocator> const& values) : m_pair(impl::make_scoped_input_iterable<value_type>(values.begin(), values.end()))
{
}
template <typename Hash, typename KeyEqual, typename Allocator>
iterable(std::unordered_map<K, V, Hash, KeyEqual, Allocator>&& values) : m_pair(impl::make_input_iterable<value_type>(std::move(values)), nullptr)
{
}
template <typename Hash, typename KeyEqual, typename Allocator>
iterable(std::unordered_map<K, V, Hash, KeyEqual, Allocator> const& values) : m_pair(impl::make_scoped_input_iterable<value_type>(values.begin(), values.end()))
{
}
iterable(std::initializer_list<std::pair<K const, V>> values) : m_pair(impl::make_scoped_input_iterable<value_type>(values.begin(), values.end()))
{
}
template<class InputIt>
iterable(InputIt first, InputIt last) : m_pair(impl::make_scoped_input_iterable<value_type>(first, last))
{
}
~iterable() noexcept
{
if (m_pair.second)
{
m_pair.second->invalidate_scope();
}
if (!m_owned)
{
detach_abi(m_pair.first);
}
}
operator interface_type const& () const noexcept
{
return m_pair.first;
}
private:
std::pair<interface_type, impl::input_scope*> m_pair;
bool m_owned{ true };
};
template <typename T>
auto get_abi(iterable<T> const& object) noexcept
{
return *(void**)(&object);
}
template <typename T>
struct async_iterable
{
using value_type = T;
using interface_type = Windows::Foundation::Collections::IIterable<value_type>;
async_iterable(std::nullptr_t) noexcept
{
}
async_iterable(async_iterable const& values) = delete;
async_iterable& operator=(async_iterable const& values) = delete;
async_iterable(interface_type const& values) noexcept : m_owned(false)
{
attach_abi(m_interface, winrt::get_abi(values));
}
template <typename Collection, std::enable_if_t<std::is_convertible_v<Collection, interface_type>, int> = 0>
async_iterable(Collection const& values) noexcept
{
m_interface = values;
}
template <typename Allocator>
async_iterable(std::vector<value_type, Allocator>&& values) :
m_interface(impl::make_input_iterable<value_type>(std::move(values)))
{
}
async_iterable(std::initializer_list<value_type> values) :
m_interface(impl::make_input_iterable<value_type>(std::vector<value_type>(values)))
{
}
~async_iterable() noexcept
{
if (!m_owned)
{
detach_abi(m_interface);
}
}
operator interface_type const& () const noexcept
{
return m_interface;
}
private:
interface_type m_interface;
bool m_owned{ true };
};
template <typename K, typename V>
struct async_iterable<Windows::Foundation::Collections::IKeyValuePair<K, V>>
{
using value_type = Windows::Foundation::Collections::IKeyValuePair<K, V>;
using interface_type = Windows::Foundation::Collections::IIterable<value_type>;
async_iterable(std::nullptr_t) noexcept
{
}
async_iterable(async_iterable const& values) = delete;
async_iterable& operator=(async_iterable const& values) = delete;
async_iterable(interface_type const& values) noexcept : m_owned(false)
{
attach_abi(m_interface, winrt::get_abi(values));
}
template <typename Collection, std::enable_if_t<std::is_convertible_v<Collection, interface_type>, int> = 0>
async_iterable(Collection const& values) noexcept
{
m_interface = values;
}
template <typename Compare, typename Allocator>
async_iterable(std::map<K, V, Compare, Allocator>&& values) :
m_interface(impl::make_input_iterable<value_type>(std::move(values)))
{
}
template <typename Hash, typename KeyEqual, typename Allocator>
async_iterable(std::unordered_map<K, V, Hash, KeyEqual, Allocator>&& values) :
m_interface(impl::make_input_iterable<value_type>(std::move(values)))
{
}
async_iterable(std::initializer_list<std::pair<K const, V>> values) :
m_interface(impl::make_input_iterable<value_type>(std::map<K, V>(values)))
{
}
~async_iterable() noexcept
{
if (!m_owned)
{
detach_abi(m_interface);
}
}
operator interface_type const& () const noexcept
{
return m_interface;
}
private:
interface_type m_interface;
bool m_owned{ true };
};
template <typename T>
auto get_abi(async_iterable<T> const& object) noexcept
{
return *(void**)(&object);
}
}