g-ir-doc-tool: Add -expected test for Python docbook
[platform/upstream/gobject-introspection.git] / giscanner / docmain.py
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
21 import optparse
22
23 from .docbookwriter import DocBookWriter
24 from .docbookwriter import DocBookFormatterC
25 from .docbookwriter import DocBookFormatterPython
26 from .transformer import Transformer
27
28 class GIDocGenerator(object):
29
30     def parse(self, filename):
31         self.transformer = Transformer.parse_from_gir(filename)
32
33     def generate(self, writer, output):
34         writer.add_transformer(self.transformer)
35         writer.write(output)
36
37 def doc_main(args):
38     parser = optparse.OptionParser('%prog [options] GIR-file')
39
40     parser.add_option("-o", "--output",
41                       action="store", dest="output",
42                       help="Filename to write output")
43     parser.add_option("-f", "--format",
44                       action="store", dest="format",
45                       default="docbook",
46                       help="Output format")
47     parser.add_option("-l", "--language",
48                       action="store", dest="language",
49                       default="Python",
50                       help="Output language")
51
52     options, args = parser.parse_args(args)
53     if not options.output:
54         raise SystemExit("missing output parameter")
55
56     if len(args) < 2:
57         raise SystemExit("Need an input GIR filename")
58
59     if options.language == "Python":
60         formatter = DocBookFormatterPython()
61     elif options.language == "C":
62         formatter = DocBookFormatterC()
63     else:
64         raise SystemExit("Unsupported language: %s" % (options.language, ))
65
66     if options.format == "docbook":
67         writer = DocBookWriter(formatter)
68     else:
69         raise SystemExit("Unsupported output format: %s" % (options.format, ))
70
71     generator = GIDocGenerator()
72     generator.parse(args[1])
73
74     generator.generate(writer, options.output)
75
76     return 0