Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / runtime / kioslave / archive / kio_archive.h
blobfea157e8a9ab33248a61205d84b599d33f0d5232
1 /* This file is part of the KDE libraries
2 Copyright (C) 2000 David Faure <faure@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef _TAR_H
21 #define _TAR_H
23 #include <sys/types.h>
25 #include <kio/global.h>
26 #include <kio/slavebase.h>
28 class ArchiveProtocol : public KIO::SlaveBase
30 public:
31 ArchiveProtocol( const QByteArray &pool, const QByteArray &app );
32 virtual ~ArchiveProtocol();
34 virtual void listDir( const KUrl & url );
35 virtual void stat( const KUrl & url );
36 virtual void get( const KUrl & url );
38 private:
39 void createRootUDSEntry( KIO::UDSEntry & entry );
40 void createUDSEntry( const KArchiveEntry * tarEntry, KIO::UDSEntry & entry );
42 /**
43 * \brief find, check and open the archive file
44 * \param url The URL of the archive
45 * \param path Path where the archive really is (returned value)
46 * \param errNum KIO error number (undefined if the function returns true)
47 * \return true if file was found, false if there was an error
49 bool checkNewFile( const KUrl & url, QString & path, KIO::Error& errorNum );
51 KArchive * m_archiveFile;
52 QString m_archiveName;
53 QString m_user, m_group;
54 time_t m_mtime;
57 #endif