OLD | NEW |
---|---|
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 pub.asset.serialize.transform; | 5 library pub.asset.serialize.transform; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:isolate'; | 8 import 'dart:isolate'; |
9 import 'dart:convert'; | 9 import 'dart:convert'; |
10 | 10 |
11 import 'package:barback/barback.dart'; | 11 import 'package:barback/barback.dart'; |
12 // TODO(nweiz): don't import from "src" once issue 14966 is fixed. | 12 // TODO(nweiz): don't import from "src" once issue 14966 is fixed. |
13 import 'package:barback/src/internal_asset.dart'; | 13 import 'package:barback/src/internal_asset.dart'; |
14 | 14 |
15 import '../serialize.dart'; | 15 import '../serialize.dart'; |
16 import '../utils.dart'; | 16 import '../utils.dart'; |
17 | 17 |
18 /// Converts [transform] into a serializable map. | 18 /// Serialize the methods shared between [Transform] and [DeclaringTransform]. |
19 Map serializeTransform(Transform transform) { | 19 /// |
20 /// [additionalFields] contains additional serialized fields to add to the | |
21 /// serialized transform. [handleMessage] handles additional methods that differ | |
Bob Nystrom
2014/04/16 22:28:41
Update the doc comment.
nweiz
2014/04/16 23:03:10
Done.
| |
22 /// between the two. It should return a [Future] if it handles a method, or | |
23 /// `null` if it doesn't. | |
24 Map _serializeBaseTransform(transform, Map additionalFields, | |
25 Map<String, Function> methodHandlers) { | |
20 var receivePort = new ReceivePort(); | 26 var receivePort = new ReceivePort(); |
21 receivePort.listen((wrappedMessage) { | 27 receivePort.listen((wrappedMessage) { |
22 respond(wrappedMessage, (message) { | 28 respond(wrappedMessage, (message) { |
23 if (message['type'] == 'getInput') { | 29 var handler = methodHandlers[message['type']]; |
24 return transform.getInput(deserializeId(message['id'])) | 30 if (handler != null) return handler(message); |
25 .then((asset) => serializeAsset(asset)); | |
26 } | |
27 | |
28 if (message['type'] == 'addOutput') { | |
29 transform.addOutput(deserializeAsset(message['output'])); | |
30 return null; | |
31 } | |
32 | 31 |
33 if (message['type'] == 'consumePrimary') { | 32 if (message['type'] == 'consumePrimary') { |
34 transform.consumePrimary(); | 33 transform.consumePrimary(); |
35 return null; | 34 return null; |
36 } | 35 } |
37 | 36 |
38 assert(message['type'] == 'log'); | 37 assert(message['type'] == 'log'); |
39 var method; | 38 var method = { |
40 if (message['level'] == 'Info') { | 39 'Info': transform.logger.info, |
41 method = transform.logger.info; | 40 'Fine': transform.logger.fine, |
42 } else if (message['level'] == 'Fine') { | 41 'Warning': transform.logger.warning, |
43 method = transform.logger.fine; | 42 'Error': transform.logger.error |
44 } else if (message['level'] == 'Warning') { | 43 }[message['level']]; |
Bob Nystrom
2014/04/16 22:28:41
<3
| |
45 method = transform.logger.warning; | 44 assert(method != null); |
46 } else { | |
47 assert(message['level'] == 'Error'); | |
48 method = transform.logger.error; | |
49 } | |
50 | 45 |
51 var assetId = message['assetId'] == null ? null : | 46 var assetId = message['assetId'] == null ? null : |
52 deserializeId(message['assetId']); | 47 deserializeId(message['assetId']); |
53 var span = message['span'] == null ? null : | 48 var span = message['span'] == null ? null : |
54 deserializeSpan(message['span']); | 49 deserializeSpan(message['span']); |
55 method(message['message'], asset: assetId, span: span); | 50 method(message['message'], asset: assetId, span: span); |
56 }); | 51 }); |
57 }); | 52 }); |
58 | 53 |
59 return { | 54 return {'port': receivePort.sendPort}..addAll(additionalFields); |
60 'port': receivePort.sendPort, | |
61 'primaryInput': serializeAsset(transform.primaryInput) | |
62 }; | |
63 } | 55 } |
64 | 56 |
65 /// A wrapper for a [Transform] that's in the host isolate. | 57 /// Converts [transform] into a serializable map. |
66 /// | 58 Map serializeTransform(Transform transform) { |
67 /// This retrieves inputs from and sends outputs and logs to the host isolate. | 59 return _serializeBaseTransform(transform, { |
68 class ForeignTransform implements Transform { | 60 'primaryInput': serializeAsset(transform.primaryInput) |
61 }, { | |
62 'getInput': (message) => transform.getInput(deserializeId(message['id'])) | |
63 .then((asset) => serializeAsset(asset)), | |
64 'addOutput': (message) => | |
65 transform.addOutput(deserializeAsset(message['output'])) | |
66 }); | |
67 } | |
68 | |
69 /// Converts [transform] into a serializable map. | |
70 Map serializeDeclaringTransform(DeclaringTransform transform) { | |
71 return _serializeBaseTransform(transform, { | |
72 'primaryId': serializeId(transform.primaryId) | |
73 }, { | |
74 'declareOutput': (message) => | |
75 transform.declareOutput(deserializeId(message['output'])) | |
76 }); | |
77 } | |
78 | |
79 /// The base class for wrappers for [Transform]s that are in the host isolate. | |
80 class _ForeignBaseTransform { | |
69 /// The port with which we communicate with the host isolate. | 81 /// The port with which we communicate with the host isolate. |
70 /// | 82 /// |
71 /// This port and all messages sent across it are specific to this transform. | 83 /// This port and all messages sent across it are specific to this transform. |
72 final SendPort _port; | 84 final SendPort _port; |
73 | 85 |
74 final Asset primaryInput; | |
75 | |
76 TransformLogger get logger => _logger; | 86 TransformLogger get logger => _logger; |
77 TransformLogger _logger; | 87 TransformLogger _logger; |
78 | 88 |
79 /// Creates a transform from a serializable map sent from the host isolate. | 89 _ForeignBaseTransform(Map transform) |
80 ForeignTransform(Map transform) | 90 : _port = transform['port'] { |
81 : _port = transform['port'], | |
82 primaryInput = deserializeAsset(transform['primaryInput']) { | |
83 _logger = new TransformLogger((assetId, level, message, span) { | 91 _logger = new TransformLogger((assetId, level, message, span) { |
84 call(_port, { | 92 call(_port, { |
85 'type': 'log', | 93 'type': 'log', |
86 'level': level.name, | 94 'level': level.name, |
87 'message': message, | 95 'message': message, |
88 'assetId': assetId == null ? null : serializeId(assetId), | 96 'assetId': assetId == null ? null : serializeId(assetId), |
89 'span': span == null ? null : serializeSpan(span) | 97 'span': span == null ? null : serializeSpan(span) |
90 }); | 98 }); |
91 }); | 99 }); |
92 } | 100 } |
93 | 101 |
102 void consumePrimary() { | |
103 call(_port, {'type': 'consumePrimary'}); | |
104 } | |
105 } | |
106 | |
107 /// A wrapper for a [Transform] that's in the host isolate. | |
108 /// | |
109 /// This retrieves inputs from and sends outputs and logs to the host isolate. | |
110 class ForeignTransform extends _ForeignBaseTransform implements Transform { | |
111 final Asset primaryInput; | |
112 | |
113 /// Creates a transform from a serialized map sent from the host isolate. | |
114 ForeignTransform(Map transform) | |
115 : primaryInput = deserializeAsset(transform['primaryInput']), | |
116 super(transform); | |
117 | |
94 Future<Asset> getInput(AssetId id) { | 118 Future<Asset> getInput(AssetId id) { |
95 return call(_port, { | 119 return call(_port, { |
96 'type': 'getInput', | 120 'type': 'getInput', |
97 'id': serializeId(id) | 121 'id': serializeId(id) |
98 }).then(deserializeAsset); | 122 }).then(deserializeAsset); |
99 } | 123 } |
100 | 124 |
101 Future<String> readInputAsString(AssetId id, {Encoding encoding}) { | 125 Future<String> readInputAsString(AssetId id, {Encoding encoding}) { |
102 if (encoding == null) encoding = UTF8; | 126 if (encoding == null) encoding = UTF8; |
103 return getInput(id).then((input) => input.readAsString(encoding: encoding)); | 127 return getInput(id).then((input) => input.readAsString(encoding: encoding)); |
104 } | 128 } |
105 | 129 |
106 Stream<List<int>> readInput(AssetId id) => | 130 Stream<List<int>> readInput(AssetId id) => |
107 futureStream(getInput(id).then((input) => input.read())); | 131 futureStream(getInput(id).then((input) => input.read())); |
108 | 132 |
109 Future<bool> hasInput(AssetId id) { | 133 Future<bool> hasInput(AssetId id) { |
110 return getInput(id).then((_) => true).catchError((error) { | 134 return getInput(id).then((_) => true).catchError((error) { |
111 if (error is AssetNotFoundException && error.id == id) return false; | 135 if (error is AssetNotFoundException && error.id == id) return false; |
112 throw error; | 136 throw error; |
113 }); | 137 }); |
114 } | 138 } |
115 | 139 |
116 void addOutput(Asset output) { | 140 void addOutput(Asset output) { |
117 call(_port, { | 141 call(_port, { |
118 'type': 'addOutput', | 142 'type': 'addOutput', |
119 'output': serializeAsset(output) | 143 'output': serializeAsset(output) |
120 }); | 144 }); |
121 } | 145 } |
146 } | |
122 | 147 |
123 void consumePrimary() { | 148 /// A wrapper for a [DeclaringTransform] that's in the host isolate. |
124 call(_port, {'type': 'consumePrimary'}); | 149 class ForeignDeclaringTransform extends _ForeignBaseTransform |
150 implements DeclaringTransform { | |
151 final AssetId primaryId; | |
152 | |
153 /// Creates a transform from a serializable map sent from the host isolate. | |
154 ForeignDeclaringTransform(Map transform) | |
155 : primaryId = deserializeId(transform['primaryId']), | |
156 super(transform); | |
157 | |
158 void declareOutput(AssetId id) { | |
159 call(_port, { | |
160 'type': 'declareOutput', | |
161 'output': serializeId(id) | |
162 }); | |
125 } | 163 } |
126 } | 164 } |
OLD | NEW |