]> AND Private Git Repository - blast.git/blob - Graph.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
clkconvert OP compute done
[blast.git] / Graph.h
1 #ifndef __GRAPH_H__
2 #define __GRAPH_H__
3
4 #include <iostream>
5
6 #include <QtCore>
7 #include <QtGui>
8
9 class GroupBlock;
10 class ReferenceBlock;
11 class FunctionalBlock;
12 class AbstractInterface;
13 #include "Exception.h"
14 class Exception;
15 using namespace std;
16 using namespace Qt;
17
18
19 class Graph {
20
21 public:
22   Graph();
23   ~Graph();
24
25   // getters  
26   inline GroupBlock* getTopGroup() { return topGroup; }
27   inline QList<GroupBlock*> getAllGroups() { return groups; }
28   inline double getClock(int id) { return clocks.at(id); }
29   inline QList<double>& getClocks() { return clocks; }
30   
31   //setters
32   inline void resetClocks() { clocks.clear(); }
33
34   // methods for group blocks
35   GroupBlock* createChildGroupBlock(GroupBlock* parent, bool createGroupIface = true);
36   void removeGroupBlock(GroupBlock *group);
37   GroupBlock* getGroupBlockByName(QString name);
38   
39   // methods for functional blocks
40   FunctionalBlock* createFunctionalBlock(GroupBlock *group, ReferenceBlock *ref, bool createIfaces = true);
41   FunctionalBlock* duplicateFunctionalBlock(FunctionalBlock *block);
42   bool removeFunctionalBlock(FunctionalBlock* block);
43   FunctionalBlock* getFunctionalBlockByName(QString name, GroupBlock* parent = NULL); //! if parent = NULL, search in the whole graph
44
45   // methods for stimulis blocks
46   FunctionalBlock* createStimuliBlock(ReferenceBlock *ref, bool createIfaces = true);
47   FunctionalBlock* duplicateStimuliBlock(FunctionalBlock *block);
48   FunctionalBlock* getStimuliBlockByName(QString name);
49   bool removeStimuliBlock(FunctionalBlock* block);
50   
51   // others
52   void createTopGroup(bool createTopGroupIfaces = true);
53   inline void addClock(double freq) { clocks.append(freq); }
54   QList<AbstractInterface *> getOutsideInterfaces();
55   QList<QString> getExternalResources(); // returns the list of all external files needed for VHDL generation
56
57   /*!
58    * \brief createPatterns
59    * createPatterns() crosses the graph and for each functional block, it computes
60    * the consumptionPattern, the productionPattern, the production counter and delta
61    * using the parameters fo the block.
62    */
63   void createPatterns() throw(Exception);
64   void resetPatternComputed();
65   void computeOutputPatterns(int nbExec) throw(Exception);
66   
67   void generateVHDL(const QString& path) throw(Exception);
68
69 private:  
70   GroupBlock* topGroup;
71   QList<GroupBlock *> groups; //! usefull to avoid recursive methods to find a particular group.
72   QList<FunctionalBlock*> stimulis; //! source for the top group
73   QList<double> clocks; // clocks[0] is the main clock.
74
75 };
76
77 #endif // __GRAPH_H__