cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/* This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2002-2019 David Faure <faure@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#include "kar.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=%7o path=%s type=%s size=%lld\n",
|
|
entry->permissions(),
|
|
qPrintable(path + (*it)),
|
|
entry->isFile() ? "file" : "dir",
|
|
entry->isFile() ? static_cast<const KArchiveFile *>(entry)->size() : 0);
|
|
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 KAr.
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if (argc != 2) {
|
|
printf(
|
|
"\n"
|
|
" Usage :\n"
|
|
" ./kartest /path/to/existing_file.a tests listing an existing archive\n");
|
|
return 1;
|
|
}
|
|
|
|
KAr archive(argv[1]);
|
|
|
|
if (!archive.open(QIODevice::ReadOnly)) {
|
|
printf("Could not open %s for reading\n", argv[1]);
|
|
return 1;
|
|
}
|
|
|
|
const KArchiveDirectory *dir = archive.directory();
|
|
|
|
// printf("calling recursive_print\n");
|
|
recursive_print(dir, QLatin1String(""));
|
|
// printf("recursive_print called\n");
|
|
|
|
archive.close();
|
|
|
|
return 0;
|
|
}
|