partitionmanager/src/plugins/libparted/libpartedbackend.h

75 lines
2.6 KiB
C++

/***************************************************************************
* Copyright (C) 2008,2010 by Volker Lanz <vl@fidra.de> *
* *
* 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 2 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, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#if !defined(LIBPARTED__H)
#define LIBPARTED__H
#include "backend/corebackend.h"
#include "core/partitiontable.h"
#include "fs/filesystem.h"
#include <parted/parted.h>
#include <QList>
#include <QVariant>
#include <qglobal.h>
class LibPartedDevice;
class LibPartedPartitionTable;
class LibPartedPartition;
class Device;
class KPluginFactory;
class QString;
/** @brief Backend plugin for libparted.
@author vl@fidra.de
*/
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<QVariant>& args);
public:
virtual QString about() const;
virtual CoreBackendDevice* openDevice(const QString& device_node);
virtual CoreBackendDevice* openDeviceExclusive(const QString& device_node);
virtual bool closeDevice(CoreBackendDevice* core_device);
virtual Device* scanDevice(const QString& device_node);
private:
static FileSystem::Type detectFileSystem(PedDevice* pedDevice, PedPartition* pedPartition);
static PedPartitionFlag getPedFlag(PartitionTable::Flag flag);
static void scanDevicePartitions(PedDevice* pedDevice, Device& d, PedDisk* pedDisk);
};
#endif