/usr/include/KF5/KArchive/k7zip.h is in libkf5archive-dev 5.18.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 | /* This file is part of the KDE libraries
Copyright (C) 2011 Mario Bensi <mbensi@ipsquad.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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 K7ZIP_H
#define K7ZIP_H
#include <karchive.h>
/**
* A class for reading / writing p7zip archives.
*
* @author Mario Bensi
*/
class KARCHIVE_EXPORT K7Zip : public KArchive
{
public:
/**
* Creates an instance that operates on the given filename
* using the compression filter associated to given mimetype.
*
* @param filename is a local path (e.g. "/home/user/myfile.7z")
*/
explicit K7Zip(const QString &filename);
/**
* Creates an instance that operates on the given device.
* The device can be compressed (KFilterDev) or not (QFile, etc.).
* @warning Do not assume that giving a QFile here will decompress the file,
* in case it's compressed!
* @param dev the device to read from. If the source is compressed, the
* QIODevice must take care of decompression
*/
explicit K7Zip(QIODevice *dev);
/**
* If the archive is still opened, then it will be
* closed automatically by the destructor.
*/
virtual ~K7Zip();
protected:
/// Reimplemented from KArchive
bool doWriteSymLink(const QString &name, const QString &target,
const QString &user, const QString &group,
mode_t perm, const QDateTime &atime, const QDateTime &mtime, const QDateTime &ctime) Q_DECL_OVERRIDE;
/// Reimplemented from KArchive
bool doWriteDir(const QString &name, const QString &user, const QString &group,
mode_t perm, const QDateTime &atime, const QDateTime &mtime, const QDateTime &ctime) Q_DECL_OVERRIDE;
/// Reimplemented from KArchive
bool doPrepareWriting(const QString &name, const QString &user,
const QString &group, qint64 size, mode_t perm,
const QDateTime &atime, const QDateTime &mtime, const QDateTime &ctime) Q_DECL_OVERRIDE;
/// Reimplemented from KArchive
bool doFinishWriting(qint64 size) Q_DECL_OVERRIDE;
/// Reimplemented from KArchive
bool writeData(const char *data, qint64 size) Q_DECL_OVERRIDE;
/**
* Opens the archive for reading.
* Parses the directory listing of the archive
* and creates the KArchiveDirectory/KArchiveFile entries.
* @param mode the mode of the file
*/
bool openArchive(QIODevice::OpenMode mode) Q_DECL_OVERRIDE;
bool closeArchive() Q_DECL_OVERRIDE;
protected:
void virtual_hook(int id, void *data) Q_DECL_OVERRIDE;
private:
class K7ZipPrivate;
K7ZipPrivate *const d;
};
#endif
|