Baloo

metadatamover.cpp
1/*
2 This file is part of the KDE Project
3 SPDX-FileCopyrightText: 2009-2011 Sebastian Trueg <trueg@kde.org>
4 SPDX-FileCopyrightText: 2013-2014 Vishesh Handa <vhanda@kde.org>
5
6 SPDX-License-Identifier: LGPL-2.0-or-later
7*/
8
9#include "metadatamover.h"
10#include "database.h"
11#include "termgenerator.h"
12#include "transaction.h"
13#include "baloodebug.h"
14
15#include <QFile>
16
17using namespace Baloo;
18
19MetadataMover::MetadataMover(Database* db, QObject* parent)
20 : QObject(parent)
21 , m_db(db)
22{
23}
24
25MetadataMover::~MetadataMover()
26{
27}
28
29void MetadataMover::moveFileMetadata(const QString& from, const QString& to)
30{
31// qCDebug(BALOO) << from << to;
32 Q_ASSERT(!from.isEmpty() && from != QLatin1String("/"));
33 Q_ASSERT(!to.isEmpty() && to != QLatin1String("/"));
34
35 Transaction tr(m_db, Transaction::ReadWrite);
36
37 // We do NOT get deleted messages for overwritten files! Thus, we
38 // have to remove all metadata for overwritten files first.
39 removeMetadata(&tr, to);
40
41 // and finally update the old statements
42 updateMetadata(&tr, from, to);
43
44 tr.commit();
45}
46
47void MetadataMover::removeFileMetadata(const QString& file)
48{
49 Q_ASSERT(!file.isEmpty() && file != QLatin1String("/"));
50
51 Transaction tr(m_db, Transaction::ReadWrite);
52 removeMetadata(&tr, file);
53 tr.commit();
54}
55
56void MetadataMover::removeMetadata(Transaction* tr, const QString& url)
57{
58 Q_ASSERT(!url.isEmpty());
59
60 quint64 id = tr->documentId(QFile::encodeName(url));
61 if (!id) {
62 Q_EMIT fileRemoved(url);
63 return;
64 }
65
66 bool isDir = url.endsWith(QLatin1Char('/'));
67 if (!isDir) {
68 tr->removeDocument(id);
69 } else {
70 tr->removeRecursively(id);
71 }
72
73 Q_EMIT fileRemoved(url);
74}
75
76void MetadataMover::updateMetadata(Transaction* tr, const QString& from, const QString& to)
77{
78 qCDebug(BALOO) << from << "->" << to;
79 Q_ASSERT(!from.isEmpty() && !to.isEmpty());
80 Q_ASSERT(to[to.size()-1] != QLatin1Char('/'));
81
82 // directory case
83 auto normalizedFrom = from;
84 if (normalizedFrom.endsWith(QLatin1Char('/'))) {
85 normalizedFrom.chop(1);
86 }
87
88 const QByteArray fromPath = QFile::encodeName(normalizedFrom);
89 quint64 id = tr->documentId(fromPath);
90 if (!id) {
91 qCDebug(BALOO) << "Document not (yet) known, signaling newFile" << to;
92 Q_EMIT movedWithoutData(to);
93 return;
94 }
95
96 const QByteArray toPath = QFile::encodeName(to);
97 auto lastSlash = toPath.lastIndexOf('/');
98 const QByteArray parentPath = toPath.left(lastSlash + 1);
99
100 quint64 parentId = tr->documentId(parentPath);
101 if (!parentId) {
102 qCDebug(BALOO) << "Parent directory not (yet) known, signaling newFile" << to;
103 Q_EMIT movedWithoutData(QFile::decodeName(parentPath));
104 return;
105 }
106
107 Document doc;
108
109 const QByteArray fileName = toPath.mid(lastSlash + 1);
110 TermGenerator tg(doc);
111 tg.indexFileNameText(QFile::decodeName(fileName));
112
113 doc.setId(id);
114 doc.setParentId(parentId);
115 doc.setUrl(toPath);
116 tr->replaceDocument(doc, DocumentUrl | FileNameTerms);
117
118 // Possible scenarios
119 // 1. file moves to the same device - id is preserved
120 // 2. file moves to a different device - id is not preserved
121}
122
123#include "moc_metadatamover.cpp"
Implements storage for docIds without any associated data Instantiated for:
Definition coding.cpp:11
qsizetype lastIndexOf(QByteArrayView bv) const const
QByteArray left(qsizetype len) const const
QByteArray mid(qsizetype pos, qsizetype len) const const
QString decodeName(const QByteArray &localFileName)
QByteArray encodeName(const QString &fileName)
Q_EMITQ_EMIT
QString tr(const char *sourceText, const char *disambiguation, int n)
void chop(qsizetype n)
bool endsWith(QChar c, Qt::CaseSensitivity cs) const const
bool isEmpty() const const
qsizetype size() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:52:28 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.