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

Private GIT Repository
67577900b5bb85c22261ff96d2d779b430924b25
[blast.git] / GroupInterface.cpp
1 #include "GroupInterface.h"
2 #include "FunctionalInterface.h"
3 #include "GroupBlock.h"
4
5 GroupInterface::GroupInterface(AbstractBlock* _owner, const QString& _name, int _direction, int _purpose) throw(Exception) : ConnectedInterface(_owner,_name,AbstractInterface::Inherited,"",_direction,_purpose) {
6   if (! _owner->isGroupBlock()) throw(Exception(BLOCK_INVALID_TYPE));
7
8   connectedFrom = NULL;
9 }
10
11 bool GroupInterface::isGroupInterface() {
12   return true;
13 }
14
15 AbstractInterface *GroupInterface::clone() {
16     GroupInterface *inter = new GroupInterface(owner,name,direction, purpose);
17     inter->setWidth(width);    
18     inter->connectFrom(NULL);
19
20     return inter;
21 }
22
23
24 bool GroupInterface::canConnectTo(AbstractInterface *iface) {
25
26   /* NOTE :
27      necessary conditions :
28         - iface type must be functional or group interface
29         - iface->connectedFrom must be NULL
30
31      valid cases:
32      1 - this is owned by the parent group of the block (group or func) that owns iface
33         1.1 - this is input and iface is input
34         1.2 - both are inout
35      2 - this is owned by a group that has the same parent as the block (group or func) that owns iface
36         2.1 - this is an output, iface is an input of the group
37         2.2 - both are inout
38      3 - this is owned by a group and iface by its parent group
39         2.1 - this is an output, iface is an output of the group
40         2.2 - both are inout
41      
42
43
44   */
45   if (iface->isReferenceInterface()) return false;
46   if (iface->getConnectedFrom() != NULL) return false;
47
48   if (this->getOwner() == iface->getOwner()->getParent()) {
49     if ((direction == Input) && (iface->getDirection() == Input)) return true;
50     if ((direction == InOut) && (iface->getDirection() == InOut)) return true;
51
52   }
53   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
54     if ((direction == Output) && (iface->getDirection() == Input)) return true;
55     if ((direction == InOut) && (iface->getDirection() == InOut)) return true;
56   }
57   else if (this->getOwner()->getParent() == iface->getOwner()) {
58     if ((direction == Output) && (iface->getDirection() == Output)) return true;
59     if ((direction == InOut) && (iface->getDirection() == InOut)) return true;
60   }
61   
62
63   return false;
64 }
65
66 bool GroupInterface::canConnectFrom(AbstractInterface *iface) {
67
68   /* NOTE :
69      necessary conditions :
70         - iface type must be functional or group interface
71         - this->connectedFrom must be NULL
72
73      valid cases:
74      1 - this is owned by the parent group of the block (group or func) that owns iface
75         1.1 - this is output and iface is output
76         1.2 - both are inout
77      2 - this is owned by a group that has the same parent as the block (group or func) that owns iface
78         2.1 - this is an input, iface is an output of the group
79         2.2 - both are inout
80      3 - this is owned by a group and iface by its parent group
81         2.1 - this is an input, iface is an input of the group
82         2.2 - both are inout
83      4 - this is owned by top group and iface is an output of a source block           
84   */
85   if (iface->isReferenceInterface()) return false;
86   if (getConnectedFrom() != NULL) return false;
87
88   if (this->getOwner() == iface->getOwner()->getParent()) {
89     if ((direction == Output) && (iface->getDirection() == Output)) return true;
90     if ((direction == InOut) && (iface->getDirection() == InOut)) return true;
91
92   }
93   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
94     if ((direction == Input) && (iface->getDirection() == Output)) return true;
95     if ((direction == InOut) && (iface->getDirection() == InOut)) return true;
96   }
97   else if (this->getOwner()->getParent() == iface->getOwner()) {
98     if ((direction == Input) && (iface->getDirection() == Input)) return true;
99     if ((direction == InOut) && (iface->getDirection() == InOut)) return true;
100   }
101   else if ((getOwner()->isTopGroupBlock()) && (iface->getOwner()->isSourceBlock())) {
102     if ((direction == Input) && (iface->getDirection() == Output)) return true;
103   }
104
105   return false;
106 }
107
108 void GroupInterface::connectionsValidation(QStack<AbstractInterface*> *interfacetoValidate, QList<AbstractInterface*> *validatedInterfaces) throw(Exception) {
109     cout << "group interface connection validation" << endl;
110 }