2007-06-17 02:25:16 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2007 by Aaron Seigo <aseigo@kde.org> *
|
2007-07-31 12:52:05 +02:00
|
|
|
* Copyright (C) 2007 by Riccardo Iaconelli <riccardo@kde.org> *
|
2007-06-17 02:25:16 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2007-06-17 11:28:42 +02:00
|
|
|
#ifndef PLASMA_PACKAGE_H
|
|
|
|
#define PLASMA_PACKAGE_H
|
|
|
|
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief object representing an installed Plasmagik package
|
|
|
|
**/
|
|
|
|
|
2007-07-20 06:23:27 +02:00
|
|
|
class PackageMetadata;
|
2007-06-17 02:25:16 +02:00
|
|
|
class PackageStructure;
|
|
|
|
|
2007-06-17 11:28:42 +02:00
|
|
|
class PLASMA_EXPORT Package
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor
|
|
|
|
*
|
|
|
|
* @arg packageRoot path to the package installation root
|
|
|
|
* @arg package the name of the package
|
|
|
|
* @arg structure the package structure describing this package
|
|
|
|
**/
|
|
|
|
Package(const QString& packageRoot, const QString& package,
|
|
|
|
const PackageStructure& structure);
|
|
|
|
~Package();
|
|
|
|
|
2007-07-20 05:21:40 +02:00
|
|
|
/**
|
|
|
|
* @return true if all the required components as defined in
|
|
|
|
* the PackageStructure exist
|
|
|
|
**/
|
2007-07-23 09:26:28 +02:00
|
|
|
bool isValid() const;
|
2007-07-20 05:21:40 +02:00
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
/**
|
|
|
|
* Get the path to a given file.
|
|
|
|
*
|
|
|
|
* @arg fileType the type of file to look for, as defined in the
|
|
|
|
* package structure
|
|
|
|
* @arg filename the name of the file
|
|
|
|
* @return path to the file on disk. QString() if not found.
|
|
|
|
**/
|
2007-07-23 09:26:28 +02:00
|
|
|
QString filePath(const char* fileType, const QString& filename) const;
|
2007-06-17 02:25:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the path to a given file.
|
|
|
|
*
|
|
|
|
* @arg fileType the type of file to look for, as defined in the
|
|
|
|
* package structure. The type must refer to a file
|
|
|
|
* in the package structure and not a directory.
|
|
|
|
* @return path to the file on disk. QString() if not found
|
|
|
|
**/
|
2007-07-23 09:26:28 +02:00
|
|
|
QString filePath(const char* fileType) const;
|
2007-06-17 02:25:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the list of files of a given type.
|
|
|
|
*
|
|
|
|
* @arg fileType the type of file to look for, as defined in the
|
|
|
|
* package structure.
|
|
|
|
* @return list of files by name, suitable for passing to filePath
|
|
|
|
**/
|
2007-07-23 09:26:28 +02:00
|
|
|
QStringList entryList(const char* fileType) const;
|
2007-06-17 02:25:16 +02:00
|
|
|
|
|
|
|
/**
|
2007-07-20 06:23:27 +02:00
|
|
|
* Returns a list of all installed packages
|
2007-06-17 02:25:16 +02:00
|
|
|
*
|
|
|
|
* @param packageRoot path to the directory where Plasmagik packages
|
|
|
|
* have been installed to
|
|
|
|
* @return a list of installed Plasmagik packages
|
|
|
|
**/
|
2007-07-20 06:23:27 +02:00
|
|
|
static QStringList knownPackages(const QString &packageRoot);
|
2007-06-17 02:25:16 +02:00
|
|
|
|
|
|
|
/**
|
2007-07-20 06:23:27 +02:00
|
|
|
* Installs a package.
|
|
|
|
*
|
2007-06-17 02:25:16 +02:00
|
|
|
* @param package path to the Plasmagik package
|
|
|
|
* @param packageRoot path to the directory where the package should be
|
|
|
|
* installed to
|
|
|
|
* @return true on successful installation, false otherwise
|
|
|
|
**/
|
2007-07-20 06:23:27 +02:00
|
|
|
static bool installPackage(const QString &package,
|
|
|
|
const QString &packageRoot);
|
2007-06-17 02:25:16 +02:00
|
|
|
|
2007-07-20 06:07:00 +02:00
|
|
|
//TODO implement uninstall
|
|
|
|
//static bool uninstallPackage(const QString& package, const QString& packageRoot);
|
|
|
|
|
2007-07-20 06:23:27 +02:00
|
|
|
/**
|
|
|
|
* Creates a package based on the metadata from the files contained
|
|
|
|
* in the source directory
|
|
|
|
*
|
|
|
|
* @arg metadata description of the package to create
|
|
|
|
* @arg source path to local directory containing the individual
|
|
|
|
* files to be added to the package
|
|
|
|
* @arg destination path to local directory where the package should
|
|
|
|
* be created
|
|
|
|
**/
|
|
|
|
static bool createPackage(const PackageMetadata &metadata,
|
|
|
|
const QString &source,
|
|
|
|
const QString &destination);
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
private:
|
2007-07-20 05:21:40 +02:00
|
|
|
Q_DISABLE_COPY(Package)
|
2007-06-17 02:25:16 +02:00
|
|
|
class Private;
|
|
|
|
Private * const d;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // Namespace
|
2007-06-17 11:28:42 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|