testcodegen.py 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. # -*- Mode: Python -*-
  2. # GObject-Introspection - a framework for introspecting GObject libraries
  3. # Copyright (C) 2010 Red Hat, Inc.
  4. #
  5. # This library is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU Lesser General Public
  7. # License as published by the Free Software Foundation; either
  8. # version 2 of the License, or (at your option) any later version.
  9. #
  10. # This library is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. # Lesser General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Lesser General Public
  16. # License along with this library; if not, write to the
  17. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18. # Boston, MA 02111-1307, USA.
  19. #
  20. from __future__ import absolute_import
  21. from __future__ import division
  22. from __future__ import print_function
  23. from __future__ import unicode_literals
  24. import sys
  25. from . import ast
  26. from .codegen import CCodeGenerator
  27. if sys.version_info.major < 3:
  28. from StringIO import StringIO
  29. else:
  30. from io import StringIO
  31. DEFAULT_C_VALUES = {ast.TYPE_ANY: 'NULL',
  32. ast.TYPE_STRING: '""',
  33. ast.TYPE_FILENAME: '""',
  34. ast.TYPE_GTYPE: 'g_object_get_type ()'}
  35. def get_default_for_typeval(typeval):
  36. default = DEFAULT_C_VALUES.get(typeval)
  37. if default:
  38. return default
  39. return "0"
  40. def uscore_from_type(typeval):
  41. if typeval.target_fundamental:
  42. return typeval.target_fundamental.replace(' ', '_')
  43. elif typeval.target_giname:
  44. return typeval.target_giname.replace('.', '').lower()
  45. else:
  46. assert False, typeval
  47. class EverythingCodeGenerator(object):
  48. def __init__(self,
  49. out_h_filename,
  50. out_c_filename,
  51. function_decoration,
  52. include_first_header,
  53. include_last_header,
  54. include_first_src,
  55. include_last_src):
  56. self.namespace = ast.Namespace('Everything', '1.0')
  57. self.gen = CCodeGenerator(self.namespace,
  58. out_h_filename,
  59. out_c_filename,
  60. function_decoration,
  61. include_first_header,
  62. include_last_header,
  63. include_first_src,
  64. include_last_src)
  65. def write(self):
  66. types = [ast.TYPE_ANY]
  67. types.extend(ast.INTROSPECTABLE_BASIC)
  68. func = ast.Function('nullfunc',
  69. ast.Return(ast.TYPE_NONE, transfer=ast.PARAM_TRANSFER_NONE),
  70. [], False, self.gen.gen_symbol('nullfunc'))
  71. self.namespace.append(func)
  72. body = " return;\n"
  73. self.gen.set_function_body(func, body)
  74. # First pass, generate constant returns
  75. prefix = 'const return '
  76. for typeval in types:
  77. name = prefix + uscore_from_type(typeval)
  78. sym = self.gen.gen_symbol(name)
  79. func = ast.Function(name,
  80. ast.Return(typeval, transfer=ast.PARAM_TRANSFER_NONE),
  81. [], False, sym)
  82. self.namespace.append(func)
  83. default = get_default_for_typeval(typeval)
  84. body = " return %s;\n" % (default, )
  85. self.gen.set_function_body(func, body)
  86. # Void return, one parameter
  87. prefix = 'oneparam '
  88. for typeval in types:
  89. if typeval is ast.TYPE_NONE:
  90. continue
  91. name = prefix + uscore_from_type(typeval)
  92. sym = self.gen.gen_symbol(name)
  93. func = ast.Function(name,
  94. ast.Return(ast.TYPE_NONE, transfer=ast.PARAM_TRANSFER_NONE),
  95. [ast.Parameter('arg0', typeval, transfer=ast.PARAM_TRANSFER_NONE,
  96. direction=ast.PARAM_DIRECTION_IN)], False, sym)
  97. self.namespace.append(func)
  98. self.gen.set_function_body(func, " return;\n")
  99. # Void return, one (out) parameter
  100. prefix = 'one_outparam '
  101. for typeval in types:
  102. if typeval is ast.TYPE_NONE:
  103. continue
  104. name = prefix + uscore_from_type(typeval)
  105. sym = self.gen.gen_symbol(name)
  106. func = ast.Function(name,
  107. ast.Return(ast.TYPE_NONE, transfer=ast.PARAM_TRANSFER_NONE),
  108. [ast.Parameter('arg0', typeval, transfer=ast.PARAM_TRANSFER_NONE,
  109. direction=ast.PARAM_DIRECTION_OUT)], False, sym)
  110. self.namespace.append(func)
  111. body = StringIO('w')
  112. default = get_default_for_typeval(func.retval)
  113. body.write(" *arg0 = %s;\n" % (default, ))
  114. body.write(" return;\n")
  115. self.gen.set_function_body(func, body.getvalue())
  116. # Passthrough one parameter
  117. prefix = 'passthrough_one '
  118. for typeval in types:
  119. if typeval is ast.TYPE_NONE:
  120. continue
  121. name = prefix + uscore_from_type(typeval)
  122. sym = self.gen.gen_symbol(name)
  123. func = ast.Function(name, ast.Return(typeval, transfer=ast.PARAM_TRANSFER_NONE),
  124. [ast.Parameter('arg0', typeval, transfer=ast.PARAM_TRANSFER_NONE,
  125. direction=ast.PARAM_DIRECTION_IN)], False, sym)
  126. self.namespace.append(func)
  127. body = StringIO('w')
  128. default = get_default_for_typeval(func.retval)
  129. body.write(" return arg0;\n")
  130. self.gen.set_function_body(func, body.getvalue())
  131. self.gen.codegen()