forked from raspberrypi/rpi-imager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drivelistmodel.cpp
109 lines (93 loc) · 2.71 KB
/
drivelistmodel.cpp
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (C) 2020 Raspberry Pi (Trading) Limited
*/
#include "drivelistmodel.h"
#include "config.h"
#include "dependencies/drivelist/src/drivelist.hpp"
#include <QSet>
#include <QDebug>
DriveListModel::DriveListModel(QObject *parent)
: QAbstractListModel(parent)
{
_rolenames = {
{deviceRole, "device"},
{descriptionRole, "description"},
{sizeRole, "size"},
{isUsbRole, "isUsb"},
{isScsiRole, "isScsi"},
{mountpointsRole, "mountpoints"}
};
}
int DriveListModel::rowCount(const QModelIndex &) const
{
return _drivelist.count();
}
QHash<int, QByteArray> DriveListModel::roleNames() const
{
return _rolenames;
}
QVariant DriveListModel::data(const QModelIndex &index, int role) const
{
int row = index.row();
if (row < 0 || row >= _drivelist.count())
return QVariant();
QByteArray propertyName = _rolenames.value(role);
if (propertyName.isEmpty())
return QVariant();
else
return _drivelist.values().at(row)->property(propertyName);
}
void DriveListModel::refreshDriveList()
{
bool changes = false;
bool filterSystemDrives = DRIVELIST_FILTER_SYSTEM_DRIVES;
auto l = Drivelist::ListStorageDevices();
QSet<QString> drivesInNewList;
for (auto &i: l)
{
// Convert STL vector<string> to Qt QStringList
QStringList mountpoints;
for (auto &s: i.mountpoints)
{
mountpoints.append(QString::fromStdString(s));
}
if (filterSystemDrives)
{
if (i.isSystem || i.isReadOnly)
continue;
// Should already be caught by isSystem variable, but just in case...
if (mountpoints.contains("/") || mountpoints.contains("C://"))
continue;
}
QString device = QString::fromStdString(i.device);
drivesInNewList.insert(device);
if (!_drivelist.contains(device))
{
// Found new drive
if (!changes)
{
beginResetModel();
changes = true;
}
_drivelist[device] = new DriveListItem(device, QString::fromStdString(i.description), i.size, i.isUSB, i.isSCSI, mountpoints, this);
}
}
// Look for drives removed
QStringList drivesInOldList = _drivelist.keys();
for (auto &device: drivesInOldList)
{
if (!drivesInNewList.contains(device))
{
if (!changes)
{
beginResetModel();
changes = true;
}
_drivelist.value(device)->deleteLater();
_drivelist.remove(device);
}
}
if (changes)
endResetModel();
}