2008-08-30 03:49:08 -05:00
|
|
|
#include <qendian.h>
|
2008-08-23 23:39:08 -05:00
|
|
|
#include <QHostAddress>
|
2008-05-03 09:37:10 -05:00
|
|
|
|
2008-08-23 23:39:08 -05:00
|
|
|
#include "stream.h"
|
2009-08-02 09:52:34 -05:00
|
|
|
//#include "../common/protocollist.h"
|
|
|
|
#include "../common/protocollistiterator.h"
|
|
|
|
#include "../common/abstractprotocol.h"
|
2008-08-08 22:22:13 -05:00
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
Stream::Stream()
|
2008-08-23 23:39:08 -05:00
|
|
|
{
|
2009-12-28 02:31:28 -06:00
|
|
|
//mId = 0xFFFFFFFF;
|
|
|
|
setEnabled(true);
|
2008-08-23 23:39:08 -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
|
|
|
Stream::~Stream()
|
2008-08-23 23:39:08 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
void Stream::loadProtocolWidgets()
|
2008-08-23 23:39:08 -05:00
|
|
|
{
|
2009-08-02 09:52:34 -05:00
|
|
|
#if 0
|
2009-12-28 02:31:28 -06:00
|
|
|
//protocols.loadConfigWidgets();
|
|
|
|
foreach(AbstractProtocol* proto, *currentFrameProtocols)
|
|
|
|
{
|
|
|
|
proto->loadConfigWidget();
|
|
|
|
}
|
2009-08-02 09:52:34 -05:00
|
|
|
#else
|
2009-12-28 02:31:28 -06:00
|
|
|
ProtocolListIterator *iter;
|
2009-08-02 09:52:34 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
iter = createProtocolListIterator();
|
|
|
|
while (iter->hasNext())
|
|
|
|
{
|
|
|
|
AbstractProtocol* p = iter->next();
|
|
|
|
p->loadConfigWidget();
|
|
|
|
}
|
|
|
|
delete iter;
|
2009-08-02 09:52:34 -05:00
|
|
|
#endif
|
2008-08-23 23:39:08 -05:00
|
|
|
}
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
void Stream::storeProtocolWidgets()
|
2008-08-23 23:39:08 -05:00
|
|
|
{
|
2009-08-02 09:52:34 -05:00
|
|
|
#if 0
|
2009-12-28 02:31:28 -06:00
|
|
|
//protocols.storeConfigWidgets();
|
|
|
|
foreach(const AbstractProtocol* proto, frameProtocol())
|
|
|
|
{
|
|
|
|
proto->storeConfigWidget();
|
|
|
|
_iter->toFront();
|
|
|
|
}
|
2009-08-02 09:52:34 -05:00
|
|
|
#else
|
2009-12-28 02:31:28 -06:00
|
|
|
ProtocolListIterator *iter;
|
2009-08-02 09:52:34 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
iter = createProtocolListIterator();
|
|
|
|
while (iter->hasNext())
|
|
|
|
{
|
|
|
|
AbstractProtocol* p = iter->next();
|
|
|
|
p->storeConfigWidget();
|
|
|
|
}
|
|
|
|
delete iter;
|
2009-08-02 09:52:34 -05:00
|
|
|
#endif
|
2008-08-23 23:39:08 -05:00
|
|
|
}
|