X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/f311fbc3e1436bf248c54225f0743cfa671c4bd7..5d4e709cb8d460b2efc083e6e7999f1c3a0eb602:/GroupBlock.cpp?ds=inline diff --git a/GroupBlock.cpp b/GroupBlock.cpp index 74ec197..a8a06e6 100644 --- a/GroupBlock.cpp +++ b/GroupBlock.cpp @@ -1,6 +1,7 @@ #include "GroupBlock.h" #include "BlockParameterGeneric.h" #include "AbstractInterface.h" +#include "ConnectedInterface.h" #include "string.h" #include @@ -34,12 +35,17 @@ bool GroupBlock::isGroupBlock() { return true; } +bool GroupBlock::isTopGroupBlock() { + return topGroup; +} + void GroupBlock::setParent(AbstractBlock *_parent) { parent = _parent; if (parent != NULL) { topGroup = false; } } + void GroupBlock::removeAllBlocks() { foreach(AbstractBlock* block, blocks) { if (block->isGroupBlock()) { @@ -58,6 +64,15 @@ void GroupBlock::removeBlock(AbstractBlock* block) { delete block; } +AbstractBlock *GroupBlock::getFunctionalBlockByName(QString name) { + foreach(AbstractBlock* block, blocks) { + if (block->isFunctionalBlock()) { + if (block->getName() == name) return block; + } + } + return NULL; +} + void GroupBlock::parametersValidation(QList *checkedBlocks, QList *blocksToConfigure) { /* @@ -89,3 +104,72 @@ void GroupBlock::removeGenericParameter(QString name) { BlockParameter* p = getParameterFromName(name); if (p != NULL) params.removeAll(p); } + +void GroupBlock::initInputPattern() { + foreach(AbstractInterface* iface, getControlInputs()) { + iface->setOutputPattern(iface->getConnectedFrom()->getOutputPattern()); + } +} + +bool GroupBlock::computeOutputPattern(int nbExec) { + + bool canCompute = true; + // get the input pattern on each inputs + initInputPattern(); + + // find blocks that are connected to that inputs and generators + QList fifo; + foreach(AbstractBlock* block, blocks) { + + bool addIt = false; + // if a block is a generator and has control outputs, add it + if (block->isGeneratorBlock()) { + if (block->getControlOutputs().size() > 0) addIt = true; + } + else { + // if the block has a control input connected from an intput of the group, add it too + foreach(AbstractInterface* iface, block->getControlInputs()) { + ConnectedInterface* conn = (ConnectedInterface*)iface; + ConnectedInterface* groupIface = conn->getConnectionFromParentGroup(); + if (groupIface != NULL) { + addIt = true; + break; + } + } + } + if (addIt) fifo.append(block); + } + while (!fifo.isEmpty()) { + AbstractBlock* block = fifo.takeFirst(); + cout << "computing pattern for " << qPrintable(block->getName()) << endl; + canCompute = block->computeOutputPattern(); + if (!canCompute) { + cout << "cannot finalize output pattern computation of " << qPrintable(block->getName()) << endl; + break; + } + block->setPatternComputed(true); + // add other blocks connected from block to the fifo + foreach(AbstractInterface* iface, block->getControlOutputs()) { + ConnectedInterface* conn = (ConnectedInterface*)iface; + foreach(ConnectedInterface* connTo, conn->getConnectedTo()) { + /* if connTo is owned by a functional block + or by a group block that is within this, add the block to the fifo. + */ + if (connTo->getOwner()->isFunctionalBlock()) { + fifo.append(connTo->getOwner()); + } + else if (connTo->getOwner() != this) { + fifo.append(connTo->getOwner()); + } + } + } + } + + if (canCompute) { + foreach(AbstractInterface* iface, getControlOutputs()) { + iface->setOutputPattern(iface->getConnectedFrom()->getOutputPattern()); + } + setPatternComputed(true); + } + return canCompute; +}