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

Unified Diff: utils/pub/pub.dart

Issue 10944035: Use more semantic exit codes so we can detect HTTP errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « utils/pub/io.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/pub.dart
diff --git a/utils/pub/pub.dart b/utils/pub/pub.dart
index 1bd1a40e543f8c3239dc786368cd08bd603f5eac..92cc62af4bf7129a68ddf40b2d314670c6b7241a 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -17,6 +17,7 @@
#import('command_update.dart');
#import('command_version.dart');
#import('entrypoint.dart');
+#import('exit_codes.dart', prefix: 'exit_codes');
#import('git_source.dart');
#import('hosted_source.dart');
#import('package.dart');
@@ -96,7 +97,7 @@ main() {
if (command == null) {
printError('Unknown command "${globalOptions.rest[0]}".');
printError('Run "pub help" to see available commands.');
- exit(64); // See http://www.freebsd.org/cgi/man.cgi?query=sysexits.
+ exit(exit_codes.USAGE);
return;
}
@@ -176,7 +177,7 @@ class PubCommand {
commandOptions = commandParser.parse(commandArgs);
} on FormatException catch (e) {
this.printUsage(description: e.message);
- return;
+ exit(exit_codes.USAGE);
}
handleError(error, trace) {
@@ -195,9 +196,7 @@ class PubCommand {
printError(trace);
}
- // TODO(nweiz): Use the more semantic error codes in
- // http://www.freebsd.org/cgi/man.cgi?query=sysexits
- exit(1);
+ exit(_exitCode(error));
}
var future = new Future.immediate(null);
@@ -258,4 +257,17 @@ class PubCommand {
print(commandUsage);
}
}
+
+ /// Returns the appropriate exit code for [exception], falling back on 1 if no
+ /// appropriate exit code could be found.
+ int _exitCode(exception) {
Bob Nystrom 2012/09/19 18:27:42 How about a nice verby name like _chooseExitCode?
nweiz 2012/09/19 18:33:56 Done.
+ if (exception is HttpException || exception is HttpParserException ||
+ exception is SocketIOException || exception is PubHttpException) {
+ return exit_codes.UNAVAILABLE;
+ } else if (exception is FormatException) {
+ return exit_codes.DATA;
+ } else {
+ return 1;
+ }
+ }
}
« no previous file with comments | « utils/pub/io.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698