aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/insertionpointlocator.cpp
diff options
context:
space:
mode:
authorLeandro Melo <leandro.melo@nokia.com>2012-01-20 14:43:21 +0100
committerLeandro Melo <leandro.melo@nokia.com>2012-01-23 11:34:44 +0100
commit466ea4842cf3c84d1aaf43e717cbc66838c63f14 (patch)
treed63cf59727eaeb1daee76de38055d0233561714e /src/plugins/cpptools/insertionpointlocator.cpp
parent271ec63a100681151c235d6d75e3121f3c22f4c7 (diff)
C++: Improve file accuracy when finding symbols
This patch introduces a priority-based mechanism when searching for certains symbols in the snapshot. The priority corresponds to how similar the file path from the "reference" symbol is to the file path from the "candidate" symbol. This solves a variety of issues when matching "equivalent" symbols but that are in another file/project, such as when following a function declaration, a forward class declaration, or adding a definition through a quickfix. There's now a symbol finder which will compute the "best" search order and cache the most recent results. A consequence is that following symbols in some cases is slower, but not apparently significatly. Note: The "find" functions were moved from the Snapshot to the new SymbolFinder class. Task-number: QTCREATORBUG-6697 Task-number: QTCREATORBUG-6792 Change-Id: Ia518f014275fec1f4d0cb3224bd4e06a9df6d557 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Diffstat (limited to 'src/plugins/cpptools/insertionpointlocator.cpp')
-rw-r--r--src/plugins/cpptools/insertionpointlocator.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/plugins/cpptools/insertionpointlocator.cpp b/src/plugins/cpptools/insertionpointlocator.cpp
index 855e5075a0..baecd498c1 100644
--- a/src/plugins/cpptools/insertionpointlocator.cpp
+++ b/src/plugins/cpptools/insertionpointlocator.cpp
@@ -33,6 +33,7 @@
#include "cpptoolsplugin.h"
#include "cpprefactoringchanges.h"
#include "insertionpointlocator.h"
+#include "symbolfinder.h"
#include <AST.h>
#include <ASTVisitor.h>
@@ -516,7 +517,10 @@ static InsertionLocation nextToSurroundingDefinitions(Declaration *declaration,
}
// find the declaration's definition
- Symbol *definition = changes.snapshot().findMatchingDefinition(surroundingFunctionDecl);
+ CppTools::SymbolFinder symbolFinder(surroundingFunctionDecl->fileName(),
+ surroundingFunctionDecl->fileNameLength());
+ Symbol *definition = symbolFinder.findMatchingDefinition(surroundingFunctionDecl,
+ changes.snapshot());
if (!definition)
return noResult;
@@ -555,7 +559,10 @@ QList<InsertionLocation> InsertionPointLocator::methodDefinition(
if (!declaration)
return result;
- if (Symbol *s = m_refactoringChanges.snapshot().findMatchingDefinition(declaration, true)) {
+ CppTools::SymbolFinder symbolFinder(declaration->fileName(), declaration->fileNameLength());
+ if (Symbol *s = symbolFinder.findMatchingDefinition(declaration,
+ m_refactoringChanges.snapshot(),
+ true)) {
if (Function *f = s->asFunction()) {
if (f->isConst() == declaration->type().isConst()
&& f->isVolatile() == declaration->type().isVolatile())