QAlgorithm
 All Classes Files Functions Typedefs Properties Macros
QAlgorithm.cpp File Reference
#include "QAlgorithm.h"

Go to the source code of this file.

Function Documentation

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

Definition at line 470 of file QAlgorithm.cpp.

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

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

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

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

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