summaryrefslogtreecommitdiff
path: root/giscanner/annotationmain.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-09-16 00:37:49 -0300
committerJohan Dahlin <johan@gnome.org>2010-09-24 16:06:53 -0300
commit7cc31be7753b124b7f17febbbe0607765b426fa0 (patch)
tree1ad650110b5862701c653882fe2701cc937663b8 /giscanner/annotationmain.py
parent2aadc9201bf320820a02a789aaf9b1681fd453d5 (diff)
downloadgobject-introspection-7cc31be7753b124b7f17febbbe0607765b426fa0.tar.gz
Add an annotation tool
Diffstat (limited to 'giscanner/annotationmain.py')
-rw-r--r--giscanner/annotationmain.py78
1 files changed, 78 insertions, 0 deletions
diff --git a/giscanner/annotationmain.py b/giscanner/annotationmain.py
new file mode 100644
index 00000000..d6e2eef5
--- /dev/null
+++ b/giscanner/annotationmain.py
@@ -0,0 +1,78 @@
+# -*- Mode: Python -*-
+# GObject-Introspection - a framework for introspecting GObject libraries
+# Copyright (C) 2010 Johan Dahlin
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301, USA.
+#
+
+import optparse
+
+from giscanner.annotationparser import AnnotationParser
+from giscanner.scannermain import (get_preprocessor_option_group,
+ create_source_scanner,
+ process_packages)
+
+def annotation_main(args):
+ parser = optparse.OptionParser('%prog [options] sources')
+
+ group = optparse.OptionGroup(parser, "Tool modes, one is required")
+ group.add_option("-e", "--extract",
+ action="store_true", dest="extract",
+ help="Extract annotations from the input files")
+ parser.add_option_group(group)
+
+ group = get_preprocessor_option_group(parser)
+ group.add_option("-L", "--library-path",
+ action="append", dest="library_paths", default=[],
+ help="directories to search for libraries")
+ group.add_option("", "--pkg",
+ action="append", dest="packages", default=[],
+ help="pkg-config packages to get cflags from")
+ parser.add_option_group(group)
+
+ options, args = parser.parse_args(args)
+
+ if not options.extract:
+ raise SystemExit("ERROR: Nothing to do")
+
+ if options.packages:
+ process_packages(options, options.packages)
+
+ ss = create_source_scanner(options, args)
+
+ if options.extract:
+ ap = AnnotationParser()
+ blocks = ap.parse(ss.get_comments())
+ for block in blocks.values():
+ print block.to_gtk_doc()
+ print
+ elif options.validate:
+ transformer = create_transformer(namespace, options)
+ transformer.parse(ss.get_symbols())
+
+ shlibs = create_binary(transformer, options, args)
+
+ ap = AnnotationParser()
+ blocks = ap.parse(ss.get_comments())
+
+ main = MainTransformer(transformer, blocks)
+ main.transform()
+
+ final = IntrospectablePass(transformer)
+ final.validate()
+
+
+ return 0