2010-06-03 15:49:29 +02:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
|
|
|
** 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).
|
2010-06-03 15:49:29 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-06-03 15:49:29 +02:00
|
|
|
**
|
|
|
|
**
|
|
|
|
** 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-06-03 15:49:29 +02:00
|
|
|
**
|
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
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2010-06-03 15:49:29 +02:00
|
|
|
**
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include "qmljsquickfix.h"
|
2010-06-14 15:02:05 +02:00
|
|
|
#include "qmljscomponentfromobjectdef.h"
|
2010-06-03 15:49:29 +02:00
|
|
|
#include "qmljseditor.h"
|
2010-06-07 12:12:07 +02:00
|
|
|
#include "qmljs/parser/qmljsast_p.h"
|
2010-06-14 14:52:43 +02:00
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
#include <extensionsystem/iplugin.h>
|
2010-06-14 14:52:43 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
|
|
#include <qmljs/qmljsmodelmanagerinterface.h>
|
|
|
|
|
2010-06-03 15:49:29 +02:00
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
using namespace QmlJS;
|
|
|
|
using namespace QmlJS::AST;
|
2010-06-14 14:52:43 +02:00
|
|
|
using namespace QmlJSEditor;
|
2010-06-03 15:49:29 +02:00
|
|
|
using namespace QmlJSEditor::Internal;
|
2010-11-11 10:05:05 +01:00
|
|
|
using namespace QmlJSTools;
|
2010-07-26 13:06:33 +02:00
|
|
|
using namespace TextEditor;
|
2010-06-14 14:52:43 +02:00
|
|
|
using TextEditor::RefactoringChanges;
|
2010-06-03 15:49:29 +02:00
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
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-06-04 11:02:01 +02:00
|
|
|
{
|
2010-07-26 13:06:33 +02:00
|
|
|
return _semanticInfo;
|
2010-06-04 11:02:01 +02:00
|
|
|
}
|
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
Snapshot QmlJSQuickFixState::snapshot() const
|
2010-06-04 11:02:01 +02:00
|
|
|
{
|
2010-07-26 13:06:33 +02:00
|
|
|
return _semanticInfo.snapshot;
|
2010-06-04 11:02:01 +02:00
|
|
|
}
|
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
Document::Ptr QmlJSQuickFixState::document() const
|
2010-06-07 12:12:07 +02:00
|
|
|
{
|
|
|
|
return _semanticInfo.document;
|
|
|
|
}
|
|
|
|
|
2010-08-13 12:49:11 +02:00
|
|
|
const QmlJSRefactoringFile QmlJSQuickFixState::currentFile() const
|
2010-06-07 12:12:07 +02:00
|
|
|
{
|
2010-08-13 12:49:11 +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
|
|
|
}
|
|
|
|
|
2010-08-12 13:46:18 +02:00
|
|
|
void QmlJSQuickFixOperation::perform()
|
|
|
|
{
|
|
|
|
QmlJSRefactoringChanges refactoring(ExtensionSystem::PluginManager::instance()->getObject<QmlJS::ModelManagerInterface>(),
|
|
|
|
_state.snapshot());
|
2010-08-13 12:49:11 +02:00
|
|
|
QmlJSRefactoringFile current = refactoring.file(fileName());
|
2010-08-12 13:46:18 +02:00
|
|
|
|
|
|
|
performChanges(¤t, &refactoring);
|
|
|
|
}
|
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
const QmlJSQuickFixState &QmlJSQuickFixOperation::state() const
|
|
|
|
{
|
|
|
|
return _state;
|
2010-06-07 12:12:07 +02:00
|
|
|
}
|
|
|
|
|
2010-06-14 17:15:53 +02:00
|
|
|
QString QmlJSQuickFixOperation::fileName() const
|
|
|
|
{
|
2010-07-26 13:06:33 +02:00
|
|
|
return state().document()->fileName();
|
2010-06-14 17:15:53 +02:00
|
|
|
}
|
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
QmlJSQuickFixFactory::QmlJSQuickFixFactory()
|
|
|
|
{
|
|
|
|
}
|
2010-06-14 14:52:43 +02:00
|
|
|
|
2010-07-26 13:06:33 +02:00
|
|
|
QmlJSQuickFixFactory::~QmlJSQuickFixFactory()
|
|
|
|
{
|
|
|
|
}
|
2010-06-14 14:52:43 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-09-30 16:12:24 +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
|
|
|
|
2010-06-03 15:49:29 +02:00
|
|
|
QmlJSQuickFixCollector::QmlJSQuickFixCollector()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QmlJSQuickFixCollector::~QmlJSQuickFixCollector()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
bool QmlJSQuickFixCollector::supportsEditor(TextEditor::ITextEditor *editable) const
|
2010-06-07 12:12:07 +02:00
|
|
|
{
|
2011-02-21 16:02:26 +01:00
|
|
|
return qobject_cast<QmlJSTextEditorWidget *>(editable->widget()) != 0;
|
2010-06-07 12:12:07 +02:00
|
|
|
}
|
|
|
|
|
2011-02-21 14:02:00 +01:00
|
|
|
bool QmlJSQuickFixCollector::supportsPolicy(TextEditor::CompletionPolicy policy) const
|
|
|
|
{
|
|
|
|
return policy == TextEditor::QuickFixCompletion;
|
|
|
|
}
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
TextEditor::QuickFixState *QmlJSQuickFixCollector::initializeCompletion(TextEditor::BaseTextEditorWidget *editor)
|
2010-06-03 15:49:29 +02:00
|
|
|
{
|
2011-02-21 16:02:26 +01:00
|
|
|
if (QmlJSTextEditorWidget *qmljsEditor = qobject_cast<QmlJSTextEditorWidget *>(editor)) {
|
2010-07-26 13:06:33 +02:00
|
|
|
const SemanticInfo info = qmljsEditor->semanticInfo();
|
2010-06-03 15:49:29 +02:00
|
|
|
|
2010-09-08 10:11:44 +02:00
|
|
|
if (! info.isValid() || qmljsEditor->isOutdated()) {
|
2010-06-03 15:49:29 +02:00
|
|
|
// 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;
|
2010-06-03 15:49:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|