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

Private GIT Repository
changed connection process
[blast.git] / ConnectedInterface.h
1 #ifndef __CONNECTEDINTERFACE_H__
2 #define __CONNECTEDINTERFACE_H__
3
4 #include <iostream>
5
6 #include <QtCore>
7 #include <QtGui>
8
9 #include "AbstractInterface.h"
10 class ReferenceInterface;
11
12 #include "Exception.h"
13
14 using namespace std;
15 using namespace Qt;
16
17 /*!
18  * \brief The ConnectedInterface class represents an interface of block (functional or group) that may be connected from/to other interfaces
19  * A ConnectedInterface is used to establish connection between blocks.
20  */
21 class ConnectedInterface : public AbstractInterface {
22
23 public :
24
25   ConnectedInterface(AbstractBlock* _owner);
26   ConnectedInterface(AbstractBlock* _owner, const QString& _name, const QString& _type, const QString& _width, int _direction, int _purpose);
27   // getters
28   inline QList<ConnectedInterface*> getConnectedTo() { return connectedTo;}
29   inline ConnectedInterface* getConnectedFrom() { return connectedFrom;}
30
31   // setters
32
33   // testers
34   inline bool isConnectedTo(){return connectedTo.length() != 0;}
35   inline bool isConnectedFrom(){return connectedFrom != NULL;}
36   virtual bool canConnectTo(AbstractInterface* iface) = 0;
37   virtual bool canConnectFrom(AbstractInterface* iface) = 0;
38
39   // others  
40   void connectTo(ConnectedInterface* iface);
41   void disconnectTo(ConnectedInterface* iface);
42   //bool connectFrom(ConnectedInterface* iface);
43   ConnectedInterface* getConnectionToParentGroup();
44   ConnectedInterface* getConnectionFromParentGroup();
45
46   virtual AbstractInterface *clone() = 0;  
47   void removeConnectedTo(ConnectedInterface *inter);
48
49   virtual void clearConnectedTo();
50   inline void clearConnectedFrom() { connectedFrom = NULL; }
51   virtual void clearConnections();
52   //virtual void connectionsValidation(QStack<AbstractInterface*> *interfacetoValidate, QList<AbstractInterface*> *validatedInterfaces) throw(Exception) = 0;  
53
54 protected:
55   /*!
56    * \brief connectedTo lists of connections to interfaces owned by other blocks (functional or group)
57    * Since the graph is oriented, and taking into account it modles a FPGA desing,
58    * this interface may be connected to several interfaces owned by other blocks (functional or group).
59    * connectedTo references such interfaces if they exist.
60    */
61   QList<ConnectedInterface*> connectedTo;
62   /*!
63    * \brief connectedFrom connection from an interface owned by another blocks (functional or group)
64    * Since the graph is oriented, and taking into account it modles a FPGA desing,
65    * there may be a single interface owned by another block (functional or group) that is connected to
66    * this interface. connecteFrom references such an interface if it exists.
67    */
68   ConnectedInterface* connectedFrom;  
69 };
70
71
72 #endif // __CONNECTEDINTERFACE_H__