blob: fa371cf2d8706d8286d88d9d9ee0065f18123eed [file] [log] [blame]
José Fonseca7ad40262009-09-30 17:17:12 +01001##########################################################################
José Fonseca95442442008-07-08 10:32:53 +09002#
José Fonseca6fac5ae2010-11-29 16:09:13 +00003# Copyright 2008-2010 VMware, Inc.
José Fonseca7ad40262009-09-30 17:17:12 +01004# All Rights Reserved.
José Fonseca95442442008-07-08 10:32:53 +09005#
José Fonseca7ad40262009-09-30 17:17:12 +01006# Permission is hereby granted, free of charge, to any person obtaining a copy
7# of this software and associated documentation files (the "Software"), to deal
8# in the Software without restriction, including without limitation the rights
9# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10# copies of the Software, and to permit persons to whom the Software is
11# furnished to do so, subject to the following conditions:
José Fonseca95442442008-07-08 10:32:53 +090012#
José Fonseca7ad40262009-09-30 17:17:12 +010013# The above copyright notice and this permission notice shall be included in
14# all copies or substantial portions of the Software.
José Fonseca95442442008-07-08 10:32:53 +090015#
José Fonseca7ad40262009-09-30 17:17:12 +010016# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22# THE SOFTWARE.
José Fonseca95442442008-07-08 10:32:53 +090023#
José Fonseca7ad40262009-09-30 17:17:12 +010024##########################################################################/
José Fonseca95442442008-07-08 10:32:53 +090025
José Fonsecad626cf42008-07-07 07:43:16 +090026"""C basic types"""
27
José Fonseca8a56d142008-07-09 12:18:08 +090028
29import debug
30
31
José Fonseca6fac5ae2010-11-29 16:09:13 +000032class Type:
33
34 __all = {}
35 __seq = 0
36
37 def __init__(self, expr, id = ''):
38 self.expr = expr
39
40 for char in id:
41 assert char.isalnum() or char in '_ '
42
43 id = id.replace(' ', '_')
44
45 if id in Type.__all:
46 Type.__seq += 1
47 id += str(Type.__seq)
48
49 assert id not in Type.__all
50 Type.__all[id] = self
51
52 self.id = id
53
54 def __str__(self):
55 return self.expr
56
57 def visit(self, visitor, *args, **kwargs):
58 raise NotImplementedError
59
60
61
62class _Void(Type):
63
64 def __init__(self):
65 Type.__init__(self, "void")
66
67 def visit(self, visitor, *args, **kwargs):
68 return visitor.visit_void(self, *args, **kwargs)
69
70Void = _Void()
71
72
73class Literal(Type):
74
75 def __init__(self, expr, format, base=10):
76 Type.__init__(self, expr)
77 self.format = format
78
79 def visit(self, visitor, *args, **kwargs):
80 return visitor.visit_literal(self, *args, **kwargs)
81
82
83class Const(Type):
84
85 def __init__(self, type):
José Fonseca903c2ca2011-09-23 09:43:05 +010086 # While "const foo" and "foo const" are synonymous, "const foo *" and
87 # "foo * const" are not quite the same, and some compilers do enforce
88 # strict const correctness.
89 if isinstance(type, String) or type is WString:
90 # For strings we never intend to say a const pointer to chars, but
91 # rather a point to const chars.
92 expr = "const " + type.expr
93 elif type.expr.startswith("const ") or '*' in type.expr:
José Fonseca6fac5ae2010-11-29 16:09:13 +000094 expr = type.expr + " const"
95 else:
José Fonseca903c2ca2011-09-23 09:43:05 +010096 # The most legible
José Fonseca6fac5ae2010-11-29 16:09:13 +000097 expr = "const " + type.expr
98
99 Type.__init__(self, expr, 'C' + type.id)
100
101 self.type = type
102
103 def visit(self, visitor, *args, **kwargs):
104 return visitor.visit_const(self, *args, **kwargs)
105
106
107class Pointer(Type):
108
109 def __init__(self, type):
110 Type.__init__(self, type.expr + " *", 'P' + type.id)
111 self.type = type
112
113 def visit(self, visitor, *args, **kwargs):
114 return visitor.visit_pointer(self, *args, **kwargs)
115
116
117class Handle(Type):
118
José Fonseca8a844ae2010-12-06 18:50:52 +0000119 def __init__(self, name, type, range=None, key=None):
José Fonseca6fac5ae2010-11-29 16:09:13 +0000120 Type.__init__(self, type.expr, 'P' + type.id)
121 self.name = name
122 self.type = type
123 self.range = range
José Fonseca8a844ae2010-12-06 18:50:52 +0000124 self.key = key
José Fonseca6fac5ae2010-11-29 16:09:13 +0000125
126 def visit(self, visitor, *args, **kwargs):
127 return visitor.visit_handle(self, *args, **kwargs)
128
129
130def ConstPointer(type):
131 return Pointer(Const(type))
132
133
134class Enum(Type):
135
José Fonseca6fac5ae2010-11-29 16:09:13 +0000136 def __init__(self, name, values):
137 Type.__init__(self, name)
José Fonseca6fac5ae2010-11-29 16:09:13 +0000138 self.values = list(values)
139
140 def visit(self, visitor, *args, **kwargs):
141 return visitor.visit_enum(self, *args, **kwargs)
142
143
144def FakeEnum(type, values):
145 return Enum(type.expr, values)
146
147
148class Bitmask(Type):
149
150 def __init__(self, type, values):
151 Type.__init__(self, type.expr)
152 self.type = type
153 self.values = values
154
155 def visit(self, visitor, *args, **kwargs):
156 return visitor.visit_bitmask(self, *args, **kwargs)
157
158Flags = Bitmask
159
160
161class Array(Type):
162
163 def __init__(self, type, length):
164 Type.__init__(self, type.expr + " *")
165 self.type = type
166 self.length = length
167
168 def visit(self, visitor, *args, **kwargs):
169 return visitor.visit_array(self, *args, **kwargs)
170
171
172class Blob(Type):
173
174 def __init__(self, type, size):
175 Type.__init__(self, type.expr + ' *')
176 self.type = type
177 self.size = size
178
179 def visit(self, visitor, *args, **kwargs):
180 return visitor.visit_blob(self, *args, **kwargs)
181
182
183class Struct(Type):
184
185 def __init__(self, name, members):
186 Type.__init__(self, name)
187 self.name = name
188 self.members = members
189
190 def visit(self, visitor, *args, **kwargs):
191 return visitor.visit_struct(self, *args, **kwargs)
192
193
194class Alias(Type):
195
196 def __init__(self, expr, type):
197 Type.__init__(self, expr)
198 self.type = type
199
200 def visit(self, visitor, *args, **kwargs):
201 return visitor.visit_alias(self, *args, **kwargs)
202
203
204def Out(type, name):
205 arg = Arg(type, name, output=True)
206 return arg
207
208
209class Arg:
210
211 def __init__(self, type, name, output=False):
212 self.type = type
213 self.name = name
214 self.output = output
215 self.index = None
216
217 def __str__(self):
218 return '%s %s' % (self.type, self.name)
219
220
221class Function:
222
223 __id = 0
224
José Fonsecabca0f412011-04-24 20:53:38 +0100225 def __init__(self, type, name, args, call = '', fail = None, sideeffects=True):
José Fonseca6fac5ae2010-11-29 16:09:13 +0000226 self.id = Function.__id
227 Function.__id += 1
228
229 self.type = type
230 self.name = name
231
232 self.args = []
233 index = 0
234 for arg in args:
José Fonseca8384ccb2011-05-25 10:12:02 +0100235 if not isinstance(arg, Arg):
236 if isinstance(arg, tuple):
237 arg_type, arg_name = arg
238 else:
239 arg_type = arg
240 arg_name = "arg%u" % index
José Fonseca6fac5ae2010-11-29 16:09:13 +0000241 arg = Arg(arg_type, arg_name)
242 arg.index = index
243 index += 1
244 self.args.append(arg)
245
246 self.call = call
247 self.fail = fail
248 self.sideeffects = sideeffects
José Fonseca6fac5ae2010-11-29 16:09:13 +0000249
250 def prototype(self, name=None):
251 if name is not None:
252 name = name.strip()
253 else:
254 name = self.name
255 s = name
256 if self.call:
257 s = self.call + ' ' + s
258 if name.startswith('*'):
259 s = '(' + s + ')'
260 s = self.type.expr + ' ' + s
261 s += "("
262 if self.args:
263 s += ", ".join(["%s %s" % (arg.type, arg.name) for arg in self.args])
264 else:
265 s += "void"
266 s += ")"
267 return s
268
269
270def StdFunction(*args, **kwargs):
271 kwargs.setdefault('call', '__stdcall')
272 return Function(*args, **kwargs)
273
274
275def FunctionPointer(type, name, args, **kwargs):
276 # XXX: We should probably treat function pointers (callbacks or not) in a generic fashion
277 return Opaque(name)
278
279
280class Interface(Type):
281
282 def __init__(self, name, base=None):
283 Type.__init__(self, name)
284 self.name = name
285 self.base = base
286 self.methods = []
287
288 def visit(self, visitor, *args, **kwargs):
289 return visitor.visit_interface(self, *args, **kwargs)
290
291 def itermethods(self):
292 if self.base is not None:
293 for method in self.base.itermethods():
294 yield method
295 for method in self.methods:
296 yield method
297 raise StopIteration
298
299
300class Method(Function):
301
302 def __init__(self, type, name, args):
303 Function.__init__(self, type, name, args, call = '__stdcall')
304 for index in range(len(self.args)):
305 self.args[index].index = index + 1
306
307
José Fonseca6fac5ae2010-11-29 16:09:13 +0000308class String(Type):
309
310 def __init__(self, expr = "char *", length = None):
311 Type.__init__(self, expr)
312 self.length = length
313
314 def visit(self, visitor, *args, **kwargs):
315 return visitor.visit_string(self, *args, **kwargs)
316
317# C string (i.e., zero terminated)
318CString = String()
319
320
321class Opaque(Type):
322 '''Opaque pointer.'''
323
324 def __init__(self, expr):
325 Type.__init__(self, expr)
326
327 def visit(self, visitor, *args, **kwargs):
328 return visitor.visit_opaque(self, *args, **kwargs)
329
330
331def OpaquePointer(type, *args):
332 return Opaque(type.expr + ' *')
333
334def OpaqueArray(type, size):
335 return Opaque(type.expr + ' *')
336
337def OpaqueBlob(type, size):
338 return Opaque(type.expr + ' *')
José Fonseca8a56d142008-07-09 12:18:08 +0900339
José Fonseca501f2862010-11-19 20:41:18 +0000340
José Fonseca16d46dd2011-10-13 09:52:52 +0100341class Polymorphic(Type):
342
343 def __init__(self, default_type, switch_expr, switch_types):
344 Type.__init__(self, default_type.expr)
345 self.default_type = default_type
346 self.switch_expr = switch_expr
347 self.switch_types = switch_types
348
349 def visit(self, visitor, *args, **kwargs):
350 return visitor.visit_polymorphic(self, *args, **kwargs)
351
José Fonseca46161112011-10-14 10:04:55 +0100352 def iterswitch(self):
353 cases = [['default']]
354 types = [self.default_type]
355
356 for expr, type in self.switch_types:
357 case = 'case %s' % expr
358 try:
359 i = types.index(type)
360 except ValueError:
361 cases.append([case])
362 types.append(type)
363 else:
364 cases[i].append(case)
365
366 return zip(cases, types)
367
José Fonseca16d46dd2011-10-13 09:52:52 +0100368
José Fonseca501f2862010-11-19 20:41:18 +0000369class Visitor:
370
371 def visit(self, type, *args, **kwargs):
372 return type.visit(self, *args, **kwargs)
373
José Fonsecac356d6a2010-11-23 14:27:25 +0000374 def visit_void(self, void, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000375 raise NotImplementedError
376
José Fonsecac356d6a2010-11-23 14:27:25 +0000377 def visit_literal(self, literal, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000378 raise NotImplementedError
379
José Fonsecac356d6a2010-11-23 14:27:25 +0000380 def visit_string(self, string, *args, **kwargs):
José Fonseca2defc982010-11-22 16:59:10 +0000381 raise NotImplementedError
382
José Fonsecac356d6a2010-11-23 14:27:25 +0000383 def visit_const(self, const, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000384 raise NotImplementedError
385
José Fonsecac356d6a2010-11-23 14:27:25 +0000386 def visit_struct(self, struct, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000387 raise NotImplementedError
388
José Fonsecac356d6a2010-11-23 14:27:25 +0000389 def visit_array(self, array, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000390 raise NotImplementedError
391
José Fonsecac356d6a2010-11-23 14:27:25 +0000392 def visit_blob(self, blob, *args, **kwargs):
José Fonseca885f2652010-11-20 11:22:25 +0000393 raise NotImplementedError
394
José Fonsecac356d6a2010-11-23 14:27:25 +0000395 def visit_enum(self, enum, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000396 raise NotImplementedError
397
José Fonsecac356d6a2010-11-23 14:27:25 +0000398 def visit_bitmask(self, bitmask, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000399 raise NotImplementedError
400
José Fonsecac356d6a2010-11-23 14:27:25 +0000401 def visit_pointer(self, pointer, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000402 raise NotImplementedError
403
José Fonseca50d78d82010-11-23 22:13:14 +0000404 def visit_handle(self, handle, *args, **kwargs):
405 raise NotImplementedError
406
José Fonsecac356d6a2010-11-23 14:27:25 +0000407 def visit_alias(self, alias, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000408 raise NotImplementedError
409
José Fonsecac356d6a2010-11-23 14:27:25 +0000410 def visit_opaque(self, opaque, *args, **kwargs):
José Fonseca501f2862010-11-19 20:41:18 +0000411 raise NotImplementedError
412
José Fonsecac356d6a2010-11-23 14:27:25 +0000413 def visit_interface(self, interface, *args, **kwargs):
414 raise NotImplementedError
415
José Fonseca16d46dd2011-10-13 09:52:52 +0100416 def visit_polymorphic(self, polymorphic, *args, **kwargs):
417 raise NotImplementedError
418 #return self.visit(polymorphic.default_type, *args, **kwargs)
419
José Fonsecac356d6a2010-11-23 14:27:25 +0000420
421class OnceVisitor(Visitor):
422
423 def __init__(self):
424 self.__visited = set()
425
426 def visit(self, type, *args, **kwargs):
427 if type not in self.__visited:
428 self.__visited.add(type)
429 return type.visit(self, *args, **kwargs)
430 return None
431
José Fonseca501f2862010-11-19 20:41:18 +0000432
José Fonsecac9edb832010-11-20 09:03:10 +0000433class Rebuilder(Visitor):
434
435 def visit_void(self, void):
436 return void
437
438 def visit_literal(self, literal):
439 return literal
440
José Fonseca2defc982010-11-22 16:59:10 +0000441 def visit_string(self, string):
442 return string
443
José Fonsecac9edb832010-11-20 09:03:10 +0000444 def visit_const(self, const):
445 return Const(const.type)
446
447 def visit_struct(self, struct):
José Fonseca06aa2842011-05-05 07:55:54 +0100448 members = [(self.visit(type), name) for type, name in struct.members]
José Fonsecac9edb832010-11-20 09:03:10 +0000449 return Struct(struct.name, members)
450
451 def visit_array(self, array):
452 type = self.visit(array.type)
453 return Array(type, array.length)
454
José Fonseca885f2652010-11-20 11:22:25 +0000455 def visit_blob(self, blob):
456 type = self.visit(blob.type)
457 return Blob(type, blob.size)
458
José Fonsecac9edb832010-11-20 09:03:10 +0000459 def visit_enum(self, enum):
460 return enum
461
462 def visit_bitmask(self, bitmask):
463 type = self.visit(bitmask.type)
464 return Bitmask(type, bitmask.values)
465
466 def visit_pointer(self, pointer):
467 type = self.visit(pointer.type)
468 return Pointer(type)
469
José Fonseca50d78d82010-11-23 22:13:14 +0000470 def visit_handle(self, handle):
471 type = self.visit(handle.type)
José Fonseca8a844ae2010-12-06 18:50:52 +0000472 return Handle(handle.name, type, range=handle.range, key=handle.key)
José Fonseca50d78d82010-11-23 22:13:14 +0000473
José Fonsecac9edb832010-11-20 09:03:10 +0000474 def visit_alias(self, alias):
475 type = self.visit(alias.type)
476 return Alias(alias.expr, type)
477
478 def visit_opaque(self, opaque):
479 return opaque
480
José Fonseca16d46dd2011-10-13 09:52:52 +0100481 def visit_polymorphic(self, polymorphic):
482 default_type = self.visit(polymorphic.default_type)
483 switch_expr = polymorphic.switch_expr
484 switch_types = [(expr, self.visit(type)) for expr, type in polymorphic.switch_types]
485 return Polymorphic(default_type, switch_expr, switch_types)
486
José Fonsecac9edb832010-11-20 09:03:10 +0000487
José Fonsecae6a50bd2010-11-24 10:12:22 +0000488class Collector(Visitor):
489 '''Collect.'''
490
491 def __init__(self):
492 self.__visited = set()
493 self.types = []
494
495 def visit(self, type):
496 if type in self.__visited:
497 return
498 self.__visited.add(type)
499 Visitor.visit(self, type)
500 self.types.append(type)
501
502 def visit_void(self, literal):
503 pass
504
505 def visit_literal(self, literal):
506 pass
507
508 def visit_string(self, string):
509 pass
510
511 def visit_const(self, const):
512 self.visit(const.type)
513
514 def visit_struct(self, struct):
515 for type, name in struct.members:
516 self.visit(type)
517
518 def visit_array(self, array):
519 self.visit(array.type)
520
521 def visit_blob(self, array):
522 pass
523
524 def visit_enum(self, enum):
525 pass
526
527 def visit_bitmask(self, bitmask):
528 self.visit(bitmask.type)
529
530 def visit_pointer(self, pointer):
531 self.visit(pointer.type)
532
533 def visit_handle(self, handle):
534 self.visit(handle.type)
535
536 def visit_alias(self, alias):
537 self.visit(alias.type)
538
539 def visit_opaque(self, opaque):
540 pass
541
542 def visit_interface(self, interface):
José Fonseca87d1cc62010-11-29 15:57:25 +0000543 if interface.base is not None:
544 self.visit(interface.base)
545 for method in interface.itermethods():
546 for arg in method.args:
547 self.visit(arg.type)
548 self.visit(method.type)
José Fonsecae6a50bd2010-11-24 10:12:22 +0000549
José Fonseca16d46dd2011-10-13 09:52:52 +0100550 def visit_polymorphic(self, polymorphic):
551 self.visit(polymorphic.default_type)
552 for expr, type in polymorphic.switch_types:
553 self.visit(type)
554
José Fonseca8fbdd3a2010-11-23 20:55:07 +0000555
556class API:
557
José Fonseca68ec4122011-02-20 11:25:25 +0000558 def __init__(self, name = None):
José Fonseca8fbdd3a2010-11-23 20:55:07 +0000559 self.name = name
560 self.headers = []
José Fonseca8fbdd3a2010-11-23 20:55:07 +0000561 self.functions = []
562 self.interfaces = []
563
José Fonsecae6a50bd2010-11-24 10:12:22 +0000564 def all_types(self):
565 collector = Collector()
566 for function in self.functions:
567 for arg in function.args:
568 collector.visit(arg.type)
569 collector.visit(function.type)
570 for interface in self.interfaces:
571 collector.visit(interface)
José Fonseca87d1cc62010-11-29 15:57:25 +0000572 for method in interface.itermethods():
José Fonsecae6a50bd2010-11-24 10:12:22 +0000573 for arg in method.args:
574 collector.visit(arg.type)
575 collector.visit(method.type)
576 return collector.types
José Fonseca8fbdd3a2010-11-23 20:55:07 +0000577
578 def add_function(self, function):
579 self.functions.append(function)
José Fonseca8fbdd3a2010-11-23 20:55:07 +0000580
581 def add_functions(self, functions):
582 for function in functions:
583 self.add_function(function)
584
585 def add_interface(self, interface):
586 self.interfaces.append(interface)
587
588 def add_interfaces(self, interfaces):
589 self.interfaces.extend(interfaces)
590
José Fonseca68ec4122011-02-20 11:25:25 +0000591 def add_api(self, api):
592 self.headers.extend(api.headers)
593 self.add_functions(api.functions)
594 self.add_interfaces(api.interfaces)
595
José Fonsecaeccec3e2011-02-20 09:01:25 +0000596 def get_function_by_name(self, name):
597 for function in self.functions:
598 if function.name == name:
599 return function
600 return None
601
José Fonseca8fbdd3a2010-11-23 20:55:07 +0000602
José Fonseca51c1ef82010-11-15 16:09:14 +0000603Bool = Literal("bool", "Bool")
604SChar = Literal("signed char", "SInt")
605UChar = Literal("unsigned char", "UInt")
606Short = Literal("short", "SInt")
607Int = Literal("int", "SInt")
608Long = Literal("long", "SInt")
609LongLong = Literal("long long", "SInt")
610UShort = Literal("unsigned short", "UInt")
611UInt = Literal("unsigned int", "UInt")
612ULong = Literal("unsigned long", "UInt")
José Fonseca28f034f2010-11-22 20:31:25 +0000613ULongLong = Literal("unsigned long long", "UInt")
José Fonseca51c1ef82010-11-15 16:09:14 +0000614Float = Literal("float", "Float")
José Fonseca9ff74442011-05-07 01:17:49 +0100615Double = Literal("double", "Double")
José Fonseca51c1ef82010-11-15 16:09:14 +0000616SizeT = Literal("size_t", "UInt")
617WString = Literal("wchar_t *", "WString")
José Fonsecad626cf42008-07-07 07:43:16 +0900618
José Fonseca2250a0e2010-11-26 15:01:29 +0000619Int8 = Literal("int8_t", "SInt")
620UInt8 = Literal("uint8_t", "UInt")
621Int16 = Literal("int16_t", "SInt")
622UInt16 = Literal("uint16_t", "UInt")
623Int32 = Literal("int32_t", "SInt")
624UInt32 = Literal("uint32_t", "UInt")
625Int64 = Literal("int64_t", "SInt")
626UInt64 = Literal("uint64_t", "UInt")