/************************************************************************* * Copyright (C) 2016 by Chantara Tith * * * * 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(VOLUMEMANAGERDEVICE__H) #define VOLUMEMANAGERDEVICE__H #include "util/libpartitionmanagerexport.h" #include "core/device.h" #include #include #include #include class PartitionTable; class CreatePartitionTableOperation; class CoreBackend; class SmartStatus; class Partition; /** A abstract device represeting real physical devices. Represents a device like /dev/sda, /dev/sdb1. Devices are the outermost entity; they contain a PartitionTable that itself contains Partitions. @see PartitionTable, Partition */ class LIBKPMCORE_EXPORT VolumeManagerDevice : public Device { Q_DISABLE_COPY(VolumeManagerDevice) public: VolumeManagerDevice(const QString& name, const QString& devicenode, const qint32 logicalSize, const qint64 totalLogical, const QString& iconname = QString(), Device::Type type = Device::Unknown_Device); virtual void initPartitions() = 0; virtual QStringList deviceNodeList() const = 0; /** Return list of physical device or partitions that makes up volumeManagerDevice */ virtual qint64 mappedSector(const QString& devNode, qint64 sector) const = 0; public: /** string deviceNodeList together into comma-sperated list */ virtual QString prettyDeviceNodeList() const; void setTotalLogical(qint64 num) { Q_ASSERT(num > 0); m_TotalLogical = num; } }; #endif