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

Private GIT Repository
changes in output pattern comput
[blast.git] / GroupBlock.cpp
1 #include "GroupBlock.h"
2 #include "BlockParameterGeneric.h"
3 #include "AbstractInterface.h"
4 #include "ConnectedInterface.h"
5 #include "string.h"
6 #include <sstream>
7
8 int GroupBlock::counter = 1;
9
10 GroupBlock::GroupBlock(GroupBlock *_parent) throw(Exception) :  AbstractBlock() {
11
12   // force topGroup to false if this group has a parent
13   if (_parent != NULL) {    
14     topGroup = false;
15     name = QString("sub_group")+"_"+QString::number(counter++);
16   }
17   else {
18     topGroup = true;
19     name = QString("top_group");
20   }
21   parent = _parent;
22   if (parent != NULL) {
23     // adding this to the child blocks of parent
24     AB_TO_GRP(parent)->addBlock(this);
25   }
26 }
27
28 GroupBlock::~GroupBlock() {
29   foreach(AbstractBlock* block, blocks) {
30     delete block;
31   }
32 }
33
34 bool GroupBlock::isGroupBlock() {
35   return true;
36 }
37
38 bool GroupBlock::isTopGroupBlock() {
39   return topGroup;
40 }
41
42 void GroupBlock::setParent(AbstractBlock *_parent) {
43   parent = _parent;
44   if (parent != NULL) {
45     topGroup = false;
46   }
47 }
48
49 void GroupBlock::removeAllBlocks() {
50   foreach(AbstractBlock* block, blocks) {
51     if (block->isGroupBlock()) {
52       GroupBlock* group = AB_TO_GRP(block);
53       group->removeAllBlocks();
54     }
55     removeBlock(block);
56   }
57 }
58
59 void GroupBlock::removeBlock(AbstractBlock* block) {
60   /* CAUTION: no check is done if the block has connected interface
61      or not. Thus, they must be deleted elsewhere.
62   */
63   blocks.removeAll(block);
64   delete block;
65 }
66
67 AbstractBlock *GroupBlock::getFunctionalBlockByName(QString name) {
68   foreach(AbstractBlock* block, blocks) {
69     if (block->isFunctionalBlock()) {
70       if (block->getName() == name) return block;
71     }
72   }
73   return NULL;
74 }
75
76 void GroupBlock::parametersValidation(QList<AbstractBlock *> *checkedBlocks, QList<AbstractBlock *> *blocksToConfigure) {
77
78   /*
79   checkedBlocks->append(this);
80
81   foreach(BlockParameter* param, params){
82     if(param->isUserParameter() && !param->isValueSet()){
83       if(!blocksToConfigure->contains(param->getOwner())){
84         blocksToConfigure->append(param->getOwner());
85       }
86     }
87   }
88   foreach(AbstractInterface *inter, outputs){
89     foreach(AbstractInterface *connectedInter, inter->getConnectedTo()){
90       if(!checkedBlocks->contains(connectedInter->getOwner())){
91         connectedInter->getOwner()->parametersValidation(checkedBlocks, blocksToConfigure);
92       }
93     }
94   }
95   */
96 }
97
98 void GroupBlock::addGenericParameter(QString name, QString type, QString value) {
99   BlockParameter* param = new BlockParameterGeneric(this, name, type, value);
100   params.append(param);
101 }
102
103 void GroupBlock::removeGenericParameter(QString name) {
104   BlockParameter* p = getParameterFromName(name);
105   if (p != NULL) params.removeAll(p);
106 }
107
108 void GroupBlock::createInputPattern() {
109   foreach(AbstractInterface* iface, getControlInputs()) {
110     ConnectedInterface* connIface = AI_TO_CON(iface);
111     QList<char>* pattern = new QList<char>(*(connIface->getConnectedFrom()->getOutputPattern()));    
112     connIface->setOutputPattern(pattern);    
113   }  
114 }
115
116 void GroupBlock::checkInputPatternCompatibility() throw(Exception){  
117 }
118
119 void GroupBlock::computeOutputPattern(int nbExec) throw(Exception) {
120
121   static QString fctName = "GroupBlock::computeOutputPattern()";
122 #ifdef DEBUG_FCTNAME
123   cout << "call to " << qPrintable(fctName) << endl;
124 #endif
125
126   cout << "computing output pattern of group " << qPrintable(name) << endl;
127   
128   bool canCompute = false;  
129   // get the input pattern on each inputs
130   createInputPattern();
131   
132   cout << "Input pattern OK" << endl;
133   // find blocks that are connected to that inputs and generators
134   QList<AbstractBlock*> fifo;
135   foreach(AbstractBlock* block, blocks) {
136         
137     bool addIt = false;
138     // if a block is a generator and has control outputs, add it
139     if (block->isGeneratorBlock()) {
140       if (block->getControlOutputs().size() > 0) addIt = true;
141     }
142     else {
143       // if the block has a control input connected from an intput of the group, add it too
144       foreach(AbstractInterface* iface, block->getControlInputs()) {
145         //cout << qPrintable(iface->getName()) << " of " << qPrintable(iface->getOwner()->getName()) << " connected to " << endl;       
146         ConnectedInterface* connFrom = ((ConnectedInterface*)iface)->getConnectedFrom();
147         //cout << qPrintable(connFrom->getName()) << " of " << qPrintable(connFrom->getOwner()->getName()) << endl;
148         
149         if (connFrom->getOwner() == this) {
150           addIt = true;
151           break;
152         }
153       }
154     }
155     if (addIt) {
156       cout << "adding " << qPrintable(block->getName()) << " to initialize the FIFO" << endl;
157       fifo.append(block);    
158     }
159   }
160   
161   while (!fifo.isEmpty()) {
162     AbstractBlock* block = fifo.takeFirst();
163     
164     if (block->getPatternComputed()) continue; // block has already been processed
165     
166     try {
167       block->checkInputPatternCompatibility();
168     }
169     catch(Exception e) {
170       cout << qPrintable(block->getName()) << " is not compatible with his input pattern" << endl;
171       throw(e);
172     }    
173     
174     try {
175       block->computeOutputPattern();
176     }
177     catch(Exception e) {    
178       cout << "cannot finalize output pattern computation of " << qPrintable(block->getName()) << endl;
179       throw(e);      
180     }
181     canCompute = true;
182     block->setPatternComputed(true);
183     // add other blocks connected from block to the fifo
184     foreach(AbstractInterface* iface, block->getControlOutputs()) {
185       ConnectedInterface* conn = (ConnectedInterface*)iface;
186       foreach(ConnectedInterface* connTo, conn->getConnectedTo()) {
187         /* if connTo is owned by a functional block
188            or by a group block that is within this, add the block to the fifo.
189          */
190         if (connTo->getOwner()->isFunctionalBlock()) {
191           fifo.append(connTo->getOwner());
192         }
193         else if (connTo->getOwner() != this) {
194           fifo.append(connTo->getOwner());
195         }      
196       }
197     }
198   }
199   
200   if (canCompute) {
201     foreach(AbstractInterface* iface, getControlOutputs()) {
202       ConnectedInterface* connIface = AI_TO_CON(iface);
203       QList<char>* pattern = new QList<char>(*(connIface->getConnectedFrom()->getOutputPattern()));
204       connIface->setOutputPattern(pattern);    
205     }
206     setPatternComputed(true);
207   }  
208 }