OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 library validator; |
| 6 |
| 7 import 'entrypoint.dart'; |
| 8 import 'io.dart'; |
| 9 import 'system_cache.dart'; |
| 10 import 'utils.dart'; |
| 11 import 'validator/pubspec_field.dart'; |
| 12 |
| 13 /// The base class for validators that check whether a package is fit for |
| 14 /// uploading. Each validator should override [errors], [warnings], or both to |
| 15 /// return lists of errors or warnings to display to the user. Errors will cause |
| 16 /// the package not to be uploaded; warnings will require the user to confirm |
| 17 /// the upload. |
| 18 abstract class Validator { |
| 19 /// The entrypoint that's being validated. |
| 20 final Entrypoint entrypoint; |
| 21 |
| 22 /// The accumulated errors for this validator. Filled by calling [validate]. |
| 23 final errors = <String>[]; |
| 24 |
| 25 /// The accumulated warnings for this validator. Filled by calling [validate]. |
| 26 final warnings = <String>[]; |
| 27 |
| 28 Validator(this.entrypoint); |
| 29 |
| 30 /// Validates the entrypoint, adding any errors and warnings to [errors] and |
| 31 /// [warnings], respectively. |
| 32 Future validate(); |
| 33 |
| 34 /// Run all validators on the [entrypoint] package and print their results. |
| 35 /// The future will complete with the error and warning messages, |
| 36 /// respectively. |
| 37 static Future<Pair<List<String>, List<String>>> runAll( |
| 38 Entrypoint entrypoint) { |
| 39 var validators = [ |
| 40 new PubspecFieldValidator(entrypoint) |
| 41 ]; |
| 42 |
| 43 // TODO(nweiz): The sleep 0 here forces us to go async. This works around |
| 44 // 3356, which causes a bug if all validators are (synchronously) using |
| 45 // Future.immediate and an error is thrown before a handler is set up. |
| 46 return sleep(0).chain((_) { |
| 47 return Futures.wait(validators.map((validator) => validator.validate())); |
| 48 }).transform((_) { |
| 49 var errors = flatten(validators.map((validator) => validator.errors)); |
| 50 var warnings = flatten(validators.map((validator) => validator.warnings)); |
| 51 |
| 52 if (!errors.isEmpty) { |
| 53 printError("== Errors:"); |
| 54 for (var error in errors) { |
| 55 printError("* $error"); |
| 56 } |
| 57 printError(""); |
| 58 } |
| 59 |
| 60 if (!warnings.isEmpty) { |
| 61 printError("== Warnings:"); |
| 62 for (var warning in warnings) { |
| 63 printError("* $warning"); |
| 64 } |
| 65 printError(""); |
| 66 } |
| 67 |
| 68 return new Pair<List<String>, List<String>>(errors, warnings); |
| 69 }); |
| 70 } |
| 71 } |
OLD | NEW |