Protocol Framework basic code in place now. Cleanup pending.
- New Classes:
o ProtocolManager - singleton with which all protocols register
o ProtocolCollection - Aggregates all registered protocols; exports methods to work on all protocols
o StreamBase - aggregates ProtocolCollection with Stream Core and Control; the client/server side stream classes now derive from StreamBase leading to major reduction in their code (more cleanup pending)
- AbstractProtocol now supports the additional methods
o createInstance()
o protocolFrameSize()
o protocolFrameOffset(), protocolFramePayloadSize()
o protocolId(), payloadProtocolId()
o protocolFrameCksum(), protocolFramePayloadCksum()
0 constructor takes an extra param - frameProtoList
- Specific protocols - eth2, llc, snap, ip4, udp, tcp now return length, protocol id and cksums correctly (tcp/udp cksum pending)
- StreamConfigDialog - protocol controls for length, cksum and protocolid are automatically updated (not fully working yet)
2009-05-10 01:27:17 -05:00
|
|
|
#ifndef _PROTOCOL_MANAGER_H
|
|
|
|
#define _PROTOCOL_MANAGER_H
|
|
|
|
|
|
|
|
#include <QMap>
|
2009-08-02 09:52:34 -05:00
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
class AbstractProtocol;
|
|
|
|
class StreamBase;
|
Protocol Framework basic code in place now. Cleanup pending.
- New Classes:
o ProtocolManager - singleton with which all protocols register
o ProtocolCollection - Aggregates all registered protocols; exports methods to work on all protocols
o StreamBase - aggregates ProtocolCollection with Stream Core and Control; the client/server side stream classes now derive from StreamBase leading to major reduction in their code (more cleanup pending)
- AbstractProtocol now supports the additional methods
o createInstance()
o protocolFrameSize()
o protocolFrameOffset(), protocolFramePayloadSize()
o protocolId(), payloadProtocolId()
o protocolFrameCksum(), protocolFramePayloadCksum()
0 constructor takes an extra param - frameProtoList
- Specific protocols - eth2, llc, snap, ip4, udp, tcp now return length, protocol id and cksums correctly (tcp/udp cksum pending)
- StreamConfigDialog - protocol controls for length, cksum and protocolid are automatically updated (not fully working yet)
2009-05-10 01:27:17 -05:00
|
|
|
|
|
|
|
class ProtocolManager
|
|
|
|
{
|
2009-12-28 02:31:28 -06:00
|
|
|
QMap<int, QString> numberToNameMap;
|
|
|
|
QMap<QString, int> nameToNumberMap;
|
|
|
|
QMultiMap<int, int> neighbourProtocols;
|
|
|
|
QMap<int, void*> factory;
|
|
|
|
QList<AbstractProtocol*> protocolList;
|
2009-11-13 10:00:57 -06:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
void populateNeighbourProtocols();
|
Protocol Framework basic code in place now. Cleanup pending.
- New Classes:
o ProtocolManager - singleton with which all protocols register
o ProtocolCollection - Aggregates all registered protocols; exports methods to work on all protocols
o StreamBase - aggregates ProtocolCollection with Stream Core and Control; the client/server side stream classes now derive from StreamBase leading to major reduction in their code (more cleanup pending)
- AbstractProtocol now supports the additional methods
o createInstance()
o protocolFrameSize()
o protocolFrameOffset(), protocolFramePayloadSize()
o protocolId(), payloadProtocolId()
o protocolFrameCksum(), protocolFramePayloadCksum()
0 constructor takes an extra param - frameProtoList
- Specific protocols - eth2, llc, snap, ip4, udp, tcp now return length, protocol id and cksums correctly (tcp/udp cksum pending)
- StreamConfigDialog - protocol controls for length, cksum and protocolid are automatically updated (not fully working yet)
2009-05-10 01:27:17 -05:00
|
|
|
|
|
|
|
public:
|
2009-12-28 02:31:28 -06:00
|
|
|
ProtocolManager();
|
2009-08-02 09:52:34 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
void registerProtocol(int protoNumber, void *protoInstanceCreator);
|
2009-08-02 09:52:34 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
AbstractProtocol* createProtocol(int protoNumber, StreamBase *stream,
|
|
|
|
AbstractProtocol *parent = 0);
|
|
|
|
AbstractProtocol* createProtocol(QString protoName, StreamBase *stream,
|
|
|
|
AbstractProtocol *parent = 0);
|
2009-08-02 09:52:34 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
bool isValidNeighbour(int protoPrefix, int protoSuffix);
|
2009-11-13 10:00:57 -06:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
QStringList protocolDatabase();
|
Protocol Framework basic code in place now. Cleanup pending.
- New Classes:
o ProtocolManager - singleton with which all protocols register
o ProtocolCollection - Aggregates all registered protocols; exports methods to work on all protocols
o StreamBase - aggregates ProtocolCollection with Stream Core and Control; the client/server side stream classes now derive from StreamBase leading to major reduction in their code (more cleanup pending)
- AbstractProtocol now supports the additional methods
o createInstance()
o protocolFrameSize()
o protocolFrameOffset(), protocolFramePayloadSize()
o protocolId(), payloadProtocolId()
o protocolFrameCksum(), protocolFramePayloadCksum()
0 constructor takes an extra param - frameProtoList
- Specific protocols - eth2, llc, snap, ip4, udp, tcp now return length, protocol id and cksums correctly (tcp/udp cksum pending)
- StreamConfigDialog - protocol controls for length, cksum and protocolid are automatically updated (not fully working yet)
2009-05-10 01:27:17 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|