partitionmanager/src/plugins/dummy/dummybackend.cpp

122 lines
3.6 KiB
C++

/***************************************************************************
* Copyright (C) 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 *
***************************************************************************/
/** @file
*/
#include "plugins/dummy/dummybackend.h"
#include "plugins/dummy/dummydevice.h"
#include "core/device.h"
#include "core/partition.h"
#include "core/partitiontable.h"
#include "util/globallog.h"
#include <QString>
#include <QStringList>
#include <KLocalizedString>
#include <KPluginFactory>
#include <KAboutData>
K_PLUGIN_FACTORY(DummyBackendFactory, registerPlugin<DummyBackend>(); )
static KAboutData createPluginAboutData()
{
KAboutData about(
QStringLiteral("pmdummybackendplugin"),
i18nc("@title", "Dummy Backend Plugin"),
"1.1.60",
i18n("KDE Partition Manager dummy backend."),
KAboutLicense::GPL,
i18n("Copyright 2010 Volker Lanz"),
QString());
about.addAuthor(i18nc("@info:credit", "Volker Lanz"), "Maintainer", "vl@fidra.de");
about.setHomepage("http://www.partitionmanager.org");
return about;
}
DummyBackend::DummyBackend(QObject*, const QList<QVariant>&) :
CoreBackend()
{
}
void DummyBackend::initFSSupport()
{
}
QList<Device*> DummyBackend::scanDevices()
{
QList<Device*> result;
result.append(scanDevice("/dev/sda"));
emitScanProgress("/dev/sda", 100);
return result;
}
Device* DummyBackend::scanDevice(const QString& device_node)
{
Device* d = new Device("Dummy Device", QString("/tmp" + device_node), 255, 30, 63, 512);
CoreBackend::setPartitionTableForDevice(*d, new PartitionTable(PartitionTable::msdos_sectorbased, 2048, d->totalSectors() - 2048));
CoreBackend::setPartitionTableMaxPrimaries(*d->partitionTable(), 128);
d->partitionTable()->updateUnallocated(*d);
d->setIconName("drive-harddisk");
CoreBackend::setPartitionTableMaxPrimaries(*d->partitionTable(), 4);
return d;
}
CoreBackendDevice* DummyBackend::openDevice(const QString& device_node)
{
DummyDevice* device = new DummyDevice(device_node);
if (device == NULL || !device->open())
{
delete device;
device = NULL;
}
return device;
}
CoreBackendDevice* DummyBackend::openDeviceExclusive(const QString& device_node)
{
DummyDevice* device = new DummyDevice(device_node);
if (device == NULL || !device->openExclusive())
{
delete device;
device = NULL;
}
return device;
}
bool DummyBackend::closeDevice(CoreBackendDevice* core_device)
{
return core_device->close();
}
#include "dummybackend.moc"