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

Private GIT Repository
corrected some warnings
[blast.git] / AbstractBlock.h
1 #ifndef __ABSTRACTBLOCK_H__\r
2 #define __ABSTRACTBLOCK_H__\r
3 \r
4 #include <iostream>\r
5 \r
6 #include <QtCore>\r
7 \r
8 #include "AbstractInterface.h"\r
9 class AbstractInterface;\r
10 class BlockParameter;\r
11 \r
12 #define AB_TO_REF(ptr) ((ReferenceBlock*)ptr)\r
13 #define AB_TO_FUN(ptr) ((FunctionalBlock*)ptr)\r
14 #define AB_TO_GRP(ptr) ((GroupBlock*)ptr)\r
15 \r
16 using namespace std;\r
17 using namespace Qt;\r
18 \r
19 class AbstractBlock {\r
20 \r
21 public:  \r
22       \r
23   AbstractBlock();\r
24   AbstractBlock(const QString& _name);\r
25   virtual ~AbstractBlock();\r
26 \r
27   // getters\r
28   inline QString getName() { return name; }\r
29   inline int nbParameters() { return params.size(); }\r
30   inline QList<BlockParameter *> getParameters() { return params; }\r
31   inline QList<AbstractInterface*> getInputs() { return inputs; }\r
32   inline QList<AbstractInterface*> getOutputs() { return outputs; }\r
33   inline QList<AbstractInterface*> getBidirs() { return bidirs; }\r
34   QList<BlockParameter *> getUserParameters();\r
35   QList<BlockParameter *> getGenericParameters();\r
36   QList<BlockParameter *> getPortParameters();\r
37   QList<BlockParameter *> getWishboneParameters();\r
38   inline AbstractBlock* getParent() { return parent; }\r
39   inline bool getPatternComputed() { return patternComputed; }\r
40   \r
41   // setters\r
42   void setName(const QString& str);\r
43   virtual void setParent(AbstractBlock* _parent);\r
44   inline void setPatternComputed(bool state) { patternComputed = state; }\r
45 \r
46   // testers\r
47   virtual bool isReferenceBlock();\r
48   virtual bool isFunctionalBlock();\r
49   virtual bool isGroupBlock();\r
50   virtual bool isSourceBlock(); //! a source block is outside the top group and simulates a peripheral (NB: this is also a generator)\r
51   virtual bool isTopGroupBlock();\r
52   bool isGeneratorBlock(); //! a generator block has no data inputs and thus executes infinitely\r
53   bool isWBConfigurable();\r
54 \r
55   // others\r
56   virtual void parametersValidation(QList<AbstractBlock*>* checkedBlocks, QList<AbstractBlock*>* blocksToConfigure) = 0; // ugly but usefull   \r
57 \r
58   void addParameter(BlockParameter *param);\r
59   void addInterface(AbstractInterface *inter);\r
60   void removeInterface(AbstractInterface *inter);\r
61   void removeAllInterfaces();\r
62   void defineBlockParam(BlockParameter *param);\r
63 \r
64   QList<AbstractInterface *> getInterfaces(int direction = AbstractInterface::AnyDirection, int purpose = AbstractInterface::AnyPurpose);\r
65   QList<AbstractInterface *> getDataInputs(); //! return all inputs of type data\r
66   QList<AbstractInterface *> getDataOutputs(); //! return all inputs of type data\r
67   QList<AbstractInterface *> getControlInputs(); //! return all inputs of type control\r
68   QList<AbstractInterface *> getControlOutputs(); //! return all outputs of type control\r
69   AbstractInterface* getIfaceFromName(QString name);\r
70   BlockParameter* getParameterFromName(QString name);\r
71 \r
72   // patterns\r
73   virtual void checkInputPatternCompatibility() throw(Exception) = 0;\r
74   virtual void computeOutputPattern(int nbExec = -1) throw(Exception) = 0;\r
75   \r
76 protected:\r
77 \r
78 \r
79   QString name;\r
80 \r
81   // parameters\r
82   QList<BlockParameter *> params;\r
83 \r
84   // interfaces\r
85   QList<AbstractInterface*> inputs;\r
86   QList<AbstractInterface*> outputs;\r
87   QList<AbstractInterface*> bidirs;\r
88   \r
89   // others\r
90   \r
91   // patterns  \r
92   bool patternComputed;\r
93   \r
94   // NB: only GroupBlock and FunctionalBlock have a real parent, except sources that have no parents\r
95   AbstractBlock* parent;\r
96 };\r
97 \r
98 #endif // __ABSTRACTBLOCK_H__\r