#include "SpecialBlock.h"\r
+#include "FunctionalInterface.h"\r
\r
-SpecialBlock::SpecialBlock(SpecialType _type, GroupBlock* _parent, ReferenceBlock* _reference, bool createIfaces) throw(Exception) : FunctionalBlock(_parent, _reference, createIfaces) {\r
- type = _type; \r
+SpecialBlock::SpecialBlock(int _type, GroupBlock* _parent, ReferenceBlock* _reference, bool createIfaces) throw(Exception) : FunctionalBlock(_parent, _reference, createIfaces) {\r
+ specialType = _type;\r
}\r
\r
SpecialBlock::~SpecialBlock() {\r
}\r
\r
+bool SpecialBlock::isSpecialBlock() {\r
+ return true;\r
+}\r
+\r
void SpecialBlock::checkInputPatternCompatibility() throw(Exception) {\r
try {\r
- switch(type) {\r
- case ClockConvert :\r
+ switch(specialType) {\r
+ case Source :\r
+ checkInputPatternCompatibilitySource();\r
+ break;\r
+ case Sink :\r
+ checkInputPatternCompatibilitySink();\r
+ break;\r
+ case ClkConvert :\r
checkInputPatternCompatibilityClockConvert();\r
- break; \r
+ break;\r
+ default:\r
+ break;\r
}\r
}\r
catch(Exception e) {\r
\r
void SpecialBlock::computeOutputPattern(int nbExec) throw(Exception) {\r
try {\r
- switch(type) {\r
- case ClockConvert :\r
+ switch(specialType) {\r
+ case Source :\r
+ computeOutputPatternSource(nbExec);\r
+ break;\r
+ case Sink :\r
+ computeOutputPatternSink(nbExec);\r
+ break;\r
+ case ClkConvert :\r
computeOutputPatternClockConvert(nbExec);\r
break; \r
+ default:\r
+ break;\r
}\r
}\r
catch(Exception e) {\r
}\r
}\r
\r
+void SpecialBlock::checkInputPatternCompatibilitySource() throw(Exception) {\r
+}\r
+void SpecialBlock::computeOutputPatternSource(int nbExec) throw(Exception) {\r
+\r
+ cout << "computing output pattern of " << qPrintable(name) << " for " << nbExec << " executions" << endl;\r
+ foreach(AbstractInterface* iface, getControlOutputs()) {\r
+ FunctionalInterface* connIface = AI_TO_FUN(iface);\r
+ // create output pattern\r
+ QList<char>* pp = productionPattern.value(connIface);\r
+ QList<char>* pattern = new QList<char>(*pp);\r
+ for(int i=1;i<nbExec;i++) pattern->append(*pp);\r
+ // assign pattern to interface\r
+ connIface->setOutputPattern(pattern);\r
+ // store it in QMap\r
+ outputPattern.insert(connIface,pattern);\r
+ }\r
+ setOutputPatternComputed(true);\r
+}\r
+\r
+void SpecialBlock::checkInputPatternCompatibilitySink() throw(Exception) {\r
+}\r
+void SpecialBlock::computeOutputPatternSink(int nbExec) throw(Exception) {\r
+}\r
+\r
void SpecialBlock::checkInputPatternCompatibilityClockConvert() throw(Exception) {\r
}\r
void SpecialBlock::computeOutputPatternClockConvert(int nbExec) throw(Exception) {\r