blob: bb326423edc24faeca66a1b050b4c41b76649328 [file] [log] [blame]
Googler48859c12016-09-23 17:16:37 +00001# pylint: disable=g-bad-file-header
2# Copyright 2016 The Bazel Authors. All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16"""Creates symbolic links for .o files with hashcode.
17
laszlocsomorf11c6bc2018-07-05 01:58:06 -070018This script reads the file list containing the input files, creates
19symbolic links with a path-hash appended to their original name (foo.o
20becomes foo_{md5sum}.o), then saves the list of symbolic links to another
21file.
Googler48859c12016-09-23 17:16:37 +000022
jmmvf8768302019-01-28 06:10:36 -080023The symbolic links are created into the given temporary directory. There is
24no guarantee that we can write to the directory that contained the inputs to
25this script.
26
laszlocsomorf11c6bc2018-07-05 01:58:06 -070027This is to circumvent a bug in the original libtool that arises when two
28input files have the same base name (even if they are in different
29directories).
Googler48859c12016-09-23 17:16:37 +000030"""
31
32import hashlib
33import os
34import sys
35
36
37def main():
jmmvf8768302019-01-28 06:10:36 -080038 outdir = sys.argv[3]
laszlocsomorf11c6bc2018-07-05 01:58:06 -070039 with open(sys.argv[1]) as obj_file_list:
40 with open(sys.argv[2], 'w') as hashed_obj_file_list:
41 for line in obj_file_list:
42 obj_file_path = line.rstrip('\n')
jmmvf8768302019-01-28 06:10:36 -080043
44 hashed_obj_file_name = '%s_%s.o' % (
45 os.path.basename(os.path.splitext(obj_file_path)[0]),
laszlocsomorf11c6bc2018-07-05 01:58:06 -070046 hashlib.md5(obj_file_path.encode('utf-8')).hexdigest())
jmmvf8768302019-01-28 06:10:36 -080047 hashed_obj_file_path = os.path.join(outdir, hashed_obj_file_name)
Googler48859c12016-09-23 17:16:37 +000048
laszlocsomorf11c6bc2018-07-05 01:58:06 -070049 hashed_obj_file_list.write(hashed_obj_file_path + '\n')
Googler48859c12016-09-23 17:16:37 +000050
laszlocsomorf11c6bc2018-07-05 01:58:06 -070051 # Create symlink only if the symlink doesn't exist.
52 if not os.path.exists(hashed_obj_file_path):
jmmvf8768302019-01-28 06:10:36 -080053 os.symlink(os.path.abspath(obj_file_path),
laszlocsomorf11c6bc2018-07-05 01:58:06 -070054 hashed_obj_file_path)
Googler48859c12016-09-23 17:16:37 +000055
Googler48859c12016-09-23 17:16:37 +000056
57if __name__ == '__main__':
58 main()