NuriaProject Framework  0.1
The NuriaProject Framework
lazyconditionwalker.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_LAZYCONDITIONWALKER_HPP
18 #define NURIA_LAZYCONDITIONWALKER_HPP
19 
20 #include <QSharedData>
21 
22 #include "lazyevaluation.hpp"
23 #include "essentials.hpp"
24 #include "callback.hpp"
25 
26 namespace Nuria {
27 
28 class LazyConditionWalkerPrivate;
29 
45 class NURIA_CORE_EXPORT LazyConditionWalker {
46 public:
47 
50 
53 
56 
58  LazyConditionWalker &operator= (const LazyConditionWalker &other);
59 
65  void onCondition (LazyCondition::Type type, const Callback &method);
66 
73  void onField (int fieldType, const Callback &method);
74 
83  void onVariant (int userType, const Callback &method);
84 
93  LazyCondition walk (const LazyCondition &condition, bool walkArguments = false);
94 
95 private:
96  bool walkVariant (QVariant &variant, QVariantList &stack, bool walkArguments);
97  bool walkCondition (QVariant &conditionVariant, QVariantList &stack, bool walkArguments);
98  bool walkField (QVariant &fieldVariant, QVariantList &stack, bool walkArguments);
99  bool walkTestCall (QVariant &callVariant, QVariantList &stack, bool walkArguments);
100 
101  QSharedDataPointer< LazyConditionWalkerPrivate > d;
102 
103 };
104 
105 }
106 
107 #endif // NURIA_LAZYCONDITIONWALKER_HPP
The LazyConditionWalker class lets you walk over a LazyCondition tree to make modifications to it...
Definition: lazyconditionwalker.hpp:45
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Definition: abstractsessionmanager.hpp:24
Type
Definition: lazyevaluation.hpp:68
LazyCondition offers lazily evaluated conditions for C++.
Definition: lazyevaluation.hpp:62