about summary refs log tree commit diff stats
path: root/src/plugins/c_plugins.c
blob: 2f0bdff5302ba356ea3ffc81721315cc2cd49dd4 (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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
/*
 * c_plugins.c
 * vim: expandtab:ts=4:sts=4:sw=4
 *
 * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
 *
 * This file is part of Profani-tty.
 *
 * Profani-tty 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 3 of the License, or
 * (at your option) any later version.
 *
 * Profani-tty 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 Profani-tty.  If not, see <https://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give permission to
 * link the code of portions of this program with the OpenSSL library under
 * certain conditions as described in each individual source file, and
 * distribute linked combinations including the two.
 *
 * You must obey the GNU General Public License in all respects for all of the
 * code used other than OpenSSL. If you modify file(s) with this exception, you
 * may extend this exception to your version of the file(s), but you are not
 * obligated to do so. If you do not wish to do so, delete this exception
 * statement from your version. If you delete this exception statement from all
 * source files in the program, then also delete it here.
 *
 */

#include "config.h"

#include <dlfcn.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>

#include <glib.h>

#include "log.h"
#include "config/preferences.h"
#include "config/files.h"
#include "plugins/api.h"
#include "plugins/callbacks.h"
#include "plugins/disco.h"
#include "plugins/plugins.h"
#include "plugins/c_plugins.h"
#include "plugins/c_api.h"
#include "ui/ui.h"

void
c_env_init(void)
{
    c_api_init();
}

ProfPlugin*
c_plugin_create(const char* const filename)
{
    ProfPlugin* plugin;
    void* handle = NULL;

    char* plugins_dir = files_get_data_path(DIR_PLUGINS);
    GString* path = g_string_new(plugins_dir);
    free(plugins_dir);
    g_string_append(path, "/");
    g_string_append(path, filename);

    handle = dlopen(path->str, RTLD_NOW | RTLD_GLOBAL);

    if (!handle) {
        log_warning("dlopen failed to open `%s', %s", filename, dlerror());
        g_string_free(path, TRUE);
        return NULL;
    }

    plugin = malloc(sizeof(ProfPlugin));
    plugin->name = strdup(filename);
    plugin->lang = LANG_C;
    plugin->module = handle;
    plugin->init_func = c_init_hook;
    plugin->contains_hook = c_contains_hook;
    plugin->on_start_func = c_on_start_hook;
    plugin->on_shutdown_func = c_on_shutdown_hook;
    plugin->on_unload_func = c_on_unload_hook;
    plugin->on_connect_func = c_on_connect_hook;
    plugin->on_disconnect_func = c_on_disconnect_hook;
    plugin->pre_chat_message_display = c_pre_chat_message_display_hook;
    plugin->post_chat_message_display = c_post_chat_message_display_hook;
    plugin->pre_chat_message_send = c_pre_chat_message_send_hook;
    plugin->post_chat_message_send = c_post_chat_message_send_hook;
    plugin->pre_room_message_display = c_pre_room_message_display_hook;
    plugin->post_room_message_display = c_post_room_message_display_hook;
    plugin->pre_room_message_send = c_pre_room_message_send_hook;
    plugin->post_room_message_send = c_post_room_message_send_hook;
    plugin->on_room_history_message = c_on_room_history_message_hook;
    plugin->pre_priv_message_display = c_pre_priv_message_display_hook;
    plugin->post_priv_message_display = c_post_priv_message_display_hook;
    plugin->pre_priv_message_send = c_pre_priv_message_send_hook;
    plugin->post_priv_message_send = c_post_priv_message_send_hook;
    plugin->on_message_stanza_send = c_on_message_stanza_send_hook;
    plugin->on_message_stanza_receive = c_on_message_stanza_receive_hook;
    plugin->on_presence_stanza_send = c_on_presence_stanza_send_hook;
    plugin->on_presence_stanza_receive = c_on_presence_stanza_receive_hook;
    plugin->on_iq_stanza_send = c_on_iq_stanza_send_hook;
    plugin->on_iq_stanza_receive = c_on_iq_stanza_receive_hook;
    plugin->on_contact_offline = c_on_contact_offline_hook;
    plugin->on_contact_presence = c_on_contact_presence_hook;
    plugin->on_chat_win_focus = c_on_chat_win_focus_hook;
    plugin->on_room_win_focus = c_on_room_win_focus_hook;

    g_string_free(path, TRUE);

    return plugin;
}

void
c_init_hook(ProfPlugin* plugin, const char* const version, const char* const status, const char* const account_name,
            const char* const fulljid)
{
    void* f = NULL;
    void (*func)(const char* const __version, const char* const __status, const char* const __account_name,
                 const char* const __fulljid);

    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_init"))) {
        log_warning("warning: %s does not have init function", plugin->name);
        return;
    }

    func = (void (*)(const char* const, const char* const, const char* const, const char* const))f;

    // FIXME maybe we want to make it boolean to see if it succeeded or not?
    func(version, status, account_name, fulljid);
}

gboolean
c_contains_hook(ProfPlugin* plugin, const char* const hook)
{
    if (dlsym(plugin->module, hook)) {
        return TRUE;
    } else {
        return FALSE;
    }
}

void
c_on_start_hook(ProfPlugin* plugin)
{
    void* f = NULL;
    void (*func)(void);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_start")))
        return;

    func = (void (*)(void))f;
    func();
}

void
c_on_shutdown_hook(ProfPlugin* plugin)
{
    void* f = NULL;
    void (*func)(void);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_shutdown")))
        return;

    func = (void (*)(void))f;
    func();
}

void
c_on_unload_hook(ProfPlugin* plugin)
{
    void* f = NULL;
    void (*func)(void);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_unload")))
        return;

    func = (void (*)(void))f;
    func();
}

void
c_on_connect_hook(ProfPlugin* plugin, const char* const account_name, const char* const fulljid)
{
    void* f = NULL;
    void (*func)(const char* const __account_name, const char* const __fulljid);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_connect")))
        return;

    func = (void (*)(const char* const, const char* const))f;
    func(account_name, fulljid);
}

void
c_on_disconnect_hook(ProfPlugin* plugin, const char* const account_name, const char* const fulljid)
{
    void* f = NULL;
    void (*func)(const char* const __account_name, const char* const __fulljid);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_disconnect")))
        return;

    func = (void (*)(const char* const, const char* const))f;
    func(account_name, fulljid);
}

char*
c_pre_chat_message_display_hook(ProfPlugin* plugin, const char* const barejid, const char* const resource, const char* message)
{
    void* f = NULL;
    char* (*func)(const char* const __barejid, const char* const __resource, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_pre_chat_message_display")))
        return NULL;

    func = (char* (*)(const char* const, const char* const, const char*))f;
    return func(barejid, resource, message);
}

void
c_post_chat_message_display_hook(ProfPlugin* plugin, const char* const barejid, const char* const resource, const char* message)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __resource, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_post_chat_message_display")))
        return;

    func = (void (*)(const char* const, const char* const, const char*))f;
    func(barejid, resource, message);
}

char*
c_pre_chat_message_send_hook(ProfPlugin* plugin, const char* const barejid, const char* message)
{
    void* f = NULL;
    char* (*func)(const char* const __barejid, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_pre_chat_message_send")))
        return NULL;

    func = (char* (*)(const char* const, const char*))f;
    return func(barejid, message);
}

void
c_post_chat_message_send_hook(ProfPlugin* plugin, const char* const barejid, const char* message)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_post_chat_message_send")))
        return;

    func = (void (*)(const char* const, const char*))f;
    func(barejid, message);
}

char*
c_pre_room_message_display_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick, const char* message)
{
    void* f = NULL;
    char* (*func)(const char* const __barejid, const char* const __nick, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_pre_room_message_display")))
        return NULL;

    func = (char* (*)(const char* const, const char* const, const char*))f;
    return func(barejid, nick, message);
}

void
c_post_room_message_display_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick,
                                 const char* message)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __nick, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_post_room_message_display")))
        return;

    func = (void (*)(const char* const, const char* const, const char*))f;
    func(barejid, nick, message);
}

char*
c_pre_room_message_send_hook(ProfPlugin* plugin, const char* const barejid, const char* message)
{
    void* f = NULL;
    char* (*func)(const char* const __barejid, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_pre_room_message_send")))
        return NULL;

    func = (char* (*)(const char* const, const char*))f;
    return func(barejid, message);
}

void
c_post_room_message_send_hook(ProfPlugin* plugin, const char* const barejid, const char* message)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_post_room_message_send")))
        return;

    func = (void (*)(const char* const, const char*))f;
    func(barejid, message);
}

void
c_on_room_history_message_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick,
                               const char* const message, const char* const timestamp)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __nick, const char* const __message,
                 const char* const __timestamp);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_room_history_message")))
        return;

    func = (void (*)(const char* const, const char* const, const char* const, const char* const))f;
    func(barejid, nick, message, timestamp);
}

char*
c_pre_priv_message_display_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick, const char* message)
{
    void* f = NULL;
    char* (*func)(const char* const __barejid, const char* const __nick, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_pre_priv_message_display")))
        return NULL;

    func = (char* (*)(const char* const, const char* const, const char*))f;
    return func(barejid, nick, message);
}

void
c_post_priv_message_display_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick,
                                 const char* message)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __nick, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_post_priv_message_display")))
        return;

    func = (void (*)(const char* const, const char* const, const char*))f;
    func(barejid, nick, message);
}

char*
c_pre_priv_message_send_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick, const char* message)
{
    void* f = NULL;
    char* (*func)(const char* const __barejid, const char* const __nick, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_pre_priv_message_send")))
        return NULL;

    func = (char* (*)(const char* const, const char* const, const char*))f;
    return func(barejid, nick, message);
}

void
c_post_priv_message_send_hook(ProfPlugin* plugin, const char* const barejid, const char* const nick, const char* message)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __nick, const char* __message);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_post_priv_message_send")))
        return;

    func = (void (*)(const char* const, const char* const, const char*))f;
    func(barejid, nick, message);
}

char*
c_on_message_stanza_send_hook(ProfPlugin* plugin, const char* const text)
{
    void* f = NULL;
    char* (*func)(const char* const __text);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_message_stanza_send")))
        return NULL;

    func = (char* (*)(const char* const))f;
    return func(text);
}

gboolean
c_on_message_stanza_receive_hook(ProfPlugin* plugin, const char* const text)
{
    void* f = NULL;
    int (*func)(const char* const __text);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_message_stanza_receive")))
        return TRUE;

    func = (int (*)(const char* const))f;
    return func(text);
}

char*
c_on_presence_stanza_send_hook(ProfPlugin* plugin, const char* const text)
{
    void* f = NULL;
    char* (*func)(const char* const __text);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_presence_stanza_send")))
        return NULL;

    func = (char* (*)(const char* const))f;
    return func(text);
}

gboolean
c_on_presence_stanza_receive_hook(ProfPlugin* plugin, const char* const text)
{
    void* f = NULL;
    int (*func)(const char* const __text);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_presence_stanza_receive")))
        return TRUE;

    func = (int (*)(const char* const))f;
    return func(text);
}

char*
c_on_iq_stanza_send_hook(ProfPlugin* plugin, const char* const text)
{
    void* f = NULL;
    char* (*func)(const char* const __text);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_iq_stanza_send")))
        return NULL;

    func = (char* (*)(const char* const))f;
    return func(text);
}

gboolean
c_on_iq_stanza_receive_hook(ProfPlugin* plugin, const char* const text)
{
    void* f = NULL;
    int (*func)(const char* const __text);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_iq_stanza_receive")))
        return TRUE;

    func = (int (*)(const char* const))f;
    return func(text);
}

void
c_on_contact_offline_hook(ProfPlugin* plugin, const char* const barejid, const char* const resource,
                          const char* const status)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __resource, const char* const __status);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_contact_offline")))
        return;

    func = (void (*)(const char* const, const char* const, const char* const))f;
    func(barejid, resource, status);
}

void
c_on_contact_presence_hook(ProfPlugin* plugin, const char* const barejid, const char* const resource,
                           const char* const presence, const char* const status, const int priority)
{
    void* f = NULL;
    void (*func)(const char* const __barejid, const char* const __resource, const char* const __presence,
                 const char* const __status, const int __priority);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_contact_presence")))
        return;

    func = (void (*)(const char* const, const char* const, const char* const, const char* const, const int))f;
    func(barejid, resource, presence, status, priority);
}

void
c_on_chat_win_focus_hook(ProfPlugin* plugin, const char* const barejid)
{
    void* f = NULL;
    void (*func)(const char* const __barejid);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_chat_win_focus")))
        return;

    func = (void (*)(const char* const))f;
    func(barejid);
}

void
c_on_room_win_focus_hook(ProfPlugin* plugin, const char* const barejid)
{
    void* f = NULL;
    void (*func)(const char* const __barejid);
    assert(plugin && plugin->module);

    if (NULL == (f = dlsym(plugin->module, "prof_on_room_win_focus")))
        return;

    func = (void (*)(const char* const))f;
    func(barejid);
}

void
c_plugin_destroy(ProfPlugin* plugin)
{
    assert(plugin && plugin->module);

    callbacks_remove(plugin->name);

    disco_remove_features(plugin->name);

    if (dlclose(plugin->module)) {
        log_warning("dlclose failed to close `%s' with `%s'", plugin->name, dlerror());
    }

    free(plugin->name);
    free(plugin);
}

void
c_shutdown(void)
{
}