Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 1 | #!/usr/bin/python2 |
| 2 | |
Ian Romanick | 5f1f229 | 2005-01-07 02:39:09 +0000 | [diff] [blame] | 3 | # (C) Copyright IBM Corporation 2004, 2005 |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 4 | # All Rights Reserved. |
| 5 | # |
| 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: |
| 12 | # |
| 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 |
| 15 | # Software. |
| 16 | # |
| 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 |
| 23 | # IN THE SOFTWARE. |
| 24 | # |
| 25 | # Authors: |
| 26 | # Ian Romanick <idr@us.ibm.com> |
| 27 | |
| 28 | from xml.sax import saxutils |
| 29 | from xml.sax import make_parser |
| 30 | from xml.sax.handler import feature_namespaces |
| 31 | |
Brian Paul | 98fa2bf | 2004-10-28 21:11:02 +0000 | [diff] [blame] | 32 | import re |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 33 | |
Ian Romanick | 73b4c1b | 2005-04-14 23:00:34 +0000 | [diff] [blame^] | 34 | def is_attr_true( attrs, name ): |
| 35 | """Read a name value from an element's attributes. |
| 36 | |
| 37 | The value read from the attribute list must be either 'true' or |
| 38 | 'false'. If the value is 'false', zero will be returned. If the |
| 39 | value is 'true', non-zero will be returned. An exception will be |
| 40 | raised for any other value.""" |
| 41 | |
| 42 | value = attrs.get(name, "false") |
| 43 | if value == "true": |
| 44 | return 1 |
| 45 | elif value == "false": |
| 46 | return 0 |
| 47 | else: |
| 48 | raise RuntimeError('Invalid value "%s" for boolean "%s".' % (value, name)) |
| 49 | |
| 50 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 51 | class glItem: |
| 52 | """Generic class on which all other API entity types are based.""" |
| 53 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 54 | def __init__(self, tag_name, name, context): |
| 55 | self.name = name |
| 56 | self.category = context.get_category_define() |
| 57 | self.context = context |
| 58 | self.tag_name = tag_name |
| 59 | |
| 60 | context.append(tag_name, self) |
| 61 | return |
| 62 | |
| 63 | def startElement(self, name, attrs): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 64 | """Generic startElement handler. |
| 65 | |
| 66 | The startElement handler is called for all elements except |
| 67 | the one that starts the object. For a foo element, the |
| 68 | XML "<foo><bar/></foo>" would cause the startElement handler |
| 69 | to be called once, but the endElement handler would be called |
| 70 | twice.""" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 71 | return |
| 72 | |
| 73 | def endElement(self, name): |
| 74 | """Generic endElement handler. |
| 75 | |
| 76 | Generic endElement handler. Returns 1 if the tag containing |
| 77 | the object is complete. Otherwise 0 is returned. All |
| 78 | derived class endElement handlers should call this method. If |
| 79 | the name of the ending tag is the same as the tag that |
| 80 | started this object, the object is assumed to be complete. |
| 81 | |
| 82 | This fails if a tag can contain another tag with the same |
| 83 | name. The XML "<foo><foo/><bar/></foo>" would fail. The |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 84 | object would end before the bar tag was processed. |
| 85 | |
| 86 | The endElement handler is called for every end element |
| 87 | associated with an object, even the element that started the |
| 88 | object. See the description of startElement an example.""" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 89 | |
| 90 | if name == self.tag_name: |
| 91 | return 1 |
| 92 | else: |
| 93 | return 0 |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 94 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 95 | def get_category_define(self): |
| 96 | return self.category |
| 97 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 98 | |
| 99 | class glEnum( glItem ): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 100 | """Subclass of glItem for representing GL enumerants. |
| 101 | |
| 102 | This class is not complete, and is not really used yet.""" |
| 103 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 104 | def __init__(self, context, name, attrs): |
| 105 | self.value = int(attrs.get('value', "0x0000"), 0) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 106 | |
| 107 | enum_name = "GL_" + attrs.get('name', None) |
| 108 | glItem.__init__(self, name, enum_name, context) |
| 109 | |
Ian Romanick | 85f0fa3 | 2005-01-25 01:20:11 +0000 | [diff] [blame] | 110 | temp = attrs.get('count', None) |
Ian Romanick | 80a939c | 2005-03-17 21:48:37 +0000 | [diff] [blame] | 111 | self.default_count = 0 |
| 112 | if temp == "?": |
| 113 | self.default_count = -1 |
| 114 | elif temp: |
Ian Romanick | 85f0fa3 | 2005-01-25 01:20:11 +0000 | [diff] [blame] | 115 | try: |
| 116 | c = int(temp) |
| 117 | except Exception,e: |
| 118 | raise RuntimeError('Invalid count value "%s" for enum "%s" in function "%s" when an integer was expected.' % (temp, self.name, n)) |
| 119 | |
| 120 | self.default_count = c |
| 121 | return |
| 122 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 123 | |
Ian Romanick | 5ff2b94 | 2005-01-24 21:29:13 +0000 | [diff] [blame] | 124 | def process_attributes(self, attrs): |
| 125 | name = attrs.get('name', None) |
| 126 | |
| 127 | temp = attrs.get('count', None) |
Ian Romanick | 85f0fa3 | 2005-01-25 01:20:11 +0000 | [diff] [blame] | 128 | if temp == None: |
| 129 | c = self.default_count |
| 130 | else: |
| 131 | try: |
| 132 | c = int(temp) |
| 133 | except Exception,e: |
| 134 | raise RuntimeError('Invalid count value "%s" for enum "%s" in function "%s" when an integer was expected.' % (temp, self.name, n)) |
Ian Romanick | 5ff2b94 | 2005-01-24 21:29:13 +0000 | [diff] [blame] | 135 | |
Ian Romanick | 85f0fa3 | 2005-01-25 01:20:11 +0000 | [diff] [blame] | 136 | mode_str = attrs.get('mode', "set") |
| 137 | if mode_str == "set": |
| 138 | mode = 1 |
| 139 | elif mode_str == "get": |
| 140 | mode = 0 |
| 141 | else: |
| 142 | raise RuntimeError("Invalid mode '%s' for function '%s' in enum '%s'." % (mode_str, self.context.name, self.name)) |
| 143 | |
| 144 | return [name, c, mode] |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 145 | |
| 146 | |
| 147 | class glType( glItem ): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 148 | """Subclass of glItem for representing GL types.""" |
| 149 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 150 | def __init__(self, context, name, attrs): |
| 151 | self.size = int(attrs.get('size', "0")) |
Ian Romanick | a285acb | 2005-01-07 03:22:56 +0000 | [diff] [blame] | 152 | self.glx_name = attrs.get('glx_name', "") |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 153 | |
| 154 | type_name = "GL" + attrs.get('name', None) |
| 155 | glItem.__init__(self, name, type_name, context) |
| 156 | |
| 157 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 158 | class glParameter( glItem ): |
| 159 | """Parameter of a glFunction.""" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 160 | p_type = None |
| 161 | p_type_string = "" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 162 | p_count = 0 |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 163 | counter = None |
| 164 | is_output = 0 |
| 165 | is_counter = 0 |
| 166 | is_pointer = 0 |
| 167 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 168 | def __init__(self, context, name, attrs): |
| 169 | p_name = attrs.get('name', None) |
| 170 | self.p_type_string = attrs.get('type', None) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 171 | |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 172 | temp = attrs.get('variable_param', None) |
| 173 | if temp: |
| 174 | self.count_parameter_list = temp.replace( ' ', '' ).split( ',' ) |
Ian Romanick | ba09c19 | 2005-02-01 00:13:04 +0000 | [diff] [blame] | 175 | else: |
| 176 | self.count_parameter_list = [] |
| 177 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 178 | self.p_type = context.context.find_type(self.p_type_string) |
| 179 | if self.p_type == None: |
| 180 | raise RuntimeError("Unknown type '%s' in function '%s'." % (self.p_type_string, context.name)) |
| 181 | |
| 182 | |
| 183 | # The count tag can be either a numeric string or the name of |
| 184 | # a variable. If it is the name of a variable, the int(c) |
| 185 | # statement will throw an exception, and the except block will |
| 186 | # take over. |
| 187 | |
| 188 | c = attrs.get('count', "0") |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 189 | try: |
| 190 | self.p_count = int(c) |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 191 | self.counter = None |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 192 | except Exception,e: |
| 193 | self.p_count = 0 |
| 194 | self.counter = c |
| 195 | |
Ian Romanick | 0bd5373 | 2005-03-06 08:55:39 +0000 | [diff] [blame] | 196 | self.count_scale = int(attrs.get('count_scale', "1")) |
| 197 | |
Ian Romanick | 73b4c1b | 2005-04-14 23:00:34 +0000 | [diff] [blame^] | 198 | self.is_counter = is_attr_true( attrs, 'counter' ) |
| 199 | self.is_output = is_attr_true( attrs, 'output' ) |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 200 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 201 | |
Ian Romanick | 5f1f229 | 2005-01-07 02:39:09 +0000 | [diff] [blame] | 202 | # Pixel data has special parameters. |
| 203 | |
| 204 | self.width = attrs.get('img_width', None) |
| 205 | self.height = attrs.get('img_height', None) |
| 206 | self.depth = attrs.get('img_depth', None) |
| 207 | self.extent = attrs.get('img_extent', None) |
| 208 | |
| 209 | self.img_xoff = attrs.get('img_xoff', None) |
| 210 | self.img_yoff = attrs.get('img_yoff', None) |
| 211 | self.img_zoff = attrs.get('img_zoff', None) |
| 212 | self.img_woff = attrs.get('img_woff', None) |
| 213 | |
| 214 | self.img_format = attrs.get('img_format', None) |
| 215 | self.img_type = attrs.get('img_type', None) |
| 216 | self.img_target = attrs.get('img_target', None) |
| 217 | |
Ian Romanick | 73b4c1b | 2005-04-14 23:00:34 +0000 | [diff] [blame^] | 218 | self.img_pad_dimensions = is_attr_true( attrs, 'img_pad_dimensions' ) |
| 219 | self.img_null_flag = is_attr_true( attrs, 'img_null_flag' ) |
| 220 | self.img_send_null = is_attr_true( attrs, 'img_send_null' ) |
Ian Romanick | 5f1f229 | 2005-01-07 02:39:09 +0000 | [diff] [blame] | 221 | |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 222 | if self.p_count > 0 or self.counter or self.count_parameter_list: |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 223 | has_count = 1 |
| 224 | else: |
| 225 | has_count = 0 |
| 226 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 227 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 228 | # If there is a * anywhere in the parameter's type, then it |
| 229 | # is a pointer. |
| 230 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 231 | if re.compile("[*]").search(self.p_type_string): |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 232 | # We could do some other validation here. For |
| 233 | # example, an output parameter should not be const, |
| 234 | # but every non-output parameter should. |
| 235 | |
| 236 | self.is_pointer = 1; |
| 237 | else: |
| 238 | # If a parameter is not a pointer, then there cannot |
| 239 | # be an associated count (either fixed size or |
| 240 | # variable) and the parameter cannot be an output. |
| 241 | |
| 242 | if has_count or self.is_output: |
| 243 | raise RuntimeError("Non-pointer type has count or is output.") |
| 244 | self.is_pointer = 0; |
| 245 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 246 | glItem.__init__(self, name, p_name, context) |
| 247 | return |
| 248 | |
| 249 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 250 | def is_variable_length_array(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 251 | """Determine if a parameter is a variable length array. |
| 252 | |
| 253 | A parameter is considered to be a variable length array if |
| 254 | its size depends on the value of another parameter that is |
| 255 | an enumerant. The params parameter to glTexEnviv is an |
| 256 | example of a variable length array parameter. Arrays whose |
| 257 | size depends on a count variable, such as the lists parameter |
| 258 | to glCallLists, are not variable length arrays in this |
| 259 | sense.""" |
| 260 | |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 261 | return self.count_parameter_list or self.counter or self.width |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 262 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 263 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 264 | def is_array(self): |
| 265 | return self.is_pointer |
| 266 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 267 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 268 | def count_string(self): |
| 269 | """Return a string representing the number of items |
| 270 | |
| 271 | Returns a string representing the number of items in a |
| 272 | parameter. For scalar types this will always be "1". For |
| 273 | vector types, it will depend on whether or not it is a |
| 274 | fixed length vector (like the parameter of glVertex3fv), |
| 275 | a counted length (like the vector parameter of |
| 276 | glDeleteTextures), or a general variable length vector.""" |
| 277 | |
| 278 | if self.is_array(): |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 279 | if self.count_parameter_list: |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 280 | return "compsize" |
| 281 | elif self.counter != None: |
| 282 | return self.counter |
| 283 | else: |
| 284 | return str(self.p_count) |
| 285 | else: |
| 286 | return "1" |
| 287 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 288 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 289 | def size(self): |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 290 | if self.count_parameter_list or self.counter or self.width or self.is_output: |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 291 | return 0 |
| 292 | elif self.p_count == 0: |
| 293 | return self.p_type.size |
| 294 | else: |
Ian Romanick | 0bd5373 | 2005-03-06 08:55:39 +0000 | [diff] [blame] | 295 | return self.p_type.size * self.p_count * self.count_scale |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 296 | |
Ian Romanick | 4f0a75e | 2004-12-01 00:29:48 +0000 | [diff] [blame] | 297 | def size_string(self): |
| 298 | s = self.size() |
| 299 | if s == 0: |
| 300 | a_prod = "compsize" |
| 301 | b_prod = self.p_type.size |
| 302 | |
Ian Romanick | ba09c19 | 2005-02-01 00:13:04 +0000 | [diff] [blame] | 303 | # Handle functions like glCompressedTexImage2D that |
| 304 | # have a counted 'void *' parameter. |
| 305 | |
| 306 | if b_prod == 0: b_prod = 1 |
| 307 | |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 308 | if not self.count_parameter_list and self.counter != None: |
Ian Romanick | 0bd5373 | 2005-03-06 08:55:39 +0000 | [diff] [blame] | 309 | if self.count_scale > 1: |
| 310 | a_prod = '(%s * %u)' % (self.counter, self.count_scale) |
| 311 | else: |
| 312 | a_prod = self.counter |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 313 | elif self.count_parameter_list and self.counter == None: |
Ian Romanick | 4f0a75e | 2004-12-01 00:29:48 +0000 | [diff] [blame] | 314 | pass |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 315 | elif self.count_parameter_list and self.counter != None: |
Ian Romanick | 0bd5373 | 2005-03-06 08:55:39 +0000 | [diff] [blame] | 316 | if self.count_scale > 1: |
| 317 | b_prod = '(%s * %u)' % (self.counter, self.count_scale) |
| 318 | else: |
| 319 | b_prod = self.counter |
Ian Romanick | 5f1f229 | 2005-01-07 02:39:09 +0000 | [diff] [blame] | 320 | elif self.width: |
| 321 | return "compsize" |
Ian Romanick | 4f0a75e | 2004-12-01 00:29:48 +0000 | [diff] [blame] | 322 | else: |
| 323 | raise RuntimeError("Parameter '%s' to function '%s' has size 0." % (self.name, self.context.name)) |
| 324 | |
| 325 | return "(%s * %s)" % (a_prod, b_prod) |
| 326 | else: |
| 327 | return str(s) |
| 328 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 329 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 330 | class glParameterIterator: |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 331 | """Class to iterate over a list of glParameters. |
| 332 | |
Ian Romanick | 1d27084 | 2004-12-21 21:26:36 +0000 | [diff] [blame] | 333 | Objects of this class are returned by the parameterIterator method of |
| 334 | the glFunction class. They are used to iterate over the list of |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 335 | parameters to the function.""" |
| 336 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 337 | def __init__(self, data): |
| 338 | self.data = data |
| 339 | self.index = 0 |
Ian Romanick | 1d27084 | 2004-12-21 21:26:36 +0000 | [diff] [blame] | 340 | |
| 341 | def __iter__(self): |
| 342 | return self |
| 343 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 344 | def next(self): |
| 345 | if self.index == len( self.data ): |
| 346 | raise StopIteration |
| 347 | i = self.index |
| 348 | self.index += 1 |
| 349 | return self.data[i] |
| 350 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 351 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 352 | class glFunction( glItem ): |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 353 | def __init__(self, context, name, attrs): |
| 354 | self.fn_alias = attrs.get('alias', None) |
| 355 | self.fn_parameters = [] |
Ian Romanick | 5f1f229 | 2005-01-07 02:39:09 +0000 | [diff] [blame] | 356 | self.image = None |
Ian Romanick | ba09c19 | 2005-02-01 00:13:04 +0000 | [diff] [blame] | 357 | self.count_parameter_list = [] |
Ian Romanick | 3fec8c2 | 2005-02-02 00:54:45 +0000 | [diff] [blame] | 358 | self.fn_return_type = "void" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 359 | |
| 360 | temp = attrs.get('offset', None) |
| 361 | if temp == None or temp == "?": |
| 362 | self.fn_offset = -1 |
| 363 | else: |
| 364 | self.fn_offset = int(temp) |
| 365 | |
| 366 | fn_name = attrs.get('name', None) |
| 367 | if self.fn_alias != None: |
| 368 | self.real_name = self.fn_alias |
| 369 | else: |
| 370 | self.real_name = fn_name |
| 371 | |
Ian Romanick | ce77d37 | 2005-03-03 21:21:59 +0000 | [diff] [blame] | 372 | self.parameters_by_name = {} |
| 373 | self.variable_length_parameters = [] |
| 374 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 375 | glItem.__init__(self, name, fn_name, context) |
| 376 | return |
| 377 | |
| 378 | |
Ian Romanick | 1d27084 | 2004-12-21 21:26:36 +0000 | [diff] [blame] | 379 | def parameterIterator(self): |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 380 | return glParameterIterator(self.fn_parameters) |
| 381 | |
| 382 | |
| 383 | def startElement(self, name, attrs): |
| 384 | if name == "param": |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 385 | try: |
Ian Romanick | 4f0a75e | 2004-12-01 00:29:48 +0000 | [diff] [blame] | 386 | self.context.factory.create(self, name, attrs) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 387 | except RuntimeError: |
| 388 | print "Error with parameter '%s' in function '%s'." \ |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 389 | % (attrs.get('name','(unknown)'), self.name) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 390 | raise |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 391 | elif name == "return": |
| 392 | self.set_return_type(attrs.get('type', None)) |
| 393 | |
| 394 | |
Ian Romanick | ce77d37 | 2005-03-03 21:21:59 +0000 | [diff] [blame] | 395 | def endElement(self, name): |
| 396 | """Handle the end of a <function> element. |
| 397 | |
| 398 | At the end of a <function> element, there is some semantic |
| 399 | checking that can be done. This prevents some possible |
| 400 | exceptions from being thrown elsewhere in the code. |
| 401 | """ |
| 402 | |
| 403 | if name == "function": |
| 404 | for p in self.variable_length_parameters: |
| 405 | if p.counter: |
| 406 | counter = self.parameters_by_name[ p.counter ] |
| 407 | if not self.parameters_by_name.has_key( p.counter ): |
| 408 | raise RuntimeError("Parameter '%s' of function '%s' has counter '%s', but function has no such parameter." % (p.name, self.name, p.counter)) |
| 409 | elif not self.parameters_by_name[ p.counter ].is_counter: |
| 410 | raise RuntimeError("Parameter '%s' of function '%s' has counter '%s', but '%s' is not marked as a counter." % (p.name, self.name, p.counter, p.counter)) |
| 411 | |
| 412 | for n in p.count_parameter_list: |
| 413 | if not self.parameters_by_name.has_key( n ): |
| 414 | raise RuntimeError("Parameter '%s' of function '%s' has size parameter '%s', but function has no such parameter." % (p.name, self.name, n)) |
| 415 | |
| 416 | return 1 |
| 417 | else: |
| 418 | return 0 |
| 419 | |
| 420 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 421 | def append(self, tag_name, p): |
| 422 | if tag_name != "param": |
| 423 | raise RuntimeError("Trying to append '%s' to parameter list of function '%s'." % (tag_name, self.name)) |
| 424 | |
Ian Romanick | 5f1f229 | 2005-01-07 02:39:09 +0000 | [diff] [blame] | 425 | if p.width: |
| 426 | self.image = p |
| 427 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 428 | self.fn_parameters.append(p) |
Ian Romanick | ba09c19 | 2005-02-01 00:13:04 +0000 | [diff] [blame] | 429 | if p.count_parameter_list != []: |
| 430 | self.count_parameter_list.extend( p.count_parameter_list ) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 431 | |
Ian Romanick | ce77d37 | 2005-03-03 21:21:59 +0000 | [diff] [blame] | 432 | if p.is_variable_length_array(): |
| 433 | self.variable_length_parameters.append(p) |
| 434 | |
| 435 | self.parameters_by_name[ p.name ] = p |
| 436 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 437 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 438 | def set_return_type(self, t): |
| 439 | self.fn_return_type = t |
| 440 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 441 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 442 | def get_parameter_string(self): |
| 443 | arg_string = "" |
| 444 | comma = "" |
Ian Romanick | 1d27084 | 2004-12-21 21:26:36 +0000 | [diff] [blame] | 445 | for p in glFunction.parameterIterator(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 446 | arg_string = arg_string + comma + p.p_type_string + " " + p.name |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 447 | comma = ", " |
| 448 | |
| 449 | if arg_string == "": |
| 450 | arg_string = "void" |
| 451 | |
| 452 | return arg_string |
| 453 | |
| 454 | |
| 455 | class glItemFactory: |
| 456 | """Factory to create objects derived from glItem.""" |
| 457 | |
| 458 | def create(self, context, name, attrs): |
| 459 | if name == "function": |
| 460 | return glFunction(context, name, attrs) |
| 461 | elif name == "type": |
| 462 | return glType(context, name, attrs) |
| 463 | elif name == "enum": |
| 464 | return glEnum(context, name, attrs) |
Ian Romanick | 4f0a75e | 2004-12-01 00:29:48 +0000 | [diff] [blame] | 465 | elif name == "param": |
| 466 | return glParameter(context, name, attrs) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 467 | else: |
| 468 | return None |
| 469 | |
| 470 | |
Ian Romanick | 38e6e09 | 2005-01-25 23:53:13 +0000 | [diff] [blame] | 471 | class glFunctionIterator: |
| 472 | """Class to iterate over a list of glFunctions |
| 473 | |
| 474 | Objects of this classare returned by |
| 475 | FilterGLAPISpecBase::functionIterator. This default version |
| 476 | iterates over the functions in order of dispatch table offset. All |
| 477 | of the "true" functions are iterated first, followed by the alias |
| 478 | functions.""" |
| 479 | |
| 480 | def __init__(self, context): |
| 481 | self.context = context |
| 482 | self.keys = context.functions.keys() |
| 483 | self.keys.sort() |
| 484 | |
| 485 | self.prevk = -1 |
| 486 | self.direction = 1 |
| 487 | |
| 488 | for self.index in range(0, len(self.keys)): |
| 489 | if self.keys[ self.index ] >= 0: break |
| 490 | |
| 491 | if self.index == len(self.keys): |
| 492 | self.direction = -1 |
| 493 | self.index -= 1 |
| 494 | |
| 495 | self.split = self.index - 1 |
| 496 | return |
| 497 | |
| 498 | |
| 499 | def __iter__(self): |
| 500 | return self |
| 501 | |
| 502 | |
| 503 | def next(self): |
| 504 | if self.index < 0: |
| 505 | raise StopIteration |
| 506 | |
| 507 | k = self.keys[ self.index ] |
| 508 | |
| 509 | #if self.context.functions[k].fn_alias == None: |
| 510 | # if k != self.prevk + 1: |
| 511 | # print 'Missing offset %d' % (prevk) |
| 512 | # self.prevk = int(k) |
| 513 | |
| 514 | self.index += self.direction |
| 515 | |
| 516 | if self.index == len(self.keys): |
| 517 | self.index = self.split |
| 518 | self.direction = -1 |
| 519 | |
| 520 | return self.context.functions[k] |
| 521 | |
| 522 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 523 | class FilterGLAPISpecBase(saxutils.XMLFilterBase): |
| 524 | name = "a" |
| 525 | license = "The license for this file is unspecified." |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 526 | next_alias = -2 |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 527 | current_object = None |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 528 | |
| 529 | def __init__(self): |
| 530 | saxutils.XMLFilterBase.__init__(self) |
| 531 | self.functions = {} |
| 532 | self.types = {} |
Ian Romanick | 6af6a69 | 2005-03-17 20:56:13 +0000 | [diff] [blame] | 533 | self.functions_by_name = {} |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 534 | self.factory = glItemFactory() |
Ian Romanick | 16c3c74 | 2005-01-28 19:00:54 +0000 | [diff] [blame] | 535 | self.header_tag = None |
Ian Romanick | c280358 | 2005-02-01 00:28:47 +0000 | [diff] [blame] | 536 | self.undef_list = [] |
Ian Romanick | 6af6a69 | 2005-03-17 20:56:13 +0000 | [diff] [blame] | 537 | self.current_category = "" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 538 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 539 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 540 | def find_type(self,type_name): |
| 541 | for t in self.types: |
| 542 | if re.compile(t).search(type_name): |
| 543 | return self.types[t] |
| 544 | print "Unable to find base type matching \"%s\"." % (type_name) |
| 545 | return None |
| 546 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 547 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 548 | def find_function(self,function_name): |
Ian Romanick | 6af6a69 | 2005-03-17 20:56:13 +0000 | [diff] [blame] | 549 | return self.functions_by_name[function_name] |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 550 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 551 | |
Ian Romanick | 38e6e09 | 2005-01-25 23:53:13 +0000 | [diff] [blame] | 552 | def functionIterator(self): |
| 553 | return glFunctionIterator(self) |
| 554 | |
| 555 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 556 | def printFunctions(self): |
Ian Romanick | 38e6e09 | 2005-01-25 23:53:13 +0000 | [diff] [blame] | 557 | for f in self.functionIterator(): |
| 558 | self.printFunction(f) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 559 | return |
| 560 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 561 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 562 | def printHeader(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 563 | """Print the header associated with all files and call the printRealHeader method.""" |
| 564 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 565 | print '/* DO NOT EDIT - This file generated automatically by %s script */' \ |
| 566 | % (self.name) |
| 567 | print '' |
| 568 | print '/*' |
| 569 | print ' * ' + self.license.replace('\n', '\n * ') |
| 570 | print ' */' |
| 571 | print '' |
Ian Romanick | 16c3c74 | 2005-01-28 19:00:54 +0000 | [diff] [blame] | 572 | if self.header_tag: |
| 573 | print '#if !defined( %s )' % (self.header_tag) |
| 574 | print '# define %s' % (self.header_tag) |
| 575 | print '' |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 576 | self.printRealHeader(); |
| 577 | return |
| 578 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 579 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 580 | def printFooter(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 581 | """Print the header associated with all files and call the printRealFooter method.""" |
| 582 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 583 | self.printFunctions() |
| 584 | self.printRealFooter() |
Ian Romanick | 16c3c74 | 2005-01-28 19:00:54 +0000 | [diff] [blame] | 585 | if self.header_tag: |
Ian Romanick | c280358 | 2005-02-01 00:28:47 +0000 | [diff] [blame] | 586 | if self.undef_list: |
| 587 | print '' |
| 588 | for u in self.undef_list: |
| 589 | print "# undef %s" % (u) |
| 590 | print '' |
| 591 | print '#endif /* !defined( %s ) */' % (self.header_tag) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 592 | |
| 593 | |
| 594 | def get_category_define(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 595 | """Convert the category name to the #define that would be found in glext.h""" |
| 596 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 597 | if re.compile("[1-9][0-9]*[.][0-9]+").match(self.current_category): |
| 598 | s = self.current_category |
| 599 | return "GL_VERSION_" + s.replace(".", "_") |
| 600 | else: |
| 601 | return self.current_category |
| 602 | |
| 603 | |
| 604 | def append(self, object_type, obj): |
| 605 | if object_type == "function": |
| 606 | # If the function is not an alias and has a negative |
| 607 | # offset, then we do not need to track it. These are |
| 608 | # functions that don't have an assigned offset |
| 609 | |
| 610 | if obj.fn_offset >= 0 or obj.fn_alias != None: |
| 611 | if obj.fn_offset >= 0: |
| 612 | index = obj.fn_offset |
| 613 | else: |
| 614 | index = self.next_alias |
| 615 | self.next_alias -= 1 |
| 616 | |
| 617 | self.functions[index] = obj |
Ian Romanick | 6af6a69 | 2005-03-17 20:56:13 +0000 | [diff] [blame] | 618 | |
| 619 | self.functions_by_name[obj.name] = obj |
| 620 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 621 | elif object_type == "type": |
| 622 | self.types[obj.name] = obj |
| 623 | |
| 624 | return |
| 625 | |
| 626 | |
| 627 | def startElement(self, name, attrs): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 628 | """Start a new element in the XML stream. |
| 629 | |
| 630 | Starts a new element. There are three types of elements that |
| 631 | are specially handled by this function. When a "category" |
| 632 | element is encountered, the name of the category is saved. |
| 633 | If an element is encountered and no API object is |
| 634 | in-progress, a new object is created using the API factory. |
| 635 | Any future elements, until that API object is closed, are |
| 636 | passed to the current objects startElement method. |
| 637 | |
| 638 | This paradigm was chosen becuase it allows subclasses of the |
| 639 | basic API types (i.e., glFunction, glEnum, etc.) to handle |
| 640 | additional XML data, GLX protocol information, that the base |
| 641 | classes do not know about.""" |
| 642 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 643 | if self.current_object != None: |
| 644 | self.current_object.startElement(name, attrs) |
| 645 | elif name == "category": |
| 646 | self.current_category = attrs.get('name', "") |
Ian Romanick | 6cfd4f7 | 2005-02-08 02:11:14 +0000 | [diff] [blame] | 647 | elif name == "include": |
| 648 | self.next_include = attrs.get('name', "") |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 649 | else: |
| 650 | self.current_object = self.factory.create(self, name, attrs) |
| 651 | return |
| 652 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 653 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 654 | def endElement(self, name): |
| 655 | if self.current_object != None: |
| 656 | if self.current_object.endElement(name): |
| 657 | self.current_object = None |
Ian Romanick | 6cfd4f7 | 2005-02-08 02:11:14 +0000 | [diff] [blame] | 658 | elif name == "include": |
| 659 | parser = make_parser() |
| 660 | parser.setFeature(feature_namespaces, 0) |
| 661 | parser.setContentHandler(self) |
| 662 | |
| 663 | f = open(self.next_include) |
| 664 | parser.parse(f) |
| 665 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 666 | return |
| 667 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 668 | |
Ian Romanick | c280358 | 2005-02-01 00:28:47 +0000 | [diff] [blame] | 669 | def printPure(self): |
| 670 | self.undef_list.append("PURE") |
| 671 | print """# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) |
| 672 | # define PURE __attribute__((pure)) |
| 673 | # else |
| 674 | # define PURE |
| 675 | # endif""" |
| 676 | |
| 677 | def printFastcall(self): |
| 678 | self.undef_list.append("FASTCALL") |
| 679 | print """# if defined(__i386__) && defined(__GNUC__) |
| 680 | # define FASTCALL __attribute__((fastcall)) |
| 681 | # else |
| 682 | # define FASTCALL |
| 683 | # endif""" |
| 684 | |
| 685 | def printVisibility(self, S, s): |
| 686 | self.undef_list.append(S) |
| 687 | print """# if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) |
| 688 | # define %s __attribute__((visibility("%s"))) |
| 689 | # else |
| 690 | # define %s |
| 691 | # endif""" % (S, s, S) |
| 692 | |
| 693 | def printNoinline(self): |
| 694 | self.undef_list.append("NOINLINE") |
| 695 | print """# if defined(__GNUC__) |
| 696 | # define NOINLINE __attribute__((noinline)) |
| 697 | # else |
| 698 | # define NOINLINE |
| 699 | # endif""" |
| 700 | |
| 701 | def printHaveAlias(self): |
| 702 | self.undef_list.append("HAVE_ALIAS") |
| 703 | print """# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) |
| 704 | # define HAVE_ALIAS |
| 705 | # endif""" |
| 706 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 707 | def printFunction(self,offset): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 708 | """Print a single function. |
| 709 | |
| 710 | In the base class, this function is empty. All derived |
| 711 | classes should over-ride this function.""" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 712 | return |
| 713 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 714 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 715 | def printRealHeader(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 716 | """Print the "real" header for the created file. |
| 717 | |
| 718 | In the base class, this function is empty. All derived |
| 719 | classes should over-ride this function.""" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 720 | return |
| 721 | |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 722 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 723 | def printRealFooter(self): |
Ian Romanick | a9d033c | 2004-05-19 23:33:08 +0000 | [diff] [blame] | 724 | """Print the "real" footer for the created file. |
| 725 | |
| 726 | In the base class, this function is empty. All derived |
| 727 | classes should over-ride this function.""" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 728 | return |