diff options
Diffstat (limited to 'src/plugins/scripts/python')
-rw-r--r-- | src/plugins/scripts/python/CMakeLists.txt | 31 | ||||
-rw-r--r-- | src/plugins/scripts/python/Makefile.am | 33 | ||||
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 5945 | ||||
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.h | 32 | ||||
-rw-r--r-- | src/plugins/scripts/python/weechat-python.c | 1259 | ||||
-rw-r--r-- | src/plugins/scripts/python/weechat-python.h | 53 |
6 files changed, 0 insertions, 7353 deletions
diff --git a/src/plugins/scripts/python/CMakeLists.txt b/src/plugins/scripts/python/CMakeLists.txt deleted file mode 100644 index b39a5f394..000000000 --- a/src/plugins/scripts/python/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org> -# -# This file is part of WeeChat, the extensible chat client. -# -# WeeChat 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. -# -# WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>. -# - -ADD_LIBRARY(python MODULE weechat-python.c weechat-python.h -weechat-python-api.c weechat-python-api.h) - -SET_TARGET_PROPERTIES(python PROPERTIES PREFIX "") - -IF(PYTHON_FOUND) - INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH}) - SET(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${PYTHON_LFLAGS}") - TARGET_LINK_LIBRARIES(python ${PYTHON_LIBRARY} weechat_scripts) -ENDIF(PYTHON_FOUND) - -INSTALL(TARGETS python LIBRARY DESTINATION ${LIBDIR}/plugins) diff --git a/src/plugins/scripts/python/Makefile.am b/src/plugins/scripts/python/Makefile.am deleted file mode 100644 index db37e7095..000000000 --- a/src/plugins/scripts/python/Makefile.am +++ /dev/null @@ -1,33 +0,0 @@ -# -# Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org> -# -# This file is part of WeeChat, the extensible chat client. -# -# WeeChat 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. -# -# WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>. -# - -INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(PYTHON_CFLAGS) - -libdir = ${weechat_libdir}/plugins - -lib_LTLIBRARIES = python.la - -python_la_SOURCES = weechat-python.c \ - weechat-python.h \ - weechat-python-api.c \ - weechat-python-api.h -python_la_LDFLAGS = -module -python_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PYTHON_LFLAGS) - -EXTRA_DIST = CMakeLists.txt diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c deleted file mode 100644 index 0dac4b641..000000000 --- a/src/plugins/scripts/python/weechat-python-api.c +++ /dev/null @@ -1,5945 +0,0 @@ -/* - * Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org> - * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> - * - * This file is part of WeeChat, the extensible chat client. - * - * WeeChat 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. - * - * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>. - */ - -/* - * weechat-python-api.c: python API functions - */ - -#undef _ - -#include <Python.h> -#include <time.h> - -#include "../../weechat-plugin.h" -#include "../script.h" -#include "../script-api.h" -#include "../script-callback.h" -#include "weechat-python.h" - - -#define API_FUNC(__init, __name, __ret) \ - char *python_function_name = __name; \ - (void) self; \ - if (__init \ - && (!python_current_script || !python_current_script->name)) \ - { \ - WEECHAT_SCRIPT_MSG_NOT_INIT(PYTHON_CURRENT_SCRIPT_NAME, \ - python_function_name); \ - __ret; \ - } -#define API_WRONG_ARGS(__ret) \ - { \ - WEECHAT_SCRIPT_MSG_WRONG_ARGS(PYTHON_CURRENT_SCRIPT_NAME, \ - python_function_name); \ - __ret; \ - } -#define API_STR2PTR(__string) \ - script_str2ptr (weechat_python_plugin, PYTHON_CURRENT_SCRIPT_NAME, \ - python_function_name, __string) -#define API_RETURN_OK return PyLong_FromLong((long)1); -#define API_RETURN_ERROR return PyLong_FromLong ((long)0); -#define API_RETURN_EMPTY \ - Py_INCREF (Py_None); \ - return Py_None; -#define API_RETURN_STRING(__string) \ - if (__string) \ - return Py_BuildValue ("s", __string); \ - return Py_BuildValue ("s", "") -#define API_RETURN_STRING_FREE(__string) \ - if (__string) \ - { \ - return_value = Py_BuildValue ("s", __string); \ - free (__string); \ - return return_value; \ - } \ - return Py_BuildValue ("s", "") -#define API_RETURN_INT(__int) \ - return PyLong_FromLong((long)__int); -#define API_RETURN_LONG(__long) \ - return PyLong_FromLong(__long); - -#define API_DEF_FUNC(__name) \ - { #__name, &weechat_python_api_##__name, METH_VARARGS, "" } - - -/* - * weechat_python_api_register: startup function for all WeeChat Python scripts - */ - -static PyObject * -weechat_python_api_register (PyObject *self, PyObject *args) -{ - char *name, *author, *version, *license, *shutdown_func, *description; - char *charset; - - API_FUNC(0, "register", API_RETURN_ERROR); - if (python_registered_script) - { - /* script already registered */ - weechat_printf (NULL, - weechat_gettext ("%s%s: script \"%s\" already " - "registered (register ignored)"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, - python_registered_script->name); - API_RETURN_ERROR; - } - python_current_script = NULL; - python_registered_script = NULL; - name = NULL; - author = NULL; - version = NULL; - license = NULL; - description = NULL; - shutdown_func = NULL; - charset = NULL; - if (!PyArg_ParseTuple (args, "sssssss", &name, &author, &version, - &license, &description, &shutdown_func, &charset)) - API_WRONG_ARGS(API_RETURN_ERROR); - - if (script_search (weechat_python_plugin, python_scripts, name)) - { - /* another script already exists with same name */ - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to register script " - "\"%s\" (another script already " - "exists with this name)"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, name); - API_RETURN_ERROR; - } - - /* register script */ - python_current_script = script_add (weechat_python_plugin, - &python_scripts, &last_python_script, - (python_current_script_filename) ? - python_current_script_filename : "", - name, author, version, license, - description, shutdown_func, charset); - if (python_current_script) - { - python_registered_script = python_current_script; - if ((weechat_python_plugin->debug >= 2) || !python_quiet) - { - weechat_printf (NULL, - weechat_gettext ("%s: registered script \"%s\", " - "version %s (%s)"), - PYTHON_PLUGIN_NAME, name, version, description); - } - } - else - { - API_RETURN_ERROR; - } - - API_RETURN_OK; -} - -/* - * weechat_python_api_plugin_get_name: get name of plugin (return "core" for - * WeeChat core) - */ - -static PyObject * -weechat_python_api_plugin_get_name (PyObject *self, PyObject *args) -{ - char *plugin; - const char *result; - - API_FUNC(1, "plugin_get_name", API_RETURN_EMPTY); - plugin = NULL; - if (!PyArg_ParseTuple (args, "s", &plugin)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_plugin_get_name (API_STR2PTR(plugin)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_charset_set: set script charset - */ - -static PyObject * -weechat_python_api_charset_set (PyObject *self, PyObject *args) -{ - char *charset; - - API_FUNC(1, "charset_set", API_RETURN_ERROR); - charset = NULL; - if (!PyArg_ParseTuple (args, "s", &charset)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_charset_set (python_current_script, - charset); - - API_RETURN_OK; -} - -/* - * weechat_python_api_iconv_to_internal: convert string to internal WeeChat charset - */ - -static PyObject * -weechat_python_api_iconv_to_internal (PyObject *self, PyObject *args) -{ - char *charset, *string, *result; - PyObject *return_value; - - API_FUNC(1, "iconv_to_internal", API_RETURN_EMPTY); - charset = NULL; - string = NULL; - if (!PyArg_ParseTuple (args, "ss", &charset, &string)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_iconv_to_internal (charset, string); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_iconv_from_internal: convert string from WeeChat internal - * charset to another one - */ - -static PyObject * -weechat_python_api_iconv_from_internal (PyObject *self, PyObject *args) -{ - char *charset, *string, *result; - PyObject *return_value; - - API_FUNC(1, "iconv_from_internal", API_RETURN_EMPTY); - charset = NULL; - string = NULL; - if (!PyArg_ParseTuple (args, "ss", &charset, &string)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_iconv_from_internal (charset, string); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_gettext: get translated string - */ - -static PyObject * -weechat_python_api_gettext (PyObject *self, PyObject *args) -{ - char *string; - const char *result; - - API_FUNC(1, "gettext", API_RETURN_EMPTY); - string = NULL; - if (!PyArg_ParseTuple (args, "s", &string)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_gettext (string); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_ngettext: get translated string with plural form - */ - -static PyObject * -weechat_python_api_ngettext (PyObject *self, PyObject *args) -{ - char *single, *plural; - const char *result; - int count; - - API_FUNC(1, "ngettext", API_RETURN_EMPTY); - single = NULL; - plural = NULL; - count = 0; - if (!PyArg_ParseTuple (args, "ssi", &single, &plural, &count)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_ngettext (single, plural, count); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_string_match: return 1 if string matches a mask - * mask can begin or end with "*", no other - * "*" are allowed inside mask - */ - -static PyObject * -weechat_python_api_string_match (PyObject *self, PyObject *args) -{ - char *string, *mask; - int case_sensitive, value; - - API_FUNC(1, "string_match", API_RETURN_INT(0)); - string = NULL; - mask = NULL; - case_sensitive = 0; - if (!PyArg_ParseTuple (args, "ssi", &string, &mask, &case_sensitive)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_string_match (string, mask, case_sensitive); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_string_has_highlight: return 1 if string contains a - * highlight (using list of words to - * highlight) - * return 0 if no highlight is found - * in string - */ - -static PyObject * -weechat_python_api_string_has_highlight (PyObject *self, PyObject *args) -{ - char *string, *highlight_words; - int value; - - API_FUNC(1, "string_has_highlight", API_RETURN_INT(0)); - string = NULL; - highlight_words = NULL; - if (!PyArg_ParseTuple (args, "ss", &string, &highlight_words)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_string_has_highlight (string, highlight_words); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_string_has_highlight_regex: return 1 if string contains a - * highlight (using regular - * expression) - * return 0 if no highlight is - * found in string - */ - -static PyObject * -weechat_python_api_string_has_highlight_regex (PyObject *self, PyObject *args) -{ - char *string, *regex; - int value; - - API_FUNC(1, "string_has_highlight_regex", API_RETURN_INT(0)); - string = NULL; - regex = NULL; - if (!PyArg_ParseTuple (args, "ss", &string, ®ex)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_string_has_highlight_regex (string, regex); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_string_mask_to_regex: convert a mask (string with only - * "*" as wildcard) to a regex, paying - * attention to special chars in a - * regex - */ - -static PyObject * -weechat_python_api_string_mask_to_regex (PyObject *self, PyObject *args) -{ - char *mask, *result; - PyObject *return_value; - - API_FUNC(1, "string_mask_to_regex", API_RETURN_EMPTY); - mask = NULL; - if (!PyArg_ParseTuple (args, "s", &mask)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_string_mask_to_regex (mask); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_string_remove_color: remove WeeChat color codes from - * string - */ - -static PyObject * -weechat_python_api_string_remove_color (PyObject *self, PyObject *args) -{ - char *string, *replacement, *result; - PyObject *return_value; - - API_FUNC(1, "string_remove_color2", API_RETURN_EMPTY); - string = NULL; - replacement = NULL; - if (!PyArg_ParseTuple (args, "ss", &string, &replacement)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_string_remove_color (string, replacement); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_string_is_command_char: check if first char of string is - * a command char - */ - -static PyObject * -weechat_python_api_string_is_command_char (PyObject *self, PyObject *args) -{ - char *string; - int value; - - API_FUNC(1, "string_is_command_char", API_RETURN_INT(0)); - string = NULL; - if (!PyArg_ParseTuple (args, "s", &string)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_string_is_command_char (string); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_string_input_for_buffer: return string with input text - * for buffer or empty string if - * it's a command - */ - -static PyObject * -weechat_python_api_string_input_for_buffer (PyObject *self, PyObject *args) -{ - char *string; - const char *result; - - API_FUNC(1, "string_input_for_buffer", API_RETURN_EMPTY); - string = NULL; - if (!PyArg_ParseTuple (args, "s", &string)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_string_input_for_buffer (string); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_mkdir_home: create a directory in WeeChat home - */ - -static PyObject * -weechat_python_api_mkdir_home (PyObject *self, PyObject *args) -{ - char *directory; - int mode; - - API_FUNC(1, "mkdir_home", API_RETURN_ERROR); - directory = NULL; - mode = 0; - if (!PyArg_ParseTuple (args, "si", &directory, &mode)) - API_WRONG_ARGS(API_RETURN_ERROR); - - if (weechat_mkdir_home (directory, mode)) - API_RETURN_OK; - - API_RETURN_ERROR; -} - -/* - * weechat_python_api_mkdir: create a directory - */ - -static PyObject * -weechat_python_api_mkdir (PyObject *self, PyObject *args) -{ - char *directory; - int mode; - - API_FUNC(1, "mkdir", API_RETURN_ERROR); - directory = NULL; - mode = 0; - if (!PyArg_ParseTuple (args, "si", &directory, &mode)) - API_WRONG_ARGS(API_RETURN_ERROR); - - if (weechat_mkdir (directory, mode)) - API_RETURN_OK; - - API_RETURN_ERROR; -} - -/* - * weechat_python_api_mkdir_parents: create a directory and make parent - * directories as needed - */ - -static PyObject * -weechat_python_api_mkdir_parents (PyObject *self, PyObject *args) -{ - char *directory; - int mode; - - API_FUNC(1, "mkdir_parents", API_RETURN_ERROR); - directory = NULL; - mode = 0; - if (!PyArg_ParseTuple (args, "si", &directory, &mode)) - API_WRONG_ARGS(API_RETURN_ERROR); - - if (weechat_mkdir_parents (directory, mode)) - API_RETURN_OK; - - API_RETURN_ERROR; -} - -/* - * weechat_python_api_list_new: create a new list - */ - -static PyObject * -weechat_python_api_list_new (PyObject *self, PyObject *args) -{ - char *result; - PyObject *return_value; - - /* make C compiler happy */ - (void) args; - - API_FUNC(1, "list_new", API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_new ()); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_add: add a string to list - */ - -static PyObject * -weechat_python_api_list_add (PyObject *self, PyObject *args) -{ - char *weelist, *data, *where, *user_data, *result; - PyObject *return_value; - - API_FUNC(1, "list_add", API_RETURN_EMPTY); - weelist = NULL; - data = NULL; - where = NULL; - user_data = NULL; - if (!PyArg_ParseTuple (args, "ssss", &weelist, &data, &where, &user_data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_add (API_STR2PTR(weelist), - data, - where, - API_STR2PTR(user_data))); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_search: search a string in list - */ - -static PyObject * -weechat_python_api_list_search (PyObject *self, PyObject *args) -{ - char *weelist, *data, *result; - PyObject *return_value; - - API_FUNC(1, "list_search", API_RETURN_EMPTY); - weelist = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ss", &weelist, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_search (API_STR2PTR(weelist), - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_search_pos: search position of a string in list - */ - -static PyObject * -weechat_python_api_list_search_pos (PyObject *self, PyObject *args) -{ - char *weelist, *data; - int pos; - - API_FUNC(1, "list_search_pos", API_RETURN_INT(-1)); - weelist = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ss", &weelist, &data)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - pos = weechat_list_search_pos (API_STR2PTR(weelist), data); - - API_RETURN_INT(pos); -} - -/* - * weechat_python_api_list_casesearch: search a string in list (ignore case) - */ - -static PyObject * -weechat_python_api_list_casesearch (PyObject *self, PyObject *args) -{ - char *weelist, *data, *result; - PyObject *return_value; - - API_FUNC(1, "list_casesearch", API_RETURN_EMPTY); - weelist = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ss", &weelist, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_casesearch (API_STR2PTR(weelist), - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_casesearch_pos: search position of a string in list - * (ignore case) - */ - -static PyObject * -weechat_python_api_list_casesearch_pos (PyObject *self, PyObject *args) -{ - char *weelist, *data; - int pos; - - API_FUNC(1, "list_casesearch_pos", API_RETURN_INT(-1)); - weelist = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ss", &weelist, &data)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - pos = weechat_list_casesearch_pos (API_STR2PTR(weelist), data); - - API_RETURN_INT(pos); -} - -/* - * weechat_python_api_list_get: get item by position - */ - -static PyObject * -weechat_python_api_list_get (PyObject *self, PyObject *args) -{ - char *weelist, *result; - int position; - PyObject *return_value; - - API_FUNC(1, "list_get", API_RETURN_EMPTY); - weelist = NULL; - position = 0; - if (!PyArg_ParseTuple (args, "si", &weelist, &position)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_get (API_STR2PTR(weelist), - position)); - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_set: set new value for item - */ - -static PyObject * -weechat_python_api_list_set (PyObject *self, PyObject *args) -{ - char *item, *new_value; - - API_FUNC(1, "list_set", API_RETURN_ERROR); - item = NULL; - new_value = NULL; - if (!PyArg_ParseTuple (args, "ss", &item, &new_value)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_list_set (API_STR2PTR(item), - new_value); - - API_RETURN_OK; -} - -/* - * weechat_python_api_list_next: get next item - */ - -static PyObject * -weechat_python_api_list_next (PyObject *self, PyObject *args) -{ - char *item, *result; - PyObject *return_value; - - API_FUNC(1, "list_next", API_RETURN_EMPTY); - item = NULL; - if (!PyArg_ParseTuple (args, "s", &item)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_next (API_STR2PTR(item))); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_prev: get previous item - */ - -static PyObject * -weechat_python_api_list_prev (PyObject *self, PyObject *args) -{ - char *item, *result; - PyObject *return_value; - - API_FUNC(1, "list_prev", API_RETURN_EMPTY); - item = NULL; - if (!PyArg_ParseTuple (args, "s", &item)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_list_prev (API_STR2PTR(item))); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_list_string: get string value of item - */ - -static PyObject * -weechat_python_api_list_string (PyObject *self, PyObject *args) -{ - char *item; - const char *result; - - API_FUNC(1, "list_string", API_RETURN_EMPTY); - item = NULL; - if (!PyArg_ParseTuple (args, "s", &item)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_list_string (API_STR2PTR(item)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_list_size: get number of elements in list - */ - -static PyObject * -weechat_python_api_list_size (PyObject *self, PyObject *args) -{ - char *weelist; - int size; - - API_FUNC(1, "list_size", API_RETURN_INT(0)); - weelist = NULL; - if (!PyArg_ParseTuple (args, "s", &weelist)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - size = weechat_list_size (API_STR2PTR(weelist)); - - API_RETURN_INT(size); -} - -/* - * weechat_python_api_list_remove: remove item from list - */ - -static PyObject * -weechat_python_api_list_remove (PyObject *self, PyObject *args) -{ - char *weelist, *item; - - API_FUNC(1, "list_remove", API_RETURN_ERROR); - weelist = NULL; - item = NULL; - if (!PyArg_ParseTuple (args, "ss", &weelist, &item)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_list_remove (API_STR2PTR(weelist), - API_STR2PTR(item)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_list_remove_all: remove all items from list - */ - -static PyObject * -weechat_python_api_list_remove_all (PyObject *self, PyObject *args) -{ - char *weelist; - - API_FUNC(1, "list_remove_all", API_RETURN_ERROR); - weelist = NULL; - if (!PyArg_ParseTuple (args, "s", &weelist)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_list_remove_all (API_STR2PTR(weelist)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_list_free: free list - */ - -static PyObject * -weechat_python_api_list_free (PyObject *self, PyObject *args) -{ - char *weelist; - - API_FUNC(1, "list_free", API_RETURN_ERROR); - weelist = NULL; - if (!PyArg_ParseTuple (args, "s", &weelist)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_list_free (API_STR2PTR(weelist)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_reload_cb: callback for config reload - */ - -int -weechat_python_api_config_reload_cb (void *data, - struct t_config_file *config_file) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (config_file); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ss", func_argv); - - if (!rc) - ret = WEECHAT_CONFIG_READ_FILE_NOT_FOUND; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_CONFIG_READ_FILE_NOT_FOUND; -} - -/* - * weechat_python_api_config_new: create a new configuration file - */ - -static PyObject * -weechat_python_api_config_new (PyObject *self, PyObject *args) -{ - char *name, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "config_new", API_RETURN_EMPTY); - name = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &name, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_config_new (weechat_python_plugin, - python_current_script, - name, - &weechat_python_api_config_reload_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_config_read_cb: callback for reading option in section - */ - -int -weechat_python_api_config_read_cb (void *data, - struct t_config_file *config_file, - struct t_config_section *section, - const char *option_name, const char *value) -{ - struct t_script_callback *script_callback; - void *func_argv[5]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (config_file); - func_argv[2] = script_ptr2str (section); - func_argv[3] = (option_name) ? (char *)option_name : empty_arg; - func_argv[4] = (value) ? (char *)value : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sssss", func_argv); - - if (!rc) - ret = WEECHAT_CONFIG_OPTION_SET_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - if (func_argv[2]) - free (func_argv[2]); - - return ret; - } - - return WEECHAT_CONFIG_OPTION_SET_ERROR; -} - -/* - * weechat_python_api_config_section_write_cb: callback for writing section - */ - -int -weechat_python_api_config_section_write_cb (void *data, - struct t_config_file *config_file, - const char *section_name) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (config_file); - func_argv[2] = (section_name) ? (char *)section_name : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = WEECHAT_CONFIG_WRITE_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_CONFIG_WRITE_ERROR; -} - -/* - * weechat_python_api_config_section_write_default_cb: callback for writing - * default values for section - */ - -int -weechat_python_api_config_section_write_default_cb (void *data, - struct t_config_file *config_file, - const char *section_name) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (config_file); - func_argv[2] = (section_name) ? (char *)section_name : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = WEECHAT_CONFIG_WRITE_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_CONFIG_WRITE_ERROR; -} - -/* - * weechat_python_api_config_section_create_option_cb: callback to create an option - */ - -int -weechat_python_api_config_section_create_option_cb (void *data, - struct t_config_file *config_file, - struct t_config_section *section, - const char *option_name, - const char *value) -{ - struct t_script_callback *script_callback; - void *func_argv[5]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (config_file); - func_argv[2] = script_ptr2str (section); - func_argv[3] = (option_name) ? (char *)option_name : empty_arg; - func_argv[4] = (value) ? (char *)value : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sssss", func_argv); - - if (!rc) - ret = WEECHAT_CONFIG_OPTION_SET_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - if (func_argv[2]) - free (func_argv[2]); - - return ret; - } - - return WEECHAT_CONFIG_OPTION_SET_ERROR; -} - -/* - * weechat_python_api_config_section_delete_option_cb: callback to delete an option - */ - -int -weechat_python_api_config_section_delete_option_cb (void *data, - struct t_config_file *config_file, - struct t_config_section *section, - struct t_config_option *option) -{ - struct t_script_callback *script_callback; - void *func_argv[4]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (config_file); - func_argv[2] = script_ptr2str (section); - func_argv[3] = script_ptr2str (option); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ssss", func_argv); - - if (!rc) - ret = WEECHAT_CONFIG_OPTION_UNSET_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - if (func_argv[2]) - free (func_argv[2]); - if (func_argv[3]) - free (func_argv[3]); - - return ret; - } - - return WEECHAT_CONFIG_OPTION_UNSET_ERROR; -} - -/* - * weechat_python_api_config_new_section: create a new section in configuration file - */ - -static PyObject * -weechat_python_api_config_new_section (PyObject *self, PyObject *args) -{ - char *config_file, *name, *function_read, *data_read, *function_write; - char *data_write, *function_write_default, *data_write_default; - char *function_create_option, *data_create_option, *function_delete_option; - char *data_delete_option, *result; - int user_can_add_options, user_can_delete_options; - PyObject *return_value; - - API_FUNC(1, "config_new_section", API_RETURN_EMPTY); - config_file = NULL; - name = NULL; - user_can_add_options = 0; - user_can_delete_options = 0; - function_read = NULL; - data_read = NULL; - function_write = NULL; - data_write = NULL; - function_write_default = NULL; - data_write_default = NULL; - function_create_option = NULL; - data_create_option = NULL; - function_delete_option = NULL; - data_delete_option = NULL; - if (!PyArg_ParseTuple (args, "ssiissssssssss", &config_file, &name, - &user_can_add_options, &user_can_delete_options, - &function_read, &data_read, &function_write, - &data_write, &function_write_default, - &data_write_default, &function_create_option, - &data_create_option, &function_delete_option, - &data_delete_option)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_config_new_section (weechat_python_plugin, - python_current_script, - API_STR2PTR(config_file), - name, - user_can_add_options, - user_can_delete_options, - &weechat_python_api_config_read_cb, - function_read, - data_read, - &weechat_python_api_config_section_write_cb, - function_write, - data_write, - &weechat_python_api_config_section_write_default_cb, - function_write_default, - data_write_default, - &weechat_python_api_config_section_create_option_cb, - function_create_option, - data_create_option, - &weechat_python_api_config_section_delete_option_cb, - function_delete_option, - data_delete_option)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_config_search_section: search section in configuration file - */ - -static PyObject * -weechat_python_api_config_search_section (PyObject *self, PyObject *args) -{ - char *config_file, *section_name, *result; - PyObject *return_value; - - API_FUNC(1, "config_search_section", API_RETURN_EMPTY); - config_file = NULL; - section_name = NULL; - if (!PyArg_ParseTuple (args, "ss", &config_file, §ion_name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_config_search_section (API_STR2PTR(config_file), - section_name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_config_option_check_cb: callback for checking new value - * for option - */ - -int -weechat_python_api_config_option_check_value_cb (void *data, - struct t_config_option *option, - const char *value) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (option); - func_argv[2] = (value) ? (char *)value : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = 0; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return 0; -} - -/* - * weechat_python_api_config_option_change_cb: callback for option changed - */ - -void -weechat_python_api_config_option_change_cb (void *data, - struct t_config_option *option) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char empty_arg[1] = { '\0' }; - int *rc; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (option); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ss", func_argv); - - if (func_argv[1]) - free (func_argv[1]); - - if (rc) - free (rc); - } -} - -/* - * weechat_python_api_config_option_delete_cb: callback when option is deleted - */ - -void -weechat_python_api_config_option_delete_cb (void *data, - struct t_config_option *option) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char empty_arg[1] = { '\0' }; - int *rc; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (option); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ss", func_argv); - - if (func_argv[1]) - free (func_argv[1]); - - if (rc) - free (rc); - } -} - -/* - * weechat_python_api_config_new_option: create a new option in section - */ - -static PyObject * -weechat_python_api_config_new_option (PyObject *self, PyObject *args) -{ - char *config_file, *section, *name, *type, *description, *string_values; - char *default_value, *value, *result; - char *function_check_value, *data_check_value, *function_change; - char *data_change, *function_delete, *data_delete; - int min, max, null_value_allowed; - PyObject *return_value; - - API_FUNC(1, "config_new_option", API_RETURN_EMPTY); - config_file = NULL; - section = NULL; - name = NULL; - type = NULL; - description = NULL; - string_values = NULL; - default_value = NULL; - value = NULL; - function_check_value = NULL; - data_check_value = NULL; - function_change = NULL; - data_change = NULL; - function_delete = NULL; - data_delete = NULL; - if (!PyArg_ParseTuple (args, "ssssssiississssss", &config_file, §ion, &name, - &type, &description, &string_values, &min, &max, - &default_value, &value, &null_value_allowed, - &function_check_value, &data_check_value, - &function_change, &data_change, &function_delete, - &data_delete)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_config_new_option (weechat_python_plugin, - python_current_script, - API_STR2PTR(config_file), - API_STR2PTR(section), - name, - type, - description, - string_values, - min, - max, - default_value, - value, - null_value_allowed, - &weechat_python_api_config_option_check_value_cb, - function_check_value, - data_check_value, - &weechat_python_api_config_option_change_cb, - function_change, - data_change, - &weechat_python_api_config_option_delete_cb, - function_delete, - data_delete)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_config_search_option: search option in configuration file or section - */ - -static PyObject * -weechat_python_api_config_search_option (PyObject *self, PyObject *args) -{ - char *config_file, *section, *option_name, *result; - PyObject *return_value; - - API_FUNC(1, "config_search_option", API_RETURN_EMPTY); - config_file = NULL; - section = NULL; - option_name = NULL; - if (!PyArg_ParseTuple (args, "sss", &config_file, §ion, &option_name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_config_search_option (API_STR2PTR(config_file), - API_STR2PTR(section), - option_name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_config_string_to_boolean: return boolean value of a string - */ - -static PyObject * -weechat_python_api_config_string_to_boolean (PyObject *self, PyObject *args) -{ - char *text; - int value; - - API_FUNC(1, "config_string_to_boolean", API_RETURN_INT(0)); - text = NULL; - if (!PyArg_ParseTuple (args, "s", &text)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_config_string_to_boolean (text); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_option_reset: reset an option with default value - */ - -static PyObject * -weechat_python_api_config_option_reset (PyObject *self, PyObject *args) -{ - char *option; - int run_callback, rc; - - API_FUNC(1, "config_option_reset", API_RETURN_INT(0)); - option = NULL; - run_callback = 0; - if (!PyArg_ParseTuple (args, "si", &option, &run_callback)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - rc = weechat_config_option_reset (API_STR2PTR(option), - run_callback); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_option_set: set new value for option - */ - -static PyObject * -weechat_python_api_config_option_set (PyObject *self, PyObject *args) -{ - char *option, *new_value; - int run_callback, rc; - - API_FUNC(1, "config_option_set", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - option = NULL; - new_value = NULL; - run_callback = 0; - if (!PyArg_ParseTuple (args, "ssi", &option, &new_value, &run_callback)) - API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - - rc = weechat_config_option_set (API_STR2PTR(option), - new_value, - run_callback); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_option_set_null: set null (undefined) value for - * option - */ - -static PyObject * -weechat_python_api_config_option_set_null (PyObject *self, PyObject *args) -{ - char *option; - int run_callback, rc; - - API_FUNC(1, "config_option_set_null", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - option = NULL; - run_callback = 0; - if (!PyArg_ParseTuple (args, "si", &option, &run_callback)) - API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - - rc = weechat_config_option_set_null (API_STR2PTR(option), - run_callback); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_option_unset: unset an option - */ - -static PyObject * -weechat_python_api_config_option_unset (PyObject *self, PyObject *args) -{ - char *option; - int rc; - - API_FUNC(1, "config_option_unset", API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); - - rc = weechat_config_option_unset (API_STR2PTR(option)); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_option_rename: rename an option - */ - -static PyObject * -weechat_python_api_config_option_rename (PyObject *self, PyObject *args) -{ - char *option, *new_name; - - API_FUNC(1, "config_option_rename", API_RETURN_ERROR); - option = NULL; - new_name = NULL; - if (!PyArg_ParseTuple (args, "ss", &option, &new_name)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_config_option_rename (API_STR2PTR(option), - new_name); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_option_is_null: return 1 if value of option is null - */ - -static PyObject * -weechat_python_api_config_option_is_null (PyObject *self, PyObject *args) -{ - char *option; - int value; - - API_FUNC(1, "config_option_is_null", API_RETURN_INT(1)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(1)); - - value = weechat_config_option_is_null (API_STR2PTR(option)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_option_default_is_null: return 1 if default value - * of option is null - */ - -static PyObject * -weechat_python_api_config_option_default_is_null (PyObject *self, PyObject *args) -{ - char *option; - int value; - - API_FUNC(1, "config_option_default_is_null", API_RETURN_INT(1)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(1)); - - value = weechat_config_option_default_is_null (API_STR2PTR(option)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_boolean: return boolean value of option - */ - -static PyObject * -weechat_python_api_config_boolean (PyObject *self, PyObject *args) -{ - char *option; - int value; - - API_FUNC(1, "config_boolean", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_config_boolean (API_STR2PTR(option)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_boolean_default: return default boolean value of option - */ - -static PyObject * -weechat_python_api_config_boolean_default (PyObject *self, PyObject *args) -{ - char *option; - int value; - - API_FUNC(1, "config_boolean_default", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_config_boolean_default (API_STR2PTR(option)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_integer: return integer value of option - */ - -static PyObject * -weechat_python_api_config_integer (PyObject *self, PyObject *args) -{ - char *option; - int value; - - API_FUNC(1, "config_integer", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_config_integer (API_STR2PTR(option)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_integer_default: return default integer value of option - */ - -static PyObject * -weechat_python_api_config_integer_default (PyObject *self, PyObject *args) -{ - char *option; - int value; - - API_FUNC(1, "config_integer_default", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_config_integer_default (API_STR2PTR(option)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_config_string: return string value of option - */ - -static PyObject * -weechat_python_api_config_string (PyObject *self, PyObject *args) -{ - char *option; - const char *result; - - API_FUNC(1, "config_string", API_RETURN_EMPTY); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_config_string (API_STR2PTR(option)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_config_string_default: return default string value of option - */ - -static PyObject * -weechat_python_api_config_string_default (PyObject *self, PyObject *args) -{ - char *option; - const char *result; - - API_FUNC(1, "config_string_default", API_RETURN_EMPTY); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_config_string_default (API_STR2PTR(option)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_config_color: return color value of option - */ - -static PyObject * -weechat_python_api_config_color (PyObject *self, PyObject *args) -{ - char *option; - const char *result; - - API_FUNC(1, "config_color", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - result = weechat_config_color (API_STR2PTR(option)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_config_color_default: return default color value of option - */ - -static PyObject * -weechat_python_api_config_color_default (PyObject *self, PyObject *args) -{ - char *option; - const char *result; - - API_FUNC(1, "config_color_default", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - result = weechat_config_color_default (API_STR2PTR(option)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_config_write_option: write an option in configuration file - */ - -static PyObject * -weechat_python_api_config_write_option (PyObject *self, PyObject *args) -{ - char *config_file, *option; - - API_FUNC(1, "config_write_option", API_RETURN_ERROR); - config_file = NULL; - option = NULL; - if (!PyArg_ParseTuple (args, "ss", &config_file, &option)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_config_write_option (API_STR2PTR(config_file), - API_STR2PTR(option)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_write_line: write a line in configuration file - */ - -static PyObject * -weechat_python_api_config_write_line (PyObject *self, PyObject *args) -{ - char *config_file, *option_name, *value; - - API_FUNC(1, "config_write_line", API_RETURN_ERROR); - config_file = NULL; - option_name = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "sss", &config_file, &option_name, &value)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_config_write_line (API_STR2PTR(config_file), - option_name, - "%s", - value); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_write: write configuration file - */ - -static PyObject * -weechat_python_api_config_write (PyObject *self, PyObject *args) -{ - char *config_file; - int rc; - - API_FUNC(1, "config_write", API_RETURN_INT(-1)); - config_file = NULL; - if (!PyArg_ParseTuple (args, "s", &config_file)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - rc = weechat_config_write (API_STR2PTR(config_file)); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_read: read configuration file - */ - -static PyObject * -weechat_python_api_config_read (PyObject *self, PyObject *args) -{ - char *config_file; - int rc; - - API_FUNC(1, "config_read", API_RETURN_INT(-1)); - config_file = NULL; - if (!PyArg_ParseTuple (args, "s", &config_file)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - rc = weechat_config_read (API_STR2PTR(config_file)); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_reload: reload configuration file - */ - -static PyObject * -weechat_python_api_config_reload (PyObject *self, PyObject *args) -{ - char *config_file; - int rc; - - API_FUNC(1, "config_reload", API_RETURN_INT(-1)); - config_file = NULL; - if (!PyArg_ParseTuple (args, "s", &config_file)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - rc = weechat_config_reload (API_STR2PTR(config_file)); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_option_free: free an option in configuration file - */ - -static PyObject * -weechat_python_api_config_option_free (PyObject *self, PyObject *args) -{ - char *option; - - API_FUNC(1, "config_option_free", API_RETURN_ERROR); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_config_option_free (weechat_python_plugin, - python_current_script, - API_STR2PTR(option)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_section_free_options: free all options of a section - * in configuration file - */ - -static PyObject * -weechat_python_api_config_section_free_options (PyObject *self, PyObject *args) -{ - char *section; - - API_FUNC(1, "config_section_free_options", API_RETURN_ERROR); - section = NULL; - if (!PyArg_ParseTuple (args, "s", §ion)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_config_section_free_options (weechat_python_plugin, - python_current_script, - API_STR2PTR(section)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_section_free: free section in configuration file - */ - -static PyObject * -weechat_python_api_config_section_free (PyObject *self, PyObject *args) -{ - char *section; - - API_FUNC(1, "config_section_free", API_RETURN_ERROR); - section = NULL; - if (!PyArg_ParseTuple (args, "s", §ion)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_config_section_free (weechat_python_plugin, - python_current_script, - API_STR2PTR(section)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_free: free configuration file - */ - -static PyObject * -weechat_python_api_config_free (PyObject *self, PyObject *args) -{ - char *config_file; - - API_FUNC(1, "config_free", API_RETURN_ERROR); - config_file = NULL; - if (!PyArg_ParseTuple (args, "s", &config_file)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_config_free (weechat_python_plugin, - python_current_script, - API_STR2PTR(config_file)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_get: get config option - */ - -static PyObject * -weechat_python_api_config_get (PyObject *self, PyObject *args) -{ - char *option, *result; - PyObject *return_value; - - API_FUNC(1, "config_get", API_RETURN_EMPTY); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_config_get (option)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_config_get_plugin: get value of a plugin option - */ - -static PyObject * -weechat_python_api_config_get_plugin (PyObject *self, PyObject *args) -{ - char *option; - const char *result; - - API_FUNC(1, "config_get_plugin", API_RETURN_EMPTY); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_api_config_get_plugin (weechat_python_plugin, - python_current_script, - option); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_config_is_set_plugin: check if a plugin option is set - */ - -static PyObject * -weechat_python_api_config_is_set_plugin (PyObject *self, PyObject *args) -{ - char *option; - int rc; - - API_FUNC(1, "config_is_set_plugin", API_RETURN_INT(0)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - - rc = script_api_config_is_set_plugin (weechat_python_plugin, - python_current_script, - option); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_set_plugin: set value of a plugin option - */ - -static PyObject * -weechat_python_api_config_set_plugin (PyObject *self, PyObject *args) -{ - char *option, *value; - int rc; - - API_FUNC(1, "config_set_plugin", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - option = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "ss", &option, &value)) - API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); - - rc = script_api_config_set_plugin (weechat_python_plugin, - python_current_script, - option, - value); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_config_set_desc_plugin: set description of a plugin option - */ - -static PyObject * -weechat_python_api_config_set_desc_plugin (PyObject *self, PyObject *args) -{ - char *option, *description; - - API_FUNC(1, "config_set_desc_plugin", API_RETURN_ERROR); - option = NULL; - description = NULL; - if (!PyArg_ParseTuple (args, "ss", &option, &description)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_config_set_desc_plugin (weechat_python_plugin, - python_current_script, - option, - description); - - API_RETURN_OK; -} - -/* - * weechat_python_api_config_unset_plugin: unset plugin option - */ - -static PyObject * -weechat_python_api_config_unset_plugin (PyObject *self, PyObject *args) -{ - char *option; - int rc; - - API_FUNC(1, "config_unset_plugin", API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); - option = NULL; - if (!PyArg_ParseTuple (args, "s", &option)) - API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); - - rc = script_api_config_unset_plugin (weechat_python_plugin, - python_current_script, - option); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_key_bind: bind key(s) - */ - -static PyObject * -weechat_python_api_key_bind (PyObject *self, PyObject *args) -{ - char *context; - struct t_hashtable *hashtable; - PyObject *dict; - int num_keys; - - API_FUNC(1, "key_bind", API_RETURN_INT(0)); - context = NULL; - if (!PyArg_ParseTuple (args, "sO", &context, &dict)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - hashtable = weechat_python_dict_to_hashtable (dict, - WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE); - - num_keys = weechat_key_bind (context, hashtable); - - if (hashtable) - weechat_hashtable_free (hashtable); - - API_RETURN_INT(num_keys); -} - -/* - * weechat_python_api_key_unbind: unbind key(s) - */ - -static PyObject * -weechat_python_api_key_unbind (PyObject *self, PyObject *args) -{ - char *context, *key; - int num_keys; - - API_FUNC(1, "key_unbind", API_RETURN_INT(0)); - context = NULL; - key = NULL; - if (!PyArg_ParseTuple (args, "ss", &context, &key)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - num_keys = weechat_key_unbind (context, key); - - API_RETURN_INT(num_keys); -} - -/* - * weechat_python_api_prefix: get a prefix, used for display - */ - -static PyObject * -weechat_python_api_prefix (PyObject *self, PyObject *args) -{ - char *prefix; - const char *result; - - API_FUNC(0, "prefix", API_RETURN_EMPTY); - prefix = NULL; - if (!PyArg_ParseTuple (args, "s", &prefix)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_prefix (prefix); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_color: get a color code, used for display - */ - -static PyObject * -weechat_python_api_color (PyObject *self, PyObject *args) -{ - char *color; - const char *result; - - API_FUNC(0, "color", API_RETURN_EMPTY); - color = NULL; - if (!PyArg_ParseTuple (args, "s", &color)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_color (color); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_prnt: print message in a buffer - */ - -static PyObject * -weechat_python_api_prnt (PyObject *self, PyObject *args) -{ - char *buffer, *message; - - API_FUNC(0, "prnt", API_RETURN_ERROR); - buffer = NULL; - message = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &message)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_printf (weechat_python_plugin, - python_current_script, - API_STR2PTR(buffer), - "%s", message); - - API_RETURN_OK; -} - -/* - * weechat_python_api_prnt_date_tags: print message in a buffer with optional - * date and tags - */ - -static PyObject * -weechat_python_api_prnt_date_tags (PyObject *self, PyObject *args) -{ - char *buffer, *tags, *message; - int date; - - API_FUNC(1, "prnt_date_tags", API_RETURN_ERROR); - buffer = NULL; - date = 0; - tags = NULL; - message = NULL; - if (!PyArg_ParseTuple (args, "siss", &buffer, &date, &tags, &message)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_printf_date_tags (weechat_python_plugin, - python_current_script, - API_STR2PTR(buffer), - date, - tags, - "%s", message); - - API_RETURN_OK; -} - -/* - * weechat_python_api_prnt_y: print message in a buffer with free content - */ - -static PyObject * -weechat_python_api_prnt_y (PyObject *self, PyObject *args) -{ - char *buffer, *message; - int y; - - API_FUNC(1, "prnt_y", API_RETURN_ERROR); - buffer = NULL; - y = 0; - message = NULL; - if (!PyArg_ParseTuple (args, "sis", &buffer, &y, &message)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_printf_y (weechat_python_plugin, - python_current_script, - API_STR2PTR(buffer), - y, - "%s", message); - - API_RETURN_OK; -} - -/* - * weechat_python_api_log_print: print message in WeeChat log file - */ - -static PyObject * -weechat_python_api_log_print (PyObject *self, PyObject *args) -{ - char *message; - - API_FUNC(1, "log_print", API_RETURN_ERROR); - message = NULL; - if (!PyArg_ParseTuple (args, "s", &message)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_log_printf (weechat_python_plugin, - python_current_script, - "%s", message); - - API_RETURN_OK; -} - -/* - * weechat_python_api_hook_command_cb: callback for command hooked - */ - -int -weechat_python_api_hook_command_cb (void *data, struct t_gui_buffer *buffer, - int argc, char **argv, char **argv_eol) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - /* make C compiler happy */ - (void) argv; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (buffer); - func_argv[2] = (argc > 1) ? argv_eol[1] : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_command: hook a command - */ - -static PyObject * -weechat_python_api_hook_command (PyObject *self, PyObject *args) -{ - char *command, *description, *arguments, *args_description, *completion; - char *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_command", API_RETURN_EMPTY); - command = NULL; - description = NULL; - arguments = NULL; - args_description = NULL; - completion = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sssssss", &command, &description, &arguments, - &args_description, &completion, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_command (weechat_python_plugin, - python_current_script, - command, - description, - arguments, - args_description, - completion, - &weechat_python_api_hook_command_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_command_run_cb: callback for command_run hooked - */ - -int -weechat_python_api_hook_command_run_cb (void *data, struct t_gui_buffer *buffer, - const char *command) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (buffer); - func_argv[2] = (command) ? (char *)command : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_command_run: hook a command_run - */ - -static PyObject * -weechat_python_api_hook_command_run (PyObject *self, PyObject *args) -{ - char *command, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_command_run", API_RETURN_EMPTY); - command = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &command, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_command_run (weechat_python_plugin, - python_current_script, - command, - &weechat_python_api_hook_command_run_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_timer_cb: callback for timer hooked - */ - -int -weechat_python_api_hook_timer_cb (void *data, int remaining_calls) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char str_remaining_calls[32], empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - snprintf (str_remaining_calls, sizeof (str_remaining_calls), - "%d", remaining_calls); - - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = str_remaining_calls; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_timer: hook a timer - */ - -static PyObject * -weechat_python_api_hook_timer (PyObject *self, PyObject *args) -{ - int interval, align_second, max_calls; - char *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_timer", API_RETURN_EMPTY); - interval = 10; - align_second = 0; - max_calls = 0; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "iiiss", &interval, &align_second, &max_calls, - &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_timer (weechat_python_plugin, - python_current_script, - interval, - align_second, - max_calls, - &weechat_python_api_hook_timer_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_fd_cb: callback for fd hooked - */ - -int -weechat_python_api_hook_fd_cb (void *data, int fd) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char str_fd[32], empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - snprintf (str_fd, sizeof (str_fd), "%d", fd); - - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = str_fd; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_fd: hook a fd - */ - -static PyObject * -weechat_python_api_hook_fd (PyObject *self, PyObject *args) -{ - int fd, read, write, exception; - char *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_fd", API_RETURN_EMPTY); - fd = 0; - read = 0; - write = 0; - exception = 0; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "iiiiss", &fd, &read, &write, &exception, - &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_fd (weechat_python_plugin, - python_current_script, - fd, - read, - write, - exception, - &weechat_python_api_hook_fd_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_process_cb: callback for process hooked - */ - -int -weechat_python_api_hook_process_cb (void *data, - const char *command, int return_code, - const char *out, const char *err) -{ - struct t_script_callback *script_callback; - void *func_argv[5]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (command) ? (char *)command : empty_arg; - func_argv[2] = PyLong_FromLong((long)return_code); - func_argv[3] = (out) ? (char *)out : empty_arg; - func_argv[4] = (err) ? (char *)err : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ssOss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[2]) - { - Py_XDECREF((PyObject *)func_argv[2]); - } - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_process: hook a process - */ - -static PyObject * -weechat_python_api_hook_process (PyObject *self, PyObject *args) -{ - char *command, *function, *data, *result; - int timeout; - PyObject *return_value; - - API_FUNC(1, "hook_process", API_RETURN_EMPTY); - command = NULL; - timeout = 0; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "siss", &command, &timeout, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_process (weechat_python_plugin, - python_current_script, - command, - timeout, - &weechat_python_api_hook_process_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_process_hashtable: hook a process with options in - * a hashtable - */ - -static PyObject * -weechat_python_api_hook_process_hashtable (PyObject *self, PyObject *args) -{ - char *command, *function, *data, *result; - int timeout; - struct t_hashtable *options; - PyObject *dict, *return_value; - - API_FUNC(1, "hook_process_hashtable", API_RETURN_EMPTY); - command = NULL; - options = NULL; - timeout = 0; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sOiss", &command, &dict, &timeout, &function, - &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - options = weechat_python_dict_to_hashtable (dict, - WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE); - - result = script_ptr2str (script_api_hook_process_hashtable (weechat_python_plugin, - python_current_script, - command, - options, - timeout, - &weechat_python_api_hook_process_cb, - function, - data)); - - if (options) - weechat_hashtable_free (options); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_connect_cb: callback for connect hooked - */ - -int -weechat_python_api_hook_connect_cb (void *data, int status, int gnutls_rc, - const char *error, const char *ip_address) -{ - struct t_script_callback *script_callback; - void *func_argv[5]; - char str_status[32], str_gnutls_rc[32], empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - snprintf (str_status, sizeof (str_status), "%d", status); - snprintf (str_gnutls_rc, sizeof (str_gnutls_rc), "%d", gnutls_rc); - - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = str_status; - func_argv[2] = str_gnutls_rc; - func_argv[3] = (ip_address) ? (char *)ip_address : empty_arg; - func_argv[4] = (error) ? (char *)error : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sssss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_connect: hook a connection - */ - -static PyObject * -weechat_python_api_hook_connect (PyObject *self, PyObject *args) -{ - char *proxy, *address, *local_hostname, *function, *data, *result; - int port, sock, ipv6; - PyObject *return_value; - - API_FUNC(1, "hook_connect", API_RETURN_EMPTY); - proxy = NULL; - address = NULL; - port = 0; - sock = 0; - ipv6 = 0; - local_hostname = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ssiiisss", &proxy, &address, &port, &sock, - &ipv6, &local_hostname, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_connect (weechat_python_plugin, - python_current_script, - proxy, - address, - port, - sock, - ipv6, - NULL, /* gnutls session */ - NULL, /* gnutls callback */ - 0, /* gnutls DH key size */ - NULL, /* gnutls priorities */ - local_hostname, - &weechat_python_api_hook_connect_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_print_cb: callback for print hooked - */ - -int -weechat_python_api_hook_print_cb (void *data, struct t_gui_buffer *buffer, - time_t date, - int tags_count, const char **tags, - int displayed, int highlight, - const char *prefix, const char *message) -{ - struct t_script_callback *script_callback; - void *func_argv[8]; - char empty_arg[1] = { '\0' }; - static char timebuffer[64]; - int *rc, ret; - - /* make C compiler happy */ - (void) tags_count; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - snprintf (timebuffer, sizeof (timebuffer) - 1, "%ld", (long int)date); - - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (buffer); - func_argv[2] = timebuffer; - func_argv[3] = weechat_string_build_with_split_string (tags, ","); - if (!func_argv[3]) - func_argv[3] = strdup (""); - func_argv[4] = (displayed) ? strdup ("1") : strdup ("0"); - func_argv[5] = (highlight) ? strdup ("1") : strdup ("0"); - func_argv[6] = (prefix) ? (char *)prefix : empty_arg; - func_argv[7] = (message) ? (char *)message : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ssssssss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - if (func_argv[3]) - free (func_argv[3]); - if (func_argv[4]) - free (func_argv[4]); - if (func_argv[5]) - free (func_argv[5]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_print: hook a print - */ - -static PyObject * -weechat_python_api_hook_print (PyObject *self, PyObject *args) -{ - char *buffer, *tags, *message, *function, *data, *result; - int strip_colors; - PyObject *return_value; - - API_FUNC(1, "hook_print", API_RETURN_EMPTY); - buffer = NULL; - tags = NULL; - message = NULL; - strip_colors = 0; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sssiss", &buffer, &tags, &message, - &strip_colors, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_print (weechat_python_plugin, - python_current_script, - API_STR2PTR(buffer), - tags, - message, - strip_colors, - &weechat_python_api_hook_print_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_signal_cb: callback for signal hooked - */ - -int -weechat_python_api_hook_signal_cb (void *data, const char *signal, const char *type_data, - void *signal_data) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - static char value_str[64]; - int *rc, ret, free_needed; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (signal) ? (char *)signal : empty_arg; - free_needed = 0; - if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0) - { - func_argv[2] = (signal_data) ? (char *)signal_data : empty_arg; - } - else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_INT) == 0) - { - snprintf (value_str, sizeof (value_str) - 1, - "%d", *((int *)signal_data)); - func_argv[2] = value_str; - } - else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_POINTER) == 0) - { - func_argv[2] = script_ptr2str (signal_data); - free_needed = 1; - } - else - func_argv[2] = empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (free_needed && func_argv[2]) - free (func_argv[2]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_signal: hook a signal - */ - -static PyObject * -weechat_python_api_hook_signal (PyObject *self, PyObject *args) -{ - char *signal, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_signal", API_RETURN_EMPTY); - signal = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &signal, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_signal (weechat_python_plugin, - python_current_script, - signal, - &weechat_python_api_hook_signal_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_signal_send: send a signal - */ - -static PyObject * -weechat_python_api_hook_signal_send (PyObject *self, PyObject *args) -{ - char *signal, *type_data, *signal_data, *error; - int number; - - API_FUNC(1, "hook_signal_send", API_RETURN_ERROR); - signal = NULL; - type_data = NULL; - signal_data = NULL; - if (!PyArg_ParseTuple (args, "sss", &signal, &type_data, &signal_data)) - API_WRONG_ARGS(API_RETURN_ERROR); - - if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0) - { - weechat_hook_signal_send (signal, type_data, signal_data); - API_RETURN_OK; - } - else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_INT) == 0) - { - error = NULL; - number = (int)strtol (signal_data, &error, 10); - if (error && !error[0]) - { - weechat_hook_signal_send (signal, type_data, &number); - } - API_RETURN_OK; - } - else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_POINTER) == 0) - { - weechat_hook_signal_send (signal, type_data, - API_STR2PTR(signal_data)); - API_RETURN_OK; - } - - API_RETURN_ERROR; -} - -/* - * weechat_python_api_hook_hsignal_cb: callback for hsignal hooked - */ - -int -weechat_python_api_hook_hsignal_cb (void *data, const char *signal, - struct t_hashtable *hashtable) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (signal) ? (char *)signal : empty_arg; - func_argv[2] = weechat_python_hashtable_to_dict (hashtable); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ssO", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[2]) - { - Py_XDECREF((PyObject *)func_argv[2]); - } - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_hsignal: hook a hsignal - */ - -static PyObject * -weechat_python_api_hook_hsignal (PyObject *self, PyObject *args) -{ - char *signal, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_hsignal", API_RETURN_EMPTY); - signal = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &signal, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_hsignal (weechat_python_plugin, - python_current_script, - signal, - &weechat_python_api_hook_hsignal_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_hsignal_send: send a hsignal - */ - -static PyObject * -weechat_python_api_hook_hsignal_send (PyObject *self, PyObject *args) -{ - char *signal; - struct t_hashtable *hashtable; - PyObject *dict; - - API_FUNC(1, "hook_hsignal_send", API_RETURN_ERROR); - signal = NULL; - if (!PyArg_ParseTuple (args, "sO", &signal, &dict)) - API_WRONG_ARGS(API_RETURN_ERROR); - - hashtable = weechat_python_dict_to_hashtable (dict, - WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE); - - weechat_hook_hsignal_send (signal, hashtable); - - if (hashtable) - weechat_hashtable_free (hashtable); - - API_RETURN_OK; -} - -/* - * weechat_python_api_hook_config_cb: callback for config option hooked - */ - -int -weechat_python_api_hook_config_cb (void *data, const char *option, const char *value) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (option) ? (char *)option : empty_arg; - func_argv[2] = (value) ? (char *)value : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_config: hook a config option - */ - -static PyObject * -weechat_python_api_hook_config (PyObject *self, PyObject *args) -{ - char *option, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_config", API_RETURN_EMPTY); - option = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &option, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_config (weechat_python_plugin, - python_current_script, - option, - &weechat_python_api_hook_config_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_completion_cb: callback for completion hooked - */ - -int -weechat_python_api_hook_completion_cb (void *data, const char *completion_item, - struct t_gui_buffer *buffer, - struct t_gui_completion *completion) -{ - struct t_script_callback *script_callback; - void *func_argv[4]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (completion_item) ? (char *)completion_item : empty_arg; - func_argv[2] = script_ptr2str (buffer); - func_argv[3] = script_ptr2str (completion); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ssss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[2]) - free (func_argv[2]); - if (func_argv[3]) - free (func_argv[3]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_hook_completion: hook a completion - */ - -static PyObject * -weechat_python_api_hook_completion (PyObject *self, PyObject *args) -{ - char *completion, *description, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_completion", API_RETURN_EMPTY); - completion = NULL; - description = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ssss", &completion, &description, &function, - &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_completion (weechat_python_plugin, - python_current_script, - completion, - description, - &weechat_python_api_hook_completion_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_completion_list_add: add a word to list for a completion - */ - -static PyObject * -weechat_python_api_hook_completion_list_add (PyObject *self, PyObject *args) -{ - char *completion, *word, *where; - int nick_completion; - - API_FUNC(1, "hook_completion_list_add", API_RETURN_ERROR); - completion = NULL; - word = NULL; - nick_completion = 0; - where = NULL; - if (!PyArg_ParseTuple (args, "ssis", &completion, &word, &nick_completion, - &where)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_hook_completion_list_add (API_STR2PTR(completion), - word, - nick_completion, - where); - - API_RETURN_OK; -} - -/* - * weechat_python_api_hook_modifier_cb: callback for modifier hooked - */ - -char * -weechat_python_api_hook_modifier_cb (void *data, const char *modifier, - const char *modifier_data, const char *string) -{ - struct t_script_callback *script_callback; - void *func_argv[4]; - char empty_arg[1] = { '\0' }; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (modifier) ? (char *)modifier : empty_arg; - func_argv[2] = (modifier_data) ? (char *)modifier_data : empty_arg; - func_argv[3] = (string) ? (char *)string : empty_arg; - - return (char *)weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_STRING, - script_callback->function, - "ssss", func_argv); - } - - return NULL; -} - -/* - * weechat_python_api_hook_modifier: hook a modifier - */ - -static PyObject * -weechat_python_api_hook_modifier (PyObject *self, PyObject *args) -{ - char *modifier, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_modifier", API_RETURN_EMPTY); - modifier = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &modifier, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_modifier (weechat_python_plugin, - python_current_script, - modifier, - &weechat_python_api_hook_modifier_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_modifier_exec: execute a modifier hook - */ - -static PyObject * -weechat_python_api_hook_modifier_exec (PyObject *self, PyObject *args) -{ - char *modifier, *modifier_data, *string, *result; - PyObject *return_value; - - API_FUNC(1, "hook_modifier_exec", API_RETURN_EMPTY); - modifier = NULL; - modifier_data = NULL; - string = NULL; - if (!PyArg_ParseTuple (args, "sss", &modifier, &modifier_data, &string)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_hook_modifier_exec (modifier, modifier_data, string); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_info_cb: callback for info hooked - */ - -const char * -weechat_python_api_hook_info_cb (void *data, const char *info_name, - const char *arguments) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (info_name) ? (char *)info_name : empty_arg; - func_argv[2] = (arguments) ? (char *)arguments : empty_arg; - - return (const char *)weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_STRING, - script_callback->function, - "sss", func_argv); - } - - return NULL; -} - -/* - * weechat_python_api_hook_info: hook an info - */ - -static PyObject * -weechat_python_api_hook_info (PyObject *self, PyObject *args) -{ - char *info_name, *description, *args_description, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_info", API_RETURN_EMPTY); - info_name = NULL; - description = NULL; - args_description = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sssss", &info_name, &description, - &args_description, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_info (weechat_python_plugin, - python_current_script, - info_name, - description, - args_description, - &weechat_python_api_hook_info_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_info_hashtable_cb: callback for info_hashtable hooked - */ - -struct t_hashtable * -weechat_python_api_hook_info_hashtable_cb (void *data, const char *info_name, - struct t_hashtable *hashtable) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - struct t_hashtable *ret_hashtable; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (info_name) ? (char *)info_name : empty_arg; - func_argv[2] = weechat_python_hashtable_to_dict (hashtable); - - ret_hashtable = weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_HASHTABLE, - script_callback->function, - "ssO", func_argv); - - if (func_argv[2]) - { - Py_XDECREF((PyObject *)func_argv[2]); - } - - return ret_hashtable; - } - - return NULL; -} - -/* - * weechat_python_api_hook_info_hashtable: hook an info_hashtable - */ - -static PyObject * -weechat_python_api_hook_info_hashtable (PyObject *self, PyObject *args) -{ - char *info_name, *description, *args_description, *output_description; - char *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_info_hashtable", API_RETURN_EMPTY); - info_name = NULL; - description = NULL; - args_description = NULL; - output_description = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ssssss", &info_name, &description, - &args_description, &output_description, - &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_info_hashtable (weechat_python_plugin, - python_current_script, - info_name, - description, - args_description, - output_description, - &weechat_python_api_hook_info_hashtable_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_infolist_cb: callback for infolist hooked - */ - -struct t_infolist * -weechat_python_api_hook_infolist_cb (void *data, const char *infolist_name, - void *pointer, const char *arguments) -{ - struct t_script_callback *script_callback; - void *func_argv[4]; - char empty_arg[1] = { '\0' }; - struct t_infolist *result; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = (infolist_name) ? (char *)infolist_name : empty_arg; - func_argv[2] = script_ptr2str (pointer); - func_argv[3] = (arguments) ? (char *)arguments : empty_arg; - - result = (struct t_infolist *)weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_STRING, - script_callback->function, - "ssss", func_argv); - - if (func_argv[2]) - free (func_argv[2]); - - return result; - } - - return NULL; -} - -/* - * weechat_python_api_hook_infolist: hook an infolist - */ - -static PyObject * -weechat_python_api_hook_infolist (PyObject *self, PyObject *args) -{ - char *infolist_name, *description, *pointer_description, *args_description; - char *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_infolist", API_RETURN_EMPTY); - infolist_name = NULL; - description = NULL; - pointer_description = NULL; - args_description = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "ssssss", &infolist_name, &description, - &pointer_description, &args_description, &function, - &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_infolist (weechat_python_plugin, - python_current_script, - infolist_name, - description, - pointer_description, - args_description, - &weechat_python_api_hook_infolist_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hook_focus_cb: callback for focus hooked - */ - -struct t_hashtable * -weechat_python_api_hook_focus_cb (void *data, - struct t_hashtable *info) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char empty_arg[1] = { '\0' }; - struct t_hashtable *ret_hashtable; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = weechat_python_hashtable_to_dict (info); - - ret_hashtable = weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_HASHTABLE, - script_callback->function, - "sO", func_argv); - if (func_argv[1]) - { - Py_XDECREF((PyObject *)func_argv[1]); - } - - return ret_hashtable; - } - - return NULL; -} - -/* - * weechat_python_api_hook_focus: hook a focus - */ - -static PyObject * -weechat_python_api_hook_focus (PyObject *self, PyObject *args) -{ - char *area, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "hook_focus", API_RETURN_EMPTY); - area = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &area, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_hook_focus (weechat_python_plugin, - python_current_script, - area, - &weechat_python_api_hook_focus_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_unhook: unhook something - */ - -static PyObject * -weechat_python_api_unhook (PyObject *self, PyObject *args) -{ - char *hook; - - API_FUNC(1, "unhook", API_RETURN_ERROR); - hook = NULL; - if (!PyArg_ParseTuple (args, "s", &hook)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_unhook (weechat_python_plugin, - python_current_script, - API_STR2PTR(hook)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_unhook_all: unhook all for script - */ - -static PyObject * -weechat_python_api_unhook_all (PyObject *self, PyObject *args) -{ - /* make C compiler happy */ - (void) args; - - API_FUNC(1, "unhook_all", API_RETURN_ERROR); - - script_api_unhook_all (weechat_python_plugin, python_current_script); - - API_RETURN_OK; -} - -/* - * weechat_python_api_buffer_input_data_cb: callback for input data in a buffer - */ - -int -weechat_python_api_buffer_input_data_cb (void *data, struct t_gui_buffer *buffer, - const char *input_data) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (buffer); - func_argv[2] = (input_data) ? (char *)input_data : empty_arg; - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "sss", func_argv); - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_buffer_close_cb: callback for buffer closed - */ - -int -weechat_python_api_buffer_close_cb (void *data, struct t_gui_buffer *buffer) -{ - struct t_script_callback *script_callback; - void *func_argv[2]; - char empty_arg[1] = { '\0' }; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (buffer); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ss", func_argv); - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_buffer_new: create a new buffer - */ - -static PyObject * -weechat_python_api_buffer_new (PyObject *self, PyObject *args) -{ - char *name, *function_input, *data_input, *function_close, *data_close; - char *result; - PyObject *return_value; - - API_FUNC(1, "buffer_new", API_RETURN_EMPTY); - name = NULL; - function_input = NULL; - data_input = NULL; - function_close = NULL; - data_close = NULL; - if (!PyArg_ParseTuple (args, "sssss", &name, &function_input, &data_input, - &function_close, &data_close)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_buffer_new (weechat_python_plugin, - python_current_script, - name, - &weechat_python_api_buffer_input_data_cb, - function_input, - data_input, - &weechat_python_api_buffer_close_cb, - function_close, - data_close)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_buffer_search: search a buffer - */ - -static PyObject * -weechat_python_api_buffer_search (PyObject *self, PyObject *args) -{ - char *plugin, *name; - char *result; - PyObject *return_value; - - API_FUNC(1, "buffer_search", API_RETURN_EMPTY); - plugin = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "ss", &plugin, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_buffer_search (plugin, name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_buffer_search_main: search main buffer (WeeChat core buffer) - */ - -static PyObject * -weechat_python_api_buffer_search_main (PyObject *self, PyObject *args) -{ - char *result; - PyObject *return_value; - - /* make C compiler happy */ - (void) args; - - API_FUNC(1, "buffer_search_main", API_RETURN_EMPTY); - - result = script_ptr2str (weechat_buffer_search_main ()); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_current_buffer: get current buffer - */ - -static PyObject * -weechat_python_api_current_buffer (PyObject *self, PyObject *args) -{ - char *result; - PyObject *return_value; - - /* make C compiler happy */ - (void) args; - - API_FUNC(1, "current_buffer", API_RETURN_EMPTY); - - result = script_ptr2str (weechat_current_buffer ()); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_buffer_clear: clear a buffer - */ - -static PyObject * -weechat_python_api_buffer_clear (PyObject *self, PyObject *args) -{ - char *buffer; - - API_FUNC(1, "buffer_clear", API_RETURN_ERROR); - buffer = NULL; - if (!PyArg_ParseTuple (args, "s", &buffer)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_buffer_clear (API_STR2PTR(buffer)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_buffer_close: close a buffer - */ - -static PyObject * -weechat_python_api_buffer_close (PyObject *self, PyObject *args) -{ - char *buffer; - - API_FUNC(1, "buffer_close", API_RETURN_ERROR); - buffer = NULL; - if (!PyArg_ParseTuple (args, "s", &buffer)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_buffer_close (weechat_python_plugin, - python_current_script, - API_STR2PTR(buffer)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_buffer_merge: merge a buffer to another buffer - */ - -static PyObject * -weechat_python_api_buffer_merge (PyObject *self, PyObject *args) -{ - char *buffer, *target_buffer; - - API_FUNC(1, "buffer_merge", API_RETURN_ERROR); - buffer = NULL; - target_buffer = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &target_buffer)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_buffer_merge (API_STR2PTR(buffer), - API_STR2PTR(target_buffer)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_buffer_unmerge: unmerge a buffer from group of merged - * buffers - */ - -static PyObject * -weechat_python_api_buffer_unmerge (PyObject *self, PyObject *args) -{ - char *buffer; - int number; - - API_FUNC(1, "buffer_unmerge", API_RETURN_ERROR); - buffer = NULL; - number = 0; - if (!PyArg_ParseTuple (args, "si", &buffer, &number)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_buffer_unmerge (API_STR2PTR(buffer), number); - - API_RETURN_OK; -} - -/* - * weechat_python_api_buffer_get_integer: get a buffer property as integer - */ - -static PyObject * -weechat_python_api_buffer_get_integer (PyObject *self, PyObject *args) -{ - char *buffer, *property; - int value; - - API_FUNC(1, "buffer_get_integer", API_RETURN_INT(-1)); - buffer = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &property)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - value = weechat_buffer_get_integer (API_STR2PTR(buffer), property); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_buffer_get_string: get a buffer property as string - */ - -static PyObject * -weechat_python_api_buffer_get_string (PyObject *self, PyObject *args) -{ - char *buffer, *property; - const char *result; - - API_FUNC(1, "buffer_get_string", API_RETURN_ERROR); - buffer = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_buffer_get_string (API_STR2PTR(buffer), property); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_buffer_get_pointer: get a buffer property as pointer - */ - -static PyObject * -weechat_python_api_buffer_get_pointer (PyObject *self, PyObject *args) -{ - char *buffer, *property, *result; - PyObject *return_value; - - API_FUNC(1, "buffer_get_pointer", API_RETURN_EMPTY); - buffer = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_buffer_get_pointer (API_STR2PTR(buffer), - property)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_buffer_set: set a buffer property - */ - -static PyObject * -weechat_python_api_buffer_set (PyObject *self, PyObject *args) -{ - char *buffer, *property, *value; - - API_FUNC(1, "buffer_set", API_RETURN_ERROR); - buffer = NULL; - property = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &property, &value)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_buffer_set (API_STR2PTR(buffer), - property, - value); - - API_RETURN_OK; -} - -/* - * weechat_python_api_buffer_string_replace_local_var: replace local variables ($var) in a string, - * using value of local variables - */ - -static PyObject * -weechat_python_api_buffer_string_replace_local_var (PyObject *self, PyObject *args) -{ - char *buffer, *string, *result; - PyObject *return_value; - - API_FUNC(1, "buffer_string_replace_local_var", API_RETURN_ERROR); - buffer = NULL; - string = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &string)) - API_WRONG_ARGS(API_RETURN_ERROR); - - result = weechat_buffer_string_replace_local_var (API_STR2PTR(buffer), string); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_buffer_match_list: return 1 if buffer matches list of - * buffers - */ - -static PyObject * -weechat_python_api_buffer_match_list (PyObject *self, PyObject *args) -{ - char *buffer, *string; - int value; - - API_FUNC(1, "buffer_match_list", API_RETURN_INT(0)); - buffer = NULL; - string = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &string)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_buffer_match_list (API_STR2PTR(buffer), string); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_current_window: get current window - */ - -static PyObject * -weechat_python_api_current_window (PyObject *self, PyObject *args) -{ - char *result; - PyObject *return_value; - - /* make C compiler happy */ - (void) args; - - API_FUNC(1, "current_window", API_RETURN_EMPTY); - - result = script_ptr2str (weechat_current_window ()); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_window_search_with_buffer: search a window with buffer - * pointer - */ - -static PyObject * -weechat_python_api_window_search_with_buffer (PyObject *self, PyObject *args) -{ - char *buffer, *result; - PyObject *return_value; - - API_FUNC(1, "window_search_with_buffer", API_RETURN_EMPTY); - buffer = NULL; - if (!PyArg_ParseTuple (args, "s", &buffer)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_window_search_with_buffer (API_STR2PTR(buffer))); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_window_get_integer get a window property as integer - */ - -static PyObject * -weechat_python_api_window_get_integer (PyObject *self, PyObject *args) -{ - char *window, *property; - int value; - - API_FUNC(1, "window_get_integer", API_RETURN_INT(-1)); - window = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &window, &property)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - value = weechat_window_get_integer (API_STR2PTR(window), property); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_window_get_string: get a window property as string - */ - -static PyObject * -weechat_python_api_window_get_string (PyObject *self, PyObject *args) -{ - char *window, *property; - const char *result; - - API_FUNC(1, "window_get_string", API_RETURN_EMPTY); - window = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &window, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_window_get_string (API_STR2PTR(window), property); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_window_get_pointer: get a window property as pointer - */ - -static PyObject * -weechat_python_api_window_get_pointer (PyObject *self, PyObject *args) -{ - char *window, *property, *result; - PyObject *return_value; - - API_FUNC(1, "window_get_pointer", API_RETURN_EMPTY); - window = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &window, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_window_get_pointer (API_STR2PTR(window), - property)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_window_set_title: set window title - */ - -static PyObject * -weechat_python_api_window_set_title (PyObject *self, PyObject *args) -{ - char *title; - - API_FUNC(1, "window_set_title", API_RETURN_ERROR); - title = NULL; - if (!PyArg_ParseTuple (args, "s", &title)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_window_set_title (title); - - API_RETURN_OK; -} - -/* - * weechat_python_api_nicklist_add_group: add a group in nicklist - */ - -static PyObject * -weechat_python_api_nicklist_add_group (PyObject *self, PyObject *args) -{ - char *buffer, *parent_group, *name, *color, *result; - int visible; - PyObject *return_value; - - API_FUNC(1, "nicklist_add_group", API_RETURN_EMPTY); - buffer = NULL; - parent_group = NULL; - name = NULL; - color = NULL; - visible = 0; - if (!PyArg_ParseTuple (args, "ssssi", &buffer, &parent_group, &name, - &color, &visible)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_nicklist_add_group (API_STR2PTR(buffer), - API_STR2PTR(parent_group), - name, - color, - visible)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_nicklist_search_group: search a group in nicklist - */ - -static PyObject * -weechat_python_api_nicklist_search_group (PyObject *self, PyObject *args) -{ - char *buffer, *from_group, *name, *result; - PyObject *return_value; - - API_FUNC(1, "nicklist_search_group", API_RETURN_EMPTY); - buffer = NULL; - from_group = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &from_group, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_nicklist_search_group (API_STR2PTR(buffer), - API_STR2PTR(from_group), - name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_nicklist_add_nick: add a nick in nicklist - */ - -static PyObject * -weechat_python_api_nicklist_add_nick (PyObject *self, PyObject *args) -{ - char *buffer, *group, *name, *color, *prefix, *prefix_color, *result; - int visible; - PyObject *return_value; - - API_FUNC(1, "nicklist_add_nick", API_RETURN_EMPTY); - buffer = NULL; - group = NULL; - name = NULL; - color = NULL; - prefix = NULL; - prefix_color = NULL; - visible = 0; - if (!PyArg_ParseTuple (args, "ssssssi", &buffer, &group, &name, &color, - &prefix, &prefix_color, &visible)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_nicklist_add_nick (API_STR2PTR(buffer), - API_STR2PTR(group), - name, - color, - prefix, - prefix_color, - visible)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_nicklist_search_nick: search a nick in nicklist - */ - -static PyObject * -weechat_python_api_nicklist_search_nick (PyObject *self, PyObject *args) -{ - char *buffer, *from_group, *name, *result; - PyObject *return_value; - - API_FUNC(1, "nicklist_search_nick", API_RETURN_EMPTY); - buffer = NULL; - from_group = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &from_group, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_nicklist_search_nick (API_STR2PTR(buffer), - API_STR2PTR(from_group), - name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_nicklist_remove_group: remove a group from nicklist - */ - -static PyObject * -weechat_python_api_nicklist_remove_group (PyObject *self, PyObject *args) -{ - char *buffer, *group; - - API_FUNC(1, "nicklist_remove_group", API_RETURN_ERROR); - buffer = NULL; - group = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &group)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_nicklist_remove_group (API_STR2PTR(buffer), - API_STR2PTR(group)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_nicklist_remove_nick: remove a nick from nicklist - */ - -static PyObject * -weechat_python_api_nicklist_remove_nick (PyObject *self, PyObject *args) -{ - char *buffer, *nick; - - API_FUNC(1, "nicklist_remove_nick", API_RETURN_ERROR); - buffer = NULL; - nick = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &nick)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_nicklist_remove_nick (API_STR2PTR(buffer), - API_STR2PTR(nick)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_nicklist_remove_all: remove all groups/nicks from nicklist - */ - -static PyObject * -weechat_python_api_nicklist_remove_all (PyObject *self, PyObject *args) -{ - char *buffer; - - API_FUNC(1, "nicklist_remove_all", API_RETURN_ERROR); - buffer = NULL; - if (!PyArg_ParseTuple (args, "s", &buffer)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_nicklist_remove_all (API_STR2PTR(buffer)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_nicklist_group_get_integer get a group property as integer - */ - -static PyObject * -weechat_python_api_nicklist_group_get_integer (PyObject *self, PyObject *args) -{ - char *buffer, *group, *property; - int value; - - API_FUNC(1, "nicklist_group_get_integer", API_RETURN_INT(-1)); - buffer = NULL; - group = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &group, &property)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - value = weechat_nicklist_group_get_integer (API_STR2PTR(buffer), - API_STR2PTR(group), - property); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_nicklist_group_get_string: get a group property as string - */ - -static PyObject * -weechat_python_api_nicklist_group_get_string (PyObject *self, PyObject *args) -{ - char *buffer, *group, *property; - const char *result; - - API_FUNC(1, "nicklist_group_get_string", API_RETURN_ERROR); - buffer = NULL; - group = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &group, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_nicklist_group_get_string (API_STR2PTR(buffer), - API_STR2PTR(group), - property); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_nicklist_group_get_pointer: get a group property as pointer - */ - -static PyObject * -weechat_python_api_nicklist_group_get_pointer (PyObject *self, PyObject *args) -{ - char *buffer, *group, *property, *result; - PyObject *return_value; - - API_FUNC(1, "nicklist_group_get_pointer", API_RETURN_EMPTY); - buffer = NULL; - group = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &group, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_nicklist_group_get_pointer (API_STR2PTR(buffer), - API_STR2PTR(group), - property)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_nicklist_group_set: set a group property - */ - -static PyObject * -weechat_python_api_nicklist_group_set (PyObject *self, PyObject *args) -{ - char *buffer, *group, *property, *value; - - API_FUNC(1, "nicklist_group_set", API_RETURN_ERROR); - buffer = NULL; - group = NULL; - property = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "ssss", &buffer, &group, &property, &value)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_nicklist_group_set (API_STR2PTR(buffer), - API_STR2PTR(group), - property, - value); - - API_RETURN_OK; -} - -/* - * weechat_python_api_nicklist_nick_get_integer get a nick property as integer - */ - -static PyObject * -weechat_python_api_nicklist_nick_get_integer (PyObject *self, PyObject *args) -{ - char *buffer, *nick, *property; - int value; - - API_FUNC(1, "nicklist_nick_get_integer", API_RETURN_INT(-1)); - buffer = NULL; - nick = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &nick, &property)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - value = weechat_nicklist_nick_get_integer (API_STR2PTR(buffer), - API_STR2PTR(nick), - property); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_nicklist_nick_get_string: get a nick property as string - */ - -static PyObject * -weechat_python_api_nicklist_nick_get_string (PyObject *self, PyObject *args) -{ - char *buffer, *nick, *property; - const char *result; - - API_FUNC(1, "nicklist_nick_get_string", API_RETURN_ERROR); - buffer = NULL; - nick = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &nick, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_nicklist_nick_get_string (API_STR2PTR(buffer), - API_STR2PTR(nick), - property); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_nicklist_nick_get_pointer: get a nick property as pointer - */ - -static PyObject * -weechat_python_api_nicklist_nick_get_pointer (PyObject *self, PyObject *args) -{ - char *buffer, *nick, *property, *result; - PyObject *return_value; - - API_FUNC(1, "nicklist_nick_get_pointer", API_RETURN_EMPTY); - buffer = NULL; - nick = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "sss", &buffer, &nick, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_nicklist_nick_get_pointer (API_STR2PTR(buffer), - API_STR2PTR(nick), - property)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_nicklist_nick_set: set a nick property - */ - -static PyObject * -weechat_python_api_nicklist_nick_set (PyObject *self, PyObject *args) -{ - char *buffer, *nick, *property, *value; - - API_FUNC(1, "nicklist_nick_set", API_RETURN_ERROR); - buffer = NULL; - nick = NULL; - property = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "ssss", &buffer, &nick, &property, &value)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_nicklist_nick_set (API_STR2PTR(buffer), - API_STR2PTR(nick), - property, - value); - - API_RETURN_OK; -} - -/* - * weechat_python_api_bar_item_search: search a bar item - */ - -static PyObject * -weechat_python_api_bar_item_search (PyObject *self, PyObject *args) -{ - char *name, *result; - PyObject *return_value; - - API_FUNC(1, "bar_item_search", API_RETURN_EMPTY); - name = NULL; - if (!PyArg_ParseTuple (args, "s", &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_bar_item_search (name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_bar_item_build_cb: callback for building bar item - */ - -char * -weechat_python_api_bar_item_build_cb (void *data, struct t_gui_bar_item *item, - struct t_gui_window *window) -{ - struct t_script_callback *script_callback; - void *func_argv[3]; - char empty_arg[1] = { '\0' }, *ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (item); - func_argv[2] = script_ptr2str (window); - - ret = (char *)weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_STRING, - script_callback->function, - "sss", func_argv); - - if (func_argv[1]) - free (func_argv[1]); - if (func_argv[2]) - free (func_argv[2]); - - return ret; - } - - return NULL; -} - -/* - * weechat_python_api_bar_item_new: add a new bar item - */ - -static PyObject * -weechat_python_api_bar_item_new (PyObject *self, PyObject *args) -{ - char *name, *function, *data, *result; - PyObject *return_value; - - API_FUNC(1, "bar_item_new", API_RETURN_EMPTY); - name = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &name, &function, &data)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (script_api_bar_item_new (weechat_python_plugin, - python_current_script, - name, - &weechat_python_api_bar_item_build_cb, - function, - data)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_bar_item_update: update a bar item on screen - */ - -static PyObject * -weechat_python_api_bar_item_update (PyObject *self, PyObject *args) -{ - char *name; - - API_FUNC(1, "bar_item_update", API_RETURN_ERROR); - name = NULL; - if (!PyArg_ParseTuple (args, "s", &name)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_bar_item_update (name); - - API_RETURN_OK; -} - -/* - * weechat_python_api_bar_item_remove: remove a bar item - */ - -static PyObject * -weechat_python_api_bar_item_remove (PyObject *self, PyObject *args) -{ - char *item; - - API_FUNC(1, "bar_item_remove", API_RETURN_ERROR); - item = NULL; - if (!PyArg_ParseTuple (args, "s", &item)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_bar_item_remove (weechat_python_plugin, - python_current_script, - API_STR2PTR(item)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_bar_search: search a bar - */ - -static PyObject * -weechat_python_api_bar_search (PyObject *self, PyObject *args) -{ - char *name, *result; - PyObject *return_value; - - API_FUNC(1, "bar_search", API_RETURN_EMPTY); - name = NULL; - if (!PyArg_ParseTuple (args, "s", &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_bar_search (name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_bar_new: add a new bar - */ - -static PyObject * -weechat_python_api_bar_new (PyObject *self, PyObject *args) -{ - char *name, *hidden, *priority, *type, *conditions, *position; - char *filling_top_bottom, *filling_left_right, *size, *size_max; - char *color_fg, *color_delim, *color_bg, *separator, *items, *result; - PyObject *return_value; - - API_FUNC(1, "bar_new", API_RETURN_EMPTY); - name = NULL; - hidden = NULL; - priority = NULL; - type = NULL; - conditions = NULL; - position = NULL; - filling_top_bottom = NULL; - filling_left_right = NULL; - size = NULL; - size_max = NULL; - color_fg = NULL; - color_delim = NULL; - color_bg = NULL; - separator = NULL; - items = NULL; - if (!PyArg_ParseTuple (args, "sssssssssssssss", &name, &hidden, &priority, - &type, &conditions, &position, &filling_top_bottom, - &filling_left_right, &size, &size_max, &color_fg, - &color_delim, &color_bg, &separator, &items)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_bar_new (name, - hidden, - priority, - type, - conditions, - position, - filling_top_bottom, - filling_left_right, - size, - size_max, - color_fg, - color_delim, - color_bg, - separator, - items)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_bar_set: set a bar property - */ - -static PyObject * -weechat_python_api_bar_set (PyObject *self, PyObject *args) -{ - char *bar, *property, *value; - - API_FUNC(1, "bar_set", API_RETURN_ERROR); - bar = NULL; - property = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "sss", &bar, &property, &value)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_bar_set (API_STR2PTR(bar), - property, - value); - - API_RETURN_OK; -} - -/* - * weechat_python_api_bar_update: update a bar on screen - */ - -static PyObject * -weechat_python_api_bar_update (PyObject *self, PyObject *args) -{ - char *name; - - API_FUNC(1, "bar_item", API_RETURN_ERROR); - name = NULL; - if (!PyArg_ParseTuple (args, "s", &name)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_bar_update (name); - - API_RETURN_OK; -} - -/* - * weechat_python_api_bar_remove: remove a bar - */ - -static PyObject * -weechat_python_api_bar_remove (PyObject *self, PyObject *args) -{ - char *bar; - - API_FUNC(1, "bar_remove", API_RETURN_ERROR); - bar = NULL; - if (!PyArg_ParseTuple (args, "s", &bar)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_bar_remove (API_STR2PTR(bar)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_command: send command to server - */ - -static PyObject * -weechat_python_api_command (PyObject *self, PyObject *args) -{ - char *buffer, *command; - - API_FUNC(1, "command", API_RETURN_ERROR); - buffer = NULL; - command = NULL; - if (!PyArg_ParseTuple (args, "ss", &buffer, &command)) - API_WRONG_ARGS(API_RETURN_ERROR); - - script_api_command (weechat_python_plugin, - python_current_script, - API_STR2PTR(buffer), - command); - - API_RETURN_OK; -} - -/* - * weechat_python_api_info_get: get info (as string) - */ - -static PyObject * -weechat_python_api_info_get (PyObject *self, PyObject *args) -{ - char *info_name, *arguments; - const char *result; - - API_FUNC(1, "info_get", API_RETURN_EMPTY); - info_name = NULL; - arguments = NULL; - if (!PyArg_ParseTuple (args, "ss", &info_name, &arguments)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_info_get (info_name, arguments); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_info_get_hashtable: get info (as hashtable) - */ - -static PyObject * -weechat_python_api_info_get_hashtable (PyObject *self, PyObject *args) -{ - char *info_name; - struct t_hashtable *hashtable, *result_hashtable; - PyObject *dict, *result_dict; - - API_FUNC(1, "info_get_hashtable", API_RETURN_EMPTY); - info_name = NULL; - if (!PyArg_ParseTuple (args, "sO", &info_name, &dict)) - API_WRONG_ARGS(API_RETURN_EMPTY); - hashtable = weechat_python_dict_to_hashtable (dict, - WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE); - - result_hashtable = weechat_info_get_hashtable (info_name, hashtable); - result_dict = weechat_python_hashtable_to_dict (result_hashtable); - - if (hashtable) - weechat_hashtable_free (hashtable); - if (result_hashtable) - weechat_hashtable_free (result_hashtable); - - return result_dict; -} - -/* - * weechat_python_api_infolist_new: create new infolist - */ - -static PyObject * -weechat_python_api_infolist_new (PyObject *self, PyObject *args) -{ - char *result; - PyObject *return_value; - - /* make C compiler happy */ - (void) args; - - API_FUNC(1, "infolist_new", API_RETURN_EMPTY); - result = script_ptr2str (weechat_infolist_new ()); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_new_item: create new item in infolist - */ - -static PyObject * -weechat_python_api_infolist_new_item (PyObject *self, PyObject *args) -{ - char *infolist, *result; - PyObject *return_value; - - API_FUNC(1, "infolist_new_item", API_RETURN_EMPTY); - infolist = NULL; - if (!PyArg_ParseTuple (args, "s", &infolist)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_new_item (API_STR2PTR(infolist))); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_new_var_integer: create new integer variable in - * infolist - */ - -static PyObject * -weechat_python_api_infolist_new_var_integer (PyObject *self, PyObject *args) -{ - char *infolist, *name, *result; - int value; - PyObject *return_value; - - API_FUNC(1, "infolist_new_var_integer", API_RETURN_EMPTY); - infolist = NULL; - name = NULL; - value = 0; - if (!PyArg_ParseTuple (args, "ssi", &infolist, &name, &value)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_new_var_integer (API_STR2PTR(infolist), - name, - value)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_new_var_string: create new string variable in - * infolist - */ - -static PyObject * -weechat_python_api_infolist_new_var_string (PyObject *self, PyObject *args) -{ - char *infolist, *name, *value, *result; - PyObject *return_value; - - API_FUNC(1, "infolist_new_var_string", API_RETURN_EMPTY); - infolist = NULL; - name = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "sss", &infolist, &name, &value)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_new_var_string (API_STR2PTR(infolist), - name, - value)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_new_var_pointer: create new pointer variable in - * infolist - */ - -static PyObject * -weechat_python_api_infolist_new_var_pointer (PyObject *self, PyObject *args) -{ - char *infolist, *name, *value, *result; - PyObject *return_value; - - API_FUNC(1, "infolist_new_var_pointer", API_RETURN_EMPTY); - infolist = NULL; - name = NULL; - value = NULL; - if (!PyArg_ParseTuple (args, "sss", &infolist, &name, &value)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_new_var_pointer (API_STR2PTR(infolist), - name, - API_STR2PTR(value))); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_new_var_time: create new time variable in - * infolist - */ - -static PyObject * -weechat_python_api_infolist_new_var_time (PyObject *self, PyObject *args) -{ - char *infolist, *name, *result; - int value; - PyObject *return_value; - - API_FUNC(1, "infolist_new_var_time", API_RETURN_EMPTY); - infolist = NULL; - name = NULL; - value = 0; - if (!PyArg_ParseTuple (args, "ssi", &infolist, &name, &value)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_new_var_time (API_STR2PTR(infolist), - name, - value)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_get: get list with infos - */ - -static PyObject * -weechat_python_api_infolist_get (PyObject *self, PyObject *args) -{ - char *name, *pointer, *arguments, *result; - PyObject *return_value; - - API_FUNC(1, "infolist_get", API_RETURN_EMPTY); - name = NULL; - pointer = NULL; - arguments = NULL; - if (!PyArg_ParseTuple (args, "sss", &name, &pointer, &arguments)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_get (name, - API_STR2PTR(pointer), - arguments)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_next: move item pointer to next item in infolist - */ - -static PyObject * -weechat_python_api_infolist_next (PyObject *self, PyObject *args) -{ - char *infolist; - int value; - - API_FUNC(1, "infolist_next", API_RETURN_INT(0)); - infolist = NULL; - if (!PyArg_ParseTuple (args, "s", &infolist)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_infolist_next (API_STR2PTR(infolist)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_infolist_prev: move item pointer to previous item in infolist - */ - -static PyObject * -weechat_python_api_infolist_prev (PyObject *self, PyObject *args) -{ - char *infolist; - int value; - - API_FUNC(1, "infolist_prev", API_RETURN_INT(0)); - infolist = NULL; - if (!PyArg_ParseTuple (args, "s", &infolist)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_infolist_prev (API_STR2PTR(infolist)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_infolist_reset_item_cursor: reset pointer to current item - * in infolist - */ - -static PyObject * -weechat_python_api_infolist_reset_item_cursor (PyObject *self, PyObject *args) -{ - char *infolist; - - API_FUNC(1, "infolist_reset_item_cursor", API_RETURN_ERROR); - infolist = NULL; - if (!PyArg_ParseTuple (args, "s", &infolist)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_infolist_reset_item_cursor (API_STR2PTR(infolist)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_infolist_fields: get list of fields for current item of infolist - */ - -static PyObject * -weechat_python_api_infolist_fields (PyObject *self, PyObject *args) -{ - char *infolist; - const char *result; - - API_FUNC(1, "infolist_fields", API_RETURN_EMPTY); - infolist = NULL; - if (!PyArg_ParseTuple (args, "s", &infolist)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_infolist_fields (API_STR2PTR(infolist)); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_infolist_integer: get integer value of a variable in infolist - */ - -static PyObject * -weechat_python_api_infolist_integer (PyObject *self, PyObject *args) -{ - char *infolist, *variable; - int value; - - API_FUNC(1, "infolist_integer", API_RETURN_INT(0)); - infolist = NULL; - variable = NULL; - if (!PyArg_ParseTuple (args, "ss", &infolist, &variable)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_infolist_integer (API_STR2PTR(infolist), - variable); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_infolist_string: get string value of a variable in infolist - */ - -static PyObject * -weechat_python_api_infolist_string (PyObject *self, PyObject *args) -{ - char *infolist, *variable; - const char *result; - - API_FUNC(1, "infolist_string", API_RETURN_EMPTY); - infolist = NULL; - variable = NULL; - if (!PyArg_ParseTuple (args, "ss", &infolist, &variable)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_infolist_string (API_STR2PTR(infolist), - variable); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_infolist_pointer: get pointer value of a variable in infolist - */ - -static PyObject * -weechat_python_api_infolist_pointer (PyObject *self, PyObject *args) -{ - char *infolist, *variable, *result; - PyObject *return_value; - - API_FUNC(1, "infolist_pointer", API_RETURN_EMPTY); - infolist = NULL; - variable = NULL; - if (!PyArg_ParseTuple (args, "ss", &infolist, &variable)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_infolist_pointer (API_STR2PTR(infolist), - variable)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_time: get time value of a variable in infolist - */ - -static PyObject * -weechat_python_api_infolist_time (PyObject *self, PyObject *args) -{ - char *infolist, *variable, timebuffer[64], *result; - time_t time; - struct tm *date_tmp; - PyObject *return_value; - - API_FUNC(1, "infolist_time", API_RETURN_EMPTY); - infolist = NULL; - variable = NULL; - if (!PyArg_ParseTuple (args, "ss", &infolist, &variable)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - timebuffer[0] = '\0'; - time = weechat_infolist_time (API_STR2PTR(infolist), - variable); - date_tmp = localtime (&time); - if (date_tmp) - strftime (timebuffer, sizeof (timebuffer), "%F %T", date_tmp); - result = strdup (timebuffer); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_infolist_free: free infolist - */ - -static PyObject * -weechat_python_api_infolist_free (PyObject *self, PyObject *args) -{ - char *infolist; - - API_FUNC(1, "infolist_free", API_RETURN_ERROR); - infolist = NULL; - if (!PyArg_ParseTuple (args, "s", &infolist)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_infolist_free (API_STR2PTR(infolist)); - - API_RETURN_OK; -} - -/* - * weechat_python_api_hdata_get: get hdata - */ - -static PyObject * -weechat_python_api_hdata_get (PyObject *self, PyObject *args) -{ - char *name, *result; - PyObject *return_value; - - API_FUNC(1, "hdata_get", API_RETURN_EMPTY); - name = NULL; - if (!PyArg_ParseTuple (args, "s", &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_hdata_get (name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hdata_get_var_offset: get offset of variable in hdata - */ - -static PyObject * -weechat_python_api_hdata_get_var_offset (PyObject *self, PyObject *args) -{ - char *hdata, *name; - int value; - - API_FUNC(1, "hdata_get_var_offset", API_RETURN_INT(0)); - hdata = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "ss", &hdata, &name)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_hdata_get_var_offset (API_STR2PTR(hdata), name); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_hdata_get_var_type_string: get type of variable as string - * in hdata - */ - -static PyObject * -weechat_python_api_hdata_get_var_type_string (PyObject *self, PyObject *args) -{ - char *hdata, *name; - const char *result; - - API_FUNC(1, "hdata_get_var_type_string", API_RETURN_EMPTY); - hdata = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "ss", &hdata, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_hdata_get_var_type_string (API_STR2PTR(hdata), name); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_hdata_get_var_array_size: get array size for variable in - * hdata - */ - -static PyObject * -weechat_python_api_hdata_get_var_array_size (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name; - int value; - - API_FUNC(1, "hdata_get_var_array_size", API_RETURN_INT(-1)); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_INT(-1)); - - value = weechat_hdata_get_var_array_size (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_hdata_get_var_array_size_string: get array size for variable - * in hdata (as string) - */ - -static PyObject * -weechat_python_api_hdata_get_var_array_size_string (PyObject *self, - PyObject *args) -{ - char *hdata, *pointer, *name; - const char *result; - - API_FUNC(1, "hdata_get_var_array_size_string", API_RETURN_EMPTY); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_hdata_get_var_array_size_string (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_hdata_get_var_hdata: get hdata for variable in hdata - */ - -static PyObject * -weechat_python_api_hdata_get_var_hdata (PyObject *self, PyObject *args) -{ - char *hdata, *name; - const char *result; - - API_FUNC(1, "hdata_get_var_hdata", API_RETURN_EMPTY); - hdata = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "ss", &hdata, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_hdata_get_var_hdata (API_STR2PTR(hdata), name); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_hdata_get_list: get list pointer in hdata - */ - -static PyObject * -weechat_python_api_hdata_get_list (PyObject *self, PyObject *args) -{ - char *hdata, *name, *result; - PyObject *return_value; - - API_FUNC(1, "hdata_get_list", API_RETURN_EMPTY); - hdata = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "ss", &hdata, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_hdata_get_list (API_STR2PTR(hdata), - name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hdata_check_pointer: check pointer with hdata/list - */ - -static PyObject * -weechat_python_api_hdata_check_pointer (PyObject *self, PyObject *args) -{ - char *hdata, *list, *pointer; - int value; - - API_FUNC(1, "hdata_check_pointer", API_RETURN_INT(0)); - hdata = NULL; - list = NULL; - pointer = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &list, &pointer)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_hdata_check_pointer (API_STR2PTR(hdata), - API_STR2PTR(list), - API_STR2PTR(pointer)); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_hdata_move: move pointer to another element in list - */ - -static PyObject * -weechat_python_api_hdata_move (PyObject *self, PyObject *args) -{ - char *result, *hdata, *pointer; - int count; - PyObject *return_value; - - API_FUNC(1, "hdata_move", API_RETURN_EMPTY); - hdata = NULL; - pointer = NULL; - count = 0; - if (!PyArg_ParseTuple (args, "ssi", &hdata, &pointer, &count)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_hdata_move (API_STR2PTR(hdata), - API_STR2PTR(pointer), - count)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hdata_char: get char value of a variable in structure - * using hdata - */ - -static PyObject * -weechat_python_api_hdata_char (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name; - int value; - - API_FUNC(1, "hdata_char", API_RETURN_INT(0)); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = (int)weechat_hdata_char (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_hdata_integer: get integer value of a variable in - * structure using hdata - */ - -static PyObject * -weechat_python_api_hdata_integer (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name; - int value; - - API_FUNC(1, "hdata_integer", API_RETURN_INT(0)); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - value = weechat_hdata_integer (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - - API_RETURN_INT(value); -} - -/* - * weechat_python_api_hdata_long: get long value of a variable in structure - * using hdata - */ - -static PyObject * -weechat_python_api_hdata_long (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name; - long value; - - API_FUNC(1, "hdata_long", API_RETURN_LONG(0)); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_LONG(0)); - - value = weechat_hdata_long (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - - API_RETURN_LONG(value); -} - -/* - * weechat_python_api_hdata_string: get string value of a variable in structure - * using hdata - */ - -static PyObject * -weechat_python_api_hdata_string (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name; - const char *result; - - API_FUNC(1, "hdata_string", API_RETURN_EMPTY); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_hdata_string (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_hdata_pointer: get pointer value of a variable in - * structure using hdata - */ - -static PyObject * -weechat_python_api_hdata_pointer (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name, *result; - PyObject *return_value; - - API_FUNC(1, "hdata_pointer", API_RETURN_EMPTY); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_hdata_pointer (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hdata_time: get time value of a variable in structure - * using hdata - */ - -static PyObject * -weechat_python_api_hdata_time (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name, timebuffer[64], *result; - time_t time; - struct tm *date_tmp; - PyObject *return_value; - - API_FUNC(1, "hdata_time", API_RETURN_EMPTY); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - timebuffer[0] = '\0'; - time = weechat_hdata_time (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name); - date_tmp = localtime (&time); - if (date_tmp) - strftime (timebuffer, sizeof (timebuffer), "%F %T", date_tmp); - result = strdup (timebuffer); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_hdata_hashtable: get hashtable value of a variable in - * structure using hdata - */ - -static PyObject * -weechat_python_api_hdata_hashtable (PyObject *self, PyObject *args) -{ - char *hdata, *pointer, *name; - PyObject *result_dict; - - API_FUNC(1, "hdata_hashtable", API_RETURN_EMPTY); - hdata = NULL; - pointer = NULL; - name = NULL; - if (!PyArg_ParseTuple (args, "sss", &hdata, &pointer, &name)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result_dict = weechat_python_hashtable_to_dict ( - weechat_hdata_hashtable (API_STR2PTR(hdata), - API_STR2PTR(pointer), - name)); - - return result_dict; -} - -/* - * weechat_python_api_hdata_get_string: get hdata property as string - */ - -static PyObject * -weechat_python_api_hdata_get_string (PyObject *self, PyObject *args) -{ - char *hdata, *property; - const char *result; - - API_FUNC(1, "hdata_get_string", API_RETURN_EMPTY); - hdata = NULL; - property = NULL; - if (!PyArg_ParseTuple (args, "ss", &hdata, &property)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = weechat_hdata_get_string (API_STR2PTR(hdata), property); - - API_RETURN_STRING(result); -} - -/* - * weechat_python_api_upgrade_new: create an upgrade file - */ - -static PyObject * -weechat_python_api_upgrade_new (PyObject *self, PyObject *args) -{ - char *filename, *result; - int write; - PyObject *return_value; - - API_FUNC(1, "upgrade_new", API_RETURN_EMPTY); - filename = NULL; - write = 0; - if (!PyArg_ParseTuple (args, "si", &filename, &write)) - API_WRONG_ARGS(API_RETURN_EMPTY); - - result = script_ptr2str (weechat_upgrade_new (filename, write)); - - API_RETURN_STRING_FREE(result); -} - -/* - * weechat_python_api_upgrade_write_object: write object in upgrade file - */ - -static PyObject * -weechat_python_api_upgrade_write_object (PyObject *self, PyObject *args) -{ - char *upgrade_file, *infolist; - int object_id, rc; - - API_FUNC(1, "upgrade_write_object", API_RETURN_INT(0)); - upgrade_file = NULL; - object_id = 0; - infolist = NULL; - if (!PyArg_ParseTuple (args, "sis", &upgrade_file, &object_id, &infolist)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - rc = weechat_upgrade_write_object (API_STR2PTR(upgrade_file), - object_id, - API_STR2PTR(infolist)); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_upgrade_read_cb: callback for reading object in upgrade file - */ - -int -weechat_python_api_upgrade_read_cb (void *data, - struct t_upgrade_file *upgrade_file, - int object_id, - struct t_infolist *infolist) -{ - struct t_script_callback *script_callback; - void *func_argv[4]; - char empty_arg[1] = { '\0' }, str_object_id[32]; - int *rc, ret; - - script_callback = (struct t_script_callback *)data; - - if (script_callback && script_callback->function && script_callback->function[0]) - { - snprintf (str_object_id, sizeof (str_object_id), "%d", object_id); - - func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg; - func_argv[1] = script_ptr2str (upgrade_file); - func_argv[2] = str_object_id; - func_argv[3] = script_ptr2str (infolist); - - rc = (int *) weechat_python_exec (script_callback->script, - WEECHAT_SCRIPT_EXEC_INT, - script_callback->function, - "ssss", func_argv); - - if (!rc) - ret = WEECHAT_RC_ERROR; - else - { - ret = *rc; - free (rc); - } - if (func_argv[1]) - free (func_argv[1]); - if (func_argv[3]) - free (func_argv[3]); - - return ret; - } - - return WEECHAT_RC_ERROR; -} - -/* - * weechat_python_api_upgrade_read: read upgrade file - */ - -static PyObject * -weechat_python_api_upgrade_read (PyObject *self, PyObject *args) -{ - char *upgrade_file, *function, *data; - int rc; - - API_FUNC(1, "upgrade_read", API_RETURN_INT(0)); - upgrade_file = NULL; - function = NULL; - data = NULL; - if (!PyArg_ParseTuple (args, "sss", &upgrade_file, &function, &data)) - API_WRONG_ARGS(API_RETURN_INT(0)); - - rc = script_api_upgrade_read (weechat_python_plugin, - python_current_script, - API_STR2PTR(upgrade_file), - &weechat_python_api_upgrade_read_cb, - function, - data); - - API_RETURN_INT(rc); -} - -/* - * weechat_python_api_upgrade_close: close upgrade file - */ - -static PyObject * -weechat_python_api_upgrade_close (PyObject *self, PyObject *args) -{ - char *upgrade_file; - - API_FUNC(1, "upgrade_close", API_RETURN_ERROR); - upgrade_file = NULL; - if (!PyArg_ParseTuple (args, "s", &upgrade_file)) - API_WRONG_ARGS(API_RETURN_ERROR); - - weechat_upgrade_close (API_STR2PTR(upgrade_file)); - - API_RETURN_OK; -} - -/* - * Python subroutines - */ - -PyMethodDef weechat_python_funcs[] = -{ - API_DEF_FUNC(register), - API_DEF_FUNC(plugin_get_name), - API_DEF_FUNC(charset_set), - API_DEF_FUNC(iconv_to_internal), - API_DEF_FUNC(iconv_from_internal), - API_DEF_FUNC(gettext), - API_DEF_FUNC(ngettext), - API_DEF_FUNC(string_match), - API_DEF_FUNC(string_has_highlight), - API_DEF_FUNC(string_has_highlight_regex), - API_DEF_FUNC(string_mask_to_regex), - API_DEF_FUNC(string_remove_color), - API_DEF_FUNC(string_is_command_char), - API_DEF_FUNC(string_input_for_buffer), - API_DEF_FUNC(mkdir_home), - API_DEF_FUNC(mkdir), - API_DEF_FUNC(mkdir_parents), - API_DEF_FUNC(list_new), - API_DEF_FUNC(list_add), - API_DEF_FUNC(list_search), - API_DEF_FUNC(list_search_pos), - API_DEF_FUNC(list_casesearch), - API_DEF_FUNC(list_casesearch_pos), - API_DEF_FUNC(list_get), - API_DEF_FUNC(list_set), - API_DEF_FUNC(list_next), - API_DEF_FUNC(list_prev), - API_DEF_FUNC(list_string), - API_DEF_FUNC(list_size), - API_DEF_FUNC(list_remove), - API_DEF_FUNC(list_remove_all), - API_DEF_FUNC(list_free), - API_DEF_FUNC(config_new), - API_DEF_FUNC(config_new_section), - API_DEF_FUNC(config_search_section), - API_DEF_FUNC(config_new_option), - API_DEF_FUNC(config_search_option), - API_DEF_FUNC(config_string_to_boolean), - API_DEF_FUNC(config_option_reset), - API_DEF_FUNC(config_option_set), - API_DEF_FUNC(config_option_set_null), - API_DEF_FUNC(config_option_unset), - API_DEF_FUNC(config_option_rename), - API_DEF_FUNC(config_option_is_null), - API_DEF_FUNC(config_option_default_is_null), - API_DEF_FUNC(config_boolean), - API_DEF_FUNC(config_boolean_default), - API_DEF_FUNC(config_integer), - API_DEF_FUNC(config_integer_default), - API_DEF_FUNC(config_string), - API_DEF_FUNC(config_string_default), - API_DEF_FUNC(config_color), - API_DEF_FUNC(config_color_default), - API_DEF_FUNC(config_write_option), - API_DEF_FUNC(config_write_line), - API_DEF_FUNC(config_write), - API_DEF_FUNC(config_read), - API_DEF_FUNC(config_reload), - API_DEF_FUNC(config_option_free), - API_DEF_FUNC(config_section_free_options), - API_DEF_FUNC(config_section_free), - API_DEF_FUNC(config_free), - API_DEF_FUNC(config_get), - API_DEF_FUNC(config_get_plugin), - API_DEF_FUNC(config_is_set_plugin), - API_DEF_FUNC(config_set_plugin), - API_DEF_FUNC(config_set_desc_plugin), - API_DEF_FUNC(config_unset_plugin), - API_DEF_FUNC(key_bind), - API_DEF_FUNC(key_unbind), - API_DEF_FUNC(prefix), - API_DEF_FUNC(color), - API_DEF_FUNC(prnt), - API_DEF_FUNC(prnt_date_tags), - API_DEF_FUNC(prnt_y), - API_DEF_FUNC(log_print), - API_DEF_FUNC(hook_command), - API_DEF_FUNC(hook_command_run), - API_DEF_FUNC(hook_timer), - API_DEF_FUNC(hook_fd), - API_DEF_FUNC(hook_process), - API_DEF_FUNC(hook_process_hashtable), - API_DEF_FUNC(hook_connect), - API_DEF_FUNC(hook_print), - API_DEF_FUNC(hook_signal), - API_DEF_FUNC(hook_signal_send), - API_DEF_FUNC(hook_hsignal), - API_DEF_FUNC(hook_hsignal_send), - API_DEF_FUNC(hook_config), - API_DEF_FUNC(hook_completion), - API_DEF_FUNC(hook_completion_list_add), - API_DEF_FUNC(hook_modifier), - API_DEF_FUNC(hook_modifier_exec), - API_DEF_FUNC(hook_info), - API_DEF_FUNC(hook_info_hashtable), - API_DEF_FUNC(hook_infolist), - API_DEF_FUNC(hook_focus), - API_DEF_FUNC(unhook), - API_DEF_FUNC(unhook_all), - API_DEF_FUNC(buffer_new), - API_DEF_FUNC(buffer_search), - API_DEF_FUNC(buffer_search_main), - API_DEF_FUNC(current_buffer), - API_DEF_FUNC(buffer_clear), - API_DEF_FUNC(buffer_close), - API_DEF_FUNC(buffer_merge), - API_DEF_FUNC(buffer_unmerge), - API_DEF_FUNC(buffer_get_integer), - API_DEF_FUNC(buffer_get_string), - API_DEF_FUNC(buffer_get_pointer), - API_DEF_FUNC(buffer_set), - API_DEF_FUNC(buffer_string_replace_local_var), - API_DEF_FUNC(buffer_match_list), - API_DEF_FUNC(current_window), - API_DEF_FUNC(window_search_with_buffer), - API_DEF_FUNC(window_get_integer), - API_DEF_FUNC(window_get_string), - API_DEF_FUNC(window_get_pointer), - API_DEF_FUNC(window_set_title), - API_DEF_FUNC(nicklist_add_group), - API_DEF_FUNC(nicklist_search_group), - API_DEF_FUNC(nicklist_add_nick), - API_DEF_FUNC(nicklist_search_nick), - API_DEF_FUNC(nicklist_remove_group), - API_DEF_FUNC(nicklist_remove_nick), - API_DEF_FUNC(nicklist_remove_all), - API_DEF_FUNC(nicklist_group_get_integer), - API_DEF_FUNC(nicklist_group_get_string), - API_DEF_FUNC(nicklist_group_get_pointer), - API_DEF_FUNC(nicklist_group_set), - API_DEF_FUNC(nicklist_nick_get_integer), - API_DEF_FUNC(nicklist_nick_get_string), - API_DEF_FUNC(nicklist_nick_get_pointer), - API_DEF_FUNC(nicklist_nick_set), - API_DEF_FUNC(bar_item_search), - API_DEF_FUNC(bar_item_new), - API_DEF_FUNC(bar_item_update), - API_DEF_FUNC(bar_item_remove), - API_DEF_FUNC(bar_search), - API_DEF_FUNC(bar_new), - API_DEF_FUNC(bar_set), - API_DEF_FUNC(bar_update), - API_DEF_FUNC(bar_remove), - API_DEF_FUNC(command), - API_DEF_FUNC(info_get), - API_DEF_FUNC(info_get_hashtable), - API_DEF_FUNC(infolist_new), - API_DEF_FUNC(infolist_new_item), - API_DEF_FUNC(infolist_new_var_integer), - API_DEF_FUNC(infolist_new_var_string), - API_DEF_FUNC(infolist_new_var_pointer), - API_DEF_FUNC(infolist_new_var_time), - API_DEF_FUNC(infolist_get), - API_DEF_FUNC(infolist_next), - API_DEF_FUNC(infolist_prev), - API_DEF_FUNC(infolist_reset_item_cursor), - API_DEF_FUNC(infolist_fields), - API_DEF_FUNC(infolist_integer), - API_DEF_FUNC(infolist_string), - API_DEF_FUNC(infolist_pointer), - API_DEF_FUNC(infolist_time), - API_DEF_FUNC(infolist_free), - API_DEF_FUNC(hdata_get), - API_DEF_FUNC(hdata_get_var_offset), - API_DEF_FUNC(hdata_get_var_type_string), - API_DEF_FUNC(hdata_get_var_array_size), - API_DEF_FUNC(hdata_get_var_array_size_string), - API_DEF_FUNC(hdata_get_var_hdata), - API_DEF_FUNC(hdata_get_list), - API_DEF_FUNC(hdata_check_pointer), - API_DEF_FUNC(hdata_move), - API_DEF_FUNC(hdata_char), - API_DEF_FUNC(hdata_integer), - API_DEF_FUNC(hdata_long), - API_DEF_FUNC(hdata_string), - API_DEF_FUNC(hdata_pointer), - API_DEF_FUNC(hdata_time), - API_DEF_FUNC(hdata_hashtable), - API_DEF_FUNC(hdata_get_string), - API_DEF_FUNC(upgrade_new), - API_DEF_FUNC(upgrade_write_object), - API_DEF_FUNC(upgrade_read), - API_DEF_FUNC(upgrade_close), - { NULL, NULL, 0, NULL } -}; diff --git a/src/plugins/scripts/python/weechat-python-api.h b/src/plugins/scripts/python/weechat-python-api.h deleted file mode 100644 index 4c12f2916..000000000 --- a/src/plugins/scripts/python/weechat-python-api.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org> - * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> - * - * This file is part of WeeChat, the extensible chat client. - * - * WeeChat 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. - * - * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef __WEECHAT_PYTHON_API_H -#define __WEECHAT_PYTHON_API_H 1 - -extern PyMethodDef weechat_python_funcs[]; - -extern int weechat_python_api_buffer_input_data_cb (void *data, - struct t_gui_buffer *buffer, - const char *input_data); -extern int weechat_python_api_buffer_close_cb (void *data, - struct t_gui_buffer *buffer); - -#endif /* __WEECHAT_PYTHON_API_H */ diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c deleted file mode 100644 index 993a089b5..000000000 --- a/src/plugins/scripts/python/weechat-python.c +++ /dev/null @@ -1,1259 +0,0 @@ -/* - * Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org> - * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> - * - * This file is part of WeeChat, the extensible chat client. - * - * WeeChat 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. - * - * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>. - */ - -/* - * weechat-python.c: python plugin for WeeChat - */ - -#undef _ - -#include <Python.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <unistd.h> - -#include "../../weechat-plugin.h" -#include "../script.h" -#include "weechat-python.h" -#include "weechat-python-api.h" - - -WEECHAT_PLUGIN_NAME(PYTHON_PLUGIN_NAME); -WEECHAT_PLUGIN_DESCRIPTION(N_("Support of python scripts")); -WEECHAT_PLUGIN_AUTHOR("Sebastien Helleu <flashcode@flashtux.org>"); -WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); -WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); - -struct t_weechat_plugin *weechat_python_plugin = NULL; - -int python_quiet; -struct t_plugin_script *python_scripts = NULL; -struct t_plugin_script *last_python_script = NULL; -struct t_plugin_script *python_current_script = NULL; -struct t_plugin_script *python_registered_script = NULL; -const char *python_current_script_filename = NULL; -PyThreadState *python_mainThreadState = NULL; -char *python2_bin = NULL; - -/* outputs subroutines */ -static PyObject *weechat_python_output (PyObject *self, PyObject *args); -static PyMethodDef weechat_python_output_funcs[] = { - { "write", weechat_python_output, METH_VARARGS, "" }, - { NULL, NULL, 0, NULL } -}; - -#if PY_MAJOR_VERSION >= 3 -/* module definition for python >= 3.x */ -static struct PyModuleDef moduleDef = { - PyModuleDef_HEAD_INIT, - "weechat", - NULL, - -1, - weechat_python_funcs, - NULL, - NULL, - NULL, - NULL -}; -static struct PyModuleDef moduleDefOutputs = { - PyModuleDef_HEAD_INIT, - "weechatOutputs", - NULL, - -1, - weechat_python_output_funcs, - NULL, - NULL, - NULL, - NULL -}; -#endif - -/* - * string used to execute action "install": - * when signal "python_install_script" is received, name of string - * is added to this string, to be installed later by a timer (when nothing is - * running in script) - */ -char *python_action_install_list = NULL; - -/* - * string used to execute action "remove": - * when signal "python_remove_script" is received, name of string - * is added to this string, to be removed later by a timer (when nothing is - * running in script) - */ -char *python_action_remove_list = NULL; - -char python_buffer_output[128]; - - -/* - * weechat_python_set_python2_bin: set path to python 2.x interpreter - */ - -void -weechat_python_set_python2_bin () -{ - const char *dir_separator; - char *path, **paths, bin[4096]; - char *versions[] = { "2.7", "2.6", "2.5", "2.4", "2.3", "2.2", "2", NULL }; - int num_paths, i, j, rc; - struct stat stat_buf; - - python2_bin = NULL; - - dir_separator = weechat_info_get ("dir_separator", ""); - path = getenv ("PATH"); - - if (dir_separator && path) - { - paths = weechat_string_split (path, ":", 0, 0, &num_paths); - if (paths) - { - for (i = 0; i < num_paths; i++) - { - for (j = 0; versions[j]; j++) - { - snprintf (bin, sizeof (bin), "%s%s%s%s", - paths[i], dir_separator, "python", - versions[j]); - rc = stat (bin, &stat_buf); - if ((rc == 0) && (S_ISREG(stat_buf.st_mode))) - { - python2_bin = strdup (bin); - break; - } - } - if (python2_bin) - break; - } - weechat_string_free_split (paths); - } - } - - if (!python2_bin) - python2_bin = strdup ("python"); -} - -/* - * weechat_python_unicode_to_string: convert a python unicode to a C UTF-8 - * string - * Note: result has to be freed after use - */ - -char * -weechat_python_unicode_to_string (PyObject *obj) -{ - PyObject *utf8string; - char *str; - - str = NULL; - - utf8string = PyUnicode_AsUTF8String (obj); - if (utf8string) - { - if (PyBytes_AsString (utf8string)) - str = strdup (PyBytes_AsString (utf8string)); - Py_XDECREF(utf8string); - } - - return str; -} - -/* - * weechat_python_hashtable_map_cb: callback called for each key/value in a - * hashtable - */ - -void -weechat_python_hashtable_map_cb (void *data, - struct t_hashtable *hashtable, - const char *key, - const char *value) -{ - PyObject *dict, *dict_key, *dict_value; - - /* make C compiler happy */ - (void) hashtable; - - dict = (PyObject *)data; - - dict_key = Py_BuildValue ("s", key); - dict_value = Py_BuildValue ("s", value); - - PyDict_SetItem (dict, dict_key, dict_value); - - Py_DECREF (dict_key); - Py_DECREF (dict_value); -} - -/* - * weechat_python_hashtable_to_dict: get python dictionary with a WeeChat - * hashtable - */ - -PyObject * -weechat_python_hashtable_to_dict (struct t_hashtable *hashtable) -{ - PyObject *dict; - - dict = PyDict_New (); - if (!dict) - { - Py_INCREF(Py_None); - return Py_None; - } - - weechat_hashtable_map_string (hashtable, - &weechat_python_hashtable_map_cb, - dict); - - return dict; -} - -/* - * weechat_python_dict_to_hashtable: get WeeChat hashtable with python - * dictionary - * Hashtable returned has type string for - * both keys and values - * Note: hashtable has to be released after - * use with call to weechat_hashtable_free() - */ - -struct t_hashtable * -weechat_python_dict_to_hashtable (PyObject *dict, int hashtable_size) -{ - struct t_hashtable *hashtable; - PyObject *key, *value; - Py_ssize_t pos; - char *str_key, *str_value; - - hashtable = weechat_hashtable_new (hashtable_size, - WEECHAT_HASHTABLE_STRING, - WEECHAT_HASHTABLE_STRING, - NULL, - NULL); - if (!hashtable) - return NULL; - - pos = 0; - while (PyDict_Next (dict, &pos, &key, &value)) - { - str_key = NULL; - str_value = NULL; - if (PyBytes_Check (key)) - { - if (PyBytes_AsString (key)) - str_key = strdup (PyBytes_AsString (key)); - } - else - str_key = weechat_python_unicode_to_string (key); - if (PyBytes_Check (value)) - { - if (PyBytes_AsString (value)) - str_value = strdup (PyBytes_AsString (value)); - } - else - str_value = weechat_python_unicode_to_string (value); - - if (str_key) - weechat_hashtable_set (hashtable, str_key, str_value); - - if (str_key) - free (str_key); - if (str_value) - free (str_value); - } - - return hashtable; -} - -/* - * weechat_python_exec: execute a python function - */ - -void * -weechat_python_exec (struct t_plugin_script *script, - int ret_type, const char *function, - char *format, void **argv) -{ - struct t_plugin_script *old_python_current_script; - PyThreadState *old_interpreter; - PyObject *evMain, *evDict, *evFunc, *rc; - void *argv2[16], *ret_value; - int i, argc, *ret_int; - - /* PyEval_AcquireLock (); */ - - old_python_current_script = python_current_script; - old_interpreter = NULL; - if (script->interpreter) - { - old_interpreter = PyThreadState_Swap (NULL); - PyThreadState_Swap (script->interpreter); - } - - evMain = PyImport_AddModule ((char *) "__main__"); - evDict = PyModule_GetDict (evMain); - evFunc = PyDict_GetItemString (evDict, function); - - if ( !(evFunc && PyCallable_Check (evFunc)) ) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to run function \"%s\""), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, function); - /* PyEval_ReleaseThread (python_current_script->interpreter); */ - if (old_interpreter) - PyThreadState_Swap (old_interpreter); - return NULL; - } - - python_current_script = script; - - if (argv && argv[0]) - { - argc = strlen (format); - for (i = 0; i < 16; i++) - { - argv2[i] = (i < argc) ? argv[i] : NULL; - } - rc = PyObject_CallFunction (evFunc, format, - argv2[0], argv2[1], - argv2[2], argv2[3], - argv2[4], argv2[5], - argv2[6], argv2[7], - argv2[8], argv2[9], - argv2[10], argv2[11], - argv2[12], argv2[13], - argv2[14], argv2[15]); - } - else - { - rc = PyObject_CallFunction (evFunc, NULL); - } - - ret_value = NULL; - - /* - * ugly hack : rc = NULL while 'return weechat.WEECHAT_RC_OK .... - * because of '#define WEECHAT_RC_OK 0' - */ - if (rc == NULL) - rc = PyLong_FromLong ((long)0); - - if (PyErr_Occurred()) - { - PyErr_Print (); - Py_XDECREF(rc); - } - else if ((ret_type == WEECHAT_SCRIPT_EXEC_STRING) && (PyUnicode_Check (rc))) - { - ret_value = weechat_python_unicode_to_string (rc); - Py_XDECREF(rc); - } - else if ((ret_type == WEECHAT_SCRIPT_EXEC_STRING) && (PyBytes_Check (rc))) - { - if (PyBytes_AsString (rc)) - ret_value = strdup (PyBytes_AsString (rc)); - else - ret_value = NULL; - Py_XDECREF(rc); - } - else if ((ret_type == WEECHAT_SCRIPT_EXEC_INT) && (PyLong_Check (rc))) - { - ret_int = malloc (sizeof (*ret_int)); - if (ret_int) - *ret_int = (int) PyLong_AsLong(rc); - ret_value = ret_int; - Py_XDECREF(rc); - } - else if (ret_type == WEECHAT_SCRIPT_EXEC_HASHTABLE) - { - ret_value = weechat_python_dict_to_hashtable (rc, - WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE); - Py_XDECREF(rc); - } - else - { - weechat_printf (NULL, - weechat_gettext ("%s%s: function \"%s\" must return " - "a valid value"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, function); - } - - if (!ret_value) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: error in function \"%s\""), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, function); - } - - /* PyEval_ReleaseThread (python_current_script->interpreter); */ - - python_current_script = old_python_current_script; - - if (old_interpreter) - PyThreadState_Swap (old_interpreter); - - return ret_value; -} - -/* - * weechat_python_output: redirection for stdout and stderr - */ - -static PyObject * -weechat_python_output (PyObject *self, PyObject *args) -{ - char *msg, *m, *p; - - /* make C compiler happy */ - (void) self; - - msg = NULL; - - if (!PyArg_ParseTuple (args, "s", &msg)) - { - if (strlen(python_buffer_output) > 0) - { - weechat_printf (NULL, - weechat_gettext ("%s: stdout/stderr: %s%s"), - PYTHON_PLUGIN_NAME, python_buffer_output, ""); - python_buffer_output[0] = '\0'; - } - } - else - { - m = msg; - while ((p = strchr (m, '\n')) != NULL) - { - *p = '\0'; - if (strlen (m) + strlen (python_buffer_output) > 0) - { - weechat_printf (NULL, - weechat_gettext ("%s: stdout/stderr: %s%s"), - PYTHON_PLUGIN_NAME, python_buffer_output, m); - } - *p = '\n'; - python_buffer_output[0] = '\0'; - m = ++p; - } - - if (strlen(m) + strlen(python_buffer_output) > sizeof(python_buffer_output)) - { - weechat_printf (NULL, - weechat_gettext ("%s: stdout/stderr: %s%s"), - PYTHON_PLUGIN_NAME, python_buffer_output, m); - python_buffer_output[0] = '\0'; - } - else - strcat (python_buffer_output, m); - } - - Py_INCREF(Py_None); - return Py_None; -} - -/* - * weechat_python_init_module_weechat: initialize the "weechat" module - */ - -#if PY_MAJOR_VERSION >= 3 -static PyObject *weechat_python_init_module_weechat () -#else -void weechat_python_init_module_weechat () -#endif -{ - PyObject *weechat_module, *weechat_dict; - -#if PY_MAJOR_VERSION >= 3 - /* python >= 3.x */ - weechat_module = PyModule_Create (&moduleDef); -#else - /* python <= 2.x */ - weechat_module = Py_InitModule ("weechat", weechat_python_funcs); -#endif - - if (!weechat_module) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to initialize WeeChat " - "module"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); -#if PY_MAJOR_VERSION >= 3 - return NULL; -#else - return; -#endif - } - - /* define some constants */ - weechat_dict = PyModule_GetDict(weechat_module); - PyDict_SetItemString(weechat_dict, "WEECHAT_RC_OK", PyLong_FromLong((long) WEECHAT_RC_OK)); - PyDict_SetItemString(weechat_dict, "WEECHAT_RC_OK_EAT", PyLong_FromLong((long) WEECHAT_RC_OK_EAT)); - PyDict_SetItemString(weechat_dict, "WEECHAT_RC_ERROR", PyLong_FromLong((long) WEECHAT_RC_ERROR)); - - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_READ_OK", PyLong_FromLong((long) WEECHAT_CONFIG_READ_OK)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_READ_MEMORY_ERROR", PyLong_FromLong((long) WEECHAT_CONFIG_READ_MEMORY_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_READ_FILE_NOT_FOUND", PyLong_FromLong((long) WEECHAT_CONFIG_READ_FILE_NOT_FOUND)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_WRITE_OK", PyLong_FromLong((long) WEECHAT_CONFIG_WRITE_OK)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_WRITE_ERROR", PyLong_FromLong((long) WEECHAT_CONFIG_WRITE_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_WRITE_MEMORY_ERROR", PyLong_FromLong((long) WEECHAT_CONFIG_WRITE_MEMORY_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_SET_OK_CHANGED", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_SET_OK_CHANGED)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_SET_ERROR", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_SET_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_UNSET_OK_RESET", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_UNSET_OK_RESET)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED)); - PyDict_SetItemString(weechat_dict, "WEECHAT_CONFIG_OPTION_UNSET_ERROR", PyLong_FromLong((long) WEECHAT_CONFIG_OPTION_UNSET_ERROR)); - - PyDict_SetItemString(weechat_dict, "WEECHAT_LIST_POS_SORT", PyUnicode_FromString(WEECHAT_LIST_POS_SORT)); - PyDict_SetItemString(weechat_dict, "WEECHAT_LIST_POS_BEGINNING", PyUnicode_FromString(WEECHAT_LIST_POS_BEGINNING)); - PyDict_SetItemString(weechat_dict, "WEECHAT_LIST_POS_END", PyUnicode_FromString(WEECHAT_LIST_POS_END)); - - PyDict_SetItemString(weechat_dict, "WEECHAT_HOTLIST_LOW", PyUnicode_FromString(WEECHAT_HOTLIST_LOW)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOTLIST_MESSAGE", PyUnicode_FromString(WEECHAT_HOTLIST_MESSAGE)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOTLIST_PRIVATE", PyUnicode_FromString(WEECHAT_HOTLIST_PRIVATE)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOTLIST_HIGHLIGHT", PyUnicode_FromString(WEECHAT_HOTLIST_HIGHLIGHT)); - - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_PROCESS_RUNNING", PyLong_FromLong((long) WEECHAT_HOOK_PROCESS_RUNNING)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_PROCESS_ERROR", PyLong_FromLong((long) WEECHAT_HOOK_PROCESS_ERROR)); - - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_OK", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_OK)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_PROXY_ERROR", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_PROXY_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_MEMORY_ERROR", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_MEMORY_ERROR)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_CONNECT_TIMEOUT", PyLong_FromLong((long) WEECHAT_HOOK_CONNECT_TIMEOUT)); - - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_SIGNAL_STRING", PyUnicode_FromString(WEECHAT_HOOK_SIGNAL_STRING)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_SIGNAL_INT", PyUnicode_FromString(WEECHAT_HOOK_SIGNAL_INT)); - PyDict_SetItemString(weechat_dict, "WEECHAT_HOOK_SIGNAL_POINTER", PyUnicode_FromString(WEECHAT_HOOK_SIGNAL_POINTER)); - -#if PY_MAJOR_VERSION >= 3 - return weechat_module; -#endif -} - -/* - * weechat_python_load: load a Python script - */ - -int -weechat_python_load (const char *filename) -{ - char *argv[] = { "__weechat_plugin__" , NULL }; -#if PY_MAJOR_VERSION >= 3 - wchar_t *wargv[] = { NULL, NULL }; -#endif - FILE *fp; - PyThreadState *python_current_interpreter; - PyObject *weechat_outputs, *python_path, *path; - const char *weechat_home; - char *str_home; - int len; - - if ((fp = fopen (filename, "r")) == NULL) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: script \"%s\" not found"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, filename); - return 0; - } - - if ((weechat_python_plugin->debug >= 2) || !python_quiet) - { - weechat_printf (NULL, - weechat_gettext ("%s: loading script \"%s\""), - PYTHON_PLUGIN_NAME, filename); - } - - python_current_script = NULL; - python_registered_script = NULL; - - /* PyEval_AcquireLock (); */ - python_current_interpreter = Py_NewInterpreter (); -#if PY_MAJOR_VERSION >= 3 - /* python >= 3.x */ - len = strlen (argv[0]); - wargv[0] = malloc ((len + 1) * sizeof (wargv[0][0])); - if (wargv[0]) - { - if (mbstowcs (wargv[0], argv[0], len) == (size_t)(-1)) - { - free (wargv[0]); - wargv[0] = NULL; - } - PySys_SetArgv(1, wargv); - if (wargv[0]) - free (wargv[0]); - } -#else - /* python <= 2.x */ - PySys_SetArgv(1, argv); -#endif - - if (!python_current_interpreter) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to create new " - "sub-interpreter"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - fclose (fp); - /* PyEval_ReleaseLock (); */ - return 0; - } - - PyThreadState_Swap (python_current_interpreter); - - /* adding $weechat_dir/python in $PYTHONPATH */ - python_path = PySys_GetObject ("path"); - weechat_home = weechat_info_get ("weechat_dir", ""); - if (weechat_home) - { - len = strlen (weechat_home) + 1 + strlen (PYTHON_PLUGIN_NAME) + 1; - str_home = malloc (len); - if (str_home) - { - snprintf (str_home, len, "%s/python", weechat_home); - path = PyBytes_FromString (str_home); - if (path != NULL) - { - PyList_Insert (python_path, 0, path); - Py_DECREF (path); - } - free (str_home); - } - } - -#if PY_MAJOR_VERSION >= 3 - /* python 3.x (or newer) */ - weechat_outputs = PyModule_Create (&moduleDefOutputs); -#else - /* python 2.x */ - weechat_outputs = Py_InitModule("weechatOutputs", - weechat_python_output_funcs); -#endif - - if (!weechat_outputs) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to redirect stdout and " - "stderr"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - } - else - { - if (PySys_SetObject("stdout", weechat_outputs) == -1) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to redirect stdout"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - } - if (PySys_SetObject("stderr", weechat_outputs) == -1) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to redirect stderr"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - } - } - - python_current_script_filename = filename; - - if (PyRun_SimpleFile (fp, filename) != 0) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to parse file \"%s\""), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, filename); - fclose (fp); - - if (PyErr_Occurred ()) - PyErr_Print (); - - /* if script was registered, remove it from list */ - if (python_current_script != NULL) - { - script_remove (weechat_python_plugin, - &python_scripts, &last_python_script, - python_current_script); - } - - Py_EndInterpreter (python_current_interpreter); - /* PyEval_ReleaseLock (); */ - - return 0; - } - - if (PyErr_Occurred ()) - PyErr_Print (); - - fclose (fp); - - if (!python_registered_script) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: function \"register\" not " - "found (or failed) in file \"%s\""), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, filename); - - if (PyErr_Occurred ()) - PyErr_Print (); - Py_EndInterpreter (python_current_interpreter); - /* PyEval_ReleaseLock (); */ - - return 0; - } - python_current_script = python_registered_script; - - python_current_script->interpreter = (PyThreadState *) python_current_interpreter; - /* PyEval_ReleaseThread (python_current_script->interpreter); */ - - /* - * set input/close callbacks for buffers created by this script - * (to restore callbacks after upgrade) - */ - script_set_buffer_callbacks (weechat_python_plugin, - python_scripts, - python_current_script, - &weechat_python_api_buffer_input_data_cb, - &weechat_python_api_buffer_close_cb); - - return 1; -} - -/* - * weechat_python_load_cb: callback for script_auto_load() function - */ - -void -weechat_python_load_cb (void *data, const char *filename) -{ - /* make C compiler happy */ - (void) data; - - weechat_python_load (filename); -} - -/* - * weechat_python_unload: unload a Python script - */ - -void -weechat_python_unload (struct t_plugin_script *script) -{ - int *rc; - void *interpreter; - PyThreadState *old_interpreter; - - if ((weechat_python_plugin->debug >= 2) || !python_quiet) - { - weechat_printf (NULL, - weechat_gettext ("%s: unloading script \"%s\""), - PYTHON_PLUGIN_NAME, script->name); - } - - if (script->shutdown_func && script->shutdown_func[0]) - { - rc = (int *) weechat_python_exec (script, WEECHAT_SCRIPT_EXEC_INT, - script->shutdown_func, NULL, NULL); - if (rc) - free (rc); - } - - old_interpreter = PyThreadState_Swap (NULL); - interpreter = script->interpreter; - - if (python_current_script == script) - python_current_script = (python_current_script->prev_script) ? - python_current_script->prev_script : python_current_script->next_script; - - script_remove (weechat_python_plugin, &python_scripts, &last_python_script, - script); - - if (interpreter) - { - PyThreadState_Swap (interpreter); - Py_EndInterpreter (interpreter); - } - - if (old_interpreter) - PyThreadState_Swap (old_interpreter); -} - -/* - * weechat_python_unload_name: unload a Python script by name - */ - -void -weechat_python_unload_name (const char *name) -{ - struct t_plugin_script *ptr_script; - - ptr_script = script_search (weechat_python_plugin, python_scripts, name); - if (ptr_script) - { - weechat_python_unload (ptr_script); - weechat_printf (NULL, - weechat_gettext ("%s: script \"%s\" unloaded"), - PYTHON_PLUGIN_NAME, name); - } - else - { - weechat_printf (NULL, - weechat_gettext ("%s%s: script \"%s\" not loaded"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, name); - } -} - -/* - * weechat_python_unload_all: unload all Python scripts - */ - -void -weechat_python_unload_all () -{ - while (python_scripts) - { - weechat_python_unload (python_scripts); - } -} - -/* - * weechat_python_reload_name: reload a Python script by name - */ - -void -weechat_python_reload_name (const char *name) -{ - struct t_plugin_script *ptr_script; - char *filename; - - ptr_script = script_search (weechat_python_plugin, python_scripts, name); - if (ptr_script) - { - filename = strdup (ptr_script->filename); - if (filename) - { - weechat_python_unload (ptr_script); - weechat_printf (NULL, - weechat_gettext ("%s: script \"%s\" unloaded"), - PYTHON_PLUGIN_NAME, name); - weechat_python_load (filename); - free (filename); - } - } - else - { - weechat_printf (NULL, - weechat_gettext ("%s%s: script \"%s\" not loaded"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, name); - } -} - -/* - * weechat_python_cmd: callback for "/python" command - */ - -int -weechat_python_command_cb (void *data, struct t_gui_buffer *buffer, - int argc, char **argv, char **argv_eol) -{ - char *path_script; - - /* make C compiler happy */ - (void) data; - (void) buffer; - - if (argc == 1) - { - script_display_list (weechat_python_plugin, python_scripts, - NULL, 0); - } - else if (argc == 2) - { - if (weechat_strcasecmp (argv[1], "list") == 0) - { - script_display_list (weechat_python_plugin, python_scripts, - NULL, 0); - } - else if (weechat_strcasecmp (argv[1], "listfull") == 0) - { - script_display_list (weechat_python_plugin, python_scripts, - NULL, 1); - } - else if (weechat_strcasecmp (argv[1], "autoload") == 0) - { - script_auto_load (weechat_python_plugin, &weechat_python_load_cb); - } - else if (weechat_strcasecmp (argv[1], "reload") == 0) - { - weechat_python_unload_all (); - script_auto_load (weechat_python_plugin, &weechat_python_load_cb); - } - else if (weechat_strcasecmp (argv[1], "unload") == 0) - { - weechat_python_unload_all (); - } - } - else - { - if (weechat_strcasecmp (argv[1], "list") == 0) - { - script_display_list (weechat_python_plugin, python_scripts, - argv_eol[2], 0); - } - else if (weechat_strcasecmp (argv[1], "listfull") == 0) - { - script_display_list (weechat_python_plugin, python_scripts, - argv_eol[2], 1); - } - else if (weechat_strcasecmp (argv[1], "load") == 0) - { - /* load Python script */ - path_script = script_search_path (weechat_python_plugin, - argv_eol[2]); - weechat_python_load ((path_script) ? path_script : argv_eol[2]); - if (path_script) - free (path_script); - } - else if (weechat_strcasecmp (argv[1], "reload") == 0) - { - /* reload one Python script */ - weechat_python_reload_name (argv_eol[2]); - } - else if (weechat_strcasecmp (argv[1], "unload") == 0) - { - /* unload Python script */ - weechat_python_unload_name (argv_eol[2]); - } - else - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unknown option for " - "command \"%s\""), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME, - "python"); - } - } - - return WEECHAT_RC_OK; -} - -/* - * weechat_python_completion_cb: callback for script completion - */ - -int -weechat_python_completion_cb (void *data, const char *completion_item, - struct t_gui_buffer *buffer, - struct t_gui_completion *completion) -{ - /* make C compiler happy */ - (void) data; - (void) completion_item; - (void) buffer; - - script_completion (weechat_python_plugin, completion, python_scripts); - - return WEECHAT_RC_OK; -} - -/* - * weechat_python_info_cb: callback for info - */ - -const char * -weechat_python_info_cb (void *data, const char *info_name, - const char *arguments) -{ - int rc; - struct stat stat_buf; - - /* make C compiler happy */ - (void) data; - (void) arguments; - - if (weechat_strcasecmp (info_name, "python2_bin") == 0) - { - if (python2_bin && (strcmp (python2_bin, "python") != 0)) - { - rc = stat (python2_bin, &stat_buf); - if ((rc != 0) || (!S_ISREG(stat_buf.st_mode))) - { - free (python2_bin); - weechat_python_set_python2_bin (); - } - } - return python2_bin; - } - - return NULL; -} - -/* - * weechat_python_infolist_cb: callback for infolist - */ - -struct t_infolist * -weechat_python_infolist_cb (void *data, const char *infolist_name, - void *pointer, const char *arguments) -{ - /* make C compiler happy */ - (void) data; - - if (!infolist_name || !infolist_name[0]) - return NULL; - - if (weechat_strcasecmp (infolist_name, "python_script") == 0) - { - return script_infolist_list_scripts (weechat_python_plugin, - python_scripts, pointer, - arguments); - } - - return NULL; -} - -/* - * weechat_python_signal_debug_dump_cb: dump Python plugin data in WeeChat log - * file - */ - -int -weechat_python_signal_debug_dump_cb (void *data, const char *signal, - const char *type_data, void *signal_data) -{ - /* make C compiler happy */ - (void) data; - (void) signal; - (void) type_data; - - if (!signal_data - || (weechat_strcasecmp ((char *)signal_data, PYTHON_PLUGIN_NAME) == 0)) - { - script_print_log (weechat_python_plugin, python_scripts); - } - - return WEECHAT_RC_OK; -} - -/* - * weechat_python_signal_buffer_closed_cb: callback called when a buffer is - * closed - */ - -int -weechat_python_signal_buffer_closed_cb (void *data, const char *signal, - const char *type_data, - void *signal_data) -{ - /* make C compiler happy */ - (void) data; - (void) signal; - (void) type_data; - - if (signal_data) - script_remove_buffer_callbacks (python_scripts, signal_data); - - return WEECHAT_RC_OK; -} - -/* - * weechat_python_timer_action_cb: timer for executing actions - */ - -int -weechat_python_timer_action_cb (void *data, int remaining_calls) -{ - /* make C compiler happy */ - (void) remaining_calls; - - if (data) - { - if (data == &python_action_install_list) - { - script_action_install (weechat_python_plugin, - python_scripts, - &weechat_python_unload, - &weechat_python_load, - &python_action_install_list); - } - else if (data == &python_action_remove_list) - { - script_action_remove (weechat_python_plugin, - python_scripts, - &weechat_python_unload, - &python_action_remove_list); - } - } - - return WEECHAT_RC_OK; -} - -/* - * weechat_python_signal_script_action_cb: callback called when a script action - * is asked (install/remove a script) - */ - -int -weechat_python_signal_script_action_cb (void *data, const char *signal, - const char *type_data, - void *signal_data) -{ - /* make C compiler happy */ - (void) data; - - if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0) - { - if (strcmp (signal, "python_script_install") == 0) - { - script_action_add (&python_action_install_list, - (const char *)signal_data); - weechat_hook_timer (1, 0, 1, - &weechat_python_timer_action_cb, - &python_action_install_list); - } - else if (strcmp (signal, "python_script_remove") == 0) - { - script_action_add (&python_action_remove_list, - (const char *)signal_data); - weechat_hook_timer (1, 0, 1, - &weechat_python_timer_action_cb, - &python_action_remove_list); - } - } - - return WEECHAT_RC_OK; -} - -/* - * weechat_plugin_init: initialize Python plugin - */ - -int -weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) -{ - struct t_plugin_script_init init; - - weechat_python_plugin = plugin; - - /* - * hook info to get path to python 2.x interpreter - * (some scripts using hook_process need that) - */ - weechat_python_set_python2_bin (); - weechat_hook_info ("python2_bin", - N_("path to python 2.x interpreter"), - NULL, - &weechat_python_info_cb, NULL); - - /* init stdout/stderr buffer */ - python_buffer_output[0] = '\0'; - - PyImport_AppendInittab("weechat", - &weechat_python_init_module_weechat); - - Py_Initialize (); - if (Py_IsInitialized () == 0) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to launch global " - "interpreter"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - return WEECHAT_RC_ERROR; - } - - /* PyEval_InitThreads(); */ - /* python_mainThreadState = PyThreadState_Swap(NULL); */ - python_mainThreadState = PyEval_SaveThread(); - /* PyEval_ReleaseLock (); */ - - if (!python_mainThreadState) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to get current " - "interpreter state"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - return WEECHAT_RC_ERROR; - } - - init.callback_command = &weechat_python_command_cb; - init.callback_completion = &weechat_python_completion_cb; - init.callback_infolist = &weechat_python_infolist_cb; - init.callback_signal_debug_dump = &weechat_python_signal_debug_dump_cb; - init.callback_signal_buffer_closed = &weechat_python_signal_buffer_closed_cb; - init.callback_signal_script_action = &weechat_python_signal_script_action_cb; - init.callback_load_file = &weechat_python_load_cb; - - python_quiet = 1; - script_init (weechat_python_plugin, argc, argv, &init); - python_quiet = 0; - - script_display_short_list (weechat_python_plugin, - python_scripts); - - /* init ok */ - return WEECHAT_RC_OK; -} - -/* - * weechat_plugin_end: shutdown Python interface - */ - -int -weechat_plugin_end (struct t_weechat_plugin *plugin) -{ - /* unload all scripts */ - python_quiet = 1; - script_end (plugin, &python_scripts, &weechat_python_unload_all); - python_quiet = 0; - - /* free Python interpreter */ - if (python_mainThreadState != NULL) - { - /* PyEval_AcquireLock (); */ - PyThreadState_Swap (python_mainThreadState); - /* PyEval_ReleaseLock (); */ - python_mainThreadState = NULL; - } - - Py_Finalize (); - if (Py_IsInitialized () != 0) - { - weechat_printf (NULL, - weechat_gettext ("%s%s: unable to free interpreter"), - weechat_prefix ("error"), PYTHON_PLUGIN_NAME); - } - - /* free some data */ - if (python2_bin) - free (python2_bin); - if (python_action_install_list) - free (python_action_install_list); - if (python_action_remove_list) - free (python_action_remove_list); - - return WEECHAT_RC_OK; -} diff --git a/src/plugins/scripts/python/weechat-python.h b/src/plugins/scripts/python/weechat-python.h deleted file mode 100644 index 1a522603a..000000000 --- a/src/plugins/scripts/python/weechat-python.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org> - * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> - * - * This file is part of WeeChat, the extensible chat client. - * - * WeeChat 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. - * - * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef __WEECHAT_PYTHON_H -#define __WEECHAT_PYTHON_H 1 - -#define weechat_plugin weechat_python_plugin -#define PYTHON_PLUGIN_NAME "python" - -#define PYTHON_CURRENT_SCRIPT_NAME ((python_current_script) ? python_current_script->name : "-") - -/* define some bytes functions for old python (<= 2.5) */ -#if PY_VERSION_HEX < 0x02060000 -#define PyBytes_AsString PyString_AsString -#define PyBytes_Check PyString_Check -#define PyBytes_FromString PyString_FromString -#define PyUnicode_FromString PyString_FromString -#endif - -extern struct t_weechat_plugin *weechat_python_plugin; - -extern int python_quiet; -extern struct t_plugin_script *python_scripts; -extern struct t_plugin_script *last_python_script; -extern struct t_plugin_script *python_current_script; -extern struct t_plugin_script *python_registered_script; -extern const char *python_current_script_filename; - -extern PyObject *weechat_python_hashtable_to_dict (struct t_hashtable *hashtable); -extern struct t_hashtable *weechat_python_dict_to_hashtable (PyObject *dict, - int hashtable_size); -extern void *weechat_python_exec (struct t_plugin_script *script, - int ret_type, const char *function, - char *format, void **argv); - -#endif /* __WEECHAT_PYTHON_H */ |