2014-11-13 01:04:59 +02:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000-2002 Stephan Kulow <coolo@kde.org>
|
|
|
|
Copyright (C) 2000-2002 David Faure <faure@kde.org>
|
|
|
|
Copyright (C) 2000-2002 Waldo Bastian <bastian@kde.org>
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License (LGPL) as published by the Free Software Foundation;
|
|
|
|
either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __file_h__
|
|
|
|
#define __file_h__
|
|
|
|
|
|
|
|
#include <kio/global.h>
|
|
|
|
#include <kio/slavebase.h>
|
|
|
|
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <QtCore/QHash>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2022-12-06 04:10:58 +02:00
|
|
|
class FileProtocol : public QObject, public KIO::SlaveBase
|
2014-11-13 01:04:59 +02:00
|
|
|
{
|
2023-06-21 20:05:23 +03:00
|
|
|
Q_OBJECT
|
2014-11-13 01:04:59 +02:00
|
|
|
public:
|
2023-06-21 20:05:23 +03:00
|
|
|
FileProtocol(const QByteArray &app);
|
|
|
|
~FileProtocol();
|
|
|
|
|
|
|
|
void get(const KUrl &url) final;
|
|
|
|
void put(const KUrl &url, int _mode, KIO::JobFlags _flags) final;
|
|
|
|
void copy(const KUrl &src, const KUrl &dest, int mode, KIO::JobFlags flags) final;
|
|
|
|
void rename(const KUrl &src, const KUrl &dest, KIO::JobFlags flags) final;
|
|
|
|
void symlink(const QString &target, const KUrl &dest, KIO::JobFlags flags) final;
|
|
|
|
|
|
|
|
void stat(const KUrl &url) final;
|
|
|
|
void listDir(const KUrl &url) final;
|
|
|
|
void mkdir(const KUrl &url, int permissions) final;
|
|
|
|
void chmod(const KUrl &url, int permissions) final;
|
|
|
|
void chown(const KUrl &url, const QString &owner, const QString &group) final;
|
|
|
|
void setModificationTime(const KUrl &url, const QDateTime &mtime) final;
|
|
|
|
void del(const KUrl &url, bool isfile) final;
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
private:
|
2024-05-31 16:30:03 +03:00
|
|
|
bool createUDSEntry(const QString &filename, const QString &path, KIO::UDSEntry &entry,
|
2023-06-21 21:12:55 +03:00
|
|
|
short int details);
|
2023-06-21 20:05:23 +03:00
|
|
|
int setACL(const char *path, mode_t perm, bool _directoryDefault);
|
2014-11-13 01:04:59 +02:00
|
|
|
|
2023-06-21 20:05:23 +03:00
|
|
|
QString getUserName(uid_t uid) const;
|
|
|
|
QString getGroupName(gid_t gid) const;
|
2014-11-13 01:04:59 +02:00
|
|
|
|
2023-06-21 20:05:23 +03:00
|
|
|
bool deleteRecursive(const QString &path);
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
private:
|
2023-06-21 20:05:23 +03:00
|
|
|
mutable QHash<uid_t, QString> mUsercache;
|
|
|
|
mutable QHash<gid_t, QString> mGroupcache;
|
2014-11-13 01:04:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|