cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2002-2005 David Faure <faure@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#include "ktar.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <stdio.h>
|
|
|
|
void recursive_print(const KArchiveDirectory *dir, const QString &path)
|
|
{
|
|
QStringList l = dir->entries();
|
|
l.sort();
|
|
QStringList::ConstIterator it = l.constBegin();
|
|
for (; it != l.constEnd(); ++it) {
|
|
const KArchiveEntry *entry = dir->entry((*it));
|
|
printf("mode=%07o %s %s %s%s %lld isdir=%d\n",
|
|
entry->permissions(),
|
|
entry->user().toLatin1().constData(),
|
|
entry->group().toLatin1().constData(),
|
|
path.toLatin1().constData(),
|
|
(*it).toLatin1().constData(),
|
|
entry->isFile() ? static_cast<const KArchiveFile *>(entry)->size() : 0,
|
|
entry->isDirectory());
|
|
if (!entry->symLinkTarget().isEmpty()) {
|
|
printf(" (symlink to %s)\n", qPrintable(entry->symLinkTarget()));
|
|
}
|
|
if (entry->isDirectory()) {
|
|
recursive_print((KArchiveDirectory *)entry, path + (*it) + '/');
|
|
}
|
|
}
|
|
}
|
|
|
|
// See karchivetest.cpp for the unittest that covers KTar.
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if (argc != 2) {
|
|
printf(
|
|
"\n"
|
|
" Usage :\n"
|
|
" ./ktartest /path/to/existing_file.tar.gz tests listing an existing tar.gz\n");
|
|
return 1;
|
|
}
|
|
|
|
KTar tar(argv[1]);
|
|
|
|
if (!tar.open(QIODevice::ReadOnly)) {
|
|
printf("Could not open %s for reading\n", argv[1]);
|
|
return 1;
|
|
}
|
|
|
|
const KArchiveDirectory *dir = tar.directory();
|
|
|
|
// printf("calling recursive_print\n");
|
|
recursive_print(dir, QLatin1String(""));
|
|
// printf("recursive_print called\n");
|
|
|
|
tar.close();
|
|
|
|
return 0;
|
|
}
|