2009-04-27 11:51:44 -05:00
|
|
|
#ifndef _PAYLOAD_H
|
|
|
|
#define _PAYLOAD_H
|
|
|
|
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
|
|
|
|
#include "payload.pb.h"
|
|
|
|
#include "ui_payload.h"
|
|
|
|
|
|
|
|
class PayloadConfigForm : public QWidget, public Ui::payload
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PayloadConfigForm(QWidget *parent = 0);
|
|
|
|
private slots:
|
|
|
|
void on_cmbPatternMode_currentIndexChanged(int index);
|
|
|
|
};
|
|
|
|
|
|
|
|
class PayloadProtocol : public AbstractProtocol
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
OstProto::Payload data;
|
2009-08-02 09:52:34 -05:00
|
|
|
PayloadConfigForm *configForm;
|
2009-04-27 11:51:44 -05:00
|
|
|
enum payloadfield
|
|
|
|
{
|
|
|
|
payload_dataPattern,
|
|
|
|
|
|
|
|
// Meta fields
|
|
|
|
payload_dataPatternMode,
|
|
|
|
|
|
|
|
payload_fieldCount
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2009-10-14 10:16:56 -05:00
|
|
|
PayloadProtocol(StreamBase *stream, AbstractProtocol *parent = 0);
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual ~PayloadProtocol();
|
|
|
|
|
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;
|
|
|
|
virtual void protoDataCopyFrom(const OstProto::Protocol &protocol);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
virtual QString name() const;
|
|
|
|
virtual QString shortName() const;
|
|
|
|
|
2009-11-03 08:02:09 -06:00
|
|
|
virtual int protocolFrameSize(int streamIndex = 0) const;
|
2009-05-24 09:54:11 -05:00
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual int fieldCount() const;
|
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
virtual AbstractProtocol::FieldFlags fieldFlags(int index) const;
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual QVariant fieldData(int index, FieldAttrib attrib,
|
|
|
|
int streamIndex = 0) const;
|
|
|
|
virtual bool setFieldData(int index, const QVariant &value,
|
|
|
|
FieldAttrib attrib = FieldValue);
|
|
|
|
|
|
|
|
virtual QWidget* configWidget();
|
|
|
|
virtual void loadConfigWidget();
|
|
|
|
virtual void storeConfigWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|