mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 00:15:21 +01:00
Move source files to /src
This commit is contained in:
parent
4daff1ba79
commit
033ff07abf
2685 changed files with 9 additions and 7 deletions
132
src/drivelistmodel.cpp
Normal file
132
src/drivelistmodel.cpp
Normal file
|
@ -0,0 +1,132 @@
|
|||
/*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
* Copyright (C) 2020 Raspberry Pi Ltd
|
||||
*/
|
||||
|
||||
#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"},
|
||||
{isReadOnlyRole, "isReadOnly"},
|
||||
{mountpointsRole, "mountpoints"}
|
||||
};
|
||||
|
||||
// Enumerate drives in seperate thread, but process results in UI thread
|
||||
connect(&_thread, SIGNAL(newDriveList(std::vector<Drivelist::DeviceDescriptor>)), SLOT(processDriveList(std::vector<Drivelist::DeviceDescriptor>)));
|
||||
}
|
||||
|
||||
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::processDriveList(std::vector<Drivelist::DeviceDescriptor> l)
|
||||
{
|
||||
bool changes = false;
|
||||
bool filterSystemDrives = DRIVELIST_FILTER_SYSTEM_DRIVES;
|
||||
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)
|
||||
continue;
|
||||
}
|
||||
// Should already be caught by isSystem variable, but just in case...
|
||||
if (mountpoints.contains("/") || mountpoints.contains("C://"))
|
||||
continue;
|
||||
|
||||
// Skip zero-sized devices
|
||||
if (i.size == 0)
|
||||
continue;
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
if (i.isVirtual)
|
||||
continue;
|
||||
#endif
|
||||
|
||||
QString deviceNamePlusSize = QString::fromStdString(i.device)+":"+QString::number(i.size);
|
||||
if (i.isReadOnly)
|
||||
deviceNamePlusSize += "ro";
|
||||
drivesInNewList.insert(deviceNamePlusSize);
|
||||
|
||||
if (!_drivelist.contains(deviceNamePlusSize))
|
||||
{
|
||||
// Found new drive
|
||||
if (!changes)
|
||||
{
|
||||
beginResetModel();
|
||||
changes = true;
|
||||
}
|
||||
|
||||
_drivelist[deviceNamePlusSize] = new DriveListItem(QString::fromStdString(i.device), QString::fromStdString(i.description), i.size, i.isUSB, i.isSCSI, i.isReadOnly, 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();
|
||||
}
|
||||
|
||||
void DriveListModel::startPolling()
|
||||
{
|
||||
_thread.start();
|
||||
}
|
||||
|
||||
void DriveListModel::stopPolling()
|
||||
{
|
||||
_thread.stop();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue