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
|
/*
* ark -- archiver for the KDE project
*
* Copyright (C) 2008 Claudio Bantaloukas <rockdreamer@gmail.com>
* Copyright (C) 2007 Henrique Pinto <henrique.pinto@kdemail.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "cliplugin.h"
#include "ark_debug.h"
#include "kerfuffle/kerfuffle_export.h"
#include <QDebug>
#include <QDir>
#include <QDate>
#include <QTime>
K_PLUGIN_FACTORY_WITH_JSON(CliPluginFactory, "kerfuffle_cli.json", registerPlugin<CliPlugin >();)
CliPlugin::CliPlugin(QObject *parent, const QVariantList &args)
: CliInterface(parent, args),
m_isFirstLine(true),
m_incontent(false),
m_isPasswordProtected(false)
{
qCDebug(ARK) << "Loaded cli-example plugin";
}
CliPlugin::~CliPlugin()
{
}
ParameterList CliPlugin::parameterList() const
{
static ParameterList p;
if (p.isEmpty()) {
p[CaptureProgress] = true;
p[ListProgram] = p[ExtractProgram] = p[DeleteProgram] = p[AddProgram] = QLatin1String("rar");
p[ListArgs] = QStringList() << QLatin1String("v") << QLatin1String("-c-") << QLatin1String("$Archive");
p[ExtractArgs] = QStringList() << QLatin1String("-p-") << QLatin1String("$PreservePathSwitch") << QLatin1String("$PasswordSwitch") << QLatin1String("$Archive") << QLatin1String("$Files");
p[PreservePathSwitch] = QStringList() << QLatin1String("x") << QLatin1String("e");
p[PasswordSwitch] = QStringList() << QLatin1String("-p$Password");
p[DeleteArgs] = QStringList() << QLatin1String("d") << QLatin1String("$Archive") << QLatin1String("$Files");
p[FileExistsExpression] = QLatin1String("^(.+) already exists. Overwrite it");
p[FileExistsInput] = QStringList()
<< QLatin1String("Y") //overwrite
<< QLatin1String("N") //skip
<< QLatin1String("A") //overwrite all
<< QLatin1String("E") //autoskip
<< QLatin1String("Q") //cancel
;
p[AddArgs] = QStringList() << QLatin1String("a") << QLatin1String("$Archive") << QLatin1String("$Files");
p[WrongPasswordPatterns] = QStringList() << QLatin1String("password incorrect");
p[ExtractionFailedPatterns] = QStringList() << QLatin1String("CRC failed");
}
return p;
}
bool CliPlugin::readListLine(const QString &line)
{
const QString m_headerString = QLatin1String("-----------------------------------------");
// skip the heading
if (!m_incontent) {
if (line.startsWith(m_headerString)) {
m_incontent = true;
}
return true;
}
// catch final line
if (line.startsWith(m_headerString)) {
m_incontent = false;
return true;
}
// rar gives one line for the filename and a line after it with some file properties
if (m_isFirstLine) {
m_internalId = line.trimmed();
//m_entryFilename.chop(1); // handle newline
if (!m_internalId.isEmpty() && m_internalId.at(0) == QLatin1Char('*')) {
m_isPasswordProtected = true;
m_internalId.remove(0, 1); // and the spaces in front
} else
m_isPasswordProtected = false;
m_isFirstLine = false;
return true;
}
QStringList fileprops = line.split(QLatin1Char(' '), QString::SkipEmptyParts);
m_internalId = QDir::fromNativeSeparators(m_internalId);
bool isDirectory = (bool)(fileprops[ 5 ].contains(QLatin1Char('d'), Qt::CaseInsensitive));
QDateTime ts(QDate::fromString(fileprops[ 3 ], QLatin1String("dd-MM-yy")),
QTime::fromString(fileprops[ 4 ], QLatin1String("hh:mm")));
// rar output date with 2 digit year but QDate takes is as 19??
// let's take 1950 is cut-off; similar to KDateTime
if (ts.date().year() < 1950) {
ts = ts.addYears(100);
}
m_entryFilename = m_internalId;
if (isDirectory && !m_internalId.endsWith(QLatin1Char('/'))) {
m_entryFilename += QLatin1Char('/');
}
qCDebug(ARK) << m_entryFilename << " : " << fileprops;
ArchiveEntry e;
e[ FileName ] = m_entryFilename;
e[ InternalID ] = m_internalId;
e[ Size ] = fileprops[ 0 ];
e[ CompressedSize] = fileprops[ 1 ];
e[ Ratio ] = fileprops[ 2 ];
e[ Timestamp ] = ts;
e[ IsDirectory ] = isDirectory;
e[ Permissions ] = fileprops[ 5 ].remove(0, 1);
e[ CRC ] = fileprops[ 6 ];
e[ Method ] = fileprops[ 7 ];
e[ Version ] = fileprops[ 8 ];
e[ IsPasswordProtected] = m_isPasswordProtected;
qCDebug(ARK) << "Added entry: " << e;
emit entry(e);
m_isFirstLine = true;
return true;
}
#include "cliplugin.moc"
|