filemanager/model/placesmodel.cpp

268 lines
8.4 KiB
C++
Raw Normal View History

2021-03-29 01:51:34 -07:00
/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: revenmartin <revenmartin@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2021-03-16 00:02:20 -07:00
#include "placesmodel.h"
#include <QStandardPaths>
#include <QDir>
2021-03-29 01:51:34 -07:00
#include <QDebug>
#include <Solid/Device>
#include <Solid/DeviceNotifier>
#include <Solid/StorageDrive>
#include <Solid/StorageAccess>
#include <Solid/Predicate>
2021-03-29 18:48:59 -07:00
#include <Solid/OpticalDrive>
2021-03-16 00:02:20 -07:00
PlacesModel::PlacesModel(QObject *parent)
: QAbstractItemModel(parent)
{
const QString homePath = QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
2021-03-29 01:51:34 -07:00
2021-03-16 00:02:20 -07:00
if (QDir(homePath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Home"), QUrl::fromLocalFile(homePath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-home.svg");
m_items.append(item);
}
const QString desktopPath = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation);
if (QDir(desktopPath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Desktop"), QUrl::fromLocalFile(desktopPath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-desktop.svg");
m_items.append(item);
}
const QString documentsPath = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
if (QDir(documentsPath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Documents"), QUrl::fromLocalFile(documentsPath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-document.svg");
m_items.append(item);
}
const QString downloadPath = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
if (QDir(downloadPath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Downloads"), QUrl::fromLocalFile(downloadPath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-download.svg");
m_items.append(item);
}
const QString musicPath = QStandardPaths::writableLocation(QStandardPaths::MusicLocation);
if (QDir(musicPath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Music"), QUrl::fromLocalFile(musicPath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-music.svg");
m_items.append(item);
}
const QString picturePath = QStandardPaths::writableLocation(QStandardPaths::PicturesLocation);
if (QDir(picturePath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Pictures"), QUrl::fromLocalFile(picturePath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-picture.svg");
m_items.append(item);
}
const QString videoPath = QStandardPaths::writableLocation(QStandardPaths::MoviesLocation);
if (QDir(videoPath).exists()) {
2021-03-29 01:51:34 -07:00
PlacesItem *item = new PlacesItem(tr("Videos"), QUrl::fromLocalFile(videoPath));
2021-03-16 00:02:20 -07:00
item->setIconPath("qrc:/images/folder-video.svg");
m_items.append(item);
}
2021-03-29 01:51:34 -07:00
PlacesItem *trashItem = new PlacesItem(tr("Trash"), QUrl(QStringLiteral("trash:/")));
2021-03-16 00:02:20 -07:00
trashItem->setIconPath("qrc:/images/user-trash.svg");
m_items.append(trashItem);
2021-03-29 01:51:34 -07:00
QString predicateStr(
QString::fromLatin1("[[[[ StorageVolume.ignored == false AND [ StorageVolume.usage == 'FileSystem' OR StorageVolume.usage == 'Encrypted' ]]"
" OR "
"[ IS StorageAccess AND StorageDrive.driveType == 'Floppy' ]]"
" OR "
"OpticalDisc.availableContent & 'Audio' ]"
" OR "
"StorageAccess.ignored == false ]"));
2021-03-30 18:22:32 -07:00
m_predicate = Solid::Predicate::fromString(predicateStr);
2021-03-29 01:51:34 -07:00
Solid::DeviceNotifier *notifier = Solid::DeviceNotifier::instance();
2021-03-29 18:48:59 -07:00
connect(notifier, &Solid::DeviceNotifier::deviceAdded, this, &PlacesModel::onDeviceAdded);
connect(notifier, &Solid::DeviceNotifier::deviceRemoved, this, &PlacesModel::onDeviceRemoved);
2021-03-29 01:51:34 -07:00
2021-03-29 18:48:59 -07:00
// Init devices
2021-03-30 18:22:32 -07:00
const QList<Solid::Device> &deviceList = Solid::Device::listFromQuery(m_predicate);
2021-03-29 01:51:34 -07:00
for (const Solid::Device &device : deviceList) {
2021-03-29 18:48:59 -07:00
PlacesItem *deviceItem = new PlacesItem;
deviceItem->setUdi(device.udi());
2021-03-29 01:51:34 -07:00
m_items.append(deviceItem);
}
2021-03-16 00:02:20 -07:00
}
PlacesModel::~PlacesModel()
{
}
QHash<int, QByteArray> PlacesModel::roleNames() const
{
2021-04-12 19:46:20 -07:00
QHash<int, QByteArray> roleNames;
2021-03-16 00:02:20 -07:00
roleNames[PlacesModel::NameRole] = "name";
roleNames[PlacesModel::IconNameRole] = "icon";
roleNames[PlacesModel::IconPathRole] = "iconPath";
roleNames[PlacesModel::UrlRole] = "url";
roleNames[PlacesModel::PathRole] = "path";
2021-03-29 18:48:59 -07:00
roleNames[PlacesModel::IsDeviceRole] = "isDevice";
roleNames[PlacesModel::setupNeededRole] = "setupNeeded";
2021-03-16 00:02:20 -07:00
return roleNames;
}
int PlacesModel::rowCount(const QModelIndex &parent) const
{
if (parent.isValid())
return 0;
return m_items.size();
}
int PlacesModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent)
return 1;
}
QVariant PlacesModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
PlacesItem *item = m_items.at(index.row());
switch (role) {
case PlacesModel::NameRole:
return item->displayName();
break;
case PlacesModel::IconNameRole:
return item->iconName();
break;
case PlacesModel::IconPathRole:
return item->iconPath();
break;
case PlacesModel::UrlRole:
return item->url();
break;
case PlacesModel::PathRole:
return item->path();
break;
2021-03-29 18:48:59 -07:00
case PlacesModel::IsDeviceRole:
return item->isDevice();
break;
case PlacesModel::setupNeededRole:
return item->setupNeeded();
break;
2021-03-16 00:02:20 -07:00
default:
break;
}
return QVariant();
}
QModelIndex PlacesModel::index(int row, int column, const QModelIndex &parent) const
{
if (row < 0 || column != 0 || row >= m_items.size()) {
return QModelIndex();
}
if (parent.isValid()) {
return QModelIndex();
}
return createIndex(row, column, m_items.at(row));
}
QModelIndex PlacesModel::parent(const QModelIndex &child) const
{
Q_UNUSED(child);
return QModelIndex();
}
QVariantMap PlacesModel::get(const int &index) const
{
QVariantMap res;
if (index >= this->rowCount() || index < 0)
return res;
const auto roleNames = this->roleNames();
for (auto i = roleNames.begin(); i != roleNames.end(); ++i) {
res.insert(i.value(), this->index(index, 0).data(i.key()).toString());
}
return res;
}
2021-03-29 18:48:59 -07:00
void PlacesModel::requestSetup(const int &index)
{
PlacesItem *item = m_items.at(index);
if (!item->udi().isEmpty()) {
Solid::Device device = Solid::Device(item->udi());
Solid::StorageAccess *access = device.as<Solid::StorageAccess>();
access->setup();
connect(access, &Solid::StorageAccess::setupDone, this, [this, item, access]() {
if (item) {
// 更新信息,让 qml 里的 sidebar 识别到
item->setUrl(QUrl::fromLocalFile(access->filePath()));
emit deviceSetupDone(access->filePath());
}
});
2021-03-29 18:48:59 -07:00
}
}
void PlacesModel::requestEject(const int &index)
{
PlacesItem *item = m_items.at(index);
if (!item->udi().isEmpty()) {
Solid::Device device = Solid::Device(item->udi());
Solid::OpticalDrive *drive = device.parent().as<Solid::OpticalDrive>();
if (drive) {
drive->eject();
}
}
}
void PlacesModel::onDeviceAdded(const QString &udi)
{
2021-03-30 18:22:32 -07:00
if (m_predicate.matches(Solid::Device(udi))) {
beginInsertRows(QModelIndex(), rowCount(), rowCount());
PlacesItem *deviceItem = new PlacesItem;
deviceItem->setUdi(udi);
m_items.append(deviceItem);
endInsertRows();
}
2021-03-29 18:48:59 -07:00
}
void PlacesModel::onDeviceRemoved(const QString &udi)
{
for (int i = 0; i < m_items.size(); ++i) {
if (m_items.at(i)->udi() == udi) {
beginRemoveRows(QModelIndex(), i, i);
PlacesItem *item = m_items.at(i);
m_items.removeOne(item);
endRemoveRows();
}
}
}