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.
13 def get_build_entries(root_path
):
14 """Iterates through the root_path, creating a list for each file and
15 directory. Excludes any file paths ending with channel-prefs.js.
17 rel_file_path_set
= set()
18 rel_dir_path_set
= set()
19 for root
, dirs
, files
in os
.walk(root_path
):
20 for file_name
in files
:
21 parent_dir_rel_path
= root
[len(root_path
) + 1 :]
22 rel_path_file
= os
.path
.join(parent_dir_rel_path
, file_name
)
23 rel_path_file
= rel_path_file
.replace("\\", "/")
25 rel_path_file
.endswith("channel-prefs.js")
26 or rel_path_file
.endswith("update-settings.ini")
27 or rel_path_file
.find("distribution/") != -1
29 rel_file_path_set
.add(rel_path_file
)
32 parent_dir_rel_path
= root
[len(root_path
) + 1 :]
33 rel_path_dir
= os
.path
.join(parent_dir_rel_path
, dir_name
)
34 rel_path_dir
= rel_path_dir
.replace("\\", "/") + "/"
35 if rel_path_dir
.find("distribution/") == -1:
36 rel_dir_path_set
.add(rel_path_dir
)
38 rel_file_path_list
= list(rel_file_path_set
)
39 rel_file_path_list
.sort(reverse
=True)
40 rel_dir_path_list
= list(rel_dir_path_set
)
41 rel_dir_path_list
.sort(reverse
=True)
43 return rel_file_path_list
, rel_dir_path_list
46 def generate_precomplete(root_path
):
47 """Creates the precomplete file containing the remove and rmdir
48 application update instructions. The given directory is used
49 for the location to enumerate and to create the precomplete file.
51 rel_path_precomplete
= "precomplete"
52 # If inside a Mac bundle use the root of the bundle for the path.
53 if os
.path
.basename(root_path
) == "Resources":
54 root_path
= os
.path
.abspath(os
.path
.join(root_path
, "../../"))
55 rel_path_precomplete
= "Contents/Resources/precomplete"
57 precomplete_file_path
= os
.path
.join(root_path
, rel_path_precomplete
)
58 # Open the file so it exists before building the list of files and open it
59 # in binary mode to prevent OS specific line endings.
60 precomplete_file
= io
.open(precomplete_file_path
, mode
="wt", newline
="\n")
61 rel_file_path_list
, rel_dir_path_list
= get_build_entries(root_path
)
62 for rel_file_path
in rel_file_path_list
:
63 precomplete_file
.write('remove "' + rel_file_path
+ '"\n')
65 for rel_dir_path
in rel_dir_path_list
:
66 precomplete_file
.write('rmdir "' + rel_dir_path
+ '"\n')
68 precomplete_file
.close()
71 if __name__
== "__main__":
72 generate_precomplete(os
.getcwd())