OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library pub.asset.serialize; |
| 6 |
| 7 import 'dart:async'; |
| 8 import 'dart:isolate'; |
| 9 |
| 10 import 'package:barback/barback.dart'; |
| 11 import 'package:source_maps/span.dart'; |
| 12 |
| 13 import 'serialize/exception.dart'; |
| 14 |
| 15 export 'serialize/exception.dart'; |
| 16 export 'serialize/transform.dart'; |
| 17 export 'serialize/transformer.dart'; |
| 18 |
| 19 /// Converts [id] into a serializable map. |
| 20 Map serializeId(AssetId id) => {'package': id.package, 'path': id.path}; |
| 21 |
| 22 /// Converts a serializable map into an [AssetId]. |
| 23 AssetId deserializeId(Map id) => new AssetId(id['package'], id['path']); |
| 24 |
| 25 /// Converts [span] into a serializable map. |
| 26 Map serializeSpan(Span span) { |
| 27 // TODO(nweiz): convert FileSpans to FileSpans. |
| 28 return { |
| 29 'type': 'fixed', |
| 30 'sourceUrl': span.sourceUrl, |
| 31 'start': serializeLocation(span.start), |
| 32 'text': span.text, |
| 33 'isIdentifier': span.isIdentifier |
| 34 }; |
| 35 } |
| 36 |
| 37 /// Converts a serializable map into a [Span]. |
| 38 Span deserializeSpan(Map span) { |
| 39 assert(span['type'] == 'fixed'); |
| 40 var location = deserializeLocation(span['start']); |
| 41 return new FixedSpan(span['sourceUrl'], location.offset, location.line, |
| 42 location.column, text: span['text'], isIdentifier: span['isIdentifier']); |
| 43 } |
| 44 |
| 45 /// Converts [location] into a serializable map. |
| 46 Map serializeLocation(Location location) { |
| 47 // TODO(nweiz): convert FileLocations to FileLocations. |
| 48 return { |
| 49 'type': 'fixed', |
| 50 'sourceUrl': location.sourceUrl, |
| 51 'offset': location.offset, |
| 52 'line': location.line, |
| 53 'column': location.column |
| 54 }; |
| 55 } |
| 56 |
| 57 /// Converts a serializable map into a [Location]. |
| 58 Location deserializeLocation(Map location) { |
| 59 assert(location['type'] == 'fixed'); |
| 60 return new FixedLocation(location['offset'], location['sourceUrl'], |
| 61 location['line'], location['column']); |
| 62 } |
| 63 |
| 64 /// Wraps [message] and sends it across [port], then waits for a response which |
| 65 /// should be sent using [respond]. |
| 66 /// |
| 67 /// The returned Future will complete to the value or error returned by |
| 68 /// [respond]. |
| 69 Future call(SendPort port, message) { |
| 70 var receivePort = new ReceivePort(); |
| 71 port.send({ |
| 72 'message': message, |
| 73 'replyTo': receivePort.sendPort |
| 74 }); |
| 75 |
| 76 return receivePort.first.then((response) { |
| 77 if (response['type'] == 'success') return response['value']; |
| 78 assert(response['type'] == 'error'); |
| 79 var exception = deserializeException(response['error']); |
| 80 return new Future.error(exception, exception.stackTrace); |
| 81 }); |
| 82 } |
| 83 |
| 84 /// Responds to a message sent by [call]. |
| 85 /// |
| 86 /// [wrappedMessage] is the raw message sent by [call]. This unwraps it and |
| 87 /// passes the contents of the message to [callback], then sends the return |
| 88 /// value of [callback] back to [call]. If [callback] returns a Future or |
| 89 /// throws an error, that will also be sent. |
| 90 void respond(wrappedMessage, callback(message)) { |
| 91 var replyTo = wrappedMessage['replyTo']; |
| 92 new Future.sync(() => callback(wrappedMessage['message'])) |
| 93 .then((result) => replyTo.send({'type': 'success', 'value': result})) |
| 94 .catchError((error, stackTrace) { |
| 95 replyTo.send({ |
| 96 'type': 'error', |
| 97 'error': serializeException(error, stackTrace) |
| 98 }); |
| 99 }); |
| 100 } |
OLD | NEW |