OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Extracts a single file from a CAB archive.""" | 6 """Extracts a single file from a CAB archive.""" |
7 | 7 |
8 import os | 8 import os |
9 import shutil | 9 import shutil |
10 import subprocess | 10 import subprocess |
11 import sys | 11 import sys |
12 import tempfile | 12 import tempfile |
13 | 13 |
| 14 def run_quiet(*args): |
| 15 """Run 'expand' supressing noisy output. Returns returncode from process.""" |
| 16 popen = subprocess.Popen(args, stdout=subprocess.PIPE) |
| 17 out, _ = popen.communicate() |
| 18 if popen.returncode: |
| 19 # expand emits errors to stdout, so if we fail, then print that out. |
| 20 print out |
| 21 return popen.returncode |
14 | 22 |
15 def main(): | 23 def main(): |
16 if len(sys.argv) != 4: | 24 if len(sys.argv) != 4: |
17 print 'Usage: extract_from_cab.py cab_path archived_file output_dir' | 25 print 'Usage: extract_from_cab.py cab_path archived_file output_dir' |
18 return 1 | 26 return 1 |
19 | 27 |
20 [cab_path, archived_file, output_dir] = sys.argv[1:] | 28 [cab_path, archived_file, output_dir] = sys.argv[1:] |
21 | 29 |
22 # Expand.exe does its work in a fixed-named temporary directory created within | 30 # Expand.exe does its work in a fixed-named temporary directory created within |
23 # the given output directory. This is a problem for concurrent extractions, so | 31 # the given output directory. This is a problem for concurrent extractions, so |
24 # create a unique temp dir within the desired output directory to work around | 32 # create a unique temp dir within the desired output directory to work around |
25 # this limitation. | 33 # this limitation. |
26 temp_dir = tempfile.mkdtemp(dir=output_dir) | 34 temp_dir = tempfile.mkdtemp(dir=output_dir) |
27 | 35 |
28 try: | 36 try: |
29 # Invoke the Windows expand utility to extract the file. | 37 # Invoke the Windows expand utility to extract the file. |
30 level = subprocess.call( | 38 level = run_quiet('expand', cab_path, '-F:' + archived_file, temp_dir) |
31 ['expand', cab_path, '-F:' + archived_file, temp_dir]) | |
32 if level == 0: | 39 if level == 0: |
33 # Move the output file into place, preserving expand.exe's behavior of | 40 # Move the output file into place, preserving expand.exe's behavior of |
34 # paving over any preexisting file. | 41 # paving over any preexisting file. |
35 output_file = os.path.join(output_dir, archived_file) | 42 output_file = os.path.join(output_dir, archived_file) |
36 try: | 43 try: |
37 os.remove(output_file) | 44 os.remove(output_file) |
38 except OSError: | 45 except OSError: |
39 pass | 46 pass |
40 os.rename(os.path.join(temp_dir, archived_file), output_file) | 47 os.rename(os.path.join(temp_dir, archived_file), output_file) |
41 finally: | 48 finally: |
42 shutil.rmtree(temp_dir, True) | 49 shutil.rmtree(temp_dir, True) |
43 | 50 |
44 if level != 0: | 51 if level != 0: |
45 return level | 52 return level |
46 | 53 |
47 # The expand utility preserves the modification date and time of the archived | 54 # The expand utility preserves the modification date and time of the archived |
48 # file. Touch the extracted file. This helps build systems that compare the | 55 # file. Touch the extracted file. This helps build systems that compare the |
49 # modification times of input and output files to determine whether to do an | 56 # modification times of input and output files to determine whether to do an |
50 # action. | 57 # action. |
51 os.utime(os.path.join(output_dir, archived_file), None) | 58 os.utime(os.path.join(output_dir, archived_file), None) |
52 return 0 | 59 return 0 |
53 | 60 |
54 | 61 |
55 if __name__ == '__main__': | 62 if __name__ == '__main__': |
56 sys.exit(main()) | 63 sys.exit(main()) |
OLD | NEW |