3
# (C) Copyright 2015, NVIDIA CORPORATION.
6
# Permission is hereby granted, free of charge, to any person obtaining a
7
# copy of this software and associated documentation files (the "Software"),
8
# to deal in the Software without restriction, including without limitation
9
# on the rights to use, copy, modify, merge, publish, distribute, sub
10
# license, and/or sell copies of the Software, and to permit persons to whom
11
# the Software is furnished to do so, subject to the following conditions:
13
# The above copyright notice and this permission notice (including the next
14
# paragraph) shall be included in all copies or substantial portions of the
17
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20
# IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26
# Kyle Brenneman <kbrenneman@nvidia.com>
31
import xml.etree.ElementTree as etree
34
GLAPI = os.path.join(os.path.dirname(__file__), "..", "glapi", "gen")
35
sys.path.insert(0, GLAPI)
38
MAPI_TABLE_NUM_DYNAMIC = 4096
40
_LIBRARY_FEATURE_NAMES = {
41
# libGL and libGLdiapatch both include every function.
44
"opengl" : frozenset(( "GL_VERSION_1_0", "GL_VERSION_1_1",
45
"GL_VERSION_1_2", "GL_VERSION_1_3", "GL_VERSION_1_4", "GL_VERSION_1_5",
46
"GL_VERSION_2_0", "GL_VERSION_2_1", "GL_VERSION_3_0", "GL_VERSION_3_1",
47
"GL_VERSION_3_2", "GL_VERSION_3_3", "GL_VERSION_4_0", "GL_VERSION_4_1",
48
"GL_VERSION_4_2", "GL_VERSION_4_3", "GL_VERSION_4_4", "GL_VERSION_4_5",
50
"glesv1" : frozenset(("GL_VERSION_ES_CM_1_0", "GL_OES_point_size_array")),
51
"glesv2" : frozenset(("GL_ES_VERSION_2_0", "GL_ES_VERSION_3_0",
52
"GL_ES_VERSION_3_1", "GL_ES_VERSION_3_2",
56
def getFunctions(xmlFiles):
58
Reads an XML file and returns all of the functions defined in it.
60
xmlFile should be the path to Khronos's gl.xml file. The return value is a
61
sequence of FunctionDesc objects, ordered by slot number.
63
roots = [ etree.parse(xmlFile).getroot() for xmlFile in xmlFiles ]
64
return getFunctionsFromRoots(roots)
66
def getFunctionsFromRoots(roots):
69
for func in _getFunctionList(root):
70
functions[func.name] = func
71
functions = functions.values()
73
# Sort the function list by name.
74
functions = sorted(functions, key=lambda f: f.name)
76
# Lookup for fixed offset/slot functions and use it if available.
77
# Assign a slot number to each function. This isn't strictly necessary,
78
# since you can just look at the index in the list, but it makes it easier
79
# to include the slot when formatting output.
82
for i in range(len(functions)):
83
name = functions[i].name[2:]
85
if name in static_data.offsets:
86
functions[i] = functions[i]._replace(slot=static_data.offsets[name])
87
elif not name.endswith("ARB") and name + "ARB" in static_data.offsets:
88
functions[i] = functions[i]._replace(slot=static_data.offsets[name + "ARB"])
89
elif not name.endswith("EXT") and name + "EXT" in static_data.offsets:
90
functions[i] = functions[i]._replace(slot=static_data.offsets[name + "EXT"])
92
functions[i] = functions[i]._replace(slot=next_slot)
97
def getExportNamesFromRoots(target, roots):
99
Goes through the <feature> tags from gl.xml and returns a set of OpenGL
100
functions that a library should export.
102
target should be one of "gl", "gldispatch", "opengl", "glesv1", or
105
featureNames = _LIBRARY_FEATURE_NAMES[target]
106
if featureNames is None:
107
return set(func.name for func in getFunctionsFromRoots(roots))
112
for featElem in root.findall("feature"):
113
if featElem.get("name") in featureNames:
114
features.append(featElem)
115
for featElem in root.findall("extensions/extension"):
116
if featElem.get("name") in featureNames:
117
features.append(featElem)
118
for featElem in features:
119
for commandElem in featElem.findall("require/command"):
120
names.add(commandElem.get("name"))
123
class FunctionArg(collections.namedtuple("FunctionArg", "type name")):
127
Returns a "TYPE NAME" string, suitable for a function prototype.
130
if not rv.endswith("*"):
135
class FunctionDesc(collections.namedtuple("FunctionDesc", "name rt args slot")):
138
Returns true if the function returns a value.
140
return (self.rt != "void")
145
Returns a string with the types and names of the arguments, as you
146
would use in a function declaration.
151
return ", ".join(arg.dec for arg in self.args)
156
Returns a string with the names of the arguments, as you would use in a
159
return ", ".join(arg.name for arg in self.args)
163
assert self.name.startswith("gl")
166
def _getFunctionList(root):
167
for elem in root.findall("commands/command"):
168
yield _parseCommandElem(elem)
170
def _parseCommandElem(elem):
171
protoElem = elem.find("proto")
172
(rt, name) = _parseProtoElem(protoElem)
175
for ch in elem.findall("param"):
176
# <param> tags have the same format as a <proto> tag.
177
args.append(FunctionArg(*_parseProtoElem(ch)))
178
func = FunctionDesc(name, rt, tuple(args), slot=None)
182
def _parseProtoElem(elem):
183
# If I just remove the tags and string the text together, I'll get valid C code.
184
text = _flattenText(elem)
186
m = re.match(r"^(.+)\b(\w+)(?:\s*\[\s*(\d*)\s*\])?$", text, re.S)
188
typename = _fixupTypeName(m.group(1))
191
# HACK: glPathGlyphIndexRangeNV defines an argument like this:
192
# GLuint baseAndCount[2]
193
# Convert it to a pointer and hope for the best.
195
return (typename, name)
197
raise ValueError("Can't parse element %r -> %r" % (elem, text))
199
def _flattenText(elem):
201
Returns the text in an element and all child elements, with the tags
205
if elem.text is not None:
208
text += _flattenText(ch)
209
if ch.tail is not None:
213
def _fixupTypeName(typeName):
215
Converts a typename into a more consistent format.
218
rv = typeName.strip()
220
# Replace "GLvoid" with just plain "void".
221
rv = re.sub(r"\bGLvoid\b", "void", rv)
223
# Remove the vendor suffixes from types that have a suffix-less version.
224
rv = re.sub(r"\b(GLhalf|GLintptr|GLsizeiptr|GLint64|GLuint64)(?:ARB|EXT|NV|ATI)\b", r"\1", rv)
226
rv = re.sub(r"\bGLDEBUGPROCKHR\b", "GLDEBUGPROC", rv)
228
# Clear out any leading and trailing whitespace.
231
# Remove any whitespace before a '*'
232
rv = re.sub(r"\s+\*", r"*", rv)
234
# Change "foo*" to "foo *"
235
rv = re.sub(r"([^\*])\*", r"\1 *", rv)
237
# Condense all whitespace into a single space.
238
rv = re.sub(r"\s+", " ", rv)