X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/3bbc311e444c1ef9ac66dd6861fb0acb13ddb72a..cfe8322b50c9ef08ffbc3e52b0849bca4cd1d0bf:/AbstractBlock.h?ds=sidebyside diff --git a/AbstractBlock.h b/AbstractBlock.h index a132bc8..c8aa023 100644 --- a/AbstractBlock.h +++ b/AbstractBlock.h @@ -18,7 +18,7 @@ using namespace Qt; class AbstractBlock { public: - + AbstractBlock(); AbstractBlock(const QString& _name); virtual ~AbstractBlock(); @@ -35,16 +35,22 @@ public: QList getPortParameters(); QList getWishboneParameters(); inline AbstractBlock* getParent() { return parent; } + inline QList getProductionCounter() { return productionCounter; } + inline int getDelta() { return delta; } + // 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; } // testers virtual bool isReferenceBlock(); virtual bool isFunctionalBlock(); virtual bool isGroupBlock(); - virtual bool isSourceBlock(); + virtual bool isSourceBlock(); //! a source block is outside the top group and simulates a peripheral (NB: this is also a generator) virtual bool isTopGroupBlock(); + bool isGeneratorBlock(); //! a generator block has no data inputs and thus executes infinitely bool isWBConfigurable(); // others @@ -58,9 +64,14 @@ public: QList getInterfaces(); //! return all interfaces QList getDataInputs(); //! 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; + protected: @@ -73,10 +84,14 @@ protected: QList inputs; QList outputs; QList bidirs; - + // others - - // NB: only GroupBlock and FunctionalBlock have a real parent + + // patterns + QList productionCounter; //! only usefull for output interfaces + int delta; + + // NB: only GroupBlock and FunctionalBlock have a real parent, except sources that have no parents AbstractBlock* parent; };