Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / scripts / optimize_png_images.py
1 #!/usr/bin/env python
2 # Copyright (c) 2014 Google Inc. All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7 #
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.
17 #
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.
29
30 import devtools_file_hashes
31 import glob
32 import hashlib
33 import os
34 import os.path
35 import re
36 import subprocess
37
38 try:
39     import json
40 except ImportError:
41     import simplejson as json
42
43 scripts_path = os.path.dirname(os.path.abspath(__file__))
44 devtools_path = os.path.dirname(scripts_path)
45 blink_source_path = os.path.dirname(devtools_path)
46 blink_path = os.path.dirname(blink_source_path)
47 chromium_src_path = os.path.dirname(os.path.dirname(blink_path))
48 devtools_frontend_path = devtools_path + "/front_end"
49 images_path = devtools_frontend_path + "/Images"
50 image_sources_path = images_path + "/src"
51 hashes_file_name = "optimize_png.hashes"
52 hashes_file_path = image_sources_path + "/" + hashes_file_name
53
54 file_names = os.listdir(image_sources_path)
55 svg_file_paths = [image_sources_path + "/" + file_name for file_name in file_names if file_name.endswith(".svg")]
56 svg_file_paths_to_optimize = devtools_file_hashes.files_with_invalid_hashes(hashes_file_path, svg_file_paths)
57 svg_file_names = [re.sub(".svg$", "", re.sub(".*/", "", file_path)) for file_path in svg_file_paths_to_optimize]
58
59 optimize_script_path = "tools/resources/optimize-png-files.sh"
60
61
62 def optimize_png(file_name):
63     png_full_path = images_path + "/" + file_name + ".png"
64     optimize_command = "%s -o2 %s" % (optimize_script_path, png_full_path)
65     proc = subprocess.Popen(optimize_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, cwd=chromium_src_path)
66     return proc
67
68 processes = {}
69 for file_name in svg_file_names:
70     name = re.sub(".svg$", "", file_name)
71     name2x = name + "_2x"
72     processes[name] = optimize_png(name)
73     processes[name2x] = optimize_png(name2x)
74
75 for file_name, proc in processes.items():
76     (optimize_out, _) = proc.communicate()
77     print("Optimization of %s finished: %s" % (file_name, optimize_out))
78
79 devtools_file_hashes.update_file_hashes(hashes_file_path, svg_file_paths)