X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/84eeae848c9d322ea4c935b8ec7338f69becbc10..756baf5c8eaf003e8271dab9c395de2b0e704857:/AbstractBlock.h diff --git a/AbstractBlock.h b/AbstractBlock.h index aee8c99..042a598 100644 --- a/AbstractBlock.h +++ b/AbstractBlock.h @@ -37,11 +37,14 @@ public: QList getWishboneParameters(); inline AbstractBlock* getParent() { return parent; } inline bool getPatternComputed() { return patternComputed; } + inline int getTraversalLevel() { return traversalLevel; } // setters void setName(const QString& str); virtual void setParent(AbstractBlock* _parent); inline void setPatternComputed(bool state) { patternComputed = state; } + inline void resetTraversalLevel() { traversalLevel = -1; } + inline void setTraversalLevel(int level) { traversalLevel = level; } // testers virtual bool isReferenceBlock(); @@ -53,6 +56,8 @@ public: bool isWBConfigurable(); // others + static QString normalizeName(const QString& name); + virtual void parametersValidation(QList* checkedBlocks, QList* blocksToConfigure) = 0; // ugly but usefull void addParameter(BlockParameter *param); @@ -70,8 +75,9 @@ public: BlockParameter* getParameterFromName(QString name); // patterns - virtual bool checkInputPatternCompatibility() = 0; - virtual bool computeOutputPattern(int nbExec = -1) = 0; + virtual void checkInputPatternCompatibility() throw(Exception) = 0; + virtual void computeOutputPattern(int nbExec = -1) throw(Exception) = 0; + virtual void computeAdmittanceDelays() throw(Exception) = 0; protected: @@ -90,9 +96,12 @@ protected: // patterns bool patternComputed; + int traversalLevel; // the level (0, 1, ...) during the traversal of the graph // NB: only GroupBlock and FunctionalBlock have a real parent, except sources that have no parents AbstractBlock* parent; + + }; #endif // __ABSTRACTBLOCK_H__