KDBindings API Documentation 1.0.95
Loading...
Searching...
No Matches
make_node.h
Go to the documentation of this file.
1/*
2 This file is part of KDBindings.
3
4 SPDX-FileCopyrightText: 2021 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
5 Author: Sean Harmer <sean.harmer@kdab.com>
6
7 SPDX-License-Identifier: MIT
8
9 Contact KDAB at <info@kdab.com> for commercial licensing options.
10*/
11
12#pragma once
13
14#include <kdbindings/node.h>
15#include <type_traits>
16
17namespace KDBindings {
18
19namespace Private {
20
21template<typename T>
22struct bindable_value_type_ {
23 using type = T;
24};
25
26template<typename T>
27struct bindable_value_type_<Property<T>> {
28 using type = T;
29};
30
31template<typename T>
32struct bindable_value_type_<const Property<T>> {
33 using type = T;
34};
35
36template<typename T>
37struct bindable_value_type_<NodeInterface<T>> {
38 using type = T;
39};
40
41template<typename T>
42struct bindable_value_type_<Node<T>> {
43 using type = T;
44};
45
46template<typename T>
47struct bindable_value_type : bindable_value_type_<std::decay_t<T>> {
48};
49
50template<typename T>
51using bindable_value_type_t = typename bindable_value_type<T>::type;
52
53// Find the type of a Node wrapping an operator and arguments
54template<typename Operator, typename... Ts>
55using operator_node_result =
56 std::decay<
57 std::invoke_result_t<
58 std::decay_t<Operator>,
59 bindable_value_type_t<Ts>...>>;
60
61template<typename Operator, typename... Ts>
62using operator_node_result_t = typename operator_node_result<Operator, Ts...>::type;
63
64// Node creation helpers
65template<typename T>
66inline Node<std::decay_t<T>> makeNode(T &&value)
67{
68 return Node<std::decay_t<T>>(std::make_unique<ConstantNode<std::decay_t<T>>>(std::move(value)));
69}
70
71template<typename T>
72inline Node<T> makeNode(Property<T> &property)
73{
74 return Node<T>(std::make_unique<PropertyNode<T>>(property));
75}
76
77template<typename T>
78inline Node<T> makeNode(const Property<T> &property)
79{
80 return Node<T>(std::make_unique<PropertyNode<T>>(property));
81}
82
83template<typename T>
84inline Node<T> makeNode(Node<T> &&node)
85{
86 return std::move(node);
87}
88
89template<typename Operator, typename... Ts, typename = std::enable_if_t<sizeof...(Ts) >= 1>, typename ResultType = operator_node_result_t<Operator, Ts...>>
90inline Node<ResultType> makeNode(Operator &&op, Ts &&...args)
91{
92 return Node<ResultType>(std::make_unique<OperatorNode<ResultType, std::decay_t<Operator>, bindable_value_type_t<Ts>...>>(
93 std::forward<Operator>(op),
94 makeNode(std::forward<Ts>(args))...));
95}
96
97// Needed by function and operator helpers
98template<typename T>
99struct is_bindable : std::integral_constant<
100 bool,
101 is_property<T>::value || is_node<T>::value> {
102};
103
104} // namespace Private
105
106} // namespace KDBindings
The main namespace of the KDBindings library.
Definition binding.h:21

© Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/
KDBindings
Reactive programming & data binding in C++
https://github.com/KDAB/KDBindings/
Generated on Tue Mar 25 2025 14:25:49 for KDBindings API Documentation by doxygen 1.9.8