2009-04-27 11:51:44 -05:00
|
|
|
#ifndef _ABSTRACT_PROTOCOL_H
|
|
|
|
#define _ABSTRACT_PROTOCOL_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QWidget>
|
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
|
|
|
#include <QLinkedList>
|
2009-05-24 09:54:11 -05:00
|
|
|
#include <QFlags>
|
2009-04-27 11:51:44 -05:00
|
|
|
|
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
|
|
|
//#include "../rpc/pbhelper.h"
|
2009-08-02 09:52:34 -05:00
|
|
|
#include "protocol.pb.h"
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
#define BASE_BIN (2)
|
|
|
|
#define BASE_OCT (8)
|
|
|
|
#define BASE_DEC (10)
|
|
|
|
#define BASE_HEX (16)
|
|
|
|
|
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
|
|
|
#define uintToHexStr(num, bytes) \
|
|
|
|
QString("%1").arg(num, bytes*2, BASE_HEX, QChar('0'))
|
|
|
|
|
2009-08-02 09:52:34 -05:00
|
|
|
class StreamBase;
|
2009-10-14 10:16:56 -05:00
|
|
|
class ProtocolListIterator;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
class AbstractProtocol
|
|
|
|
{
|
2009-10-14 10:16:56 -05:00
|
|
|
template <int protoNumber, class ProtoA, class ProtoB>
|
|
|
|
friend class ComboProtocol;
|
|
|
|
friend class ProtocolListIterator;
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
private:
|
|
|
|
mutable int metaCount;
|
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
|
|
|
mutable int protoSize;
|
2009-04-27 11:51:44 -05:00
|
|
|
mutable QString protoAbbr;
|
|
|
|
|
|
|
|
protected:
|
2009-10-14 10:16:56 -05:00
|
|
|
StreamBase *mpStream;
|
|
|
|
AbstractProtocol *parent;
|
|
|
|
AbstractProtocol *prev;
|
|
|
|
AbstractProtocol *next;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
public:
|
2009-05-24 09:54:11 -05:00
|
|
|
enum FieldFlag {
|
|
|
|
FieldIsNormal = 0x0,
|
|
|
|
FieldIsMeta = 0x1,
|
|
|
|
FieldIsCksum = 0x2
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(FieldFlags, FieldFlag);
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
enum FieldAttrib {
|
|
|
|
FieldName, //! name
|
|
|
|
FieldValue, //! value in host byte order (user editable)
|
|
|
|
FieldTextValue, //! value as text
|
|
|
|
FieldFrameValue, //! frame encoded value in network byte order
|
|
|
|
FieldBitSize, //! size in bits
|
|
|
|
};
|
|
|
|
|
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
|
|
|
enum ProtocolIdType {
|
2009-11-13 10:00:57 -06:00
|
|
|
ProtocolIdNone,
|
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
|
|
|
ProtocolIdLlc,
|
|
|
|
ProtocolIdEth,
|
|
|
|
ProtocolIdIp,
|
|
|
|
};
|
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
enum CksumType {
|
|
|
|
CksumIp,
|
|
|
|
CksumIpPseudo,
|
|
|
|
CksumTcpUdp,
|
|
|
|
|
|
|
|
CksumMax
|
|
|
|
};
|
|
|
|
|
2009-10-14 10:16:56 -05:00
|
|
|
AbstractProtocol(StreamBase *stream, AbstractProtocol *parent = 0);
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual ~AbstractProtocol();
|
|
|
|
|
2009-10-14 10:16:56 -05:00
|
|
|
static AbstractProtocol* createInstance(StreamBase *stream,
|
|
|
|
AbstractProtocol *parent = 0);
|
2009-08-02 09:52:34 -05:00
|
|
|
virtual quint32 protocolNumber() const;
|
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
|
|
|
|
2009-08-02 09:52:34 -05:00
|
|
|
virtual void protoDataCopyInto(OstProto::Protocol &protocol) const = 0;
|
|
|
|
virtual void protoDataCopyFrom(const OstProto::Protocol &protocol) = 0;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
virtual QString name() const;
|
|
|
|
virtual QString shortName() const;
|
|
|
|
|
2009-11-13 10:00:57 -06:00
|
|
|
virtual ProtocolIdType protocolIdType() const;
|
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
|
|
|
virtual quint32 protocolId(ProtocolIdType type) const;
|
|
|
|
quint32 payloadProtocolId(ProtocolIdType type) const;
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual int fieldCount() const;
|
2009-11-16 07:09:20 -06:00
|
|
|
int metaFieldCount() const;
|
2009-04-27 11:51:44 -05:00
|
|
|
int frameFieldCount() const;
|
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
virtual FieldFlags fieldFlags(int index) const;
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual QVariant fieldData(int index, FieldAttrib attrib,
|
2009-05-24 09:54:11 -05:00
|
|
|
int streamIndex = 0) const;
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual bool setFieldData(int index, const QVariant &value,
|
2009-05-24 09:54:11 -05:00
|
|
|
FieldAttrib attrib = FieldValue);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
QByteArray protocolFrameValue(int streamIndex = 0,
|
|
|
|
bool forCksum = false) const;
|
2009-11-03 08:02:09 -06:00
|
|
|
virtual int protocolFrameSize(int streamIndex = 0) const;
|
|
|
|
int protocolFrameOffset(int streamIndex = 0) const;
|
|
|
|
int protocolFramePayloadSize(int streamIndex = 0) const;
|
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
|
|
|
|
2009-11-13 10:00:57 -06:00
|
|
|
virtual bool isProtocolFrameValueVariable() const;
|
|
|
|
virtual bool isProtocolFrameSizeVariable() const;
|
|
|
|
bool isProtocolFramePayloadValueVariable() const;
|
|
|
|
bool isProtocolFramePayloadSizeVariable() const;
|
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
virtual quint32 protocolFrameCksum(int streamIndex = 0,
|
|
|
|
CksumType cksumType = CksumIp) const;
|
|
|
|
quint32 protocolFrameHeaderCksum(int streamIndex = 0,
|
|
|
|
CksumType cksumType = CksumIp) const;
|
|
|
|
quint32 protocolFramePayloadCksum(int streamIndex = 0,
|
|
|
|
CksumType cksumType = CksumIp) const;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
virtual QWidget* configWidget() = 0;
|
|
|
|
virtual void loadConfigWidget() = 0;
|
|
|
|
virtual void storeConfigWidget() = 0;
|
|
|
|
};
|
2009-05-24 09:54:11 -05:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(AbstractProtocol::FieldFlags);
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
#endif
|