mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 10:22:48 +00:00
577 lines
15 KiB
C++
577 lines
15 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 "package.h"
|
|
#include "private/packages_p.h"
|
|
#include "theme.h"
|
|
|
|
#include <QDirIterator>
|
|
#include <QDir>
|
|
#include <QMap>
|
|
#include <QtCore/qlist.h>
|
|
#include <QFileInfo>
|
|
|
|
#include <kconfiggroup.h>
|
|
#include <kdebug.h>
|
|
#include <kio/job.h>
|
|
#include <kmimetype.h>
|
|
#include <kstandarddirs.h>
|
|
#include <kservicetypetrader.h>
|
|
#include <ktemporaryfile.h>
|
|
#include <kurl.h>
|
|
|
|
namespace Plasma
|
|
{
|
|
|
|
static PackageStructure::Ptr defaultPackageStructure()
|
|
{
|
|
return PackageStructure::Ptr(new PackageStructure());
|
|
}
|
|
|
|
class ContentStructure
|
|
{
|
|
public:
|
|
ContentStructure()
|
|
: directory(false),
|
|
required(false)
|
|
{
|
|
}
|
|
|
|
ContentStructure(const ContentStructure &other)
|
|
{
|
|
paths = other.paths;
|
|
name = other.name;
|
|
mimetypes = other.mimetypes;
|
|
directory = other.directory;
|
|
required = other.required;
|
|
}
|
|
|
|
QStringList paths;
|
|
QString name;
|
|
QStringList mimetypes;
|
|
bool directory;
|
|
bool required;
|
|
};
|
|
|
|
class PackageStructurePrivate
|
|
{
|
|
public:
|
|
PackageStructurePrivate(const QString &t)
|
|
: type(t),
|
|
packageRoot("plasma/plasmoids"),
|
|
servicePrefix("plasma-applet-"),
|
|
metadata(nullptr),
|
|
externalPaths(false)
|
|
{
|
|
contentsPrefixPaths << "contents/";
|
|
}
|
|
|
|
~PackageStructurePrivate()
|
|
{
|
|
delete metadata;
|
|
}
|
|
|
|
void createPackageMetadata(const QString &path);
|
|
QStringList entryList(const QString &prefix, const QString &requestedPath) const;
|
|
|
|
QString type;
|
|
QString path;
|
|
QStringList contentsPrefixPaths;
|
|
QString packageRoot;
|
|
QString servicePrefix;
|
|
QMap<QByteArray, ContentStructure> contents;
|
|
QStringList mimetypes;
|
|
PackageMetadata *metadata;
|
|
bool externalPaths;
|
|
};
|
|
|
|
PackageStructure::PackageStructure(QObject *parent, const QString &type)
|
|
: QObject(parent),
|
|
d(new PackageStructurePrivate(type))
|
|
{
|
|
}
|
|
|
|
PackageStructure::~PackageStructure()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
PackageStructure::Ptr PackageStructure::load(const QString &packageFormat)
|
|
{
|
|
if (packageFormat.isEmpty()) {
|
|
return Ptr(new PackageStructure());
|
|
}
|
|
|
|
PackageStructure::Ptr structure;
|
|
|
|
if (packageFormat == "Plasma/Applet") {
|
|
structure = defaultPackageStructure();
|
|
structure->d->type = "Plasma/Applet";
|
|
} else if (packageFormat == "Plasma/Runner") {
|
|
structure = defaultPackageStructure();
|
|
structure->d->type = "Plasma/Runner";
|
|
} else if (packageFormat == "Plasma/Wallpaper") {
|
|
structure = defaultPackageStructure();
|
|
structure->d->type = "Plasma/Wallpaper";
|
|
} else if (packageFormat == "Plasma/Theme") {
|
|
structure = Theme::packageStructure();
|
|
structure->d->type = "Plasma/Theme";
|
|
} else if (packageFormat == "Plasma/Generic") {
|
|
structure = defaultPackageStructure();
|
|
structure->d->type = "Plasma/Generic";
|
|
structure->setDefaultPackageRoot("plasma/packages/");
|
|
}
|
|
|
|
if (structure) {
|
|
return structure;
|
|
}
|
|
|
|
// if that didn't give us any love, try to load from absolute file path
|
|
structure = new PackageStructure();
|
|
KUrl url(packageFormat);
|
|
if (url.isLocalFile()) {
|
|
KConfig config(url.toLocalFile(), KConfig::SimpleConfig);
|
|
structure->read(&config);
|
|
} else {
|
|
KTemporaryFile tmp;
|
|
if (tmp.open()) {
|
|
KIO::Job *job = KIO::file_copy(url, KUrl(tmp.fileName()),
|
|
-1, KIO::Overwrite | KIO::HideProgressInfo);
|
|
if (job->exec()) {
|
|
KConfig config(tmp.fileName(), KConfig::SimpleConfig);
|
|
structure->read(&config);
|
|
}
|
|
}
|
|
}
|
|
|
|
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<QByteArray> PackageStructure::directories() const
|
|
{
|
|
QList<QByteArray> dirs;
|
|
QMapIterator<QByteArray, ContentStructure> it(d->contents);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
if (it.value().directory) {
|
|
dirs << it.key();
|
|
}
|
|
}
|
|
return dirs;
|
|
}
|
|
|
|
QList<QByteArray> PackageStructure::requiredDirectories() const
|
|
{
|
|
QList<QByteArray> dirs;
|
|
QMapIterator<QByteArray, ContentStructure> it(d->contents);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
if (it.value().directory &&
|
|
it.value().required) {
|
|
dirs << it.key();
|
|
}
|
|
}
|
|
return dirs;
|
|
}
|
|
|
|
QList<QByteArray> PackageStructure::files() const
|
|
{
|
|
QList<QByteArray> files;
|
|
QMapIterator<QByteArray, ContentStructure> it(d->contents);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
if (!it.value().directory) {
|
|
files << it.key();
|
|
}
|
|
}
|
|
return files;
|
|
}
|
|
|
|
QList<QByteArray> PackageStructure::requiredFiles() const
|
|
{
|
|
QList<QByteArray> files;
|
|
QMapIterator<QByteArray, ContentStructure> it(d->contents);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
if (!it.value().directory && it.value().required) {
|
|
files << it.key();
|
|
}
|
|
}
|
|
return files;
|
|
}
|
|
|
|
QStringList PackageStructure::entryList(const char *key) const
|
|
{
|
|
QString p = path(key);
|
|
|
|
if (p.isEmpty()) {
|
|
return QStringList();
|
|
}
|
|
|
|
QStringList list;
|
|
if (d->contentsPrefixPaths.isEmpty()) {
|
|
// no prefixes is the same as d->contentsPrefixPths with QStringList() << QString()
|
|
list << d->entryList(QString(), p);
|
|
} else {
|
|
foreach (const QString &prefix, d->contentsPrefixPaths) {
|
|
list << d->entryList(prefix, p);
|
|
}
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
QStringList PackageStructurePrivate::entryList(const QString &prefix, const QString &requestedPath) const
|
|
{
|
|
QDir dir(path + prefix + requestedPath);
|
|
|
|
if (externalPaths) {
|
|
return dir.entryList(QDir::Files | QDir::Readable);
|
|
}
|
|
|
|
// ensure that we don't return files outside of our base path
|
|
// due to symlink or ../ games
|
|
QString canonicalized = dir.canonicalPath();
|
|
if (canonicalized.startsWith(path)) {
|
|
return dir.entryList(QDir::Files | QDir::Readable);
|
|
}
|
|
|
|
return QStringList();
|
|
}
|
|
|
|
void PackageStructure::addDirectoryDefinition(const char *key,
|
|
const QString &path, const QString &name)
|
|
{
|
|
ContentStructure s;
|
|
|
|
if (d->contents.contains(key)) {
|
|
s = d->contents[key];
|
|
}
|
|
|
|
if (!name.isEmpty()) {
|
|
s.name = name;
|
|
}
|
|
|
|
s.paths.append(path);
|
|
s.directory = true;
|
|
|
|
d->contents[key] = s;
|
|
}
|
|
|
|
void PackageStructure::addFileDefinition(const char *key, const QString &path, const QString &name)
|
|
{
|
|
ContentStructure s;
|
|
|
|
if (d->contents.contains(key)) {
|
|
s = d->contents[key];
|
|
}
|
|
|
|
if (!name.isEmpty()) {
|
|
s.name = name;
|
|
}
|
|
|
|
s.paths.append(path);
|
|
s.directory = false;
|
|
|
|
d->contents[key] = s;
|
|
}
|
|
|
|
void PackageStructure::removeDefinition(const char *key)
|
|
{
|
|
d->contents.remove(key);
|
|
}
|
|
|
|
QString PackageStructure::path(const char *key) const
|
|
{
|
|
return searchPath(key).first();
|
|
}
|
|
|
|
QStringList PackageStructure::searchPath(const char *key) const
|
|
{
|
|
//kDebug() << "looking for" << key;
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constFind(key);
|
|
if (it == d->contents.constEnd()) {
|
|
return QStringList();
|
|
}
|
|
|
|
//kDebug() << "found" << key << "and the value is" << it.value().paths;
|
|
return it.value().paths;
|
|
}
|
|
|
|
QString PackageStructure::name(const char *key) const
|
|
{
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constFind(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::isRequired(const char *key) const
|
|
{
|
|
QMap<QByteArray, ContentStructure>::const_iterator it = d->contents.constFind(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.constFind(key);
|
|
if (it == d->contents.constEnd()) {
|
|
return QStringList();
|
|
}
|
|
|
|
if (it.value().mimetypes.isEmpty()) {
|
|
return d->mimetypes;
|
|
}
|
|
|
|
return it.value().mimetypes;
|
|
}
|
|
|
|
void PackageStructure::setPath(const QString &path)
|
|
{
|
|
KUrl url(path);
|
|
QDir dir(url.toLocalFile());
|
|
QString basePath = dir.canonicalPath();
|
|
QFileInfo baseInfo(basePath);
|
|
bool valid = baseInfo.exists();
|
|
|
|
if (valid) {
|
|
if (baseInfo.isDir() && !basePath.endsWith('/')) {
|
|
basePath.append('/');
|
|
}
|
|
//kDebug() << "basePath is" << basePath;
|
|
} else {
|
|
kDebug() << path << "invalid, basePath is" << basePath;
|
|
return;
|
|
}
|
|
|
|
if (d->path == basePath) {
|
|
return;
|
|
}
|
|
|
|
d->path = basePath;
|
|
delete d->metadata;
|
|
d->metadata = 0;
|
|
pathChanged();
|
|
}
|
|
|
|
QString PackageStructure::path() const
|
|
{
|
|
return d->path;
|
|
}
|
|
|
|
void PackageStructure::pathChanged()
|
|
{
|
|
// default impl does nothing, this is a hook for subclasses.
|
|
}
|
|
|
|
void PackageStructure::read(const KConfigBase *config)
|
|
{
|
|
d->contents.clear();
|
|
d->mimetypes.clear();
|
|
KConfigGroup general(config, QString());
|
|
d->type = general.readEntry("Type", QString());
|
|
d->contentsPrefixPaths = general.readEntry("ContentsPrefixPaths", d->contentsPrefixPaths);
|
|
d->packageRoot = general.readEntry("DefaultPackageRoot", d->packageRoot);
|
|
d->externalPaths = general.readEntry("AllowExternalPaths", d->externalPaths);
|
|
|
|
QStringList groups = config->groupList();
|
|
foreach (const QString &group, groups) {
|
|
KConfigGroup entry(config, group);
|
|
QByteArray key = group.toLatin1();
|
|
|
|
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
|
|
{
|
|
KConfigGroup general = KConfigGroup(config, "");
|
|
general.writeEntry("Type", type());
|
|
general.writeEntry("ContentsPrefixPaths", d->contentsPrefixPaths);
|
|
general.writeEntry("DefaultPackageRoot", d->packageRoot);
|
|
general.writeEntry("AllowExternalPaths", d->externalPaths);
|
|
|
|
QMapIterator<QByteArray, ContentStructure> it(d->contents);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
KConfigGroup group = config->group(it.key());
|
|
group.writeEntry("Path", it.value().paths);
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
QString PackageStructure::contentsPrefix() const
|
|
{
|
|
return d->contentsPrefixPaths.isEmpty() ? QString() : d->contentsPrefixPaths.first();
|
|
}
|
|
|
|
QStringList PackageStructure::contentsPrefixPaths() const
|
|
{
|
|
return d->contentsPrefixPaths;
|
|
}
|
|
|
|
void PackageStructure::setContentsPrefixPaths(const QStringList &prefixPaths)
|
|
{
|
|
d->contentsPrefixPaths = prefixPaths;
|
|
|
|
// the code assumes that the prefixes have a trailing slash
|
|
// so let's make that true here
|
|
QMutableStringListIterator it(d->contentsPrefixPaths);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
|
|
if (!it.value().endsWith('/')) {
|
|
it.setValue(it.value() + '/');
|
|
}
|
|
}
|
|
}
|
|
|
|
QString PackageStructure::defaultPackageRoot() const
|
|
{
|
|
return d->packageRoot;
|
|
}
|
|
|
|
QString PackageStructure::servicePrefix() const
|
|
{
|
|
return d->servicePrefix;
|
|
}
|
|
|
|
void PackageStructure::setDefaultPackageRoot(const QString &packageRoot)
|
|
{
|
|
d->packageRoot = packageRoot;
|
|
}
|
|
|
|
void PackageStructure::setServicePrefix(const QString &servicePrefix)
|
|
{
|
|
d->servicePrefix = servicePrefix;
|
|
}
|
|
|
|
void PackageStructurePrivate::createPackageMetadata(const QString &path)
|
|
{
|
|
delete metadata;
|
|
metadata = 0;
|
|
|
|
QString metadataPath(path + "/metadata.desktop");
|
|
if (!QFile::exists(metadataPath)) {
|
|
kWarning() << "No metadata file in the package, expected it at:" << metadataPath;
|
|
metadataPath.clear();
|
|
}
|
|
|
|
metadata = new PackageMetadata(metadataPath);
|
|
}
|
|
|
|
PackageMetadata PackageStructure::metadata()
|
|
{
|
|
if (!d->metadata && !d->path.isEmpty()) {
|
|
QFileInfo fileInfo(d->path);
|
|
if (fileInfo.isDir()) {
|
|
d->createPackageMetadata(d->path);
|
|
}
|
|
}
|
|
|
|
if (!d->metadata) {
|
|
d->metadata = new PackageMetadata();
|
|
}
|
|
|
|
return *d->metadata;
|
|
}
|
|
|
|
bool PackageStructure::allowExternalPaths() const
|
|
{
|
|
return d->externalPaths;
|
|
}
|
|
|
|
void PackageStructure::setAllowExternalPaths(bool allow)
|
|
{
|
|
d->externalPaths = allow;
|
|
}
|
|
|
|
} // Plasma namespace
|
|
|
|
#include "moc_packagestructure.cpp"
|
|
|