OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 barback.test.transformer.declare_asset; | 5 library barback.test.transformer.declare_asset; |
6 | 6 |
7 import 'dart:async'; | |
8 | |
9 import 'package:barback/barback.dart'; | 7 import 'package:barback/barback.dart'; |
10 import 'package:barback/src/utils.dart'; | |
11 | 8 |
12 import 'mock.dart'; | 9 import 'mock.dart'; |
13 | 10 |
14 /// A transformer that declares some outputs and emits others. | 11 /// A transformer that declares some outputs and emits others. |
15 class DeclareAssetsTransformer extends MockTransformer | 12 class DeclareAssetsTransformer extends MockTransformer |
16 implements DeclaringTransformer { | 13 implements DeclaringTransformer { |
17 /// The assets that the transformer declares that it will emit. | 14 /// The assets that the transformer declares that it will emit. |
18 final List<AssetId> declared; | 15 final List<AssetId> declared; |
19 | 16 |
20 /// The assets that the transformer actually emits. | 17 /// The assets that the transformer actually emits. |
21 /// | 18 /// |
22 /// These assets' contents will be identical to their ids. | 19 /// These assets' contents will be identical to their ids. |
23 final List<AssetId> emitted; | 20 final List<AssetId> emitted; |
24 | 21 |
25 DeclareAssetsTransformer(Iterable<String> declared, [Iterable<String> emitted]
) | 22 DeclareAssetsTransformer(Iterable<String> declared, [Iterable<String> emitted]
) |
26 : this.declared = declared.map((id) => new AssetId.parse(id)).toList(), | 23 : this.declared = declared.map((id) => new AssetId.parse(id)).toList(), |
27 this.emitted = (emitted == null ? declared : emitted) | 24 this.emitted = (emitted == null ? declared : emitted) |
28 .map((id) => new AssetId.parse(id)).toList(); | 25 .map((id) => new AssetId.parse(id)).toList(); |
29 | 26 |
30 Future<bool> doIsPrimary(AssetId id) => new Future.value(true); | 27 bool doIsPrimary(AssetId id) => true; |
31 | 28 |
32 Future doApply(Transform transform) { | 29 void doApply(Transform transform) { |
33 return newFuture(() { | 30 for (var id in emitted) { |
34 for (var id in emitted) { | 31 transform.addOutput(new Asset.fromString(id, id.toString())); |
35 transform.addOutput(new Asset.fromString(id, id.toString())); | 32 } |
36 } | |
37 }); | |
38 } | 33 } |
39 | 34 |
40 Future declareOutputs(DeclaringTransform transform) { | 35 void declareOutputs(DeclaringTransform transform) { |
41 return newFuture(() { | 36 declared.forEach(transform.declareOutput); |
42 declared.forEach(transform.declareOutput); | |
43 }); | |
44 } | 37 } |
45 } | 38 } |
OLD | NEW |