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): | |
Nico
2014/05/05 22:08:10
docstring
| |
16 jar_path = os.path.abspath(jar_path) | |
17 | |
18 # 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 # options.classes_dir so the .class file paths in the jar are correct. | |
21 jar_cwd = classes_dir | |
22 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 | |
25 record_path = '%s.md5.stamp' % jar_path | |
26 md5_check.CallAndRecordIfStale( | |
27 lambda: build_utils.CheckOutput(jar_cmd, cwd=jar_cwd), | |
28 record_path=record_path, | |
29 input_paths=class_files, | |
30 input_strings=jar_cmd, | |
31 force=not os.path.exists(jar_path), | |
32 ) | |
33 | |
34 build_utils.Touch(jar_path, fail_if_missing=True) | |
35 | |
36 | |
Nico
2014/05/05 22:08:10
style guide says: 2 empty lines between toplevel t
| |
15 | 37 |
16 def DoJar(options): | 38 def DoJar(options): |
17 class_files = build_utils.FindInDirectory(options.classes_dir, '*.class') | 39 class_files = build_utils.FindInDirectory(options.classes_dir, '*.class') |
18 for exclude in build_utils.ParseGypList(options.excluded_classes): | 40 for exclude in build_utils.ParseGypList(options.excluded_classes): |
19 class_files = filter( | 41 class_files = filter( |
20 lambda f: not fnmatch.fnmatch(f, exclude), class_files) | 42 lambda f: not fnmatch.fnmatch(f, exclude), class_files) |
21 | 43 |
22 jar_path = os.path.abspath(options.jar_path) | 44 Jar(class_files, options.classes_dir, options.jar_path) |
23 | 45 |
24 # The paths of the files in the jar will be the same as they are passed in to | |
25 # the command. Because of this, the command should be run in | |
26 # options.classes_dir so the .class file paths in the jar are correct. | |
27 jar_cwd = options.classes_dir | |
28 class_files_rel = [os.path.relpath(f, jar_cwd) for f in class_files] | |
29 jar_cmd = ['jar', 'cf0', jar_path] + class_files_rel | |
30 | 46 |
31 record_path = '%s.md5.stamp' % options.jar_path | |
32 md5_check.CallAndRecordIfStale( | |
33 lambda: build_utils.CheckOutput(jar_cmd, cwd=jar_cwd), | |
34 record_path=record_path, | |
35 input_paths=class_files, | |
36 input_strings=jar_cmd) | |
37 | |
38 build_utils.Touch(options.jar_path) | |
39 | 47 |
40 | 48 |
41 def main(): | 49 def main(): |
42 parser = optparse.OptionParser() | 50 parser = optparse.OptionParser() |
43 parser.add_option('--classes-dir', help='Directory containing .class files.') | 51 parser.add_option('--classes-dir', help='Directory containing .class files.') |
44 parser.add_option('--jar-path', help='Jar output path.') | 52 parser.add_option('--jar-path', help='Jar output path.') |
45 parser.add_option('--excluded-classes', | 53 parser.add_option('--excluded-classes', |
46 help='List of .class file patterns to exclude from the jar.') | 54 help='List of .class file patterns to exclude from the jar.') |
47 parser.add_option('--stamp', help='Path to touch on success.') | 55 parser.add_option('--stamp', help='Path to touch on success.') |
48 | 56 |
49 options, _ = parser.parse_args() | 57 options, _ = parser.parse_args() |
50 | 58 |
51 DoJar(options) | 59 DoJar(options) |
52 | 60 |
53 if options.stamp: | 61 if options.stamp: |
54 build_utils.Touch(options.stamp) | 62 build_utils.Touch(options.stamp) |
55 | 63 |
56 | 64 |
57 if __name__ == '__main__': | 65 if __name__ == '__main__': |
58 sys.exit(main()) | 66 sys.exit(main()) |
59 | 67 |
OLD | NEW |