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

Side by Side Diff: pkg/analysis_server/lib/src/socket_server.dart

Issue 1089453002: Avoid redundant calls to "pub list" when multiple dependencies change. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing source file. Created 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library socket.server; 5 library socket.server;
6 6
7 import 'package:analysis_server/src/analysis_server.dart'; 7 import 'package:analysis_server/src/analysis_server.dart';
8 import 'package:analysis_server/src/channel/channel.dart'; 8 import 'package:analysis_server/src/channel/channel.dart';
9 import 'package:analysis_server/src/plugin/server_plugin.dart'; 9 import 'package:analysis_server/src/plugin/server_plugin.dart';
10 import 'package:analysis_server/src/protocol.dart'; 10 import 'package:analysis_server/src/protocol.dart';
11 import 'package:analysis_server/src/services/index/index.dart'; 11 import 'package:analysis_server/src/services/index/index.dart';
12 import 'package:analysis_server/src/services/index/local_file_index.dart'; 12 import 'package:analysis_server/src/services/index/local_file_index.dart';
13 import 'package:analysis_server/src/source/optimizing_pub_package_map_provider.d art';
13 import 'package:analyzer/file_system/physical_file_system.dart'; 14 import 'package:analyzer/file_system/physical_file_system.dart';
14 import 'package:analyzer/instrumentation/instrumentation.dart'; 15 import 'package:analyzer/instrumentation/instrumentation.dart';
15 import 'package:analyzer/plugin/plugin.dart'; 16 import 'package:analyzer/plugin/plugin.dart';
16 import 'package:analyzer/source/pub_package_map_provider.dart';
17 import 'package:analyzer/src/generated/sdk_io.dart'; 17 import 'package:analyzer/src/generated/sdk_io.dart';
18 18
19 /** 19 /**
20 * Instances of the class [SocketServer] implement the common parts of 20 * Instances of the class [SocketServer] implement the common parts of
21 * http-based and stdio-based analysis servers. The primary responsibility of 21 * http-based and stdio-based analysis servers. The primary responsibility of
22 * the SocketServer is to manage the lifetime of the AnalysisServer and to 22 * the SocketServer is to manage the lifetime of the AnalysisServer and to
23 * encode and decode the JSON messages exchanged with the client. 23 * encode and decode the JSON messages exchanged with the client.
24 */ 24 */
25 class SocketServer { 25 class SocketServer {
26 final AnalysisServerOptions analysisServerOptions; 26 final AnalysisServerOptions analysisServerOptions;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'File read mode was set to the unknown mode: $analysisServerOptions.fi leReadMode'); 68 'File read mode was set to the unknown mode: $analysisServerOptions.fi leReadMode');
69 } 69 }
70 70
71 Index index = null; 71 Index index = null;
72 if (!analysisServerOptions.noIndex) { 72 if (!analysisServerOptions.noIndex) {
73 index = createLocalFileIndex(); 73 index = createLocalFileIndex();
74 index.run(); 74 index.run();
75 } 75 }
76 76
77 analysisServer = new AnalysisServer(serverChannel, resourceProvider, 77 analysisServer = new AnalysisServer(serverChannel, resourceProvider,
78 new PubPackageMapProvider(resourceProvider, defaultSdk), index, 78 new OptimizingPubPackageMapProvider(resourceProvider, defaultSdk), index ,
79 analysisServerOptions, defaultSdk, instrumentationService, 79 analysisServerOptions, defaultSdk, instrumentationService,
80 rethrowExceptions: false); 80 rethrowExceptions: false);
81 _initializeHandlers(analysisServer); 81 _initializeHandlers(analysisServer);
82 analysisServer.userDefinedPlugins = userDefinedPlugins; 82 analysisServer.userDefinedPlugins = userDefinedPlugins;
83 } 83 }
84 84
85 /** 85 /**
86 * Initialize the handlers to be used by the given [server]. 86 * Initialize the handlers to be used by the given [server].
87 */ 87 */
88 void _initializeHandlers(AnalysisServer server) { 88 void _initializeHandlers(AnalysisServer server) {
89 server.handlers = serverPlugin.createDomains(server); 89 server.handlers = serverPlugin.createDomains(server);
90 } 90 }
91 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698