]> AND Private Git Repository - blast.git/blobdiff - AbstractBlock.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
added generator-cst
[blast.git] / AbstractBlock.h
index c8aa0235dd989cb85708eedaad66bbf5a5b9fd70..88e4cb91076e0323eeb141263282e629206f5bad 100644 (file)
@@ -5,6 +5,7 @@
 \r
 #include <QtCore>\r
 \r
+#include "AbstractInterface.h"\r
 class AbstractInterface;\r
 class BlockParameter;\r
 \r
@@ -43,6 +44,7 @@ public:
   virtual void setParent(AbstractBlock* _parent);\r
   inline void setProductionCounter(QList<int> pattern) { productionCounter = pattern; }\r
   inline void setDelta(int _delta) { delta = _delta; }\r
+  inline void setPatternComputed(bool state) { patternComputed = state; }\r
 \r
   // testers\r
   virtual bool isReferenceBlock();\r
@@ -62,15 +64,16 @@ public:
   void removeAllInterfaces();\r
   void defineBlockParam(BlockParameter *param);\r
 \r
-  QList<AbstractInterface *> getInterfaces(); //! return all interfaces\r
+  QList<AbstractInterface *> getInterfaces(int direction = AbstractInterface::AnyDirection, int purpose = AbstractInterface::AnyPurpose);\r
   QList<AbstractInterface *> getDataInputs(); //! return all inputs of type data\r
+  QList<AbstractInterface *> getDataOutputs(); //! return all inputs of type data\r
   QList<AbstractInterface *> getControlInputs(); //! return all inputs of type control\r
   QList<AbstractInterface *> getControlOutputs(); //! return all outputs of type control\r
   AbstractInterface* getIfaceFromName(QString name);\r
   BlockParameter* getParameterFromName(QString name);\r
 \r
   // patterns\r
-  virtual void computeOutputPattern(int nbExec = -1) = 0;\r
+  virtual bool computeOutputPattern(int nbExec = -1) = 0;\r
   \r
 protected:\r
 \r
@@ -90,6 +93,7 @@ protected:
   // patterns\r
   QList<int> productionCounter; //! only usefull for output interfaces\r
   int delta;\r
+  bool patternComputed;\r
   \r
   // NB: only GroupBlock and FunctionalBlock have a real parent, except sources that have no parents\r
   AbstractBlock* parent;\r