partitionmanager/src/gui/editmountpointdialogwidget.cpp

186 lines
6.1 KiB
C++

/*************************************************************************
* Copyright (C) 2009, 2010 by Volker Lanz <vl@fidra.de> *
* Copyright (C) 2016, 2017 by Andrius Štikonas <andrius@stikonas.eu> *
* *
* 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 (at your option) 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/>.*
*************************************************************************/
#include "gui/editmountpointdialogwidget.h"
#include "gui/editmountoptionsdialog.h"
#include <core/partition.h>
#include <fs/filesystem.h>
#include <fs/luks.h>
#include <KLocalizedString>
#include <KMessageBox>
#include <KMountPoint>
#include <QDebug>
#include <QFile>
#include <QFileDialog>
#include <QPointer>
#include <QString>
#include <blkid/blkid.h>
EditMountPointDialogWidget::EditMountPointDialogWidget(QWidget* parent, const Partition& p) :
QWidget(parent),
m_Partition(p)
{
m_fstabEntries = readFstabEntries();
setupUi(this);
m_deviceNode = partition().deviceNode();
if (partition().roles().has(PartitionRole::Luks) && partition().fileSystem().type() != FileSystem::Luks) {
const FS::luks* luksFs = dynamic_cast<const FS::luks*>(&partition().fileSystem());
m_deviceNode = luksFs->mapperName();
}
labelName().setText(m_deviceNode);
labelType().setText(partition().fileSystem().name());
bool entryFound = false;
for (auto &e : m_fstabEntries) {
if (e.deviceNode() == m_deviceNode) { // FIXME kernel paths, fix multiple mountpoints
entryFound = true;
entry = &e;
}
}
// FIXME name() != fstabfsname (swap)
if (!entryFound) {
entry = new FstabEntry(m_deviceNode, QString(), partition().fileSystem().name(), QString());
m_fstabEntries.append(*entry);
}
editPath().setText(entry->mountPoint());
spinDumpFreq().setValue(entry->dumpFreq());
spinPassNumber().setValue(entry->passNumber());
switch (entry->entryType()) {
case FstabEntryType::uuid:
radioUUID().setChecked(true);
break;
case FstabEntryType::label:
radioLabel().setChecked(true);
break;
case FstabEntryType::partuuid:
radioUUID().setChecked(true);
break;
case FstabEntryType::partlabel:
radioLabel().setChecked(true);
break;
case FstabEntryType::deviceNode:
radioDeviceNode().setChecked(true);
break;
case FstabEntryType::comment:
break;
}
boxOptions()[QStringLiteral("ro")] = m_CheckReadOnly;
boxOptions()[QStringLiteral("users")] = m_CheckUsers;
boxOptions()[QStringLiteral("noauto")] = m_CheckNoAuto;
boxOptions()[QStringLiteral("noatime")] = m_CheckNoAtime;
boxOptions()[QStringLiteral("nodiratime")] = m_CheckNoDirAtime;
boxOptions()[QStringLiteral("sync")] = m_CheckSync;
boxOptions()[QStringLiteral("noexec")] = m_CheckNoExec;
boxOptions()[QStringLiteral("relatime")] = m_CheckRelAtime;
setupOptions(entry->options());
if (partition().fileSystem().uuid().isEmpty()) {
radioUUID().setEnabled(false);
if (radioUUID().isChecked())
radioDeviceNode().setChecked(true);
}
if (partition().fileSystem().label().isEmpty()) {
radioLabel().setEnabled(false);
if (radioLabel().isChecked())
radioDeviceNode().setChecked(true);
}
connect(m_ButtonMore, &QPushButton::clicked, this, &EditMountPointDialogWidget::buttonMoreClicked);
connect(m_ButtonSelect, &QPushButton::clicked, this, &EditMountPointDialogWidget::buttonSelectClicked);
}
EditMountPointDialogWidget::~EditMountPointDialogWidget()
{
}
void EditMountPointDialogWidget::setupOptions(const QStringList& options)
{
QStringList optTmpList;
for (const auto &o : options) {
if (boxOptions().find(o) != boxOptions().end())
boxOptions()[o]->setChecked(true);
else
optTmpList.append(o);
}
m_Options = optTmpList.join(QLatin1Char(','));
}
void EditMountPointDialogWidget::buttonSelectClicked(bool)
{
const QString s = QFileDialog::getExistingDirectory(this, editPath().text());
if (!s.isEmpty())
editPath().setText(s);
}
void EditMountPointDialogWidget::buttonMoreClicked(bool)
{
QPointer<EditMountOptionsDialog> dlg = new EditMountOptionsDialog(this, m_Options.split(QLatin1Char(',')));
if (dlg->exec() == QDialog::Accepted)
setupOptions(dlg->options());
delete dlg;
}
QStringList EditMountPointDialogWidget::options() const
{
QStringList optList = m_Options.split(QLatin1Char(','), QString::SkipEmptyParts);
const auto keys = boxOptions();
for (const auto &s : keys)
if (s.second->isChecked())
optList.append(s.first);
return optList;
}
void EditMountPointDialogWidget::acceptChanges()
{
entry->setDumpFreq(spinDumpFreq().value());
entry->setPassNumber(spinPassNumber().value());
entry->setMountPoint(editPath().text());
entry->setOptions(options());
if (radioUUID().isChecked() && !partition().fileSystem().uuid().isEmpty())
entry->setFsSpec(QStringLiteral("UUID=") + partition().fileSystem().uuid());
else if (radioLabel().isChecked() && !partition().fileSystem().label().isEmpty())
entry->setFsSpec(QStringLiteral("LABEL=") + partition().fileSystem().label());
else
entry->setFsSpec(m_deviceNode);
}