2fa3b2cab4
R=paulberry@google.com Review URL: https://codereview.chromium.org//664743002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41171 260f80e4-7a28-3924-810f-c04153c831b5
146 lines
4.3 KiB
Dart
146 lines
4.3 KiB
Dart
// Copyright (c) 2014, 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.
|
|
|
|
library driver;
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:analysis_server/http_server.dart';
|
|
import 'package:analysis_server/src/socket_server.dart';
|
|
import 'package:analysis_server/stdio_server.dart';
|
|
import 'package:analyzer/src/generated/java_io.dart';
|
|
import 'package:analyzer/src/generated/sdk.dart';
|
|
import 'package:analyzer/src/generated/sdk_io.dart';
|
|
import 'package:args/args.dart';
|
|
|
|
/**
|
|
* The [Driver] class represents a single running instance of the analysis
|
|
* server application. It is responsible for parsing command line options
|
|
* and starting the HTTP and/or stdio servers.
|
|
*/
|
|
class Driver {
|
|
/**
|
|
* The name of the application that is used to start a server.
|
|
*/
|
|
static const BINARY_NAME = 'server';
|
|
|
|
/**
|
|
* The name of the option used to enable instrumentation.
|
|
*/
|
|
static const String ENABLE_INSTRUMENTATION_OPTION = "enable-instrumentation";
|
|
|
|
/**
|
|
* The name of the option used to print usage information.
|
|
*/
|
|
static const String HELP_OPTION = "help";
|
|
|
|
/**
|
|
* The name of the option used to specify the log file to which
|
|
* instrumentation data is to be written.
|
|
*/
|
|
static const String INSTRUMENTATION_LOG_FILE_OPTION = "instrumentation-log-file";
|
|
|
|
/**
|
|
* The name of the option used to specify the port to which the server will
|
|
* connect.
|
|
*/
|
|
static const String PORT_OPTION = "port";
|
|
|
|
/**
|
|
* The path to the SDK.
|
|
* TODO(paulberry): get rid of this once the 'analysis.updateSdks' request is
|
|
* operational.
|
|
*/
|
|
static const String SDK_OPTION = 'sdk';
|
|
|
|
SocketServer socketServer;
|
|
|
|
HttpAnalysisServer httpServer;
|
|
|
|
StdioAnalysisServer stdioServer;
|
|
|
|
Driver() {
|
|
}
|
|
|
|
/**
|
|
* Use the given command-line arguments to start this server.
|
|
*/
|
|
void start(List<String> args) {
|
|
ArgParser parser = new ArgParser();
|
|
parser.addFlag(ENABLE_INSTRUMENTATION_OPTION,
|
|
help: "enable sending instrumentation information to a server",
|
|
defaultsTo: false,
|
|
negatable: false);
|
|
parser.addFlag(HELP_OPTION,
|
|
help: "print this help message without starting a server",
|
|
defaultsTo: false,
|
|
negatable: false);
|
|
parser.addOption(INSTRUMENTATION_LOG_FILE_OPTION,
|
|
help: "[path] the file to which instrumentation data will be logged");
|
|
parser.addOption(PORT_OPTION,
|
|
help: "[port] the port on which the server will listen");
|
|
parser.addOption(SDK_OPTION,
|
|
help: "[path] the path to the sdk");
|
|
|
|
ArgResults results = parser.parse(args);
|
|
if (results[HELP_OPTION]) {
|
|
_printUsage(parser);
|
|
return;
|
|
}
|
|
if (results[ENABLE_INSTRUMENTATION_OPTION]) {
|
|
if (results[INSTRUMENTATION_LOG_FILE_OPTION] != null) {
|
|
// TODO(brianwilkerson) Initialize the instrumentation system with logging.
|
|
} else {
|
|
// TODO(brianwilkerson) Initialize the instrumentation system without logging.
|
|
}
|
|
}
|
|
int port;
|
|
bool serve_http = false;
|
|
if (results[PORT_OPTION] != null) {
|
|
serve_http = true;
|
|
try {
|
|
port = int.parse(results[PORT_OPTION]);
|
|
} on FormatException {
|
|
print('Invalid port number: ${results[PORT_OPTION]}');
|
|
print('');
|
|
_printUsage(parser);
|
|
exitCode = 1;
|
|
return;
|
|
}
|
|
}
|
|
DartSdk defaultSdk;
|
|
if (results[SDK_OPTION] != null) {
|
|
defaultSdk = new DirectoryBasedDartSdk(new JavaFile(results[SDK_OPTION]));
|
|
} else {
|
|
// No path to the SDK provided; use DirectoryBasedDartSdk.defaultSdk,
|
|
// which will make a guess.
|
|
defaultSdk = DirectoryBasedDartSdk.defaultSdk;
|
|
}
|
|
|
|
socketServer = new SocketServer(defaultSdk);
|
|
httpServer = new HttpAnalysisServer(socketServer);
|
|
stdioServer = new StdioAnalysisServer(socketServer);
|
|
|
|
if (serve_http) {
|
|
httpServer.serveHttp(port);
|
|
}
|
|
stdioServer.serveStdio().then((_) {
|
|
if (serve_http) {
|
|
httpServer.close();
|
|
}
|
|
exit(0);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Print information about how to use the server.
|
|
*/
|
|
void _printUsage(ArgParser parser) {
|
|
print('Usage: $BINARY_NAME [flags]');
|
|
print('');
|
|
print('Supported flags are:');
|
|
print(parser.getUsage());
|
|
}
|
|
}
|