X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/f311fbc3e1436bf248c54225f0743cfa671c4bd7..HEAD:/AbstractBlock.h?ds=sidebyside diff --git a/AbstractBlock.h b/AbstractBlock.h index 19209b7..f40af86 100644 --- a/AbstractBlock.h +++ b/AbstractBlock.h @@ -4,12 +4,16 @@ #include #include +#include +#include "AbstractInterface.h" class AbstractInterface; class BlockParameter; +class Graph; #define AB_TO_REF(ptr) ((ReferenceBlock*)ptr) #define AB_TO_FUN(ptr) ((FunctionalBlock*)ptr) +#define AB_TO_SPE(ptr) ((SpecialBlock*)ptr) #define AB_TO_GRP(ptr) ((GroupBlock*)ptr) using namespace std; @@ -18,49 +22,97 @@ using namespace Qt; class AbstractBlock { public: + + enum BlockVHDLContext {AnyContext = 0, Entity = 1, Component = 2, Architecture = 3 }; // NB : 3 is when creating an instance of the block that owns this iface + enum SpecialType { NotSpecial = 0, Source = 1, Sink = 2, ClkConvert = 3 }; - AbstractBlock(); - AbstractBlock(const QString& _name); + + AbstractBlock(Graph* _graph); + //AbstractBlock(const QString& _name); virtual ~AbstractBlock(); // getters inline QString getName() { return name; } + inline int getSpecialType() { return specialType; } + inline QString getVersion() { return version; } inline int nbParameters() { return params.size(); } - inline QList getParameters() { return params; } + inline Graph* getGraph() { return graph; } + inline QList getInputs() { return inputs; } inline QList getOutputs() { return outputs; } - inline QList getBidirs() { return bidirs; } + inline QList getBidirs() { return bidirs; } + 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); + + inline QList getParameters() { return params; } + BlockParameter* getParameterFromName(QString name); QList getUserParameters(); QList getGenericParameters(); QList getPortParameters(); QList getWishboneParameters(); + inline AbstractBlock* getParent() { return parent; } + inline bool getOutputPatternComputed() { return outputPatternComputed; } + inline int getTraversalLevel() { return traversalLevel; } + // setters void setName(const QString& str); + void setSpecialType(int type); + inline void setVersion(const QString& _version) { version = _version; } virtual void setParent(AbstractBlock* _parent); + inline void setOutputPatternComputed(bool state) { outputPatternComputed = state; } + inline void resetTraversalLevel() { traversalLevel = -1; } + inline void setTraversalLevel(int level) { traversalLevel = level; } // testers virtual bool isReferenceBlock(); virtual bool isFunctionalBlock(); + virtual bool isSpecialBlock(); virtual bool isGroupBlock(); + virtual bool isStimuliBlock(); //! a stimuli block is outside the top group and simulates a peripheral (NB: this is also a source) + virtual bool isTopGroupBlock(); + bool isSourceBlock(); //! a source block is either a block that has no data inputs or that is of special type source. Thus it executes infinitely + bool isSinkBlock(); //! a sink block has no data outputs and just collects what it receives (i.e. no compatibility check) bool isWBConfigurable(); // others + int getSpecialTypeFromString(QString str); + + /*! + * \brief connectClkReset connects the clock and reset inputs to a clkrstgen block or the the group ifaces + * \param idBlockClk is the id of the clock interface (there may be severals) + * \param idGen is the id of the clkrstgen block + */ + virtual QList getExternalResources() = 0; // returns the list of all external files needed for VHDL generation + virtual void generateVHDL(const QString& path) throw(Exception) = 0; // main entry to generate the VHDL code + void generateComponent(QTextStream& out, bool hasController=false) throw(Exception); // generate the component using reference + void generateEntity(QTextStream& out, bool hasController=false) throw(Exception); // generate the entity using reference + virtual void parametersValidation(QList* checkedBlocks, QList* blocksToConfigure) = 0; // ugly but usefull void addParameter(BlockParameter *param); void addInterface(AbstractInterface *inter); void removeInterface(AbstractInterface *inter); + void removeAllInterfaces(); void defineBlockParam(BlockParameter *param); - QList getInterfaces(); - AbstractInterface* getIfaceFromName(QString name); - BlockParameter* getParameterFromName(QString name); + // patterns + virtual void checkInputPatternCompatibility() throw(Exception) = 0; + virtual void computeOutputPattern(int nbExec = -1) throw(Exception) = 0; + virtual void computeAdmittanceDelays() throw(Exception) = 0; + protected: QString name; + int specialType; + QString version; + Graph* graph; // parameters QList params; @@ -69,11 +121,22 @@ protected: QList inputs; QList outputs; QList bidirs; - + // others - - // NB: only GroupBlock and FunctionalBlock have a real parent + + // patterns + bool outputPatternComputed; + 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; + + virtual void generateComments(QTextStream& out, QDomElement &elt, QString coreFile) throw(Exception) = 0; // generates comments from element + virtual void generateLibraries(QTextStream& out, QDomElement &elt) throw(Exception) = 0; // generates libraries from element + virtual void generateArchitecture(QTextStream& out, QDomElement &elt ) throw(Exception) = 0; // generate the architecture using element + virtual void generateController(QTextStream& out) throw(Exception) = 0; // generate the wishbone controller of the block + virtual void generateEntityOrComponentBody(QTextStream& out, int indentLevel, bool hasController=false) throw(Exception) = 0; // generate the entity/compo body using reference + }; #endif // __ABSTRACTBLOCK_H__