QAlgorithm
|
Abstract class that implements a generic algorithm. More...
#include <QAlgorithm.h>
Public Slots | |
Q_SLOT void | parallelExecution () |
Start computing the algorithm tree on different threads. More... | |
Q_SLOT void | serialExecution () |
Start computing the algorithm tree on the calling thread. More... | |
Q_SLOT void | abort (QString message="Unknown Error") const |
Emit the given error signal. More... | |
Q_SLOT void | propagateExecution () |
Execute descendants. More... | |
Signals | |
Q_SIGNAL void | justFinished () |
Signal emitted on algorithm's end. More... | |
Q_SIGNAL void | justStarted () |
Signal emitted on algorithm's start. More... | |
Q_SIGNAL void | raise (QString message) const |
Signal emitted whenever an error occurs. More... | |
Public Member Functions | |
void | setFinished () |
Set the algorithm as comleted and signals it. More... | |
void | setStarted () |
Set the algorithm as started and signals it. More... | |
QAlgorithm (QObject *parent=Q_NULLPTR) | |
Constructor. More... | |
virtual void | run ()=0 |
Core part of the algorithm, to be reimplemented in subclasses. More... | |
QACompletionMap | getAncestors () const |
Get the value of ancestors. More... | |
QACompletionMap | getDescendants () const |
Get the value of descendants. More... | |
bool | allInputsReady () const |
Checks if the algorithm is ready to run. More... | |
bool | isStarted () const |
Get the value of started. More... | |
bool | isFinished () const |
Get the value of finished. More... | |
virtual bool | getInput (QAShrAlgorithm parent) |
Load inputs from parent's outputs. More... | |
virtual void | setParameters (const QAPropertyMap ¶meters) |
Set parameters for the algorithm. More... | |
void | printGraph (const QString &path=QString()) const |
Create a GraphViz diagram of the algorithm tree. More... | |
QString | printName () const |
Returns name, memory address and class name of the algorithm. More... | |
QAFlatRepresentation | flattenTree (QAFlatRepresentation tree=QAFlatRepresentation()) const |
Creates a flat representation of the algorithm tree. More... | |
void | printTree (const QAFlatRepresentation &tree=QAFlatRepresentation()) const |
Outputs a text representation of the algorithm tree. More... | |
Static Public Member Functions | |
static void | setConnection (QAShrAlgorithm ancestor, QAShrAlgorithm descendant) |
Connect two algorithms. More... | |
static void | closeConnection (QAShrAlgorithm ancestor, QAShrAlgorithm descendant) |
Disconnect two algorithms. More... | |
static bool | checkConnection (const QAShrAlgorithm ancestor, const QAShrAlgorithm descendant) |
Check if two algorithms are connected. More... | |
static bool | isRemovableConnection (const QAShrAlgorithm p1, const QAShrAlgorithm p2) |
Check if two algorithms are connected and the connection is removable. More... | |
static void | improveTree (QAlgorithm *leaf) |
Replace all removable connections, thus improving the tree performance. More... | |
static std::pair< QString, QVariant > | makePropagationRules (std::initializer_list< std::pair< QString, QString >> lst) |
Convenience method for writing PropagationRules. More... | |
Protected Member Functions | |
virtual void | setup () |
Set of instructions to set up the algorithm. More... | |
virtual void | init () |
Set of instructions to initialize the algorithm. More... | |
QAShrAlgorithm | findAncestor (const QAlgorithm *ancestor) const |
Find an ancestor. More... | |
QAShrAlgorithm | findAncestor (const QAShrAlgorithm ancestor) const |
Find an ancestor. More... | |
QAShrAlgorithm | findDescendant (const QAlgorithm *descendant) const |
Find an descendant. More... | |
QAShrAlgorithm | findDescendant (const QAShrAlgorithm descendant) const |
Find an descendant. More... | |
QAShrAlgorithm | findSharedThis () const |
Find a shared pointer to this instance. More... | |
Properties | |
bool | finished = false |
Whether the algorithm finished to run and outputs are ready. More... | |
bool | started = false |
Whether the algorithm started to run. More... | |
QACompletionMap | ancestors |
Map with ancestors and their completion. More... | |
QACompletionMap | descendants |
Map with descendants and their completion. More... | |
static quint32 | print_counter = 1 |
QFuture< void > | result |
QFutureWatcher< void > | watcher |
Related Functions | |
(Note that these are not member functions.) | |
QAShrAlgorithm | operator>> (QAShrAlgorithm ancestor, QAShrAlgorithm descendant) |
Creates connections like setConnection(). More... | |
QAShrAlgorithm | operator<< (QAShrAlgorithm descendant, QAShrAlgorithm ancestor) |
Creates connections like setConnection(). More... | |
QDebug | operator<< (QDebug debug, const QAlgorithm &c) |
Send debugging information to a QDebug instance. More... | |
QDataStream & | operator<< (QDataStream &stream, const QAlgorithm &c) |
Store a QAlgorithm into a QDataStream. More... | |
QDataStream & | operator>> (QDataStream &stream, QAlgorithm &c) |
Loads a QAlgorithm from a QDataStream. More... | |
Abstract class that implements a generic algorithm.
This is an abstract class that contains the generic logic of an algorithm. You need to subclass it to use it and reimplement the run() function, that will contain the core of your algorithm.
Some macros like QA_INPUT(), QA_OUTPUT(), QA_PARAMETER() come in handy to define inputs, outputs and parameters of your algorithm.
Algorithms can be easily allocated using their create() static method, provided that the macro QA_IMPL_CREATE is put in your subclass definition.
If you have more algorithms that need to run in sequence, you can connect them using setConnection() and the friendly operators operator<<(QAShrAlgorithm descendant, QAShrAlgorithm ancestor) and operator>>(QAShrAlgorithm ancestor, QAShrAlgorithm descendant). Connections no more needed can be closed using closeConnection().
Generally you should use the methods serialExecution() (using the same thread) or parallelExecution() (using as many thread as possible) to run the whole algorithm tree. The connections you established between algorithms take care of passing outputs and parameters from parents to children; this is controlled by the so called PropagationRules. This is basically a map of strings to strings, where the name of parent's property is mapped to its children's destination property. The rules are as follows:
Every algorithm will have a boolean parameter called KeepInput. If this property is set to true the input is not freed until this instance is destroyed. Otherwise the input values are set to QVariant() as soon as the computation ends, and the connection with children is closed as soon as properties have been passed to them.
Every algorithm has also a ParallelExecution property (not to be confused with the method with the same name). This is a boolean value stating whether its children will be run in a different thread or in the same one. Forcing serial execution only for some connections can be useful if an algorithm's output is huge and can be processed immediately by its children.
An algorithm may also have multiple parents; in this case it is good for children algorithms to have a container to store all parents' outputs. This can be achieved declaring the children's inputs with the macros QA_INPUT_LIST() (for faster connections) or QA_INPUT_VEC() (for contiguous memory) instead of QA_INPUT().
Definition at line 96 of file QAlgorithm.h.
QAlgorithm::QAlgorithm | ( | QObject * | parent = Q_NULLPTR | ) |
Constructor.
Simply calls inherited classes' constructors and registers meta types used in the QAlgorithm class.
Definition at line 113 of file QAlgorithm.cpp.
|
slot |
Emit the given error signal.
Typical use case for this function is to propagate an error from connected algorithms. Indeed it is, by default, connected to their raise() signal.
Definition at line 303 of file QAlgorithm.cpp.
Referenced by closeConnection(), and setConnection().
bool QAlgorithm::allInputsReady | ( | ) | const |
Checks if the algorithm is ready to run.
This function scan the ancestors and returns whether they all have finished their computations.
Definition at line 46 of file QAlgorithm.cpp.
Referenced by parallelExecution(), and serialExecution().
|
static |
Check if two algorithms are connected.
This function simply checks if the given algorithms have previously been connected, for example using setConnection(), operator<<() or operator>>().
[in] | ancestor | Shared pointer to an algorithm, that you want to check whether it is parent to descendant. |
[in] | descendant | Shared pointer to an algorithm, that you want to check whether it is child to ancestor. |
Definition at line 446 of file QAlgorithm.cpp.
Referenced by isRemovableConnection().
|
static |
Disconnect two algorithms.
This function does the opposite of setConnection().
[in] | ancestor | Shared pointer to an algorithm, that you want to disconnect from its child descendant. |
[in] | descendant | Shared pointer to an algorithm, that you want to disconnect from its parent ancestor. |
Definition at line 438 of file QAlgorithm.cpp.
Referenced by propagateExecution().
|
protected |
Find an ancestor.
Scans the ancestors of this algorithm looking for the given ancestor. If nothing is found returns a null shared pointer.
[in] | ancestor | Pointer to the ancestor to be found. |
Definition at line 61 of file QAlgorithm.cpp.
Referenced by findAncestor().
|
protected |
Find an ancestor.
This is an overloaded method of findAncestor(QAlgorithm*).
[in] | ancestor | Shared pointer to the ancestor to be found. |
Definition at line 73 of file QAlgorithm.cpp.
|
protected |
Find an descendant.
Scans the descendants of this algorithm looking for the given descendant. If nothing is found returns a null shared pointer.
[in] | descendant | Pointer to the descendant to be found. |
Definition at line 78 of file QAlgorithm.cpp.
Referenced by findDescendant().
|
protected |
Find an descendant.
This is an overloaded method of findAncestor(QAlgorithm*).
[in] | descendant | Shared pointer to the descendant to be found. |
Definition at line 90 of file QAlgorithm.cpp.
|
protected |
Find a shared pointer to this instance.
Scans the descendants and ancestors of this algorithm looking for a shared pointer to this instance. The first pointer found is returned, if any, otherwise a null shared pointer is returned.
No shared pointer is created by this function.
Definition at line 95 of file QAlgorithm.cpp.
Referenced by flattenTree(), and propagateExecution().
QAFlatRepresentation QAlgorithm::flattenTree | ( | QAFlatRepresentation | tree = QAFlatRepresentation() | ) | const |
Creates a flat representation of the algorithm tree.
A flat representation of the algorithm is a map with:
flattenTree() method can be called with no arguments on any node of an algorithm tree to generate such representation.
When flattenTree() is called with a flat representation tree as argument, then it appends the new representation to the given one. This behaviour is internally used by the flattenTree() method and is probably of no use for the common user.
[in] | tree | Optional representation to include in the output. |
Definition at line 400 of file QAlgorithm.cpp.
Referenced by improveTree(), printGraph(), and printTree().
QACompletionMap QAlgorithm::getAncestors | ( | ) | const |
Get the value of ancestors.
Definition at line 51 of file QAlgorithm.cpp.
Referenced by allInputsReady(), findAncestor(), findSharedThis(), flattenTree(), parallelExecution(), propagateExecution(), and serialExecution().
QACompletionMap QAlgorithm::getDescendants | ( | ) | const |
Get the value of descendants.
Definition at line 56 of file QAlgorithm.cpp.
Referenced by findDescendant(), findSharedThis(), flattenTree(), and propagateExecution().
|
virtual |
Load inputs from parent's outputs.
This function assigns any parent's output or parameter properties to this instance's input or parameter properties sharing the same name. In case you want to connect a parent's property to a property with different name, you can use the PropagationRules. Taking parameters from parent is allowed only if the parent's parameter name is explicitly mentioned among the PropagationRules.
Definition at line 187 of file QAlgorithm.cpp.
|
static |
Replace all removable connections, thus improving the tree performance.
It actually force any pair of removably-connected algorithms to run in the same thread. If KeepInput is set to false for the parent, and properties are moved insted of copied to the child instance, the improvement is high, since there is almost no waste in memory and time. Indeed the parent instance will be deleted as soon as it becomes useless, and its properties are directly exploited by the child instance without deep copying them; furthermore time consumption is limited by running on the same thread.
[in] | leaf | Pointer to an algorithm belonging to the tree to improve. |
Definition at line 549 of file QAlgorithm.cpp.
|
inlineprotectedvirtual |
Set of instructions to initialize the algorithm.
Any subclass that needs to preallocate variables or configure anything should do that reimplementing this function.
Definition at line 234 of file QAlgorithm.h.
bool QAlgorithm::isFinished | ( | ) | const |
Get the value of finished.
Definition at line 24 of file QAlgorithm.cpp.
|
static |
Check if two algorithms are connected and the connection is removable.
This function checks if two algorithms are connected using checkConnection(); if so, it checks also if it is a removable connection, that is: a connection where the parent has only one child, and the child has only one parent. It is called removable because parent and child can be put together in a single algorithm, without changing the overall behavior.
[in] | ancestor | Shared pointer to an algorithm, that you want to check whether it is parent to descendant. |
[in] | descendant | Shared pointer to an algorithm, that you want to check whether it is child to ancestor. |
Definition at line 451 of file QAlgorithm.cpp.
Referenced by improveTree().
bool QAlgorithm::isStarted | ( | ) | const |
Get the value of started.
Definition at line 29 of file QAlgorithm.cpp.
|
signal |
Signal emitted on algorithm's end.
Referenced by setFinished(), and setup().
|
signal |
|
static |
Convenience method for writing PropagationRules.
[in] | lst | Something like {{"Out1","In1"},{"Out2","In2"}} |
Definition at line 386 of file QAlgorithm.cpp.
|
slot |
Start computing the algorithm tree on different threads.
This function makes the entire algorithm tree run on threads other than the one who calls it. No matter which level the function is called on, the whole algorithm tree will be computed.
Definition at line 262 of file QAlgorithm.cpp.
void QAlgorithm::printGraph | ( | const QString & | path = QString() | ) | const |
Create a GraphViz diagram of the algorithm tree.
Mostly useful for debugging purposes, this function the graphviz executable as an external process to generate the visual representation of the algorithm tree.
[in] | path | Path to the output file. |
Definition at line 308 of file QAlgorithm.cpp.
QString QAlgorithm::printName | ( | ) | const |
Returns name, memory address and class name of the algorithm.
This function is mostly useful for debugging purposes.
Definition at line 391 of file QAlgorithm.cpp.
Referenced by operator<<(), and operator>>().
void QAlgorithm::printTree | ( | const QAFlatRepresentation & | tree = QAFlatRepresentation() | ) | const |
Outputs a text representation of the algorithm tree.
Actually sends to the standard output the flat representation of the given tree, printed as such in a key-value structure.
[in] | tree | The tree to be visualized; if empty the function will use the output of flattenTree() called on this instance. |
Definition at line 531 of file QAlgorithm.cpp.
|
slot |
Execute descendants.
This functions changes values to ancestors and descendants, making connected algorithms know that this instance finished running. Then passes outputs and parameters to every descendant.
If KeepInput parameter is set to false, the inputs are invalidated and the connection with descendants is closed. This will deallocate this object as soon as it ends its computation and sends the results.
Finally, serialExecution() or parallelExecution() is called on each descendant according to the value of ParallelExecution.
Definition at line 153 of file QAlgorithm.cpp.
Referenced by setup().
|
signal |
Signal emitted whenever an error occurs.
This class emits the raise signal whenever an internal error occurs. This behaviour replaces the traditional exception throwing, allowing the user to easily handle errors in Qt event loop. Indeed each subclass should use the same convention, and every caller should handle and possibly retransmit the raise signal.
[in] | message | The error description. |
Referenced by closeConnection(), and setConnection().
|
pure virtual |
Core part of the algorithm, to be reimplemented in subclasses.
For more information see class QAlgorithm description.
Referenced by parallelExecution(), and serialExecution().
|
slot |
Start computing the algorithm tree on the calling thread.
This function makes the entire algorithm tree run on the same thread that calls it. No matter which level the function is called on, the whole algorithm tree will be computed.
Definition at line 283 of file QAlgorithm.cpp.
|
static |
Connect two algorithms.
Modifies the completion maps of both algorithms and reciprocally connect them through the raise() signal, for error propagation throughout the whole algorithm tree.
[in] | ancestor | Shared pointer to an algorithm, that you want to connect to its child descendant. |
[in] | descendant | Shared pointer to an algorithm, that you want to connect to its parent ancestor. |
Definition at line 430 of file QAlgorithm.cpp.
Referenced by operator>>().
void QAlgorithm::setFinished | ( | ) |
Set the algorithm as comleted and signals it.
This is actually the setter method for finished and emits justFinished().
It is not meant to be directly used in the code; it is called by serialExecution() and parallelExecution(), use these functions instead.
Definition at line 40 of file QAlgorithm.cpp.
Referenced by serialExecution(), and setup().
|
virtual |
Set parameters for the algorithm.
The given name-value parameter pairs are assigned to parameters or input properties.
[in] | parameters | Name-value parameter/input pairs. |
Definition at line 120 of file QAlgorithm.cpp.
void QAlgorithm::setStarted | ( | ) |
Set the algorithm as started and signals it.
This is actually the setter method for started and emits justStarted().
It is not meant to be directly used in the code; it is called by serialExecution() and parallelExecution(), use these functions instead.
Definition at line 34 of file QAlgorithm.cpp.
Referenced by parallelExecution(), and serialExecution().
|
protectedvirtual |
Set of instructions to set up the algorithm.
Any subclass that needs to preallocate variables or configure anything should do that reimplementing this function.
Definition at line 144 of file QAlgorithm.cpp.
|
related |
Creates connections like setConnection().
Definition at line 470 of file QAlgorithm.cpp.
|
related |
Send debugging information to a QDebug instance.
Definition at line 476 of file QAlgorithm.cpp.
|
related |
Store a QAlgorithm into a QDataStream.
This function is useful to quickly save an algorithm instance to file. It internally saves all the input and output properties, and all the parameters. The saved information can be retrieved by the converse operator>>(QDataStream&, QAlgorithm&).
The behaviour can be customized by subclasses.
Definition at line 594 of file QAlgorithm.cpp.
|
related |
Creates connections like setConnection().
Definition at line 464 of file QAlgorithm.cpp.
|
related |
Loads a QAlgorithm from a QDataStream.
This function is useful to quickly load an algorithm instance from file.
The behaviour can be customized by subclasses.
Definition at line 609 of file QAlgorithm.cpp.
|
read |
Map with ancestors and their completion.
Map that contains information about the ancestors of the algorithm; each key is a shared pointer to an ancestor of this algorithm, the values are booleans stating whether the algorithm is finished or not.
You can set ancestors through the functions mentioned in the see-also section.
Definition at line 107 of file QAlgorithm.h.
Referenced by getAncestors().
|
read |
Map with descendants and their completion.
Map that contains information about the descendants of the algorithm; see ancestors for a description of the mapped values.
You can set descendants through the functions mentioned in the see-also section.
Definition at line 108 of file QAlgorithm.h.
Referenced by getDescendants().
|
read |
Whether the algorithm finished to run and outputs are ready.
The signal justFinished() is emitted whenever this property changes its value and the algorithm reach completion.
Definition at line 105 of file QAlgorithm.h.
Referenced by isFinished(), and setFinished().
|
static |
Definition at line 195 of file QAlgorithm.h.
QFuture<void> QAlgorithm::result |
Definition at line 197 of file QAlgorithm.h.
Referenced by parallelExecution().
|
read |
Whether the algorithm started to run.
The signal justStarted() is emitted whenever this property changes its value and the algorithm reach completion.
Definition at line 106 of file QAlgorithm.h.
Referenced by isStarted(), and setStarted().
QFutureWatcher<void> QAlgorithm::watcher |
Definition at line 198 of file QAlgorithm.h.
Referenced by parallelExecution(), and setup().