/************************************************************************* * Copyright (C) 2008, 2010 by Volker Lanz * * Copyright (C) 2015 by Teo Mrnjavac * * * * 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 .* *************************************************************************/ #if !defined(KPMCORE_LIBPARTED_H) #define KPMCORE_LIBPARTED_H #include "backend/corebackend.h" #include "core/partitiontable.h" #include "core/diskdevice.h" #include "util/libpartitionmanagerexport.h" #include "fs/filesystem.h" #include #include #include #include class LibPartedDevice; class LibPartedPartitionTable; class LibPartedPartition; class OperationStack; class KPluginFactory; class QString; /** Backend plugin for libparted. @author Volker Lanz */ class LibPartedBackend : public CoreBackend { friend class KPluginFactory; friend class LibPartedPartition; friend class LibPartedDevice; friend class LibPartedPartitionTable; Q_DISABLE_COPY(LibPartedBackend) private: LibPartedBackend(QObject* parent, const QList& args); public: void initFSSupport() override; CoreBackendDevice* openDevice(const QString& deviceNode) override; CoreBackendDevice* openDeviceExclusive(const QString& deviceNode) override; bool closeDevice(CoreBackendDevice* core_device) override; DiskDevice* scanDevice(const QString& deviceNode) override; QList scanDevices(bool excludeReadOnly = false) override; FileSystem::Type detectFileSystem(const QString& partitionPath) override; static QString lastPartedExceptionMessage(); private: static PedPartitionFlag getPedFlag(PartitionTable::Flag flag); void scanDevicePartitions(Device& d, PedDisk* pedDisk); }; #endif