11#include "../kioworkers/file/stat_unix.h"
12#include "config-kiocore.h"
15#include "../aclhelpers_p.h"
18#include "../utils_p.h"
19#include "kiocoredebug.h"
20#include "kioglobal_p.h"
26#include <QDirIterator>
28#include <QMimeDatabase>
30#include <KConfigGroup>
31#include <KDesktopFile>
32#include <KLocalizedString>
33#include <kmountpoint.h>
36#include <ksambashare.h>
38#include <KFileSystemType>
39#include <KProtocolManager>
42#define KFILEITEM_DEBUG 0
47 KFileItemPrivate(
const KIO::UDSEntry &entry,
50 const QUrl &itemOrDirUrl,
52 bool delayedMimeTypes,
53 KFileItem::MimeTypeDetermination mimeTypeDetermination)
59 , m_strLowerCaseName()
62 , m_permissions(permissions)
65 , m_bIsLocalUrl(itemOrDirUrl.isLocalFile())
66 , m_bMimeTypeKnown(false)
67 , m_delayedMimeTypes(delayedMimeTypes)
68 , m_useIconNameCache(false)
70 , m_hiddenCache(HiddenUncached)
72 , m_bSkipMimeTypeFromContent(mimeTypeDetermination == KFileItem::SkipMimeTypeFromContent)
73 , m_bInitCalled(false)
75 if (entry.
count() != 0) {
76 readUDSEntry(urlIsDirectory);
78 Q_ASSERT(!urlIsDirectory);
79 m_strName = itemOrDirUrl.fileName();
80 m_strText = KIO::decodeFileName(m_strName);
87 void ensureInitialized()
const;
94 QString localPath()
const;
100 bool cmp(
const KFileItemPrivate &item)
const;
101 void printCompareDebug(
const KFileItemPrivate &item)
const;
108 void readUDSEntry(
bool _urlIsDirectory);
113 QString parsePermissions(mode_t perm)
const;
118 void determineMimeTypeHelper(
const QUrl &url)
const;
123 mutable KIO::UDSEntry m_entry;
143 mutable QString m_iconName;
148 mutable QString m_strLowerCaseName;
153 mutable QMimeType m_mimeType;
158 mutable mode_t m_fileMode;
162 mutable mode_t m_permissions;
167 mutable bool m_addACL : 1;
172 mutable bool m_bLink : 1;
176 bool m_bIsLocalUrl : 1;
178 mutable bool m_bMimeTypeKnown : 1;
179 mutable bool m_delayedMimeTypes : 1;
182 mutable bool m_useIconNameCache : 1;
206 bool m_bSkipMimeTypeFromContent : 1;
211 mutable bool m_bInitCalled : 1;
214 QString m_guessedMimeType;
215 mutable QString m_access;
218void KFileItemPrivate::ensureInitialized()
const
220 if (!m_bInitCalled) {
225void KFileItemPrivate::init()
const
231 const bool shouldStat = (m_fileMode == KFileItem::Unknown || m_permissions == KFileItem::Unknown || m_entry.count() == 0) && m_url.isLocalFile()
254 mode_t mode = stat_mode(buff);
255 if (Utils::isLinkMask(mode)) {
258 mode = stat_mode(buff);
260 mode = (QT_STAT_MASK - 1) | S_IRWXU | S_IRWXG | S_IRWXO;
264 const mode_t
type = mode & QT_STAT_MASK;
276 const auto uid = stat_uid(buff);
277 const auto gid = stat_gid(buff);
283 if (m_fileMode == KFileItem::Unknown) {
286 if (m_permissions == KFileItem::Unknown) {
287 m_permissions = mode & 07777;
292 appendACLAtoms(pathBA, m_entry, type);
296 if (errno != ENOENT) {
298 qCDebug(KIO_CORE) << QStringLiteral(
"KFileItem: error %1: %2").arg(errno).arg(
QString::fromLatin1(strerror(errno))) <<
"when refreshing"
304 m_bInitCalled =
true;
307void KFileItemPrivate::readUDSEntry(
bool _urlIsDirectory)
323 const bool UDS_URL_seen = !urlStr.
isEmpty();
325 m_url = QUrl(urlStr);
326 if (m_url.isLocalFile()) {
327 m_bIsLocalUrl =
true;
332 m_bMimeTypeKnown = !mimeTypeStr.
isEmpty();
333 if (m_bMimeTypeKnown) {
341 m_hidden = hiddenVal == 1 ? Hidden : (hiddenVal == 0 ? Shown : Auto);
342 m_hiddenCache = HiddenUncached;
344 if (_urlIsDirectory && !UDS_URL_seen && !m_strName.isEmpty() && m_strName != QLatin1String(
".")) {
345 auto path = m_url.path();
348 path = QStringLiteral(
"/");
350 m_url.setPath(Utils::concatPaths(path, m_strName));
356 if (m_fileMode != KFileItem::Unknown) {
357 m_bInitCalled =
true;
368 if (fieldVal != -1) {
374 return QFileInfo(m_url.toLocalFile()).size();
383 if (fieldVal != -1) {
392 switch (mappedWhich) {
393 case KFileItem::ModificationTime:
395 case KFileItem::AccessTime:
397 case KFileItem::CreationTime:
405 m_entry.replace(udsFieldForTime(mappedWhich), time_t_val);
419 const uint uds = udsFieldForTime(mappedWhich);
421 const long long fieldVal = m_entry.numberValue(uds, -1);
422 if (fieldVal != -1) {
430void KFileItemPrivate::printCompareDebug(
const KFileItemPrivate &item)
const
435 const KIO::UDSEntry &otherEntry = item.m_entry;
437 qDebug() <<
"Comparing" << m_url <<
"and" << item.m_url;
438 qDebug() <<
" name" << (m_strName == item.m_strName);
439 qDebug() <<
" local" << (m_bIsLocalUrl == item.m_bIsLocalUrl);
441 qDebug() <<
" mode" << (m_fileMode == item.m_fileMode);
442 qDebug() <<
" perm" << (m_permissions == item.m_permissions);
448 qDebug() <<
" UDS_DEFAULT_ACL_STRING"
451 qDebug() <<
" m_bLink" << (m_bLink == item.m_bLink);
452 qDebug() <<
" m_hidden" << (m_hidden == item.m_hidden);
454 qDebug() <<
" size" << (size() == item.size());
464inline bool KFileItemPrivate::cmp(
const KFileItemPrivate &item)
const
466 if (item.m_bInitCalled) {
471 item.ensureInitialized();
475 printCompareDebug(item);
479 return (m_strName == item.m_strName
480 && m_bIsLocalUrl == item.m_bIsLocalUrl
481 && m_fileMode == item.m_fileMode
482 && m_permissions == item.m_permissions
488 && m_bLink == item.m_bLink
489 && m_hidden == item.m_hidden
490 && size() == item.size()
501inline QString KFileItemPrivate::parsePermissions(mode_t perm)
const
505 static char buffer[12];
511 if ((perm & (S_IXUSR | S_ISUID)) == (S_IXUSR | S_ISUID)) {
513 }
else if ((perm & (S_IXUSR | S_ISUID)) == S_ISUID) {
515 }
else if ((perm & (S_IXUSR | S_ISUID)) == S_IXUSR) {
521 if ((perm & (S_IXGRP | S_ISGID)) == (S_IXGRP | S_ISGID)) {
523 }
else if ((perm & (S_IXGRP | S_ISGID)) == S_ISGID) {
525 }
else if ((perm & (S_IXGRP | S_ISGID)) == S_IXGRP) {
531 if ((perm & (S_IXOTH | S_ISVTX)) == (S_IXOTH | S_ISVTX)) {
533 }
else if ((perm & (S_IXOTH | S_ISVTX)) == S_ISVTX) {
535 }
else if ((perm & (S_IXOTH | S_ISVTX)) == S_IXOTH) {
545 }
else if (m_fileMode != KFileItem::Unknown) {
546 if (Utils::isDirMask(m_fileMode)) {
550 else if (S_ISSOCK(m_fileMode)) {
552 }
else if (S_ISCHR(m_fileMode)) {
554 }
else if (S_ISBLK(m_fileMode)) {
556 }
else if (S_ISFIFO(m_fileMode)) {
567 buffer[1] = (((perm & S_IRUSR) == S_IRUSR) ?
'r' :
'-');
568 buffer[2] = (((perm & S_IWUSR) == S_IWUSR) ?
'w' :
'-');
570 buffer[4] = (((perm & S_IRGRP) == S_IRGRP) ?
'r' :
'-');
571 buffer[5] = (((perm & S_IWGRP) == S_IWGRP) ?
'w' :
'-');
573 buffer[7] = (((perm & S_IROTH) == S_IROTH) ?
'r' :
'-');
574 buffer[8] = (((perm & S_IWOTH) == S_IWOTH) ?
'w' :
'-');
587void KFileItemPrivate::determineMimeTypeHelper(
const QUrl &url)
const
590 if (m_bSkipMimeTypeFromContent || isSlow()) {
591 const QString scheme = url.
scheme();
592 if (scheme.
startsWith(QLatin1String(
"http")) || scheme == QLatin1String(
"mailto")) {
593 m_mimeType = db.
mimeTypeForName(QLatin1String(
"application/octet-stream"));
610 : d(new KFileItemPrivate(
entry,
621 : d(new KFileItemPrivate(
KIO::UDSEntry(),
mode,
KFileItem::Unknown, url, false, false,
KFileItem::NormalMimeTypeDetermination))
623 d->m_bMimeTypeKnown = !mimeType.
simplified().isEmpty();
624 if (d->m_bMimeTypeKnown) {
626 d->m_mimeType = db.mimeTypeForName(mimeType);
631 : d(new KFileItemPrivate(
KIO::UDSEntry(),
KFileItem::Unknown,
KFileItem::Unknown, url, false, false, mimeTypeDetermination))
651 qCWarning(KIO_CORE) <<
"null item";
655 d->m_fileMode = KFileItem::Unknown;
656 d->m_permissions = KFileItem::Unknown;
657 d->m_hidden = KFileItemPrivate::Auto;
658 d->m_hiddenCache = KFileItemPrivate::HiddenUncached;
681 d->m_bMimeTypeKnown =
false;
682 d->m_iconName.clear();
690 d->m_delayedMimeTypes = b;
696 qCWarning(KIO_CORE) <<
"null item";
707 qCWarning(KIO_CORE) <<
"null item";
717 qCWarning(KIO_CORE) <<
"null item";
721 d->ensureInitialized();
724 if (!d->m_strName.isEmpty()) {
730 d->m_hiddenCache = KFileItemPrivate::HiddenUncached;
739 d->ensureInitialized();
752 if (d->m_bIsLocalUrl) {
757 size_t linkSize =
size();
759 if (linkSize > SIZE_MAX) {
760 qCWarning(KIO_CORE) <<
"file size bigger than SIZE_MAX, too big for readlink use!" << path;
763 size_t lowerBound = 256;
764 size_t higherBound = 1024;
765 size_t bufferSize = qBound(lowerBound, linkSize + 1, higherBound);
766 QByteArray linkTargetBuffer(bufferSize, Qt::Initialization::Uninitialized);
769 ssize_t n = readlink(pathBA.
constData(), linkTargetBuffer.
data(), linkTargetBuffer.
size());
770 if (n < 0 && errno != ERANGE) {
771 qCWarning(KIO_CORE) <<
"readlink failed!" << pathBA;
773 }
else if (n > 0 &&
static_cast<size_t>(n) != bufferSize) {
779 linkTargetBuffer.
resize(linkTargetBuffer.
size() * 2);
790QString KFileItemPrivate::localPath()
const
808 return d->localPath();
826 return d->recursiveSize();
849 return KACL(fieldVal);
854 return KACL(d->m_permissions);
866 return KACL(fieldVal);
878 return d->
time(which);
926 cachedStrings.
insert(gid, groupName);
928 return cachedStrings.
value(gid);
944bool KFileItemPrivate::isSlow()
const
946 if (m_slow == SlowUnknown) {
947 const QString path = localPath();
955 return m_slow == Slow;
958bool KFileItem::isSlow()
const
974 return that->determineMimeType().
name();
983 if (!d->m_mimeType.isValid() || !d->m_bMimeTypeKnown) {
989 d->determineMimeTypeHelper(url);
993 Q_ASSERT(d->m_mimeType.isValid());
996 d->m_bMimeTypeKnown =
true;
999 if (d->m_delayedMimeTypes) {
1000 d->m_delayedMimeTypes =
false;
1001 d->m_useIconNameCache =
false;
1005 return d->m_mimeType;
1008bool KFileItem::isMimeTypeKnown()
const
1017 return d->m_bMimeTypeKnown && d->m_guessedMimeType.isEmpty();
1020static bool isDirectoryMounted(
const QUrl &url)
1032 if (info.isDir() && info.size() == 0) {
1038bool KFileItem::isFinalIconKnown()
const
1043 return d->m_bMimeTypeKnown && (!d->m_delayedMimeTypes);
1063 if (isLocalUrl && !d->isSlow() && mime.
inherits(QStringLiteral(
"application/x-desktop"))) {
1066 if (!comment.isEmpty()) {
1072 if (isLocalUrl && isDir() && !d->isSlow() && isDirectoryMounted(url)) {
1074 u.
setPath(Utils::concatPaths(u.
path(), QStringLiteral(
".directory")));
1077 if (!comment.isEmpty()) {
1084 if (!comment.isEmpty()) {
1099 QString icon = cfg.readIcon();
1104 bool isDirEmpty =
true;
1106 while (dirIt.hasNext()) {
1128 const QString icon = cfg.readIcon();
1129 if (cfg.hasLinkType()) {
1133 const QString u = cfg.readUrl();
1139 if (trashConfig.group(QStringLiteral(
"Status")).readEntry(
"Empty",
true)) {
1154 if (d->m_useIconNameCache && !d->m_iconName.isEmpty()) {
1155 return d->m_iconName;
1159 if (!d->m_iconName.isEmpty()) {
1160 d->m_useIconNameCache = d->m_bMimeTypeKnown;
1161 return d->m_iconName;
1169 if (!d->m_guessedMimeType.isEmpty()) {
1172 mime = currentMimeType();
1175 const bool delaySlowOperations = d->m_delayedMimeTypes;
1177 if (isLocalUrl && !delaySlowOperations) {
1178 const QString &localFile = url.toLocalFile();
1180 if (mime.
inherits(QStringLiteral(
"application/x-desktop"))) {
1181 d->m_iconName = iconFromDesktopFile(localFile);
1182 if (!d->m_iconName.isEmpty()) {
1183 d->m_useIconNameCache = d->m_bMimeTypeKnown;
1184 return d->m_iconName;
1189 if (isDirectoryMounted(url)) {
1190 d->m_iconName = iconFromDirectoryFile(localFile);
1191 if (!d->m_iconName.isEmpty()) {
1192 d->m_useIconNameCache = d->m_bMimeTypeKnown;
1193 return d->m_iconName;
1197 d->m_iconName = KIOPrivate::iconForStandardPath(localFile);
1198 if (!d->m_iconName.isEmpty()) {
1199 d->m_useIconNameCache = d->m_bMimeTypeKnown;
1200 return d->m_iconName;
1206 d->m_useIconNameCache = d->m_bMimeTypeKnown;
1207 return d->m_iconName;
1214static bool checkDesktopFile(
const KFileItem &item,
bool _determineMimeType)
1222 if (!item.isRegularFile()) {
1227 if (!item.isReadable()) {
1232 QMimeType mime = _determineMimeType ? item.determineMimeType() : item.currentMimeType();
1233 return mime.
inherits(QStringLiteral(
"application/x-desktop"));
1242 d->ensureInitialized();
1247 names.
append(QStringLiteral(
"emblem-symbolic-link"));
1250 if (!isReadable()) {
1251 names.
append(QStringLiteral(
"emblem-locked"));
1254 if (checkDesktopFile(*
this,
false)) {
1261 names.
append(QStringLiteral(
"emblem-important"));
1266 names.
append(QStringLiteral(
"hidden"));
1272 const QString path = url.toLocalFile();
1274 names.
append(QStringLiteral(
"emblem-shared"));
1292bool KFileItem::isReadable()
const
1298 d->ensureInitialized();
1300 if (d->m_permissions != KFileItem::Unknown) {
1301 const mode_t readMask = S_IRUSR | S_IRGRP | S_IROTH;
1303 if ((d->m_permissions & readMask) == 0) {
1308 if ((d->m_permissions & readMask) == readMask) {
1313 const auto uidOfItem =
userId();
1314 if (uidOfItem != -1) {
1316 if (((uint)uidOfItem) == currentUser.nativeId()) {
1317 return S_IRUSR & d->m_permissions;
1319 const auto gidOfItem =
groupId();
1320 if (gidOfItem != -1) {
1322 return S_IRGRP & d->m_permissions;
1325 return S_IROTH & d->m_permissions;
1330 return S_IRUSR & d->m_permissions;
1342bool KFileItem::isWritable()
const
1348 d->ensureInitialized();
1350 if (d->m_permissions != KFileItem::Unknown) {
1352 if ((d->m_permissions & (S_IWUSR | S_IWGRP | S_IWOTH)) == 0) {
1357 const auto uidOfItem =
userId();
1358 if (uidOfItem != -1) {
1360 if (((uint)uidOfItem) == currentUser.nativeId()) {
1361 return S_IWUSR & d->m_permissions;
1363 const auto gidOfItem =
groupId();
1364 if (gidOfItem != -1) {
1366 return S_IWGRP & d->m_permissions;
1369 if (S_IWOTH & d->m_permissions) {
1376 return S_IWUSR & d->m_permissions;
1381 if (d->m_bIsLocalUrl) {
1388bool KFileItem::isHidden()
const
1395 if (d->m_hidden != KFileItemPrivate::Auto) {
1396 return d->m_hidden == KFileItemPrivate::Hidden;
1398 if (d->m_hiddenCache != KFileItemPrivate::HiddenUncached) {
1399 return d->m_hiddenCache == KFileItemPrivate::HiddenCached;
1403 QString fileName = d->m_url.fileName();
1405 fileName = d->m_strName;
1409 d->m_hiddenCache = fileName.
length() > 1 && fileName[0] ==
QLatin1Char(
'.') ? KFileItemPrivate::HiddenCached : KFileItemPrivate::ShownCached;
1410 return d->m_hiddenCache == KFileItemPrivate::HiddenCached;
1413void KFileItem::setHidden()
1416 d->m_hidden = KFileItemPrivate::Hidden;
1420bool KFileItem::isDir()
const
1426 if (d->m_fileMode != KFileItem::Unknown) {
1428 return Utils::isDirMask(d->m_fileMode);
1431 if (d->m_bMimeTypeKnown && d->m_mimeType.isValid()) {
1434 return d->m_mimeType.inherits(QStringLiteral(
"inode/directory"));
1437 if (d->m_bSkipMimeTypeFromContent) {
1441 d->ensureInitialized();
1443 if (d->m_fileMode == KFileItem::Unknown) {
1448 return Utils::isDirMask(d->m_fileMode);
1451bool KFileItem::isFile()
const
1466 auto toDisplayUrl = [](
const QUrl &url) {
1468 if (url.isLocalFile()) {
1471 dest = url.toDisplayString();
1477 const QString comment = mimeComment();
1480 auto linkText = linkDest();
1481 if (!linkText.startsWith(QStringLiteral(
"anon_inode:"))) {
1483 if (d->m_url.isLocalFile()) {
1484 if (url.scheme().isEmpty()) {
1485 url.setScheme(QStringLiteral(
"file"));
1488 url = d->m_url.resolved(url);
1490 linkText = toDisplayUrl(url);
1493 if (comment.isEmpty()) {
1494 text +=
i18n(
"(Symbolic Link to %1)", linkText);
1496 text +=
i18n(
"(%1, Link to %2)", comment, linkText);
1498 }
else if (targetUrl() != url()) {
1499 text +=
i18n(
" (Points to %1)", toDisplayUrl(targetUrl()));
1500 }
else if (Utils::isRegFileMask(d->m_fileMode)) {
1503 text += QStringLiteral(
" (%1)").arg(comment);
1510 if (!d && !item.d) {
1514 if (!d || !item.d) {
1518 return d->cmp(*item.d);
1523 if (!d && !other.d) {
1527 if (!d || !other.d) {
1531 return d->m_url == other.d->m_url;
1545 return other.d->m_url.isValid();
1547 return d->m_url < other.d->m_url;
1555 return d->m_url < other;
1569 d->ensureInitialized();
1571 if (d->m_access.isNull() && d->m_permissions != KFileItem::Unknown) {
1572 d->m_access = d->parsePermissions(d->m_permissions);
1604 return {
QUrl(),
false};
1607 const QString local_path = localPath();
1611 return {d->m_url, d->m_bIsLocalUrl};
1621 s << a.d->m_strName;
1622 s << a.d->m_strText;
1643 qCWarning(KIO_CORE) <<
"null item";
1653 a.d->m_strName = strName;
1654 a.d->m_strText = strText;
1655 a.d->m_bIsLocalUrl = a.d->m_url.isLocalFile();
1656 a.d->m_bMimeTypeKnown =
false;
1677 d->ensureInitialized();
1679 return d->m_permissions;
1688 d->ensureInitialized();
1690 return d->m_fileMode;
1693bool KFileItem::isLink()
const
1699 d->ensureInitialized();
1704bool KFileItem::isLocalFile()
const
1710 return d->m_bIsLocalUrl;
1719 return d->m_strText;
1729 return d->m_strName;
1730 }
else if (d->m_strLowerCaseName.isNull()) {
1731 d->m_strLowerCaseName = d->m_strName.toLower();
1733 return d->m_strLowerCaseName;
1743 if (!targetUrlStr.
isEmpty()) {
1744 return QUrl(targetUrlStr);
1764 if (!d || d->m_url.isEmpty()) {
1768 if (!d->m_mimeType.isValid()) {
1772 d->m_mimeType = db.
mimeTypeForName(QStringLiteral(
"inode/directory"));
1773 return d->m_mimeType;
1776 if (d->m_delayedMimeTypes) {
1779 d->m_mimeType = db.
mimeTypeForName(QStringLiteral(
"application/octet-stream"));
1780 d->m_bMimeTypeKnown =
false;
1782 d->m_mimeType = mimeTypes.
first();
1784 d->m_bMimeTypeKnown = (mimeTypes.
count() == 1);
1788 d->determineMimeTypeHelper(url);
1789 d->m_bMimeTypeKnown =
true;
1792 return d->m_mimeType;
1801 d->ensureInitialized();
1808 return d ==
nullptr;
1816 if (!d->m_bInitCalled) {
1817 qCWarning(KIO_CORE) <<
"KFileItem: exists called when not initialised" << d->m_url;
1820 return d->m_fileMode != KFileItem::Unknown;
1829 d->ensureInitialized();
1831 if (d->m_permissions == KFileItem::Unknown) {
1835 const mode_t executableMask = S_IXGRP | S_IXUSR | S_IXOTH;
1836 if ((d->m_permissions & executableMask) == 0) {
1841 const auto uid =
userId();
1844 return S_IXUSR & d->m_permissions;
1850 return S_IXGRP & d->m_permissions;
1853 return S_IXOTH & d->m_permissions;
1859 return S_IXUSR & d->m_permissions;
1880 return item.name() == fileName;
1889 return item.url() == url;
1900 for (
const auto &item : *
this) {
1911 for (
const auto &item : *
this) {
1912 lst.
append(item.targetUrl());
1917bool KFileItem::isDesktopFile()
const
1919 return checkDesktopFile(*
this,
true);
1922bool KFileItem::isRegularFile()
const
1928 d->ensureInitialized();
1930 return Utils::isRegFileMask(d->m_fileMode);
1935 if (!d || isDir()) {
1939 const int lastDot = d->m_strText.
lastIndexOf(QStringLiteral(
"."));
1941 return d->m_strText.mid(lastDot + 1);
1952 stream <<
"[null KFileItem]";
1954 stream <<
"[KFileItem for " << item.url() <<
"]";
1959#include "moc_kfileitem.cpp"
The KACL class encapsulates a POSIX Access Control List.
QString readEntry(const char *key, const char *aDefault=nullptr) const
QString readComment() const
KConfigGroup desktopGroup() const
static bool isAuthorizedDesktopFile(const QString &path)
KFileItem findByUrl(const QUrl &url) const
Find a KFileItem by URL and return it.
KFileItem findByName(const QString &fileName) const
Find a KFileItem by name and return it.
KFileItemList()
Creates an empty list of file items.
QList< QUrl > targetUrlList() const
QList< QUrl > urlList() const
A KFileItem is a generic class to handle a file, local or remote.
KFileItem & operator=(const KFileItem &)
Copy assignment.
int userId() const
Returns the file's owner's user id.
int groupId() const
Returns the file's owner's group id.
QUrl mostLocalUrl(bool *local=nullptr) const
Tries to return a local URL for this file item if possible.
bool operator==(const KFileItem &other) const
Returns true if both items share the same URL.
void setUrl(const QUrl &url)
Sets the item's URL.
bool operator!=(const KFileItem &other) const
Returns true if both items do not share the same URL.
KIO::filesize_t size() const
Returns the size of the file, if known.
Q_INVOKABLE QString timeString(KFileItem::FileTimes which=ModificationTime) const
Requests the modification, access or creation time as a string, depending on which.
FileTimes
The timestamps associated with a file.
Q_INVOKABLE QDateTime time(KFileItem::FileTimes which) const
Requests the modification, access or creation time, depending on which.
bool cmp(const KFileItem &item) const
Somewhat like a comparison operator, but more explicit, and it can detect that two fileitems differ i...
bool hasExtendedACL() const
Tells if the file has extended access level information ( Posix ACL )
KACL defaultACL() const
Returns the default access control list for the directory.
mode_t permissions() const
Returns the permissions of the file (stat.st_mode containing only permissions).
KIO::filesize_t recursiveSize() const
For folders, its recursive size: the size of its files plus the recursiveSize of its folder.
KFileItem()
Null KFileItem.
KACL ACL() const
Returns the access control list for the file.
void refreshMimeType()
Re-reads MIME type information.
MostLocalUrlResult isMostLocalUrl() const
Returns a MostLocalUrlResult, with the local Url for this item if possible (otherwise the item url),...
bool exists() const
returns whether the KFileItem exists on-disk Call only after initialization (i.e KIO::stat or refresh...
bool isNull() const
Return true if default-constructed.
KIO::UDSEntry entry() const
Returns the UDS entry.
bool isExecutable() const
Return true if the file has executable permission.
QString suffix() const
Returns the file extension Similar to QFileInfo::suffix except it takes into account UDS_DISPLAY_NAME...
mode_t mode() const
Returns the file type (stat.st_mode containing only S_IFDIR, S_IFLNK, ...).
QString permissionsString() const
Returns the access permissions for the file as a string.
void setLocalPath(const QString &path)
Sets the item's local path (UDS_LOCAL_PATH).
void setDelayedMimeTypes(bool b)
Sets MIME type determination to be immediate or on demand.
void refresh()
Throw away and re-read (for local files) all information about the file.
bool operator<(const KFileItem &other) const
Returns true if this item's URL is lexically less than other's URL; otherwise returns false.
void setName(const QString &name)
Sets the item's name (i.e. the filename).
Universal Directory Service.
QString stringValue(uint field) const
long long numberValue(uint field, long long defaultValue=0) const
@ UDS_LOCAL_USER_ID
User ID of the file owner.
@ UDS_CREATION_TIME
The time the file was created. Required time format: seconds since UNIX epoch.
@ UDS_ICON_OVERLAY_NAMES
A comma-separated list of supplementary icon overlays which will be added to the list of overlays cre...
@ UDS_HIDDEN
Treat the file as a hidden file (if set to 1) or as a normal file (if set to 0).
@ UDS_URL
An alternative URL (If different from the caption).
@ UDS_GROUP
Group Name of the file owner Not present on local fs, use UDS_LOCAL_GROUP_ID.
@ UDS_LINK_DEST
Name of the file where the link points to Allows to check for a symlink (don't use S_ISLNK !...
@ UDS_LOCAL_GROUP_ID
Group ID of the file owner.
@ UDS_MIME_TYPE
A MIME type; the KIO worker should set it if it's known.
@ UDS_LOCAL_PATH
A local file path if the KIO worker display files sitting on the local filesystem (but in another hie...
@ UDS_FILE_TYPE
File type, part of the mode returned by stat (for a link, this returns the file type of the pointed i...
@ UDS_DISPLAY_TYPE
User-readable type of file (if not specified, the MIME type's description is used)
@ UDS_MODIFICATION_TIME
The last time the file was modified. Required time format: seconds since UNIX epoch.
@ UDS_COMMENT
A comment which will be displayed as is to the user.
@ UDS_SIZE
Size of the file.
@ UDS_DEVICE_ID
Device number for this file, used to detect hardlinks.
@ UDS_ACCESS_TIME
The last time the file was opened. Required time format: seconds since UNIX epoch.
@ UDS_DISPLAY_NAME
If set, contains the label to display instead of the 'real name' in UDS_NAME.
@ UDS_DEFAULT_ACL_STRING
The default access control list serialized into a single string.
@ UDS_NAME
Filename - as displayed in directory listings etc.
@ UDS_TARGET_URL
This file is a shortcut or mount, pointing to an URL in a different hierarchy.
@ UDS_ICON_NAME
Name of the icon, that should be used for displaying.
@ UDS_ACL_STRING
The access control list serialized into a single string.
@ UDS_RECURSIVE_SIZE
For folders, the recursize size of its content.
@ UDS_GUESSED_MIME_TYPE
A MIME type to be used for displaying only.
@ UDS_INODE
Inode number for this file, used to detect hardlinks.
@ UDS_USER
User Name of the file owner Not present on local fs, use UDS_LOCAL_USER_ID.
@ UDS_EXTENDED_ACL
Indicates that the entry has extended ACL entries.
@ UDS_ACCESS
Access permissions (part of the mode returned by stat)
bool contains(uint field) const
check existence of a field
int count() const
count fields
static KNFSShare * instance()
Returns the one and only instance of KNFSShare.
static bool supportsWriting(const QUrl &url)
Returns whether the protocol can store data to URLs.
static KSambaShare * instance()
QList< KUserGroup > groups(uint maxCount=KCOREADDONS_UINT_MAX) const
QString loginName() const
QString i18n(const char *text, const TYPE &arg...)
AKONADI_CALENDAR_EXPORT QString displayName(Akonadi::ETMCalendar *calendar, const Akonadi::Collection &collection)
Type type(const QSqlDatabase &db)
KCOREADDONS_EXPORT Type fileSystemType(const QString &path)
A namespace for KIO globals.
KIOCORE_EXPORT QString convertSize(KIO::filesize_t size)
Converts size from bytes to the string representation.
qulonglong filesize_t
64-bit file size
@ StatDefaultDetails
Default StatDetail flag when creating a StatJob.
KIOCORE_EXPORT QString decodeFileName(const QString &str)
Decodes (from the filename to the text displayed) This doesn't do anything anymore,...
QString path(const QString &relativePath)
KCOREADDONS_EXPORT QString tildeCollapse(const QString &path)
const char * constData() const const
void resize(qsizetype newSize, char c)
qsizetype size() const const
void truncate(qsizetype pos)
QDateTime fromSecsSinceEpoch(qint64 secs)
QDateTime toLocalTime() const const
qint64 toSecsSinceEpoch() const const
QByteArray encodeName(const QString &fileName)
QString symLinkTarget() const const
bool isReadable() const const
bool isWritable() const const
void append(QList< T > &&value)
const_iterator cbegin() const const
const_iterator cend() const const
qsizetype count() const const
bool isEmpty() const const
void reserve(qsizetype size)
qsizetype size() const const
QString toString(QDate date, FormatType format) const const
bool contains(const Key &key) const const
iterator insert(const Key &key, const T &value)
T value(const Key &key, const T &defaultValue) const const
QMimeType mimeTypeForFile(const QFileInfo &fileInfo, MatchMode mode) const const
QMimeType mimeTypeForName(const QString &nameOrAlias) const const
QMimeType mimeTypeForUrl(const QUrl &url) const const
QList< QMimeType > mimeTypesForFileName(const QString &fileName) const const
bool inherits(const QString &mimeTypeName) const const
QString fromLatin1(QByteArrayView str)
QString fromUtf8(QByteArrayView str)
bool isEmpty() const const
qsizetype lastIndexOf(QChar ch, Qt::CaseSensitivity cs) const const
qsizetype length() const const
QString simplified() const const
bool startsWith(QChar c, Qt::CaseSensitivity cs) const const
QStringView mid(qsizetype start, qsizetype length) const const
QString machineHostName()
QUrl adjusted(FormattingOptions options) const const
QUrl fromLocalFile(const QString &localFile)
bool isEmpty() const const
bool isValid() const const
QString path(ComponentFormattingOptions options) const const
QString scheme() const const
void setPath(const QString &path, ParsingMode mode)
QString toLocalFile() const const
QVariant fromValue(T &&value)
static KUserId currentUserId()