28 #include <QtConcurrent/qtconcurrentrun.h>
217 virtual
void setup();
322 virtual void run() = 0;
415 void printGraph(
const QString& path = QString())
const;
547 static std::pair<QString, QVariant>
makePropagationRules(std::initializer_list<std::pair<QString,QString>> lst);
588 Q_SLOT
void abort(QString message =
"Unknown Error")
const;
641 Q_SIGNAL
void raise(QString message)
const;
Q_SLOT void serialExecution()
Start computing the algorithm tree on the calling thread.
bool finished
Whether the algorithm finished to run and outputs are ready.
Q_SIGNAL void justStarted()
Signal emitted on algorithm's start.
QAShrAlgorithm findDescendant(const QAlgorithm *descendant) const
Find an descendant.
Q_SLOT void parallelExecution()
Start computing the algorithm tree on different threads.
Q_SLOT void abort(QString message="Unknown Error") const
Emit the given error signal.
bool started
Whether the algorithm started to run.
virtual void init()
Set of instructions to initialize the algorithm.
static std::pair< QString, QVariant > makePropagationRules(std::initializer_list< std::pair< QString, QString >> lst)
Convenience method for writing PropagationRules.
QAShrAlgorithm findAncestor(const QAlgorithm *ancestor) const
Find an ancestor.
static void closeConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Disconnect two algorithms.
virtual void setParameters(const QAPropertyMap ¶meters)
Set parameters for the algorithm.
QACompletionMap getAncestors() const
Get the value of ancestors.
#define QA_PARAMETER(Type, Name, Default)
Defines a parameter of the algorithm.
QAShrAlgorithm operator>>(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Creates connections like setConnection().
static bool checkConnection(const QAShrAlgorithm ancestor, const QAShrAlgorithm descendant)
Check if two algorithms are connected.
virtual bool getInput(QAShrAlgorithm parent)
Load inputs from parent's outputs.
QACompletionMap descendants
Map with descendants and their completion.
virtual void setup()
Set of instructions to set up the algorithm.
QAFlatRepresentation flattenTree(QAFlatRepresentation tree=QAFlatRepresentation()) const
Creates a flat representation of the algorithm tree.
QFutureWatcher< void > watcher
QMap< QAShrAlgorithm, QSet< QAShrAlgorithm > > QAFlatRepresentation
bool isStarted() const
Get the value of started.
QAlgorithm(QObject *parent=Q_NULLPTR)
Constructor.
virtual void run()=0
Core part of the algorithm, to be reimplemented in subclasses.
QAShrAlgorithm operator<<(QAShrAlgorithm descendant, QAShrAlgorithm ancestor)
Creates connections like setConnection().
bool isFinished() const
Get the value of finished.
static void improveTree(QAlgorithm *leaf)
Replace all removable connections, thus improving the tree performance.
static quint32 print_counter
QSharedPointer< QAlgorithm > QAShrAlgorithm
Abstract class that implements a generic algorithm.
void setFinished()
Set the algorithm as comleted and signals it.
static void setConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Connect two algorithms.
Q_SIGNAL void justFinished()
Signal emitted on algorithm's end.
QMap< QString, QVariant > QAPropertyMap
void printGraph(const QString &path=QString()) const
Create a GraphViz diagram of the algorithm tree.
QString printName() const
Returns name, memory address and class name of the algorithm.
bool allInputsReady() const
Checks if the algorithm is ready to run.
QMap< QAShrAlgorithm, bool > QACompletionMap
QACompletionMap getDescendants() const
Get the value of descendants.
QMultiMap< QString, QString > QAPropagationRules
void printTree(const QAFlatRepresentation &tree=QAFlatRepresentation()) const
Outputs a text representation of the algorithm tree.
void setStarted()
Set the algorithm as started and signals it.
QAShrAlgorithm findSharedThis() const
Find a shared pointer to this instance.
static bool isRemovableConnection(const QAShrAlgorithm p1, const QAShrAlgorithm p2)
Check if two algorithms are connected and the connection is removable.
QACompletionMap ancestors
Map with ancestors and their completion.
Q_SLOT void propagateExecution()
Execute descendants.