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
|
/*
SPDX-FileCopyrightText: 2009 Harald Hvaal <haraldhv@stud.ntnu.no>
SPDX-FileCopyrightText: 2009-2010 Raphael Kubo da Costa <rakuco@FreeBSD.org>
SPDX-FileCopyrightText: 2016 Vladyslav Batyrenko <mvlabat@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CLIPLUGIN_H
#define CLIPLUGIN_H
#include "cliinterface.h"
class CliPlugin : public Kerfuffle::CliInterface
{
Q_OBJECT
public:
explicit CliPlugin(QObject *parent, const QVariantList &args);
~CliPlugin() override;
void resetParsing() override;
bool readListLine(const QString &line) override;
bool readExtractLine(const QString &line) override;
bool readDeleteLine(const QString &line) override;
bool isPasswordPrompt(const QString &line) override;
bool isWrongPasswordMsg(const QString &line) override;
bool isCorruptArchiveMsg(const QString &line) override;
bool isDiskFullMsg(const QString &line) override;
bool isFileExistsMsg(const QString &line) override;
bool isFileExistsFileName(const QString &line) override;
private:
enum ArchiveType {
ArchiveType7z = 0,
ArchiveTypeBZip2,
ArchiveTypeGZip,
ArchiveTypeXz,
ArchiveTypeTar,
ArchiveTypeZip,
ArchiveTypeRar,
} m_archiveType;
enum ParseState {
ParseStateTitle = 0,
ParseStateHeader,
ParseStateArchiveInformation,
ParseStateComment,
ParseStateEntryInformation,
} m_parseState;
enum BinaryVariant {
Undefined = 0,
P7zip,
Upstream7zip,
} m_binaryVariant;
void setupCliProperties();
void handleMethods(const QStringList &methods);
void fixDirectoryFullName();
int m_linesComment;
Kerfuffle::Archive::Entry *m_currentArchiveEntry;
bool m_isFirstInformationEntry;
};
#endif // CLIPLUGIN_H
|