2013-07-21 18:31:09 -04:00
|
|
|
/*
|
2013-08-02 19:58:04 -04:00
|
|
|
* plugins.c
|
2013-07-21 18:31:09 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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.
|
|
|
|
*
|
|
|
|
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Python.h>
|
|
|
|
|
2013-08-17 17:42:44 -04:00
|
|
|
#include "config/preferences.h"
|
2013-08-02 19:58:04 -04:00
|
|
|
#include "plugins/api.h"
|
2013-08-04 13:43:46 -04:00
|
|
|
#include "plugins/callbacks.h"
|
2013-08-02 19:48:22 -04:00
|
|
|
#include "plugins/plugins.h"
|
2013-08-17 17:42:44 -04:00
|
|
|
#include "plugins/python_plugins.h"
|
2013-07-21 18:31:09 -04:00
|
|
|
#include "ui/ui.h"
|
|
|
|
|
2013-08-02 19:22:00 -04:00
|
|
|
static GSList* plugins;
|
2013-08-04 11:42:25 -04:00
|
|
|
|
2013-07-21 18:31:09 -04:00
|
|
|
void
|
2013-08-02 19:48:22 -04:00
|
|
|
plugins_init(void)
|
2013-07-21 18:31:09 -04:00
|
|
|
{
|
2013-08-02 18:52:16 -04:00
|
|
|
plugins = NULL;
|
|
|
|
PyObject *p_module;
|
2013-08-02 18:36:47 -04:00
|
|
|
|
2013-08-17 17:42:44 -04:00
|
|
|
// initialse python and path
|
2013-07-21 18:31:09 -04:00
|
|
|
Py_Initialize();
|
2013-08-17 17:42:44 -04:00
|
|
|
python_check_error();
|
2013-08-02 19:58:04 -04:00
|
|
|
api_init();
|
2013-08-17 17:42:44 -04:00
|
|
|
python_check_error();
|
2013-08-02 18:36:47 -04:00
|
|
|
// TODO change to use XDG spec
|
2013-08-02 21:21:43 -04:00
|
|
|
GString *path = g_string_new(Py_GetPath());
|
|
|
|
g_string_append(path, ":./plugins/");
|
|
|
|
PySys_SetPath(path->str);
|
2013-08-17 17:42:44 -04:00
|
|
|
python_check_error();
|
2013-08-02 21:21:43 -04:00
|
|
|
g_string_free(path, TRUE);
|
2013-08-02 18:36:47 -04:00
|
|
|
|
2013-08-17 17:42:44 -04:00
|
|
|
// load plugins
|
|
|
|
gchar **plugins_load = prefs_get_plugins();
|
|
|
|
if (plugins_load != NULL) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < g_strv_length(plugins_load); i++)
|
|
|
|
{
|
|
|
|
gchar *filename = plugins_load[i];
|
|
|
|
if (g_str_has_suffix(filename, ".py")) {
|
|
|
|
gchar *module_name = g_strndup(filename, strlen(filename) - 3);
|
|
|
|
p_module = PyImport_ImportModule(module_name);
|
|
|
|
python_check_error();
|
|
|
|
if (p_module != NULL) {
|
|
|
|
cons_show("Loaded plugin: %s", module_name);
|
|
|
|
ProfPlugin *plugin = malloc(sizeof(ProfPlugin));
|
|
|
|
plugin->name = module_name;
|
|
|
|
plugin->lang = PYTHON;
|
|
|
|
plugin->module = p_module;
|
|
|
|
plugin->init_func = python_init_hook;
|
|
|
|
plugin->on_start_func = python_on_start_hook;
|
|
|
|
plugin->on_connect_func = python_on_connect_hook;
|
|
|
|
plugin->on_message_func = python_on_message_hook;
|
|
|
|
plugins = g_slist_append(plugins, plugin);
|
|
|
|
}
|
|
|
|
g_free(module_name);
|
2013-08-02 18:36:47 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-02 18:52:16 -04:00
|
|
|
|
2013-08-17 17:42:44 -04:00
|
|
|
// initialise plugins
|
|
|
|
GSList *curr = plugins;
|
|
|
|
while (curr != NULL) {
|
|
|
|
ProfPlugin *plugin = curr->data;
|
|
|
|
plugin->init_func(plugin, PACKAGE_VERSION, PACKAGE_STATUS);
|
|
|
|
python_check_error();
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
2013-07-21 18:31:09 -04:00
|
|
|
}
|
2013-08-17 17:42:44 -04:00
|
|
|
|
2013-07-24 19:54:31 -04:00
|
|
|
return;
|
2013-07-21 18:31:09 -04:00
|
|
|
}
|
|
|
|
|
2013-08-05 19:28:40 -04:00
|
|
|
void
|
|
|
|
plugins_on_start(void)
|
|
|
|
{
|
2013-08-17 17:42:44 -04:00
|
|
|
GSList *curr = plugins;
|
|
|
|
while (curr != NULL) {
|
|
|
|
ProfPlugin *plugin = curr->data;
|
|
|
|
plugin->on_start_func(plugin);
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
2013-08-02 19:22:00 -04:00
|
|
|
}
|
|
|
|
|
2013-08-02 19:58:04 -04:00
|
|
|
void
|
|
|
|
plugins_on_connect(void)
|
|
|
|
{
|
2013-08-17 17:42:44 -04:00
|
|
|
GSList *curr = plugins;
|
|
|
|
while (curr != NULL) {
|
|
|
|
ProfPlugin *plugin = curr->data;
|
|
|
|
plugin->on_connect_func(plugin);
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
2013-08-02 19:58:04 -04:00
|
|
|
}
|
|
|
|
|
2013-08-10 20:00:21 -04:00
|
|
|
void
|
|
|
|
plugins_on_message(const char * const jid, const char * const message)
|
|
|
|
{
|
2013-08-17 17:42:44 -04:00
|
|
|
GSList *curr = plugins;
|
|
|
|
while (curr != NULL) {
|
|
|
|
ProfPlugin *plugin = curr->data;
|
|
|
|
plugin->on_message_func(plugin, jid, message);
|
|
|
|
curr = g_slist_next(curr);
|
2013-08-02 18:36:47 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-02 18:52:16 -04:00
|
|
|
|
2013-08-17 17:42:44 -04:00
|
|
|
void
|
|
|
|
plugins_shutdown(void)
|
2013-08-02 19:22:00 -04:00
|
|
|
{
|
2013-08-17 17:42:44 -04:00
|
|
|
Py_Finalize();
|
2013-08-02 19:22:00 -04:00
|
|
|
}
|