1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/*
Copyright 2012 Olivier de Gaalon <olivier.jg@gmail.com>
Copyright 2014 Kevin Funk <kfunk@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 version 2 as published by the Free Software Foundation.
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.
*/
#include "renameaction.h"
#include <language/duchain/duchainutils.h>
#include <language/duchain/duchainlock.h>
#include <language/duchain/duchain.h>
#include <language/codegen/documentchangeset.h>
#include <language/backgroundparser/backgroundparser.h>
#include <interfaces/icore.h>
#include <interfaces/ilanguagecontroller.h>
#include <interfaces/iuicontroller.h>
#include <sublime/message.h>
// KF
#include <KLocalizedString>
using namespace KDevelop;
QVector<RevisionedFileRanges> RevisionedFileRanges::convert(const QMap<IndexedString, QVector<RangeInRevision>>& uses)
{
QVector<RevisionedFileRanges> ret(uses.size());
auto insertIt = ret.begin();
for (auto it = uses.constBegin(); it != uses.constEnd(); ++it, ++insertIt) {
insertIt->file = it.key();
insertIt->ranges = it.value();
DocumentChangeTracker* tracker =
ICore::self()->languageController()->backgroundParser()->trackerForUrl(it.key());
if (tracker) {
insertIt->revision = tracker->revisionAtLastReset();
}
}
return ret;
}
class KDevelop::RenameActionPrivate
{
public:
Identifier m_oldDeclarationName;
QString m_newDeclarationName;
QVector<RevisionedFileRanges> m_oldDeclarationUses;
};
RenameAction::RenameAction(const Identifier& oldDeclarationName, const QString& newDeclarationName,
const QVector<RevisionedFileRanges>& oldDeclarationUses)
: d_ptr(new RenameActionPrivate)
{
Q_D(RenameAction);
d->m_oldDeclarationName = oldDeclarationName;
d->m_newDeclarationName = newDeclarationName.trimmed();
d->m_oldDeclarationUses = oldDeclarationUses;
}
RenameAction::~RenameAction()
{
}
QString RenameAction::description() const
{
Q_D(const RenameAction);
return i18n("Rename \"%1\" to \"%2\"", d->m_oldDeclarationName.toString(), d->m_newDeclarationName);
}
QString RenameAction::newDeclarationName() const
{
Q_D(const RenameAction);
return d->m_newDeclarationName;
}
QString RenameAction::oldDeclarationName() const
{
Q_D(const RenameAction);
return d->m_oldDeclarationName.toString();
}
void RenameAction::execute()
{
Q_D(RenameAction);
DocumentChangeSet changes;
for (const RevisionedFileRanges& ranges : qAsConst(d->m_oldDeclarationUses)) {
for (const RangeInRevision range : ranges.ranges) {
KTextEditor::Range currentRange;
if (ranges.revision && ranges.revision->valid()) {
currentRange = ranges.revision->transformToCurrentRevision(range);
} else {
currentRange = range.castToSimpleRange();
}
DocumentChange useRename(ranges.file, currentRange,
d->m_oldDeclarationName.toString(), d->m_newDeclarationName);
changes.addChange(useRename);
changes.setReplacementPolicy(DocumentChangeSet::WarnOnFailedChange);
}
}
DocumentChangeSet::ChangeResult result = changes.applyAllChanges();
if (!result) {
auto* message = new Sublime::Message(i18n("Failed to apply changes: %1", result.m_failureReason), Sublime::Message::Error);
ICore::self()->uiController()->postMessage(message);
}
emit executed(this);
}
|