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

Side by Side Diff: sdk/lib/_internal/pub/test/serve/utils.dart

Issue 24016002: Support transformers that depend on other transformers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 pub_tests; 5 library pub_tests;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:http/http.dart' as http; 9 import 'package:http/http.dart' as http;
10 import 'package:scheduled_test/scheduled_process.dart'; 10 import 'package:scheduled_test/scheduled_process.dart';
(...skipping 21 matching lines...) Expand all
32 32
33 Future apply(Transform transform) { 33 Future apply(Transform transform) {
34 return transform.primaryInput.readAsString().then((contents) { 34 return transform.primaryInput.readAsString().then((contents) {
35 var id = transform.primaryInput.id.changeExtension(".out"); 35 var id = transform.primaryInput.id.changeExtension(".out");
36 transform.addOutput(new Asset.fromString(id, "\$contents.out")); 36 transform.addOutput(new Asset.fromString(id, "\$contents.out"));
37 }); 37 });
38 } 38 }
39 } 39 }
40 """; 40 """;
41 41
42 /// Returns the source code for a Dart library defining a Transformer that
43 /// rewrites Dart files.
44 ///
45 /// The transformer defines a constant named TOKEN whose value is [id]. When the
46 /// transformer transforms another Dart file, it will look for a "TOKEN"
47 /// constant definition there and modify it to include *this* transformer's
48 /// TOKEN value as well.
49 ///
50 /// If [import] is passed, it should be the name of a package that defines its
51 /// own TOKEN constant. The primary library of that package will be imported
52 /// here and its TOKEN value will be added to this library's.
53 String dartTransformer(String id, {String import}) {
54 if (import != null) {
55 id = '$id imports \${$import.TOKEN}';
56 import = 'import "package:$import/$import.dart" as $import;';
57 } else {
58 import = '';
59 }
60
61 return """
62 import 'dart:async';
63
64 import 'package:barback/barback.dart';
65 $import
66
67 const TOKEN = "$id";
68
69 final _tokenRegExp = new RegExp(r'^const TOKEN = "(.*?)";\$', multiLine: true);
70
71 class DartTransformer extends Transformer {
72 DartTransformer();
73
74 String get allowedExtensions => '.dart';
75
76 Future apply(Transform transform) {
77 return transform.primaryInput.readAsString().then((contents) {
78 transform.addOutput(new Asset.fromString(transform.primaryInput.id,
79 contents.replaceAllMapped(_tokenRegExp, (match) {
80 return 'const TOKEN = "(\${match[1]}, \$TOKEN)";';
81 })));
82 });
83 }
84 }
85 """;
86 }
87
42 /// Schedules starting the "pub serve" process. 88 /// Schedules starting the "pub serve" process.
43 /// 89 ///
44 /// If [shouldInstallFirst] is `true`, validates that pub install is run first. 90 /// If [shouldInstallFirst] is `true`, validates that pub install is run first.
45 /// 91 ///
46 /// Returns the `pub serve` process. 92 /// Returns the `pub serve` process.
47 ScheduledProcess startPubServe({bool shouldInstallFirst: false}) { 93 ScheduledProcess startPubServe({bool shouldInstallFirst: false}) {
48 // Use port 0 to get an ephemeral port. 94 // Use port 0 to get an ephemeral port.
49 _pubServer = startPub(args: ["serve", "--port=0"]); 95 _pubServer = startPub(args: ["serve", "--port=0"]);
50 96
51 if (shouldInstallFirst) { 97 if (shouldInstallFirst) {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 return _pubServer.nextLine().then((line) { 159 return _pubServer.nextLine().then((line) {
114 if (line.contains("successfully")) return; 160 if (line.contains("successfully")) return;
115 161
116 // This line wasn't it, so ignore it and keep trying. 162 // This line wasn't it, so ignore it and keep trying.
117 return nextLine(); 163 return nextLine();
118 }); 164 });
119 } 165 }
120 166
121 schedule(nextLine); 167 schedule(nextLine);
122 } 168 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698