OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2014 The Chromium Authors. All rights reserved. | 3 # Copyright 2014 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 """Creates a simple script to run a java "binary". | 7 """Creates a simple script to run a java "binary". |
8 | 8 |
9 This creates a script that sets up the java command line for running a java | 9 This creates a script that sets up the java command line for running a java |
10 jar. This includes correctly setting the classpath and the main class. | 10 jar. This includes correctly setting the classpath and the main class. |
11 """ | 11 """ |
12 | 12 |
13 import optparse | 13 import optparse |
14 import os | 14 import os |
15 import sys | 15 import sys |
16 | 16 |
17 from util import build_utils | 17 from util import build_utils |
18 | 18 |
19 # The java command must be executed in the current directory because there may | 19 # The java command must be executed in the current directory because there may |
20 # be user-supplied paths in the args. The script receives the classpath relative | 20 # be user-supplied paths in the args. The script receives the classpath relative |
21 # to the directory that the script is written in and then, when run, must | 21 # to the directory that the script is written in and then, when run, must |
22 # recalculate the paths relative to the current directory. | 22 # recalculate the paths relative to the current directory. |
23 script_template = """\ | 23 script_template = """\ |
24 #!/usr/bin/env python | 24 #!/usr/bin/env python |
25 # | 25 # |
26 # This file was generated by build/android/gyp/create_java_binary_script.py | 26 # This file was generated by build/android/gyp/create_java_binary_script.py |
27 | 27 |
28 import argparse | |
28 import os | 29 import os |
29 import sys | 30 import sys |
30 | 31 |
31 self_dir = os.path.dirname(__file__) | 32 self_dir = os.path.dirname(__file__) |
32 classpath = [{classpath}] | 33 classpath = [{classpath}] |
33 bootclasspath = [{bootclasspath}] | 34 bootclasspath = [{bootclasspath}] |
34 extra_program_args = {extra_program_args} | 35 extra_program_args = {extra_program_args} |
35 if os.getcwd() != self_dir: | 36 if os.getcwd() != self_dir: |
36 offset = os.path.relpath(self_dir, os.getcwd()) | 37 offset = os.path.relpath(self_dir, os.getcwd()) |
37 classpath = [os.path.join(offset, p) for p in classpath] | 38 classpath = [os.path.join(offset, p) for p in classpath] |
38 bootclasspath = [os.path.join(offset, p) for p in bootclasspath] | 39 bootclasspath = [os.path.join(offset, p) for p in bootclasspath] |
39 java_cmd = ["java"] | 40 java_cmd = ["java"] |
41 # This is a simple argparser for jvm and jar arguments. | |
42 parser = argparse.ArgumentParser() | |
43 parser.add_argument('--jar-args') | |
44 parser.add_argument('--jvm-args') | |
45 | |
46 known_args, unknown_args = parser.parse_known_args(sys.argv[1:]) | |
47 if known_args.jvm_args: | |
48 jvm_arguments = known_args.jvm_args.strip('"').split() | |
49 java_cmd.extend(jvm_arguments) | |
50 if known_args.jar_args: | |
51 jar_arguments = known_args.jar_args.strip('"').split() | |
52 else: | |
mikecase (-- gone --)
2016/05/18 00:26:39
If jar_arguments is specified and there are unknow
| |
53 jar_arguments = unknown_args | |
54 | |
40 {noverify_flag} | 55 {noverify_flag} |
41 if bootclasspath: | 56 if bootclasspath: |
42 java_cmd.append("-Xbootclasspath/p:" + ":".join(bootclasspath)) | 57 java_cmd.append("-Xbootclasspath/p:" + ":".join(bootclasspath)) |
43 java_cmd.extend( | 58 java_cmd.extend( |
44 ["-classpath", ":".join(classpath), "-enableassertions", \"{main_class}\"]) | 59 ["-classpath", ":".join(classpath), "-enableassertions", \"{main_class}\"]) |
45 java_cmd.extend(extra_program_args) | 60 java_cmd.extend(extra_program_args) |
46 java_cmd.extend(sys.argv[1:]) | 61 java_cmd.extend(jar_arguments) |
47 os.execvp("java", java_cmd) | 62 os.execvp("java", java_cmd) |
48 """ | 63 """ |
49 | 64 |
50 def main(argv): | 65 def main(argv): |
51 argv = build_utils.ExpandFileArgs(argv) | 66 argv = build_utils.ExpandFileArgs(argv) |
52 parser = optparse.OptionParser() | 67 parser = optparse.OptionParser() |
53 build_utils.AddDepfileOption(parser) | 68 build_utils.AddDepfileOption(parser) |
54 parser.add_option('--output', help='Output path for executable script.') | 69 parser.add_option('--output', help='Output path for executable script.') |
55 parser.add_option('--jar-path', help='Path to the main jar.') | 70 parser.add_option('--jar-path', help='Path to the main jar.') |
56 parser.add_option('--main-class', | 71 parser.add_option('--main-class', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
93 os.chmod(options.output, 0750) | 108 os.chmod(options.output, 0750) |
94 | 109 |
95 if options.depfile: | 110 if options.depfile: |
96 build_utils.WriteDepfile( | 111 build_utils.WriteDepfile( |
97 options.depfile, | 112 options.depfile, |
98 build_utils.GetPythonDependencies()) | 113 build_utils.GetPythonDependencies()) |
99 | 114 |
100 | 115 |
101 if __name__ == '__main__': | 116 if __name__ == '__main__': |
102 sys.exit(main(sys.argv[1:])) | 117 sys.exit(main(sys.argv[1:])) |
OLD | NEW |