Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: pkg/analysis_server/lib/src/search/search_domain.dart

Issue 894323003: Wait for analysis in search domain. Rewrite with async/await. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/test/analysis_abstract.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/search/search_domain.dart
diff --git a/pkg/analysis_server/lib/src/search/search_domain.dart b/pkg/analysis_server/lib/src/search/search_domain.dart
index c0f8fe01946d94afed7e4914ba735d3b41bd23b9..8f550b60b99cef832ed95abbba600c8da37b09f3 100644
--- a/pkg/analysis_server/lib/src/search/search_domain.dart
+++ b/pkg/analysis_server/lib/src/search/search_domain.dart
@@ -4,6 +4,8 @@
library search.domain;
+import 'dart:async';
+
import 'package:analysis_server/src/analysis_server.dart';
import 'package:analysis_server/src/constants.dart';
import 'package:analysis_server/src/protocol_server.dart' as protocol;
@@ -39,9 +41,10 @@ class SearchDomainHandler implements protocol.RequestHandler {
searchEngine = server.searchEngine;
}
- protocol.Response findElementReferences(protocol.Request request) {
+ Future findElementReferences(protocol.Request request) async {
var params =
new protocol.SearchFindElementReferencesParams.fromRequest(request);
+ await server.onAnalysisComplete;
Brian Wilkerson 2015/02/03 21:49:20 Do we also need to wait for indexing to be complet
scheglov 2015/02/03 21:51:19 We wait for all analysis operations, including ana
// prepare elements
List<Element> elements =
server.getElementsAtOffset(params.file, params.offset);
@@ -59,15 +62,14 @@ class SearchDomainHandler implements protocol.RequestHandler {
}).where((Element element) {
return element != null;
}).toList();
- // schedule search
+ // search
String searchId = (_nextSearchId++).toString();
- elements.forEach((Element element) {
+ elements.forEach((Element element) async {
var computer = new ElementReferencesComputer(searchEngine);
- var future = computer.compute(element, params.includePotential);
- future.then((List<protocol.SearchResult> results) {
- bool isLast = identical(element, elements.last);
- _sendSearchNotification(searchId, isLast, results);
- });
+ List<protocol.SearchResult> results =
+ await computer.compute(element, params.includePotential);
+ bool isLast = identical(element, elements.last);
+ _sendSearchNotification(searchId, isLast, results);
});
// respond
var result = new protocol.SearchFindElementReferencesResult();
@@ -75,82 +77,75 @@ class SearchDomainHandler implements protocol.RequestHandler {
result.id = searchId;
result.element = protocol.newElement_fromEngine(elements[0]);
}
- return result.toResponse(request.id);
+ _sendSearchResult(request, result);
}
- protocol.Response findMemberDeclarations(protocol.Request request) {
+ Future findMemberDeclarations(protocol.Request request) async {
var params =
new protocol.SearchFindMemberDeclarationsParams.fromRequest(request);
- // schedule search
- String searchId = (_nextSearchId++).toString();
- {
- var matchesFuture = searchEngine.searchMemberDeclarations(params.name);
- matchesFuture.then((List<SearchMatch> matches) {
- _sendSearchNotification(searchId, true, matches.map(toResult));
- });
- }
+ await server.onAnalysisComplete;
// respond
- return new protocol.SearchFindMemberDeclarationsResult(
- searchId).toResponse(request.id);
+ String searchId = (_nextSearchId++).toString();
+ _sendSearchResult(
+ request,
+ new protocol.SearchFindMemberDeclarationsResult(searchId));
+ // search
+ List<SearchMatch> matches =
+ await searchEngine.searchMemberDeclarations(params.name);
+ _sendSearchNotification(searchId, true, matches.map(toResult));
}
- protocol.Response findMemberReferences(protocol.Request request) {
+ Future findMemberReferences(protocol.Request request) async {
var params =
new protocol.SearchFindMemberReferencesParams.fromRequest(request);
- // schedule search
- String searchId = (_nextSearchId++).toString();
- {
- var matchesFuture = searchEngine.searchMemberReferences(params.name);
- matchesFuture.then((List<SearchMatch> matches) {
- _sendSearchNotification(searchId, true, matches.map(toResult));
- });
- }
+ await server.onAnalysisComplete;
// respond
- return new protocol.SearchFindMemberReferencesResult(
- searchId).toResponse(request.id);
+ String searchId = (_nextSearchId++).toString();
+ _sendSearchResult(
+ request,
+ new protocol.SearchFindMemberReferencesResult(searchId));
+ // search
+ List<SearchMatch> matches =
+ await searchEngine.searchMemberReferences(params.name);
+ _sendSearchNotification(searchId, true, matches.map(toResult));
}
- protocol.Response findTopLevelDeclarations(protocol.Request request) {
+ Future findTopLevelDeclarations(protocol.Request request) async {
var params =
new protocol.SearchFindTopLevelDeclarationsParams.fromRequest(request);
- // schedule search
- String searchId = (_nextSearchId++).toString();
- {
- var matchesFuture =
- searchEngine.searchTopLevelDeclarations(params.pattern);
- matchesFuture.then((List<SearchMatch> matches) {
- _sendSearchNotification(searchId, true, matches.map(toResult));
- });
- }
+ await server.onAnalysisComplete;
// respond
- return new protocol.SearchFindTopLevelDeclarationsResult(
- searchId).toResponse(request.id);
+ String searchId = (_nextSearchId++).toString();
+ _sendSearchResult(
+ request,
+ new protocol.SearchFindTopLevelDeclarationsResult(searchId));
+ // search
+ List<SearchMatch> matches =
+ await searchEngine.searchTopLevelDeclarations(params.pattern);
+ _sendSearchNotification(searchId, true, matches.map(toResult));
}
/**
* Implement the `search.getTypeHierarchy` request.
*/
- protocol.Response getTypeHierarchy(protocol.Request request) {
+ Future getTypeHierarchy(protocol.Request request) async {
var params = new protocol.SearchGetTypeHierarchyParams.fromRequest(request);
+ await server.onAnalysisComplete;
// prepare parameters
- // prepare Element
List<Element> elements =
server.getElementsAtOffset(params.file, params.offset);
if (elements.isEmpty) {
protocol.Response response =
new protocol.SearchGetTypeHierarchyResult().toResponse(request.id);
- return response;
+ server.sendResponse(response);
}
Element element = elements.first;
// prepare type hierarchy
TypeHierarchyComputer computer = new TypeHierarchyComputer(searchEngine);
- computer.compute(element).then((List<protocol.TypeHierarchyItem> items) {
- protocol.Response response = new protocol.SearchGetTypeHierarchyResult(
- hierarchyItems: items).toResponse(request.id);
- server.sendResponse(response);
- });
- // delay response
- return protocol.Response.DELAYED_RESPONSE;
+ List<protocol.TypeHierarchyItem> items = await computer.compute(element);
+ protocol.Response response = new protocol.SearchGetTypeHierarchyResult(
+ hierarchyItems: items).toResponse(request.id);
+ server.sendResponse(response);
}
@override
@@ -158,15 +153,20 @@ class SearchDomainHandler implements protocol.RequestHandler {
try {
String requestName = request.method;
if (requestName == SEARCH_FIND_ELEMENT_REFERENCES) {
- return findElementReferences(request);
+ findElementReferences(request);
+ return protocol.Response.DELAYED_RESPONSE;
} else if (requestName == SEARCH_FIND_MEMBER_DECLARATIONS) {
- return findMemberDeclarations(request);
+ findMemberDeclarations(request);
+ return protocol.Response.DELAYED_RESPONSE;
} else if (requestName == SEARCH_FIND_MEMBER_REFERENCES) {
- return findMemberReferences(request);
+ findMemberReferences(request);
+ return protocol.Response.DELAYED_RESPONSE;
} else if (requestName == SEARCH_FIND_TOP_LEVEL_DECLARATIONS) {
- return findTopLevelDeclarations(request);
+ findTopLevelDeclarations(request);
+ return protocol.Response.DELAYED_RESPONSE;
} else if (requestName == SEARCH_GET_TYPE_HIERARCHY) {
- return getTypeHierarchy(request);
+ getTypeHierarchy(request);
+ return protocol.Response.DELAYED_RESPONSE;
}
} on protocol.RequestFailure catch (exception) {
return exception.response;
@@ -183,6 +183,14 @@ class SearchDomainHandler implements protocol.RequestHandler {
isLast).toNotification());
}
+ /**
+ * Send a search response with the given [result] to the given [request].
+ */
+ void _sendSearchResult(protocol.Request request, result) {
+ protocol.Response response = result.toResponse(request.id);
+ server.sendResponse(response);
+ }
+
static protocol.SearchResult toResult(SearchMatch match) {
return protocol.newSearchResult_fromMatch(match);
}
« no previous file with comments | « no previous file | pkg/analysis_server/test/analysis_abstract.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698