forked from qt-creator/qt-creator
		
	Theoretically it could now run multiple searches in parallel, but since a single search grabs all available threads from the pool, any search request afterwards is queued for execution when the previous one finished. Task-number: QTCREATORBUG-6101 Change-Id: Ifada0ccdd1ce7cfb4aaaaa4de2db070025f91a3a Reviewed-by: Leandro Melo <leandro.melo@nokia.com>
		
			
				
	
	
		
			501 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			501 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/**************************************************************************
 | 
						|
**
 | 
						|
** This file is part of Qt Creator
 | 
						|
**
 | 
						|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
 | 
						|
**
 | 
						|
** Contact: Nokia Corporation (qt-info@nokia.com)
 | 
						|
**
 | 
						|
**
 | 
						|
** GNU Lesser General Public License Usage
 | 
						|
**
 | 
						|
** 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.
 | 
						|
**
 | 
						|
** 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.
 | 
						|
**
 | 
						|
** 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.
 | 
						|
**
 | 
						|
** If you have questions regarding the use of this file, please contact
 | 
						|
** Nokia at qt-info@nokia.com.
 | 
						|
**
 | 
						|
**************************************************************************/
 | 
						|
 | 
						|
#include "cppfindreferences.h"
 | 
						|
#include "cpptoolsconstants.h"
 | 
						|
 | 
						|
#include <texteditor/basetexteditor.h>
 | 
						|
#include <texteditor/basefilefind.h>
 | 
						|
#include <find/searchresultwindow.h>
 | 
						|
#include <extensionsystem/pluginmanager.h>
 | 
						|
#include <utils/filesearch.h>
 | 
						|
#include <utils/fileutils.h>
 | 
						|
#include <utils/qtcassert.h>
 | 
						|
#include <coreplugin/progressmanager/progressmanager.h>
 | 
						|
#include <coreplugin/progressmanager/futureprogress.h>
 | 
						|
#include <coreplugin/editormanager/editormanager.h>
 | 
						|
#include <coreplugin/icore.h>
 | 
						|
#include <coreplugin/infobar.h>
 | 
						|
 | 
						|
#include <ASTVisitor.h>
 | 
						|
#include <AST.h>
 | 
						|
#include <Control.h>
 | 
						|
#include <Literals.h>
 | 
						|
#include <TranslationUnit.h>
 | 
						|
#include <Symbols.h>
 | 
						|
#include <Names.h>
 | 
						|
#include <Scope.h>
 | 
						|
 | 
						|
#include <cplusplus/ModelManagerInterface.h>
 | 
						|
#include <cplusplus/CppDocument.h>
 | 
						|
#include <cplusplus/Overview.h>
 | 
						|
#include <cplusplus/FindUsages.h>
 | 
						|
 | 
						|
#include <QtCore/QTime>
 | 
						|
#include <QtCore/QTimer>
 | 
						|
#include <QtCore/QtConcurrentRun>
 | 
						|
#include <QtCore/QtConcurrentMap>
 | 
						|
#include <QtCore/QDir>
 | 
						|
#include <QtGui/QApplication>
 | 
						|
#include <qtconcurrent/runextensions.h>
 | 
						|
 | 
						|
#include <functional>
 | 
						|
 | 
						|
using namespace CppTools::Internal;
 | 
						|
using namespace CPlusPlus;
 | 
						|
 | 
						|
static QString getSource(const QString &fileName,
 | 
						|
                         const CppModelManagerInterface::WorkingCopy &workingCopy)
 | 
						|
{
 | 
						|
    if (workingCopy.contains(fileName)) {
 | 
						|
        return workingCopy.source(fileName);
 | 
						|
    } else {
 | 
						|
        Utils::FileReader reader;
 | 
						|
        if (!reader.fetch(fileName, QFile::Text)) // ### FIXME error reporting
 | 
						|
            return QString();
 | 
						|
 | 
						|
        return QString::fromLocal8Bit(reader.data()); // ### FIXME encoding
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
class ProcessFile: public std::unary_function<QString, QList<Usage> >
 | 
						|
{
 | 
						|
    const CppModelManagerInterface::WorkingCopy workingCopy;
 | 
						|
    const Snapshot snapshot;
 | 
						|
    Document::Ptr symbolDocument;
 | 
						|
    Symbol *symbol;
 | 
						|
 | 
						|
public:
 | 
						|
    ProcessFile(const CppModelManagerInterface::WorkingCopy &workingCopy,
 | 
						|
                const Snapshot snapshot,
 | 
						|
                Document::Ptr symbolDocument,
 | 
						|
                Symbol *symbol)
 | 
						|
        : workingCopy(workingCopy), snapshot(snapshot), symbolDocument(symbolDocument), symbol(symbol)
 | 
						|
    { }
 | 
						|
 | 
						|
    QList<Usage> operator()(const QString &fileName)
 | 
						|
    {
 | 
						|
        QList<Usage> usages;
 | 
						|
        const Identifier *symbolId = symbol->identifier();
 | 
						|
 | 
						|
        if (Document::Ptr previousDoc = snapshot.document(fileName)) {
 | 
						|
            Control *control = previousDoc->control();
 | 
						|
            if (! control->findIdentifier(symbolId->chars(), symbolId->size()))
 | 
						|
                return usages; // skip this document, it's not using symbolId.
 | 
						|
        }
 | 
						|
 | 
						|
        Document::Ptr doc;
 | 
						|
        QByteArray source;
 | 
						|
        const QString unpreprocessedSource = getSource(fileName, workingCopy);
 | 
						|
 | 
						|
        if (symbolDocument && fileName == symbolDocument->fileName())
 | 
						|
            doc = symbolDocument;
 | 
						|
        else {
 | 
						|
            source = snapshot.preprocessedCode(unpreprocessedSource, fileName);
 | 
						|
            doc = snapshot.documentFromSource(source, fileName);
 | 
						|
            doc->tokenize();
 | 
						|
        }
 | 
						|
 | 
						|
        Control *control = doc->control();
 | 
						|
        if (control->findIdentifier(symbolId->chars(), symbolId->size()) != 0) {
 | 
						|
            if (doc != symbolDocument)
 | 
						|
                doc->check();
 | 
						|
 | 
						|
            FindUsages process(unpreprocessedSource.toUtf8(), doc, snapshot);
 | 
						|
            process(symbol);
 | 
						|
 | 
						|
            usages = process.usages();
 | 
						|
        }
 | 
						|
 | 
						|
        return usages;
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
class UpdateUI: public std::binary_function<QList<Usage> &, QList<Usage>, void>
 | 
						|
{
 | 
						|
    QFutureInterface<Usage> *future;
 | 
						|
 | 
						|
public:
 | 
						|
    UpdateUI(QFutureInterface<Usage> *future): future(future) {}
 | 
						|
 | 
						|
    void operator()(QList<Usage> &, const QList<Usage> &usages)
 | 
						|
    {
 | 
						|
        foreach (const Usage &u, usages)
 | 
						|
            future->reportResult(u);
 | 
						|
 | 
						|
        future->setProgressValue(future->progressValue() + 1);
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
} // end of anonymous namespace
 | 
						|
 | 
						|
CppFindReferences::CppFindReferences(CppModelManagerInterface *modelManager)
 | 
						|
    : QObject(modelManager),
 | 
						|
      _modelManager(modelManager)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
CppFindReferences::~CppFindReferences()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
QList<int> CppFindReferences::references(Symbol *symbol, const LookupContext &context) const
 | 
						|
{
 | 
						|
    QList<int> references;
 | 
						|
 | 
						|
    FindUsages findUsages(context);
 | 
						|
    findUsages(symbol);
 | 
						|
    references = findUsages.references();
 | 
						|
 | 
						|
    return references;
 | 
						|
}
 | 
						|
 | 
						|
static void find_helper(QFutureInterface<Usage> &future,
 | 
						|
                        const CppModelManagerInterface::WorkingCopy workingCopy,
 | 
						|
                        const LookupContext context,
 | 
						|
                        CppFindReferences *findRefs,
 | 
						|
                        Symbol *symbol)
 | 
						|
{
 | 
						|
    const Identifier *symbolId = symbol->identifier();
 | 
						|
    Q_ASSERT(symbolId != 0);
 | 
						|
 | 
						|
    const Snapshot snapshot = context.snapshot();
 | 
						|
 | 
						|
    const QString sourceFile = QString::fromUtf8(symbol->fileName(), symbol->fileNameLength());
 | 
						|
    QStringList files(sourceFile);
 | 
						|
 | 
						|
    if (symbol->isClass() || symbol->isForwardClassDeclaration() || (symbol->enclosingScope() && ! symbol->isStatic() &&
 | 
						|
                                                                     symbol->enclosingScope()->isNamespace())) {
 | 
						|
        foreach (const Document::Ptr &doc, context.snapshot()) {
 | 
						|
            if (doc->fileName() == sourceFile)
 | 
						|
                continue;
 | 
						|
 | 
						|
            Control *control = doc->control();
 | 
						|
 | 
						|
            if (control->findIdentifier(symbolId->chars(), symbolId->size()))
 | 
						|
                files.append(doc->fileName());
 | 
						|
        }
 | 
						|
    } else {
 | 
						|
        DependencyTable dependencyTable = findRefs->updateDependencyTable(snapshot);
 | 
						|
        files += dependencyTable.filesDependingOn(sourceFile);
 | 
						|
    }
 | 
						|
    files.removeDuplicates();
 | 
						|
 | 
						|
    future.setProgressRange(0, files.size());
 | 
						|
 | 
						|
    ProcessFile process(workingCopy, snapshot, context.thisDocument(), symbol);
 | 
						|
    UpdateUI reduce(&future);
 | 
						|
    QtConcurrent::blockingMappedReduced<QList<Usage> > (files, process, reduce);
 | 
						|
    future.setProgressValue(files.size());
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::findUsages(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context)
 | 
						|
{
 | 
						|
    Overview overview;
 | 
						|
    Find::SearchResult *search = Find::SearchResultWindow::instance()->startNewSearch(tr("C++ Usages:"),
 | 
						|
                                                QString(),
 | 
						|
                                                overview(context.fullyQualifiedName(symbol)),
 | 
						|
                                                Find::SearchResultWindow::SearchOnly);
 | 
						|
    findAll_helper(search, symbol, context);
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::renameUsages(CPlusPlus::Symbol *symbol, const CPlusPlus::LookupContext &context,
 | 
						|
                                     const QString &replacement)
 | 
						|
{
 | 
						|
    if (const Identifier *id = symbol->identifier()) {
 | 
						|
        const QString textToReplace = replacement.isEmpty()
 | 
						|
                ? QString::fromUtf8(id->chars(), id->size()) : replacement;
 | 
						|
 | 
						|
        Overview overview;
 | 
						|
        Find::SearchResult *search = Find::SearchResultWindow::instance()->startNewSearch(
 | 
						|
                    tr("C++ Usages:"),
 | 
						|
                    QString(),
 | 
						|
                    overview(context.fullyQualifiedName(symbol)),
 | 
						|
                    Find::SearchResultWindow::SearchAndReplace, QLatin1String("CppEditor"));
 | 
						|
        search->setTextToReplace(textToReplace);
 | 
						|
 | 
						|
        connect(search, SIGNAL(replaceButtonClicked(QString,QList<Find::SearchResultItem>)),
 | 
						|
                SLOT(onReplaceButtonClicked(QString,QList<Find::SearchResultItem>)));
 | 
						|
 | 
						|
        findAll_helper(search, symbol, context);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::findAll_helper(Find::SearchResult *search,
 | 
						|
                                       Symbol *symbol, const LookupContext &context)
 | 
						|
{
 | 
						|
    if (! (symbol && symbol->identifier())) {
 | 
						|
        search->finishSearch();
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    connect(search, SIGNAL(cancelled()), this, SLOT(cancel()));
 | 
						|
    connect(search, SIGNAL(activated(Find::SearchResultItem)),
 | 
						|
            this, SLOT(openEditor(Find::SearchResultItem)));
 | 
						|
 | 
						|
    Find::SearchResultWindow::instance()->popup(true);
 | 
						|
    const CppModelManagerInterface::WorkingCopy workingCopy = _modelManager->workingCopy();
 | 
						|
    QFuture<Usage> result;
 | 
						|
    result = QtConcurrent::run(&find_helper, workingCopy, context, this, symbol);
 | 
						|
    createWatcher(result, search);
 | 
						|
 | 
						|
    Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager();
 | 
						|
    Core::FutureProgress *progress = progressManager->addTask(result, tr("Searching"),
 | 
						|
                                                              CppTools::Constants::TASK_SEARCH);
 | 
						|
 | 
						|
    connect(progress, SIGNAL(clicked()), Find::SearchResultWindow::instance(), SLOT(popup()));
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::onReplaceButtonClicked(const QString &text,
 | 
						|
                                               const QList<Find::SearchResultItem> &items)
 | 
						|
{
 | 
						|
    const QStringList fileNames = TextEditor::BaseFileFind::replaceAll(text, items);
 | 
						|
    if (!fileNames.isEmpty()) {
 | 
						|
        _modelManager->updateSourceFiles(fileNames);
 | 
						|
        Find::SearchResultWindow::instance()->hide();
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::displayResults(int first, int last)
 | 
						|
{
 | 
						|
    QFutureWatcher<Usage> *watcher = static_cast<QFutureWatcher<Usage> *>(sender());
 | 
						|
    Find::SearchResult *search = m_watchers.value(watcher);
 | 
						|
    if (!search) {
 | 
						|
        // search was deleted while it was running
 | 
						|
        watcher->cancel();
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    for (int index = first; index != last; ++index) {
 | 
						|
        Usage result = watcher->future().resultAt(index);
 | 
						|
        search->addResult(result.path,
 | 
						|
                          result.line,
 | 
						|
                          result.lineText,
 | 
						|
                          result.col,
 | 
						|
                          result.len);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::searchFinished()
 | 
						|
{
 | 
						|
    QFutureWatcher<Usage> *watcher = static_cast<QFutureWatcher<Usage> *>(sender());
 | 
						|
    Find::SearchResult *search = m_watchers.value(watcher);
 | 
						|
    if (search)
 | 
						|
        search->finishSearch();
 | 
						|
    m_watchers.remove(watcher);
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::cancel()
 | 
						|
{
 | 
						|
    Find::SearchResult *search = qobject_cast<Find::SearchResult *>(sender());
 | 
						|
    QTC_ASSERT(search, return);
 | 
						|
    QFutureWatcher<Usage> *watcher = m_watchers.key(search);
 | 
						|
    QTC_ASSERT(watcher, return);
 | 
						|
    watcher->cancel();
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::openEditor(const Find::SearchResultItem &item)
 | 
						|
{
 | 
						|
    if (item.path.size() > 0) {
 | 
						|
        TextEditor::BaseTextEditorWidget::openEditorAt(item.path.first(), item.lineNumber, item.textMarkPos,
 | 
						|
                                                 Core::Id(),
 | 
						|
                                                 Core::EditorManager::ModeSwitch);
 | 
						|
    } else {
 | 
						|
        Core::EditorManager::instance()->openEditor(item.text, Core::Id(), Core::EditorManager::ModeSwitch);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
class FindMacroUsesInFile: public std::unary_function<QString, QList<Usage> >
 | 
						|
{
 | 
						|
    const CppModelManagerInterface::WorkingCopy workingCopy;
 | 
						|
    const Snapshot snapshot;
 | 
						|
    const Macro ¯o;
 | 
						|
 | 
						|
public:
 | 
						|
    FindMacroUsesInFile(const 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 CppModelManagerInterface::WorkingCopy workingCopy,
 | 
						|
                                 const Snapshot snapshot,
 | 
						|
                                 CppFindReferences *findRefs,
 | 
						|
                                 const Macro macro)
 | 
						|
{
 | 
						|
    // ensure the dependency table is updated
 | 
						|
    DependencyTable dependencies = findRefs->updateDependencyTable(snapshot);
 | 
						|
 | 
						|
    const QString& sourceFile = macro.fileName();
 | 
						|
    QStringList files(sourceFile);
 | 
						|
    files += dependencies.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 = Find::SearchResultWindow::instance()->startNewSearch(
 | 
						|
                tr("C++ Macro Usages:"),
 | 
						|
                QString(),
 | 
						|
                macro.name(),
 | 
						|
                Find::SearchResultWindow::SearchOnly);
 | 
						|
 | 
						|
    Find::SearchResultWindow::instance()->popup(true);
 | 
						|
 | 
						|
    connect(search, SIGNAL(activated(Find::SearchResultItem)),
 | 
						|
            this, SLOT(openEditor(Find::SearchResultItem)));
 | 
						|
    connect(search, SIGNAL(cancelled()), this, SLOT(cancel()));
 | 
						|
 | 
						|
    const Snapshot snapshot = _modelManager->snapshot();
 | 
						|
    const CppModelManagerInterface::WorkingCopy workingCopy = _modelManager->workingCopy();
 | 
						|
 | 
						|
    // add the macro definition itself
 | 
						|
    {
 | 
						|
        // ### FIXME: Encoding?
 | 
						|
        const QByteArray &source = getSource(macro.fileName(), workingCopy).toLatin1();
 | 
						|
        search->addResult(macro.fileName(), macro.line(),
 | 
						|
                          source.mid(macro.offset(), macro.length()), 0, macro.length());
 | 
						|
    }
 | 
						|
 | 
						|
    QFuture<Usage> result;
 | 
						|
    result = QtConcurrent::run(&findMacroUses_helper, workingCopy, snapshot, this, macro);
 | 
						|
    createWatcher(result, search);
 | 
						|
 | 
						|
    Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager();
 | 
						|
    Core::FutureProgress *progress = progressManager->addTask(result, tr("Searching"),
 | 
						|
                                                              CppTools::Constants::TASK_SEARCH);
 | 
						|
    connect(progress, SIGNAL(clicked()), Find::SearchResultWindow::instance(), SLOT(popup()));
 | 
						|
}
 | 
						|
 | 
						|
DependencyTable CppFindReferences::updateDependencyTable(CPlusPlus::Snapshot snapshot)
 | 
						|
{
 | 
						|
    DependencyTable oldDeps = dependencyTable();
 | 
						|
    if (oldDeps.isValidFor(snapshot))
 | 
						|
        return oldDeps;
 | 
						|
 | 
						|
    DependencyTable newDeps;
 | 
						|
    newDeps.build(snapshot);
 | 
						|
    setDependencyTable(newDeps);
 | 
						|
    return newDeps;
 | 
						|
}
 | 
						|
 | 
						|
DependencyTable CppFindReferences::dependencyTable() const
 | 
						|
{
 | 
						|
    QMutexLocker locker(&m_depsLock);
 | 
						|
    Q_UNUSED(locker);
 | 
						|
    return m_deps;
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::setDependencyTable(const CPlusPlus::DependencyTable &newTable)
 | 
						|
{
 | 
						|
    QMutexLocker locker(&m_depsLock);
 | 
						|
    Q_UNUSED(locker);
 | 
						|
    m_deps = newTable;
 | 
						|
}
 | 
						|
 | 
						|
void CppFindReferences::createWatcher(const QFuture<Usage> &future, Find::SearchResult *search)
 | 
						|
{
 | 
						|
    QFutureWatcher<Usage> *watcher = new QFutureWatcher<Usage>();
 | 
						|
    watcher->setFuture(future);
 | 
						|
    watcher->setPendingResultsLimit(1);
 | 
						|
    connect(watcher, SIGNAL(resultsReadyAt(int,int)), this, SLOT(displayResults(int,int)));
 | 
						|
    connect(watcher, SIGNAL(finished()), this, SLOT(searchFinished()));
 | 
						|
    m_watchers.insert(watcher, search);
 | 
						|
}
 |