1 | #ifndef IN_OUT_BASE_H
|
---|
2 | #define IN_OUT_BASE_H
|
---|
3 |
|
---|
4 | #include <Pacpus/kernel/pacpus.h>
|
---|
5 | #include <Pacpus/kernel/ConnectionBase.h>
|
---|
6 | #include <Pacpus/kernel/PacpusEvent.h>
|
---|
7 |
|
---|
8 | #include <QApplication>
|
---|
9 | #include <typeinfo>
|
---|
10 | #include <QList>
|
---|
11 | #include <QStringList>
|
---|
12 |
|
---|
13 | namespace pacpus {
|
---|
14 |
|
---|
15 | class ComponentBase;
|
---|
16 |
|
---|
17 | class PACPUSLIB_API AbstractInterface : public QObject
|
---|
18 | {
|
---|
19 | Q_OBJECT
|
---|
20 | protected:
|
---|
21 | AbstractInterface(QString name, ComponentBase * component, QObject * parent = 0):_name(name),_component(component),QObject(parent) {}
|
---|
22 | ~AbstractInterface(){}
|
---|
23 | public:
|
---|
24 | QString getSignature();
|
---|
25 | QString getName() {return _name;}
|
---|
26 | virtual QString getDataType() = 0;
|
---|
27 | ComponentBase * getComponent() {return _component;}
|
---|
28 |
|
---|
29 | void addConnection(ConnectionBase connection) { _connection.append(connection);}
|
---|
30 | bool removeConnection(ConnectionBase connection) { return _connection.removeOne(connection);}
|
---|
31 |
|
---|
32 | bool hasConnection() { return _connection.size() > 0;}
|
---|
33 |
|
---|
34 | protected:
|
---|
35 | QString _name;
|
---|
36 | ComponentBase * _component;
|
---|
37 | QList<ConnectionBase> _connection;
|
---|
38 | };
|
---|
39 |
|
---|
40 | class PACPUSLIB_API InputInterfaceBase : public AbstractInterface
|
---|
41 | {
|
---|
42 | Q_OBJECT
|
---|
43 | protected:
|
---|
44 | InputInterfaceBase(QString name, ComponentBase * component, QObject * parent = 0):AbstractInterface(name,component,parent) {}
|
---|
45 |
|
---|
46 | public:
|
---|
47 | //InputInterfaceBase(QString name, ComponentBase * component,int a, QObject * parent = 0):AbstractInterface(name,component,parent) {} // TODO add ctor with function pointer
|
---|
48 |
|
---|
49 | enum ReadingMode {
|
---|
50 | NeverSkip,
|
---|
51 | TimeBounded,
|
---|
52 | GetLast
|
---|
53 | };
|
---|
54 |
|
---|
55 | virtual ~InputInterfaceBase(){}
|
---|
56 |
|
---|
57 | virtual void customEvent(QEvent* e) {
|
---|
58 |
|
---|
59 | //if(event->type())
|
---|
60 | //TODO get event Type anf call callback function
|
---|
61 |
|
---|
62 | QByteArray buf;
|
---|
63 | QDataStream out(&buf,QIODevice::WriteOnly);
|
---|
64 | out << e;
|
---|
65 | // Callback QByteArray
|
---|
66 | }
|
---|
67 |
|
---|
68 | void setReadingMode(ReadingMode mode) { readingMode_ = mode;}
|
---|
69 | virtual PacpusEvent getEventTemplate() {return PacpusEvent(GENERIC_EVENT);} // TODO check ??
|
---|
70 | protected:
|
---|
71 | ReadingMode readingMode_;
|
---|
72 | };
|
---|
73 |
|
---|
74 | class PACPUSLIB_API OutputInterfaceBase: public AbstractInterface
|
---|
75 | {
|
---|
76 | Q_OBJECT
|
---|
77 |
|
---|
78 | public:
|
---|
79 | OutputInterfaceBase(QString name, ComponentBase * component, QObject * parent = 0):AbstractInterface(name,component,parent) {}
|
---|
80 |
|
---|
81 | virtual ~OutputInterfaceBase(){}
|
---|
82 |
|
---|
83 | QStringList getInputConnectedList() {
|
---|
84 | QStringList list;
|
---|
85 | for(QList<ConnectionBase>::iterator it = _connection.begin(); it!=_connection.end(); ++it)
|
---|
86 | list.append(it->getInterface()->getName());
|
---|
87 | return list;
|
---|
88 | }
|
---|
89 |
|
---|
90 | void send(/*const*/ QByteArray & data) {
|
---|
91 |
|
---|
92 | // TODo getEvent
|
---|
93 | //PacpusEvent& event = _connection.at(0).getInterface()->
|
---|
94 | QDataStream in(&data,QIODevice::ReadOnly);
|
---|
95 | //in >> event;
|
---|
96 |
|
---|
97 | //for(QList<ConnectionBase>::iterator it = _connection.begin(); it!=_connection.end(); ++it)
|
---|
98 | // QApplication::postEvent(it->getInterface(),&event,it->getPriority());
|
---|
99 |
|
---|
100 |
|
---|
101 | }
|
---|
102 |
|
---|
103 | };
|
---|
104 |
|
---|
105 | static bool connectInterface(OutputInterfaceBase* out, InputInterfaceBase * in, int priority)
|
---|
106 | {
|
---|
107 | if(out->getDataType() == in->getDataType() || out->getDataType() == QString(typeid(QByteArray).name()) || in->getDataType() == QString(typeid(QByteArray).name())) {
|
---|
108 |
|
---|
109 | // Add connection
|
---|
110 | out->addConnection(ConnectionBase(in,priority)); // TODO make connect function
|
---|
111 | in->addConnection(ConnectionBase(out,priority));
|
---|
112 | //LOG_INFO("connection : Output " << out->getSignature() << " => Input " << in->getSignature());
|
---|
113 | in->setReadingMode(InputInterfaceBase::NeverSkip);
|
---|
114 | return true;
|
---|
115 | } else {
|
---|
116 | //LOG_WARN("connecting " << out->getSignature() << ":" << out->getDataType() << " to " << in->getSignature() << ":" << in->getDataType() << " failled : DataType incompatible " << QString(typeid(QByteArray).name()));
|
---|
117 | return false;
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | } // namespace pacpus
|
---|
122 |
|
---|
123 | #endif // IN_OUT_BASE_H
|
---|