Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / scripts / optimize_png_images.py
bloba09d19ec3dde3ca618ef1a319de43bfe25994c99
1 #!/usr/bin/env python
2 # Copyright (c) 2014 Google Inc. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above
11 # copyright notice, this list of conditions and the following disclaimer
12 # in the documentation and/or other materials provided with the
13 # distribution.
14 # * Neither the name of Google Inc. nor the names of its
15 # contributors may be used to endorse or promote products derived from
16 # this software without specific prior written permission.
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 import devtools_file_hashes
31 import os
32 import os.path
33 import subprocess
34 import sys
36 try:
37 import json
38 except ImportError:
39 import simplejson as json
41 scripts_path = os.path.dirname(os.path.abspath(__file__))
42 devtools_path = os.path.dirname(scripts_path)
43 blink_source_path = os.path.dirname(devtools_path)
44 blink_path = os.path.dirname(blink_source_path)
45 chromium_src_path = os.path.dirname(os.path.dirname(blink_path))
46 devtools_frontend_path = os.path.join(devtools_path, "front_end")
47 images_path = os.path.join(devtools_frontend_path, "Images")
48 image_sources_path = os.path.join(images_path, "src")
49 hashes_file_name = "optimize_png.hashes"
50 hashes_file_path = os.path.join(image_sources_path, hashes_file_name)
52 file_names = os.listdir(image_sources_path)
53 svg_file_paths = [os.path.join(image_sources_path, file_name) for file_name in file_names if file_name.endswith(".svg")]
54 svg_file_paths_to_optimize = devtools_file_hashes.files_with_invalid_hashes(hashes_file_path, svg_file_paths)
55 svg_file_names = [os.path.basename(file_path) for file_path in svg_file_paths_to_optimize]
58 def check_installed(app_name):
59 proc = subprocess.Popen("which %s" % app_name, stdout=subprocess.PIPE, shell=True)
60 proc.communicate()
61 if proc.returncode != 0:
62 print "This script needs \"%s\" to be installed." % app_name
63 print "Run sudo gem install image_optim image_optim_pack"
64 sys.exit(1)
66 check_installed("image_optim")
68 def optimize_png(file_name):
69 png_full_path = os.path.join(images_path, file_name + ".png")
70 optimize_command = "image_optim %s" % png_full_path
71 proc = subprocess.Popen(optimize_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, cwd=chromium_src_path)
72 return proc
74 if len(svg_file_names):
75 print "%d unoptimized png files found." % len(svg_file_names)
76 else:
77 print "All png files are already optimized."
78 sys.exit()
80 processes = {}
81 for file_name in svg_file_names:
82 name = os.path.splitext(file_name)[0]
83 name2x = name + "_2x"
84 processes[name] = optimize_png(name)
85 processes[name2x] = optimize_png(name2x)
87 for file_name, proc in processes.items():
88 (optimize_out, _) = proc.communicate()
89 print("Optimization of %s finished: %s" % (file_name, optimize_out))
91 devtools_file_hashes.update_file_hashes(hashes_file_path, svg_file_paths)