forked from microsoft/cppgraphqlgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HumanObject.h
251 lines (206 loc) · 8.22 KB
/
HumanObject.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// WARNING! Do not edit this file manually, your changes will be overwritten.
#pragma once
#ifndef HUMANOBJECT_H
#define HUMANOBJECT_H
#include "StarWarsSchema.h"
namespace graphql::learn::object {
namespace implements {
template <class I>
concept HumanIs = std::is_same_v<I, Character>;
} // namespace implements
namespace methods::HumanHas {
template <class TImpl>
concept getIdWithParams = requires (TImpl impl, service::FieldParams params)
{
{ service::AwaitableScalar<response::IdType> { impl.getId(std::move(params)) } };
};
template <class TImpl>
concept getId = requires (TImpl impl)
{
{ service::AwaitableScalar<response::IdType> { impl.getId() } };
};
template <class TImpl>
concept getNameWithParams = requires (TImpl impl, service::FieldParams params)
{
{ service::AwaitableScalar<std::optional<std::string>> { impl.getName(std::move(params)) } };
};
template <class TImpl>
concept getName = requires (TImpl impl)
{
{ service::AwaitableScalar<std::optional<std::string>> { impl.getName() } };
};
template <class TImpl>
concept getFriendsWithParams = requires (TImpl impl, service::FieldParams params)
{
{ service::AwaitableObject<std::optional<std::vector<std::shared_ptr<Character>>>> { impl.getFriends(std::move(params)) } };
};
template <class TImpl>
concept getFriends = requires (TImpl impl)
{
{ service::AwaitableObject<std::optional<std::vector<std::shared_ptr<Character>>>> { impl.getFriends() } };
};
template <class TImpl>
concept getAppearsInWithParams = requires (TImpl impl, service::FieldParams params)
{
{ service::AwaitableScalar<std::optional<std::vector<std::optional<Episode>>>> { impl.getAppearsIn(std::move(params)) } };
};
template <class TImpl>
concept getAppearsIn = requires (TImpl impl)
{
{ service::AwaitableScalar<std::optional<std::vector<std::optional<Episode>>>> { impl.getAppearsIn() } };
};
template <class TImpl>
concept getHomePlanetWithParams = requires (TImpl impl, service::FieldParams params)
{
{ service::AwaitableScalar<std::optional<std::string>> { impl.getHomePlanet(std::move(params)) } };
};
template <class TImpl>
concept getHomePlanet = requires (TImpl impl)
{
{ service::AwaitableScalar<std::optional<std::string>> { impl.getHomePlanet() } };
};
template <class TImpl>
concept beginSelectionSet = requires (TImpl impl, const service::SelectionSetParams params)
{
{ impl.beginSelectionSet(params) };
};
template <class TImpl>
concept endSelectionSet = requires (TImpl impl, const service::SelectionSetParams params)
{
{ impl.endSelectionSet(params) };
};
} // namespace methods::HumanHas
class [[nodiscard("unnecessary construction")]] Human final
: public service::Object
{
private:
[[nodiscard("unnecessary call")]] service::AwaitableResolver resolveId(service::ResolverParams&& params) const;
[[nodiscard("unnecessary call")]] service::AwaitableResolver resolveName(service::ResolverParams&& params) const;
[[nodiscard("unnecessary call")]] service::AwaitableResolver resolveFriends(service::ResolverParams&& params) const;
[[nodiscard("unnecessary call")]] service::AwaitableResolver resolveAppearsIn(service::ResolverParams&& params) const;
[[nodiscard("unnecessary call")]] service::AwaitableResolver resolveHomePlanet(service::ResolverParams&& params) const;
[[nodiscard("unnecessary call")]] service::AwaitableResolver resolve_typename(service::ResolverParams&& params) const;
struct [[nodiscard("unnecessary construction")]] Concept
{
virtual ~Concept() = default;
virtual void beginSelectionSet(const service::SelectionSetParams& params) const = 0;
virtual void endSelectionSet(const service::SelectionSetParams& params) const = 0;
[[nodiscard("unnecessary call")]] virtual service::AwaitableScalar<response::IdType> getId(service::FieldParams&& params) const = 0;
[[nodiscard("unnecessary call")]] virtual service::AwaitableScalar<std::optional<std::string>> getName(service::FieldParams&& params) const = 0;
[[nodiscard("unnecessary call")]] virtual service::AwaitableObject<std::optional<std::vector<std::shared_ptr<Character>>>> getFriends(service::FieldParams&& params) const = 0;
[[nodiscard("unnecessary call")]] virtual service::AwaitableScalar<std::optional<std::vector<std::optional<Episode>>>> getAppearsIn(service::FieldParams&& params) const = 0;
[[nodiscard("unnecessary call")]] virtual service::AwaitableScalar<std::optional<std::string>> getHomePlanet(service::FieldParams&& params) const = 0;
};
template <class T>
struct [[nodiscard("unnecessary construction")]] Model final
: Concept
{
explicit Model(std::shared_ptr<T> pimpl) noexcept
: _pimpl { std::move(pimpl) }
{
}
[[nodiscard("unnecessary call")]] service::AwaitableScalar<response::IdType> getId(service::FieldParams&& params) const override
{
if constexpr (methods::HumanHas::getIdWithParams<T>)
{
return { _pimpl->getId(std::move(params)) };
}
else
{
static_assert(methods::HumanHas::getId<T>, R"msg(Human::getId is not implemented)msg");
return { _pimpl->getId() };
}
}
[[nodiscard("unnecessary call")]] service::AwaitableScalar<std::optional<std::string>> getName(service::FieldParams&& params) const override
{
if constexpr (methods::HumanHas::getNameWithParams<T>)
{
return { _pimpl->getName(std::move(params)) };
}
else
{
static_assert(methods::HumanHas::getName<T>, R"msg(Human::getName is not implemented)msg");
return { _pimpl->getName() };
}
}
[[nodiscard("unnecessary call")]] service::AwaitableObject<std::optional<std::vector<std::shared_ptr<Character>>>> getFriends(service::FieldParams&& params) const override
{
if constexpr (methods::HumanHas::getFriendsWithParams<T>)
{
return { _pimpl->getFriends(std::move(params)) };
}
else
{
static_assert(methods::HumanHas::getFriends<T>, R"msg(Human::getFriends is not implemented)msg");
return { _pimpl->getFriends() };
}
}
[[nodiscard("unnecessary call")]] service::AwaitableScalar<std::optional<std::vector<std::optional<Episode>>>> getAppearsIn(service::FieldParams&& params) const override
{
if constexpr (methods::HumanHas::getAppearsInWithParams<T>)
{
return { _pimpl->getAppearsIn(std::move(params)) };
}
else
{
static_assert(methods::HumanHas::getAppearsIn<T>, R"msg(Human::getAppearsIn is not implemented)msg");
return { _pimpl->getAppearsIn() };
}
}
[[nodiscard("unnecessary call")]] service::AwaitableScalar<std::optional<std::string>> getHomePlanet(service::FieldParams&& params) const override
{
if constexpr (methods::HumanHas::getHomePlanetWithParams<T>)
{
return { _pimpl->getHomePlanet(std::move(params)) };
}
else
{
static_assert(methods::HumanHas::getHomePlanet<T>, R"msg(Human::getHomePlanet is not implemented)msg");
return { _pimpl->getHomePlanet() };
}
}
void beginSelectionSet(const service::SelectionSetParams& params) const override
{
if constexpr (methods::HumanHas::beginSelectionSet<T>)
{
_pimpl->beginSelectionSet(params);
}
}
void endSelectionSet(const service::SelectionSetParams& params) const override
{
if constexpr (methods::HumanHas::endSelectionSet<T>)
{
_pimpl->endSelectionSet(params);
}
}
private:
const std::shared_ptr<T> _pimpl;
};
explicit Human(std::unique_ptr<const Concept> pimpl) noexcept;
// Interfaces which this type implements
friend Character;
template <class I>
[[nodiscard("unnecessary call")]] static constexpr bool implements() noexcept
{
return implements::HumanIs<I>;
}
[[nodiscard("unnecessary call")]] service::TypeNames getTypeNames() const noexcept;
[[nodiscard("unnecessary call")]] service::ResolverMap getResolvers() const noexcept;
void beginSelectionSet(const service::SelectionSetParams& params) const override;
void endSelectionSet(const service::SelectionSetParams& params) const override;
const std::unique_ptr<const Concept> _pimpl;
public:
template <class T>
explicit Human(std::shared_ptr<T> pimpl) noexcept
: Human { std::unique_ptr<const Concept> { std::make_unique<Model<T>>(std::move(pimpl)) } }
{
}
[[nodiscard("unnecessary call")]] static constexpr std::string_view getObjectType() noexcept
{
return { R"gql(Human)gql" };
}
};
} // namespace graphql::learn::object
#endif // HUMANOBJECT_H