Common ------ - Change in OstProto - Individual protocols are now extensions of (new) message 'Protocol' instead of 'Stream' - Stream now contains a repeated Protocol which also determines the ordered set of currently selected protocols; StreamCore.frame_proto which was doing this earlier has been removed - Change in AbstractProtocol Interface - Parent changed to StreamBase - Corresponding change in constructor and factory func - createInstance() - new method protocolNumber() - returns unique id for each protocol - protoDataCopyInto/From() now copies into OstProto::Protocol instead of OstProto::Stream - Change in all subclasses of AbstractProtocol to match new interface - For all protocols, configFrom is no longer static, but each protocol has its own configForm - configForm creation is lazy - configForm is still a child of the protocol i.e. it will be destroyed alongwith the protocol - TODO: convert configWidget() to a pure factory function i.e. the protocol does not own the configForm - this requires us to pass the widget into load/storeConfigWidget() methods - ProtocolCollection class removed alongwith its .h and .cpp - ProtocolList class redefined to serve the purpose of ProtocolCollection - New class ProtocolListIterator defined to iterate ProtocolList - AbstractProtocol methods now use the ProtocolListIterator - Factory function createProtocol() added to ProtocolManager - OstProto::StreamCore accessor functions moved from Stream to StreamBase Server ------ - MyService uses the newly moved accessors to StreamBase for OstProto::StreamCore members - StreamInfo now uses the protocols to create the packet Client ------ - StreamConfigDialog now uses ProtocolListIterator - So does PacketModel
74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
#ifndef _STREAM_CONFIG_DIALOG_H
|
|
#define _STREAM_CONFIG_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_streamconfigdialog.h"
|
|
#include "port.h"
|
|
#include "stream.h"
|
|
#include "packetmodel.h"
|
|
#include "modeltest.h"
|
|
|
|
#define MAX_MAC_ITER_COUNT 256
|
|
#define MIN_PKT_LEN 64
|
|
#define MAX_PKT_LEN 1522
|
|
|
|
/*
|
|
** TODO
|
|
** \todo Improve HexStr handling
|
|
**
|
|
*/
|
|
|
|
|
|
class StreamConfigDialog : public QDialog, public Ui::StreamConfigDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
StreamConfigDialog(Port &port, uint streamIndex, QWidget *parent = 0);
|
|
~StreamConfigDialog();
|
|
|
|
private:
|
|
|
|
QButtonGroup *bgFrameType;
|
|
QButtonGroup *bgL3Proto;
|
|
QButtonGroup *bgL4Proto;
|
|
|
|
QStringListModel *mpAvailableProtocolsModel;
|
|
|
|
Port& mPort;
|
|
uint mCurrentStreamIndex;
|
|
|
|
Stream *mpStream;
|
|
ProtocolListIterator *_iter;
|
|
|
|
PacketModel *mpPacketModel;
|
|
ModelTest *mpPacketModelTester;
|
|
|
|
// The following static variables are used to track the "selected" tab
|
|
// for the various tab widgets so that it can be restored when the dialog
|
|
// is opened the next time
|
|
static int lastTopLevelTabIndex;
|
|
static int lastProtoTabIndex;
|
|
|
|
void setupUiExtra();
|
|
void updateSelectedProtocols();
|
|
void LoadCurrentStream();
|
|
void StoreCurrentStream();
|
|
|
|
private slots:
|
|
void on_cmbPktLenMode_currentIndexChanged(QString mode);
|
|
void on_pbPrev_clicked();
|
|
void on_pbNext_clicked();
|
|
|
|
void updateContents();
|
|
|
|
void on_twTopLevel_currentChanged(int index);
|
|
void on_twProto_currentChanged(int index);
|
|
|
|
void update_NumPacketsAndNumBursts();
|
|
|
|
void on_pbOk_clicked();
|
|
};
|
|
|
|
#endif
|
|
|