vulkan: utils: handle hexadecimal values in registry
[mesa.git] / src / vulkan / util / gen_enum_to_str.py
1 # encoding=utf-8
2 # Copyright © 2017 Intel Corporation
3
4 # Permission is hereby granted, free of charge, to any person obtaining a copy
5 # of this software and associated documentation files (the "Software"), to deal
6 # in the Software without restriction, including without limitation the rights
7 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 # copies of the Software, and to permit persons to whom the Software is
9 # furnished to do so, subject to the following conditions:
10
11 # The above copyright notice and this permission notice shall be included in
12 # all copies or substantial portions of the Software.
13
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 # SOFTWARE.
21
22 """Create enum to string functions for vulkan using vk.xml."""
23
24 from __future__ import print_function
25 import argparse
26 import os
27 import textwrap
28 import xml.etree.cElementTree as et
29
30 from mako.template import Template
31
32 COPYRIGHT = textwrap.dedent(u"""\
33 * Copyright © 2017 Intel Corporation
34 *
35 * Permission is hereby granted, free of charge, to any person obtaining a copy
36 * of this software and associated documentation files (the "Software"), to deal
37 * in the Software without restriction, including without limitation the rights
38 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39 * copies of the Software, and to permit persons to whom the Software is
40 * furnished to do so, subject to the following conditions:
41 *
42 * The above copyright notice and this permission notice shall be included in
43 * all copies or substantial portions of the Software.
44 *
45 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
51 * SOFTWARE.""")
52
53 C_TEMPLATE = Template(textwrap.dedent(u"""\
54 /* Autogenerated file -- do not edit
55 * generated by ${file}
56 *
57 ${copyright}
58 */
59
60 #include <vulkan/vulkan.h>
61 #include <vulkan/vk_android_native_buffer.h>
62 #include "util/macros.h"
63 #include "vk_enum_to_str.h"
64
65 % for enum in enums:
66
67 const char *
68 vk_${enum.name[2:]}_to_str(${enum.name} input)
69 {
70 switch(input) {
71 % for v in sorted(enum.values.keys()):
72 % if enum.values[v] in FOREIGN_ENUM_VALUES:
73
74 #pragma GCC diagnostic push
75 #pragma GCC diagnostic ignored "-Wswitch"
76 % endif
77 case ${v}:
78 return "${enum.values[v]}";
79 % if enum.values[v] in FOREIGN_ENUM_VALUES:
80 #pragma GCC diagnostic pop
81
82 % endif
83 % endfor
84 default:
85 unreachable("Undefined enum value.");
86 }
87 }
88 %endfor"""),
89 output_encoding='utf-8')
90
91 H_TEMPLATE = Template(textwrap.dedent(u"""\
92 /* Autogenerated file -- do not edit
93 * generated by ${file}
94 *
95 ${copyright}
96 */
97
98 #ifndef MESA_VK_ENUM_TO_STR_H
99 #define MESA_VK_ENUM_TO_STR_H
100
101 #include <vulkan/vulkan.h>
102 #include <vulkan/vk_android_native_buffer.h>
103
104 % for ext in extensions:
105 #define _${ext.name}_number (${ext.number})
106 % endfor
107
108 % for enum in enums:
109 const char * vk_${enum.name[2:]}_to_str(${enum.name} input);
110 % endfor
111
112 #endif"""),
113 output_encoding='utf-8')
114
115 # These enums are defined outside their respective enum blocks, and thus cause
116 # -Wswitch warnings.
117 FOREIGN_ENUM_VALUES = [
118 "VK_STRUCTURE_TYPE_NATIVE_BUFFER_ANDROID",
119 ]
120
121
122 class NamedFactory(object):
123 """Factory for creating enums."""
124
125 def __init__(self, type_):
126 self.registry = {}
127 self.type = type_
128
129 def __call__(self, name, **kwargs):
130 try:
131 return self.registry[name]
132 except KeyError:
133 n = self.registry[name] = self.type(name, **kwargs)
134 return n
135
136 def get(self, name):
137 return self.registry.get(name)
138
139
140 class VkExtension(object):
141 """Simple struct-like class representing extensions"""
142
143 def __init__(self, name, number=None):
144 self.name = name
145 self.number = number
146
147
148 class VkEnum(object):
149 """Simple struct-like class representing a single Vulkan Enum."""
150
151 def __init__(self, name, values=None):
152 self.name = name
153 # Maps numbers to names
154 self.values = values or dict()
155 self.name_to_value = dict()
156
157 def add_value(self, name, value=None,
158 extnum=None, offset=None,
159 error=False):
160 assert value is not None or extnum is not None
161 if value is None:
162 value = 1000000000 + (extnum - 1) * 1000 + offset
163 if error:
164 value = -value
165
166 self.name_to_value[name] = value
167 if value not in self.values:
168 self.values[value] = name
169 elif len(self.values[value]) > len(name):
170 self.values[value] = name
171
172 def add_value_from_xml(self, elem, extension=None):
173 if 'value' in elem.attrib:
174 self.add_value(elem.attrib['name'],
175 value=int(elem.attrib['value'], base=0))
176 elif 'alias' in elem.attrib:
177 self.add_value(elem.attrib['name'],
178 value=self.name_to_value[elem.attrib['alias']])
179 else:
180 error = 'dir' in elem.attrib and elem.attrib['dir'] == '-'
181 if 'extnumber' in elem.attrib:
182 extnum = int(elem.attrib['extnumber'])
183 else:
184 extnum = extension.number
185 self.add_value(elem.attrib['name'],
186 extnum=extnum,
187 offset=int(elem.attrib['offset']),
188 error=error)
189
190
191 def parse_xml(enum_factory, ext_factory, filename):
192 """Parse the XML file. Accumulate results into the factories.
193
194 This parser is a memory efficient iterative XML parser that returns a list
195 of VkEnum objects.
196 """
197
198 xml = et.parse(filename)
199
200 for enum_type in xml.findall('./enums[@type="enum"]'):
201 enum = enum_factory(enum_type.attrib['name'])
202 for value in enum_type.findall('./enum'):
203 enum.add_value_from_xml(value)
204
205 for value in xml.findall('./feature/require/enum[@extends]'):
206 enum = enum_factory.get(value.attrib['extends'])
207 if enum is not None:
208 enum.add_value_from_xml(value)
209
210 for ext_elem in xml.findall('./extensions/extension[@supported="vulkan"]'):
211 extension = ext_factory(ext_elem.attrib['name'],
212 number=int(ext_elem.attrib['number']))
213
214 for value in ext_elem.findall('./require/enum[@extends]'):
215 enum = enum_factory.get(value.attrib['extends'])
216 if enum is not None:
217 enum.add_value_from_xml(value, extension)
218
219
220 def main():
221 parser = argparse.ArgumentParser()
222 parser.add_argument('--xml', required=True,
223 help='Vulkan API XML files',
224 action='append',
225 dest='xml_files')
226 parser.add_argument('--outdir',
227 help='Directory to put the generated files in',
228 required=True)
229
230 args = parser.parse_args()
231
232 enum_factory = NamedFactory(VkEnum)
233 ext_factory = NamedFactory(VkExtension)
234 for filename in args.xml_files:
235 parse_xml(enum_factory, ext_factory, filename)
236 enums = sorted(enum_factory.registry.values(), key=lambda e: e.name)
237 extensions = sorted(ext_factory.registry.values(), key=lambda e: e.name)
238
239 for template, file_ in [(C_TEMPLATE, os.path.join(args.outdir, 'vk_enum_to_str.c')),
240 (H_TEMPLATE, os.path.join(args.outdir, 'vk_enum_to_str.h'))]:
241 with open(file_, 'wb') as f:
242 f.write(template.render(
243 file=os.path.basename(__file__),
244 enums=enums,
245 extensions=extensions,
246 copyright=COPYRIGHT,
247 FOREIGN_ENUM_VALUES=FOREIGN_ENUM_VALUES))
248
249
250 if __name__ == '__main__':
251 main()