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

Private GIT Repository
clkconvert OP compute done
[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,_direction,_purpose,"inherited","") {
6   if (! _owner->isGroupBlock()) throw(Exception(BLOCK_INVALID_TYPE));
7
8   connectedFrom = NULL;
9   // force clock and reset to boolean width type instead of inherited
10   if ((purpose == Clock) || (purpose == Reset)) {
11     type = Boolean;
12   }
13 }
14
15 bool GroupInterface::isGroupInterface() {
16   return true;
17 }
18
19 AbstractInterface *GroupInterface::clone() {
20     GroupInterface *inter = new GroupInterface(owner,name,direction, purpose);
21     inter->setWidth(width);        
22     return inter;
23 }
24
25 int GroupInterface::getWidth() {
26
27   bool ok;
28   int w = -1;
29
30   QString expr = width;
31
32   if (type == Boolean) {
33     return 1;
34   }
35   else if (type == Inherited) {
36     // must search from which iface it is connected.
37     ConnectedInterface* fromIface = connectedFrom;
38     while ((fromIface != NULL) && (fromIface->getType() == Inherited)) {
39       fromIface = fromIface->getConnectedFrom();
40     }
41     if (fromIface == NULL) return -1;
42     w = fromIface->getWidth();
43   }
44   return w;
45 }
46
47 bool GroupInterface::canConnectTo(AbstractInterface *iface) {
48
49   /* NOTE :
50      necessary conditions :
51         - iface type must be functional or group interface
52         - iface->connectedFrom must be NULL
53
54      valid cases:
55      1 - this is owned by the parent group of the block (group or func) that owns iface
56         1.1 - this is input and iface is input
57         1.2 - both are inout
58      2 - this is owned by a group that has the same parent as the block (group or func) that owns iface
59         2.1 - this is an output, iface is an input of the group
60         2.2 - both are inout
61      3 - this is owned by a group and iface by its parent group
62         2.1 - this is an output, iface is an output of the group
63         2.2 - both are inout
64      
65
66
67   */
68   if (iface->isReferenceInterface()) return false;
69   ConnectedInterface* connIface = AI_TO_CON(iface);
70   if (connIface->getConnectedFrom() != NULL) return false;
71
72   if (this->getOwner() == iface->getOwner()->getParent()) {
73     if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
74     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
75
76   }
77   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
78     if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
79     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
80   }
81   else if (this->getOwner()->getParent() == iface->getOwner()) {
82     if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
83     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
84   }
85   
86
87   return false;
88 }
89
90 bool GroupInterface::canConnectFrom(AbstractInterface *iface) {
91
92   /* NOTE :
93      necessary conditions :
94         - iface type must be functional or group interface
95         - this->connectedFrom must be NULL
96
97      valid cases:
98      1 - this is owned by the parent group of the block (group or func) that owns iface
99         1.1 - this is output and iface is output
100         1.2 - both are inout
101      2 - this is owned by a group that has the same parent as the block (group or func) that owns iface
102         2.1 - this is an input, iface is an output of the group
103         2.2 - both are inout
104      3 - this is owned by a group and iface by its parent group
105         2.1 - this is an input, iface is an input of the group
106         2.2 - both are inout
107      4 - this is owned by top group and iface is an output of a source block           
108   */
109   if (iface->isReferenceInterface()) return false;
110   if (getConnectedFrom() != NULL) return false;
111
112   if (this->getOwner() == iface->getOwner()->getParent()) {
113     if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
114     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
115
116   }
117   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
118     if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
119     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
120   }
121   else if (this->getOwner()->getParent() == iface->getOwner()) {
122     if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
123     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
124   }
125   else if ((getOwner()->isTopGroupBlock()) && (iface->getOwner()->isStimuliBlock())) {
126     if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
127   }
128
129   return false;
130 }
131
132 int GroupInterface::getClockDomain() throw(Exception) {
133
134   int idClock = -1;
135
136   GroupInterface* iface = NULL;
137   if (clkIfaceType == ClockName) {
138     iface = AI_TO_GRP(getClockIface());
139   }
140   else if ((direction == Input) && (purpose == Clock)) {
141     iface = this;
142   }
143
144   if ( iface != NULL) {
145
146     QString name = iface->getName();
147     name.remove(0,8);
148     bool ok;
149     idClock = name.toInt(&ok);
150     if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));
151
152   }
153
154   return idClock;
155 }
156
157
158 void GroupInterface::connectionsValidation(QStack<AbstractInterface*> *interfacetoValidate, QList<AbstractInterface*> *validatedInterfaces) throw(Exception) {
159     cout << "group interface connection validation" << endl;
160 }