all repos — openbox @ cb49f853c9b62c4403eb562d39f52c51da292c4f

openbox fork - make it a bit more like ryudo

openbox/plugin.c (raw)

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#include "plugins/interface.h"

#include <glib.h>
#include <gmodule.h>

typedef struct {
    GModule *module;
    char *name;

    PluginSetupConfig config;
    PluginStartup startup;
    PluginShutdown shutdown;
    PluginCreate create;
    PluginDestroy destroy;
} Plugin;

static gpointer load_sym(GModule *module, char *name, char *symbol,
			 gboolean allow_fail)
{
    gpointer var;
    if (!g_module_symbol(module, symbol, &var)) {
        if (!allow_fail)
	    g_warning("Failed to load symbol '%s' from plugin '%s'",
		      symbol, name);
        var = NULL;
    }
    return var;
}

static Plugin *plugin_new(char *name)
{
    Plugin *p;
    char *path;
   
    p = g_new(Plugin, 1);

    path = g_build_filename(g_get_home_dir(), ".openbox", "plugins", name,
                            NULL);
    p->module = g_module_open(path, 0);
    g_free(path);

    if (p->module == NULL) {
        path = g_build_filename(PLUGINDIR, name, NULL);
        p->module = g_module_open(path, 0);
        g_free(path);
    }

    if (p->module == NULL) {
        g_warning(g_module_error());
        g_free(p);
        return NULL;
    }

    p->config = (PluginSetupConfig)load_sym(p->module, name,
                                            "plugin_setup_config", FALSE);
    p->startup = (PluginStartup)load_sym(p->module, name, "plugin_startup",
					 FALSE);
    p->shutdown = (PluginShutdown)load_sym(p->module, name, "plugin_shutdown",
					   FALSE);
    p->create = (PluginCreate)load_sym(p->module, name, "plugin_create", TRUE);
    p->destroy = (PluginDestroy)load_sym(p->module, name, "plugin_destroy",
					 TRUE);

    if (p->config == NULL || p->startup == NULL || p->shutdown == NULL) {
        g_module_close(p->module);
        g_free(p);
        return NULL;
    }

    p->name = g_strdup(name);
    return p;
}

static void plugin_free(Plugin *p)
{
    p->shutdown();

    g_free(p->name);
    g_module_close(p->module);
}


static GData *plugins = NULL;

void plugin_startup()
{
    g_datalist_init(&plugins);
}

void plugin_shutdown()
{
    g_datalist_clear(&plugins);
}

gboolean plugin_open_full(char *name, gboolean reopen)
{
    Plugin *p;

    if (g_datalist_get_data(&plugins, name) != NULL) {
	if (!reopen) 
	    g_warning("plugin '%s' already loaded, can't load again", name);
        return TRUE;
    }

    p = plugin_new(name);
    if (p == NULL) {
        g_warning("failed to load plugin '%s'", name);
        return FALSE;
    }
    p->config();

    g_datalist_set_data_full(&plugins, name, p, (GDestroyNotify) plugin_free);
    return TRUE;
}

gboolean plugin_open(char *name) {
    return plugin_open_full(name, FALSE);
}

gboolean plugin_open_reopen(char *name) {
    return plugin_open_full(name, TRUE);
}

void plugin_close(char *name)
{
    g_datalist_remove_data(&plugins, name);
}

static void foreach_start(GQuark key, Plugin *p, gpointer *foo)
{
    p->startup();
}

void plugin_startall()
{
    g_datalist_foreach(&plugins, (GDataForeachFunc)foreach_start, NULL);
}

void plugin_loadall()
{
    GIOChannel *io;
    GError *err;
    char *path, *name;

    path = g_build_filename(g_get_home_dir(), ".openbox", "pluginrc", NULL);
    err = NULL;
    io = g_io_channel_new_file(path, "r", &err);
    g_free(path);

    if (io == NULL) {
        path = g_build_filename(RCDIR, "pluginrc", NULL);
        err = NULL;
        io = g_io_channel_new_file(path, "r", &err);
        g_free(path);
    }

    if (io == NULL) {
        /* load the default plugins */
        plugin_open("keyboard");
        plugin_open("mouse");
        plugin_open("placement");
        plugin_open("resistance");

        /* XXX rm me when the parser loads me magically */
        plugin_open("client_menu");
    } else {
        /* load the plugins in the rc file */
        while (g_io_channel_read_line(io, &name, NULL, NULL, &err) ==
               G_IO_STATUS_NORMAL) {
            g_strstrip(name);
            if (name[0] != '\0' && name[0] != '#')
                plugin_open(name);
            g_free(name);
        }
        g_io_channel_unref(io);
    }
}

void *plugin_create(char *name, void *data)
{
    Plugin *p = (Plugin *)g_datalist_get_data(&plugins, name);

    if (p == NULL) {
	g_warning("Unable to find plugin for create: %s", name);
	return NULL;
    }

    if (p->create == NULL || p->destroy == NULL) {
	g_critical("Unsupported create/destroy: %s", name);
	return NULL;
    }

    return p->create(data);
}

void plugin_destroy(char *name, void *data)
{
    Plugin *p = (Plugin *)g_datalist_get_data(&plugins, name);

    if (p == NULL) {
	g_critical("Unable to find plugin for destroy: %s", name);
	/* really shouldn't happen, but attempt to free something anyway? */
	g_free(data);
	return;
    }

    if (p->destroy == NULL || p->create == NULL) {
	g_critical("Unsupported create/destroy: %s", name);
	/* really, really shouldn't happen, but attempt to free anyway? */
	g_free(data);
	return;
    }

    p->destroy(data);
}