QAlgorithm
 All Classes Files Functions Typedefs Properties Macros
QAlgorithm.h
Go to the documentation of this file.
1 // QAlgorithm: a class for Qt/C++ implementing generic algorithm logic.
2 // Copyright (C) 2018 Filippo Santarelli
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Lesser General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 //
17 // Contact me at: filippo2.santarelli@gmail.com
18 //
19 
24 #ifndef QAlgorithm_h
25 #define QAlgorithm_h
26 
27 #include <QtCore>
28 #include <QtConcurrent/qtconcurrentrun.h>
29 #include "qa_macros.h"
30 
31 class QAlgorithm;
32 
33 typedef QSharedPointer<QAlgorithm> QAShrAlgorithm;
34 typedef QMap<QString, QVariant> QAPropertyMap;
35 typedef QMultiMap<QString, QString> QAPropagationRules;
36 typedef QMap<QAShrAlgorithm, bool> QACompletionMap;
37 typedef QMap<QAShrAlgorithm, QSet<QAShrAlgorithm>> QAFlatRepresentation;
38 
39 Q_DECLARE_METATYPE(QAPropertyMap)
40 Q_DECLARE_METATYPE(QAPropagationRules)
41 Q_DECLARE_METATYPE(QAShrAlgorithm)
42 
96 class QAlgorithm : public QObject, public QRunnable
97 {
98 
99  Q_OBJECT
100 
101  QA_PARAMETER(bool, KeepInput, false)
103  QA_PARAMETER(bool, ParallelExecution, true)
104 
105  Q_PROPERTY(bool finished READ isFinished NOTIFY justStarted)
106  Q_PROPERTY(bool started READ isStarted NOTIFY justFinished)
109 
125 
140 
152  bool finished = false;
153 
166  void setFinished();
167 
179  bool started = false;
180 
193  void setStarted();
194 
195  static quint32 print_counter;
196 
197  QFuture<void> result;
198  QFutureWatcher<void> watcher;
199 
200 protected:
201 
217  virtual void setup();
218 
234  virtual void init(){};
235 
249  QAShrAlgorithm findAncestor(const QAlgorithm* ancestor) const;
250 
262  QAShrAlgorithm findAncestor(const QAShrAlgorithm ancestor) const;
263 
277  QAShrAlgorithm findDescendant(const QAlgorithm* descendant) const;
278 
290  QAShrAlgorithm findDescendant(const QAShrAlgorithm descendant) const;
291 
307 
308 public:
315  QAlgorithm(QObject* parent = Q_NULLPTR);
316 
322  virtual void run() = 0;
323 
332 
341 
350  bool allInputsReady() const;
351 
359  bool isStarted() const;
360 
368  bool isFinished() const;
369 
385  virtual bool getInput(QAShrAlgorithm parent);
386 
401  virtual void setParameters(const QAPropertyMap& parameters);
402 
415  void printGraph(const QString& path = QString()) const;
416 
425  QString printName() const;
426 
447 
459  void printTree(const QAFlatRepresentation& tree = QAFlatRepresentation()) const;
460 
474  static void setConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant);
475 
487  static void closeConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant);
488 
502  static bool checkConnection(const QAShrAlgorithm ancestor, const QAShrAlgorithm descendant);
503 
520  static bool isRemovableConnection(const QAShrAlgorithm p1, const QAShrAlgorithm p2);
521 
537  static void improveTree(QAlgorithm* leaf);
538 
547  static std::pair<QString, QVariant> makePropagationRules(std::initializer_list<std::pair<QString,QString>> lst);
548 
549  public Q_SLOTS:
550 
563  Q_SLOT void parallelExecution();
564 
577  Q_SLOT void serialExecution();
578 
588  Q_SLOT void abort(QString message = "Unknown Error") const;
589 
610  Q_SLOT void propagateExecution();
611 
612 Q_SIGNALS:
621  Q_SIGNAL void justFinished();
622 
628  Q_SIGNAL void justStarted();
629 
641  Q_SIGNAL void raise(QString message) const;
642 };
643 
648 
653 
657 QDebug operator<<(QDebug debug, const QAlgorithm& c);
658 
671 QDataStream& operator<<(QDataStream& stream, const QAlgorithm& c);
672 
682 QDataStream& operator>>(QDataStream& stream, QAlgorithm& c);
683 
684 #endif /* QAlgorithm_h */
Q_SLOT void serialExecution()
Start computing the algorithm tree on the calling thread.
Definition: QAlgorithm.cpp:283
bool finished
Whether the algorithm finished to run and outputs are ready.
Definition: QAlgorithm.h:105
Q_SIGNAL void justStarted()
Signal emitted on algorithm's start.
QAShrAlgorithm findDescendant(const QAlgorithm *descendant) const
Find an descendant.
Definition: QAlgorithm.cpp:78
QFuture< void > result
Definition: QAlgorithm.h:197
Q_SLOT void parallelExecution()
Start computing the algorithm tree on different threads.
Definition: QAlgorithm.cpp:262
Q_SLOT void abort(QString message="Unknown Error") const
Emit the given error signal.
Definition: QAlgorithm.cpp:303
bool started
Whether the algorithm started to run.
Definition: QAlgorithm.h:106
virtual void init()
Set of instructions to initialize the algorithm.
Definition: QAlgorithm.h:234
static std::pair< QString, QVariant > makePropagationRules(std::initializer_list< std::pair< QString, QString >> lst)
Convenience method for writing PropagationRules.
Definition: QAlgorithm.cpp:386
QAShrAlgorithm findAncestor(const QAlgorithm *ancestor) const
Find an ancestor.
Definition: QAlgorithm.cpp:61
static void closeConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Disconnect two algorithms.
Definition: QAlgorithm.cpp:438
virtual void setParameters(const QAPropertyMap &parameters)
Set parameters for the algorithm.
Definition: QAlgorithm.cpp:120
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
#define QA_PARAMETER(Type, Name, Default)
Defines a parameter of the algorithm.
Definition: qa_macros.h:221
QAShrAlgorithm operator>>(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Creates connections like setConnection().
Definition: QAlgorithm.cpp:464
static bool checkConnection(const QAShrAlgorithm ancestor, const QAShrAlgorithm descendant)
Check if two algorithms are connected.
Definition: QAlgorithm.cpp:446
virtual bool getInput(QAShrAlgorithm parent)
Load inputs from parent's outputs.
Definition: QAlgorithm.cpp:187
QACompletionMap descendants
Map with descendants and their completion.
Definition: QAlgorithm.h:108
virtual void setup()
Set of instructions to set up the algorithm.
Definition: QAlgorithm.cpp:144
QAFlatRepresentation flattenTree(QAFlatRepresentation tree=QAFlatRepresentation()) const
Creates a flat representation of the algorithm tree.
Definition: QAlgorithm.cpp:400
QFutureWatcher< void > watcher
Definition: QAlgorithm.h:198
QMap< QAShrAlgorithm, QSet< QAShrAlgorithm > > QAFlatRepresentation
Definition: QAlgorithm.h:37
bool isStarted() const
Get the value of started.
Definition: QAlgorithm.cpp:29
QAlgorithm(QObject *parent=Q_NULLPTR)
Constructor.
Definition: QAlgorithm.cpp:113
virtual void run()=0
Core part of the algorithm, to be reimplemented in subclasses.
QAShrAlgorithm operator<<(QAShrAlgorithm descendant, QAShrAlgorithm ancestor)
Creates connections like setConnection().
Definition: QAlgorithm.cpp:470
bool isFinished() const
Get the value of finished.
Definition: QAlgorithm.cpp:24
static void improveTree(QAlgorithm *leaf)
Replace all removable connections, thus improving the tree performance.
Definition: QAlgorithm.cpp:549
static quint32 print_counter
Definition: QAlgorithm.h:195
QSharedPointer< QAlgorithm > QAShrAlgorithm
Definition: QAlgorithm.h:31
Abstract class that implements a generic algorithm.
Definition: QAlgorithm.h:96
void setFinished()
Set the algorithm as comleted and signals it.
Definition: QAlgorithm.cpp:40
static void setConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Connect two algorithms.
Definition: QAlgorithm.cpp:430
Q_SIGNAL void justFinished()
Signal emitted on algorithm's end.
QMap< QString, QVariant > QAPropertyMap
Definition: QAlgorithm.h:34
void printGraph(const QString &path=QString()) const
Create a GraphViz diagram of the algorithm tree.
Definition: QAlgorithm.cpp:308
QString printName() const
Returns name, memory address and class name of the algorithm.
Definition: QAlgorithm.cpp:391
bool allInputsReady() const
Checks if the algorithm is ready to run.
Definition: QAlgorithm.cpp:46
QMap< QAShrAlgorithm, bool > QACompletionMap
Definition: QAlgorithm.h:36
QACompletionMap getDescendants() const
Get the value of descendants.
Definition: QAlgorithm.cpp:56
QMultiMap< QString, QString > QAPropagationRules
Definition: QAlgorithm.h:35
void printTree(const QAFlatRepresentation &tree=QAFlatRepresentation()) const
Outputs a text representation of the algorithm tree.
Definition: QAlgorithm.cpp:531
void setStarted()
Set the algorithm as started and signals it.
Definition: QAlgorithm.cpp:34
QAShrAlgorithm findSharedThis() const
Find a shared pointer to this instance.
Definition: QAlgorithm.cpp:95
static bool isRemovableConnection(const QAShrAlgorithm p1, const QAShrAlgorithm p2)
Check if two algorithms are connected and the connection is removable.
Definition: QAlgorithm.cpp:451
QACompletionMap ancestors
Map with ancestors and their completion.
Definition: QAlgorithm.h:107
Q_SLOT void propagateExecution()
Execute descendants.
Definition: QAlgorithm.cpp:153