X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/48f48e6a26a54751ecd0ab90b10ab972cc5e89cd..8fb3c55ee009a11db5e1c08a4cfb286979412745:/Graph.h diff --git a/Graph.h b/Graph.h index f3e9923..58690c9 100644 --- a/Graph.h +++ b/Graph.h @@ -10,7 +10,8 @@ class GroupBlock; class ReferenceBlock; class FunctionalBlock; class AbstractInterface; - +#include "Exception.h" +class Exception; using namespace std; using namespace Qt; @@ -18,7 +19,7 @@ using namespace Qt; class Graph { public: - Graph(); + Graph(bool createTopGroupIface = true); ~Graph(); // getters @@ -26,39 +27,42 @@ public: inline QList getAllGroups() { return groups; } // methods for group blocks - GroupBlock* createChildGroupBlock(GroupBlock* parent); - bool removeGroupBlock(GroupBlock *group); + GroupBlock* createChildGroupBlock(GroupBlock* parent, bool createGroupIface = true); + void removeGroupBlock(GroupBlock *group); GroupBlock* getGroupBlockByName(QString name); // methods for functional blocks - FunctionalBlock* createFunctionalBlock(GroupBlock *group, ReferenceBlock *ref); + FunctionalBlock* createFunctionalBlock(GroupBlock *group, ReferenceBlock *ref, bool createIfaces = true); FunctionalBlock* duplicateFunctionalBlock(FunctionalBlock *block); bool removeFunctionalBlock(FunctionalBlock* block); FunctionalBlock* getFunctionalBlockByName(QString name, GroupBlock* parent = NULL); //! if parent = NULL, search in the whole graph - // methods for source blocks - FunctionalBlock* createSourceBlock(ReferenceBlock *ref); - FunctionalBlock* duplicateSourceBlock(FunctionalBlock *block); - FunctionalBlock* getSourceBlockByName(QString name); - bool removeSourceBlock(FunctionalBlock* block); + // methods for stimulis blocks + FunctionalBlock* createStimuliBlock(ReferenceBlock *ref, bool createIfaces = true); + FunctionalBlock* duplicateStimuliBlock(FunctionalBlock *block); + FunctionalBlock* getStimuliBlockByName(QString name); + bool removeStimuliBlock(FunctionalBlock* block); // others QList getOutsideInterfaces(); + QList getExternalResources(); // returns the list of all external files needed for VHDL generation + /*! - * \brief initPatterns - * initPatterns() crosses the graph and for each functional block, it computes + * \brief createPatterns + * createPatterns() crosses the graph and for each functional block, it computes * the consumptionPattern, the productionPattern, the production counter and delta * using the parameters fo the block. */ - bool createPatterns(); + void createPatterns() throw(Exception); void resetPatternComputed(); - bool computeOutputPatterns(int nbExec); - + void computeOutputPatterns(int nbExec) throw(Exception); + void generateVHDL(const QString& path) throw(Exception); + private: GroupBlock* topGroup; QList groups; //! usefull to avoid recursive methods to find a particular group. - QList sources; //! source for the top group + QList stimulis; //! source for the top group };