annotationmain.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # -*- Mode: Python -*-
  2. # GObject-Introspection - a framework for introspecting GObject libraries
  3. # Copyright (C) 2010 Johan Dahlin
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; either version 2
  8. # of the License, or (at your option) any later version.
  9. #
  10. # This program 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
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  18. # 02110-1301, 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. import optparse
  26. import codecs
  27. from contextlib import contextmanager
  28. from giscanner import message
  29. from giscanner.annotationparser import GtkDocCommentBlockParser, GtkDocCommentBlockWriter
  30. from giscanner.scannermain import (get_preprocessor_option_group,
  31. create_source_scanner,
  32. process_packages)
  33. @contextmanager
  34. def encode_stdout(encoding):
  35. """Force stdout into a specific encoding."""
  36. # Python 2 does not encode stdout writes so wrap it with 'encoding' encoded writer.
  37. # Python 3 uses a io.TextIOBase wrapped stdout with the system default encoding.
  38. # Re-wrap the underlying buffer with a new writer with the given 'encoding'.
  39. # See: https://docs.python.org/3/library/sys.html#sys.stdout
  40. old_stdout = sys.stdout
  41. if sys.version_info.major < 3:
  42. binary_stdout = sys.stdout
  43. else:
  44. binary_stdout = sys.stdout.buffer
  45. sys.stdout = codecs.getwriter(encoding)(binary_stdout)
  46. yield
  47. sys.stdout = old_stdout
  48. def annotation_main(args):
  49. parser = optparse.OptionParser('%prog [options] sources')
  50. group = optparse.OptionGroup(parser, "Tool modes, one is required")
  51. group.add_option("-e", "--extract",
  52. action="store_true", dest="extract",
  53. help="Extract annotations from the input files")
  54. parser.add_option_group(group)
  55. group = get_preprocessor_option_group(parser)
  56. group.add_option("-L", "--library-path",
  57. action="append", dest="library_paths", default=[],
  58. help="directories to search for libraries")
  59. group.add_option("", "--pkg",
  60. action="append", dest="packages", default=[],
  61. help="pkg-config packages to get cflags from")
  62. parser.add_option_group(group)
  63. options, args = parser.parse_args(args)
  64. if not options.extract:
  65. raise SystemExit("ERROR: Nothing to do")
  66. if options.packages:
  67. process_packages(options, options.packages)
  68. logger = message.MessageLogger.get(namespace=None)
  69. ss = create_source_scanner(options, args)
  70. if options.extract:
  71. parser = GtkDocCommentBlockParser()
  72. writer = GtkDocCommentBlockWriter(indent=False)
  73. blocks = parser.parse_comment_blocks(ss.get_comments())
  74. with encode_stdout('utf-8'):
  75. print('/' + ('*' * 60) + '/')
  76. print('/* THIS FILE IS GENERATED DO NOT EDIT */')
  77. print('/' + ('*' * 60) + '/')
  78. print('')
  79. for block in sorted(blocks.values()):
  80. print(writer.write(block))
  81. print('')
  82. print('')
  83. print('/' + ('*' * 60) + '/')
  84. print('/* THIS FILE IS GENERATED DO NOT EDIT */')
  85. print('/' + ('*' * 60) + '/')
  86. return 0