scannermain.py 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. #!/usr/bin/env python
  2. # -*- Mode: Python -*-
  3. # GObject-Introspection - a framework for introspecting GObject libraries
  4. # Copyright (C) 2008-2010 Johan Dahlin
  5. # Copyright (C) 2009 Red Hat, Inc.
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  20. # 02110-1301, USA.
  21. #
  22. from __future__ import absolute_import
  23. from __future__ import division
  24. from __future__ import print_function
  25. from __future__ import unicode_literals
  26. import errno
  27. import optparse
  28. import os
  29. import shutil
  30. import stat
  31. import subprocess
  32. import sys
  33. import tempfile
  34. import platform
  35. from giscanner import message
  36. from giscanner.annotationparser import GtkDocCommentBlockParser
  37. from giscanner.ast import Include, Namespace
  38. from giscanner.dumper import compile_introspection_binary
  39. from giscanner.gdumpparser import GDumpParser, IntrospectionBinary
  40. from giscanner.introspectablepass import IntrospectablePass
  41. from giscanner.girparser import GIRParser
  42. from giscanner.girwriter import GIRWriter
  43. from giscanner.maintransformer import MainTransformer
  44. from giscanner.shlibs import resolve_shlibs
  45. from giscanner.sourcescanner import SourceScanner, ALL_EXTS
  46. from giscanner.transformer import Transformer
  47. from . import utils
  48. def process_cflags_begin(option, opt, value, parser):
  49. cflags = getattr(parser.values, option.dest)
  50. while len(parser.rargs) > 0 and parser.rargs[0] != '--cflags-end':
  51. arg = parser.rargs.pop(0)
  52. if arg == "-I" and parser.rargs and parser.rargs[0] != '--cflags-end':
  53. # This is a special case where there's a space between -I and the path.
  54. arg += parser.rargs.pop(0)
  55. cflags.append(utils.cflag_real_include_path(arg))
  56. def process_cflags_end(option, opt, value, parser):
  57. pass
  58. def process_cpp_includes(option, opt, value, parser):
  59. cpp_includes = getattr(parser.values, option.dest)
  60. cpp_includes.append(os.path.realpath(value))
  61. def get_preprocessor_option_group(parser):
  62. group = optparse.OptionGroup(parser, "Preprocessor options")
  63. group.add_option("", "--cflags-begin",
  64. help="Start preprocessor/compiler flags",
  65. dest="cflags", default=[],
  66. action="callback", callback=process_cflags_begin)
  67. group.add_option("", "--cflags-end",
  68. help="End preprocessor/compiler flags",
  69. action="callback", callback=process_cflags_end)
  70. group.add_option("-I", help="Pre-processor include file",
  71. dest="cpp_includes", default=[], type="string",
  72. action="callback", callback=process_cpp_includes)
  73. group.add_option("-D", help="Pre-processor define",
  74. action="append", dest="cpp_defines",
  75. default=[])
  76. group.add_option("-U", help="Pre-processor undefine",
  77. action="append", dest="cpp_undefines",
  78. default=[])
  79. group.add_option("-p", dest="", help="Ignored")
  80. return group
  81. def get_windows_option_group(parser):
  82. group = optparse.OptionGroup(parser, "Machine Dependent Options")
  83. group.add_option("-m", help="some machine dependent option",
  84. action="append", dest='m_option',
  85. default=[])
  86. return group
  87. def _get_option_parser():
  88. parser = optparse.OptionParser('%prog [options] sources')
  89. parser.add_option('', "--quiet",
  90. action="store_true", dest="quiet",
  91. default=False,
  92. help="If passed, do not print details of normal operation")
  93. parser.add_option("", "--format",
  94. action="store", dest="format",
  95. default="gir",
  96. help="format to use, one of gidl, gir")
  97. parser.add_option("-i", "--include",
  98. action="append", dest="includes", default=[],
  99. help="Add specified gir file as dependency")
  100. parser.add_option("", "--include-uninstalled",
  101. action="append", dest="includes_uninstalled", default=[],
  102. help=("""A file path to a dependency; only use this "
  103. "when building multiple .gir files inside a "
  104. "single module."""))
  105. parser.add_option("", "--add-include-path",
  106. action="append", dest="include_paths", default=[],
  107. help="include paths for other GIR files")
  108. parser.add_option("", "--program",
  109. action="store", dest="program", default=None,
  110. help="program to execute")
  111. parser.add_option("", "--use-binary-wrapper",
  112. action="store", dest="wrapper", default=None,
  113. help="wrapper to use for running programs (useful when cross-compiling)")
  114. parser.add_option("", "--use-ldd-wrapper",
  115. action="store", dest="ldd_wrapper", default=None,
  116. help="wrapper to use instead of ldd (useful when cross-compiling)")
  117. parser.add_option("", "--program-arg",
  118. action="append", dest="program_args", default=[],
  119. help="extra arguments to program")
  120. parser.add_option("", "--libtool",
  121. action="store", dest="libtool_path", default=None,
  122. help="full path to libtool")
  123. parser.add_option("", "--no-libtool",
  124. action="store_true", dest="nolibtool", default=False,
  125. help="do not use libtool")
  126. parser.add_option("", "--external-library",
  127. action="store_true", dest="external_library", default=False,
  128. help=("""If true, the library is located on the system,""" +
  129. """not in the current directory"""))
  130. parser.add_option("-l", "--library",
  131. action="append", dest="libraries", default=[],
  132. help="libraries of this unit")
  133. parser.add_option("-L", "--library-path",
  134. action="append", dest="library_paths", default=[],
  135. help="directories to search for libraries")
  136. parser.add_option("", "--header-only",
  137. action="store_true", dest="header_only", default=[],
  138. help="If specified, just generate a GIR for the given header files")
  139. parser.add_option("-n", "--namespace",
  140. action="store", dest="namespace_name",
  141. help=("name of namespace for this unit, also "
  142. "used to compute --identifier-prefix and --symbol-prefix"))
  143. parser.add_option("", "--nsversion",
  144. action="store", dest="namespace_version",
  145. help="version of namespace for this unit")
  146. parser.add_option("", "--strip-prefix",
  147. action="store", dest="strip_prefix",
  148. help="""Option --strip-prefix is deprecated, please see --identifier-prefix
  149. and --symbol-prefix.""")
  150. parser.add_option("", "--identifier-prefix",
  151. action="append", dest="identifier_prefixes", default=[],
  152. help="""Remove this prefix from C identifiers (structure typedefs, etc.).
  153. May be specified multiple times. This is also used as the default for --symbol-prefix if
  154. the latter is not specified.""")
  155. parser.add_option("", "--identifier-filter-cmd",
  156. action="store", dest="identifier_filter_cmd", default='',
  157. help='Filter identifiers (struct and union typedefs) through the given '
  158. 'shell command which will receive the identifier name as input '
  159. 'to stdin and is expected to output the filtered results to stdout.')
  160. parser.add_option("", "--symbol-prefix",
  161. action="append", dest="symbol_prefixes", default=[],
  162. help="Remove this prefix from C symbols (function names)")
  163. parser.add_option("", "--symbol-filter-cmd",
  164. action="store", dest="symbol_filter_cmd", default='',
  165. help='Filter symbols (function names) through the given '
  166. 'shell command which will receive the symbol name as input '
  167. 'to stdin and is expected to output the filtered results to stdout.')
  168. parser.add_option("", "--accept-unprefixed",
  169. action="store_true", dest="accept_unprefixed", default=False,
  170. help="""If specified, accept symbols and identifiers that do not
  171. match the namespace prefix.""")
  172. parser.add_option("", "--add-init-section",
  173. action="append", dest="init_sections", default=[],
  174. help="add extra initialization code in the introspection program")
  175. parser.add_option("-o", "--output",
  176. action="store", dest="output", default="-",
  177. help="output filename to write to, defaults to - (stdout)")
  178. parser.add_option("", "--pkg",
  179. action="append", dest="packages", default=[],
  180. help="pkg-config packages to get cflags from")
  181. parser.add_option("", "--pkg-export",
  182. action="append", dest="packages_export", default=[],
  183. help="Associated pkg-config packages for this library")
  184. parser.add_option('', "--warn-all",
  185. action="store_true", dest="warn_all", default=False,
  186. help="If true, enable all warnings for introspection")
  187. parser.add_option('', "--warn-error",
  188. action="store_true", dest="warn_fatal",
  189. help="Turn warnings into fatal errors")
  190. parser.add_option("-v", "--verbose",
  191. action="store_true", dest="verbose",
  192. help="be verbose")
  193. parser.add_option("", "--c-include",
  194. action="append", dest="c_includes", default=[],
  195. help="headers which should be included in C programs")
  196. parser.add_option("", "--filelist",
  197. action="store", dest="filelist", default=[],
  198. help="file containing headers and sources to be scanned")
  199. group = get_preprocessor_option_group(parser)
  200. parser.add_option_group(group)
  201. msystemenv = os.environ.get('MSYSTEM')
  202. if msystemenv and msystemenv.startswith('MINGW'):
  203. group = get_windows_option_group(parser)
  204. parser.add_option_group(group)
  205. # Private options
  206. parser.add_option('', "--generate-typelib-tests",
  207. action="store", dest="test_codegen", default=None,
  208. help=optparse.SUPPRESS_HELP)
  209. parser.add_option('', "--passthrough-gir",
  210. action="store", dest="passthrough_gir", default=None,
  211. help=optparse.SUPPRESS_HELP)
  212. parser.add_option('', "--reparse-validate",
  213. action="store_true", dest="reparse_validate_gir", default=False,
  214. help=optparse.SUPPRESS_HELP)
  215. parser.add_option("", "--typelib-xml",
  216. action="store_true", dest="typelib_xml",
  217. help=optparse.SUPPRESS_HELP)
  218. parser.add_option("", "--function-decoration",
  219. action="append", dest="function_decoration", default=[],
  220. help="Macro to decorate functions in generated code")
  221. parser.add_option("", "--include-first-in-header",
  222. action="append", dest="include_first_header", default=[],
  223. help="Header to include first in generated header")
  224. parser.add_option("", "--include-last-in-header",
  225. action="append", dest="include_last_header", default=[],
  226. help="Header to include after the other headers in generated header")
  227. parser.add_option("", "--include-first-in-src",
  228. action="append", dest="include_first_src", default=[],
  229. help="Header to include first in generated sources")
  230. parser.add_option("", "--include-last-in-src",
  231. action="append", dest="include_last_src", default=[],
  232. help="Header to include after the other headers in generated sources")
  233. return parser
  234. def _error(msg):
  235. raise SystemExit('ERROR: %s' % (msg, ))
  236. def passthrough_gir(path, f):
  237. parser = GIRParser()
  238. parser.parse(path)
  239. writer = GIRWriter(parser.get_namespace())
  240. f.write(writer.get_encoded_xml())
  241. def test_codegen(optstring,
  242. function_decoration,
  243. include_first_header,
  244. include_last_header,
  245. include_first_src,
  246. include_last_src):
  247. (namespace, out_h_filename, out_c_filename) = optstring.split(',')
  248. if namespace == 'Everything':
  249. from .testcodegen import EverythingCodeGenerator
  250. gen = EverythingCodeGenerator(out_h_filename,
  251. out_c_filename,
  252. function_decoration,
  253. include_first_header,
  254. include_last_header,
  255. include_first_src,
  256. include_last_src)
  257. gen.write()
  258. else:
  259. _error("Invaild namespace '%s'" % (namespace, ))
  260. return 0
  261. def process_options(output, allowed_flags):
  262. for option in output.split():
  263. for flag in allowed_flags:
  264. if not option.startswith(flag):
  265. continue
  266. yield option
  267. break
  268. def process_packages(options, packages):
  269. args = [os.environ.get('PKG_CONFIG', 'pkg-config'), '--cflags']
  270. args.extend(packages)
  271. output = subprocess.Popen(args,
  272. stdout=subprocess.PIPE).communicate()[0]
  273. if output is None:
  274. # the error output should have already appeared on our stderr,
  275. # so we just exit
  276. return 1
  277. output = output.decode('ascii')
  278. # Some pkg-config files on Windows have options we don't understand,
  279. # so we explicitly filter to only the ones we need.
  280. options_whitelist = ['-I', '-D', '-U', '-l', '-L']
  281. filtered_output = list(process_options(output, options_whitelist))
  282. parser = _get_option_parser()
  283. pkg_options, unused = parser.parse_args(filtered_output)
  284. options.cpp_includes.extend([os.path.realpath(f) for f in pkg_options.cpp_includes])
  285. options.cpp_defines.extend(pkg_options.cpp_defines)
  286. options.cpp_undefines.extend(pkg_options.cpp_undefines)
  287. def extract_filenames(args):
  288. filenames = []
  289. for arg in args:
  290. # We don't support real C++ parsing yet, but we should be able
  291. # to understand C API implemented in C++ files.
  292. if os.path.splitext(arg)[1] in ALL_EXTS:
  293. if not os.path.exists(arg):
  294. _error('%s: no such a file or directory' % (arg, ))
  295. # Make absolute, because we do comparisons inside scannerparser.c
  296. # against the absolute path that cpp will give us
  297. filenames.append(arg)
  298. return filenames
  299. def extract_filelist(options):
  300. filenames = []
  301. if not os.path.exists(options.filelist):
  302. _error('%s: no such filelist file' % (options.filelist, ))
  303. with open(options.filelist, "r") as filelist_file:
  304. lines = filelist_file.readlines()
  305. for line in lines:
  306. # We don't support real C++ parsing yet, but we should be able
  307. # to understand C API implemented in C++ files.
  308. filename = line.strip()
  309. if (filename.endswith('.c') or filename.endswith('.cpp')
  310. or filename.endswith('.cc') or filename.endswith('.cxx')
  311. or filename.endswith('.h') or filename.endswith('.hpp')
  312. or filename.endswith('.hxx')):
  313. if not os.path.exists(filename):
  314. _error('%s: Invalid filelist entry-no such file or directory' % (line, ))
  315. # Make absolute, because we do comparisons inside scannerparser.c
  316. # against the absolute path that cpp will give us
  317. filenames.append(filename)
  318. return filenames
  319. def create_namespace(options):
  320. if options.strip_prefix:
  321. print("""g-ir-scanner: warning: Option --strip-prefix has been deprecated;
  322. see --identifier-prefix and --symbol-prefix.""")
  323. options.identifier_prefixes.append(options.strip_prefix)
  324. # We do this dance because the empty list has different semantics from
  325. # None; if the user didn't specify the options, we want to use None so
  326. # the Namespace constructor picks the defaults.
  327. if options.identifier_prefixes:
  328. identifier_prefixes = options.identifier_prefixes
  329. else:
  330. identifier_prefixes = None
  331. if options.symbol_prefixes:
  332. for prefix in options.symbol_prefixes:
  333. # See Transformer._split_c_string_for_namespace_matches() for
  334. # why this check is needed
  335. if prefix.lower() != prefix:
  336. _error("Values for --symbol-prefix must be entirely lowercase")
  337. symbol_prefixes = options.symbol_prefixes
  338. else:
  339. symbol_prefixes = None
  340. return Namespace(options.namespace_name,
  341. options.namespace_version,
  342. identifier_prefixes=identifier_prefixes,
  343. symbol_prefixes=symbol_prefixes)
  344. def create_transformer(namespace, options):
  345. transformer = Transformer(namespace,
  346. accept_unprefixed=options.accept_unprefixed,
  347. identifier_filter_cmd=options.identifier_filter_cmd,
  348. symbol_filter_cmd=options.symbol_filter_cmd)
  349. transformer.set_include_paths(options.include_paths)
  350. if options.passthrough_gir or options.reparse_validate_gir:
  351. transformer.disable_cache()
  352. transformer.set_passthrough_mode()
  353. for include in options.includes:
  354. if os.sep in include:
  355. _error("Invalid include path '%s'" % (include, ))
  356. try:
  357. include_obj = Include.from_string(include)
  358. except:
  359. _error("Malformed include '%s'\n" % (include, ))
  360. transformer.register_include(include_obj)
  361. for include_path in options.includes_uninstalled:
  362. transformer.register_include_uninstalled(include_path)
  363. return transformer
  364. def create_binary(transformer, options, args):
  365. # Transform the C AST nodes into higher level
  366. # GLib/GObject nodes
  367. gdump_parser = GDumpParser(transformer)
  368. # Do enough parsing that we have the get_type() functions to reference
  369. # when creating the introspection binary
  370. gdump_parser.init_parse()
  371. if options.program:
  372. args = [options.program]
  373. args.extend(options.program_args)
  374. binary = IntrospectionBinary(args)
  375. else:
  376. binary = compile_introspection_binary(options,
  377. gdump_parser.get_get_type_functions(),
  378. gdump_parser.get_error_quark_functions())
  379. shlibs = resolve_shlibs(options, binary, options.libraries)
  380. if options.wrapper:
  381. # The wrapper needs the binary itself, not the libtool wrapper script,
  382. # so we check if libtool has sneaked the binary into .libs subdirectory
  383. # and adjust the path accordingly
  384. import os.path
  385. dir_name, binary_name = os.path.split(binary.args[0])
  386. libtool_binary = os.path.join(dir_name, '.libs', binary_name)
  387. if os.path.exists(libtool_binary):
  388. binary.args[0] = libtool_binary
  389. # Then prepend the wrapper to the command line to execute
  390. binary.args = [options.wrapper] + binary.args
  391. gdump_parser.set_introspection_binary(binary)
  392. gdump_parser.parse()
  393. return shlibs
  394. def create_source_scanner(options, args):
  395. if hasattr(options, 'filelist') and options.filelist:
  396. filenames = extract_filelist(options)
  397. else:
  398. filenames = extract_filenames(args)
  399. if platform.system() == 'Darwin':
  400. options.cpp_undefines.append('__BLOCKS__')
  401. # Run the preprocessor, tokenize and construct simple
  402. # objects representing the raw C symbols
  403. ss = SourceScanner()
  404. ss.set_cpp_options(options.cpp_includes,
  405. options.cpp_defines,
  406. options.cpp_undefines,
  407. cflags=options.cflags)
  408. ss.parse_files(filenames)
  409. ss.parse_macros(filenames)
  410. return ss
  411. def write_output(data, options):
  412. """Write encoded XML 'data' to the filename specified in 'options'."""
  413. if options.output == "-":
  414. output = sys.stdout
  415. elif options.reparse_validate_gir:
  416. main_f, main_f_name = tempfile.mkstemp(suffix='.gir')
  417. if (os.path.isfile(options.output)):
  418. shutil.copystat(options.output, main_f_name)
  419. else:
  420. os.chmod(main_f_name,
  421. stat.S_IWUSR | stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)
  422. with os.fdopen(main_f, 'wb') as main_f:
  423. main_f.write(data)
  424. temp_f, temp_f_name = tempfile.mkstemp(suffix='.gir')
  425. with os.fdopen(temp_f, 'wb') as temp_f:
  426. passthrough_gir(main_f_name, temp_f)
  427. if not utils.files_are_identical(main_f_name, temp_f_name):
  428. _error("Failed to re-parse gir file; scanned='%s' passthrough='%s'" % (
  429. main_f_name, temp_f_name))
  430. os.unlink(temp_f_name)
  431. try:
  432. shutil.move(main_f_name, options.output)
  433. except OSError as e:
  434. if e.errno == errno.EPERM:
  435. os.unlink(main_f_name)
  436. raise
  437. return 0
  438. else:
  439. try:
  440. output = open(options.output, 'wb')
  441. except IOError as e:
  442. _error("opening output for writing: %s" % (e.strerror, ))
  443. try:
  444. output.write(data)
  445. except IOError as e:
  446. _error("while writing output: %s" % (e.strerror, ))
  447. def scanner_main(args):
  448. parser = _get_option_parser()
  449. (options, args) = parser.parse_args(args)
  450. if options.passthrough_gir:
  451. passthrough_gir(options.passthrough_gir, sys.stdout)
  452. if options.test_codegen:
  453. return test_codegen(options.test_codegen,
  454. options.function_decoration,
  455. options.include_first_header,
  456. options.include_last_header,
  457. options.include_first_src,
  458. options.include_last_src)
  459. if hasattr(options, 'filelist') and not options.filelist:
  460. if len(args) <= 1:
  461. _error('Need at least one filename')
  462. if not options.namespace_name:
  463. _error('Namespace name missing')
  464. if options.format == 'gir':
  465. from giscanner.girwriter import GIRWriter as Writer
  466. else:
  467. _error("Unknown format: %s" % (options.format, ))
  468. if not (options.libraries
  469. or options.program
  470. or options.header_only):
  471. _error("Must specify --program or --library")
  472. namespace = create_namespace(options)
  473. logger = message.MessageLogger.get(namespace=namespace)
  474. if options.warn_all:
  475. logger.enable_warnings((message.WARNING, message.ERROR, message.FATAL))
  476. transformer = create_transformer(namespace, options)
  477. packages = set(options.packages)
  478. packages.update(transformer.get_pkgconfig_packages())
  479. if packages:
  480. exit_code = process_packages(options, packages)
  481. if exit_code:
  482. return exit_code
  483. ss = create_source_scanner(options, args)
  484. cbp = GtkDocCommentBlockParser()
  485. blocks = cbp.parse_comment_blocks(ss.get_comments())
  486. # Transform the C symbols into AST nodes
  487. transformer.parse(ss.get_symbols())
  488. if not options.header_only:
  489. shlibs = create_binary(transformer, options, args)
  490. else:
  491. shlibs = []
  492. transformer.namespace.shared_libraries = shlibs
  493. main = MainTransformer(transformer, blocks)
  494. main.transform()
  495. utils.break_on_debug_flag('tree')
  496. final = IntrospectablePass(transformer, blocks)
  497. final.validate()
  498. warning_count = logger.get_warning_count()
  499. if options.warn_fatal and warning_count > 0:
  500. message.fatal("warnings configured as fatal")
  501. return 1
  502. elif warning_count > 0 and options.warn_all is False:
  503. print("g-ir-scanner: %s: warning: %d warnings suppressed "
  504. "(use --warn-all to see them)" %
  505. (transformer.namespace.name, warning_count, ))
  506. # Write out AST
  507. if options.packages_export:
  508. exported_packages = options.packages_export
  509. else:
  510. exported_packages = options.packages
  511. transformer.namespace.c_includes = options.c_includes
  512. transformer.namespace.exported_packages = exported_packages
  513. writer = Writer(transformer.namespace)
  514. data = writer.get_encoded_xml()
  515. write_output(data, options)
  516. return 0