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

Private GIT Repository
568e946458a69a7b9604901f114479be7d0780fd
[blast.git] / BoxItem.cpp
1 #include "BoxItem.h"
2 #include "GroupScene.h"
3 #include "ConnectionItem.h"
4 #include "InterfaceItem.h"
5 #include "GroupItem.h"
6 #include "Parameters.h"
7 #include "Exception.h"
8 #include "Dispatcher.h"
9 #include "FunctionalBlock.h"
10 #include "FunctionalInterface.h"
11 #include "ReferenceInterface.h"
12 #include "ReferenceBlock.h"
13 #include "ParametersWindow.h"
14 #include "BlockParameter.h"
15 #include "Graph.h"
16
17
18 BoxItem::BoxItem(AbstractBlock *_refBlock,
19                      Dispatcher *_dispatcher,
20                      Parameters *_params, GroupItem *parent) throw(Exception) : AbstractBoxItem( _refBlock, _dispatcher, _params, parent) {
21
22   /*  NOTE :
23      _refBlock : mandatory a FunctionalBlock or a GroupBlock
24   */
25   if (_refBlock->isReferenceBlock()) throw(Exception(BLOCK_INVALID_TYPE));
26
27   childGroupItem = NULL;
28   //boxWidth = params->defaultBlockWidth;
29   //boxHeight = params->defaultBlockHeight;
30   currentBorder = NoBorder;
31   selected = false;
32
33   setZValue(100);
34   setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemSendsGeometryChanges);
35
36   initInterfaceItems();
37   updateGeometry(InterfaceMove);
38   resetInterfaceItemsPosition();
39   QPointF initPos = QPointF(0.0,0.0) - originPoint;
40   setPos(initPos);
41   //cout << "total size of block: " << totalWidth << "," << totalHeight << endl;
42   //cout << "pos in group: " << x() << "," << y() << endl;
43 }
44
45 BoxItem::BoxItem(Dispatcher *_dispatcher, Parameters *_params, GroupItem *parent) throw(Exception) : AbstractBoxItem(_dispatcher, _params, parent) {
46
47   refBlock = NULL;
48   childGroupItem = NULL;
49   currentBorder = NoBorder;
50   selected = false;
51
52   setZValue(100);
53   setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemSendsGeometryChanges);
54
55   boxWidth = params->defaultBlockWidth;
56   boxHeight = params->defaultBlockHeight;
57   //initInterfaces();
58   //updateGeometry(InterfaceMove);
59   //resetInterfacesPosition();
60   //QPointF initPos = QPointF(0.0,0.0) - originPoint;
61   //setPos(initPos);
62   //cout << "total size of block: " << totalWidth << "," << totalHeight << endl;
63   //cout << "pos in group: " << x() << "," << y() << endl;
64 }
65
66 BoxItem::~BoxItem() {
67 }
68
69 void BoxItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
70   QPen pen(Qt::black, 3);
71   if(selected)
72     pen.setColor(Qt::red);
73
74   painter->setPen(pen);
75   painter->setBrush(Qt::yellow);
76
77   painter->drawRect(0,0,boxWidth, boxHeight);
78   painter->drawText(0,0,boxWidth, boxHeight,Qt::AlignCenter | Qt::TextWordWrap,QString(refBlock->getName()));
79   foreach(InterfaceItem *inter, interfaces) {
80     inter->paint(painter);
81   }
82 }
83
84 void BoxItem::moveTo(QPointF dest) {
85   setPos(dest);
86   currentPosition = dest;
87 }
88
89 bool BoxItem::isBoxItem() {
90   return true;
91 }
92
93 void BoxItem::updateMinimumSize() {
94
95   int maxSouth = 0;
96   int maxNorth = 0;
97   int maxEast = 0;
98   int maxWest = 0;
99   int nbSouth = nbInterfacesByOrientation(Parameters::South);
100   int nbNorth = nbInterfacesByOrientation(Parameters::North);
101   int nbMaxSN = nbNorth;
102   if (nbSouth > nbNorth) nbMaxSN = nbSouth;
103   int nbEast = nbInterfacesByOrientation(Parameters::East);
104   int nbWest = nbInterfacesByOrientation(Parameters::West);
105   int nbMaxEW = nbEast;
106   if (nbWest > nbEast) {
107     nbMaxEW = nbWest;
108   }
109
110   int ifaceWidth = 0;
111   int ifaceHeight = 0;
112
113   foreach(InterfaceItem* iface, interfaces) {
114     ifaceWidth = iface->getNameWidth();
115     ifaceHeight = iface->getNameHeight();
116     if (iface->getOrientation() == Parameters::South) {
117       if (ifaceWidth > maxSouth) maxSouth = ifaceWidth;
118     }
119     else if (iface->getOrientation() == Parameters::North) {
120       if (ifaceWidth > maxNorth) maxNorth = ifaceWidth;
121     }
122     else if (iface->getOrientation() == Parameters::East) {
123       if (ifaceWidth > maxEast) maxEast = ifaceWidth;
124     }
125     else if (iface->getOrientation() == Parameters::West) {
126       if (ifaceWidth > maxWest) maxWest = ifaceWidth;
127     }
128   }
129
130   /* NB: the width layout is the following
131      ifaceMargin | maxWest | nameMargin | name | nameMargin | maxEast | ifaceMargin
132    */
133   minimumBoxWidth = maxWest+maxEast+nameWidth+2*(ifaceMargin+nameMargin);
134   // if the minimum is not sufficent taking into account N/S interfaces
135   if (minimumBoxWidth < (nbMaxSN*ifaceHeight+ifaceMargin*(nbMaxSN+1))) {
136     minimumBoxWidth = (nbMaxSN*ifaceHeight+ifaceMargin*(nbMaxSN+1));
137   }
138   minimumBoxHeight = maxNorth+maxSouth+3*ifaceMargin;
139   if (minimumBoxHeight < (nbMaxEW*ifaceHeight+ifaceMargin*(nbMaxEW+1))) {
140     minimumBoxHeight = (nbMaxEW*ifaceHeight+ifaceMargin*(nbMaxEW+1));
141   }
142 }
143
144
145 /* updateGeometry() :
146
147  */
148 bool BoxItem::updateGeometry(ChangeType type) {
149
150   currentPosition = pos();
151   //cout << "current pos of block: " << currentPosition.x() << "," << currentPosition.y() << endl;
152   QPointF oldOrigin = originPoint;
153   QSize oldSize(totalWidth,totalHeight);
154
155   bool boxSizeChanged = false;
156
157   // whatever the change, the minimum size may have changed
158   updateMinimumSize();
159
160   if (type == Resize) {
161     // resize implies to move interfaces and to update connections
162     boxSizeChanged = true;
163   }
164   else if (type == InterfaceMove) {
165     // if an interface moves, it may change the box size
166     if (boxWidth < minimumBoxWidth) {
167       boxWidth = minimumBoxWidth;
168       boxSizeChanged = true;
169     }
170     if (boxHeight < minimumBoxHeight) {
171       boxHeight = minimumBoxHeight;
172       boxSizeChanged = true;
173     }
174   }
175   if (boxSizeChanged) {
176     updateInterfaceAndConnectionItems();
177   }
178
179
180   double x = 0.0;
181   double y = 0.0;
182   totalWidth = boxWidth;
183   totalHeight = boxHeight;
184
185   if(isInterfaces(Parameters::East)){
186     totalWidth += params->arrowWidth+params->arrowLineLength;
187   }
188   if(isInterfaces(Parameters::West)){
189     totalWidth += params->arrowWidth+params->arrowLineLength;
190     x -= params->arrowWidth+params->arrowLineLength;
191   }
192   if(isInterfaces(Parameters::South)){
193     totalHeight += params->arrowWidth+params->arrowLineLength;
194   }
195   if(isInterfaces(Parameters::North)){
196     totalHeight += params->arrowWidth+params->arrowLineLength;
197     y -= params->arrowWidth+params->arrowLineLength;
198   }
199   QSizeF newSize(totalWidth,totalHeight);
200   originPoint.setX(x);
201   originPoint.setY(y);
202
203   if ((boxSizeChanged) || (newSize != oldSize) || (originPoint != oldOrigin)) {
204     prepareGeometryChange();
205     return true;
206   }
207   return false;
208 }
209
210 void BoxItem::nameChanged() {
211   
212   QFontMetrics fmId(params->defaultBlockFont);
213   nameWidth = fmId.width(refBlock->getName());
214   nameHeight = fmId.height();
215   
216   if (updateGeometry(InterfaceMove)) {
217     //cout << "must recompute group item geometry" << endl;
218     (getScene()->getGroupItem())->updateShape();
219   }
220   // force the update in case of size has not changed
221   update();
222 }
223
224 void BoxItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
225
226   if(params->editState == Parameters::EditBlockMove) {
227     QPointF absPos = currentPosition + originPoint;
228     int marginConn = 2*(params->arrowWidth+params->arrowLineLength);
229     int gapX = event->scenePos().x() - cursorPosition.x();
230     int gapY = event->scenePos().y() - cursorPosition.y();
231
232     //cout << "block abs. pos: " << absPos.x() << "," << absPos.y() << " | ";
233     //cout << "block current. pos: " << currentPosition.x() << "," << currentPosition.y() << " | ";
234
235     if (absPos.x()+gapX < marginConn) {
236       gapX = marginConn-absPos.x();
237     }
238     if (absPos.y()+gapY < marginConn) {
239       gapY = marginConn-absPos.y();
240     }
241     //cout << "gap: " << gapX << "," << gapY << endl;
242     QPointF gap(gapX,gapY);
243     currentPosition = currentPosition+gap;
244     setPos(currentPosition);
245     // update all connections from/to this block
246     foreach(ConnectionItem *item, getScene()->getConnectionItems()){
247       if ((item->getFromInterfaceItem()->getOwner() == this) || (item->getToInterfaceItem()->getOwner() == this)) {
248         item->setPath();
249       }
250     }
251     cursorPosition = event->scenePos();
252
253     // udpate the groupitem
254     (getScene()->getGroupItem())->updateShape();
255   }
256   else if(params->editState == Parameters::EditBlockResize) {
257
258     int gapX = event->scenePos().x() - cursorPosition.x();
259     int gapY = event->scenePos().y() - cursorPosition.y();
260     //cout << "gap: " << gapX << "," << gapY << endl;
261     switch(currentBorder){
262     case BorderEast: {    
263       if(boxWidth+gapX > minimumBoxWidth){
264         boxWidth += gapX;
265       }
266       break;
267     }
268     case BorderSouth: {      
269       if(boxHeight+gapY > minimumBoxHeight){
270         boxHeight += gapY;
271       }
272       break;
273     }
274     case CornerSouthEast: {
275       if(boxWidth+gapX > minimumBoxWidth){
276         boxWidth += gapX;
277       }
278       if(boxHeight+gapY > minimumBoxHeight){
279         boxHeight += gapY;
280       }
281       break;
282     }
283     case NoBorder:
284       cout << "abnormal case while resizing block" << endl;
285       break;
286     }
287     // recompute the geometry of the block and possibly the group item
288     if (updateGeometry(Resize)) {
289       (getScene()->getGroupItem())->updateShape();
290     }
291
292     cursorPosition = event->scenePos();   
293   }
294   else if(params->editState == Parameters::EditInterfaceMove) {
295     prepareGeometryChange();
296     moveInterfaceItemTo(event->pos());
297     // recompute the geometry of the block
298     if (updateGeometry(InterfaceMove)) {
299       //cout << "must recompute group item geometry" << endl;
300       (getScene()->getGroupItem())->updateShape();
301     }
302     // update connection from/to the selected interface
303     foreach(ConnectionItem *item, getScene()->getConnectionItems()){
304       if ((item->getFromInterfaceItem() == currentInterface) || (item->getToInterfaceItem() == currentInterface)) {
305         item->setPath();
306       }
307     }    
308   }
309 }
310
311 void BoxItem::mousePressEvent(QGraphicsSceneMouseEvent *event) {
312
313   QPointF pos = event->pos();
314   qreal x = pos.x();
315   qreal y = pos.y();
316
317   //QGraphicsItem::mousePressEvent(event);
318
319   if(event->button() == Qt::RightButton) return;
320
321   int mode = getScene()->getEditionMode();
322
323   dispatcher->setCurrentGroupWidget(getScene()->getGroupWidget());
324
325   if ((mode == GroupScene::AddConnection) && (params->cursorState == Parameters::CursorOnInterface)) {
326     InterfaceItem *inter = getInterfaceItemFromCursor(x,y);
327     if (inter != NULL) {
328
329       if (params->editState == Parameters::EditNoOperation) {
330         getScene()->setSelectedInterface(1,inter);
331         params->setEditState(Parameters::EditStartConnection);
332       }
333       else if (params->editState == Parameters::EditStartConnection) {
334         if (inter == getScene()->getSelectedInterface(1)) {
335           params->setEditState(Parameters::EditAbortConnection);
336         }
337         else {
338           getScene()->setSelectedInterface(2,inter);
339           params->setEditState(Parameters::EditCloseConnection);
340         }
341       }
342     }
343   }
344   else if (mode == GroupScene::ItemEdition) {
345     //setZValue(zValue()+100);
346     if (params->cursorState == Parameters::CursorOnInterface) {
347       InterfaceItem *inter = getInterfaceItemFromCursor(x,y);
348       if (inter != NULL) {
349         if (inter == currentInterface) {
350            params->setEditState(Parameters::EditInterfaceDeselect);
351         }
352         else {
353           setFlag(ItemIsMovable, false);
354           currentInterface = inter;
355           params->setEditState(Parameters::EditInterfaceMove);
356         }
357       }
358     }
359     else if (params->cursorState == Parameters::CursorInBlock) {
360       selected = !selected;
361       params->setEditState(Parameters::EditBlockMove);
362       cursorPosition = event->scenePos();
363       //cout << "cursor current pos. in scene " << cursorPosition.x() << "," << cursorPosition.y() << endl;
364       update();
365     }
366     else if (params->cursorState == Parameters::CursorOnBorder) {
367       setFlag(ItemIsMovable, false);
368       cursorPosition = event->scenePos();
369       params->setEditState(Parameters::EditBlockResize);
370     }
371   }
372 }
373
374 void BoxItem::mouseReleaseEvent(QGraphicsSceneMouseEvent  *event) {
375
376   //setZValue(zValue()-100);
377
378   int mode = getScene()->getEditionMode();
379
380   if (mode == GroupScene::AddConnection) {
381
382     if (params->editState == Parameters::EditStartConnection) {
383       InterfaceItem* iface = getScene()->getSelectedInterface(1);
384       iface->selected = true;
385       update(iface->boundingRect());
386     }
387     else if (params->editState == Parameters::EditAbortConnection) {
388       InterfaceItem* iface = getScene()->getSelectedInterface(1);
389       iface->selected = false;
390       update(iface->boundingRect());
391       getScene()->setSelectedInterface(1,NULL);
392       params->setEditState(Parameters::EditNoOperation);
393     }
394     else if (params->editState == Parameters::EditCloseConnection) {
395       InterfaceItem* iface1 = getScene()->getSelectedInterface(1);
396       InterfaceItem* iface2 = getScene()->getSelectedInterface(2);
397       bool ok = dispatcher->createConnection(iface1,iface2);
398       if (ok) {
399         iface1->selected = false;
400         update(iface1->boundingRect());
401         iface2->selected = false;
402         update(iface2->boundingRect());        
403         getScene()->setSelectedInterface(1,NULL);
404         getScene()->setSelectedInterface(2,NULL);
405         params->setEditState(Parameters::EditNoOperation);
406       }
407       else {
408         //QMessageBox::warning(NULL,"Error","Cannot connect selected interfaces", QMessageBox::Ok);
409         getScene()->setSelectedInterface(2,NULL);
410         params->setEditState(Parameters::EditStartConnection);
411       }
412     }
413   }
414   else if (mode == GroupScene::ItemEdition) {
415     currentInterface = NULL;
416     params->editState = Parameters::EditNoOperation;
417     setFlag(ItemIsMovable);
418   }
419
420   QGraphicsItem::mouseReleaseEvent(event);
421 }
422
423 void BoxItem::hoverMoveEvent(QGraphicsSceneHoverEvent * event) {
424
425   QPointF pos = event->pos();
426   qreal x = pos.x();
427   qreal y = pos.y();
428   currentBorder = NoBorder;
429   int mode = getScene()->getEditionMode();
430
431   if (mode == GroupScene::AddConnection) {
432     InterfaceItem* iface = getInterfaceItemFromCursor(x,y);
433     if (iface != NULL) {
434       params->cursorState = Parameters::CursorOnInterface;
435       setCursor(Qt::PointingHandCursor);
436     }
437     else {
438       params->cursorState = Parameters::CursorNowhere;
439       setCursor(Qt::ArrowCursor);
440     }
441   }
442   else if (mode == GroupScene::ItemEdition) {
443     int marginE = 5;
444     int marginS = 5;
445
446     InterfaceItem* iface = getInterfaceItemFromCursor(x,y);
447     if (iface != NULL) {
448       params->cursorState = Parameters::CursorOnInterface;
449       setCursor(Qt::PointingHandCursor);
450     }
451     else if ((x>boxWidth-marginE)&&(x<boxWidth)) {
452
453       params->cursorState = Parameters::CursorOnBorder;
454
455       if ((y>boxHeight-2*marginS)&&(y<boxHeight)) {
456         currentBorder = CornerSouthEast;
457         setCursor(Qt::SizeFDiagCursor);
458       }
459       else {
460         currentBorder = BorderEast;
461         setCursor(Qt::SizeHorCursor);
462       }
463     }
464     else if ((y>boxHeight-marginS)&&(y<boxHeight)) {
465
466       params->cursorState = Parameters::CursorOnBorder;
467
468       if ((x>boxWidth-2*marginE)&&(x<boxWidth)) {
469         currentBorder = CornerSouthEast;
470         setCursor(Qt::SizeFDiagCursor);
471       }
472       else {
473         currentBorder = BorderSouth;
474         setCursor(Qt::SizeVerCursor);
475       }
476     }
477     else {
478       if ((x>0) && (x<boxWidth-marginE) && (y>0) && (y<boxHeight-marginS)) {
479         params->cursorState = Parameters::CursorInBlock;
480         setCursor(Qt::OpenHandCursor);
481       }
482       else {
483         params->cursorState = Parameters::CursorNowhere;
484         setCursor(Qt::ArrowCursor);
485       }
486     }
487   }
488   //QGraphicsItem::hoverMoveEvent(event);
489   event->ignore();
490 }
491
492
493 void BoxItem::contextMenuEvent(QGraphicsSceneContextMenuEvent * event) {  
494   
495   QMenu menu;
496   QAction* titleAction = NULL;
497   QAction* removeAction = NULL;
498   QAction* duplicateAction = NULL;
499   QAction* renameAction = NULL;
500   QAction* connectToGroup = NULL;  
501   QAction* showProperties = NULL;
502   QAction* cloneInterface = NULL;
503   QAction* openWindow = NULL;
504   QAction* showRstClkIface = NULL;
505   QAction* showWishboneIface = NULL;
506   QAction* showParameters = NULL;
507
508   InterfaceItem* ifaceItem = getInterfaceItemFromCursor(event->pos().x(), event->pos().y());
509   // menu for interface
510   if( ifaceItem != NULL){
511
512     titleAction = menu.addAction("Interface operations");
513     titleAction->setEnabled(false);
514     menu.addSeparator();
515
516
517     showProperties = menu.addAction("Show properties");
518     renameAction = menu.addAction("Rename");
519
520     ConnectedInterface* iface = ifaceItem->refInter;
521     ConnectedInterface* ifaceGroup = NULL;
522     bool canRemove = true;
523
524     if ((iface->getDirection() == AbstractInterface::Input) && (iface->getConnectedFrom() == NULL)) {
525         connectToGroup = menu.addAction("Connect to group input");
526     }
527     else if ((iface->getDirection() == AbstractInterface::Output) && (iface->getConnectionToParentGroup() == NULL)) {
528       connectToGroup = menu.addAction("Connect to group output");
529     }
530     else if (iface->getConnectionFromParentGroup() != NULL) {
531       ifaceGroup = iface->getConnectionFromParentGroup();     
532       if (ifaceGroup->isConnectedFrom()) {        
533         canRemove = false;
534       }
535     }
536     else if (iface->getConnectionToParentGroup() != NULL) {
537       ifaceGroup = iface->getConnectionToParentGroup();      
538       if (ifaceGroup->isConnectedTo()) {
539         canRemove = false;
540       }
541     }
542
543     if (iface->isFunctionalInterface()) {
544       FunctionalInterface* fi = AI_TO_FUN(ifaceItem->refInter);
545       ReferenceInterface* ri = (ReferenceInterface*)(fi->getReference());
546       if(ri->getMultiplicity() == -1 || ri->getMultiplicity() > 1){
547         cloneInterface = menu.addAction("Duplicate");
548         if ((canRemove) && (fi->getInterfaceMultiplicity() > 1)) {
549           removeAction = menu.addAction("Remove");
550         }
551       }      
552     }
553   }
554   // menu for blocks (group or func)
555   else {
556     titleAction = menu.addAction("Block operations");
557     titleAction->setEnabled(false);
558     menu.addSeparator();
559
560     if (refBlock->nbParameters() > 0) {
561       showParameters = menu.addAction("Show parameters");
562     }
563     renameAction = menu.addAction("Rename");
564
565     if(refBlock->isGroupBlock()){
566       openWindow = menu.addAction("Open/show group window");
567     }
568     else {
569       duplicateAction = menu.addAction("Duplicate");
570       showRstClkIface = menu.addAction("Show reset/clock interfaces");
571       showRstClkIface->setCheckable(true);
572       showRstClkIface->setChecked(rstClkVisible);
573       showWishboneIface = menu.addAction("Show wishbone interfaces");
574       showWishboneIface->setCheckable(true);
575       showWishboneIface->setChecked(wishboneVisible);
576     }
577     removeAction = menu.addAction("Remove");
578   }
579
580   QAction* selectedAction = NULL;
581   selectedAction = menu.exec(event->screenPos());
582
583   if(selectedAction == NULL) return ;
584
585   if (selectedAction == removeAction) {
586     if(ifaceItem != NULL) {
587      dispatcher->removeFunctionalInterface(ifaceItem);
588     }
589     else {
590       dispatcher->removeBoxItem(this);
591     }
592   }
593   else if (selectedAction == duplicateAction) {
594     dispatcher->duplicateBoxItem(this);
595   }
596   else if(selectedAction == renameAction){
597     if(ifaceItem != NULL) {
598       dispatcher->renameInterface(ifaceItem);
599     }
600     else {
601       if (refBlock->isFunctionalBlock()) {          
602         dispatcher->renameFunctionalBlock(this);
603       }
604       else if (refBlock->isGroupBlock()) {        
605         dispatcher->renameGroupBlock(childGroupItem);
606       }
607     }   
608   }
609   else if(selectedAction == showProperties){
610     dispatcher->showProperties(ifaceItem);
611   }
612   else if (selectedAction == connectToGroup){
613     dispatcher->connectInterToGroup(ifaceItem);
614   }
615   else if (selectedAction == cloneInterface){
616     dispatcher->duplicateInterfaceItem(ifaceItem);
617   }
618   else if (selectedAction == openWindow){
619     dispatcher->showRaiseWindow(this);
620   }
621   else if(selectedAction == showRstClkIface) {
622     dispatcher->showRstClkIface(this);
623   }
624   else if(selectedAction == showWishboneIface) {
625     dispatcher->showWishboneIface(this);
626   }
627   else if(selectedAction == showParameters) {
628     if (refBlock->isFunctionalBlock()) {
629       FunctionalBlock* fun = AB_TO_FUN(refBlock);
630       fun->createDelta();
631     }
632     new ParametersWindow(refBlock, params, NULL);
633   }    
634 }
635
636 void BoxItem::loadFunctional(QDomElement funcElement) throw(Exception) {
637
638   bool ok = false;
639
640   int id = funcElement.attribute("id","none").toInt(&ok);
641   if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
642
643   QString refXml = funcElement.attribute("ref_xml","none");
644   if(refXml == "none") throw(Exception(PROJECTFILE_CORRUPTED));
645
646   QString refMd5 = funcElement.attribute("ref_md5","none");
647   if(refMd5 == "none") throw(Exception(PROJECTFILE_CORRUPTED));
648
649   cout << "ref md5 : " << refMd5.toStdString() << "\nref xml : " << refXml.toStdString() << endl;
650
651   QString name = funcElement.attribute("name","none");
652   if(name == "none") throw(Exception(PROJECTFILE_CORRUPTED));
653
654   QStringList positionStr = funcElement.attribute("position","none").split(",");
655   if(positionStr.length() != 2) throw(Exception(PROJECTFILE_CORRUPTED));
656   int posX = positionStr.at(0).toInt(&ok);
657   if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
658   int posY = positionStr.at(1).toInt(&ok);
659   if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
660
661   QStringList dimensionStr = funcElement.attribute("dimension","none").split(",");
662   if(dimensionStr.length() != 2) throw(Exception(PROJECTFILE_CORRUPTED));
663   int dimX = dimensionStr.at(0).toInt(&ok);
664   if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
665   int dimY = dimensionStr.at(1).toInt(&ok);
666   if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
667   
668   ReferenceBlock *referenceMd5 = NULL;
669   ReferenceBlock *referenceXml = NULL;
670   ReferenceBlock *reference = NULL;
671   if(refMd5 != "none") {
672     referenceMd5 = params->searchBlockByMd5(refMd5);
673   }
674   if(refXml != "none"){
675     referenceXml = params->searchBlockByXml(refXml);
676   }
677   if ((referenceMd5 == NULL) && (referenceXml == NULL)) {
678     throw(Exception(PROJECTFILE_CORRUPTED));
679   }
680   if (referenceMd5 != referenceXml) {
681     throw(Exception(PROJECTFILE_CORRUPTED));
682   }
683   else {
684     reference = referenceMd5;
685   }
686   
687   GroupBlock* parentGroupBlock = AB_TO_GRP(((GroupItem *)parentItem())->getRefBlock());
688   FunctionalBlock* functionalBlock = params->getGraph()->createFunctionalBlock(parentGroupBlock, reference);
689   /* NB: addFunctionalBlock creates all interfaces from the reference, which is annoying when
690     reading bif_iface tags. Thus interface are all removed.
691   */
692   functionalBlock->setName(name);
693   setRefBlock(functionalBlock);
694
695   setPos(posX,posY);
696   setDimension(dimX,dimY);
697   setId(id);
698
699
700   QDomNodeList blockParamNodes = funcElement.elementsByTagName("bif_parameter");
701   // setting parameters value
702   for(int i=0; i<blockParamNodes.length(); i++){
703     QDomElement currentBlockParamNode = blockParamNodes.at(i).toElement();
704
705     QString name = currentBlockParamNode.attribute("name","none");
706     if(name == "none") throw(Exception(PROJECTFILE_CORRUPTED));
707
708     QString value = currentBlockParamNode.attribute("value","none");
709     if(value == "none") throw(Exception(PROJECTFILE_CORRUPTED));
710
711     BlockParameter *blockParam = NULL;
712     blockParam = functionalBlock->getParameterFromName(name);
713     if (blockParam == NULL) throw(Exception(PROJECTFILE_CORRUPTED));
714     blockParam->setValue(value);
715   }  
716
717   // recreate all (non-control) interfaces because of some may have a multiplicity>1 with several examplars
718   functionalBlock->removeAllInterfaces();
719   QDomNodeList interfaceNodes = funcElement.elementsByTagName("bif_iface");
720   // setting interfaces (user name, and for multiplicity>1 may be create some new ones)
721   for(int i=0; i<interfaceNodes.length(); i++) {
722
723     QDomElement currentInterfaceNode = interfaceNodes.at(i).toElement();
724
725     QString name = currentInterfaceNode.attribute("name","none");
726     if(name == "none") throw(Exception(PROJECTFILE_CORRUPTED));
727
728     QString refName = currentInterfaceNode.attribute("ref_name","none");
729     if(refName == "none") throw(Exception(PROJECTFILE_CORRUPTED));
730
731     ReferenceInterface* refInter = AI_TO_REF(reference->getIfaceFromName(refName));
732     cout << "creating iface from reference named " << qPrintable(refName) << endl;
733     FunctionalInterface *functionalInterface = new FunctionalInterface(functionalBlock,refInter);
734     functionalInterface->setName(name);
735     functionalBlock->addInterface(functionalInterface);
736     
737     // searching for control interface
738     QString ctlRefName = refName+"_enb";
739     ReferenceInterface* ctlRefIface = AI_TO_REF(reference->getIfaceFromName(ctlRefName));
740     
741     if (ctlRefIface != NULL) {
742       cout << "found a control iface:" << qPrintable(ctlRefName) << endl;
743       FunctionalInterface *ctlIface = new FunctionalInterface(functionalBlock,ctlRefIface);      
744       if (! ctlIface->setAssociatedIface(functionalInterface)) {
745         throw(Exception(PROJECTFILE_CORRUPTED));
746       }      
747       ctlIface->setName(name+"_enb");
748       functionalBlock->addInterface(ctlIface);
749     }    
750   }
751   
752   // creating InterfaceItem
753   initInterfaceItems();
754   // setting them with saved values
755   for(int i=0; i<interfaceNodes.length(); i++){
756
757     QDomElement currentInterfaceNode = interfaceNodes.at(i).toElement();
758
759     int id = currentInterfaceNode.attribute("id","none").toInt(&ok);
760     if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
761
762     QString name = currentInterfaceNode.attribute("name","none");
763     if(name == "none") throw(Exception(PROJECTFILE_CORRUPTED));
764
765     QString orientationStr = currentInterfaceNode.attribute("orientation","none");
766     int orientation = InterfaceItem::getIntOrientation(orientationStr);
767     if(orientation == -1) throw(Exception(PROJECTFILE_CORRUPTED));
768
769     double position = currentInterfaceNode.attribute("position","none").toDouble(&ok);
770     if(!ok) throw(Exception(PROJECTFILE_CORRUPTED));
771
772     InterfaceItem *interfaceItem = searchInterfaceItemByName(name);
773     interfaceItem->setId(id);
774     interfaceItem->setOrientation(orientation);
775     interfaceItem->setPositionRatio(position);
776   }
777   updateGeometry(Resize);
778 }
779
780 void BoxItem::save(QXmlStreamWriter &writer) {
781   if (refBlock->isFunctionalBlock()) {
782     writer.writeStartElement("bi_functional");
783
784     writer.writeAttribute("id",QString::number(id));
785     writer.writeAttribute("ref_xml", ((FunctionalBlock*)refBlock)->getReferenceXmlFile());
786     writer.writeAttribute("ref_md5", ((FunctionalBlock*)refBlock)->getReferenceHashMd5());
787     writer.writeAttribute("name",refBlock->getName());
788     QString attrPos = QString::number((int)(pos().x())).append(",").append(QString::number((int)(pos().y())));
789     writer.writeAttribute("position",attrPos);
790     QString attrDim = QString::number(getWidth()).append(",").append(QString::number(getHeight()));
791     writer.writeAttribute("dimension",attrDim);
792
793     writer.writeStartElement("bif_parameters");
794     foreach(BlockParameter *param,refBlock->getParameters()){
795       writer.writeStartElement("bif_parameter");
796
797       writer.writeAttribute("name",param->getName());
798       writer.writeAttribute("value",param->getValue().toString());
799       /*
800       writer.writeAttribute("context",param->getStrContext());
801       writer.writeAttribute("type",param->getTypeString());
802       */
803       writer.writeEndElement();   //</bif_parameter>
804     }
805     writer.writeEndElement();   //</bif_parameters>
806
807     writer.writeStartElement("bif_ifaces");
808     writer.writeAttribute("count",QString::number(interfaces.length()));
809     foreach(InterfaceItem* inter, interfaces){
810       writer.writeStartElement("bif_iface");
811
812       writer.writeAttribute("id",QString::number(inter->getId()));
813       writer.writeAttribute("name",inter->getName());
814       writer.writeAttribute("ref_name",inter->refInter->getName());
815       writer.writeAttribute("orientation",inter->getStrOrientation());
816       writer.writeAttribute("position",QString::number(inter->getPositionRatio()));
817
818       writer.writeEndElement();   //</bif_iface>
819     }
820     writer.writeEndElement();   //</bif_ifaces>
821
822     writer.writeEndElement();   //</bi_functional>
823   }
824   else {
825     writer.writeStartElement("bi_group");
826
827     writer.writeAttribute("id",QString::number(id));
828     writer.writeAttribute("inside_group",QString::number(childGroupItem->getId()));
829     QString attrPos = QString::number(pos().x()).append(",").append(QString::number(pos().y()));
830     writer.writeAttribute("position",attrPos);
831     QString attrDim = QString::number(getWidth()).append(",").append(QString::number(getHeight()));
832     writer.writeAttribute("dimension",attrDim);
833
834     writer.writeStartElement("big_ifaces");
835     writer.writeAttribute("count",QString::number(interfaces.length()));
836     foreach(InterfaceItem* inter, interfaces){
837       writer.writeStartElement("big_iface");
838
839       writer.writeAttribute("id",QString::number(inter->getId()));
840       writer.writeAttribute("ref_name",inter->refInter->getName());
841       writer.writeAttribute("orientation",inter->getStrOrientation());
842       writer.writeAttribute("position",QString::number(inter->getPositionRatio()));
843
844       writer.writeEndElement(); //</big_iface>
845     }
846
847     writer.writeEndElement(); //</big_ifaces>
848     writer.writeEndElement(); //</bi_group>
849   }
850 }
851
852 QDataStream &operator <<(QDataStream &out, BoxItem &b) {
853   out.setVersion(QDataStream::Qt_4_8);
854
855   QByteArray blockData;
856   QDataStream toWrite(&blockData, QIODevice::WriteOnly);
857
858   QString refXml = ((FunctionalBlock*)b.refBlock)->getReferenceXmlFile();
859   QByteArray xmlFile = QByteArray(refXml.toStdString().c_str());
860   toWrite << xmlFile;
861
862   toWrite << b.id;
863   toWrite << (int)b.x();
864   toWrite << (int)b.y();
865   toWrite << b.boxWidth;
866   toWrite << b.boxHeight;
867   toWrite << b.getInterfaces().length();
868
869   for(int i=0; i<b.getInterfaces().length(); i++){
870     InterfaceItem *inter = b.getInterfaces().at(i);
871     toWrite << inter->getId();
872     //toWrite << inter->getName();
873     toWrite << inter->getPositionRatio();
874     toWrite << inter->getOrientation();
875   }
876
877   out << blockData;
878
879   return out;
880 }
881
882 QDataStream &operator >>(QDataStream &in, BoxItem &b) {
883
884   in.setVersion(QDataStream::Qt_4_8);
885
886   int x,y,nbInter;
887
888   in >> b.id;
889   in >> x;
890   in >> y;
891
892   b.setX(x);
893   b.setY(y);
894
895   in >> b.boxWidth;
896   in >> b.boxHeight;
897   in >> nbInter;
898
899   cout << "nbInter:" << nbInter << endl;
900   for(int i=0; i<nbInter; i++){
901
902     int id, orientation;
903     double positionRatio;
904     QString name;
905
906     InterfaceItem *inter = b.getInterfaces().at(i);
907     in >> id;
908     in >> name;
909     in >> positionRatio;
910     in >> orientation;
911
912     inter->setId(id);    
913     inter->setPositionRatio(positionRatio);
914     inter->setOrientation(orientation);
915     inter->updatePosition();
916
917   }
918
919   return in;
920 }