-
Notifications
You must be signed in to change notification settings - Fork 247
/
base_collections_input_map_view.h
219 lines (177 loc) · 6.49 KB
/
base_collections_input_map_view.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
namespace winrt::impl
{
template <typename K, typename V, typename Container>
struct input_map_view :
implements<input_map_view<K, V, Container>, non_agile, no_weak_ref, wfc::IMapView<K, V>, wfc::IIterable<wfc::IKeyValuePair<K, V>>>,
map_view_base<input_map_view<K, V, Container>, K, V>
{
static_assert(std::is_same_v<Container, std::remove_reference_t<Container>>, "Must be constructed with rvalue.");
explicit input_map_view(Container&& values) : m_values(std::forward<Container>(values))
{
}
auto& get_container() const noexcept
{
return m_values;
}
private:
Container const m_values;
};
template <typename K, typename V, typename Container>
struct scoped_input_map_view :
input_scope,
implements<scoped_input_map_view<K, V, Container>, non_agile, no_weak_ref, wfc::IMapView<K, V>, wfc::IIterable<wfc::IKeyValuePair<K, V>>>,
map_view_base<scoped_input_map_view<K, V, Container>, K, V>
{
void abi_enter() const
{
check_scope();
}
explicit scoped_input_map_view(Container const& values) : m_values(values)
{
}
auto& get_container() const noexcept
{
return m_values;
}
#if defined(_DEBUG) && !defined(WINRT_NO_MAKE_DETECTION)
void use_make_function_to_create_this_object() final
{
}
#endif
private:
Container const& m_values;
};
template <typename K, typename V, typename Container>
auto make_input_map_view(Container&& values)
{
return make<input_map_view<K, V, Container>>(std::forward<Container>(values));
}
template <typename K, typename V, typename Container>
auto make_scoped_input_map_view(Container const& values)
{
using interface_type = wfc::IMapView<K, V>;
std::pair<interface_type, input_scope*> result;
auto ptr = new scoped_input_map_view<K, V, Container>(values);
*put_abi(result.first) = to_abi<interface_type>(ptr);
result.second = ptr;
return result;
}
}
WINRT_EXPORT namespace winrt::param
{
template <typename K, typename V>
struct map_view
{
using value_type = Windows::Foundation::Collections::IKeyValuePair<K, V>;
using interface_type = Windows::Foundation::Collections::IMapView<K, V>;
map_view(std::nullptr_t) noexcept
{
}
map_view(map_view const& values) = delete;
map_view& operator=(map_view const& values) = delete;
map_view(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>
map_view(Collection const& values) noexcept
{
m_pair.first = values;
}
template <typename Compare, typename Allocator>
map_view(std::map<K, V, Compare, Allocator>&& values) : m_pair(impl::make_input_map_view<K, V>(std::move(values)), nullptr)
{
}
template <typename Compare, typename Allocator>
map_view(std::map<K, V, Compare, Allocator> const& values) : m_pair(impl::make_scoped_input_map_view<K, V>(values))
{
}
template <typename Hash, typename KeyEqual, typename Allocator>
map_view(std::unordered_map<K, V, Hash, KeyEqual, Allocator>&& values) : m_pair(impl::make_input_map_view<K, V>(std::move(values)), nullptr)
{
}
template <typename Hash, typename KeyEqual, typename Allocator>
map_view(std::unordered_map<K, V, Hash, KeyEqual, Allocator> const& values) : m_pair(impl::make_scoped_input_map_view<K, V>(values))
{
}
map_view(std::initializer_list<std::pair<K const, V>> values) : m_pair(impl::make_input_map_view<K, V>(std::map<K, V>(values)), nullptr)
{
}
~map_view() 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>
auto get_abi(map_view<K, V> const& object) noexcept
{
return *(void**)(&object);
}
template <typename K, typename V>
struct async_map_view
{
using value_type = Windows::Foundation::Collections::IKeyValuePair<K, V>;
using interface_type = Windows::Foundation::Collections::IMapView<K, V>;
async_map_view(std::nullptr_t) noexcept
{
}
async_map_view(async_map_view const& values) = delete;
async_map_view& operator=(async_map_view const& values) = delete;
async_map_view(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_map_view(Collection const& values) noexcept
{
m_interface = values;
}
template <typename Compare, typename Allocator>
async_map_view(std::map<K, V, Compare, Allocator>&& values) :
m_interface(impl::make_input_map_view<K, V>(std::move(values)))
{
}
template <typename Hash, typename KeyEqual, typename Allocator>
async_map_view(std::unordered_map<K, V, Hash, KeyEqual, Allocator>&& values) :
m_interface(impl::make_input_map_view<K, V>(std::move(values)))
{
}
async_map_view(std::initializer_list<std::pair<K const, V>> values) :
m_interface(impl::make_input_map_view<K, V>(std::map<K, V>(values)))
{
}
~async_map_view() 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>
auto get_abi(async_map_view<K, V> const& object) noexcept
{
return *(void**)(&object);
}
}