Bug 1728955: part 4) Add logging for some cases when `nsBaseClipboard::SetData` fails...
[gecko.git] / config / createprecomplete.py
blobdda4efcdf8e194c8fdd656837fa5f1e67a1c8101
1 # Any copyright is dedicated to the Public Domain.
2 # http://creativecommons.org/publicdomain/zero/1.0/
4 # Creates the precomplete file containing the remove and rmdir application
5 # update instructions which is used to remove files and directories that are no
6 # longer present in a complete update. The current working directory is used for
7 # the location to enumerate and to create the precomplete file.
9 from __future__ import absolute_import
10 from __future__ import unicode_literals
12 import os
13 import io
16 def get_build_entries(root_path):
17 """Iterates through the root_path, creating a list for each file and
18 directory. Excludes any file paths ending with channel-prefs.js.
19 """
20 rel_file_path_set = set()
21 rel_dir_path_set = set()
22 for root, dirs, files in os.walk(root_path):
23 for file_name in files:
24 parent_dir_rel_path = root[len(root_path) + 1 :]
25 rel_path_file = os.path.join(parent_dir_rel_path, file_name)
26 rel_path_file = rel_path_file.replace("\\", "/")
27 if not (
28 rel_path_file.endswith("channel-prefs.js")
29 or rel_path_file.endswith("update-settings.ini")
30 or rel_path_file.find("distribution/") != -1
32 rel_file_path_set.add(rel_path_file)
34 for dir_name in dirs:
35 parent_dir_rel_path = root[len(root_path) + 1 :]
36 rel_path_dir = os.path.join(parent_dir_rel_path, dir_name)
37 rel_path_dir = rel_path_dir.replace("\\", "/") + "/"
38 if rel_path_dir.find("distribution/") == -1:
39 rel_dir_path_set.add(rel_path_dir)
41 rel_file_path_list = list(rel_file_path_set)
42 rel_file_path_list.sort(reverse=True)
43 rel_dir_path_list = list(rel_dir_path_set)
44 rel_dir_path_list.sort(reverse=True)
46 return rel_file_path_list, rel_dir_path_list
49 def generate_precomplete(root_path):
50 """Creates the precomplete file containing the remove and rmdir
51 application update instructions. The given directory is used
52 for the location to enumerate and to create the precomplete file.
53 """
54 rel_path_precomplete = "precomplete"
55 # If inside a Mac bundle use the root of the bundle for the path.
56 if os.path.basename(root_path) == "Resources":
57 root_path = os.path.abspath(os.path.join(root_path, "../../"))
58 rel_path_precomplete = "Contents/Resources/precomplete"
60 precomplete_file_path = os.path.join(root_path, rel_path_precomplete)
61 # Open the file so it exists before building the list of files and open it
62 # in binary mode to prevent OS specific line endings.
63 precomplete_file = io.open(precomplete_file_path, mode="wt", newline="\n")
64 rel_file_path_list, rel_dir_path_list = get_build_entries(root_path)
65 for rel_file_path in rel_file_path_list:
66 precomplete_file.write('remove "' + rel_file_path + '"\n')
68 for rel_dir_path in rel_dir_path_list:
69 precomplete_file.write('rmdir "' + rel_dir_path + '"\n')
71 precomplete_file.close()
74 if __name__ == "__main__":
75 generate_precomplete(os.getcwd())