# -*- Mode: Python -*- # GObject-Introspection - a framework for introspecting GObject libraries # Copyright (C) 2008 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. # from xml.etree.ElementTree import parse from .glibast import GLibObject class GIDLParser(object): def __init__(self, filename): self._nodes = [] self._namespace_name = None tree = parse(filename) self._parse_api(tree.getroot()) def _parse_api(self, root): assert root.tag == 'api' ns = root.find('namespace') self._namespace_name = ns.attrib['name'] for child in ns.getchildren(): if child.tag == 'object': self._parse_object(child) else: print 'PARSER: Unhandled %s' % (child.tag,) def _parse_object(self, node): gobj = GLibObject(node.attrib['name'], node.attrib.get('parent'), node.attrib['type-name'], node.attrib['get-type']) self._nodes.append(gobj) def get_namespace_name(self): return self._namespace_name def get_nodes(self): return self._nodes