aboutsummaryrefslogtreecommitdiff
path: root/libdino/src/plugin.vala
blob: 60a99bc27976c07bf631320048e930ec92c0a856 (plain) (blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
namespace Dino {

public errordomain PluginError {
	NOT_SUPPORTED,
	UNEXPECTED_TYPE,
	NO_REGISTRATION_FUNCTION,
	FAILED
}

public interface PluginIface : Object {
    public abstract void registered(Dino.Ui.Application app);
}

private class PluginInfo : Object {
    public Module module;
    public Type gtype;

    public PluginInfo(Type type, owned Module module) {
        this.module = (owned) module;
        this.gtype = type;
    }
}

public class PluginLoader : Object {
    [CCode (has_target = false)]
    private delegate Type RegisterPluginFunction (Module module);

    private PluginIface[] plugins = new PluginIface[0];
    private PluginInfo[] infos = new PluginInfo[0];

    public PluginIface load(string name, Dino.Ui.Application app) throws PluginError {
        if (Module.supported () == false) {
            throw new PluginError.NOT_SUPPORTED ("Plugins are not supported");
        }

        Module module = Module.open ("plugins/" + name, ModuleFlags.BIND_LAZY);
        if (module == null) {
            throw new PluginError.FAILED (Module.error ());
        }

        void* function;
        module.symbol ("register_plugin", out function);
        if (function == null) {
            throw new PluginError.NO_REGISTRATION_FUNCTION ("register_plugin () not found");
        }

        RegisterPluginFunction register_plugin = (RegisterPluginFunction) function;
        Type type = register_plugin (module);
        if (type.is_a (typeof (PluginIface)) == false) {
            throw new PluginError.UNEXPECTED_TYPE ("Unexpected type");
        }

        PluginInfo info = new PluginInfo (type, (owned) module);
        infos += info;

        PluginIface plugin = (PluginIface) Object.new (type);
        plugins += plugin;
        plugin.registered (app);

        return plugin;
    }
}

}