0103696016
- new method: fieldFlags() - isCksum, isMeta; Note: isMeta is a flag now not a attrib - fieldData() bit fields are now in lsb not msb - protocolFrameValue() and subclasses changed accordingly - protocolFrameValue() now takes an additional bool param indicating whether the frameValue is being requested for a checksum calculation; if so fields which are checksum fields are assumed to be zero and their value is not fetched to prevent infinite recursion - Other Protocols - mac: srcMac/dstMac modes is now working - vlan: implemented VLAN protocol - ip4: src/dst Addr modes is now working - udp/tcp: checksum done - Basic testing done for MAC, VLAN, IPv4, UDP and TCP protocols - sample protocol: .cpp/.h added to repos - need to be made compilable - StreamConfigDialog - Redesigned the protocol selection tab to accomodate "Advanced Protocol Selection" - L2 Tab config widgets are now in 2 columns - Packet Tree View is no longer collapsed if selected protocols don't change
198 lines
4.3 KiB
C++
198 lines
4.3 KiB
C++
#include <QHostAddress>
|
|
#include "packetmodel.h"
|
|
|
|
PacketModel::PacketModel(const QList<AbstractProtocol*> &selectedProtocols,
|
|
QObject *parent)
|
|
{
|
|
mSelectedProtocols = selectedProtocols;
|
|
}
|
|
|
|
void PacketModel::setSelectedProtocols(
|
|
const QList<AbstractProtocol*> &selectedProtocols)
|
|
{
|
|
if (mSelectedProtocols != selectedProtocols)
|
|
{
|
|
mSelectedProtocols = selectedProtocols;
|
|
reset();
|
|
}
|
|
}
|
|
|
|
int PacketModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
IndexId parentId;
|
|
|
|
// qDebug("in %s", __FUNCTION__);
|
|
|
|
// Parent == Invalid i.e. Invisible Root.
|
|
// ==> Children are Protocol (Top Level) Items
|
|
if (!parent.isValid())
|
|
return mSelectedProtocols.size();
|
|
|
|
// Parent - Valid Item
|
|
parentId.w = parent.internalId();
|
|
switch(parentId.ws.type)
|
|
{
|
|
case ITYP_PROTOCOL:
|
|
return mSelectedProtocols.at(parentId.ws.protocol)->frameFieldCount();
|
|
case ITYP_FIELD:
|
|
return 0;
|
|
default:
|
|
qWarning("%s: Unhandled ItemType", __FUNCTION__);
|
|
}
|
|
|
|
Q_ASSERT(1 == 1); // Unreachable code
|
|
qWarning("%s: Catch all - need to investigate", __FUNCTION__);
|
|
return 0; // catch all
|
|
}
|
|
|
|
int PacketModel::columnCount(const QModelIndex &parent) const
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
QModelIndex PacketModel::index(int row, int col, const QModelIndex &parent) const
|
|
{
|
|
QModelIndex index;
|
|
IndexId id, parentId;
|
|
|
|
if (!hasIndex(row, col, parent))
|
|
goto _exit;
|
|
|
|
// Parent is Invisible Root
|
|
// Request for a Protocol Item
|
|
if (!parent.isValid())
|
|
{
|
|
id.w = 0;
|
|
id.ws.type = ITYP_PROTOCOL;
|
|
id.ws.protocol = row;
|
|
index = createIndex(row, col, id.w);
|
|
goto _exit;
|
|
}
|
|
|
|
// Parent is a Valid Item
|
|
parentId.w = parent.internalId();
|
|
id.w = parentId.w;
|
|
switch(parentId.ws.type)
|
|
{
|
|
case ITYP_PROTOCOL:
|
|
id.ws.type = ITYP_FIELD;
|
|
index = createIndex(row, col, id.w);
|
|
goto _exit;
|
|
|
|
case ITYP_FIELD:
|
|
goto _exit;
|
|
|
|
default:
|
|
qWarning("%s: Unhandled ItemType", __FUNCTION__);
|
|
}
|
|
|
|
Q_ASSERT(1 == 1); // Unreachable code
|
|
|
|
_exit:
|
|
return index;
|
|
}
|
|
|
|
QModelIndex PacketModel::parent(const QModelIndex &index) const
|
|
{
|
|
QModelIndex parentIndex;
|
|
IndexId id, parentId;
|
|
|
|
if (!index.isValid())
|
|
return QModelIndex();
|
|
|
|
id.w = index.internalId();
|
|
parentId.w = id.w;
|
|
switch(id.ws.type)
|
|
{
|
|
case ITYP_PROTOCOL:
|
|
// return invalid index for invisible root
|
|
goto _exit;
|
|
|
|
case ITYP_FIELD:
|
|
parentId.ws.type = ITYP_PROTOCOL;
|
|
parentIndex = createIndex(id.ws.protocol, 0, parentId.w);
|
|
goto _exit;
|
|
|
|
default:
|
|
qWarning("%s: Unhandled ItemType", __FUNCTION__);
|
|
}
|
|
|
|
Q_ASSERT(1 == 1); // Unreachable code
|
|
|
|
_exit:
|
|
return parentIndex;
|
|
}
|
|
|
|
QVariant PacketModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
IndexId id;
|
|
|
|
if (!index.isValid())
|
|
return QVariant();
|
|
|
|
id.w = index.internalId();
|
|
|
|
// FIXME(HI): Relook at this completely
|
|
if (role == Qt::UserRole)
|
|
{
|
|
switch(id.ws.type)
|
|
{
|
|
case ITYP_PROTOCOL:
|
|
qDebug("*** %d/%d", id.ws.protocol, mSelectedProtocols.size());
|
|
return mSelectedProtocols.at(id.ws.protocol)->
|
|
protocolFrameValue();
|
|
|
|
case ITYP_FIELD:
|
|
return mSelectedProtocols.at(id.ws.protocol)->fieldData(
|
|
index.row(), AbstractProtocol::FieldFrameValue);
|
|
|
|
default:
|
|
qWarning("%s: Unhandled ItemType", __FUNCTION__);
|
|
}
|
|
return QByteArray();
|
|
}
|
|
|
|
// FIXME: Use a new enum here instead of UserRole
|
|
if (role == (Qt::UserRole+1))
|
|
{
|
|
switch(id.ws.type)
|
|
{
|
|
case ITYP_PROTOCOL:
|
|
return mSelectedProtocols.at(id.ws.protocol)->
|
|
protocolFrameValue().size();
|
|
|
|
case ITYP_FIELD:
|
|
return mSelectedProtocols.at(id.ws.protocol)->fieldData(
|
|
index.row(), AbstractProtocol::FieldBitSize);
|
|
|
|
default:
|
|
qWarning("%s: Unhandled ItemType", __FUNCTION__);
|
|
}
|
|
return QVariant();
|
|
}
|
|
|
|
if (role != Qt::DisplayRole)
|
|
return QVariant();
|
|
|
|
switch(id.ws.type)
|
|
{
|
|
case ITYP_PROTOCOL:
|
|
return QString("%1 (%2)")
|
|
.arg(mSelectedProtocols.at(id.ws.protocol)->shortName())
|
|
.arg(mSelectedProtocols.at(id.ws.protocol)->name());
|
|
|
|
case ITYP_FIELD:
|
|
return mSelectedProtocols.at(id.ws.protocol)->fieldData(index.row(),
|
|
AbstractProtocol::FieldName).toString() + QString(" : ") +
|
|
mSelectedProtocols.at(id.ws.protocol)->fieldData(index.row(),
|
|
AbstractProtocol::FieldTextValue).toString();
|
|
|
|
default:
|
|
qWarning("%s: Unhandled ItemType", __FUNCTION__);
|
|
}
|
|
|
|
Q_ASSERT(1 == 1); // Unreachable code
|
|
|
|
return QVariant();
|
|
}
|