| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | /**************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** This file is part of Qt Creator | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** 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 | 
					
						
							|  |  |  | ** contact the sales department at http://www.qtsoftware.com/contact.
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | **************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "cppfindreferences.h"
 | 
					
						
							|  |  |  | #include "cppmodelmanager.h"
 | 
					
						
							|  |  |  | #include "cpptoolsconstants.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <texteditor/basetexteditor.h>
 | 
					
						
							|  |  |  | #include <find/searchresultwindow.h>
 | 
					
						
							|  |  |  | #include <extensionsystem/pluginmanager.h>
 | 
					
						
							|  |  |  | #include <utils/filesearch.h>
 | 
					
						
							|  |  |  | #include <coreplugin/progressmanager/progressmanager.h>
 | 
					
						
							|  |  |  | #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>
 | 
					
						
							|  |  |  | #include <cplusplus/ExpressionUnderCursor.h>
 | 
					
						
							|  |  |  | #include <cplusplus/ResolveExpression.h>
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  | #include <cplusplus/Overview.h>
 | 
					
						
							| 
									
										
										
										
											2009-09-29 12:32:35 +02:00
										 |  |  | #include <cplusplus/TypeOfExpression.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <QtCore/QTime>
 | 
					
						
							|  |  |  | #include <QtCore/QtConcurrentRun>
 | 
					
						
							|  |  |  | #include <QtCore/QDir>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <qtconcurrent/runextensions.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace CppTools::Internal; | 
					
						
							|  |  |  | using namespace CPlusPlus; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct Process: protected ASTVisitor | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     Process(QFutureInterface<Core::Utils::FileSearchResult> &future, | 
					
						
							|  |  |  |             Document::Ptr doc, const Snapshot &snapshot) | 
					
						
							|  |  |  |             : ASTVisitor(doc->control()), | 
					
						
							|  |  |  |               _future(future), | 
					
						
							|  |  |  |               _doc(doc), | 
					
						
							|  |  |  |               _snapshot(snapshot), | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |               _source(_doc->source()), | 
					
						
							|  |  |  |               _sem(doc->control()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         _snapshot.insert(_doc); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |     void operator()(Symbol *symbol, Identifier *id, AST *ast) | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         _declSymbol = symbol; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |         _id = id; | 
					
						
							|  |  |  |         _exprDoc = Document::create("<references>"); | 
					
						
							|  |  |  |         accept(ast); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  |     using ASTVisitor::visit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QString matchingLine(const Token &tk) const | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const char *beg = _source.constData(); | 
					
						
							|  |  |  |         const char *cp = beg + tk.offset; | 
					
						
							|  |  |  |         for (; cp != beg - 1; --cp) { | 
					
						
							|  |  |  |             if (*cp == '\n') | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ++cp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const char *lineEnd = cp + 1; | 
					
						
							|  |  |  |         for (; *lineEnd; ++lineEnd) { | 
					
						
							|  |  |  |             if (*lineEnd == '\n') | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const QString matchingLine = QString::fromUtf8(cp, lineEnd - cp); | 
					
						
							|  |  |  |         return matchingLine; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void reportResult(unsigned tokenIndex) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const Token &tk = tokenAt(tokenIndex); | 
					
						
							|  |  |  |         const QString lineText = matchingLine(tk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         unsigned line, col; | 
					
						
							|  |  |  |         getTokenStartPosition(tokenIndex, &line, &col); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (col) | 
					
						
							|  |  |  |             --col;  // adjust the column position.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         int len = tk.f.length; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _future.reportResult(Core::Utils::FileSearchResult(QDir::toNativeSeparators(_doc->fileName()), | 
					
						
							|  |  |  |                                                            line, lineText, col, len)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |     bool checkCandidates(const QList<Symbol *> &candidates) const | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-09-29 12:32:35 +02:00
										 |  |  |         if (Symbol *canonicalSymbol = LookupContext::canonicalSymbol(candidates)) { | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  |             qDebug() << "*** canonical symbol:" << canonicalSymbol->fileName() | 
					
						
							|  |  |  |                     << canonicalSymbol->line() << canonicalSymbol->column() | 
					
						
							|  |  |  |                     << "candidates:" << candidates.size(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return isDeclSymbol(canonicalSymbol); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |     bool isDeclSymbol(Symbol *symbol) const | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         if (! symbol) | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         else if (symbol == _declSymbol) | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         else if (symbol->line() == _declSymbol->line() && symbol->column() == _declSymbol->column()) { | 
					
						
							|  |  |  |             if (! qstrcmp(symbol->fileName(), _declSymbol->fileName())) | 
					
						
							|  |  |  |                 return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |     LookupContext currentContext(AST *ast) const | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         unsigned line, column; | 
					
						
							|  |  |  |         getTokenStartPosition(ast->firstToken(), &line, &column); | 
					
						
							|  |  |  |         Symbol *lastVisibleSymbol = _doc->findSymbolAt(line, column); | 
					
						
							|  |  |  |         return LookupContext(lastVisibleSymbol, _exprDoc, _doc, _snapshot); | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 13:02:15 +02:00
										 |  |  |     void ensureNameIsValid(NameAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (ast && ! ast->name) | 
					
						
							|  |  |  |             ast->name = _sem.check(ast, /*scope = */ 0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual bool visit(MemInitializerAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (ast->name && ast->name->asSimpleName() != 0) { | 
					
						
							|  |  |  |             ensureNameIsValid(ast->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             SimpleNameAST *simple = ast->name->asSimpleName(); | 
					
						
							|  |  |  |             if (identifier(simple->identifier_token) == _id) { | 
					
						
							|  |  |  |                 LookupContext context = currentContext(ast); | 
					
						
							|  |  |  |                 const QList<Symbol *> candidates = context.resolve(simple->name); | 
					
						
							|  |  |  |                 if (checkCandidates(candidates)) | 
					
						
							|  |  |  |                     reportResult(simple->identifier_token); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         accept(ast->expression); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 12:32:35 +02:00
										 |  |  |     virtual bool visit(PostfixExpressionAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         _postfixExpressionStack.append(ast); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 13:02:15 +02:00
										 |  |  |     virtual void endVisit(PostfixExpressionAST *) | 
					
						
							| 
									
										
										
										
											2009-09-29 12:32:35 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         _postfixExpressionStack.removeLast(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual bool visit(MemberAccessAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (! ast->member_name) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         SimpleNameAST *simple = ast->member_name->asSimpleName(); | 
					
						
							|  |  |  |         if (! simple) | 
					
						
							|  |  |  |             return true; // ### TODO handle pseudo-destructors and qualified names.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Q_ASSERT(! _postfixExpressionStack.isEmpty()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (identifier(simple->identifier_token) == _id) { | 
					
						
							|  |  |  |             unsigned startOfPostfixExpression = _postfixExpressionStack.last()->firstToken(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             unsigned begin = tokenAt(startOfPostfixExpression).begin(); | 
					
						
							|  |  |  |             unsigned end = tokenAt(ast->member_name->lastToken() - 1).end(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             const QString expression = _source.mid(begin, end - begin); | 
					
						
							|  |  |  |             // qDebug() << "*** expression:" << expression;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             TypeOfExpression typeofExpression; | 
					
						
							|  |  |  |             typeofExpression.setSnapshot(_snapshot); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             unsigned line, column; | 
					
						
							|  |  |  |             getTokenStartPosition(startOfPostfixExpression, &line, &column); | 
					
						
							|  |  |  |             Symbol *lastVisibleSymbol = _doc->findSymbolAt(line, column); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             const QList<TypeOfExpression::Result> results = | 
					
						
							|  |  |  |                     typeofExpression(expression, _doc, lastVisibleSymbol, | 
					
						
							|  |  |  |                                      TypeOfExpression::NoPreprocess); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             QList<Symbol *> candidates; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             foreach (TypeOfExpression::Result r, results) { | 
					
						
							|  |  |  |                 FullySpecifiedType ty = r.first; | 
					
						
							|  |  |  |                 Symbol *lastVisibleSymbol = r.second; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 candidates.append(lastVisibleSymbol); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (checkCandidates(candidates)) | 
					
						
							|  |  |  |                 reportResult(simple->identifier_token); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     virtual bool visit(QualifiedNameAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         if (! ast->name) { | 
					
						
							|  |  |  |             //qWarning() << "invalid AST at" << _doc->fileName() << line << column;
 | 
					
						
							|  |  |  |             ast->name = _sem.check(ast, /*scope */ static_cast<Scope *>(0)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Q_ASSERT(ast->name != 0); | 
					
						
							|  |  |  |         Identifier *id = ast->name->identifier(); | 
					
						
							|  |  |  |         if (id == _id && ast->unqualified_name) { | 
					
						
							|  |  |  |             LookupContext context = currentContext(ast); | 
					
						
							|  |  |  |             const QList<Symbol *> candidates = context.resolve(ast->name); | 
					
						
							|  |  |  |             if (checkCandidates(candidates)) | 
					
						
							|  |  |  |                 reportResult(ast->unqualified_name->firstToken()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual bool visit(SimpleNameAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Identifier *id = identifier(ast->identifier_token); | 
					
						
							|  |  |  |         if (id == _id) { | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |             LookupContext context = currentContext(ast); | 
					
						
							|  |  |  |             const QList<Symbol *> candidates = context.resolve(ast->name); | 
					
						
							|  |  |  |             if (checkCandidates(candidates)) | 
					
						
							|  |  |  |                 reportResult(ast->identifier_token); | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual bool visit(TemplateIdAST *ast) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Identifier *id = identifier(ast->identifier_token); | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         if (id == _id) { | 
					
						
							|  |  |  |             LookupContext context = currentContext(ast); | 
					
						
							|  |  |  |             const QList<Symbol *> candidates = context.resolve(ast->name); | 
					
						
							|  |  |  |             if (checkCandidates(candidates)) | 
					
						
							|  |  |  |                 reportResult(ast->identifier_token); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     QFutureInterface<Core::Utils::FileSearchResult> &_future; | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |     Identifier *_id; // ### remove me
 | 
					
						
							|  |  |  |     Symbol *_declSymbol; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     Document::Ptr _doc; | 
					
						
							|  |  |  |     Snapshot _snapshot; | 
					
						
							|  |  |  |     QByteArray _source; | 
					
						
							|  |  |  |     Document::Ptr _exprDoc; | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |     Semantic _sem; | 
					
						
							| 
									
										
										
										
											2009-09-29 12:32:35 +02:00
										 |  |  |     QList<PostfixExpressionAST *> _postfixExpressionStack; | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // end of anonymous namespace
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CppFindReferences::CppFindReferences(CppModelManager *modelManager) | 
					
						
							|  |  |  |     : _modelManager(modelManager), | 
					
						
							|  |  |  |       _resultWindow(ExtensionSystem::PluginManager::instance()->getObject<Find::SearchResultWindow>()) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_watcher.setPendingResultsLimit(1); | 
					
						
							|  |  |  |     connect(&m_watcher, SIGNAL(resultReadyAt(int)), this, SLOT(displayResult(int))); | 
					
						
							|  |  |  |     connect(&m_watcher, SIGNAL(finished()), this, SLOT(searchFinished())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CppFindReferences::~CppFindReferences() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void find_helper(QFutureInterface<Core::Utils::FileSearchResult> &future, | 
					
						
							| 
									
										
										
										
											2009-09-29 13:42:47 +02:00
										 |  |  |                         const QMap<QString, QString> wl, | 
					
						
							| 
									
										
										
										
											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-09-25 14:19:43 +02:00
										 |  |  |     Identifier *symbolId = symbol->identifier(); | 
					
						
							|  |  |  |     Q_ASSERT(symbolId != 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 16:51:40 +02:00
										 |  |  |     const QString fileName = QString::fromUtf8(symbol->fileName(), symbol->fileNameLength()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     QStringList files(fileName); | 
					
						
							|  |  |  |     files += snapshot.dependsOn(fileName); | 
					
						
							|  |  |  |     qDebug() << "done in:" << tm.elapsed() << "number of files to parse:" << files.size(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     future.setProgressRange(0, files.size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (int i = 0; i < files.size(); ++i) { | 
					
						
							|  |  |  |         const QString &fn = files.at(i); | 
					
						
							|  |  |  |         future.setProgressValueAndText(i, QFileInfo(fn).fileName()); | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         Document::Ptr previousDoc = snapshot.value(fn); | 
					
						
							|  |  |  |         if (previousDoc) { | 
					
						
							|  |  |  |             Control *control = previousDoc->control(); | 
					
						
							|  |  |  |             Identifier *id = control->findIdentifier(symbolId->chars(), symbolId->size()); | 
					
						
							|  |  |  |             if (! id) | 
					
						
							|  |  |  |                 continue; // skip this document, it's not using symbolId.
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |         QFile f(fn); | 
					
						
							|  |  |  |         if (! f.open(QFile::ReadOnly)) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 13:42:47 +02:00
										 |  |  |         QByteArray source; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (wl.contains(fileName)) | 
					
						
							|  |  |  |             source = snapshot.preprocessedCode(wl.value(fileName), fileName); | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             QFile file(fileName); | 
					
						
							|  |  |  |             if (! file.open(QFile::ReadOnly)) | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             const QString contents = QTextStream(&file).readAll(); // ### FIXME
 | 
					
						
							|  |  |  |             source = snapshot.preprocessedCode(contents, fileName); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Document::Ptr doc = snapshot.documentFromSource(source, fileName); | 
					
						
							| 
									
										
										
										
											2009-09-07 13:40:13 +02:00
										 |  |  |         doc->tokenize(); | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         Control *control = doc->control(); | 
					
						
							| 
									
										
										
										
											2009-09-24 16:51:40 +02:00
										 |  |  |         if (Identifier *id = control->findIdentifier(symbolId->chars(), symbolId->size())) { | 
					
						
							| 
									
										
										
										
											2009-09-07 13:40:13 +02:00
										 |  |  |             doc->check(); | 
					
						
							|  |  |  |             TranslationUnit *unit = doc->translationUnit(); | 
					
						
							|  |  |  |             Process process(future, doc, snapshot); | 
					
						
							| 
									
										
										
										
											2009-09-25 14:19:43 +02:00
										 |  |  |             process(symbol, id, unit->ast()); | 
					
						
							| 
									
										
										
										
											2009-09-07 13:40:13 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-09-29 13:42:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     future.setProgressValue(files.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 13:42:47 +02:00
										 |  |  | void CppFindReferences::findAll(Symbol *symbol) | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     _resultWindow->clearContents(); | 
					
						
							|  |  |  |     _resultWindow->popup(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 13:42:47 +02:00
										 |  |  |     const Snapshot snapshot = _modelManager->snapshot(); | 
					
						
							|  |  |  |     const QMap<QString, QString> wl = _modelManager->buildWorkingCopyList(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 13:42:47 +02:00
										 |  |  |     QFuture<Core::Utils::FileSearchResult> result = QtConcurrent::run(&find_helper, wl, snapshot, symbol); | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |     m_watcher.setFuture(result); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Core::FutureProgress *progress = progressManager->addTask(result, tr("Searching..."), | 
					
						
							| 
									
										
										
										
											2009-09-07 13:55:18 +02:00
										 |  |  |                                                               CppTools::Constants::TASK_SEARCH, | 
					
						
							| 
									
										
										
										
											2009-08-07 13:02:36 +02:00
										 |  |  |                                                               Core::ProgressManager::CloseOnSuccess); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     connect(progress, SIGNAL(clicked()), _resultWindow, SLOT(popup())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CppFindReferences::displayResult(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Core::Utils::FileSearchResult result = m_watcher.future().resultAt(index); | 
					
						
							|  |  |  |     Find::ResultWindowItem *item = _resultWindow->addResult(result.fileName, | 
					
						
							|  |  |  |                                                             result.lineNumber, | 
					
						
							|  |  |  |                                                             result.matchingLine, | 
					
						
							|  |  |  |                                                             result.matchStart, | 
					
						
							|  |  |  |                                                             result.matchLength); | 
					
						
							|  |  |  |     if (item) | 
					
						
							|  |  |  |         connect(item, SIGNAL(activated(const QString&,int,int)), | 
					
						
							|  |  |  |                 this, SLOT(openEditor(const QString&,int,int))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CppFindReferences::searchFinished() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     emit changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CppFindReferences::openEditor(const QString &fileName, int line, int column) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     TextEditor::BaseTextEditor::openEditorAt(fileName, line, column); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |