┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/draganddrophelper.h
diff options
context:
space:
mode:
authorJin Liu <[email protected]>2024-02-29 23:13:47 +0000
committerJin Liu <[email protected]>2024-02-29 23:13:47 +0000
commitdc149ec5e52f52c514cf362603d05ba8eea506b8 (patch)
tree70442a1ab27fedf220daeca496dfb3c842379b93 /src/views/draganddrophelper.h
parent992272f8c5b80b0d96e9419cdbe14b6f3d2a22e4 (diff)
DragAndDropHelper::updateDropAction: use StatJob for remote URLs
When dragging onto tabs/Places from a remote URL, we don't process the QDropEvent immediately, but start a StatJob and process the event when it finishes. Also, the result of the StatJob is cached for 30 seconds, to avoid starting duplicate jobs.
Diffstat (limited to 'src/views/draganddrophelper.h')
-rw-r--r--src/views/draganddrophelper.h58
1 files changed, 47 insertions, 11 deletions
diff --git a/src/views/draganddrophelper.h b/src/views/draganddrophelper.h
index 73043febc..df3b49966 100644
--- a/src/views/draganddrophelper.h
+++ b/src/views/draganddrophelper.h
@@ -11,9 +11,11 @@
#include "dolphin_export.h"
#include <KFileItem>
+#include <KIO/StatJob>
#include <QList>
#include <QString>
+#include <QTimer>
#include <QUrl>
class QDropEvent;
@@ -24,7 +26,7 @@ namespace KIO
class DropJob;
}
-class DOLPHIN_EXPORT DragAndDropHelper
+class DOLPHIN_EXPORT DragAndDropHelper : public QObject
{
public:
/**
@@ -52,16 +54,6 @@ public:
static bool supportsDropping(const KFileItem &destItem);
/**
- * Updates the drop action according to whether the destination supports dropping.
- * If supportsDropping(destUrl), set dropAction = proposedAction. Otherwise, set
- * dropAction = Qt::IgnoreAction.
- *
- * @param event Drop event.
- * @param destUrl Destination URL.
- */
- static void updateDropAction(QDropEvent *event, const QUrl &destUrl);
-
- /**
* @return True if destUrl is contained in the urls parameter.
*/
static bool urlListMatchesUrl(const QList<QUrl> &urls, const QUrl &destUrl);
@@ -84,11 +76,55 @@ public:
*/
static void clearUrlListMatchesUrlCache();
+ DragAndDropHelper(QObject *parent);
+
+ /**
+ * Updates the drop action according to whether the destination supports dropping.
+ * If supportsDropping(destUrl), set dropAction = proposedAction. Otherwise, set
+ * dropAction = Qt::IgnoreAction.
+ *
+ * @param event Drop event.
+ * @param destUrl Destination URL.
+ */
+ void updateDropAction(QDropEvent *event, const QUrl &destUrl);
+
private:
/**
* Stores the results of the expensive checks made in urlListMatchesUrl.
*/
static QHash<QUrl, bool> m_urlListMatchesUrlCache;
+
+ /**
+ * When updateDropAction() is called with a remote URL, we create a StatJob to
+ * check if the destination is a directory or a desktop file. We cache the result
+ * here to avoid doing the stat again on subsequent calls to updateDropAction().
+ */
+ KFileItem m_destItemCache;
+
+ /**
+ * Only keep the cache for 30 seconds, because the stat of the destUrl might change.
+ */
+ QTimer m_destItemCacheInvalidationTimer;
+
+ /**
+ * A StatJob on-fly to fill the cache for a remote URL. We shouldn't create more
+ * than one StatJob at a time, so we keep a pointer to the current one.
+ */
+ KIO::StatJob *m_statJob = nullptr;
+
+ /**
+ * The URL for which the StatJob is running.
+ * Note: We can't use m_statJob->url() because StatJob might resolve the URL to be
+ * different from what we passed into stat(). E.g. "mtp:<bus-name>" is resolved
+ * to "mtp:<phone name>"
+ */
+ QUrl m_statJobUrl;
+
+ /**
+ * The last event we received in updateDropAction(), but can't react to yet,
+ * because a StatJob is on-fly.
+ */
+ QDropEvent *m_lastUndecidedEvent = nullptr;
};
#endif