X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/cfe8322b50c9ef08ffbc3e52b0849bca4cd1d0bf..56f7c4239666506c59af42885f0bf0141d21a614:/AbstractBlock.h diff --git a/AbstractBlock.h b/AbstractBlock.h index c8aa023..2bb2717 100644 --- a/AbstractBlock.h +++ b/AbstractBlock.h @@ -5,6 +5,7 @@ #include +#include "AbstractInterface.h" class AbstractInterface; class BlockParameter; @@ -35,14 +36,12 @@ public: QList getPortParameters(); QList getWishboneParameters(); inline AbstractBlock* getParent() { return parent; } - inline QList getProductionCounter() { return productionCounter; } - inline int getDelta() { return delta; } + inline bool getPatternComputed() { return patternComputed; } // setters void setName(const QString& str); virtual void setParent(AbstractBlock* _parent); - inline void setProductionCounter(QList pattern) { productionCounter = pattern; } - inline void setDelta(int _delta) { delta = _delta; } + inline void setPatternComputed(bool state) { patternComputed = state; } // testers virtual bool isReferenceBlock(); @@ -62,15 +61,17 @@ public: void removeAllInterfaces(); void defineBlockParam(BlockParameter *param); - QList getInterfaces(); //! return all interfaces + QList getInterfaces(int direction = AbstractInterface::AnyDirection, int purpose = AbstractInterface::AnyPurpose); QList getDataInputs(); //! return all inputs of type data + QList getDataOutputs(); //! return all inputs of type data QList getControlInputs(); //! return all inputs of type control QList getControlOutputs(); //! return all outputs of type control AbstractInterface* getIfaceFromName(QString name); BlockParameter* getParameterFromName(QString name); // patterns - virtual void computeOutputPattern(int nbExec = -1) = 0; + virtual void checkInputPatternCompatibility() throw(Exception) = 0; + virtual void computeOutputPattern(int nbExec = -1) throw(Exception) = 0; protected: @@ -87,9 +88,8 @@ protected: // others - // patterns - QList productionCounter; //! only usefull for output interfaces - int delta; + // patterns + bool patternComputed; // NB: only GroupBlock and FunctionalBlock have a real parent, except sources that have no parents AbstractBlock* parent;