ast.py 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275
  1. # -*- Mode: Python -*-
  2. # GObject-Introspection - a framework for introspecting GObject libraries
  3. # Copyright (C) 2008 Johan Dahlin
  4. # Copyright (C) 2008, 2009 Red Hat, Inc.
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Lesser General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public
  17. # License along with this library; if not, write to the
  18. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. # Boston, MA 02111-1307, USA.
  20. #
  21. from __future__ import absolute_import
  22. from __future__ import division
  23. from __future__ import print_function
  24. from __future__ import unicode_literals
  25. import copy
  26. import operator
  27. from itertools import chain
  28. from . import message
  29. from .collections import OrderedDict
  30. from .message import Position
  31. from .utils import to_underscores
  32. class Type(object):
  33. """
  34. A Type can be either:
  35. * A reference to a node (target_giname)
  36. * A reference to a "fundamental" type like 'utf8'
  37. * A "foreign" type - this can be any string."
  38. If none are specified, then it's in an "unresolved" state. An
  39. unresolved type can have two data sources; a "ctype" which comes
  40. from a C type string, or a gtype_name (from g_type_name()).
  41. """
  42. def __init__(self,
  43. ctype=None,
  44. gtype_name=None,
  45. target_fundamental=None,
  46. target_giname=None,
  47. target_foreign=None,
  48. _target_unknown=False,
  49. is_const=False,
  50. origin_symbol=None,
  51. complete_ctype=None):
  52. self.ctype = ctype
  53. self.gtype_name = gtype_name
  54. self.origin_symbol = origin_symbol
  55. if _target_unknown:
  56. assert isinstance(self, TypeUnknown)
  57. elif target_fundamental:
  58. assert target_giname is None
  59. assert target_foreign is None
  60. elif target_giname:
  61. assert '.' in target_giname
  62. assert target_fundamental is None
  63. assert target_foreign is None
  64. elif target_foreign:
  65. assert ctype is not None
  66. assert target_giname is None
  67. assert target_fundamental is None
  68. else:
  69. assert (ctype is not None) or (gtype_name is not None)
  70. self.target_fundamental = target_fundamental
  71. self.target_giname = target_giname
  72. self.target_foreign = target_foreign
  73. self.is_const = is_const
  74. self.complete_ctype = complete_ctype
  75. @property
  76. def resolved(self):
  77. return (self.target_fundamental or
  78. self.target_giname or
  79. self.target_foreign)
  80. @property
  81. def unresolved_string(self):
  82. if self.ctype:
  83. return self.ctype
  84. elif self.gtype_name:
  85. return self.gtype_name
  86. elif self.target_giname:
  87. return self.target_giname
  88. else:
  89. assert False
  90. @classmethod
  91. def create_from_gtype_name(cls, gtype_name):
  92. """Parse a GType name (as from g_type_name()), and return a
  93. Type instance. Note that this function performs namespace lookup,
  94. in contrast to the other create_type() functions."""
  95. # First, is it a fundamental?
  96. fundamental = type_names.get(gtype_name)
  97. if fundamental is not None:
  98. return cls(target_fundamental=fundamental.target_fundamental,
  99. ctype=fundamental.ctype)
  100. if gtype_name == 'GHashTable':
  101. return Map(TYPE_ANY, TYPE_ANY, gtype_name=gtype_name)
  102. elif gtype_name in ('GArray', 'GPtrArray', 'GByteArray'):
  103. return Array('GLib.' + gtype_name[1:], TYPE_ANY,
  104. gtype_name=gtype_name)
  105. elif gtype_name == 'GStrv':
  106. bare_utf8 = TYPE_STRING.clone()
  107. bare_utf8.ctype = None
  108. return Array(None, bare_utf8, ctype=None, gtype_name=gtype_name,
  109. is_const=False)
  110. return cls(gtype_name=gtype_name)
  111. def get_giname(self):
  112. assert self.target_giname is not None
  113. return self.target_giname.split('.')[1]
  114. def _compare(self, other, op):
  115. if self.target_fundamental:
  116. return op(self.target_fundamental, other.target_fundamental)
  117. elif self.target_giname:
  118. return op(self.target_giname, other.target_giname)
  119. elif self.target_foreign:
  120. return op(self.target_foreign, other.target_foreign)
  121. else:
  122. return op(self.ctype, other.ctype)
  123. def __lt__(self, other):
  124. return self._compare(other, operator.lt)
  125. def __gt__(self, other):
  126. return self._compare(other, operator.gt)
  127. def __ge__(self, other):
  128. return self._compare(other, operator.ge)
  129. def __le__(self, other):
  130. return self._compare(other, operator.le)
  131. def __eq__(self, other):
  132. return self._compare(other, operator.eq)
  133. def __ne__(self, other):
  134. return self._compare(other, operator.ne)
  135. def __hash__(self):
  136. return hash((self.target_fundamental, self.target_giname,
  137. self.target_foreign, self.ctype))
  138. def is_equiv(self, typeval):
  139. """Return True if the specified types are compatible at
  140. an introspection level, disregarding their C types.
  141. A sequence may be given for typeval, in which case
  142. this function returns True if the type is compatible with
  143. any."""
  144. if isinstance(typeval, (list, tuple)):
  145. for val in typeval:
  146. if self.is_equiv(val):
  147. return True
  148. return False
  149. return self == typeval
  150. def clone(self):
  151. return Type(target_fundamental=self.target_fundamental,
  152. target_giname=self.target_giname,
  153. target_foreign=self.target_foreign,
  154. ctype=self.ctype,
  155. is_const=self.is_const)
  156. def __str__(self):
  157. if self.target_fundamental:
  158. return self.target_fundamental
  159. elif self.target_giname:
  160. return self.target_giname
  161. elif self.target_foreign:
  162. return self.target_foreign
  163. def __repr__(self):
  164. if self.target_fundamental:
  165. data = 'target_fundamental=%s, ' % (self.target_fundamental, )
  166. elif self.target_giname:
  167. data = 'target_giname=%s, ' % (self.target_giname, )
  168. elif self.target_foreign:
  169. data = 'target_foreign=%s, ' % (self.target_foreign, )
  170. else:
  171. data = ''
  172. return '%s(%sctype=%s)' % (self.__class__.__name__, data, self.ctype)
  173. class TypeUnknown(Type):
  174. def __init__(self):
  175. Type.__init__(self, _target_unknown=True)
  176. # Fundamental types, two special ones
  177. TYPE_NONE = Type(target_fundamental='none', ctype='void')
  178. TYPE_ANY = Type(target_fundamental='gpointer', ctype='gpointer')
  179. # Fundamental types, "Basic" types
  180. TYPE_BOOLEAN = Type(target_fundamental='gboolean', ctype='gboolean')
  181. TYPE_INT8 = Type(target_fundamental='gint8', ctype='gint8')
  182. TYPE_UINT8 = Type(target_fundamental='guint8', ctype='guint8')
  183. TYPE_INT16 = Type(target_fundamental='gint16', ctype='gint16')
  184. TYPE_UINT16 = Type(target_fundamental='guint16', ctype='guint16')
  185. TYPE_INT32 = Type(target_fundamental='gint32', ctype='gint32')
  186. TYPE_UINT32 = Type(target_fundamental='guint32', ctype='guint32')
  187. TYPE_INT64 = Type(target_fundamental='gint64', ctype='gint64')
  188. TYPE_UINT64 = Type(target_fundamental='guint64', ctype='guint64')
  189. TYPE_CHAR = Type(target_fundamental='gchar', ctype='gchar')
  190. TYPE_SHORT = Type(target_fundamental='gshort', ctype='gshort')
  191. TYPE_USHORT = Type(target_fundamental='gushort', ctype='gushort')
  192. TYPE_INT = Type(target_fundamental='gint', ctype='gint')
  193. TYPE_UINT = Type(target_fundamental='guint', ctype='guint')
  194. TYPE_LONG = Type(target_fundamental='glong', ctype='glong')
  195. TYPE_ULONG = Type(target_fundamental='gulong', ctype='gulong')
  196. TYPE_SIZE = Type(target_fundamental='gsize', ctype='gsize')
  197. TYPE_SSIZE = Type(target_fundamental='gssize', ctype='gssize')
  198. TYPE_INTPTR = Type(target_fundamental='gintptr', ctype='gintptr')
  199. TYPE_UINTPTR = Type(target_fundamental='guintptr', ctype='guintptr')
  200. # C99 types
  201. TYPE_LONG_LONG = Type(target_fundamental='long long', ctype='long long')
  202. TYPE_LONG_ULONG = Type(target_fundamental='unsigned long long',
  203. ctype='unsigned long long')
  204. TYPE_FLOAT = Type(target_fundamental='gfloat', ctype='gfloat')
  205. TYPE_DOUBLE = Type(target_fundamental='gdouble', ctype='gdouble')
  206. # ?
  207. TYPE_LONG_DOUBLE = Type(target_fundamental='long double',
  208. ctype='long double')
  209. TYPE_UNICHAR = Type(target_fundamental='gunichar', ctype='gunichar')
  210. # C types with semantics overlaid
  211. TYPE_GTYPE = Type(target_fundamental='GType', ctype='GType')
  212. TYPE_STRING = Type(target_fundamental='utf8', ctype='gchar*')
  213. TYPE_FILENAME = Type(target_fundamental='filename', ctype='gchar*')
  214. TYPE_VALIST = Type(target_fundamental='va_list', ctype='va_list')
  215. BASIC_TYPES = [TYPE_BOOLEAN, TYPE_INT8, TYPE_UINT8, TYPE_INT16,
  216. TYPE_UINT16, TYPE_INT32, TYPE_UINT32, TYPE_INT64,
  217. TYPE_UINT64, TYPE_CHAR, TYPE_SHORT, TYPE_USHORT, TYPE_INT,
  218. TYPE_UINT, TYPE_LONG, TYPE_ULONG, TYPE_SIZE, TYPE_SSIZE,
  219. TYPE_LONG_LONG, TYPE_LONG_ULONG,
  220. TYPE_FLOAT, TYPE_DOUBLE,
  221. TYPE_LONG_DOUBLE, TYPE_UNICHAR, TYPE_GTYPE]
  222. BASIC_GIR_TYPES = [TYPE_INTPTR, TYPE_UINTPTR]
  223. BASIC_GIR_TYPES.extend(BASIC_TYPES)
  224. GIR_TYPES = [TYPE_NONE, TYPE_ANY]
  225. GIR_TYPES.extend(BASIC_GIR_TYPES)
  226. GIR_TYPES.extend([TYPE_STRING, TYPE_FILENAME, TYPE_VALIST])
  227. # These are the only basic types that are guaranteed to
  228. # be as big as a pointer (and thus are allowed in GPtrArray)
  229. POINTER_TYPES = [TYPE_ANY, TYPE_INTPTR, TYPE_UINTPTR]
  230. INTROSPECTABLE_BASIC = list(GIR_TYPES)
  231. for v in [TYPE_NONE, TYPE_ANY,
  232. TYPE_LONG_LONG, TYPE_LONG_ULONG,
  233. TYPE_LONG_DOUBLE, TYPE_VALIST]:
  234. INTROSPECTABLE_BASIC.remove(v)
  235. type_names = {}
  236. for typeval in GIR_TYPES:
  237. type_names[typeval.target_fundamental] = typeval
  238. basic_type_names = {}
  239. for typeval in BASIC_GIR_TYPES:
  240. basic_type_names[typeval.target_fundamental] = typeval
  241. # C builtin
  242. type_names['char'] = TYPE_CHAR
  243. type_names['signed char'] = TYPE_INT8
  244. type_names['unsigned char'] = TYPE_UINT8
  245. type_names['short'] = TYPE_SHORT
  246. type_names['signed short'] = TYPE_SHORT
  247. type_names['unsigned short'] = TYPE_USHORT
  248. type_names['int'] = TYPE_INT
  249. type_names['signed int'] = TYPE_INT
  250. type_names['unsigned short int'] = TYPE_USHORT
  251. type_names['signed'] = TYPE_INT
  252. type_names['unsigned int'] = TYPE_UINT
  253. type_names['unsigned'] = TYPE_UINT
  254. type_names['long'] = TYPE_LONG
  255. type_names['signed long'] = TYPE_LONG
  256. type_names['unsigned long'] = TYPE_ULONG
  257. type_names['unsigned long int'] = TYPE_ULONG
  258. type_names['float'] = TYPE_FLOAT
  259. type_names['double'] = TYPE_DOUBLE
  260. type_names['char*'] = TYPE_STRING
  261. type_names['void*'] = TYPE_ANY
  262. type_names['void'] = TYPE_NONE
  263. # Also alias the signed one here
  264. type_names['signed long long'] = TYPE_LONG_LONG
  265. # C99 stdint exact width types
  266. type_names['int8_t'] = TYPE_INT8
  267. type_names['uint8_t'] = TYPE_UINT8
  268. type_names['int16_t'] = TYPE_INT16
  269. type_names['uint16_t'] = TYPE_UINT16
  270. type_names['int32_t'] = TYPE_INT32
  271. type_names['uint32_t'] = TYPE_UINT32
  272. type_names['int64_t'] = TYPE_INT64
  273. type_names['uint64_t'] = TYPE_UINT64
  274. # C99 stdbool
  275. type_names['bool'] = TYPE_BOOLEAN
  276. # A few additional GLib type aliases
  277. type_names['guchar'] = TYPE_UINT8
  278. type_names['gchararray'] = TYPE_STRING
  279. type_names['gchar*'] = TYPE_STRING
  280. type_names['goffset'] = TYPE_INT64
  281. type_names['gunichar2'] = TYPE_UINT16
  282. type_names['gsize'] = TYPE_SIZE
  283. type_names['gssize'] = TYPE_SSIZE
  284. type_names['gintptr'] = TYPE_INTPTR
  285. type_names['guintptr'] = TYPE_UINTPTR
  286. type_names['gconstpointer'] = TYPE_ANY
  287. # We used to support these; continue to do so
  288. type_names['any'] = TYPE_ANY
  289. type_names['boolean'] = TYPE_BOOLEAN
  290. type_names['uint'] = TYPE_UINT
  291. type_names['ulong'] = TYPE_ULONG
  292. # C stdio, used in GLib public headers; squash this for now here
  293. # until we move scanning into GLib and can (skip)
  294. type_names['FILE*'] = TYPE_ANY
  295. # One off C unix type definitions; note some of these may be GNU Libc
  296. # specific. If someone is actually bitten by this, feel free to do
  297. # the required configure goop to determine their size and replace
  298. # here.
  299. #
  300. # We don't want to encourage people to use these in their APIs because
  301. # they compromise the platform-independence that GLib gives you.
  302. # These are here mostly to avoid blowing when random platform-specific
  303. # methods are added under #ifdefs inside GLib itself. We could just (skip)
  304. # the relevant methods, but on the other hand, since these types are just
  305. # integers it's easy enough to expand them.
  306. type_names['size_t'] = type_names['gsize']
  307. type_names['ssize_t'] = type_names['gssize']
  308. type_names['time_t'] = TYPE_LONG
  309. type_names['off_t'] = type_names['gsize']
  310. type_names['pid_t'] = TYPE_INT
  311. type_names['uid_t'] = TYPE_UINT
  312. type_names['gid_t'] = TYPE_UINT
  313. type_names['dev_t'] = TYPE_INT
  314. type_names['socklen_t'] = TYPE_INT32
  315. # Obj-C
  316. type_names['id'] = TYPE_ANY
  317. # Parameters
  318. PARAM_DIRECTION_IN = 'in'
  319. PARAM_DIRECTION_OUT = 'out'
  320. PARAM_DIRECTION_INOUT = 'inout'
  321. PARAM_SCOPE_CALL = 'call'
  322. PARAM_SCOPE_ASYNC = 'async'
  323. PARAM_SCOPE_NOTIFIED = 'notified'
  324. PARAM_TRANSFER_NONE = 'none'
  325. PARAM_TRANSFER_CONTAINER = 'container'
  326. PARAM_TRANSFER_FULL = 'full'
  327. SIGNAL_FIRST = 'first'
  328. SIGNAL_LAST = 'last'
  329. SIGNAL_CLEANUP = 'cleanup'
  330. SIGNAL_MUST_COLLECT = 'must-collect'
  331. class Namespace(object):
  332. def __init__(self, name, version, identifier_prefixes=None, symbol_prefixes=None):
  333. self.name = name
  334. self.version = version
  335. if identifier_prefixes is not None:
  336. self.identifier_prefixes = identifier_prefixes
  337. else:
  338. self.identifier_prefixes = [name]
  339. if symbol_prefixes is not None:
  340. self.symbol_prefixes = symbol_prefixes
  341. else:
  342. ps = self.identifier_prefixes
  343. self.symbol_prefixes = [to_underscores(p).lower() for p in ps]
  344. # cache upper-cased versions
  345. self._ucase_symbol_prefixes = [p.upper() for p in self.symbol_prefixes]
  346. self.names = OrderedDict() # Maps from GIName -> node
  347. self.aliases = {} # Maps from GIName -> GIName
  348. self.type_names = {} # Maps from GTName -> node
  349. self.ctypes = {} # Maps from CType -> node
  350. self.symbols = {} # Maps from function symbols -> Function
  351. # Immediate includes only, not their transitive closure:
  352. self.includes = set() # Include
  353. self.shared_libraries = [] # str
  354. self.c_includes = [] # str
  355. self.exported_packages = [] # str
  356. def type_from_name(self, name, ctype=None):
  357. """Backwards compatibility method for older .gir files, which
  358. only use the 'name' attribute. If name refers to a fundamental type,
  359. create a Type object referncing it. If name is already a
  360. fully-qualified GIName like 'Foo.Bar', returns a Type targeting it .
  361. Otherwise a Type targeting name qualififed with the namespace name is
  362. returned."""
  363. if name in type_names:
  364. return Type(target_fundamental=name, ctype=ctype)
  365. if '.' in name:
  366. target = name
  367. else:
  368. target = '%s.%s' % (self.name, name)
  369. return Type(target_giname=target, ctype=ctype)
  370. def track(self, node):
  371. """Doesn't directly append the function to our own namespace,
  372. but adds it to things like ctypes, symbols, and type_names.
  373. """
  374. assert isinstance(node, Node)
  375. if node.namespace is self:
  376. return
  377. assert node.namespace is None
  378. node.namespace = self
  379. if isinstance(node, Alias):
  380. self.aliases[node.name] = node
  381. elif isinstance(node, Registered) and node.gtype_name is not None:
  382. self.type_names[node.gtype_name] = node
  383. elif isinstance(node, Function):
  384. self.symbols[node.symbol] = node
  385. if isinstance(node, (Compound, Class, Interface, Boxed)):
  386. for fn in chain(node.methods, node.static_methods, node.constructors):
  387. if not isinstance(fn, Function):
  388. continue
  389. fn.namespace = self
  390. self.symbols[fn.symbol] = fn
  391. if isinstance(node, (Compound, Class, Interface)):
  392. for f in node.fields:
  393. f.namespace = self
  394. if isinstance(node, (Class, Interface)):
  395. for m in chain(node.signals, node.properties):
  396. m.namespace = self
  397. if isinstance(node, (Enum, Bitfield)):
  398. for fn in node.static_methods:
  399. if not isinstance(fn, Function):
  400. continue
  401. fn.namespace = self
  402. self.symbols[fn.symbol] = fn
  403. for member in node.members:
  404. member.namespace = self
  405. self.symbols[member.symbol] = member
  406. if hasattr(node, 'ctype'):
  407. self.ctypes[node.ctype] = node
  408. def append(self, node, replace=False):
  409. previous = self.names.get(node.name)
  410. if previous is not None:
  411. if not replace:
  412. raise ValueError("Namespace conflict: %r" % (node, ))
  413. self.remove(previous)
  414. self.track(node)
  415. self.names[node.name] = node
  416. def remove(self, node):
  417. if isinstance(node, Alias):
  418. del self.aliases[node.name]
  419. elif isinstance(node, Registered) and node.gtype_name is not None:
  420. del self.type_names[node.gtype_name]
  421. if hasattr(node, 'ctype'):
  422. del self.ctypes[node.ctype]
  423. if isinstance(node, Function):
  424. del self.symbols[node.symbol]
  425. node.namespace = None
  426. self.names.pop(node.name, None)
  427. def float(self, node):
  428. """Like remove(), but doesn't unset the node's namespace
  429. back-reference, and it's still possible to look up
  430. functions via get_by_symbol()."""
  431. if isinstance(node, Function):
  432. symbol = node.symbol
  433. self.remove(node)
  434. self.symbols[symbol] = node
  435. node.namespace = self
  436. def __iter__(self):
  437. return iter(self.names)
  438. def items(self):
  439. return self.names.items()
  440. def values(self):
  441. return self.names.values()
  442. def get(self, name):
  443. return self.names.get(name)
  444. def get_by_ctype(self, ctype):
  445. return self.ctypes.get(ctype)
  446. def get_by_symbol(self, symbol):
  447. return self.symbols.get(symbol)
  448. def walk(self, callback):
  449. for node in self.values():
  450. node.walk(callback, [])
  451. class Include(object):
  452. def __init__(self, name, version):
  453. self.name = name
  454. self.version = version
  455. @classmethod
  456. def from_string(cls, string):
  457. return cls(*string.split('-', 1))
  458. def _compare(self, other, op):
  459. return op((self.name, self.version), (other.name, other.version))
  460. def __lt__(self, other):
  461. return self._compare(other, operator.lt)
  462. def __gt__(self, other):
  463. return self._compare(other, operator.gt)
  464. def __ge__(self, other):
  465. return self._compare(other, operator.ge)
  466. def __le__(self, other):
  467. return self._compare(other, operator.le)
  468. def __eq__(self, other):
  469. return self._compare(other, operator.eq)
  470. def __ne__(self, other):
  471. return self._compare(other, operator.ne)
  472. def __hash__(self):
  473. return hash(str(self))
  474. def __str__(self):
  475. return '%s-%s' % (self.name, self.version)
  476. class Annotated(object):
  477. """An object which has a few generic metadata
  478. properties."""
  479. def __init__(self):
  480. self.version = None
  481. self.version_doc = None
  482. self.skip = False
  483. self.introspectable = True
  484. self.attributes = OrderedDict()
  485. self.stability = None
  486. self.stability_doc = None
  487. self.deprecated = None
  488. self.deprecated_doc = None
  489. self.doc = None
  490. class Node(Annotated):
  491. """A node is a type of object which is uniquely identified by its
  492. (namespace, name) pair. When combined with a ., this is called a
  493. GIName. It's possible for nodes to contain or point to other nodes."""
  494. c_name = property(lambda self: self.namespace.name + self.name)
  495. gi_name = property(lambda self: '%s.%s' % (self.namespace.name, self.name))
  496. def __init__(self, name=None):
  497. Annotated.__init__(self)
  498. self.namespace = None # Should be set later by Namespace.append()
  499. self.name = name
  500. self.foreign = False
  501. self.file_positions = set()
  502. self._parent = None
  503. def _get_parent(self):
  504. if self._parent is not None:
  505. return self._parent
  506. else:
  507. return self.namespace
  508. def _set_parent(self, value):
  509. self._parent = value
  510. parent = property(_get_parent, _set_parent)
  511. def create_type(self):
  512. """Create a Type object referencing this node."""
  513. assert self.namespace is not None
  514. return Type(target_giname=('%s.%s' % (self.namespace.name, self.name)))
  515. def _compare(self, other, op):
  516. return op((self.namespace, self.name), (other.namespace, other.name))
  517. def __lt__(self, other):
  518. return self._compare(other, operator.lt)
  519. def __gt__(self, other):
  520. return self._compare(other, operator.gt)
  521. def __ge__(self, other):
  522. return self._compare(other, operator.ge)
  523. def __le__(self, other):
  524. return self._compare(other, operator.le)
  525. def __eq__(self, other):
  526. return self._compare(other, operator.eq)
  527. def __ne__(self, other):
  528. return self._compare(other, operator.ne)
  529. def __hash__(self):
  530. return hash((self.namespace, self.name))
  531. def __repr__(self):
  532. return "%s('%s')" % (self.__class__.__name__, self.name)
  533. def inherit_file_positions(self, node):
  534. self.file_positions.update(node.file_positions)
  535. def add_file_position(self, position):
  536. self.file_positions.add(position)
  537. def add_symbol_reference(self, symbol):
  538. if symbol.source_filename:
  539. self.add_file_position(Position(symbol.source_filename, symbol.line))
  540. def walk(self, callback, chain):
  541. res = callback(self, chain)
  542. assert res in (True, False), "Walk function must return boolean, not %r" % (res, )
  543. if not res:
  544. return False
  545. chain.append(self)
  546. self._walk(callback, chain)
  547. chain.pop()
  548. def _walk(self, callback, chain):
  549. pass
  550. class Registered:
  551. """A node that (possibly) has gtype_name and get_type."""
  552. def __init__(self, gtype_name, get_type):
  553. assert (gtype_name is None and get_type is None) or \
  554. (gtype_name is not None and get_type is not None)
  555. self.gtype_name = gtype_name
  556. self.get_type = get_type
  557. class Callable(Node):
  558. def __init__(self, name, retval, parameters, throws):
  559. Node.__init__(self, name)
  560. self.retval = retval
  561. self.parameters = parameters
  562. self.throws = not not throws
  563. self.instance_parameter = None # Parameter
  564. self.parent = None # A Class or Interface
  565. def _get_retval(self):
  566. return self._retval
  567. def _set_retval(self, value):
  568. self._retval = value
  569. if self._retval is not None:
  570. self._retval.parent = self
  571. retval = property(_get_retval, _set_retval)
  572. def _get_instance_parameter(self):
  573. return self._instance_parameter
  574. def _set_instance_parameter(self, value):
  575. self._instance_parameter = value
  576. if value is not None:
  577. value.parent = self
  578. instance_parameter = property(_get_instance_parameter,
  579. _set_instance_parameter)
  580. def _get_parameters(self):
  581. return self._parameters
  582. def _set_parameters(self, value):
  583. self._parameters = value
  584. for param in self._parameters:
  585. param.parent = self
  586. parameters = property(_get_parameters, _set_parameters)
  587. # Returns all parameters, including the instance parameter
  588. @property
  589. def all_parameters(self):
  590. if self.instance_parameter is not None:
  591. return [self.instance_parameter] + self.parameters
  592. else:
  593. return self.parameters
  594. def get_parameter_index(self, name):
  595. for i, parameter in enumerate(self.parameters):
  596. if parameter.argname == name:
  597. return i
  598. raise ValueError("Unknown argument %s" % (name, ))
  599. def get_parameter(self, name):
  600. for parameter in self.all_parameters:
  601. if parameter.argname == name:
  602. return parameter
  603. raise ValueError("Unknown argument %s" % (name, ))
  604. class Function(Callable):
  605. def __init__(self, name, retval, parameters, throws, symbol):
  606. Callable.__init__(self, name, retval, parameters, throws)
  607. self.symbol = symbol
  608. self.is_method = False
  609. self.is_constructor = False
  610. self.shadowed_by = None # C symbol string
  611. self.shadows = None # C symbol string
  612. self.moved_to = None # namespaced function name string
  613. self.internal_skipped = False # if True, this func will not be written to GIR
  614. def clone(self):
  615. clone = copy.copy(self)
  616. # copy the parameters array so a change to self.parameters does not
  617. # influence clone.parameters.
  618. clone.parameters = self.parameters[:]
  619. for param in clone.parameters:
  620. param.parent = clone
  621. return clone
  622. def is_type_meta_function(self):
  623. # Named correctly
  624. if not (self.name.endswith('_get_type') or self.name.endswith('_get_gtype')):
  625. return False
  626. # Doesn't have any parameters
  627. if self.parameters:
  628. return False
  629. # Returns GType
  630. rettype = self.retval.type
  631. if (not rettype.is_equiv(TYPE_GTYPE) and rettype.target_giname != 'Gtk.Type'):
  632. message.warn("function '%s' returns '%r', not a GType" % (self.name, rettype))
  633. return False
  634. return True
  635. class ErrorQuarkFunction(Function):
  636. def __init__(self, name, retval, parameters, throws, symbol, error_domain):
  637. Function.__init__(self, name, retval, parameters, throws, symbol)
  638. self.error_domain = error_domain
  639. class VFunction(Callable):
  640. def __init__(self, name, retval, parameters, throws):
  641. Callable.__init__(self, name, retval, parameters, throws)
  642. self.invoker = None
  643. @classmethod
  644. def from_callback(cls, name, cb):
  645. obj = cls(name, cb.retval, cb.parameters[1:],
  646. cb.throws)
  647. return obj
  648. class Varargs(Type):
  649. def __init__(self):
  650. Type.__init__(self, '<varargs>', target_fundamental='<varargs>')
  651. class Array(Type):
  652. C = '<c>'
  653. GLIB_ARRAY = 'GLib.Array'
  654. GLIB_BYTEARRAY = 'GLib.ByteArray'
  655. GLIB_PTRARRAY = 'GLib.PtrArray'
  656. def __init__(self, array_type, element_type, **kwargs):
  657. Type.__init__(self, target_fundamental='<array>',
  658. **kwargs)
  659. if (array_type is None or array_type == self.C):
  660. self.array_type = self.C
  661. else:
  662. assert array_type in (self.GLIB_ARRAY,
  663. self.GLIB_BYTEARRAY,
  664. self.GLIB_PTRARRAY), array_type
  665. self.array_type = array_type
  666. assert isinstance(element_type, Type)
  667. self.element_type = element_type
  668. self.zeroterminated = True
  669. self.length_param_name = None
  670. self.size = None
  671. def clone(self):
  672. arr = Array(self.array_type, self.element_type)
  673. arr.zeroterminated = self.zeroterminated
  674. arr.length_param_name = self.length_param_name
  675. arr.size = self.size
  676. return arr
  677. class List(Type):
  678. def __init__(self, name, element_type, **kwargs):
  679. Type.__init__(self, target_fundamental='<list>',
  680. **kwargs)
  681. self.name = name
  682. assert isinstance(element_type, Type)
  683. self.element_type = element_type
  684. def clone(self):
  685. return List(self.name, self.element_type)
  686. class Map(Type):
  687. def __init__(self, key_type, value_type, **kwargs):
  688. Type.__init__(self, target_fundamental='<map>', **kwargs)
  689. assert isinstance(key_type, Type)
  690. self.key_type = key_type
  691. assert isinstance(value_type, Type)
  692. self.value_type = value_type
  693. def clone(self):
  694. return Map(self.key_type, self.value_type)
  695. class Alias(Node):
  696. def __init__(self, name, target, ctype=None):
  697. Node.__init__(self, name)
  698. self.target = target
  699. self.ctype = ctype
  700. class TypeContainer(Annotated):
  701. """A fundamental base class for Return and Parameter."""
  702. def __init__(self, typenode, nullable, not_nullable, transfer, direction):
  703. Annotated.__init__(self)
  704. self.type = typenode
  705. self.nullable = nullable
  706. self.not_nullable = not_nullable
  707. self.direction = direction
  708. if transfer is not None:
  709. self.transfer = transfer
  710. elif typenode.is_const:
  711. self.transfer = PARAM_TRANSFER_NONE
  712. else:
  713. self.transfer = None
  714. class Parameter(TypeContainer):
  715. """An argument to a function."""
  716. def __init__(self, argname, typenode, direction=None,
  717. transfer=None, nullable=False, optional=False,
  718. allow_none=False, scope=None,
  719. caller_allocates=False, not_nullable=False):
  720. TypeContainer.__init__(self, typenode, nullable, not_nullable,
  721. transfer, direction)
  722. self.argname = argname
  723. self.optional = optional
  724. self.parent = None # A Callable
  725. if allow_none:
  726. if self.direction == PARAM_DIRECTION_OUT:
  727. self.optional = True
  728. else:
  729. self.nullable = True
  730. self.scope = scope
  731. self.caller_allocates = caller_allocates
  732. self.closure_name = None
  733. self.destroy_name = None
  734. @property
  735. def name(self):
  736. return self.argname
  737. class Return(TypeContainer):
  738. """A return value from a function."""
  739. def __init__(self, rtype, nullable=False, not_nullable=False,
  740. transfer=None):
  741. TypeContainer.__init__(self, rtype, nullable, not_nullable, transfer,
  742. direction=PARAM_DIRECTION_OUT)
  743. self.parent = None # A Callable
  744. class Enum(Node, Registered):
  745. def __init__(self, name, ctype,
  746. gtype_name=None,
  747. get_type=None,
  748. c_symbol_prefix=None,
  749. members=None):
  750. Node.__init__(self, name)
  751. Registered.__init__(self, gtype_name, get_type)
  752. self.c_symbol_prefix = c_symbol_prefix
  753. self.ctype = ctype
  754. self.members = members
  755. for member in members:
  756. member.parent = self
  757. # Associated error domain name
  758. self.error_domain = None
  759. self.static_methods = []
  760. def _walk(self, callback, chain):
  761. for meth in self.static_methods:
  762. meth.walk(callback, chain)
  763. class Bitfield(Node, Registered):
  764. def __init__(self, name, ctype,
  765. gtype_name=None,
  766. c_symbol_prefix=None,
  767. get_type=None,
  768. members=None):
  769. Node.__init__(self, name)
  770. Registered.__init__(self, gtype_name, get_type)
  771. self.ctype = ctype
  772. self.c_symbol_prefix = c_symbol_prefix
  773. self.members = members
  774. for member in members:
  775. member.parent = self
  776. self.static_methods = []
  777. def _walk(self, callback, chain):
  778. for meth in self.static_methods:
  779. meth.walk(callback, chain)
  780. class Member(Annotated):
  781. def __init__(self, name, value, symbol, nick):
  782. Annotated.__init__(self)
  783. self.name = name
  784. self.value = value
  785. self.symbol = symbol
  786. self.nick = nick
  787. self.parent = None
  788. def _compare(self, other, op):
  789. return op(self.name, other.name)
  790. def __lt__(self, other):
  791. return self._compare(other, operator.lt)
  792. def __gt__(self, other):
  793. return self._compare(other, operator.gt)
  794. def __ge__(self, other):
  795. return self._compare(other, operator.ge)
  796. def __le__(self, other):
  797. return self._compare(other, operator.le)
  798. def __eq__(self, other):
  799. return self._compare(other, operator.eq)
  800. def __ne__(self, other):
  801. return self._compare(other, operator.ne)
  802. def __hash__(self):
  803. return hash(self.name)
  804. def __repr__(self):
  805. return "%s('%s')" % (self.__class__.__name__, self.name)
  806. class Compound(Node, Registered):
  807. def __init__(self, name,
  808. ctype=None,
  809. gtype_name=None,
  810. get_type=None,
  811. c_symbol_prefix=None,
  812. disguised=False,
  813. tag_name=None):
  814. Node.__init__(self, name)
  815. Registered.__init__(self, gtype_name, get_type)
  816. self.ctype = ctype
  817. self.methods = []
  818. self.static_methods = []
  819. self.fields = []
  820. self.constructors = []
  821. self.disguised = disguised
  822. self.gtype_name = gtype_name
  823. self.get_type = get_type
  824. self.c_symbol_prefix = c_symbol_prefix
  825. self.tag_name = tag_name
  826. def add_gtype(self, gtype_name, get_type):
  827. self.gtype_name = gtype_name
  828. self.get_type = get_type
  829. self.namespace.type_names[gtype_name] = self
  830. def _walk(self, callback, chain):
  831. for ctor in self.constructors:
  832. ctor.walk(callback, chain)
  833. for func in self.methods:
  834. func.walk(callback, chain)
  835. for func in self.static_methods:
  836. func.walk(callback, chain)
  837. for field in self.fields:
  838. if field.anonymous_node is not None:
  839. field.anonymous_node.walk(callback, chain)
  840. def get_field(self, name):
  841. for field in self.fields:
  842. if field.name == name:
  843. return field
  844. raise ValueError("Unknown field %s" % (name, ))
  845. def get_field_index(self, name):
  846. for i, field in enumerate(self.fields):
  847. if field.name == name:
  848. return i
  849. raise ValueError("Unknown field %s" % (name, ))
  850. class Field(Annotated):
  851. def __init__(self, name, typenode, readable, writable, bits=None,
  852. anonymous_node=None):
  853. Annotated.__init__(self)
  854. assert (typenode or anonymous_node)
  855. self.name = name
  856. self.type = typenode
  857. self.readable = readable
  858. self.writable = writable
  859. self.bits = bits
  860. self.anonymous_node = anonymous_node
  861. self.private = False
  862. self.namespace = None
  863. self.parent = None # a compound
  864. def _compare(self, other, op):
  865. return op(self.name, other.name)
  866. def __lt__(self, other):
  867. return self._compare(other, operator.lt)
  868. def __gt__(self, other):
  869. return self._compare(other, operator.gt)
  870. def __ge__(self, other):
  871. return self._compare(other, operator.ge)
  872. def __le__(self, other):
  873. return self._compare(other, operator.le)
  874. def __eq__(self, other):
  875. return self._compare(other, operator.eq)
  876. def __ne__(self, other):
  877. return self._compare(other, operator.ne)
  878. def __hash__(self):
  879. return hash(self.name)
  880. def __repr__(self):
  881. return "%s('%s')" % (self.__class__.__name__, self.name)
  882. class Record(Compound):
  883. def __init__(self, name,
  884. ctype=None,
  885. gtype_name=None,
  886. get_type=None,
  887. c_symbol_prefix=None,
  888. disguised=False,
  889. tag_name=None):
  890. Compound.__init__(self, name,
  891. ctype=ctype,
  892. gtype_name=gtype_name,
  893. get_type=get_type,
  894. c_symbol_prefix=c_symbol_prefix,
  895. disguised=disguised,
  896. tag_name=tag_name)
  897. # If non-None, this record defines the FooClass C structure
  898. # for some Foo GObject (or similar for GInterface)
  899. self.is_gtype_struct_for = None
  900. class Union(Compound):
  901. def __init__(self, name,
  902. ctype=None,
  903. gtype_name=None,
  904. get_type=None,
  905. c_symbol_prefix=None,
  906. disguised=False,
  907. tag_name=None):
  908. Compound.__init__(self, name,
  909. ctype=ctype,
  910. gtype_name=gtype_name,
  911. get_type=get_type,
  912. c_symbol_prefix=c_symbol_prefix,
  913. disguised=disguised,
  914. tag_name=tag_name)
  915. class Boxed(Node, Registered):
  916. """A boxed type with no known associated structure/union."""
  917. def __init__(self, name,
  918. gtype_name=None,
  919. get_type=None,
  920. c_symbol_prefix=None):
  921. assert gtype_name is not None
  922. assert get_type is not None
  923. Node.__init__(self, name)
  924. Registered.__init__(self, gtype_name, get_type)
  925. if get_type is not None:
  926. assert c_symbol_prefix is not None
  927. self.c_symbol_prefix = c_symbol_prefix
  928. self.constructors = []
  929. self.methods = []
  930. self.static_methods = []
  931. def _walk(self, callback, chain):
  932. for ctor in self.constructors:
  933. ctor.walk(callback, chain)
  934. for meth in self.methods:
  935. meth.walk(callback, chain)
  936. for meth in self.static_methods:
  937. meth.walk(callback, chain)
  938. class Signal(Callable):
  939. def __init__(self, name, retval, parameters, when=None,
  940. no_recurse=False, detailed=False, action=False,
  941. no_hooks=False):
  942. Callable.__init__(self, name, retval, parameters, False)
  943. self.when = when
  944. self.no_recurse = no_recurse
  945. self.detailed = detailed
  946. self.action = action
  947. self.no_hooks = no_hooks
  948. class Class(Node, Registered):
  949. def __init__(self, name, parent_type,
  950. ctype=None,
  951. gtype_name=None,
  952. get_type=None,
  953. c_symbol_prefix=None,
  954. is_abstract=False):
  955. Node.__init__(self, name)
  956. Registered.__init__(self, gtype_name, get_type)
  957. self.ctype = ctype
  958. self.c_symbol_prefix = c_symbol_prefix
  959. self.parent_type = parent_type
  960. self.fundamental = False
  961. self.unref_func = None
  962. self.ref_func = None
  963. self.set_value_func = None
  964. self.get_value_func = None
  965. # When we're in the scanner, we keep around a list
  966. # of parents so that we can transparently fall back
  967. # if there are 'hidden' parents
  968. self.parent_chain = []
  969. self.glib_type_struct = None
  970. self.is_abstract = is_abstract
  971. self.methods = []
  972. self.virtual_methods = []
  973. self.static_methods = []
  974. self.interfaces = []
  975. self.constructors = []
  976. self.properties = []
  977. self.fields = []
  978. self.signals = []
  979. def _walk(self, callback, chain):
  980. for meth in self.methods:
  981. meth.walk(callback, chain)
  982. for meth in self.virtual_methods:
  983. meth.walk(callback, chain)
  984. for meth in self.static_methods:
  985. meth.walk(callback, chain)
  986. for ctor in self.constructors:
  987. ctor.walk(callback, chain)
  988. for field in self.fields:
  989. if field.anonymous_node:
  990. field.anonymous_node.walk(callback, chain)
  991. for sig in self.signals:
  992. sig.walk(callback, chain)
  993. for prop in self.properties:
  994. prop.walk(callback, chain)
  995. class Interface(Node, Registered):
  996. def __init__(self, name, parent_type,
  997. ctype=None,
  998. gtype_name=None,
  999. get_type=None,
  1000. c_symbol_prefix=None):
  1001. Node.__init__(self, name)
  1002. Registered.__init__(self, gtype_name, get_type)
  1003. self.ctype = ctype
  1004. self.c_symbol_prefix = c_symbol_prefix
  1005. self.parent_type = parent_type
  1006. self.parent_chain = []
  1007. self.methods = []
  1008. self.signals = []
  1009. self.static_methods = []
  1010. self.virtual_methods = []
  1011. self.glib_type_struct = None
  1012. self.properties = []
  1013. self.fields = []
  1014. self.prerequisites = []
  1015. # Not used yet, exists just to avoid an exception in
  1016. # Namespace.append()
  1017. self.constructors = []
  1018. def _walk(self, callback, chain):
  1019. for meth in self.methods:
  1020. meth.walk(callback, chain)
  1021. for meth in self.static_methods:
  1022. meth.walk(callback, chain)
  1023. for meth in self.virtual_methods:
  1024. meth.walk(callback, chain)
  1025. for field in self.fields:
  1026. if field.anonymous_node:
  1027. field.anonymous_node.walk(callback, chain)
  1028. for sig in self.signals:
  1029. sig.walk(callback, chain)
  1030. class Constant(Node):
  1031. def __init__(self, name, value_type, value, ctype):
  1032. Node.__init__(self, name)
  1033. self.value_type = value_type
  1034. self.value = value
  1035. self.ctype = ctype
  1036. class Property(Node):
  1037. def __init__(self, name, typeobj, readable, writable,
  1038. construct, construct_only, transfer=None):
  1039. Node.__init__(self, name)
  1040. self.type = typeobj
  1041. self.readable = readable
  1042. self.writable = writable
  1043. self.construct = construct
  1044. self.construct_only = construct_only
  1045. if transfer is None:
  1046. self.transfer = PARAM_TRANSFER_NONE
  1047. else:
  1048. self.transfer = transfer
  1049. self.parent = None # A Class or Interface
  1050. class Callback(Callable):
  1051. def __init__(self, name, retval, parameters, throws, ctype=None):
  1052. Callable.__init__(self, name, retval, parameters, throws)
  1053. self.ctype = ctype