OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2013 The Chromium Authors. All rights reserved. | 3 # Copyright 2013 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 import fnmatch | 7 import fnmatch |
8 import optparse | 8 import optparse |
9 import os | 9 import os |
10 import sys | 10 import sys |
11 | 11 |
12 from util import build_utils | 12 from util import build_utils |
13 from util import md5_check | 13 from util import md5_check |
14 | 14 |
15 def Jar(class_files, classes_dir, jar_path): | 15 |
16 def Jar(class_files, classes_dir, jar_path, manifest_file=None): | |
cjhopman
2014/09/15 22:27:36
I would like to actually get rid of jar.py. javac.
jbudorick
2014/09/16 02:50:40
This has to keep some manifest logic since javac.p
| |
16 jar_path = os.path.abspath(jar_path) | 17 jar_path = os.path.abspath(jar_path) |
17 | 18 |
18 # The paths of the files in the jar will be the same as they are passed in to | 19 # The paths of the files in the jar will be the same as they are passed in to |
19 # the command. Because of this, the command should be run in | 20 # the command. Because of this, the command should be run in |
20 # options.classes_dir so the .class file paths in the jar are correct. | 21 # options.classes_dir so the .class file paths in the jar are correct. |
21 jar_cwd = classes_dir | 22 jar_cwd = classes_dir |
22 class_files_rel = [os.path.relpath(f, jar_cwd) for f in class_files] | 23 class_files_rel = [os.path.relpath(f, jar_cwd) for f in class_files] |
23 jar_cmd = ['jar', 'cf0', jar_path] + class_files_rel | 24 jar_cmd = ['jar', 'cf0', jar_path] |
25 if manifest_file: | |
26 jar_cmd[1] += 'm' | |
27 jar_cmd.append(os.path.abspath(manifest_file)) | |
28 jar_cmd.extend(class_files_rel) | |
24 | 29 |
25 record_path = '%s.md5.stamp' % jar_path | 30 record_path = '%s.md5.stamp' % jar_path |
26 md5_check.CallAndRecordIfStale( | 31 md5_check.CallAndRecordIfStale( |
27 lambda: build_utils.CheckOutput(jar_cmd, cwd=jar_cwd), | 32 lambda: build_utils.CheckOutput(jar_cmd, cwd=jar_cwd), |
28 record_path=record_path, | 33 record_path=record_path, |
29 input_paths=class_files, | 34 input_paths=class_files, |
30 input_strings=jar_cmd, | 35 input_strings=jar_cmd, |
31 force=not os.path.exists(jar_path), | 36 force=not os.path.exists(jar_path), |
32 ) | 37 ) |
33 | 38 |
34 build_utils.Touch(jar_path, fail_if_missing=True) | 39 build_utils.Touch(jar_path, fail_if_missing=True) |
35 | 40 |
36 | 41 |
37 def JarDirectory(classes_dir, excluded_classes, jar_path): | 42 def JarDirectory(classes_dir, excluded_classes, jar_path, manifest_file=None): |
38 class_files = build_utils.FindInDirectory(classes_dir, '*.class') | 43 class_files = build_utils.FindInDirectory(classes_dir, '*.class') |
39 for exclude in excluded_classes: | 44 for exclude in excluded_classes: |
40 class_files = filter( | 45 class_files = filter( |
41 lambda f: not fnmatch.fnmatch(f, exclude), class_files) | 46 lambda f: not fnmatch.fnmatch(f, exclude), class_files) |
42 | 47 |
43 Jar(class_files, classes_dir, jar_path) | 48 Jar(class_files, classes_dir, jar_path, manifest_file=manifest_file) |
49 | |
44 | 50 |
45 def main(): | 51 def main(): |
46 parser = optparse.OptionParser() | 52 parser = optparse.OptionParser() |
47 parser.add_option('--classes-dir', help='Directory containing .class files.') | 53 parser.add_option('--classes-dir', help='Directory containing .class files.') |
48 parser.add_option('--jar-path', help='Jar output path.') | 54 parser.add_option('--jar-path', help='Jar output path.') |
49 parser.add_option('--excluded-classes', | 55 parser.add_option('--excluded-classes', |
50 help='List of .class file patterns to exclude from the jar.') | 56 help='List of .class file patterns to exclude from the jar.') |
51 parser.add_option('--stamp', help='Path to touch on success.') | 57 parser.add_option('--stamp', help='Path to touch on success.') |
58 parser.add_option('--manifest-file', help='The manifest file.') | |
52 | 59 |
53 options, _ = parser.parse_args() | 60 options, _ = parser.parse_args() |
54 | 61 |
62 if options.excluded_classes: | |
63 excluded_classes = build_utils.ParseGypList(options.excluded_classes) | |
64 else: | |
65 excluded_classes = [] | |
55 JarDirectory(options.classes_dir, | 66 JarDirectory(options.classes_dir, |
56 build_utils.ParseGypList(options.excluded_classes), | 67 excluded_classes, |
57 options.jar_path) | 68 options.jar_path, |
69 manifest_file=options.manifest_file) | |
58 | 70 |
59 if options.stamp: | 71 if options.stamp: |
60 build_utils.Touch(options.stamp) | 72 build_utils.Touch(options.stamp) |
61 | 73 |
62 | 74 |
63 if __name__ == '__main__': | 75 if __name__ == '__main__': |
64 sys.exit(main()) | 76 sys.exit(main()) |
65 | 77 |
OLD | NEW |