-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacmodel.cpp
More file actions
87 lines (77 loc) · 2.05 KB
/
macmodel.cpp
File metadata and controls
87 lines (77 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "macmodel.h"
#include "settings.h"
#include <chrono>
using std::chrono::duration_cast, std::chrono::seconds;
MacModel::MacModel(const SharedStorageHandle & handle, QObject *parent)
: QAbstractTableModel(parent),
storageHandle_m{handle},
timer_m{this}
{
timer_m.setInterval(MAC_UPDATE_TIMER.count());
connect(&timer_m, &QTimer::timeout, this, &MacModel::updateMac);
timer_m.start();
}
QVariant MacModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role == Qt::DisplayRole && orientation == Qt::Horizontal)
{
switch (section)
{
case 0:
return QString("address");
case 1:
return QString("interface");
case 2:
return QString("timeout");
}
}
return QVariant();
}
int MacModel::rowCount(const QModelIndex & parent) const
{
auto guard = storageHandle_m.guard();
return guard->macTable.size();
}
int MacModel::columnCount(const QModelIndex & parent) const
{
return 3;
}
QVariant MacModel::data(const QModelIndex & index, int role) const
{
if (!index.isValid())
{
return QVariant();
}
if (role != Qt::DisplayRole)
{
return QVariant();
}
auto guard = storageHandle_m.guard();
int currentRow = 0;
for (auto it = guard->macTable.begin(); it != guard->macTable.end(); it++)
{
if (currentRow != index.row())
{
currentRow++;
continue;
}
switch (index.column())
{
case 0:
return QVariant(QString("%1").arg(it->first.to_string().c_str()));
case 1:
return QVariant(QString("%1").arg(it->second.interface.name().c_str()));
case 2:
return QVariant(QString("%1 s").arg(duration_cast<seconds>(it->second.expiration.timeLeft()).count()));
default:
qDebug("Unknown column! %d", index.column());
return QVariant();
}
}
return QVariant();
}
void MacModel::updateMac()
{
beginResetModel();
endResetModel();
}