2009-08-07 13:02:36 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2009-08-07 13:02:36 +02:00
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-11-30 18:21:39 +01:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2009-08-07 13:02:36 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "cppfindreferences.h"
|
2009-10-12 10:38:00 +02:00
|
|
|
#include "cppmodelmanagerinterface.h"
|
2009-08-07 13:02:36 +02:00
|
|
|
#include "cpptoolsconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <texteditor/basetexteditor.h>
|
2009-12-21 11:08:20 +01:00
|
|
|
#include <texteditor/basefilefind.h>
|
2009-08-07 13:02:36 +02:00
|
|
|
#include <find/searchresultwindow.h>
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <utils/filesearch.h>
|
|
|
|
|
#include <coreplugin/progressmanager/progressmanager.h>
|
2009-10-06 14:22:42 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2009-08-07 13:02:36 +02:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <ASTVisitor.h>
|
|
|
|
|
#include <AST.h>
|
|
|
|
|
#include <Control.h>
|
|
|
|
|
#include <Literals.h>
|
|
|
|
|
#include <TranslationUnit.h>
|
|
|
|
|
#include <Symbols.h>
|
2009-09-25 14:19:43 +02:00
|
|
|
#include <Names.h>
|
|
|
|
|
#include <Scope.h>
|
2009-08-07 13:02:36 +02:00
|
|
|
|
|
|
|
|
#include <cplusplus/CppDocument.h>
|
2009-10-07 14:33:37 +02:00
|
|
|
#include <cplusplus/CppBindings.h>
|
2009-09-25 14:19:43 +02:00
|
|
|
#include <cplusplus/Overview.h>
|
2009-08-07 13:02:36 +02:00
|
|
|
|
|
|
|
|
#include <QtCore/QTime>
|
|
|
|
|
#include <QtCore/QtConcurrentRun>
|
2009-12-04 13:04:20 +01:00
|
|
|
#include <QtCore/QtConcurrentMap>
|
2009-08-07 13:02:36 +02:00
|
|
|
#include <QtCore/QDir>
|
2009-10-06 16:00:32 +02:00
|
|
|
#include <QtGui/QApplication>
|
2009-08-07 13:02:36 +02:00
|
|
|
#include <qtconcurrent/runextensions.h>
|
|
|
|
|
|
2009-12-04 13:04:20 +01:00
|
|
|
#include <functional>
|
|
|
|
|
|
2009-08-07 13:02:36 +02:00
|
|
|
using namespace CppTools::Internal;
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
|
2009-12-21 14:54:10 +01:00
|
|
|
static QString getSource(const QString &fileName,
|
|
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy &workingCopy)
|
|
|
|
|
{
|
|
|
|
|
if (workingCopy.contains(fileName)) {
|
|
|
|
|
return workingCopy.source(fileName);
|
|
|
|
|
} else {
|
|
|
|
|
QFile file(fileName);
|
|
|
|
|
if (! file.open(QFile::ReadOnly))
|
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
return QTextStream(&file).readAll(); // ### FIXME
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-07 12:18:22 +01:00
|
|
|
namespace {
|
2009-09-30 13:25:40 +02:00
|
|
|
|
2009-12-07 12:18:22 +01:00
|
|
|
class ProcessFile: public std::unary_function<QString, QList<Usage> >
|
2009-12-04 13:04:20 +01:00
|
|
|
{
|
2009-12-15 15:26:40 +01:00
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy workingCopy;
|
2009-12-04 13:04:20 +01:00
|
|
|
const Snapshot snapshot;
|
|
|
|
|
Symbol *symbol;
|
|
|
|
|
|
|
|
|
|
public:
|
2009-12-15 15:26:40 +01:00
|
|
|
ProcessFile(const CppTools::CppModelManagerInterface::WorkingCopy &workingCopy,
|
|
|
|
|
const Snapshot snapshot,
|
|
|
|
|
Symbol *symbol)
|
|
|
|
|
: workingCopy(workingCopy), snapshot(snapshot), symbol(symbol)
|
2009-12-04 13:04:20 +01:00
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
QList<Usage> operator()(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
QList<Usage> usages;
|
|
|
|
|
const Identifier *symbolId = symbol->identifier();
|
|
|
|
|
|
2009-12-07 10:54:27 +01:00
|
|
|
if (Document::Ptr previousDoc = snapshot.document(fileName)) {
|
2009-12-04 13:04:20 +01:00
|
|
|
Control *control = previousDoc->control();
|
|
|
|
|
if (! control->findIdentifier(symbolId->chars(), symbolId->size()))
|
|
|
|
|
return usages; // skip this document, it's not using symbolId.
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-21 14:54:10 +01:00
|
|
|
QByteArray source = snapshot.preprocessedCode(
|
|
|
|
|
getSource(fileName, workingCopy), fileName);
|
2009-12-04 13:04:20 +01:00
|
|
|
|
|
|
|
|
Document::Ptr doc = snapshot.documentFromSource(source, fileName);
|
|
|
|
|
doc->tokenize();
|
|
|
|
|
|
|
|
|
|
Control *control = doc->control();
|
|
|
|
|
if (control->findIdentifier(symbolId->chars(), symbolId->size()) != 0) {
|
|
|
|
|
doc->check();
|
|
|
|
|
|
|
|
|
|
FindUsages process(doc, snapshot);
|
|
|
|
|
process.setGlobalNamespaceBinding(bind(doc, snapshot));
|
|
|
|
|
|
|
|
|
|
process(symbol);
|
|
|
|
|
usages = process.usages();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return usages;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-07 12:18:22 +01:00
|
|
|
class UpdateUI: public std::binary_function<QList<Usage> &, QList<Usage>, void>
|
2009-12-04 13:04:20 +01:00
|
|
|
{
|
|
|
|
|
QFutureInterface<Usage> *future;
|
|
|
|
|
|
|
|
|
|
public:
|
2009-12-07 12:18:22 +01:00
|
|
|
UpdateUI(QFutureInterface<Usage> *future): future(future) {}
|
2009-12-04 13:04:20 +01:00
|
|
|
|
2009-12-04 13:29:47 +01:00
|
|
|
void operator()(QList<Usage> &, const QList<Usage> &usages)
|
2009-12-04 13:04:20 +01:00
|
|
|
{
|
|
|
|
|
foreach (const Usage &u, usages)
|
|
|
|
|
future->reportResult(u);
|
|
|
|
|
|
|
|
|
|
future->setProgressValue(future->progressValue() + 1);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-07 12:18:22 +01:00
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
|
|
|
|
CppFindReferences::CppFindReferences(CppTools::CppModelManagerInterface *modelManager)
|
|
|
|
|
: QObject(modelManager),
|
|
|
|
|
_modelManager(modelManager),
|
|
|
|
|
_resultWindow(ExtensionSystem::PluginManager::instance()->getObject<Find::SearchResultWindow>())
|
|
|
|
|
{
|
|
|
|
|
m_watcher.setPendingResultsLimit(1);
|
|
|
|
|
connect(&m_watcher, SIGNAL(resultsReadyAt(int,int)), this, SLOT(displayResults(int,int)));
|
|
|
|
|
connect(&m_watcher, SIGNAL(finished()), this, SLOT(searchFinished()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppFindReferences::~CppFindReferences()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<int> CppFindReferences::references(Symbol *symbol,
|
|
|
|
|
Document::Ptr doc,
|
|
|
|
|
const Snapshot& snapshot) const
|
|
|
|
|
{
|
|
|
|
|
QList<int> references;
|
|
|
|
|
|
|
|
|
|
FindUsages findUsages(doc, snapshot);
|
|
|
|
|
findUsages.setGlobalNamespaceBinding(bind(doc, snapshot));
|
|
|
|
|
findUsages(symbol);
|
|
|
|
|
references = findUsages.references();
|
|
|
|
|
|
|
|
|
|
return references;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-27 12:01:45 +01:00
|
|
|
static void find_helper(QFutureInterface<Usage> &future,
|
2009-12-15 15:26:40 +01:00
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy workingCopy,
|
2009-09-24 16:51:40 +02:00
|
|
|
Snapshot snapshot,
|
|
|
|
|
Symbol *symbol)
|
2009-08-07 13:02:36 +02:00
|
|
|
{
|
|
|
|
|
QTime tm;
|
|
|
|
|
tm.start();
|
2009-09-24 16:51:40 +02:00
|
|
|
|
2009-12-01 11:33:13 +01:00
|
|
|
const Identifier *symbolId = symbol->identifier();
|
2009-09-25 14:19:43 +02:00
|
|
|
Q_ASSERT(symbolId != 0);
|
|
|
|
|
|
2009-09-29 13:50:55 +02:00
|
|
|
const QString sourceFile = QString::fromUtf8(symbol->fileName(), symbol->fileNameLength());
|
|
|
|
|
QStringList files(sourceFile);
|
2009-10-06 17:22:52 +02:00
|
|
|
|
|
|
|
|
if (symbol->isClass() || symbol->isForwardClassDeclaration()) {
|
|
|
|
|
foreach (const Document::Ptr &doc, snapshot) {
|
|
|
|
|
if (doc->fileName() == sourceFile)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
Control *control = doc->control();
|
|
|
|
|
|
|
|
|
|
if (control->findIdentifier(symbolId->chars(), symbolId->size()))
|
|
|
|
|
files.append(doc->fileName());
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2009-12-02 17:05:36 +01:00
|
|
|
files += snapshot.filesDependingOn(sourceFile);
|
2009-10-06 17:22:52 +02:00
|
|
|
}
|
2009-10-27 12:31:49 +01:00
|
|
|
files.removeDuplicates();
|
2009-10-07 16:11:42 +02:00
|
|
|
//qDebug() << "done in:" << tm.elapsed() << "number of files to parse:" << files.size();
|
2009-08-07 13:02:36 +02:00
|
|
|
|
|
|
|
|
future.setProgressRange(0, files.size());
|
|
|
|
|
|
2009-12-15 15:26:40 +01:00
|
|
|
ProcessFile process(workingCopy, snapshot, symbol);
|
2009-12-07 12:18:22 +01:00
|
|
|
UpdateUI reduce(&future);
|
2009-09-29 13:42:47 +02:00
|
|
|
|
2009-12-04 13:04:20 +01:00
|
|
|
QtConcurrent::blockingMappedReduced<QList<Usage> > (files, process, reduce);
|
2009-09-29 13:42:47 +02:00
|
|
|
|
2009-08-07 13:02:36 +02:00
|
|
|
future.setProgressValue(files.size());
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-05 15:17:25 +02:00
|
|
|
void CppFindReferences::findUsages(Symbol *symbol)
|
|
|
|
|
{
|
2009-10-05 18:02:46 +02:00
|
|
|
Find::SearchResult *search = _resultWindow->startNewSearch(Find::SearchResultWindow::SearchOnly);
|
|
|
|
|
|
|
|
|
|
connect(search, SIGNAL(activated(Find::SearchResultItem)),
|
|
|
|
|
this, SLOT(openEditor(Find::SearchResultItem)));
|
|
|
|
|
|
2009-10-05 15:17:25 +02:00
|
|
|
findAll_helper(symbol);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFindReferences::renameUsages(Symbol *symbol)
|
2009-08-07 13:02:36 +02:00
|
|
|
{
|
2009-12-01 11:33:13 +01:00
|
|
|
if (const Identifier *id = symbol->identifier()) {
|
2009-10-06 16:00:32 +02:00
|
|
|
const QString textToReplace = QString::fromUtf8(id->chars(), id->size());
|
2009-10-05 18:02:46 +02:00
|
|
|
|
2009-10-06 16:00:32 +02:00
|
|
|
Find::SearchResult *search = _resultWindow->startNewSearch(Find::SearchResultWindow::SearchAndReplace);
|
|
|
|
|
_resultWindow->setTextToReplace(textToReplace);
|
2009-10-05 16:01:50 +02:00
|
|
|
|
2009-10-06 16:00:32 +02:00
|
|
|
connect(search, SIGNAL(activated(Find::SearchResultItem)),
|
|
|
|
|
this, SLOT(openEditor(Find::SearchResultItem)));
|
2009-10-05 18:02:46 +02:00
|
|
|
|
2009-10-06 16:00:32 +02:00
|
|
|
connect(search, SIGNAL(replaceButtonClicked(QString,QList<Find::SearchResultItem>)),
|
|
|
|
|
SLOT(onReplaceButtonClicked(QString,QList<Find::SearchResultItem>)));
|
|
|
|
|
|
|
|
|
|
findAll_helper(symbol);
|
|
|
|
|
}
|
2009-10-05 15:17:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFindReferences::findAll_helper(Symbol *symbol)
|
|
|
|
|
{
|
2009-10-26 13:45:01 +01:00
|
|
|
if (! (symbol && symbol->identifier()))
|
|
|
|
|
return;
|
|
|
|
|
|
2009-08-07 13:02:36 +02:00
|
|
|
_resultWindow->popup(true);
|
|
|
|
|
|
2009-09-29 13:42:47 +02:00
|
|
|
const Snapshot snapshot = _modelManager->snapshot();
|
2009-12-15 15:16:46 +01:00
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy workingCopy = _modelManager->workingCopy();
|
2009-09-29 13:42:47 +02:00
|
|
|
|
2009-08-07 13:02:36 +02:00
|
|
|
Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager();
|
2009-12-01 17:31:41 +01:00
|
|
|
|
|
|
|
|
QFuture<Usage> result;
|
|
|
|
|
|
2009-12-15 15:16:46 +01:00
|
|
|
result = QtConcurrent::run(&find_helper, workingCopy, snapshot, symbol);
|
2009-08-07 13:02:36 +02:00
|
|
|
m_watcher.setFuture(result);
|
|
|
|
|
|
|
|
|
|
Core::FutureProgress *progress = progressManager->addTask(result, tr("Searching..."),
|
2009-11-26 15:51:10 +01:00
|
|
|
CppTools::Constants::TASK_SEARCH);
|
2009-08-07 13:02:36 +02:00
|
|
|
|
|
|
|
|
connect(progress, SIGNAL(clicked()), _resultWindow, SLOT(popup()));
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-05 18:02:46 +02:00
|
|
|
void CppFindReferences::onReplaceButtonClicked(const QString &text,
|
|
|
|
|
const QList<Find::SearchResultItem> &items)
|
|
|
|
|
{
|
2009-10-15 13:59:04 +02:00
|
|
|
Core::EditorManager::instance()->hideEditorInfoBar(QLatin1String("CppEditor.Rename"));
|
|
|
|
|
|
2009-12-21 11:08:20 +01:00
|
|
|
const QStringList fileNames = TextEditor::BaseFileFind::replaceAll(text, items);
|
|
|
|
|
if (!fileNames.isEmpty()) {
|
|
|
|
|
_modelManager->updateSourceFiles(fileNames);
|
|
|
|
|
_resultWindow->hide();
|
2009-10-05 18:02:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-01 17:07:35 +01:00
|
|
|
void CppFindReferences::displayResults(int first, int last)
|
2009-08-07 13:02:36 +02:00
|
|
|
{
|
2009-12-01 17:07:35 +01:00
|
|
|
for (int index = first; index != last; ++index) {
|
|
|
|
|
Usage result = m_watcher.future().resultAt(index);
|
|
|
|
|
_resultWindow->addResult(result.path,
|
|
|
|
|
result.line,
|
|
|
|
|
result.lineText,
|
|
|
|
|
result.col,
|
|
|
|
|
result.len);
|
|
|
|
|
}
|
2009-08-07 13:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFindReferences::searchFinished()
|
|
|
|
|
{
|
2009-11-04 18:10:03 +01:00
|
|
|
_resultWindow->finishSearch();
|
2009-08-07 13:02:36 +02:00
|
|
|
emit changed();
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-05 16:01:50 +02:00
|
|
|
void CppFindReferences::openEditor(const Find::SearchResultItem &item)
|
2009-08-07 13:02:36 +02:00
|
|
|
{
|
2009-10-05 16:01:50 +02:00
|
|
|
TextEditor::BaseTextEditor::openEditorAt(item.fileName, item.lineNumber, item.searchTermStart);
|
2009-08-07 13:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
2009-12-21 14:54:10 +01:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
class FindMacroUsesInFile: public std::unary_function<QString, QList<Usage> >
|
|
|
|
|
{
|
|
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy workingCopy;
|
|
|
|
|
const Snapshot snapshot;
|
|
|
|
|
const Macro ¯o;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
FindMacroUsesInFile(const CppTools::CppModelManagerInterface::WorkingCopy &workingCopy,
|
|
|
|
|
const Snapshot snapshot,
|
|
|
|
|
const Macro ¯o)
|
|
|
|
|
: workingCopy(workingCopy), snapshot(snapshot), macro(macro)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
QList<Usage> operator()(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
QList<Usage> usages;
|
|
|
|
|
|
|
|
|
|
const Document::Ptr &doc = snapshot.document(fileName);
|
|
|
|
|
QByteArray source;
|
|
|
|
|
|
|
|
|
|
foreach (const Document::MacroUse &use, doc->macroUses()) {
|
|
|
|
|
const Macro &useMacro = use.macro();
|
|
|
|
|
if (useMacro.line() == macro.line()
|
|
|
|
|
&& useMacro.fileName() == macro.fileName())
|
|
|
|
|
{
|
|
|
|
|
if (source.isEmpty())
|
|
|
|
|
source = getSource(fileName, workingCopy).toLatin1(); // ### FIXME: Encoding?
|
|
|
|
|
|
|
|
|
|
unsigned lineStart;
|
|
|
|
|
const QString &lineSource = matchingLine(use.begin(), source, &lineStart);
|
|
|
|
|
usages.append(Usage(fileName, lineSource, use.beginLine(),
|
|
|
|
|
use.begin() - lineStart, use.length()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return usages;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ### FIXME: Pretty close to FindUsages::matchingLine.
|
|
|
|
|
static QString matchingLine(unsigned position, const QByteArray &source,
|
|
|
|
|
unsigned *lineStart = 0)
|
|
|
|
|
{
|
|
|
|
|
const char *beg = source.constData();
|
|
|
|
|
const char *start = beg + position;
|
|
|
|
|
for (; start != beg - 1; --start) {
|
|
|
|
|
if (*start == '\n')
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
++start;
|
|
|
|
|
|
|
|
|
|
const char *end = start + 1;
|
|
|
|
|
for (; *end; ++end) {
|
|
|
|
|
if (*end == '\n')
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lineStart)
|
|
|
|
|
*lineStart = start - beg;
|
|
|
|
|
|
|
|
|
|
// ### FIXME: Encoding?
|
|
|
|
|
const QString matchingLine = QString::fromUtf8(start, end - start);
|
|
|
|
|
return matchingLine;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
|
|
|
|
static void findMacroUses_helper(QFutureInterface<Usage> &future,
|
|
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy workingCopy,
|
|
|
|
|
const Snapshot snapshot,
|
|
|
|
|
const Macro macro)
|
|
|
|
|
{
|
|
|
|
|
const QString& sourceFile = macro.fileName();
|
|
|
|
|
QStringList files(sourceFile);
|
|
|
|
|
files += snapshot.filesDependingOn(sourceFile);
|
|
|
|
|
files.removeDuplicates();
|
|
|
|
|
|
|
|
|
|
future.setProgressRange(0, files.size());
|
|
|
|
|
|
|
|
|
|
FindMacroUsesInFile process(workingCopy, snapshot, macro);
|
|
|
|
|
UpdateUI reduce(&future);
|
|
|
|
|
QtConcurrent::blockingMappedReduced<QList<Usage> > (files, process, reduce);
|
|
|
|
|
|
|
|
|
|
future.setProgressValue(files.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppFindReferences::findMacroUses(const Macro ¯o)
|
|
|
|
|
{
|
|
|
|
|
Find::SearchResult *search = _resultWindow->startNewSearch(Find::SearchResultWindow::SearchOnly);
|
|
|
|
|
|
|
|
|
|
_resultWindow->popup(true);
|
|
|
|
|
|
|
|
|
|
connect(search, SIGNAL(activated(Find::SearchResultItem)),
|
|
|
|
|
this, SLOT(openEditor(Find::SearchResultItem)));
|
|
|
|
|
|
|
|
|
|
const Snapshot snapshot = _modelManager->snapshot();
|
|
|
|
|
const CppTools::CppModelManagerInterface::WorkingCopy workingCopy = _modelManager->workingCopy();
|
|
|
|
|
|
|
|
|
|
// add the macro definition itself
|
|
|
|
|
{
|
|
|
|
|
// ### FIXME: Encoding?
|
|
|
|
|
const QByteArray &source = getSource(macro.fileName(), workingCopy).toLatin1();
|
|
|
|
|
_resultWindow->addResult(macro.fileName(), macro.line(),
|
|
|
|
|
source.mid(macro.offset(), macro.length()), 0, macro.length());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<Usage> result;
|
|
|
|
|
result = QtConcurrent::run(&findMacroUses_helper, workingCopy, snapshot, macro);
|
|
|
|
|
m_watcher.setFuture(result);
|
|
|
|
|
|
|
|
|
|
Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager();
|
|
|
|
|
Core::FutureProgress *progress = progressManager->addTask(result, tr("Searching..."),
|
|
|
|
|
CppTools::Constants::TASK_SEARCH);
|
|
|
|
|
connect(progress, SIGNAL(clicked()), _resultWindow, SLOT(popup()));
|
|
|
|
|
}
|
|
|
|
|
|