docmain.py 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # -*- Mode: Python -*-
  2. # GObject-Introspection - a framework for introspecting GObject libraries
  3. # Copyright (C) 2008-2011 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 os
  25. import argparse
  26. from .docwriter import DocWriter
  27. from .sectionparser import generate_sections_file, write_sections_file
  28. from .transformer import Transformer
  29. def doc_main(args):
  30. parser = argparse.ArgumentParser()
  31. parser.add_argument("girfile")
  32. parser.add_argument("-o", "--output",
  33. action="store", dest="output",
  34. help="Directory to write output to")
  35. parser.add_argument("-l", "--language",
  36. action="store", dest="language",
  37. default="c",
  38. help="Output language")
  39. parser.add_argument("-I", "--add-include-path",
  40. action="append", dest="include_paths", default=[],
  41. help="include paths for other GIR files")
  42. parser.add_argument("-s", "--write-sections-file",
  43. action="store_true", dest="write_sections",
  44. help="Generate and write out a sections file")
  45. args = parser.parse_args(args[1:])
  46. if not args.output:
  47. raise SystemExit("missing output parameter")
  48. if 'UNINSTALLED_INTROSPECTION_SRCDIR' in os.environ:
  49. top_srcdir = os.environ['UNINSTALLED_INTROSPECTION_SRCDIR']
  50. top_builddir = os.environ['UNINSTALLED_INTROSPECTION_BUILDDIR']
  51. extra_include_dirs = [os.path.join(top_srcdir, 'gir'), top_builddir]
  52. else:
  53. extra_include_dirs = []
  54. extra_include_dirs.extend(args.include_paths)
  55. transformer = Transformer.parse_from_gir(args.girfile, extra_include_dirs)
  56. if args.write_sections:
  57. sections_file = generate_sections_file(transformer)
  58. with open(args.output, 'w') as fp:
  59. write_sections_file(fp, sections_file)
  60. else:
  61. writer = DocWriter(transformer, args.language)
  62. writer.write(args.output)
  63. return 0