9c94c63dfe
0. builtin 1. c++ plugin 2. config file svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=779415
337 lines
9.3 KiB
C++
337 lines
9.3 KiB
C++
/******************************************************************************
|
|
* Copyright 2007 by Aaron Seigo <aseigo@kde.org> *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 *
|
|
* Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
* Boston, MA 02110-1301, USA. *
|
|
*******************************************************************************/
|
|
|
|
#include "packagestructure.h"
|
|
|
|
#include <QMap>
|
|
|
|
#include <KConfigGroup>
|
|
#include <KStandardDirs>
|
|
#include <KServiceTypeTrader>
|
|
|
|
#include "packages_p.h"
|
|
|
|
namespace Plasma
|
|
{
|
|
|
|
class ContentStructure
|
|
{
|
|
public:
|
|
ContentStructure()
|
|
: directory(false),
|
|
required(false)
|
|
{
|
|
}
|
|
|
|
ContentStructure(const ContentStructure& other)
|
|
{
|
|
path = other.path;
|
|
name = other.name;
|
|
mimetypes = other.mimetypes;
|
|
directory = other.directory;
|
|
required = other.required;
|
|
}
|
|
|
|
QString path;
|
|
QString name;
|
|
QStringList mimetypes;
|
|
bool directory;
|
|
bool required;
|
|
};
|
|
|
|
|
|
class PackageStructure::Private
|
|
{
|
|
public:
|
|
QString type;
|
|
QMap<QByteArray, ContentStructure> contents;
|
|
QStringList mimetypes;
|
|
static QHash<QString, PackageStructure::Ptr> structures;
|
|
};
|
|
|
|
QHash<QString, PackageStructure::Ptr> PackageStructure::Private::structures;
|
|
|
|
PackageStructure::PackageStructure(QObject *parent, const QString &type)
|
|
: QObject(parent),
|
|
d(new Private)
|
|
{
|
|
d->type = type;
|
|
}
|
|
|
|
PackageStructure::~PackageStructure()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
PackageStructure::Ptr PackageStructure::load(const QString &packageFormat)
|
|
{
|
|
if (packageFormat.isEmpty()) {
|
|
return Ptr(new PackageStructure());
|
|
}
|
|
|
|
PackageStructure::Ptr structure = Private::structures[packageFormat];
|
|
|
|
if (structure) {
|
|
return structure;
|
|
}
|
|
|
|
// first we check for plugins in sycoca
|
|
QString constraint = QString("[X-KDE-PluginInfo-Name] == '%1'").arg(packageFormat);
|
|
KService::List offers = KServiceTypeTrader::self()->query("Plasma/PackageStructure", constraint);
|
|
|
|
QVariantList args;
|
|
QString error;
|
|
foreach (const KService::Ptr &offer, offers) {
|
|
PackageStructure::Ptr structure(offer->createInstance<Plasma::PackageStructure>(0, args, &error));
|
|
|
|
if (structure) {
|
|
Private::structures[packageFormat] = structure;
|
|
return structure;
|
|
}
|
|
|
|
kDebug() << "Couldn't load PackageStructure for" << packageFormat << "! reason given: " << error;
|
|
}
|
|
|
|
// if that didn't give us any love, then we try to load from a config file
|
|
structure = new PackageStructure();
|
|
QString configPath("plasma/packageformats/%1rc");
|
|
configPath = KStandardDirs::locate("data", configPath.arg(packageFormat));
|
|
|
|
if (!configPath.isEmpty()) {
|
|
KConfig config(configPath);
|
|
structure->read(&config);
|
|
}
|
|
|
|
Private::structures[packageFormat] = structure;
|
|
return structure;
|
|
}
|
|
|
|
PackageStructure& PackageStructure::operator=(const PackageStructure& rhs)
|
|
{
|
|
if (this == &rhs) {
|
|
return *this;
|
|
}
|
|
|
|
*d = *rhs.d;
|
|
return *this;
|
|
}
|
|
|
|
QString PackageStructure::type() const
|
|
{
|
|
return d->type;
|
|
}
|
|
|
|
QList<const char*> PackageStructure::directories() const
|
|
{
|
|
QList<const char*> dirs;
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constBegin();
|
|
while (it != d->contents.constEnd()) {
|
|
if (it.value().directory) {
|
|
dirs << it.key().constData();
|
|
}
|
|
++it;
|
|
}
|
|
return dirs;
|
|
}
|
|
|
|
QList<const char*> PackageStructure::requiredDirectories() const
|
|
{
|
|
QList<const char*> dirs;
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constBegin();
|
|
while (it != d->contents.constEnd()) {
|
|
if (it.value().directory &&
|
|
it.value().required) {
|
|
dirs << it.key();
|
|
}
|
|
++it;
|
|
}
|
|
return dirs;
|
|
}
|
|
|
|
QList<const char*> PackageStructure::files() const
|
|
{
|
|
QList<const char*> files;
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constBegin();
|
|
while (it != d->contents.constEnd()) {
|
|
if (!it.value().directory) {
|
|
files << it.key();
|
|
}
|
|
++it;
|
|
}
|
|
return files;
|
|
}
|
|
|
|
QList<const char*> PackageStructure::requiredFiles() const
|
|
{
|
|
QList<const char*> files;
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constBegin();
|
|
while (it != d->contents.constEnd()) {
|
|
if (!it.value().directory && it.value().required) {
|
|
files << it.key();
|
|
}
|
|
++it;
|
|
}
|
|
return files;
|
|
}
|
|
|
|
void PackageStructure::addDirectoryDefinition(const char* key, const QString& path, const QString& name)
|
|
{
|
|
ContentStructure s;
|
|
s.name = name;
|
|
s.path = path;
|
|
s.directory = true;
|
|
|
|
d->contents[key] = s;
|
|
}
|
|
|
|
void PackageStructure::addFileDefinition(const char* key, const QString& path, const QString& name)
|
|
{
|
|
ContentStructure s;
|
|
s.name = name;
|
|
s.path = path;
|
|
s.directory = false;
|
|
|
|
d->contents[key] = s;
|
|
}
|
|
|
|
QString PackageStructure::path(const char* key) const
|
|
{
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.find(key);
|
|
if (it == d->contents.constEnd()) {
|
|
return QString();
|
|
}
|
|
|
|
return it.value().path;
|
|
}
|
|
|
|
QString PackageStructure::name(const char* key) const
|
|
{
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.find(key);
|
|
if (it == d->contents.constEnd()) {
|
|
return QString();
|
|
}
|
|
|
|
return it.value().name;
|
|
}
|
|
|
|
void PackageStructure::setRequired(const char* key, bool required)
|
|
{
|
|
QMap<QByteArray, ContentStructure>::iterator it = d->contents.find(key);
|
|
if (it == d->contents.end()) {
|
|
return;
|
|
}
|
|
|
|
it.value().required = required;
|
|
}
|
|
|
|
bool PackageStructure::required(const char* key) const
|
|
{
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.find(key);
|
|
if (it == d->contents.constEnd()) {
|
|
return false;
|
|
}
|
|
|
|
return it.value().required;
|
|
}
|
|
|
|
void PackageStructure::setDefaultMimetypes(QStringList mimetypes)
|
|
{
|
|
d->mimetypes = mimetypes;
|
|
}
|
|
|
|
void PackageStructure::setMimetypes(const char* key, QStringList mimetypes)
|
|
{
|
|
QMap<QByteArray, ContentStructure>::iterator it = d->contents.find(key);
|
|
if (it == d->contents.end()) {
|
|
return;
|
|
}
|
|
|
|
it.value().mimetypes = mimetypes;
|
|
}
|
|
|
|
QStringList PackageStructure::mimetypes(const char* key) const
|
|
{
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.find(key);
|
|
if (it == d->contents.constEnd()) {
|
|
return QStringList();
|
|
}
|
|
|
|
if (it.value().mimetypes.isEmpty()) {
|
|
return d->mimetypes;
|
|
}
|
|
|
|
return it.value().mimetypes;
|
|
}
|
|
|
|
void PackageStructure::read(const KConfigBase *config)
|
|
{
|
|
d->contents.clear();
|
|
d->mimetypes.clear();
|
|
d->type = config->group("").readEntry("Type", QString());
|
|
|
|
QStringList groups = config->groupList();
|
|
foreach (QString group, groups) {
|
|
QByteArray key = group.toAscii();
|
|
KConfigGroup entry = config->group(group);
|
|
|
|
QString path = entry.readEntry("Path", QString());
|
|
QString name = entry.readEntry("Name", QString());
|
|
QStringList mimetypes = entry.readEntry("Mimetypes", QStringList());
|
|
bool directory = entry.readEntry("Directory", false);
|
|
bool required = entry.readEntry("Required", false);
|
|
|
|
if (directory) {
|
|
addDirectoryDefinition(key, path, name);
|
|
} else {
|
|
addFileDefinition(key, path, name);
|
|
}
|
|
|
|
setMimetypes(key, mimetypes);
|
|
setRequired(key, required);
|
|
}
|
|
}
|
|
|
|
void PackageStructure::write(KConfigBase *config) const
|
|
{
|
|
config->group("").writeEntry("Type", type());
|
|
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constBegin();
|
|
while (it != d->contents.constEnd()) {
|
|
KConfigGroup group = config->group(it.key());
|
|
group.writeEntry("Path", it.value().path);
|
|
group.writeEntry("Name", it.value().name);
|
|
if (!it.value().mimetypes.isEmpty()) {
|
|
group.writeEntry("Mimetypes", it.value().mimetypes);
|
|
}
|
|
if (it.value().directory) {
|
|
group.writeEntry("Directory", true);
|
|
}
|
|
if (it.value().required) {
|
|
group.writeEntry("Required", true);
|
|
}
|
|
|
|
++it;
|
|
}
|
|
}
|
|
|
|
} // Plasma namespace
|
|
|
|
#include "packagestructure.moc"
|
|
|