-
Notifications
You must be signed in to change notification settings - Fork 45
/
UnionTypeObject.h
81 lines (61 loc) · 2.22 KB
/
UnionTypeObject.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
// 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 UNIONTYPEOBJECT_H
#define UNIONTYPEOBJECT_H
#include "TodaySchema.h"
namespace graphql::today::object {
class [[nodiscard("unnecessary construction")]] UnionType final
: public service::Object
{
private:
struct [[nodiscard("unnecessary construction")]] Concept
{
virtual ~Concept() = default;
[[nodiscard("unnecessary call")]] virtual service::TypeNames getTypeNames() const noexcept = 0;
[[nodiscard("unnecessary call")]] virtual service::ResolverMap getResolvers() const noexcept = 0;
virtual void beginSelectionSet(const service::SelectionSetParams& params) const = 0;
virtual void endSelectionSet(const service::SelectionSetParams& 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::TypeNames getTypeNames() const noexcept override
{
return _pimpl->getTypeNames();
}
[[nodiscard("unnecessary call")]] service::ResolverMap getResolvers() const noexcept override
{
return _pimpl->getResolvers();
}
void beginSelectionSet(const service::SelectionSetParams& params) const override
{
_pimpl->beginSelectionSet(params);
}
void endSelectionSet(const service::SelectionSetParams& params) const override
{
_pimpl->endSelectionSet(params);
}
private:
const std::shared_ptr<T> _pimpl;
};
explicit UnionType(std::unique_ptr<const Concept> pimpl) 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 UnionType(std::shared_ptr<T> pimpl) noexcept
: UnionType { std::unique_ptr<const Concept> { std::make_unique<Model<T>>(std::move(pimpl)) } }
{
static_assert(T::template implements<UnionType>(), "UnionType is not implemented");
}
};
} // namespace graphql::today::object
#endif // UNIONTYPEOBJECT_H