2019-06-13 14:41:33 +02:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2014, Aurélien Gâteau <agateau@kde.org>
|
|
|
|
* Copyright 2015-2016, Teo Mrnjavac <teo@kde.org>
|
|
|
|
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
|
|
|
*
|
|
|
|
* Calamares 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.
|
|
|
|
*
|
|
|
|
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-06-19 09:06:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE: this functionality is only available when Calamares is compiled
|
|
|
|
* with KPMcore support.
|
|
|
|
*/
|
|
|
|
|
2019-06-13 14:41:33 +02:00
|
|
|
#ifndef PARTITION_PARTITIONQUERY_H
|
|
|
|
#define PARTITION_PARTITIONQUERY_H
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
class Device;
|
|
|
|
class Partition;
|
|
|
|
|
|
|
|
namespace CalamaresUtils
|
|
|
|
{
|
|
|
|
namespace Partition
|
|
|
|
{
|
2019-06-13 14:47:44 +02:00
|
|
|
|
|
|
|
using ::Device;
|
|
|
|
using ::Partition;
|
|
|
|
|
2019-06-13 14:41:33 +02:00
|
|
|
/** @brief Is this a free-space area? */
|
2019-06-13 14:47:44 +02:00
|
|
|
bool isPartitionFreeSpace( Partition* );
|
2019-06-13 14:41:33 +02:00
|
|
|
|
|
|
|
/** @brief Is this partition newly-to-be-created?
|
|
|
|
*
|
|
|
|
* Returns true if the partition is planned to be created by the installer as
|
|
|
|
* opposed to already existing on the disk.
|
|
|
|
*/
|
2019-06-13 14:47:44 +02:00
|
|
|
bool isPartitionNew( Partition* );
|
2019-06-13 14:41:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Iterates on all devices and return the first partition which is (already)
|
|
|
|
* mounted on @p mountPoint.
|
|
|
|
*/
|
2019-06-13 14:47:44 +02:00
|
|
|
Partition* findPartitionByCurrentMountPoint( const QList< Device* >& devices, const QString& mountPoint );
|
2019-06-13 14:41:33 +02:00
|
|
|
|
|
|
|
// TODO: add this distinction
|
2019-06-13 14:47:44 +02:00
|
|
|
// Partition* findPartitionByIntendedMountPoint( const QList< Device* >& devices, const QString& mountPoint );
|
2019-06-13 14:41:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Iterates on all devices and partitions and returns a pointer to the Partition object
|
|
|
|
* for the given path, or nullptr if a Partition for the given path cannot be found.
|
|
|
|
*/
|
2019-06-13 14:47:44 +02:00
|
|
|
Partition* findPartitionByPath( const QList< Device* >& devices, const QString& path );
|
2019-06-13 14:41:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Iterates on all devices and partitions and returns a list of pointers to the Partition
|
|
|
|
* objects that satisfy the conditions defined in the criterion function.
|
|
|
|
*/
|
2019-06-13 14:47:44 +02:00
|
|
|
QList< Partition* > findPartitions( const QList< Device* >& devices,
|
|
|
|
std::function< bool( Partition* ) > criterionFunction );
|
|
|
|
} // namespace Partition
|
|
|
|
} // namespace CalamaresUtils
|
2019-06-13 14:41:33 +02:00
|
|
|
|
|
|
|
#endif // PARTITION_PARTITIONQUERY_H
|