10#ifndef ATAP_DATA_MODEL_H
11#define ATAP_DATA_MODEL_H
19#include <QAbstractListModel>
38 DISPLAY_FILTER = Qt::UserRole,
39 UNFORMATTED_DISPLAYDATA,
57 DATAMODEL_CONVERSATION,
87 int rowCount(
const QModelIndex &parent = QModelIndex())
const;
89 virtual int columnCount(
const QModelIndex &parent = QModelIndex())
const = 0;
90 virtual QVariant headerData(
int section, Qt::Orientation orientation = Qt::Horizontal,
int role = Qt::DisplayRole)
const = 0;
91 virtual QVariant data(
const QModelIndex &idx,
int role = Qt::DisplayRole)
const = 0;
165 void limitToDisplayFilter(
bool limit);
224 void tapListenerChanged(
bool enable);
228 static void tapReset(
void *tapdata);
229 static void tapDraw(
void *tap_data);
231 virtual tap_packet_cb conversationPacketHandler();
234 void updateData(GArray * data);
248 double _minRelStartTime;
249 double _maxRelStopTime;
271 ENDP_COLUMN_PACKETS_TOTAL,
272 ENDP_COLUMN_BYTES_TOTAL,
274 ENDP_COLUMN_BYTES_AB,
276 ENDP_COLUMN_BYTES_BA,
278 ENDP_COLUMN_GEO_COUNTRY = ENDP_NUM_COLUMNS,
279 ENDP_COLUMN_GEO_CITY,
280 ENDP_COLUMN_GEO_LATITUDE,
281 ENDP_COLUMN_GEO_LONGITUDE,
282 ENDP_COLUMN_GEO_AS_NUM,
283 ENDP_COLUMN_GEO_AS_ORG,
285 } endpoint_column_type_e;
289 int columnCount(
const QModelIndex &parent = QModelIndex())
const override;
290 QVariant headerData(
int section, Qt::Orientation orientation = Qt::Horizontal,
int role = Qt::DisplayRole)
const override;
291 QVariant data(
const QModelIndex &idx,
int role = Qt::DisplayRole)
const override;
304 CONV_COLUMN_SRC_ADDR,
305 CONV_COLUMN_SRC_PORT,
306 CONV_COLUMN_DST_ADDR,
307 CONV_COLUMN_DST_PORT,
311 CONV_COLUMN_PACKETS_TOTAL,
312 CONV_COLUMN_BYTES_TOTAL,
314 CONV_COLUMN_BYTES_AB,
316 CONV_COLUMN_BYTES_BA,
318 CONV_COLUMN_DURATION,
322 CONV_INDEX_COLUMN = CONV_NUM_COLUMNS
323 } conversation_column_type_e;
326 CONV_TCP_EXT_COLUMN_A = CONV_INDEX_COLUMN,
327 CONV_TCP_EXT_NUM_COLUMNS,
328 CONV_TCP_EXT_INDEX_COLUMN = CONV_TCP_EXT_NUM_COLUMNS
329 } conversation_tcp_ext_column_type_e;
333 int columnCount(
const QModelIndex &parent = QModelIndex())
const override;
334 QVariant headerData(
int section, Qt::Orientation orientation = Qt::Horizontal,
int role = Qt::DisplayRole)
const override;
335 QVariant data(
const QModelIndex &idx,
int role = Qt::DisplayRole)
const override;
DataModel for tap user data.
Definition atap_data_model.h:33
virtual void setResolveNames(bool resolve)=0
Enable or disable if names should be resolved.
bool showTotalColumn() const
A total column is filled.
Definition atap_data_model.cpp:314
bool resolveNames() const
Is the model set to resolve names in address and ports columns.
Definition atap_data_model.cpp:251
bool enableTap()
Enable tapping in this model.
Definition atap_data_model.cpp:106
QString tap() const
Returns the name for the tap being used.
Definition atap_data_model.cpp:79
bool allowsNameResolution() const
Does the model allow names to be resolved.
Definition atap_data_model.cpp:256
virtual void useAbsoluteTime(bool absolute)=0
Use absolute time for any column supporting it.
dataModelType modelType() const
Return the model type.
Definition atap_data_model.cpp:304
void setFilter(QString filter)
Set the filter string.
Definition atap_data_model.cpp:282
void disableTap()
Disable the tapping for this model.
Definition atap_data_model.cpp:133
void updateFlags(unsigned flag)
Update the flags.
Definition atap_data_model.cpp:142
int rowCount(const QModelIndex &parent=QModelIndex()) const
Number of rows under the given parent in this model, which is the total number of rows for the empty ...
Definition atap_data_model.cpp:168
bool portsAreHidden() const
Are ports hidden for this model.
Definition atap_data_model.cpp:309
int protoId() const
The protocol id for the tap.
Definition atap_data_model.cpp:74
virtual void useNanosecondTimestamps(bool nanoseconds)=0
Use nanosecond timestamps if requested.
QString filter() const
Return a filter set for the model.
Definition atap_data_model.cpp:299
Definition atap_data_model.h:299
void useAbsoluteTime(bool absolute) override
Use absolute time for any column supporting it.
Definition atap_data_model.cpp:917
bool showConversationId(int row=0) const
Show the conversation id if available.
Definition atap_data_model.cpp:891
void useNanosecondTimestamps(bool nanoseconds) override
Use nanosecond timestamps if requested.
Definition atap_data_model.cpp:929
void setResolveNames(bool resolve) override
Enable or disable if names should be resolved.
Definition atap_data_model.cpp:906
Definition atap_data_model.h:261
void useNanosecondTimestamps(bool nanoseconds) override
Use nanosecond timestamps if requested.
Definition atap_data_model.cpp:575
void setResolveNames(bool resolve) override
Enable or disable if names should be resolved.
Definition atap_data_model.cpp:555
void useAbsoluteTime(bool absolute) override
Use absolute time for any column supporting it.
Definition atap_data_model.cpp:566
Definition conversation_table.h:53
Definition conversation_table.h:121
Definition conversation_table.c:24