Skip to content
Snippets Groups Projects
Commit 6c6beb55 authored by rnystrom@google.com's avatar rnystrom@google.com Committed by Natalie Weizenbaum
Browse files

Regenerate a snapshot if the first isolate fails to load.

R=nweiz@google.com

Review URL: https://codereview.chromium.org//593363002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@40618 260f80e4-7a28-3924-810f-c04153c831b5
parent 851d9f95
No related branches found
No related tags found
No related merge requests found
...@@ -153,15 +153,22 @@ class _DirectiveCollector extends GeneralizingAstVisitor { ...@@ -153,15 +153,22 @@ class _DirectiveCollector extends GeneralizingAstVisitor {
/// If [snapshot] is passed, the isolate will be loaded from that path if it /// If [snapshot] is passed, the isolate will be loaded from that path if it
/// exists. Otherwise, a snapshot of the isolate's code will be saved to that /// exists. Otherwise, a snapshot of the isolate's code will be saved to that
/// path once the isolate is loaded. /// path once the isolate is loaded.
Future runInIsolate(String code, message, {packageRoot, String snapshot}) { Future runInIsolate(String code, message, {packageRoot, String snapshot})
async {
if (snapshot != null && fileExists(snapshot)) { if (snapshot != null && fileExists(snapshot)) {
log.fine("Spawning isolate from $snapshot."); log.fine("Spawning isolate from $snapshot.");
if (packageRoot != null) packageRoot = packageRoot.toString(); if (packageRoot != null) packageRoot = packageRoot.toString();
return Isolate.spawnUri(path.toUri(snapshot), [], message, try {
packageRoot: packageRoot); await Isolate.spawnUri(path.toUri(snapshot), [], message,
packageRoot: packageRoot);
return;
} on IsolateSpawnException catch (error) {
log.fine("Couldn't load existing snapshot $snapshot:\n$error");
// Do nothing, we will regenerate the snapshot below.
}
} }
return withTempDir((dir) async { await withTempDir((dir) async {
var dartPath = path.join(dir, 'runInIsolate.dart'); var dartPath = path.join(dir, 'runInIsolate.dart');
writeTextFile(dartPath, code, dontLogContents: true); writeTextFile(dartPath, code, dontLogContents: true);
var port = new ReceivePort(); var port = new ReceivePort();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment