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

176 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).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
2010-12-17 16:01:08 +01:00
** No Commercial Usage
**
2010-12-17 16:01:08 +01:00
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
**
** Alternatively, 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
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@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;
2010-07-26 13:06:33 +02:00
QmlJSQuickFixState::QmlJSQuickFixState(TextEditor::BaseTextEditor *editor)
: 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()
{
}
2010-06-07 12:12:07 +02:00
bool QmlJSQuickFixCollector::supportsEditor(TextEditor::ITextEditable *editable)
{
2010-07-26 13:06:33 +02:00
return qobject_cast<QmlJSTextEditor *>(editable->widget()) != 0;
2010-06-07 12:12:07 +02:00
}
2010-07-26 13:06:33 +02:00
TextEditor::QuickFixState *QmlJSQuickFixCollector::initializeCompletion(TextEditor::BaseTextEditor *editor)
{
2010-07-26 13:06:33 +02:00
if (QmlJSTextEditor *qmljsEditor = qobject_cast<QmlJSTextEditor *>(editor)) {
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;
}