/usr/include/KF5/KPackage/kpackage/package.h is in libkf5package-dev 5.44.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | /******************************************************************************
* Copyright 2007-2011 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. *
*******************************************************************************/
#ifndef KPACKAGE_PACKAGE_H
#define KPACKAGE_PACKAGE_H
#include <QtCore/QStringList>
#include <QtCore/QMetaType>
#include <QCryptographicHash>
#include <QUrl>
#include <kpluginmetadata.h>
#include <kpackage/package_export.h>
#include <kjob.h>
namespace KPackage
{
/**
* @class Package kpackage/package.h <KPackage/Package>
*
* @short object representing an installed package
*
* Package defines what is in a package and provides easy access to the contents.
*
* To define a package, one might write the following code:
*
@code
Package package;
package.addDirectoryDefinition("images", "pics/", i18n("Images"));
QStringList mimeTypes;
mimeTypes << "image/svg" << "image/png" << "image/jpeg";
package.setMimeTypes("images", mimeTypes);
package.addDirectoryDefinition("scripts", "code/", i18n("Executable Scripts"));
mimeTypes.clear();
mimeTypes << "text/\*";
package.setMimeTypes("scripts", mimeTypes);
package.addFileDefinition("mainscript", "code/main.js", i18n("Main Script File"));
package.setRequired("mainscript", true);
@endcode
* One may also choose to create a subclass of PackageStructure and include the setup
* in the constructor.
*
* Either way, Package creates a self-documenting contract between the packager and
* the application without exposing package internals such as actual on-disk structure
* of the package or requiring that all contents be explicitly known ahead of time.
*
* Subclassing PackageStructure does have provide a number of potential const benefits:
* * the package can be notified of path changes via the virtual pathChanged() method
* * the subclass may implement mechanisms to install and remove packages using the
* virtual install and uninstall methods
* * subclasses can be compiled as plugins for easy re-use
**/
//TODO: write documentation on USING a package
class PackagePrivate;
class PackageStructure;
class PACKAGE_EXPORT Package
{
public:
/**
* Error codes for the install/update/remove jobs
* @since 5.17
*/
enum JobError {
RootCreationError = KJob::UserDefinedError + 1, /**< Cannot create package root directory */
PackageFileNotFoundError, /**< The package file does not exist */
UnsupportedArchiveFormatError, /**< The archive format of the package is not supported */
PackageOpenError, /**< Can't open the package file for reading */
MetadataFileMissingError, /**< The package doesn't have a metadata.desktop file */
PluginNameMissingError, /**< The metadata.desktop file doesn't specify a plugin name */
PluginNameInvalidError, /**< The plugin name contains charaters different from letters, digits, dots and underscores */
UpdatePackageTypeMismatchError, /**< A package with this plugin name was already installed, but has a different type in the metadata.desktop file */
OldVersionRemovalError, /**< Failed to remove the old version of the package during an upgrade */
NewerVersionAlreadyInstalledError, /**< We tried to update, but the same version or a newer one is already installed */
PackageAlreadyInstalledError, /**< The package is already installed and a normal install (not update) was performed */
PackageMoveError, /**< Failure to move a package from the system temporary folder to its final destination */
PackageCopyError, /**< Failure to copy a package folder from somewhere in the filesystem to its final destination */
PackageUninstallError /**< Failure to uninstall a package */
};
/**
* Default constructor
*
* @param structure if a null pointer is passed in, this will creates an empty (invalid) Package;
* otherwise the structure is allowed to set up the Package's initial layout
* @since 4.6
*/
explicit Package(PackageStructure *structure = nullptr);
/**
* Copy constructor
* @since 4.6
*/
Package(const Package &other);
virtual ~Package();
/**
* Assignment operator
* @since 4.6
*/
Package &operator=(const Package &rhs);
/**
* @return true if this package has a valid PackageStructure associatedw it with it.
* A package may not be valid, but have a valid structure. Useful when dealing with
* Package objects in a semi-initialized state (e.g. before calling setPath())
* @since 5.1
*/
bool hasValidStructure() const;
/**
* @return true if all the required components exist
**/
bool isValid() const;
/**
* Sets the path to the root of this package
* @param path an absolute path, or a relative path to the default package root
* @since 4.3
*/
void setPath(const QString &path);
/**
* @return the path to the root of this particular package
*/
const QString path() const;
/**
* Get the path to a given file based on the key and an optional filename.
* Example: finding the main script in a scripting package:
* filePath("mainscript")
*
* Example: finding a specific image in the images directory:
* filePath("images", "myimage.png")
*
* @param key the key of the file type to look for,
* @param filename optional name of the file to locate within the package
* @return path to the file on disk. QString() if not found.
**/
QString filePath(const QByteArray &key, const QString &filename = QString()) const;
/**
* Get the url to a given file based on the key and an optional filename, is the file:// or qrc:// format
* Example: finding the main script in a scripting package:
* filePath("mainscript")
*
* Example: finding a specific image in the images directory:
* filePath("images", "myimage.png")
*
* @param key the key of the file type to look for,
* @param filename optional name of the file to locate within the package
* @return path to the file on disk. QString() if not found.
* @since 5.41
**/
QUrl fileUrl(const QByteArray &key, const QString &filename = QString()) const;
/**
* Get the list of files of a given type.
*
* @param 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
**/
QStringList entryList(const QByteArray &key) const;
/**
* @return user visible name for the given entry
**/
QString name(const QByteArray &key) const;
/**
* @return true if the item at path exists and is required
**/
bool isRequired(const QByteArray &key) const;
/**
* @return the mimeTypes associated with the path, if any
**/
QStringList mimeTypes(const QByteArray &key) const;
/**
* @return the prefix paths inserted between the base path and content entries, in order of priority.
* When searching for a file, all paths will be tried in order.
* @since 4.6
*/
QStringList contentsPrefixPaths() const;
/**
* @return preferred package root. This defaults to kpackage/generic/
*/
QString defaultPackageRoot() const;
/**
* @return true if paths/symlinks outside the package itself should be followed.
* By default this is set to false for security reasons.
*/
bool allowExternalPaths() const;
/**
* @return the package metadata object.
*/
KPluginMetaData metadata() const;
/**
* @return a SHA1 hash digest of the contents of the package in hexadecimal form
* @since 4.4
* @deprecated Since 5.21 use cryptographicHash
*/
#ifndef PACKAGE_NO_DEPRECATED
PACKAGE_DEPRECATED QString contentsHash() const;
#endif
/**
* @return a hash digest of the contents of the package in hexadecimal form
* @since 5.21
*/
QByteArray cryptographicHash(QCryptographicHash::Algorithm algorithm) const;
/**
* Adds a directory to the structure of the package. It is added as
* a not-required element with no associated mimeTypes.
*
* Starting in 4.6, if an entry with the given key
* already exists, the path is added to it as a search alternative.
*
* @param key used as an internal label for this directory
* @param path the path within the package for this directory
* @param name the user visible (translated) name for the directory
**/
void addDirectoryDefinition(const QByteArray &key, const QString &path, const QString &name);
/**
* Adds a file to the structure of the package. It is added as
* a not-required element with no associated mimeTypes.
*
* Starting in 4.6, if an entry with the given key
* already exists, the path is added to it as a search alternative.
*
* @param key used as an internal label for this file
* @param path the path within the package for this file
* @param name the user visible (translated) name for the file
**/
void addFileDefinition(const QByteArray &key, const QString &path, const QString &name);
/**
* Removes a definition from the structure of the package.
* @since 4.6
* @param key the internal label of the file or directory to remove
*/
void removeDefinition(const QByteArray &key);
/**
* Sets whether or not a given part of the structure is required or not.
* The path must already have been added using addDirectoryDefinition
* or addFileDefinition.
*
* @param key the entry within the package
* @param required true if this entry is required, false if not
*/
void setRequired(const QByteArray &key, bool required);
/**
* Defines the default mimeTypes for any definitions that do not have
* associated mimeTypes. Handy for packages with only one or predominantly
* one file type.
*
* @param mimeTypes a list of mimeTypes
**/
void setDefaultMimeTypes(const QStringList &mimeTypes);
/**
* Define mimeTypes for a given part of the structure
* The path must already have been added using addDirectoryDefinition
* or addFileDefinition.
*
* @param key the entry within the package
* @param mimeTypes a list of mimeTypes
**/
void setMimeTypes(const QByteArray &key, const QStringList &mimeTypes);
/**
* Sets the prefixes that all the contents in this package should
* appear under. This defaults to "contents/" and is added automatically
* between the base path and the entries as defined by the package
* structure. Multiple entries can be added.
* In this case each file request will be searched in all prefixes in order,
* and the first found will be returned.
*
* @param prefix paths the directory prefix to use
* @since 4.6
*/
void setContentsPrefixPaths(const QStringList &prefixPaths);
/**
* Sets whether or not external paths/symlinks can be followed by a package
* @param allow true if paths/symlinks outside of the package should be followed,
* false if they should be rejected.
*/
void setAllowExternalPaths(bool allow);
/**
* Sets preferred package root.
*/
void setDefaultPackageRoot(const QString &packageRoot);
/**
* Sets the fallback package root path
* If a file won't be found in this package, it will search it in the package
* with the same structure identified by path
* It is intended to be used by the packageStructure
* @param path package root path @see setPath
*/
void setFallbackPackage(const KPackage::Package &package);
/**
* @return The fallback package root path
*/
KPackage::Package fallbackPackage() const;
// Content structure description methods
/**
* @return all directories registered as part of this Package's structure
*/
QList<QByteArray> directories() const;
/**
* @return all directories registered as part of this Package's required structure
*/
QList<QByteArray> requiredDirectories() const;
/**
* @return all files registered as part of this Package's structure
*/
QList<QByteArray> files() const;
/**
* @return all files registered as part of this Package's required structure
*/
QList<QByteArray> requiredFiles() const;
/**
* Installs a package matching this package structure. By default installs a
* native KPackage::Package.
* After the KJob will emitted finished(), if the install went well
* the Package instance will be guaranteed to have loaded the package just
* installed, and be valid and usable.
*
* @return KJob to track installation progress and result
**/
KJob *install(const QString &sourcePackage, const QString &packageRoot = QString());
/**
* Updates a package matching this package structure. By default installs a
* native KPackage::Package. If an older version is already installed,
* it removes the old one. If the installed one is newer,
* an error will occur.
* After the KJob will emitted finished(), if the install went well
* the Package instance will be guaranteed to have loaded the package just
* updated, and be valid and usable.
*
* @return KJob to track installation progress and result
* @since 5.17
**/
KJob *update(const QString &sourcePackage, const QString &packageRoot = QString());
/**
* Uninstalls a package matching this package structure.
*
* @return KJob to track removal progress and result
*/
KJob *uninstall(const QString &packageName, const QString &packageRoot);
private:
QExplicitlySharedDataPointer<PackagePrivate> d;
friend class PackagePrivate;
};
}
Q_DECLARE_METATYPE(KPackage::Package)
#endif
|