QAlgorithm
 All Classes Files Functions Typedefs Properties Macros
QAlgorithm Class Referenceabstract

Abstract class that implements a generic algorithm. More...

#include <QAlgorithm.h>

Inheritance diagram for QAlgorithm:

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 &parameters)
 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...
 

Detailed Description

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:

  • if no entry corresponds to parent's output property, then it is passed to a child only if it has an input property with the same name;
  • a parent's output property is passed to a child's input property with the name given by the PropagationRules;
  • a parent's parameter is passed to a child's input property or parameter only if there is an entry in the PropagationRules, otherwise parameters are not shared. The PropagationRules can be created using the static method makePropagationRules().

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.

Constructor & Destructor Documentation

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.

113  : QObject(parent), QRunnable()
114 {
115  qRegisterMetaType<QAPropertyMap>();
116  qRegisterMetaType<QAPropagationRules>();
117  qRegisterMetaType<QAShrAlgorithm>();
118 }

Member Function Documentation

void QAlgorithm::abort ( QString  message = "Unknown Error") const
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.

See Also
raise, setConnection

Definition at line 303 of file QAlgorithm.cpp.

Referenced by closeConnection(), and setConnection().

304 {
305  Q_EMIT raise(message);
306 }
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.

Returns
Whether every ancestor finished running.

Definition at line 46 of file QAlgorithm.cpp.

Referenced by parallelExecution(), and serialExecution().

47 {
48  return !getAncestors().values().contains(false);
49 }
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
bool QAlgorithm::checkConnection ( const QAShrAlgorithm  ancestor,
const QAShrAlgorithm  descendant 
)
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>>().

Parameters
[in]ancestorShared pointer to an algorithm, that you want to check whether it is parent to descendant.
[in]descendantShared pointer to an algorithm, that you want to check whether it is child to ancestor.
Returns
Whether ancestor is the parent of descendant.
See Also
setConnection, closeConnection

Definition at line 446 of file QAlgorithm.cpp.

Referenced by isRemovableConnection().

447 {
448  return ancestor->getDescendants().contains(descendant) && descendant->getAncestors().contains(ancestor);
449 }
void QAlgorithm::closeConnection ( QAShrAlgorithm  ancestor,
QAShrAlgorithm  descendant 
)
static

Disconnect two algorithms.

This function does the opposite of setConnection().

Parameters
[in]ancestorShared pointer to an algorithm, that you want to disconnect from its child descendant.
[in]descendantShared pointer to an algorithm, that you want to disconnect from its parent ancestor.
See Also
setConnection, checkConnection

Definition at line 438 of file QAlgorithm.cpp.

Referenced by propagateExecution().

439 {
440  ancestor->descendants.remove(descendant);
441  descendant->ancestors.remove(ancestor);
442  disconnect(ancestor.data(), &QAlgorithm::raise, descendant.data(), &QAlgorithm::abort);
443  disconnect(descendant.data(), &QAlgorithm::raise, ancestor.data(), &QAlgorithm::abort);
444 }
Q_SIGNAL void raise(QString message) const
Signal emitted whenever an error occurs.
Q_SLOT void abort(QString message="Unknown Error") const
Emit the given error signal.
Definition: QAlgorithm.cpp:303
QAShrAlgorithm QAlgorithm::findAncestor ( const QAlgorithm ancestor) const
protected

Find an ancestor.

Scans the ancestors of this algorithm looking for the given ancestor. If nothing is found returns a null shared pointer.

Parameters
[in]ancestorPointer to the ancestor to be found.
Returns
Shared pointer to the requested ancestor, if any, or a null shared pointer otherwise.
See Also
findAncestor(QAShrAlgorithm), findDescendant, findSharedThis

Definition at line 61 of file QAlgorithm.cpp.

Referenced by findAncestor().

62 {
63  foreach(auto& shr_ancestor, getAncestors().keys())
64  {
65  if (shr_ancestor == ancestor)
66  {
67  return shr_ancestor;
68  }
69  }
70  return QAShrAlgorithm();
71 }
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
QSharedPointer< QAlgorithm > QAShrAlgorithm
Definition: QAlgorithm.h:31
QAShrAlgorithm QAlgorithm::findAncestor ( const QAShrAlgorithm  ancestor) const
protected

Find an ancestor.

This is an overloaded method of findAncestor(QAlgorithm*).

Parameters
[in]ancestorShared pointer to the ancestor to be found.
Returns
Shared pointer to the requested ancestor, if any, or a null shared pointer otherwise.
See Also
findAncestor(QAlgorithm*), findDescendant, findSharedThis

Definition at line 73 of file QAlgorithm.cpp.

74 {
75  return findAncestor(ancestor.data());
76 }
QAShrAlgorithm findAncestor(const QAlgorithm *ancestor) const
Find an ancestor.
Definition: QAlgorithm.cpp:61
QAShrAlgorithm QAlgorithm::findDescendant ( const QAlgorithm descendant) const
protected

Find an descendant.

Scans the descendants of this algorithm looking for the given descendant. If nothing is found returns a null shared pointer.

Parameters
[in]descendantPointer to the descendant to be found.
Returns
Shared pointer to the requested descendant, if any, or a null shared pointer otherwise.
See Also
findAncestor, findDescendant(QAShrAlgorithm), findSharedThis

Definition at line 78 of file QAlgorithm.cpp.

Referenced by findDescendant().

79 {
80  foreach(auto& shr_descendant, getDescendants().keys())
81  {
82  if (shr_descendant == descendant)
83  {
84  return shr_descendant;
85  }
86  }
87  return QAShrAlgorithm();
88 }
QSharedPointer< QAlgorithm > QAShrAlgorithm
Definition: QAlgorithm.h:31
QACompletionMap getDescendants() const
Get the value of descendants.
Definition: QAlgorithm.cpp:56
QAShrAlgorithm QAlgorithm::findDescendant ( const QAShrAlgorithm  descendant) const
protected

Find an descendant.

This is an overloaded method of findAncestor(QAlgorithm*).

Parameters
[in]descendantShared pointer to the descendant to be found.
Returns
Shared pointer to the requested descendant, if any, or a null shared pointer otherwise.
See Also
findAncestor, findDescendant(QAlgorithm*), findSharedThis

Definition at line 90 of file QAlgorithm.cpp.

91 {
92  return findDescendant(descendant.data());
93 }
QAShrAlgorithm findDescendant(const QAlgorithm *descendant) const
Find an descendant.
Definition: QAlgorithm.cpp:78
QAShrAlgorithm QAlgorithm::findSharedThis ( ) const
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.

Returns
Shared pointer to this instance, if any, or a null shared pointer otherwise.
See Also
findAncestor, findDescendant

Definition at line 95 of file QAlgorithm.cpp.

Referenced by flattenTree(), and propagateExecution().

96 {
97  // Check among the descendants
98  foreach(auto descendant, getDescendants().keys())
99  {
100  auto shr_this = descendant->findAncestor(this);
101  if(!shr_this.isNull()) return shr_this;
102  }
103  // Otherwise check among the ancestors
104  foreach(auto ancestor, getAncestors().keys())
105  {
106  auto shr_this = ancestor->findDescendant(this);
107  if(!shr_this.isNull()) return shr_this;
108  }
109  // If nothing was found return null shared pointer
110  return QAShrAlgorithm();
111 }
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
QSharedPointer< QAlgorithm > QAShrAlgorithm
Definition: QAlgorithm.h:31
QACompletionMap getDescendants() const
Get the value of descendants.
Definition: QAlgorithm.cpp:56
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:

  • key, an algorithm shared pointer (father)
  • values, the set of shared pointer algorithms that are direct children of key

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.

Parameters
[in]treeOptional representation to include in the output.
Returns
The flat representation of the algorithm tree structure.
See Also
printTree, printGraph, improveTree

Definition at line 400 of file QAlgorithm.cpp.

Referenced by improveTree(), printGraph(), and printTree().

401 {
402  // Search for a shared pointer attached to this instance
403  auto keysList = tree.keys();
404  // Check if the function has already been applied to this
405  auto shr_this_it = std::find_if(keysList.begin(), keysList.end(), [this](auto& ptr)
406  {return ptr == this;}
407  );
408  if (shr_this_it == keysList.end())
409  {
410  // Otherwise link each descendant to this in the map
411  auto shr_this = findSharedThis();
412  if(shr_this.isNull()) qWarning() << "This instance has no properly set connection, flattenTree will not work";
413  else
414  {
415  // Insert shr_this as new key in the map
416  tree[shr_this] = QSet<QAShrAlgorithm>();
417  // Append each descendant to it
418  for (auto descendant: getDescendants().keys()) tree[shr_this] << descendant;
419  // Recursive step: apply the function to each relative not yet scanned
420  for (auto relative: getDescendants().keys()+getAncestors().keys())
421  {
422  if (!tree.contains(relative)) tree = relative->flattenTree(tree);
423  }
424  }
425  }
426  else qWarning() << "flattenTree: possible loop";
427  return tree;
428 }
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
QACompletionMap getDescendants() const
Get the value of descendants.
Definition: QAlgorithm.cpp:56
QAShrAlgorithm findSharedThis() const
Find a shared pointer to this instance.
Definition: QAlgorithm.cpp:95
QACompletionMap QAlgorithm::getAncestors ( ) const

Get the value of ancestors.

Returns
The value of this algorithm's ancestors.
See Also
ancestors, descendants

Definition at line 51 of file QAlgorithm.cpp.

Referenced by allInputsReady(), findAncestor(), findSharedThis(), flattenTree(), parallelExecution(), propagateExecution(), and serialExecution().

52 {
53  return ancestors;
54 }
QACompletionMap ancestors
Map with ancestors and their completion.
Definition: QAlgorithm.h:107
QACompletionMap QAlgorithm::getDescendants ( ) const

Get the value of descendants.

Returns
The value of this algorithm's descendants.
See Also
ancestors, descendants

Definition at line 56 of file QAlgorithm.cpp.

Referenced by findDescendant(), findSharedThis(), flattenTree(), and propagateExecution().

57 {
58  return descendants;
59 }
QACompletionMap descendants
Map with descendants and their completion.
Definition: QAlgorithm.h:108
bool QAlgorithm::getInput ( QAShrAlgorithm  parent)
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.

Returns
Whether inputs have been loaded successfully.
See Also
makePropagationRules

Definition at line 187 of file QAlgorithm.cpp.

188 {
189  // Create an alias to this for better readability
190  auto child = this;
191  // Scan parent's properties and grab all the possible outputs and parameters
192  for(int k = 0; k < parent->metaObject()->propertyCount(); ++k)
193  {
194  QString parentPropName = parent->metaObject()->property(k).name();
195  // Get the parent's property base name
196  // Both output and parameter properties are checked
197  QString parentPropBaseName;
198  if(parentPropName.startsWith(QA_OUT))
199  {
200  // Output property
201  parentPropBaseName = parentPropName.mid(strlen(QA_OUT));
202  }
203  else if(parentPropName.startsWith(QA_PAR))
204  {
205  // Parameter
206  parentPropBaseName = parentPropName.mid(strlen(QA_PAR));
207  }
208  else continue;
209  // Get the child's property base name, based on PropagationRules values
210  QString childPropBaseName;
211  if(!getPropagationRules().contains(parentPropBaseName))
212  {
213  childPropBaseName = parentPropBaseName;
214  }
215  else
216  {
217  // The values associated with the given key
218  auto values = getPropagationRules().values(parentPropBaseName);
219  if(values.size() > 1)
220  {
221  // If there are more than one value, then use the first one that contain the parent object name
222  childPropBaseName = values.filter(parent->objectName()).first();
223  }
224  else
225  {
226  childPropBaseName = values.first();
227  }
228  }
229  // Parameters are sent only if they are explicitly mentioned in the PropagationRules
230  if(parentPropName.startsWith(QA_PAR) && !getPropagationRules().contains(parentPropBaseName))
231  {
232  continue;
233  }
234  // Check if the property is in child's input or parameter properties
235  for(int i = 0; i < child->metaObject()->propertyCount(); ++i)
236  {
237  QString childPropName = child->metaObject()->property(i).name();
238  // If the current property corresponds to an input with the same base name as before,
239  // then assign it; the same will be done also for parameters.
240  if(childPropName == QA_IN+childPropBaseName || childPropName == QA_PAR+childPropBaseName)
241  {
242  QVariant parentProp = parent->property(parentPropName.toStdString().c_str());
243  if(parentProp.isValid())
244  {
245  if(!child->setProperty(childPropName.toStdString().c_str(), parentProp))
246  {
247  qWarning() << "getInput():" << childPropName << "failed to set for" << child->printName();
248  return false;
249  }
250  }
251  else
252  {
253  qWarning() << "getInput():" << parentPropName << "failed to read for" << parent->printName();
254  return false;
255  }
256  }
257  }
258  }
259  return true;
260 }
#define QA_OUT
Prefix for output properties.
Definition: qa_macros.h:34
#define QA_PAR
Prefix for parameters.
Definition: qa_macros.h:39
#define QA_IN
Prefix for input properties.
Definition: qa_macros.h:29
void QAlgorithm::improveTree ( QAlgorithm leaf)
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.

Note
This function is still experimental, since it's not been much tested.
Parameters
[in]leafPointer to an algorithm belonging to the tree to improve.
See Also
isRemovableConnection

Definition at line 549 of file QAlgorithm.cpp.

550 {
551  auto flatMap = leaf->flattenTree();
552  QMap<QAShrAlgorithm, QList<QAShrAlgorithm>> replacements;
553  foreach (auto ptr, flatMap.uniqueKeys())
554  {
555  foreach(auto child, flatMap[ptr])
556  {
557  if (QAlgorithm::isRemovableConnection(ptr, child))
558  {
559  // Insert a new replacement (assuming uniqueness of flat map keys)
560  replacements[ptr] << child;
561  }
562  }
563  }
564  // From the set of removable connection, link the pairs that form a removable connection all together
565  bool some_changes = true;
566  while(some_changes)
567  {
568  some_changes = false;
569  foreach(auto p1, replacements.keys())
570  {
571  // Take the last element in the list of removable connections
572  auto p2 = replacements[p1].last();
573  // If it has its own removable connections, add them to p1's
574  if (replacements.contains(p2))
575  {
576  replacements[p1] += replacements.take(p2);
577  some_changes = true;
578  break; // recompute keys after any change
579  }
580  }
581  }
582  // Create the envelopes for each replacement
583  foreach(QList<QAShrAlgorithm> nodes, replacements.values())
584  {
585  // Tell each node, except the last, to serially execute its children
586  nodes.removeLast();
587  foreach(auto node, nodes)
588  {
589  node->setParallelExecution(false);
590  }
591  }
592 }
QAFlatRepresentation flattenTree(QAFlatRepresentation tree=QAFlatRepresentation()) const
Creates a flat representation of the algorithm tree.
Definition: QAlgorithm.cpp:400
static bool isRemovableConnection(const QAShrAlgorithm p1, const QAShrAlgorithm p2)
Check if two algorithms are connected and the connection is removable.
Definition: QAlgorithm.cpp:451
virtual void QAlgorithm::init ( )
inlineprotectedvirtual

Set of instructions to initialize the algorithm.

Any subclass that needs to preallocate variables or configure anything should do that reimplementing this function.

Note
This is automatically called by the create() function, after setting any parameter; if you want to manually allocate a subclass instance, you should call this function by yourself.
If you need to set things up before the algorithm parameters has been given, you can reimplement the function setup().
See Also
setup, setParameters, QA_IMPL_CREATE

Definition at line 234 of file QAlgorithm.h.

234 {};
bool QAlgorithm::isFinished ( ) const

Get the value of finished.

Returns
Whether the algorithm finished running.
See Also
started, finished, isStarted

Definition at line 24 of file QAlgorithm.cpp.

25 {
26  return finished;
27 }
bool finished
Whether the algorithm finished to run and outputs are ready.
Definition: QAlgorithm.h:105
bool QAlgorithm::isRemovableConnection ( const QAShrAlgorithm  p1,
const QAShrAlgorithm  p2 
)
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.

Parameters
[in]ancestorShared pointer to an algorithm, that you want to check whether it is parent to descendant.
[in]descendantShared pointer to an algorithm, that you want to check whether it is child to ancestor.
Returns
Whether there is a removable connection between ancestor and descendant.
See Also
improveTree

Definition at line 451 of file QAlgorithm.cpp.

Referenced by improveTree().

452 {
453  if (QAlgorithm::checkConnection(p2, p1))
454  {
455  return (p2->getDescendants().count() == 1) && (p1->getAncestors().count() == 1);
456  }
457  else if (QAlgorithm::checkConnection(p1, p2))
458  {
459  return (p1->getDescendants().count() == 1) && (p2->getAncestors().count() == 1);
460  }
461  else return false;
462 }
static bool checkConnection(const QAShrAlgorithm ancestor, const QAShrAlgorithm descendant)
Check if two algorithms are connected.
Definition: QAlgorithm.cpp:446
bool QAlgorithm::isStarted ( ) const

Get the value of started.

Returns
Whether the algorithm started running.
See Also
started, finished, isFinished

Definition at line 29 of file QAlgorithm.cpp.

30 {
31  return started;
32 }
bool started
Whether the algorithm started to run.
Definition: QAlgorithm.h:106
Q_SIGNAL void QAlgorithm::justFinished ( )
signal

Signal emitted on algorithm's end.

Note
By default this signal is connected to the slot propagateExecution(), to make descendants run as this algorithm ends.
See Also
propagateExecution, finished

Referenced by setFinished(), and setup().

Q_SIGNAL void QAlgorithm::justStarted ( )
signal

Signal emitted on algorithm's start.

See Also
started

Referenced by setStarted().

std::pair< QString, QVariant > QAlgorithm::makePropagationRules ( std::initializer_list< std::pair< QString, QString >>  lst)
static

Convenience method for writing PropagationRules.

Parameters
[in]lstSomething like {{"Out1","In1"},{"Out2","In2"}}
Returns
A pair that can be used to construct a QAPropertyMap from an initializer list.

Definition at line 386 of file QAlgorithm.cpp.

387 {
388  return std::pair<QString, QVariant>({"PropagationRules", QVariant::fromValue(QAPropagationRules(pairs))});
389 }
QMultiMap< QString, QString > QAPropagationRules
Definition: QAlgorithm.h:35
void QAlgorithm::parallelExecution ( )
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.

Note
The calling function will NOT freeze waiting for completion.
See Also
serialExecution()

Definition at line 262 of file QAlgorithm.cpp.

263 {
264  // Check if every ancestor has finished
265  if(allInputsReady())
266  {
267  // Perform the core part of the algorithm is a separate thread
268  setStarted();
269  result = QtConcurrent::run(this, &QAlgorithm::run);
270  watcher.setFuture(result);
271  }
272  else
273  {
274  // Run those not started
275  for(const auto& ancestor: getAncestors().keys(false))
276  {
277  // Only start processes not already started
278  if(!ancestor->isStarted()) ancestor->parallelExecution();
279  }
280  }
281 }
QFuture< void > result
Definition: QAlgorithm.h:197
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
QFutureWatcher< void > watcher
Definition: QAlgorithm.h:198
virtual void run()=0
Core part of the algorithm, to be reimplemented in subclasses.
bool allInputsReady() const
Checks if the algorithm is ready to run.
Definition: QAlgorithm.cpp:46
void setStarted()
Set the algorithm as started and signals it.
Definition: QAlgorithm.cpp:34
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.

Note
This feature is still experimental. It has not been tested and lacks generality.
Parameters
[in]pathPath to the output file.

Definition at line 308 of file QAlgorithm.cpp.

309 {
310  QFile dotFile;
311  QString outFileName;
312  if (path.isEmpty())
313  {
314  dotFile.setFileName(QDir::home().absoluteFilePath("QAlgorithmTree.gv"));
315  outFileName = QDir::home().absoluteFilePath("QAlgorithmTree.svg");
316  }
317  else
318  {
319  dotFile.setFileName(path);
320  QStringList svgpath = path.split(".");
321  svgpath.removeLast();
322  outFileName = svgpath.join(".")+".svg";
323  }
324  if (!dotFile.open(QFile::WriteOnly)) Q_EMIT raise("Cannot write graph to given file");
325  else
326  {
327  QTextStream dot(&dotFile);
328  QLocale nospace;
329  nospace.setNumberOptions(QLocale::NumberOption::OmitGroupSeparator);
330  dot << "digraph g{\n";
331  auto flatMap = flattenTree();
332  // Save node labels
333  foreach(auto alg, flatMap.keys())
334  {
335  QString id = nospace.toString(quint64(alg.data()));
336  QString idspace = QLocale().toString(quint64(alg.data()));
337  QString name = alg->metaObject()->className();
338  QString nickname = alg->objectName();
339  QString dotstring = "var"+id.replace(" ", "")+"[label=\""+name+"\\nID "+idspace;
340  if(!nickname.isEmpty()) dotstring += "\\nNick: "+nickname;
341  dotstring += "\"];\n";
342  dot << dotstring;
343  }
344  // Save connections between nodes
345  foreach(auto parent, flatMap.keys())
346  {
347  QString parentName = "var" + nospace.toString(quint64(parent.data()));
348  foreach(auto child, flatMap[parent])
349  {
350  QString childName = "var" + nospace.toString(quint64(child.data()));
351  dot << parentName << " -> " << childName << "\n";
352  }
353  }
354  dot << "}\n";
355  dotFile.close();
356  // Convert dot file to svg
357  QStringList cmdArgs =
358  {dotFile.fileName(), "-Tsvg", "-o", outFileName}
359  ;
360  int r = QProcess::execute("/usr/local/bin/circo", cmdArgs);
361  if (r == -1)
362  {
363  qWarning("%s", "The dot process crashed");
364  }
365  else if (r == -2)
366  {
367  qWarning("%s", "Cannot start the dot process");
368  }
369  else
370  {
371  r = QProcess::execute("/bin/rm",
372  {dotFile.fileName()}
373  );
374  if (r == -1)
375  {
376  qWarning("%s", "The rm process crashed");
377  }
378  else if (r == -2)
379  {
380  qWarning("%s", "Cannot start the rm process");
381  }
382  }
383  }
384 }
QAFlatRepresentation flattenTree(QAFlatRepresentation tree=QAFlatRepresentation()) const
Creates a flat representation of the algorithm tree.
Definition: QAlgorithm.cpp:400
QString QAlgorithm::printName ( ) const

Returns name, memory address and class name of the algorithm.

This function is mostly useful for debugging purposes.

Returns
A string composed by memory address, class name and object name of the algotithm.

Definition at line 391 of file QAlgorithm.cpp.

Referenced by operator<<(), and operator>>().

392 {
393  QString msg;
394  msg += QString(metaObject()->className()) + " ";
395  msg += QLocale().toString(qlonglong(this)) + " ";
396  if (!objectName().isEmpty()) msg += objectName();
397  return msg;
398 }
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.

Parameters
[in]treeThe tree to be visualized; if empty the function will use the output of flattenTree() called on this instance.
See Also
flattenTree

Definition at line 531 of file QAlgorithm.cpp.

532 {
533  auto _printTree = [](decltype(tree) map)
534  {
535  foreach(auto key, map.keys())
536  {
537  qInfo() << "key" << key->printName();
538  foreach(auto value, map[key])
539  {
540  qInfo() << "\tvalue" << value->printName();
541  }
542  }
543  }
544  ;
545  if (tree.isEmpty()) _printTree(flattenTree());
546  else _printTree(tree);
547 }
QAFlatRepresentation flattenTree(QAFlatRepresentation tree=QAFlatRepresentation()) const
Creates a flat representation of the algorithm tree.
Definition: QAlgorithm.cpp:400
void QAlgorithm::propagateExecution ( )
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.

Note
Generally there is no need for the users to directly call this function. It is by default connected to the justFinished() signal.
See Also
serialExecution, parallelExecution

Definition at line 153 of file QAlgorithm.cpp.

Referenced by setup().

154 {
155  auto shr_this = findSharedThis();
156  if(!shr_this.isNull())
157  {
158  // Notify ancestors
159  foreach(auto ancestor, getAncestors().keys()) ancestor->descendants[shr_this] = true;
160  // Notify descendants, transfer output to and execute them
161  foreach(auto descendant, getDescendants().keys())
162  {
163  descendant->ancestors[shr_this] = true;
164  descendant->getInput(shr_this);
165  if(!descendant->getKeepInput())
166  {
167  QAlgorithm::closeConnection(shr_this, descendant);
168  // Set each input property to null
169  // useful if input has been received with implicit sharing
170  for(int k = 0; k < metaObject()->propertyCount(); ++k)
171  {
172  if(QString(metaObject()->property(k).name()).startsWith(QA_IN))
173  {
174  setProperty(metaObject()->property(k).name(), QVariant());
175  }
176  }
177  }
178  if(!descendant->isStarted())
179  {
180  if (getParallelExecution()) descendant->parallelExecution();
181  else descendant->serialExecution();
182  }
183  }
184  }
185 }
static void closeConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Disconnect two algorithms.
Definition: QAlgorithm.cpp:438
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
#define QA_IN
Prefix for input properties.
Definition: qa_macros.h:29
QACompletionMap getDescendants() const
Get the value of descendants.
Definition: QAlgorithm.cpp:56
QAShrAlgorithm findSharedThis() const
Find a shared pointer to this instance.
Definition: QAlgorithm.cpp:95
Q_SIGNAL void QAlgorithm::raise ( QString  message) const
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.

Parameters
[in]messageThe error description.

Referenced by closeConnection(), and setConnection().

virtual void QAlgorithm::run ( )
pure virtual

Core part of the algorithm, to be reimplemented in subclasses.

For more information see class QAlgorithm description.

Referenced by parallelExecution(), and serialExecution().

void QAlgorithm::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.

Note
The calling function will freeze waiting for completion.
See Also
parallelExecution()

Definition at line 283 of file QAlgorithm.cpp.

284 {
285  // Check if every ancestor has finished
286  if(!allInputsReady())
287  {
288  // Run those not started
289  for(const auto& ancestor: getAncestors().keys(false))
290  {
291  // Only start processes not already started
292  if(!ancestor->isStarted()) ancestor->serialExecution();
293  }
294  }
295  // Set the ParallelExecution policy to false
296  setParallelExecution(false);
297  // Perform the core part of the algorithm in the same thread
298  setStarted();
299  run();
300  setFinished();
301 }
QACompletionMap getAncestors() const
Get the value of ancestors.
Definition: QAlgorithm.cpp:51
virtual void run()=0
Core part of the algorithm, to be reimplemented in subclasses.
void setFinished()
Set the algorithm as comleted and signals it.
Definition: QAlgorithm.cpp:40
bool allInputsReady() const
Checks if the algorithm is ready to run.
Definition: QAlgorithm.cpp:46
void setStarted()
Set the algorithm as started and signals it.
Definition: QAlgorithm.cpp:34
void QAlgorithm::setConnection ( QAShrAlgorithm  ancestor,
QAShrAlgorithm  descendant 
)
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.

Parameters
[in]ancestorShared pointer to an algorithm, that you want to connect to its child descendant.
[in]descendantShared pointer to an algorithm, that you want to connect to its parent ancestor.
See Also
closeConnection, checkConnection

Definition at line 430 of file QAlgorithm.cpp.

Referenced by operator>>().

431 {
432  ancestor->descendants[descendant] = descendant->isFinished();
433  descendant->ancestors[ancestor] = ancestor->isFinished();
434  connect(ancestor.data(), &QAlgorithm::raise, descendant.data(), &QAlgorithm::abort, Qt::QueuedConnection);
435  connect(descendant.data(), &QAlgorithm::raise, ancestor.data(), &QAlgorithm::abort, Qt::QueuedConnection);
436 }
Q_SIGNAL void raise(QString message) const
Signal emitted whenever an error occurs.
Q_SLOT void abort(QString message="Unknown Error") const
Emit the given error signal.
Definition: QAlgorithm.cpp:303
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.

See Also
finished, isFinished, started

Definition at line 40 of file QAlgorithm.cpp.

Referenced by serialExecution(), and setup().

41 {
42  finished = true;
43  Q_EMIT justFinished();
44 }
bool finished
Whether the algorithm finished to run and outputs are ready.
Definition: QAlgorithm.h:105
Q_SIGNAL void justFinished()
Signal emitted on algorithm's end.
void QAlgorithm::setParameters ( const QAPropertyMap parameters)
virtual

Set parameters for the algorithm.

The given name-value parameter pairs are assigned to parameters or input properties.

Note
This is automatically called by the create() function, after calling setup() but before init(); if you want to manually allocate a subclass instance, you should call this function by yourself.
Parameters
[in]parametersName-value parameter/input pairs.
See Also
setup, init, QA_IMPL_CREATE

Definition at line 120 of file QAlgorithm.cpp.

121 {
122  // Scan the object properties
123  for(const QString& PropName: parameters.keys())
124  {
125  bool set = false;
126  for(int k = 0; k < metaObject()->propertyCount(); ++k)
127  {
128  if(metaObject()->property(k).name() == QA_PAR + PropName ||
129  metaObject()->property(k).name() == QA_IN + PropName)
130  {
131  // This property is a parameter or an input
132  // Write the desired value in the property
133  if (!setProperty(metaObject()->property(k).name(), parameters.value(PropName)))
134  {
135  qWarning() << "Cannot set parameter/input" << PropName;
136  }
137  set = true;
138  }
139  }
140  if(!set) qWarning() << "Trying to set" << PropName << "but it is not among object's properties";
141  }
142 }
#define QA_PAR
Prefix for parameters.
Definition: qa_macros.h:39
#define QA_IN
Prefix for input properties.
Definition: qa_macros.h:29
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.

See Also
started, isStarted, finished

Definition at line 34 of file QAlgorithm.cpp.

Referenced by parallelExecution(), and serialExecution().

35 {
36  started = true;
37  Q_EMIT justStarted();
38 }
Q_SIGNAL void justStarted()
Signal emitted on algorithm's start.
bool started
Whether the algorithm started to run.
Definition: QAlgorithm.h:106
void QAlgorithm::setup ( )
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.

Note
This is automatically called by the create() function, before setting any parameter; if you want to manually allocate a subclass instance, you should call this function by yourself.
If you need to set things up after the algorithm parameters has been given, you can reimplement the function init().
See Also
init, setParameters, QA_IMPL_CREATE

Definition at line 144 of file QAlgorithm.cpp.

145 {
146  // Prevent the QThreadPool to delete a parent instance
147  setAutoDelete(false);
148  // Make internal connections
149  connect(this, &QAlgorithm::justFinished, this, &QAlgorithm::propagateExecution, Qt::AutoConnection);
150  connect(&watcher, &QFutureWatcher<void>::finished, this, &QAlgorithm::setFinished, Qt::AutoConnection);
151 }
QFutureWatcher< void > watcher
Definition: QAlgorithm.h:198
void setFinished()
Set the algorithm as comleted and signals it.
Definition: QAlgorithm.cpp:40
Q_SIGNAL void justFinished()
Signal emitted on algorithm's end.
Q_SLOT void propagateExecution()
Execute descendants.
Definition: QAlgorithm.cpp:153

Friends And Related Function Documentation

QAShrAlgorithm operator<< ( QAShrAlgorithm  descendant,
QAShrAlgorithm  ancestor 
)
related

Creates connections like setConnection().

Definition at line 470 of file QAlgorithm.cpp.

471 {
472  ancestor >> descendant;
473  return ancestor;
474 }
QDebug operator<< ( QDebug  debug,
const QAlgorithm c 
)
related

Send debugging information to a QDebug instance.

Definition at line 476 of file QAlgorithm.cpp.

477 {
478  QDebugStateSaver saver(debug);
479  const QMetaObject* obj = c.metaObject();
480 
481  // Write the algorithm class name
482  debug << endl << "------------------------------" << c.printName() << "subclass of QAlgorithm" << endl;
483 
484  // Write the input properties of the algorithm
485  debug << "Algorithm with input:" << endl;
486  for(int k = 0; k < obj->propertyCount(); k++)
487  {
488  QMetaProperty prop = obj->property(k);
489  // Check whether the current property's name starts with "algin_"
490  QString propName = prop.name();
491  if(propName.startsWith(QA_IN))
492  {
493  propName.remove(QA_IN);
494  debug << propName.rightJustified(30,' ',true) << "\t" << prop.read(&c) << endl;
495  }
496  }
497 
498  // Write the parameters of the algorithm
499  debug << "Algorithm with parameters:" << endl;
500  for(int k = 0; k < obj->propertyCount(); k++)
501  {
502  QMetaProperty prop = obj->property(k);
503  // Check whether the current property's name starts with "algin_"
504  QString propName = prop.name();
505  if(propName.startsWith(QA_PAR))
506  {
507  propName.remove(QA_PAR);
508  debug << propName.rightJustified(30,' ',true) << "\t" << prop.read(&c) << endl;
509  }
510  }
511 
512  // Write the output properties of the algorithm
513  debug << "Algorithm with output:" << endl;
514  for(int k = 0; k < obj->propertyCount(); k++)
515  {
516  QMetaProperty prop = obj->property(k);
517  // Check whether the current property's name starts with "algout_"
518  QString propName = prop.name();
519  if(propName.startsWith(QA_OUT))
520  {
521  propName = propName.remove(QA_OUT);
522  debug << propName.rightJustified(30,' ',true) << "\t" << prop.read(&c) << endl;
523  }
524  }
525 
526  debug << "------------------------------" << endl;
527 
528  return debug;
529 }
#define QA_OUT
Prefix for output properties.
Definition: qa_macros.h:34
#define QA_PAR
Prefix for parameters.
Definition: qa_macros.h:39
#define QA_IN
Prefix for input properties.
Definition: qa_macros.h:29
QString printName() const
Returns name, memory address and class name of the algorithm.
Definition: QAlgorithm.cpp:391
QDataStream & operator<< ( QDataStream &  stream,
const QAlgorithm c 
)
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.

See Also
operator>>(QDataStream&, QAlgorithm&)

Definition at line 594 of file QAlgorithm.cpp.

595 {
596  QAPropertyMap properties;
597  for(int k = 0; k < c.metaObject()->propertyCount(); k++)
598  {
599  QMetaProperty prop = c.metaObject()->property(k);
600  QString propName = prop.name();
601  QVariant propValue = prop.read(&c);
602  if(propValue.isValid() &&
603  (propName.startsWith(QA_IN) || propName.startsWith(QA_OUT) || propName.startsWith(QA_PAR)))
604  properties.insert(propName, propValue);
605  }
606  return (stream << properties);
607 }
#define QA_OUT
Prefix for output properties.
Definition: qa_macros.h:34
#define QA_PAR
Prefix for parameters.
Definition: qa_macros.h:39
QMap< QString, QVariant > QAPropertyMap
Definition: QAlgorithm.h:34
#define QA_IN
Prefix for input properties.
Definition: qa_macros.h:29
QAShrAlgorithm operator>> ( QAShrAlgorithm  ancestor,
QAShrAlgorithm  descendant 
)
related

Creates connections like setConnection().

Definition at line 464 of file QAlgorithm.cpp.

465 {
466  QAlgorithm::setConnection(ancestor, descendant);
467  return descendant;
468 }
static void setConnection(QAShrAlgorithm ancestor, QAShrAlgorithm descendant)
Connect two algorithms.
Definition: QAlgorithm.cpp:430
QDataStream & operator>> ( QDataStream &  stream,
QAlgorithm c 
)
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.

See Also
operator<<(QDataStream&, const QAlgorithm&)

Definition at line 609 of file QAlgorithm.cpp.

610 {
611  QAPropertyMap properties;
612  stream >> properties;
613  for(int k = 0; k < c.metaObject()->propertyCount(); k++)
614  {
615  QMetaProperty prop = c.metaObject()->property(k);
616  QString propName = prop.name();
617  if(properties.contains(propName))
618  {
619  if (!prop.write(&c, properties.values(propName)))
620  {
621  qWarning() << c.printName() << "Unable to write property value, report to the QAlgorithm developer";
622  }
623  }
624  }
625  return stream;
626 }
QMap< QString, QVariant > QAPropertyMap
Definition: QAlgorithm.h:34
QString printName() const
Returns name, memory address and class name of the algorithm.
Definition: QAlgorithm.cpp:391

Property Documentation

QACompletionMap QAlgorithm::ancestors
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.

Note
This is a read-only property. You can have access to this property value through the const getter getAncestors().

You can set ancestors through the functions mentioned in the see-also section.

See Also
setConnection, closeConnection, operator<<, operator>>

Definition at line 107 of file QAlgorithm.h.

Referenced by getAncestors().

QACompletionMap QAlgorithm::descendants
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.

Note
This is a read-only property. You can have access to this property value through the const getter getDescendants().

You can set descendants through the functions mentioned in the see-also section.

See Also
setConnection, closeConnection, operator<<, operator>>

Definition at line 108 of file QAlgorithm.h.

Referenced by getDescendants().

bool QAlgorithm::finished = false
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.

Note
This is a read-only property. You can have access to this property value through the const getter isFinished().
See Also
setFinished, isFinished, started

Definition at line 105 of file QAlgorithm.h.

Referenced by isFinished(), and setFinished().

quint32 QAlgorithm::print_counter = 1
static

Definition at line 195 of file QAlgorithm.h.

QFuture<void> QAlgorithm::result

Definition at line 197 of file QAlgorithm.h.

Referenced by parallelExecution().

bool QAlgorithm::started = false
read

Whether the algorithm started to run.

The signal justStarted() is emitted whenever this property changes its value and the algorithm reach completion.

Note
This is a read-only property. You can have access to this property value through the const getter isStarted().
See Also
setStarted, isStarted, finished

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().


The documentation for this class was generated from the following files: