2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright(c) 2019 Intel Corporation
6 A Python program that updates and merges all available stable ABI versions into
7 one ABI version, while leaving experimental ABI exactly as it is. The intended
8 ABI version is supplied via command-line parameter. This script is to be called
9 from the devtools/update-abi.sh utility.
12 from __future__ import print_function
18 def __parse_map_file(f_in):
19 # match function name, followed by semicolon, followed by EOL, optionally
20 # with whitespace in between each item
21 func_line_regex = re.compile(r"\s*"
22 r"(?P<func>[a-zA-Z_0-9]+)"
27 # match section name, followed by opening bracked, followed by EOL,
28 # optionally with whitespace in between each item
29 section_begin_regex = re.compile(r"\s*"
30 r"(?P<version>[a-zA-Z0-9_\.]+)"
35 # match closing bracket, optionally followed by section name (for when we
36 # inherit from another ABI version), followed by semicolon, followed by
37 # EOL, optionally with whitespace in between each item
38 section_end_regex = re.compile(r"\s*"
41 r"(?P<parent>[a-zA-Z0-9_\.]+)?"
47 # for stable ABI, we don't care about which version introduced which
48 # function, we just flatten the list. there are dupes in certain files, so
49 # use a set instead of a list
51 # copy experimental section as is
52 experimental_lines = []
53 in_experimental = False
56 # gather all functions
59 line = line.strip('\n').strip()
61 # is this an end of section?
62 match = section_end_regex.match(line)
64 # whatever section this was, it's not active any more
65 in_experimental = False
68 # if we're in the middle of experimental section, we need to copy
69 # the section verbatim, so just add the line
71 experimental_lines += [line]
78 # is this a beginning of a new section?
79 match = section_begin_regex.match(line)
81 cur_section = match.group("version")
83 in_experimental = cur_section == "EXPERIMENTAL"
84 if not in_experimental:
89 match = func_line_regex.match(line)
91 stable_lines.add(match.group("func"))
93 return has_stable, stable_lines, experimental_lines
96 def __generate_stable_abi(f_out, abi_version, lines):
97 # print ABI version header
98 print("DPDK_{} {{".format(abi_version), file=f_out)
100 # print global section if it exists
102 print("\tglobal:", file=f_out)
106 # print all stable lines, alphabetically sorted
107 for line in sorted(lines):
108 print("\t{};".format(line), file=f_out)
113 # print local section
114 print("\tlocal: *;", file=f_out)
117 print("};", file=f_out)
120 def __generate_experimental_abi(f_out, lines):
121 # start experimental section
122 print("EXPERIMENTAL {", file=f_out)
124 # print all experimental lines as they were
126 # don't print empty whitespace
128 print("", file=f_out)
130 print("\t{}".format(line), file=f_out)
133 print("};", file=f_out)
137 arg_parser = argparse.ArgumentParser(
138 description='Merge versions in linker version script.')
140 arg_parser.add_argument("map_file", type=str,
141 help='path to linker version script file '
142 '(pattern: *version.map)')
143 arg_parser.add_argument("abi_version", type=str,
144 help='target ABI version (pattern: MAJOR.MINOR)')
146 parsed = arg_parser.parse_args()
148 if not parsed.map_file.endswith('version.map'):
149 print("Invalid input file: {}".format(parsed.map_file),
151 arg_parser.print_help()
154 if not re.match(r"\d{1,2}\.\d{1,2}", parsed.abi_version):
155 print("Invalid ABI version: {}".format(parsed.abi_version),
157 arg_parser.print_help()
160 with open(parsed.map_file) as f_in:
161 has_stable, stable_lines, experimental_lines = __parse_map_file(f_in)
163 with open(parsed.map_file, 'w') as f_out:
164 need_newline = has_stable and experimental_lines
166 __generate_stable_abi(f_out, parsed.abi_version, stable_lines)
168 # separate sections with a newline
170 if experimental_lines:
171 __generate_experimental_abi(f_out, experimental_lines)
174 if __name__ == "__main__":