summaryrefslogtreecommitdiffstats
path: root/girepository/importer.py
blob: 5a918676c01982d83d21537639f2980d52037230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- Mode: Python; py-indent-offset: 4 -*-
#
# Copyright (C) 2005,2007 Johan Dahlin <johan@gnome.org>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
#

import os
import sys

from .repository import repository

class DynamicImporter(object):
    def __init__(self, name, path):
        self.name = name
        self.path = path

    @staticmethod
    def find_module(name, path=None):
        if name == 'cairo':
            return None
        namespace = repository.require(name)
        if namespace:
            return DynamicImporter(name, path)

    def load_module(self, name):
        from .module import DynamicModule
        module_name = 'girepository.overrides.%s' % (name,)
        try:
            module = __import__(module_name)
            modtype = getattr(module, name + 'Module')
        except ImportError, e:
            modtype = DynamicModule
        return modtype(name, self.path)


def install_importhook():
    sys.meta_path.append(DynamicImporter)