X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/f311fbc3e1436bf248c54225f0743cfa671c4bd7..eb12792fe5344f4d128b8aba2a7948aa13f6a1ae:/Graph.h diff --git a/Graph.h b/Graph.h index 723e8eb..b9c598a 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; @@ -21,16 +22,44 @@ public: Graph(); ~Graph(); - QList getOutsideInterfaces(); + // getters inline GroupBlock* getTopGroup() { return topGroup; } + inline QList getAllGroups() { return groups; } + + // methods for group blocks + GroupBlock* createChildGroupBlock(GroupBlock* parent); + void removeGroupBlock(GroupBlock *group); + GroupBlock* getGroupBlockByName(QString name); + + // methods for functional blocks + FunctionalBlock* createFunctionalBlock(GroupBlock *group, ReferenceBlock *ref); + FunctionalBlock* duplicateFunctionalBlock(FunctionalBlock *block); + bool removeFunctionalBlock(FunctionalBlock* block); + FunctionalBlock* getFunctionalBlockByName(QString name, GroupBlock* parent = NULL); //! if parent = NULL, search in the whole graph - GroupBlock* createChildBlock(GroupBlock* parent); - FunctionalBlock* addFunctionalBlock(GroupBlock *group, ReferenceBlock *ref); - bool removeFunctionalBlock(FunctionalBlock* block, GroupBlock *group); - bool removeGroupBlock(GroupBlock *group); - + // methods for source blocks + FunctionalBlock* createSourceBlock(ReferenceBlock *ref); + FunctionalBlock* duplicateSourceBlock(FunctionalBlock *block); + FunctionalBlock* getSourceBlockByName(QString name); + bool removeSourceBlock(FunctionalBlock* block); + + // others + QList getOutsideInterfaces(); + /*! + * \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. + */ + void createPatterns() throw(Exception); + void resetPatternComputed(); + void computeOutputPatterns(int nbExec) throw(Exception); + + private: GroupBlock* topGroup; + QList groups; //! usefull to avoid recursive methods to find a particular group. + QList sources; //! source for the top group };