| 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 import 'dart:io'; | 5 import 'dart:io'; |
| 6 | 6 |
| 7 Future<String> getVersion(var rootPath) { | 7 Future<String> getVersion(var rootPath) { |
| 8 var suffix = Platform.operatingSystem == 'windows' ? '.exe' : ''; | 8 var suffix = Platform.operatingSystem == 'windows' ? '.exe' : ''; |
| 9 var printVersionScript = rootPath.resolve("tools/print_version.py"); | 9 var printVersionScript = rootPath.resolve("tools/print_version.py"); |
| 10 return Process.run("python$suffix", | 10 return Process |
| 11 [printVersionScript.toFilePath()]).then((result) { | 11 .run("python$suffix", [printVersionScript.toFilePath()]).then((result) { |
| 12 if (result.exitCode != 0) { | 12 if (result.exitCode != 0) { |
| 13 throw "Could not generate version"; | 13 throw "Could not generate version"; |
| 14 } | 14 } |
| 15 return result.stdout.trim(); | 15 return result.stdout.trim(); |
| 16 }); | 16 }); |
| 17 } | 17 } |
| 18 | 18 |
| 19 Future<String> getSnapshotGenerationFile(var args, var rootPath) { | 19 Future<String> getSnapshotGenerationFile(var args, var rootPath) { |
| 20 var dart2js = rootPath.resolve(args["dart2js_main"]); | 20 var dart2js = rootPath.resolve(args["dart2js_main"]); |
| 21 return getVersion(rootPath).then((version) { | 21 return getVersion(rootPath).then((version) { |
| 22 var snapshotGenerationText = | 22 var snapshotGenerationText = """ |
| 23 """ | |
| 24 import '${dart2js.toFilePath(windows: false)}' as dart2jsMain; | 23 import '${dart2js.toFilePath(windows: false)}' as dart2jsMain; |
| 25 import 'dart:io'; | 24 import 'dart:io'; |
| 26 | 25 |
| 27 void main(List<String> arguments) { | 26 void main(List<String> arguments) { |
| 28 if (arguments.length < 1) throw "No tool given as argument"; | 27 if (arguments.length < 1) throw "No tool given as argument"; |
| 29 String tool = arguments[0]; | 28 String tool = arguments[0]; |
| 30 if (tool == "dart2js") { | 29 if (tool == "dart2js") { |
| 31 dart2jsMain.BUILD_ID = "$version"; | 30 dart2jsMain.BUILD_ID = "$version"; |
| 32 dart2jsMain.main(arguments.skip(1).toList()); | 31 dart2jsMain.main(arguments.skip(1).toList()); |
| 33 } | 32 } |
| 34 } | 33 } |
| 35 | 34 |
| 36 """; | 35 """; |
| 37 return snapshotGenerationText; | 36 return snapshotGenerationText; |
| 38 }); | 37 }); |
| 39 } | 38 } |
| 40 | 39 |
| 41 Future<String> getDart2jsSnapshotGenerationFile(var args, var rootPath) { | 40 Future<String> getDart2jsSnapshotGenerationFile(var args, var rootPath) { |
| 42 var dart2js = rootPath.resolve(args["dart2js_main"]); | 41 var dart2js = rootPath.resolve(args["dart2js_main"]); |
| 43 return getVersion(rootPath).then((version) { | 42 return getVersion(rootPath).then((version) { |
| 44 var snapshotGenerationText = | 43 var snapshotGenerationText = """ |
| 45 """ | |
| 46 import '${dart2js.toFilePath(windows: false)}' as dart2jsMain; | 44 import '${dart2js.toFilePath(windows: false)}' as dart2jsMain; |
| 47 | 45 |
| 48 void main(List<String> arguments) { | 46 void main(List<String> arguments) { |
| 49 dart2jsMain.BUILD_ID = "$version"; | 47 dart2jsMain.BUILD_ID = "$version"; |
| 50 dart2jsMain.main(arguments); | 48 dart2jsMain.main(arguments); |
| 51 } | 49 } |
| 52 """; | 50 """; |
| 53 return snapshotGenerationText; | 51 return snapshotGenerationText; |
| 54 }); | 52 }); |
| 55 } | 53 } |
| 56 | 54 |
| 57 void writeSnapshotFile(var path, var content) { | 55 void writeSnapshotFile(var path, var content) { |
| 58 File file = new File(path); | 56 File file = new File(path); |
| 59 var writer = file.openSync(mode: FileMode.WRITE); | 57 var writer = file.openSync(mode: FileMode.WRITE); |
| 60 writer.writeStringSync(content); | 58 writer.writeStringSync(content); |
| 61 writer.close(); | 59 writer.close(); |
| 62 } | 60 } |
| 63 | 61 |
| 64 /** | 62 /** |
| 65 * Takes the following arguments: | 63 * Takes the following arguments: |
| 66 * --output_dir=val The full path to the output_dir. | 64 * --output_dir=val The full path to the output_dir. |
| 67 * --dart2js_main=val The path to the dart2js main script relative to root. | 65 * --dart2js_main=val The path to the dart2js main script relative to root. |
| 68 */ | 66 */ |
| 69 void main(List<String> arguments) { | 67 void main(List<String> arguments) { |
| 70 var validArguments = ["--output_dir", "--dart2js_main"]; | 68 var validArguments = ["--output_dir", "--dart2js_main"]; |
| 71 var args = {}; | 69 var args = {}; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 86 getSnapshotGenerationFile(args, rootPath).then((result) { | 84 getSnapshotGenerationFile(args, rootPath).then((result) { |
| 87 var wrapper = "${args['output_dir']}/utils_wrapper.dart"; | 85 var wrapper = "${args['output_dir']}/utils_wrapper.dart"; |
| 88 writeSnapshotFile(wrapper, result); | 86 writeSnapshotFile(wrapper, result); |
| 89 }); | 87 }); |
| 90 | 88 |
| 91 getDart2jsSnapshotGenerationFile(args, rootPath).then((result) { | 89 getDart2jsSnapshotGenerationFile(args, rootPath).then((result) { |
| 92 var wrapper = "${args['output_dir']}/dart2js.dart"; | 90 var wrapper = "${args['output_dir']}/dart2js.dart"; |
| 93 writeSnapshotFile(wrapper, result); | 91 writeSnapshotFile(wrapper, result); |
| 94 }); | 92 }); |
| 95 } | 93 } |
| OLD | NEW |