Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 1 | # 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 | |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 18 | This script reads the file list containing the input files, creates |
| 19 | symbolic links with a path-hash appended to their original name (foo.o |
| 20 | becomes foo_{md5sum}.o), then saves the list of symbolic links to another |
| 21 | file. |
Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 22 | |
jmmv | f876830 | 2019-01-28 06:10:36 -0800 | [diff] [blame] | 23 | The symbolic links are created into the given temporary directory. There is |
| 24 | no guarantee that we can write to the directory that contained the inputs to |
| 25 | this script. |
| 26 | |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 27 | This is to circumvent a bug in the original libtool that arises when two |
| 28 | input files have the same base name (even if they are in different |
| 29 | directories). |
Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 30 | """ |
| 31 | |
| 32 | import hashlib |
| 33 | import os |
| 34 | import sys |
| 35 | |
| 36 | |
| 37 | def main(): |
jmmv | f876830 | 2019-01-28 06:10:36 -0800 | [diff] [blame] | 38 | outdir = sys.argv[3] |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 39 | 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') |
jmmv | f876830 | 2019-01-28 06:10:36 -0800 | [diff] [blame] | 43 | |
| 44 | hashed_obj_file_name = '%s_%s.o' % ( |
| 45 | os.path.basename(os.path.splitext(obj_file_path)[0]), |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 46 | hashlib.md5(obj_file_path.encode('utf-8')).hexdigest()) |
jmmv | f876830 | 2019-01-28 06:10:36 -0800 | [diff] [blame] | 47 | hashed_obj_file_path = os.path.join(outdir, hashed_obj_file_name) |
Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 48 | |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 49 | hashed_obj_file_list.write(hashed_obj_file_path + '\n') |
Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 50 | |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 51 | # Create symlink only if the symlink doesn't exist. |
| 52 | if not os.path.exists(hashed_obj_file_path): |
jmmv | f876830 | 2019-01-28 06:10:36 -0800 | [diff] [blame] | 53 | os.symlink(os.path.abspath(obj_file_path), |
laszlocsomor | f11c6bc | 2018-07-05 01:58:06 -0700 | [diff] [blame] | 54 | hashed_obj_file_path) |
Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 55 | |
Googler | 48859c1 | 2016-09-23 17:16:37 +0000 | [diff] [blame] | 56 | |
| 57 | if __name__ == '__main__': |
| 58 | main() |