NuriaProject Framework  0.1
The NuriaProject Framework
lazyevaluation.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_LAZYEVALUATION_HPP
18 #define NURIA_LAZYEVALUATION_HPP
19 
20 #include "essentials.hpp"
21 #include "callback.hpp"
22 #include "variant.hpp"
23 #include <QSharedData>
24 #include <QMetaType>
25 #include <QVariant>
26 #include <QDebug>
27 
28 namespace Nuria {
29 
30 class AbstractConditionEvaluator;
31 class LazyConditionPrivate;
32 class Field;
33 
62 class NURIA_CORE_EXPORT LazyCondition {
63 public:
64 
68  enum Type {
69  Empty = 0,
75  Less,
78  LogicOr
79  };
80 
82  LazyCondition ();
83 
85  ~LazyCondition ();
86 
88  LazyCondition (const Field &field);
89 
91  LazyCondition (const QVariant &single);
92 
94  LazyCondition (const LazyCondition &other);
95 
97  LazyCondition (const QVariant &left, Type type, const QVariant &right);
98 
100  LazyCondition &operator= (const LazyCondition &other);
101 
105  bool isValid () const;
106 
111  Type type () const;
112 
114  const QVariant &left () const;
115 
117  const QVariant &right () const;
118 
120  operator QVariant () const;
121 
127  LazyCondition operator&& (const LazyCondition &other);
128 
134  LazyCondition operator|| (const LazyCondition &other);
135 
139  template< typename ... Args >
140  inline bool operator() (const Args & ... args)
141  { return evaluate (Variant::buildList (args ...)); }
142 
148  bool evaluate (const QVariantList &arguments) const;
149 
160  void compile (AbstractConditionEvaluator *evaluator = nullptr);
161 
162 private:
163  QSharedDataPointer< LazyConditionPrivate > d;
164 };
165 
175 class NURIA_CORE_EXPORT Field {
176 public:
177 
181  enum Type {
183  Empty = 0,
184 
187 
193 
198 
207  Custom = 50
208  };
209 
211  Field ();
212 
214  Field (int type, const QVariant &data);
215 
217  Field (const Field &other);
218 
224  //
225  LazyCondition operator== (const Field &other);
226  LazyCondition operator!= (const Field &other);
227  LazyCondition operator< (const Field &other);
228  LazyCondition operator<= (const Field &other);
229  LazyCondition operator> (const Field &other);
230  LazyCondition operator>= (const Field &other);
231 
232  //
233  template< typename T >
234  LazyCondition operator== (const T &other)
235  { return LazyCondition (toVariant (), LazyCondition::Equal, QVariant::fromValue (other)); }
236 
237  template< typename T >
238  LazyCondition operator!= (const T &other)
239  { return LazyCondition (toVariant (), LazyCondition::NonEqual, QVariant::fromValue (other)); }
240 
241  template< typename T >
242  LazyCondition operator< (const T &other)
243  { return LazyCondition (toVariant (), LazyCondition::Less, QVariant::fromValue (other)); }
244 
245  template< typename T >
246  LazyCondition operator<= (const T &other)
247  { return LazyCondition (toVariant (), LazyCondition::LessEqual, QVariant::fromValue (other)); }
248 
249  template< typename T >
250  LazyCondition operator> (const T &other)
251  { return LazyCondition (toVariant (), LazyCondition::Greater, QVariant::fromValue (other)); }
252 
253  template< typename T >
254  LazyCondition operator>= (const T &other)
255  { return LazyCondition (toVariant (), LazyCondition::GreaterEqual, QVariant::fromValue (other)); }
256 
262  const QVariant &value () const;
263 
269  Type type () const;
270 
275  int customType () const;
276 
282  QVariant toVariant () const;
283 
284 private:
285  Type m_type;
286  QVariant m_value;
287 };
288 
308 class NURIA_CORE_EXPORT TestCall {
309 public:
310 
312  TestCall ();
313 
315  TestCall (const QString &name, const QVariantList &args);
316 
318  TestCall (const Nuria::Callback &callback, const QVariantList &args);
319 
324  bool isNative () const;
325 
330  QString name () const;
331 
336  Nuria::Callback callback () const;
337 
342  const QVariantList &arguments () const;
343 
344 private:
345  QVariant m_method;
346  QVariantList m_args;
347 };
348 
354 template< typename T > inline Field val (const T &value)
355 { return Field (Field::Value, QVariant::fromValue (value)); }
356 
361 NURIA_CORE_EXPORT Field arg (int index);
362 
368 template< typename ... Args >
369 Field test (const QString &method, const Args &... args) {
370  TestCall call (method, Variant::buildList (args ...));
371  return Field (Field::TestCall, QVariant::fromValue (call));
372 }
373 
379 template< typename ... Args >
380 Field test (const Nuria::Callback &method, const Args &... args) {
381  TestCall call (method, Variant::buildList (args ...));
382  return Field (Field::TestCall, QVariant::fromValue (call));
383 }
384 
385 }
386 
391 NURIA_CORE_EXPORT QDebug operator<< (QDebug dbg, const Nuria::LazyCondition &condition);
392 NURIA_CORE_EXPORT QDebug operator<< (QDebug dbg, const Nuria::TestCall &call);
393 NURIA_CORE_EXPORT QDebug operator<< (QDebug dbg, const Nuria::Field &field);
396 //
397 Q_DECLARE_METATYPE(Nuria::LazyCondition)
398 Q_DECLARE_METATYPE(Nuria::TestCall)
399 Q_DECLARE_METATYPE(Nuria::Field)
400 
401 #endif // NURIA_LAZYEVALUATION_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
The TestCall class encapsulates a call to a test function for LazyCondition.
Definition: lazyevaluation.hpp:308
Evaluates to (left <= right).
Definition: lazyevaluation.hpp:77
Definition: lazyevaluation.hpp:186
static QVariantList buildList(const Items &...items)
Definition: variant.hpp:42
Definition: abstractsessionmanager.hpp:24
Definition: lazyevaluation.hpp:197
Evaluates to (left > right).
Definition: lazyevaluation.hpp:74
Definition: lazyevaluation.hpp:192
Invalid instance, evaluates to false.
Definition: lazyevaluation.hpp:70
Type
Definition: lazyevaluation.hpp:181
Field encapsulates a value-field for LazyCondition.
Definition: lazyevaluation.hpp:175
Type
Definition: lazyevaluation.hpp:68
The AbstractConditionEvaluator class.
Definition: conditionevaluator.hpp:30
Evaluates to (left >= right).
Definition: lazyevaluation.hpp:75
LazyCondition offers lazily evaluated conditions for C++.
Definition: lazyevaluation.hpp:62
Evaluates to (left == right).
Definition: lazyevaluation.hpp:72
Evaluates to (left).
Definition: lazyevaluation.hpp:71
Evaluates to (left < right).
Definition: lazyevaluation.hpp:76
Evaluates to (left != right).
Definition: lazyevaluation.hpp:73