2010-03-27 13:38:57 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010 Srivats P.
|
|
|
|
|
|
|
|
This file is part of "Ostinato"
|
|
|
|
|
|
|
|
This is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
#ifndef _MAC_H
|
|
|
|
#define _MAC_H
|
|
|
|
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
|
|
|
|
#include "mac.pb.h"
|
|
|
|
#include "ui_mac.h"
|
|
|
|
|
|
|
|
#define MAX_MAC_ITER_COUNT 256
|
|
|
|
|
|
|
|
class MacConfigForm : public QWidget, public Ui::mac
|
|
|
|
{
|
2009-12-28 02:31:28 -06:00
|
|
|
Q_OBJECT
|
2009-04-27 11:51:44 -05:00
|
|
|
public:
|
2009-12-28 02:31:28 -06:00
|
|
|
MacConfigForm(QWidget *parent = 0);
|
|
|
|
virtual ~MacConfigForm();
|
2009-04-27 11:51:44 -05:00
|
|
|
private slots:
|
2009-12-28 02:31:28 -06:00
|
|
|
void on_cmbDstMacMode_currentIndexChanged(int index);
|
|
|
|
void on_cmbSrcMacMode_currentIndexChanged(int index);
|
2009-04-27 11:51:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class MacProtocol : public AbstractProtocol
|
|
|
|
{
|
|
|
|
private:
|
2009-12-28 02:31:28 -06:00
|
|
|
OstProto::Mac data;
|
|
|
|
MacConfigForm *configForm;
|
|
|
|
enum macfield
|
|
|
|
{
|
|
|
|
mac_dstAddr = 0,
|
|
|
|
mac_srcAddr,
|
|
|
|
|
|
|
|
mac_dstMacMode,
|
|
|
|
mac_dstMacCount,
|
|
|
|
mac_dstMacStep,
|
|
|
|
mac_srcMacMode,
|
|
|
|
mac_srcMacCount,
|
|
|
|
mac_srcMacStep,
|
|
|
|
|
|
|
|
mac_fieldCount
|
|
|
|
};
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
public:
|
2009-12-28 02:31:28 -06:00
|
|
|
MacProtocol(StreamBase *stream, AbstractProtocol *parent = 0);
|
|
|
|
virtual ~MacProtocol();
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
static AbstractProtocol* createInstance(StreamBase *stream,
|
|
|
|
AbstractProtocol *parent = 0);
|
|
|
|
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-12-28 02:31:28 -06:00
|
|
|
virtual void protoDataCopyInto(OstProto::Protocol &protocol) const;
|
|
|
|
virtual void protoDataCopyFrom(const OstProto::Protocol &protocol);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual QString name() const;
|
|
|
|
virtual QString shortName() const;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual int fieldCount() const;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual AbstractProtocol::FieldFlags fieldFlags(int index) const;
|
|
|
|
virtual QVariant fieldData(int index, FieldAttrib attrib,
|
|
|
|
int streamIndex = 0) const;
|
|
|
|
virtual bool setFieldData(int index, const QVariant &value,
|
|
|
|
FieldAttrib attrib = FieldValue);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual bool isProtocolFrameValueVariable() const;
|
2009-11-13 10:00:57 -06:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual QWidget* configWidget();
|
|
|
|
virtual void loadConfigWidget();
|
|
|
|
virtual void storeConfigWidget();
|
2009-04-27 11:51:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|