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

Unified Diff: pkg/analysis_server/lib/src/domain_abstract.dart

Issue 2830863002: Initial support for getting fixes from plugins (Closed)
Patch Set: address comments Created 3 years, 8 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/lib/src/edit/edit_domain.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/domain_abstract.dart
diff --git a/pkg/analysis_server/lib/src/domain_abstract.dart b/pkg/analysis_server/lib/src/domain_abstract.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c083e87f32ae65363dcd91865c8bd64c0e577e3e
--- /dev/null
+++ b/pkg/analysis_server/lib/src/domain_abstract.dart
@@ -0,0 +1,77 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'dart:async';
+import 'dart:convert';
+import 'dart:math' as math;
+
+import 'package:analysis_server/src/analysis_server.dart';
+import 'package:analysis_server/src/plugin/plugin_manager.dart';
+import 'package:analysis_server/src/protocol_server.dart' hide Element;
+import 'package:analyzer_plugin/protocol/protocol.dart' as plugin;
+import 'package:analyzer_plugin/protocol/protocol_constants.dart' as plugin;
+import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin;
+import 'package:analyzer_plugin/src/protocol/protocol_internal.dart' as plugin;
+
+/**
+ * An abstract implementation of a request handler.
+ */
+abstract class AbstractRequestHandler implements RequestHandler {
+ /**
+ * The analysis server that is using this handler to process requests.
+ */
+ final AnalysisServer server;
+
+ /**
+ * Initialize a newly created request handler to be associated with the given
+ * analysis [server].
+ */
+ AbstractRequestHandler(this.server);
+
+ /**
+ * Given a mapping from plugins to futures that will complete when the plugin
+ * has responded to a request, wait for a finite amount of time for each of
+ * the plugins to respond. Return a list of the responses from each of the
+ * plugins. If a plugin fails to return a response, notify the plugin manager
+ * associated with the server so that non-responsive plugins can be killed or
+ * restarted. The [timeout] is the maximum amount of time that will be spent
+ * waiting for plugins to respond.
+ */
+ Future<List<plugin.Response>> waitForResponses(
+ Map<PluginInfo, Future<plugin.Response>> futures,
+ {plugin.RequestParams requestParameters,
+ int timeout: 500}) async {
+ int endTime = new DateTime.now().millisecondsSinceEpoch + timeout;
+ List<plugin.Response> responses = <plugin.Response>[];
+ for (PluginInfo pluginInfo in futures.keys) {
+ Future<plugin.Response> future = futures[pluginInfo];
+ try {
+ int startTime = new DateTime.now().millisecondsSinceEpoch;
+ plugin.Response response = await future.timeout(
+ new Duration(milliseconds: math.max(endTime - startTime, 0)));
+ if (response.error != null) {
+ // TODO(brianwilkerson) Report the error to the plugin manager.
+ server.instrumentationService.logPluginError(
+ pluginInfo.data,
+ response.error.code.name,
+ response.error.message,
+ response.error.stackTrace);
+ } else {
+ responses.add(response);
+ }
+ } on TimeoutException {
+ // TODO(brianwilkerson) Report the timeout to the plugin manager.
+ server.instrumentationService.logPluginTimeout(
+ pluginInfo.data,
+ new JsonEncoder()
+ .convert(requestParameters.toRequest('-').toJson()));
+ } catch (exception, stackTrace) {
+ // TODO(brianwilkerson) Report the exception to the plugin manager.
+ server.instrumentationService
+ .logPluginException(pluginInfo.data, exception, stackTrace);
+ }
+ }
+ return responses;
+ }
+}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/edit/edit_domain.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698