Files
qt-creator/src/plugins/qmljseditor/qmljsquickfix.cpp

180 lines
5.0 KiB
C++
Raw Normal View History

/**************************************************************************
**
** This file is part of Qt Creator
**
2011-01-11 16:28:15 +01:00
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
**
2011-04-13 08:42:33 +02:00
** Contact: Nokia Corporation (info@qt.nokia.com)
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2010-12-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at info@qt.nokia.com.
**
**************************************************************************/
#include "qmljsquickfix.h"
#include "qmljscomponentfromobjectdef.h"
#include "qmljseditor.h"
2010-06-07 12:12:07 +02:00
#include "qmljs/parser/qmljsast_p.h"
2010-07-26 13:06:33 +02:00
#include <extensionsystem/iplugin.h>
#include <extensionsystem/pluginmanager.h>
#include <qmljs/qmljsmodelmanagerinterface.h>
#include <QtCore/QDebug>
2010-07-26 13:06:33 +02:00
using namespace QmlJS;
using namespace QmlJS::AST;
using namespace QmlJSEditor;
using namespace QmlJSEditor::Internal;
using namespace QmlJSTools;
2010-07-26 13:06:33 +02:00
using namespace TextEditor;
using TextEditor::RefactoringChanges;
QmlJSQuickFixState::QmlJSQuickFixState(TextEditor::BaseTextEditorWidget *editor)
2010-07-26 13:06:33 +02:00
: QuickFixState(editor)
{
}
2010-06-07 12:12:07 +02:00
2010-07-26 13:06:33 +02:00
SemanticInfo QmlJSQuickFixState::semanticInfo() const
{
2010-07-26 13:06:33 +02:00
return _semanticInfo;
}
2010-07-26 13:06:33 +02:00
Snapshot QmlJSQuickFixState::snapshot() const
{
2010-07-26 13:06:33 +02:00
return _semanticInfo.snapshot;
}
2010-07-26 13:06:33 +02:00
Document::Ptr QmlJSQuickFixState::document() const
2010-06-07 12:12:07 +02:00
{
return _semanticInfo.document;
}
const QmlJSRefactoringFile QmlJSQuickFixState::currentFile() const
2010-06-07 12:12:07 +02:00
{
return QmlJSRefactoringFile(editor(), document());
2010-06-07 12:12:07 +02:00
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixOperation::QmlJSQuickFixOperation(const QmlJSQuickFixState &state, int priority)
: QuickFixOperation(priority)
, _state(state)
2010-06-07 12:12:07 +02:00
{
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixOperation::~QmlJSQuickFixOperation()
2010-06-07 12:12:07 +02:00
{
2010-07-26 13:06:33 +02:00
}
void QmlJSQuickFixOperation::perform()
{
QmlJSRefactoringChanges refactoring(ExtensionSystem::PluginManager::instance()->getObject<QmlJS::ModelManagerInterface>(),
_state.snapshot());
QmlJSRefactoringFile current = refactoring.file(fileName());
performChanges(&current, &refactoring);
}
2010-07-26 13:06:33 +02:00
const QmlJSQuickFixState &QmlJSQuickFixOperation::state() const
{
return _state;
2010-06-07 12:12:07 +02:00
}
QString QmlJSQuickFixOperation::fileName() const
{
2010-07-26 13:06:33 +02:00
return state().document()->fileName();
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixFactory::QmlJSQuickFixFactory()
{
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixFactory::~QmlJSQuickFixFactory()
{
}
2010-07-26 13:06:33 +02:00
QList<QuickFixOperation::Ptr> QmlJSQuickFixFactory::matchingOperations(QuickFixState *state)
2010-06-07 12:12:07 +02:00
{
2010-07-26 13:06:33 +02:00
if (QmlJSQuickFixState *qmljsState = static_cast<QmlJSQuickFixState *>(state))
return match(*qmljsState);
else
return QList<TextEditor::QuickFixOperation::Ptr>();
2010-06-07 12:12:07 +02:00
}
QList<QmlJSQuickFixOperation::Ptr> QmlJSQuickFixFactory::noResult()
{
return QList<QmlJSQuickFixOperation::Ptr>();
}
QList<QmlJSQuickFixOperation::Ptr> QmlJSQuickFixFactory::singleResult(QmlJSQuickFixOperation *operation)
{
QList<QmlJSQuickFixOperation::Ptr> result;
result.append(QmlJSQuickFixOperation::Ptr(operation));
return result;
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixCollector::QmlJSQuickFixCollector()
{
}
QmlJSQuickFixCollector::~QmlJSQuickFixCollector()
{
}
bool QmlJSQuickFixCollector::supportsEditor(TextEditor::ITextEditor *editable) const
2010-06-07 12:12:07 +02:00
{
return qobject_cast<QmlJSTextEditorWidget *>(editable->widget()) != 0;
2010-06-07 12:12:07 +02:00
}
bool QmlJSQuickFixCollector::supportsPolicy(TextEditor::CompletionPolicy policy) const
{
return policy == TextEditor::QuickFixCompletion;
}
TextEditor::QuickFixState *QmlJSQuickFixCollector::initializeCompletion(TextEditor::BaseTextEditorWidget *editor)
{
if (QmlJSTextEditorWidget *qmljsEditor = qobject_cast<QmlJSTextEditorWidget *>(editor)) {
2010-07-26 13:06:33 +02:00
const SemanticInfo info = qmljsEditor->semanticInfo();
2010-09-08 10:11:44 +02:00
if (! info.isValid() || qmljsEditor->isOutdated()) {
// outdated
qWarning() << "TODO: outdated semantic info, force a reparse.";
return 0;
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixState *state = new QmlJSQuickFixState(editor);
state->_semanticInfo = info;
2010-06-07 12:12:07 +02:00
return state;
}
return 0;
}
2010-07-26 13:06:33 +02:00
QList<TextEditor::QuickFixFactory *> QmlJSQuickFixCollector::quickFixFactories() const
{
QList<TextEditor::QuickFixFactory *> results;
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
foreach (QmlJSQuickFixFactory *f, pm->getObjects<QmlJSEditor::QmlJSQuickFixFactory>())
results.append(f);
return results;
}