/* * weechat-ruby-api.c - ruby API functions * * Copyright (C) 2003-2021 Sébastien Helleu * Copyright (C) 2005-2007 Emmanuel Bouthenot * Copyright (C) 2012 Simon Arlott * * 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 . */ #undef _ #include #include #include "../weechat-plugin.h" #include "../plugin-script.h" #include "../plugin-script-api.h" #include "weechat-ruby.h" #include "weechat-ruby-api.h" #define API_DEF_FUNC(__name, __argc) \ rb_define_module_function (ruby_mWeechat, #__name, \ &weechat_ruby_api_##__name, __argc); #define API_INIT_FUNC(__init, __name, __ret) \ char *ruby_function_name = __name; \ (void) class; \ if (__init \ && (!ruby_current_script || !ruby_current_script->name)) \ { \ WEECHAT_SCRIPT_MSG_NOT_INIT(RUBY_CURRENT_SCRIPT_NAME, \ ruby_function_name); \ __ret; \ } #define API_WRONG_ARGS(__ret) \ { \ WEECHAT_SCRIPT_MSG_WRONG_ARGS(RUBY_CURRENT_SCRIPT_NAME, \ ruby_function_name); \ __ret; \ } #define API_PTR2STR(__pointer) \ plugin_script_ptr2str (__pointer) #define API_STR2PTR(__string) \ plugin_script_str2ptr (weechat_ruby_plugin, \ RUBY_CURRENT_SCRIPT_NAME, \ ruby_function_name, __string) #define API_RETURN_OK return INT2FIX (1) #define API_RETURN_ERROR return INT2FIX (0) #define API_RETURN_EMPTY return Qnil #define API_RETURN_STRING(__string) \ if (__string) \ return rb_str_new2 (__string); \ return rb_str_new2 ("") #define API_RETURN_STRING_FREE(__string) \ if (__string) \ { \ return_value = rb_str_new2 (__string); \ free (__string); \ return return_value; \ } \ return rb_str_new2 ("") #define API_RETURN_INT(__int) \ return INT2FIX (__int) #define API_RETURN_LONG(__long) \ return LONG2NUM (__long) /* * Registers a ruby script. */ static VALUE weechat_ruby_api_register (VALUE class, VALUE name, VALUE author, VALUE version, VALUE license, VALUE description, VALUE shutdown_func, VALUE charset) { char *c_name, *c_author, *c_version, *c_license, *c_description; char *c_shutdown_func, *c_charset; API_INIT_FUNC(0, "register", API_RETURN_ERROR); if (ruby_registered_script) { /* script already registered */ weechat_printf (NULL, weechat_gettext ("%s%s: script \"%s\" already " "registered (register ignored)"), weechat_prefix ("error"), RUBY_PLUGIN_NAME, ruby_registered_script->name); API_RETURN_ERROR; } ruby_current_script = NULL; ruby_registered_script = NULL; if (NIL_P (name) || NIL_P (author) || NIL_P (version) || NIL_P (license) || NIL_P (description) || NIL_P (shutdown_func) || NIL_P (charset)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (name, T_STRING); Check_Type (author, T_STRING); Check_Type (version, T_STRING); Check_Type (license, T_STRING); Check_Type (description, T_STRING); Check_Type (shutdown_func, T_STRING); Check_Type (charset, T_STRING); c_name = StringValuePtr (name); c_author = StringValuePtr (author); c_version = StringValuePtr (version); c_license = StringValuePtr (license); c_description = StringValuePtr (description); c_shutdown_func = StringValuePtr (shutdown_func); c_charset = StringValuePtr (charset); if (plugin_script_search (weechat_ruby_plugin, ruby_scripts, c_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"), RUBY_PLUGIN_NAME, c_name); API_RETURN_ERROR; } /* register script */ ruby_current_script = plugin_script_add (weechat_ruby_plugin, &ruby_data, (ruby_current_script_filename) ? ruby_current_script_filename : "", c_name, c_author, c_version, c_license, c_description, c_shutdown_func, c_charset); if (ruby_current_script) { ruby_registered_script = ruby_current_script; if ((weechat_ruby_plugin->debug >= 2) || !ruby_quiet) { weechat_printf (NULL, weechat_gettext ("%s: registered script \"%s\", " "version %s (%s)"), RUBY_PLUGIN_NAME, c_name, c_version, c_description); } ruby_current_script->interpreter = (VALUE *)ruby_current_module; } else { API_RETURN_ERROR; } API_RETURN_OK; } /* * Wrappers for functions in scripting API. * * For more info about these functions, look at their implementation in WeeChat * core. */ static VALUE weechat_ruby_api_plugin_get_name (VALUE class, VALUE plugin) { char *c_plugin; const char *result; API_INIT_FUNC(1, "plugin_get_name", API_RETURN_EMPTY); if (NIL_P (plugin)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (plugin, T_STRING); c_plugin = StringValuePtr (plugin); result = weechat_plugin_get_name (API_STR2PTR(c_plugin)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_charset_set (VALUE class, VALUE charset) { char *c_charset; API_INIT_FUNC(1, "charset_set", API_RETURN_ERROR); if (NIL_P (charset)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (charset, T_STRING); c_charset = StringValuePtr (charset); plugin_script_api_charset_set (ruby_current_script, c_charset); API_RETURN_OK; } static VALUE weechat_ruby_api_iconv_to_internal (VALUE class, VALUE charset, VALUE string) { char *c_charset, *c_string, *result; VALUE return_value; API_INIT_FUNC(1, "iconv_to_internal", API_RETURN_EMPTY); if (NIL_P (charset) || NIL_P (string)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (charset, T_STRING); Check_Type (string, T_STRING); c_charset = StringValuePtr (charset); c_string = StringValuePtr (string); result = weechat_iconv_to_internal (c_charset, c_string); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_iconv_from_internal (VALUE class, VALUE charset, VALUE string) { char *c_charset, *c_string, *result; VALUE return_value; API_INIT_FUNC(1, "iconv_from_internal", API_RETURN_EMPTY); if (NIL_P (charset) || NIL_P (string)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (charset, T_STRING); Check_Type (string, T_STRING); c_charset = StringValuePtr (charset); c_string = StringValuePtr (string); result = weechat_iconv_from_internal (c_charset, c_string); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_gettext (VALUE class, VALUE string) { char *c_string; const char *result; API_INIT_FUNC(1, "gettext", API_RETURN_EMPTY); if (NIL_P (string)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (string, T_STRING); c_string = StringValuePtr (string); result = weechat_gettext (c_string); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_ngettext (VALUE class, VALUE single, VALUE plural, VALUE count) { char *c_single, *c_plural; const char *result; int c_count; API_INIT_FUNC(1, "ngettext", API_RETURN_EMPTY); if (NIL_P (single) || NIL_P (plural) || NIL_P (count)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (single, T_STRING); Check_Type (plural, T_STRING); CHECK_INTEGER(count); c_single = StringValuePtr (single); c_plural = StringValuePtr (plural); c_count = NUM2INT (count); result = weechat_ngettext (c_single, c_plural, c_count); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_strlen_screen (VALUE class, VALUE string) { char *c_string; int value; API_INIT_FUNC(1, "strlen_screen", API_RETURN_INT(0)); if (NIL_P (string)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); c_string = StringValuePtr (string); value = weechat_strlen_screen (c_string); API_RETURN_INT(value); } static VALUE weechat_ruby_api_string_match (VALUE class, VALUE string, VALUE mask, VALUE case_sensitive) { char *c_string, *c_mask; int c_case_sensitive, value; API_INIT_FUNC(1, "string_match", API_RETURN_INT(0)); if (NIL_P (string) || NIL_P (mask) || NIL_P (case_sensitive)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); Check_Type (mask, T_STRING); CHECK_INTEGER(case_sensitive); c_string = StringValuePtr (string); c_mask = StringValuePtr (mask); c_case_sensitive = NUM2INT (case_sensitive); value = weechat_string_match (c_string, c_mask, c_case_sensitive); API_RETURN_INT(value); } static VALUE weechat_ruby_api_string_match_list (VALUE class, VALUE string, VALUE masks, VALUE case_sensitive) { char *c_string, *c_masks; int c_case_sensitive, value; API_INIT_FUNC(1, "string_match_list", API_RETURN_INT(0)); if (NIL_P (string) || NIL_P (masks) || NIL_P (case_sensitive)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); Check_Type (masks, T_STRING); CHECK_INTEGER(case_sensitive); c_string = StringValuePtr (string); c_masks = StringValuePtr (masks); c_case_sensitive = NUM2INT (case_sensitive); value = plugin_script_api_string_match_list (weechat_ruby_plugin, c_string, c_masks, c_case_sensitive); API_RETURN_INT(value); } static VALUE weechat_ruby_api_string_has_highlight (VALUE class, VALUE string, VALUE highlight_words) { char *c_string, *c_highlight_words; int value; API_INIT_FUNC(1, "string_has_highlight", API_RETURN_INT(0)); if (NIL_P (string) || NIL_P (highlight_words)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); Check_Type (highlight_words, T_STRING); c_string = StringValuePtr (string); c_highlight_words = StringValuePtr (highlight_words); value = weechat_string_has_highlight (c_string, c_highlight_words); API_RETURN_INT(value); } static VALUE weechat_ruby_api_string_has_highlight_regex (VALUE class, VALUE string, VALUE regex) { char *c_string, *c_regex; int value; API_INIT_FUNC(1, "string_has_highlight_regex", API_RETURN_INT(0)); if (NIL_P (string) || NIL_P (regex)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); Check_Type (regex, T_STRING); c_string = StringValuePtr (string); c_regex = StringValuePtr (regex); value = weechat_string_has_highlight_regex (c_string, c_regex); API_RETURN_INT(value); } static VALUE weechat_ruby_api_string_mask_to_regex (VALUE class, VALUE mask) { char *c_mask, *result; VALUE return_value; API_INIT_FUNC(1, "string_mask_to_regex", API_RETURN_EMPTY); if (NIL_P (mask)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (mask, T_STRING); c_mask = StringValuePtr (mask); result = weechat_string_mask_to_regex (c_mask); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_string_format_size (VALUE class, VALUE size) { unsigned long long c_size; char *result; VALUE return_value; API_INIT_FUNC(1, "string_format_size", API_RETURN_EMPTY); if (NIL_P (size)) API_WRONG_ARGS(API_RETURN_EMPTY); CHECK_INTEGER(size); c_size = NUM2ULONG (size); result = weechat_string_format_size (c_size); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_string_color_code_size (VALUE class, VALUE string) { char *c_string; int size; API_INIT_FUNC(1, "string_color_code_size", API_RETURN_INT(0)); if (NIL_P (string)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); c_string = StringValuePtr (string); size = weechat_string_color_code_size (c_string); API_RETURN_INT(size); } static VALUE weechat_ruby_api_string_remove_color (VALUE class, VALUE string, VALUE replacement) { char *c_string, *c_replacement, *result; VALUE return_value; API_INIT_FUNC(1, "string_remove_color", API_RETURN_EMPTY); if (NIL_P (string) || NIL_P (replacement)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (string, T_STRING); Check_Type (replacement, T_STRING); c_string = StringValuePtr (string); c_replacement = StringValuePtr (replacement); result = weechat_string_remove_color (c_string, c_replacement); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_string_is_command_char (VALUE class, VALUE string) { char *c_string; int value; API_INIT_FUNC(1, "string_is_command_char", API_RETURN_INT(0)); if (NIL_P (string)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (string, T_STRING); c_string = StringValuePtr (string); value = weechat_string_is_command_char (c_string); API_RETURN_INT(value); } static VALUE weechat_ruby_api_string_input_for_buffer (VALUE class, VALUE string) { char *c_string; const char *result; API_INIT_FUNC(1, "string_input_for_buffer", API_RETURN_EMPTY); if (NIL_P (string)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (string, T_STRING); c_string = StringValuePtr (string); result = weechat_string_input_for_buffer (c_string); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_string_eval_expression (VALUE class, VALUE expr, VALUE pointers, VALUE extra_vars, VALUE options) { char *c_expr, *result; struct t_hashtable *c_pointers, *c_extra_vars, *c_options; VALUE return_value; API_INIT_FUNC(1, "string_eval_expression", API_RETURN_EMPTY); if (NIL_P (expr) || NIL_P (pointers) || NIL_P (extra_vars) || NIL_P (options)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (expr, T_STRING); Check_Type (pointers, T_HASH); Check_Type (extra_vars, T_HASH); Check_Type (options, T_HASH); c_expr = StringValuePtr (expr); c_pointers = weechat_ruby_hash_to_hashtable (pointers, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_POINTER); c_extra_vars = weechat_ruby_hash_to_hashtable (extra_vars, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); c_options = weechat_ruby_hash_to_hashtable (options, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); result = weechat_string_eval_expression (c_expr, c_pointers, c_extra_vars, c_options); if (c_pointers) weechat_hashtable_free (c_pointers); if (c_extra_vars) weechat_hashtable_free (c_extra_vars); if (c_options) weechat_hashtable_free (c_options); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_string_eval_path_home (VALUE class, VALUE path, VALUE pointers, VALUE extra_vars, VALUE options) { char *c_path, *result; struct t_hashtable *c_pointers, *c_extra_vars, *c_options; VALUE return_value; API_INIT_FUNC(1, "string_eval_path_home", API_RETURN_EMPTY); if (NIL_P (path) || NIL_P (pointers) || NIL_P (extra_vars) || NIL_P (options)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (path, T_STRING); Check_Type (pointers, T_HASH); Check_Type (extra_vars, T_HASH); Check_Type (options, T_HASH); c_path = StringValuePtr (path); c_pointers = weechat_ruby_hash_to_hashtable ( pointers, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_POINTER); c_extra_vars = weechat_ruby_hash_to_hashtable ( extra_vars, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); c_options = weechat_ruby_hash_to_hashtable ( options, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); result = weechat_string_eval_path_home (c_path, c_pointers, c_extra_vars, c_options); if (c_pointers) weechat_hashtable_free (c_pointers); if (c_extra_vars) weechat_hashtable_free (c_extra_vars); if (c_options) weechat_hashtable_free (c_options); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_mkdir_home (VALUE class, VALUE directory, VALUE mode) { char *c_directory; int c_mode; API_INIT_FUNC(1, "mkdir_home", API_RETURN_ERROR); if (NIL_P (directory) || NIL_P (mode)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (directory, T_STRING); CHECK_INTEGER(mode); c_directory = StringValuePtr (directory); c_mode = NUM2INT (mode); if (weechat_mkdir_home (c_directory, c_mode)) API_RETURN_OK; API_RETURN_ERROR; } static VALUE weechat_ruby_api_mkdir (VALUE class, VALUE directory, VALUE mode) { char *c_directory; int c_mode; API_INIT_FUNC(1, "mkdir", API_RETURN_ERROR); if (NIL_P (directory) || NIL_P (mode)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (directory, T_STRING); CHECK_INTEGER(mode); c_directory = StringValuePtr (directory); c_mode = NUM2INT (mode); if (weechat_mkdir (c_directory, c_mode)) API_RETURN_OK; API_RETURN_ERROR; } static VALUE weechat_ruby_api_mkdir_parents (VALUE class, VALUE directory, VALUE mode) { char *c_directory; int c_mode; API_INIT_FUNC(1, "mkdir_parents", API_RETURN_ERROR); if (NIL_P (directory) || NIL_P (mode)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (directory, T_STRING); CHECK_INTEGER(mode); c_directory = StringValuePtr (directory); c_mode = NUM2INT (mode); if (weechat_mkdir_parents (c_directory, c_mode)) API_RETURN_OK; API_RETURN_ERROR; } static VALUE weechat_ruby_api_list_new (VALUE class) { const char *result; API_INIT_FUNC(1, "list_new", API_RETURN_EMPTY); result = API_PTR2STR(weechat_list_new ()); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_add (VALUE class, VALUE weelist, VALUE data, VALUE where, VALUE user_data) { char *c_weelist, *c_data, *c_where, *c_user_data; const char *result; API_INIT_FUNC(1, "list_add", API_RETURN_EMPTY); if (NIL_P (weelist) || NIL_P (data) || NIL_P (where) || NIL_P (user_data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (weelist, T_STRING); Check_Type (data, T_STRING); Check_Type (where, T_STRING); Check_Type (user_data, T_STRING); c_weelist = StringValuePtr (weelist); c_data = StringValuePtr (data); c_where = StringValuePtr (where); c_user_data = StringValuePtr (user_data); result = API_PTR2STR(weechat_list_add (API_STR2PTR(c_weelist), c_data, c_where, API_STR2PTR(c_user_data))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_search (VALUE class, VALUE weelist, VALUE data) { char *c_weelist, *c_data; const char *result; API_INIT_FUNC(1, "list_search", API_RETURN_EMPTY); if (NIL_P (weelist) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (weelist, T_STRING); Check_Type (data, T_STRING); c_weelist = StringValuePtr (weelist); c_data = StringValuePtr (data); result = API_PTR2STR(weechat_list_search (API_STR2PTR(c_weelist), c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_search_pos (VALUE class, VALUE weelist, VALUE data) { char *c_weelist, *c_data; int pos; API_INIT_FUNC(1, "list_search_pos", API_RETURN_INT(-1)); if (NIL_P (weelist) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (weelist, T_STRING); Check_Type (data, T_STRING); c_weelist = StringValuePtr (weelist); c_data = StringValuePtr (data); pos = weechat_list_search_pos (API_STR2PTR(c_weelist), c_data); API_RETURN_INT(pos); } static VALUE weechat_ruby_api_list_casesearch (VALUE class, VALUE weelist, VALUE data) { char *c_weelist, *c_data; const char *result; API_INIT_FUNC(1, "list_casesearch", API_RETURN_EMPTY); if (NIL_P (weelist) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (weelist, T_STRING); Check_Type (data, T_STRING); c_weelist = StringValuePtr (weelist); c_data = StringValuePtr (data); result = API_PTR2STR(weechat_list_casesearch (API_STR2PTR(c_weelist), c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_casesearch_pos (VALUE class, VALUE weelist, VALUE data) { char *c_weelist, *c_data; int pos; API_INIT_FUNC(1, "list_casesearch_pos", API_RETURN_INT(-1)); if (NIL_P (weelist) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (weelist, T_STRING); Check_Type (data, T_STRING); c_weelist = StringValuePtr (weelist); c_data = StringValuePtr (data); pos = weechat_list_casesearch_pos (API_STR2PTR(c_weelist), c_data); API_RETURN_INT(pos); } static VALUE weechat_ruby_api_list_get (VALUE class, VALUE weelist, VALUE position) { char *c_weelist; const char *result; int c_position; API_INIT_FUNC(1, "list_get", API_RETURN_EMPTY); if (NIL_P (weelist) || NIL_P (position)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (weelist, T_STRING); CHECK_INTEGER(position); c_weelist = StringValuePtr (weelist); c_position = NUM2INT (position); result = API_PTR2STR(weechat_list_get (API_STR2PTR(c_weelist), c_position)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_set (VALUE class, VALUE item, VALUE new_value) { char *c_item, *c_new_value; API_INIT_FUNC(1, "list_set", API_RETURN_ERROR); if (NIL_P (item) || NIL_P (new_value)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (item, T_STRING); Check_Type (new_value, T_STRING); c_item = StringValuePtr (item); c_new_value = StringValuePtr (new_value); weechat_list_set (API_STR2PTR(c_item), c_new_value); API_RETURN_OK; } static VALUE weechat_ruby_api_list_next (VALUE class, VALUE item) { char *c_item; const char *result; API_INIT_FUNC(1, "list_next", API_RETURN_EMPTY); if (NIL_P (item)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); c_item = StringValuePtr (item); result = API_PTR2STR(weechat_list_next (API_STR2PTR(c_item))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_prev (VALUE class, VALUE item) { char *c_item; const char *result; API_INIT_FUNC(1, "list_prev", API_RETURN_EMPTY); if (NIL_P (item)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); c_item = StringValuePtr (item); result = API_PTR2STR(weechat_list_prev (API_STR2PTR(c_item))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_string (VALUE class, VALUE item) { char *c_item; const char *result; API_INIT_FUNC(1, "list_string", API_RETURN_EMPTY); if (NIL_P (item)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); c_item = StringValuePtr (item); result = weechat_list_string (API_STR2PTR(c_item)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_list_size (VALUE class, VALUE weelist) { char *c_weelist; int size; API_INIT_FUNC(1, "list_size", API_RETURN_INT(0)); if (NIL_P (weelist)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (weelist, T_STRING); c_weelist = StringValuePtr (weelist); size = weechat_list_size (API_STR2PTR(c_weelist)); API_RETURN_INT(size); } static VALUE weechat_ruby_api_list_remove (VALUE class, VALUE weelist, VALUE item) { char *c_weelist, *c_item; API_INIT_FUNC(1, "list_remove", API_RETURN_ERROR); if (NIL_P (weelist) || NIL_P (item)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (weelist, T_STRING); Check_Type (item, T_STRING); c_weelist = StringValuePtr (weelist); c_item = StringValuePtr (item); weechat_list_remove (API_STR2PTR(c_weelist), API_STR2PTR(c_item)); API_RETURN_OK; } static VALUE weechat_ruby_api_list_remove_all (VALUE class, VALUE weelist) { char *c_weelist; API_INIT_FUNC(1, "list_remove_all", API_RETURN_ERROR); if (NIL_P (weelist)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (weelist, T_STRING); c_weelist = StringValuePtr (weelist); weechat_list_remove_all (API_STR2PTR(c_weelist)); API_RETURN_OK; } static VALUE weechat_ruby_api_list_free (VALUE class, VALUE weelist) { char *c_weelist; API_INIT_FUNC(1, "list_free", API_RETURN_ERROR); if (NIL_P (weelist)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (weelist, T_STRING); c_weelist = StringValuePtr (weelist); weechat_list_free (API_STR2PTR(c_weelist)); API_RETURN_OK; } int weechat_ruby_api_config_reload_cb (const void *pointer, void *data, struct t_config_file *config_file) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(config_file); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ss", func_argv); if (!rc) ret = WEECHAT_CONFIG_READ_FILE_NOT_FOUND; else { ret = *rc; free (rc); } return ret; } return WEECHAT_CONFIG_READ_FILE_NOT_FOUND; } static VALUE weechat_ruby_api_config_new (VALUE class, VALUE name, VALUE function, VALUE data) { char *c_name, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "config_new", API_RETURN_EMPTY); if (NIL_P (name) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_name = StringValuePtr (name); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_config_new (weechat_ruby_plugin, ruby_current_script, c_name, &weechat_ruby_api_config_reload_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_config_read_cb (const void *pointer, void *data, struct t_config_file *config_file, struct t_config_section *section, const char *option_name, const char *value) { struct t_plugin_script *script; void *func_argv[5]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(config_file); func_argv[2] = (char *)API_PTR2STR(section); func_argv[3] = (option_name) ? (char *)option_name : empty_arg; func_argv[4] = (value) ? (char *)value : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sssss", func_argv); if (!rc) ret = WEECHAT_CONFIG_OPTION_SET_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_CONFIG_OPTION_SET_ERROR; } int weechat_ruby_api_config_section_write_cb (const void *pointer, void *data, struct t_config_file *config_file, const char *section_name) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(config_file); func_argv[2] = (section_name) ? (char *)section_name : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_CONFIG_WRITE_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_CONFIG_WRITE_ERROR; } int weechat_ruby_api_config_section_write_default_cb (const void *pointer, void *data, struct t_config_file *config_file, const char *section_name) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(config_file); func_argv[2] = (section_name) ? (char *)section_name : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_CONFIG_WRITE_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_CONFIG_WRITE_ERROR; } int weechat_ruby_api_config_section_create_option_cb (const void *pointer, void *data, struct t_config_file *config_file, struct t_config_section *section, const char *option_name, const char *value) { struct t_plugin_script *script; void *func_argv[5]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(config_file); func_argv[2] = (char *)API_PTR2STR(section); func_argv[3] = (option_name) ? (char *)option_name : empty_arg; func_argv[4] = (value) ? (char *)value : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sssss", func_argv); if (!rc) ret = WEECHAT_CONFIG_OPTION_SET_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_CONFIG_OPTION_SET_ERROR; } int weechat_ruby_api_config_section_delete_option_cb (const void *pointer, void *data, struct t_config_file *config_file, struct t_config_section *section, struct t_config_option *option) { struct t_plugin_script *script; void *func_argv[4]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(config_file); func_argv[2] = (char *)API_PTR2STR(section); func_argv[3] = (char *)API_PTR2STR(option); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ssss", func_argv); if (!rc) ret = WEECHAT_CONFIG_OPTION_UNSET_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_CONFIG_OPTION_UNSET_ERROR; } static VALUE weechat_ruby_api_config_new_section (VALUE class, VALUE config_file, VALUE name, VALUE user_can_add_options, VALUE user_can_delete_options, VALUE function_read, VALUE data_read, VALUE function_write, VALUE data_write, VALUE function_write_default, VALUE data_write_default, VALUE function_create_option, VALUE data_create_option, VALUE function_delete_option, VALUE data_delete_option) { char *c_config_file, *c_name, *c_function_read, *c_data_read; char *c_function_write, *c_data_write, *c_function_write_default; char *c_data_write_default, *c_function_create_option; char *c_data_create_option, *c_function_delete_option; char *c_data_delete_option; const char *result; int c_user_can_add_options, c_user_can_delete_options; API_INIT_FUNC(1, "config_new_section", API_RETURN_EMPTY); if (NIL_P (config_file) || NIL_P (name) || NIL_P (user_can_add_options) || NIL_P (user_can_delete_options) || NIL_P (function_read) || NIL_P (data_read) || NIL_P (function_write) || NIL_P (data_write) || NIL_P (function_write_default) || NIL_P (data_write_default) || NIL_P (function_create_option) || NIL_P (data_create_option) || NIL_P (function_delete_option) || NIL_P (data_delete_option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (config_file, T_STRING); Check_Type (name, T_STRING); CHECK_INTEGER(user_can_add_options); CHECK_INTEGER(user_can_delete_options); Check_Type (function_read, T_STRING); Check_Type (data_read, T_STRING); Check_Type (function_write, T_STRING); Check_Type (data_write, T_STRING); Check_Type (function_write_default, T_STRING); Check_Type (data_write_default, T_STRING); Check_Type (function_create_option, T_STRING); Check_Type (data_create_option, T_STRING); Check_Type (function_delete_option, T_STRING); Check_Type (data_delete_option, T_STRING); c_config_file = StringValuePtr (config_file); c_name = StringValuePtr (name); c_user_can_add_options = NUM2INT (user_can_add_options); c_user_can_delete_options = NUM2INT (user_can_delete_options); c_function_read = StringValuePtr (function_read); c_data_read = StringValuePtr (data_read); c_function_write = StringValuePtr (function_write); c_data_write = StringValuePtr (data_write); c_function_write_default = StringValuePtr (function_write_default); c_data_write_default = StringValuePtr (data_write_default); c_function_create_option = StringValuePtr (function_create_option); c_data_create_option = StringValuePtr (data_create_option); c_function_delete_option = StringValuePtr (function_delete_option); c_data_delete_option = StringValuePtr (data_delete_option); result = API_PTR2STR( plugin_script_api_config_new_section ( weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_config_file), c_name, c_user_can_add_options, c_user_can_delete_options, &weechat_ruby_api_config_read_cb, c_function_read, c_data_read, &weechat_ruby_api_config_section_write_cb, c_function_write, c_data_write, &weechat_ruby_api_config_section_write_default_cb, c_function_write_default, c_data_write_default, &weechat_ruby_api_config_section_create_option_cb, c_function_create_option, c_data_create_option, &weechat_ruby_api_config_section_delete_option_cb, c_function_delete_option, c_data_delete_option)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_search_section (VALUE class, VALUE config_file, VALUE section_name) { char *c_config_file, *c_section_name; const char *result; API_INIT_FUNC(1, "config_search_section", API_RETURN_EMPTY); if (NIL_P (config_file) || NIL_P (section_name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (config_file, T_STRING); Check_Type (section_name, T_STRING); c_config_file = StringValuePtr (config_file); c_section_name = StringValuePtr (section_name); result = API_PTR2STR(weechat_config_search_section (API_STR2PTR(c_config_file), c_section_name)); API_RETURN_STRING(result); } int weechat_ruby_api_config_option_check_value_cb (const void *pointer, void *data, struct t_config_option *option, const char *value) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(option); func_argv[2] = (value) ? (char *)value : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = 0; else { ret = *rc; free (rc); } return ret; } return 0; } void weechat_ruby_api_config_option_change_cb (const void *pointer, void *data, struct t_config_option *option) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(option); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ss", func_argv); if (rc) free (rc); } } void weechat_ruby_api_config_option_delete_cb (const void *pointer, void *data, struct t_config_option *option) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(option); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ss", func_argv); if (rc) free (rc); } } static VALUE weechat_ruby_api_config_new_option (VALUE class, VALUE config_file, VALUE section, VALUE name, VALUE type, VALUE description, VALUE string_values, VALUE min, VALUE max, VALUE default_value, VALUE value, VALUE null_value_allowed, VALUE callbacks) { char *c_config_file, *c_section, *c_name, *c_type, *c_description; char *c_string_values, *c_default_value, *c_value; char *c_function_check_value, *c_data_check_value, *c_function_change; char *c_data_change, *c_function_delete, *c_data_delete; const char *result; int c_min, c_max, c_null_value_allowed; VALUE function_check_value, data_check_value, function_change, data_change; VALUE function_delete, data_delete; API_INIT_FUNC(1, "config_new_option", API_RETURN_EMPTY); if (NIL_P (config_file) || NIL_P (section) || NIL_P (name) || NIL_P (type) || NIL_P (description) || NIL_P (string_values) || NIL_P (min) || NIL_P (max) || NIL_P (default_value) || NIL_P (value) || NIL_P (null_value_allowed) || NIL_P (callbacks)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (config_file, T_STRING); Check_Type (section, T_STRING); Check_Type (name, T_STRING); Check_Type (type, T_STRING); Check_Type (description, T_STRING); Check_Type (string_values, T_STRING); CHECK_INTEGER(min); CHECK_INTEGER(max); Check_Type (default_value, T_STRING); Check_Type (value, T_STRING); CHECK_INTEGER(null_value_allowed); Check_Type (callbacks, T_ARRAY); /* * due to a Ruby limitation (15 arguments max by function), we receive the * callbacks in an array of 6 strings (3 callbacks + 3 data) */ if (RARRAY_LEN(callbacks) != 6) API_WRONG_ARGS(API_RETURN_EMPTY); function_check_value = rb_ary_entry (callbacks, 0); data_check_value = rb_ary_entry (callbacks, 1); function_change = rb_ary_entry (callbacks, 2); data_change = rb_ary_entry (callbacks, 3); function_delete = rb_ary_entry (callbacks, 4); data_delete = rb_ary_entry (callbacks, 5); c_config_file = StringValuePtr (config_file); c_section = StringValuePtr (section); c_name = StringValuePtr (name); c_type = StringValuePtr (type); c_description = StringValuePtr (description); c_string_values = StringValuePtr (string_values); c_min = NUM2INT (min); c_max = NUM2INT (max); c_default_value = StringValuePtr (default_value); c_value = StringValuePtr (value); c_null_value_allowed = NUM2INT (null_value_allowed); c_function_check_value = StringValuePtr (function_check_value); c_data_check_value = StringValuePtr (data_check_value); c_function_change = StringValuePtr (function_change); c_data_change = StringValuePtr (data_change); c_function_delete = StringValuePtr (function_delete); c_data_delete = StringValuePtr (data_delete); result = API_PTR2STR(plugin_script_api_config_new_option (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_config_file), API_STR2PTR(c_section), c_name, c_type, c_description, c_string_values, c_min, c_max, c_default_value, c_value, c_null_value_allowed, &weechat_ruby_api_config_option_check_value_cb, c_function_check_value, c_data_check_value, &weechat_ruby_api_config_option_change_cb, c_function_change, c_data_change, &weechat_ruby_api_config_option_delete_cb, c_function_delete, c_data_delete)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_search_option (VALUE class, VALUE config_file, VALUE section, VALUE option_name) { char *c_config_file, *c_section, *c_option_name; const char *result; API_INIT_FUNC(1, "config_search_option", API_RETURN_EMPTY); if (NIL_P (config_file) || NIL_P (section) || NIL_P (option_name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (config_file, T_STRING); Check_Type (section, T_STRING); Check_Type (option_name, T_STRING); c_config_file = StringValuePtr (config_file); c_section = StringValuePtr (section); c_option_name = StringValuePtr (option_name); result = API_PTR2STR(weechat_config_search_option (API_STR2PTR(c_config_file), API_STR2PTR(c_section), c_option_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_string_to_boolean (VALUE class, VALUE text) { char *c_text; int value; API_INIT_FUNC(1, "config_string_to_boolean", API_RETURN_INT(0)); if (NIL_P (text)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (text, T_STRING); c_text = StringValuePtr (text); value = weechat_config_string_to_boolean (c_text); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_option_reset (VALUE class, VALUE option, VALUE run_callback) { char *c_option; int c_run_callback, rc; API_INIT_FUNC(1, "config_option_reset", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); if (NIL_P (option) || NIL_P (run_callback)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); Check_Type (option, T_STRING); CHECK_INTEGER(run_callback); c_option = StringValuePtr (option); c_run_callback = NUM2INT (run_callback); rc = weechat_config_option_reset (API_STR2PTR(c_option), c_run_callback); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_option_set (VALUE class, VALUE option, VALUE new_value, VALUE run_callback) { char *c_option, *c_new_value; int c_run_callback, rc; API_INIT_FUNC(1, "config_option_set", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); if (NIL_P (option) || NIL_P (new_value) || NIL_P (run_callback)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); Check_Type (option, T_STRING); Check_Type (new_value, T_STRING); CHECK_INTEGER(run_callback); c_option = StringValuePtr (option); c_new_value = StringValuePtr (new_value); c_run_callback = NUM2INT (run_callback); rc = weechat_config_option_set (API_STR2PTR(c_option), c_new_value, c_run_callback); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_option_set_null (VALUE class, VALUE option, VALUE run_callback) { char *c_option; int c_run_callback, rc; API_INIT_FUNC(1, "config_option_set_null", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); if (NIL_P (option) || NIL_P (run_callback)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); Check_Type (option, T_STRING); CHECK_INTEGER(run_callback); c_option = StringValuePtr (option); c_run_callback = NUM2INT (run_callback); rc = weechat_config_option_set_null (API_STR2PTR(c_option), c_run_callback); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_option_unset (VALUE class, VALUE option) { char *c_option; int rc; API_INIT_FUNC(1, "config_option_unset", API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); rc = weechat_config_option_unset (API_STR2PTR(c_option)); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_option_rename (VALUE class, VALUE option, VALUE new_name) { char *c_option, *c_new_name; API_INIT_FUNC(1, "config_option_rename", API_RETURN_ERROR); if (NIL_P (option) || NIL_P (new_name)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (option, T_STRING); Check_Type (new_name, T_STRING); c_option = StringValuePtr (option); c_new_name = StringValuePtr (new_name); weechat_config_option_rename (API_STR2PTR(c_option), c_new_name); API_RETURN_OK; } static VALUE weechat_ruby_api_config_option_is_null (VALUE class, VALUE option) { char *c_option; int value; API_INIT_FUNC(1, "config_option_is_null", API_RETURN_INT(1)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(1)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); value = weechat_config_option_is_null (API_STR2PTR(c_option)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_option_default_is_null (VALUE class, VALUE option) { char *c_option; int value; API_INIT_FUNC(1, "config_option_default_is_null", API_RETURN_INT(1)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(1)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); value = weechat_config_option_default_is_null (API_STR2PTR(c_option)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_boolean (VALUE class, VALUE option) { char *c_option; int value; API_INIT_FUNC(1, "config_boolean", API_RETURN_INT(0)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); value = weechat_config_boolean (API_STR2PTR(c_option)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_boolean_default (VALUE class, VALUE option) { char *c_option; int value; API_INIT_FUNC(1, "config_boolean_default", API_RETURN_INT(0)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); value = weechat_config_boolean_default (API_STR2PTR(c_option)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_integer (VALUE class, VALUE option) { char *c_option; int value; API_INIT_FUNC(1, "config_integer", API_RETURN_INT(0)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); value = weechat_config_integer (API_STR2PTR(c_option)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_integer_default (VALUE class, VALUE option) { char *c_option; int value; API_INIT_FUNC(1, "config_integer_default", API_RETURN_INT(0)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); value = weechat_config_integer_default (API_STR2PTR(c_option)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_config_string (VALUE class, VALUE option) { char *c_option; const char *result; API_INIT_FUNC(1, "config_string", API_RETURN_EMPTY); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); c_option = StringValuePtr (option); result = weechat_config_string (API_STR2PTR(c_option)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_string_default (VALUE class, VALUE option) { char *c_option; const char *result; API_INIT_FUNC(1, "config_string_default", API_RETURN_EMPTY); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); c_option = StringValuePtr (option); result = weechat_config_string_default (API_STR2PTR(c_option)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_color (VALUE class, VALUE option) { char *c_option; const char *result; API_INIT_FUNC(1, "config_color", API_RETURN_EMPTY); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); c_option = StringValuePtr (option); result = weechat_config_color (API_STR2PTR(c_option)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_color_default (VALUE class, VALUE option) { char *c_option; const char *result; API_INIT_FUNC(1, "config_color_default", API_RETURN_EMPTY); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); c_option = StringValuePtr (option); result = weechat_config_color_default (API_STR2PTR(c_option)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_write_option (VALUE class, VALUE config_file, VALUE option) { char *c_config_file, *c_option; API_INIT_FUNC(1, "config_write_option", API_RETURN_ERROR); if (NIL_P (config_file) || NIL_P (option)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (config_file, T_STRING); Check_Type (option, T_STRING); c_config_file = StringValuePtr (config_file); c_option = StringValuePtr (option); weechat_config_write_option (API_STR2PTR(c_config_file), API_STR2PTR(c_option)); API_RETURN_OK; } static VALUE weechat_ruby_api_config_write_line (VALUE class, VALUE config_file, VALUE option_name, VALUE value) { char *c_config_file, *c_option_name, *c_value; API_INIT_FUNC(1, "config_write_line", API_RETURN_ERROR); if (NIL_P (config_file) || NIL_P (option_name) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (config_file, T_STRING); Check_Type (option_name, T_STRING); Check_Type (value, T_STRING); c_config_file = StringValuePtr (config_file); c_option_name = StringValuePtr (option_name); c_value = StringValuePtr (value); weechat_config_write_line (API_STR2PTR(c_config_file), c_option_name, "%s", c_value); API_RETURN_OK; } static VALUE weechat_ruby_api_config_write (VALUE class, VALUE config_file) { char *c_config_file; int rc; API_INIT_FUNC(1, "config_write", API_RETURN_INT(WEECHAT_CONFIG_WRITE_ERROR)); if (NIL_P (config_file)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_WRITE_ERROR)); Check_Type (config_file, T_STRING); c_config_file = StringValuePtr (config_file); rc = weechat_config_write (API_STR2PTR(c_config_file)); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_read (VALUE class, VALUE config_file) { char *c_config_file; int rc; API_INIT_FUNC(1, "config_read", API_RETURN_INT(WEECHAT_CONFIG_READ_FILE_NOT_FOUND)); if (NIL_P (config_file)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_READ_FILE_NOT_FOUND)); Check_Type (config_file, T_STRING); c_config_file = StringValuePtr (config_file); rc = weechat_config_read (API_STR2PTR(c_config_file)); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_reload (VALUE class, VALUE config_file) { char *c_config_file; int rc; API_INIT_FUNC(1, "config_reload", API_RETURN_INT(WEECHAT_CONFIG_READ_FILE_NOT_FOUND)); if (NIL_P (config_file)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_READ_FILE_NOT_FOUND)); Check_Type (config_file, T_STRING); c_config_file = StringValuePtr (config_file); rc = weechat_config_reload (API_STR2PTR(c_config_file)); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_option_free (VALUE class, VALUE option) { char *c_option; API_INIT_FUNC(1, "config_option_free", API_RETURN_ERROR); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (option, T_STRING); c_option = StringValuePtr (option); weechat_config_option_free (API_STR2PTR(c_option)); API_RETURN_OK; } static VALUE weechat_ruby_api_config_section_free_options (VALUE class, VALUE section) { char *c_section; API_INIT_FUNC(1, "config_section_free_options", API_RETURN_ERROR); if (NIL_P (section)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (section, T_STRING); c_section = StringValuePtr (section); weechat_config_section_free_options (API_STR2PTR(c_section)); API_RETURN_OK; } static VALUE weechat_ruby_api_config_section_free (VALUE class, VALUE section) { char *c_section; API_INIT_FUNC(1, "config_section_free", API_RETURN_ERROR); if (NIL_P (section)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (section, T_STRING); c_section = StringValuePtr (section); weechat_config_section_free (API_STR2PTR(c_section)); API_RETURN_OK; } static VALUE weechat_ruby_api_config_free (VALUE class, VALUE config_file) { char *c_config_file; API_INIT_FUNC(1, "config_free", API_RETURN_ERROR); if (NIL_P (config_file)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (config_file, T_STRING); c_config_file = StringValuePtr (config_file); weechat_config_free (API_STR2PTR(c_config_file)); API_RETURN_OK; } static VALUE weechat_ruby_api_config_get (VALUE class, VALUE option) { char *c_option; const char *result; API_INIT_FUNC(1, "config_get", API_RETURN_EMPTY); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); c_option = StringValuePtr (option); result = API_PTR2STR(weechat_config_get (c_option)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_get_plugin (VALUE class, VALUE option) { char *c_option; const char *result; API_INIT_FUNC(1, "config_get_plugin", API_RETURN_EMPTY); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); c_option = StringValuePtr (option); result = plugin_script_api_config_get_plugin (weechat_ruby_plugin, ruby_current_script, c_option); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_config_is_set_plugin (VALUE class, VALUE option) { char *c_option; int rc; API_INIT_FUNC(1, "config_is_set_plugin", API_RETURN_INT(0)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); rc = plugin_script_api_config_is_set_plugin (weechat_ruby_plugin, ruby_current_script, c_option); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_set_plugin (VALUE class, VALUE option, VALUE value) { char *c_option, *c_value; int rc; API_INIT_FUNC(1, "config_set_plugin", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); if (NIL_P (option) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR)); Check_Type (option, T_STRING); Check_Type (value, T_STRING); c_option = StringValuePtr (option); c_value = StringValuePtr (value); rc = plugin_script_api_config_set_plugin (weechat_ruby_plugin, ruby_current_script, c_option, c_value); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_config_set_desc_plugin (VALUE class, VALUE option, VALUE description) { char *c_option, *c_description; API_INIT_FUNC(1, "config_set_desc_plugin", API_RETURN_ERROR); if (NIL_P (option) || NIL_P (description)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (option, T_STRING); Check_Type (description, T_STRING); c_option = StringValuePtr (option); c_description = StringValuePtr (description); plugin_script_api_config_set_desc_plugin (weechat_ruby_plugin, ruby_current_script, c_option, c_description); API_RETURN_OK; } static VALUE weechat_ruby_api_config_unset_plugin (VALUE class, VALUE option) { char *c_option; int rc; API_INIT_FUNC(1, "config_unset_plugin", API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); if (NIL_P (option)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); Check_Type (option, T_STRING); c_option = StringValuePtr (option); rc = plugin_script_api_config_unset_plugin (weechat_ruby_plugin, ruby_current_script, c_option); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_key_bind (VALUE class, VALUE context, VALUE keys) { char *c_context; struct t_hashtable *c_keys; int num_keys; API_INIT_FUNC(1, "key_bind", API_RETURN_INT(0)); if (NIL_P (context) || NIL_P (keys)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (context, T_STRING); Check_Type (keys, T_HASH); c_context = StringValuePtr (context); c_keys = weechat_ruby_hash_to_hashtable (keys, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); num_keys = weechat_key_bind (c_context, c_keys); if (c_keys) weechat_hashtable_free (c_keys); API_RETURN_INT(num_keys); } static VALUE weechat_ruby_api_key_unbind (VALUE class, VALUE context, VALUE key) { char *c_context, *c_key; int num_keys; API_INIT_FUNC(1, "key_unbind", API_RETURN_INT(0)); if (NIL_P (context) || NIL_P (key)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (context, T_STRING); Check_Type (key, T_STRING); c_context = StringValuePtr (context); c_key = StringValuePtr (key); num_keys = weechat_key_unbind (c_context, c_key); API_RETURN_INT(num_keys); } static VALUE weechat_ruby_api_prefix (VALUE class, VALUE prefix) { char *c_prefix; const char *result; API_INIT_FUNC(0, "prefix", API_RETURN_EMPTY); if (NIL_P (prefix)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (prefix, T_STRING); c_prefix = StringValuePtr (prefix); result = weechat_prefix (c_prefix); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_color (VALUE class, VALUE color) { char *c_color; const char *result; API_INIT_FUNC(0, "color", API_RETURN_EMPTY); if (NIL_P (color)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (color, T_STRING); c_color = StringValuePtr (color); result = weechat_color (c_color); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_print (VALUE class, VALUE buffer, VALUE message) { char *c_buffer, *c_message; API_INIT_FUNC(0, "print", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (message)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (message, T_STRING); c_buffer = StringValuePtr (buffer); c_message = StringValuePtr (message); plugin_script_api_printf (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_buffer), "%s", c_message); API_RETURN_OK; } static VALUE weechat_ruby_api_print_date_tags (VALUE class, VALUE buffer, VALUE date, VALUE tags, VALUE message) { char *c_buffer, *c_tags, *c_message; time_t c_date; API_INIT_FUNC(1, "print_date_tags", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (date) || NIL_P (tags) || NIL_P (message)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); CHECK_INTEGER(date); Check_Type (tags, T_STRING); Check_Type (message, T_STRING); c_buffer = StringValuePtr (buffer); c_date = NUM2ULONG (date); c_tags = StringValuePtr (tags); c_message = StringValuePtr (message); plugin_script_api_printf_date_tags (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_buffer), c_date, c_tags, "%s", c_message); API_RETURN_OK; } static VALUE weechat_ruby_api_print_y (VALUE class, VALUE buffer, VALUE y, VALUE message) { char *c_buffer, *c_message; int c_y; API_INIT_FUNC(1, "print_y", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (y) || NIL_P (message)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); CHECK_INTEGER(y); Check_Type (message, T_STRING); c_buffer = StringValuePtr (buffer); c_y = NUM2INT (y); c_message = StringValuePtr (message); plugin_script_api_printf_y (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_buffer), c_y, "%s", c_message); API_RETURN_OK; } static VALUE weechat_ruby_api_log_print (VALUE class, VALUE message) { char *c_message; API_INIT_FUNC(1, "log_print", API_RETURN_ERROR); if (NIL_P (message)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (message, T_STRING); c_message = StringValuePtr (message); plugin_script_api_log_printf (weechat_ruby_plugin, ruby_current_script, "%s", c_message); API_RETURN_OK; } int weechat_ruby_api_hook_command_cb (const void *pointer, void *data, struct t_gui_buffer *buffer, int argc, char **argv, char **argv_eol) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; /* make C compiler happy */ (void) argv; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(buffer); func_argv[2] = (argc > 1) ? argv_eol[1] : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_command (VALUE class, VALUE command, VALUE description, VALUE args, VALUE args_description, VALUE completion, VALUE function, VALUE data) { char *c_command, *c_description, *c_args, *c_args_description; char *c_completion, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_command", API_RETURN_EMPTY); if (NIL_P (command) || NIL_P (description) || NIL_P (args) || NIL_P (args_description) || NIL_P (completion) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (command, T_STRING); Check_Type (description, T_STRING); Check_Type (args, T_STRING); Check_Type (args_description, T_STRING); Check_Type (completion, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_command = StringValuePtr (command); c_description = StringValuePtr (description); c_args = StringValuePtr (args); c_args_description = StringValuePtr (args_description); c_completion = StringValuePtr (completion); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_command (weechat_ruby_plugin, ruby_current_script, c_command, c_description, c_args, c_args_description, c_completion, &weechat_ruby_api_hook_command_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_hook_completion_cb (const void *pointer, void *data, const char *completion_item, struct t_gui_buffer *buffer, struct t_gui_completion *completion) { struct t_plugin_script *script; void *func_argv[4]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (completion_item) ? (char *)completion_item : empty_arg; func_argv[2] = (char *)API_PTR2STR(buffer); func_argv[3] = (char *)API_PTR2STR(completion); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ssss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_completion (VALUE class, VALUE completion, VALUE description, VALUE function, VALUE data) { char *c_completion, *c_description, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_completion", API_RETURN_EMPTY); if (NIL_P (completion) || NIL_P (description) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (completion, T_STRING); Check_Type (description, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_completion = StringValuePtr (completion); c_description = StringValuePtr (description); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_completion (weechat_ruby_plugin, ruby_current_script, c_completion, c_description, &weechat_ruby_api_hook_completion_cb, c_function, c_data)); API_RETURN_STRING(result); } /* * This function deprecated since WeeChat 2.9, kept for compatibility. * It is replaced by completion_get_string. */ static VALUE weechat_ruby_api_hook_completion_get_string (VALUE class, VALUE completion, VALUE property) { char *c_completion, *c_property; const char *result; API_INIT_FUNC(1, "hook_completion_get_string", API_RETURN_EMPTY); if (NIL_P (completion) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (completion, T_STRING); Check_Type (property, T_STRING); c_completion = StringValuePtr (completion); c_property = StringValuePtr (property); result = weechat_hook_completion_get_string (API_STR2PTR(c_completion), c_property); API_RETURN_STRING(result); } /* * This function deprecated since WeeChat 2.9, kept for compatibility. * It is replaced by completion_list_add. */ static VALUE weechat_ruby_api_hook_completion_list_add (VALUE class, VALUE completion, VALUE word, VALUE nick_completion, VALUE where) { char *c_completion, *c_word, *c_where; int c_nick_completion; API_INIT_FUNC(1, "hook_completion_list_add", API_RETURN_ERROR); if (NIL_P (completion) || NIL_P (word) || NIL_P (nick_completion) || NIL_P (where)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (completion, T_STRING); Check_Type (word, T_STRING); CHECK_INTEGER(nick_completion); Check_Type (where, T_STRING); c_completion = StringValuePtr (completion); c_word = StringValuePtr (word); c_nick_completion = NUM2INT (nick_completion); c_where = StringValuePtr (where); weechat_hook_completion_list_add (API_STR2PTR(c_completion), c_word, c_nick_completion, c_where); API_RETURN_OK; } int weechat_ruby_api_hook_command_run_cb (const void *pointer, void *data, struct t_gui_buffer *buffer, const char *command) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(buffer); func_argv[2] = (command) ? (char *)command : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_command_run (VALUE class, VALUE command, VALUE function, VALUE data) { char *c_command, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_command_run", API_RETURN_EMPTY); if (NIL_P (command) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (command, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_command = StringValuePtr (command); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_command_run (weechat_ruby_plugin, ruby_current_script, c_command, &weechat_ruby_api_hook_command_run_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_hook_timer_cb (const void *pointer, void *data, int remaining_calls) { struct t_plugin_script *script; void *func_argv[2]; char str_remaining_calls[32], empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { snprintf (str_remaining_calls, sizeof (str_remaining_calls), "%d", remaining_calls); func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = str_remaining_calls; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_timer (VALUE class, VALUE interval, VALUE align_second, VALUE max_calls, VALUE function, VALUE data) { int c_interval, c_align_second, c_max_calls; char *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_timer", API_RETURN_EMPTY); if (NIL_P (interval) || NIL_P (align_second) || NIL_P (max_calls) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); CHECK_INTEGER(interval); CHECK_INTEGER(align_second); CHECK_INTEGER(max_calls); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_interval = NUM2INT (interval); c_align_second = NUM2INT (align_second); c_max_calls = NUM2INT (max_calls); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_timer (weechat_ruby_plugin, ruby_current_script, c_interval, c_align_second, c_max_calls, &weechat_ruby_api_hook_timer_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_hook_fd_cb (const void *pointer, void *data, int fd) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = &fd; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "si", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_fd (VALUE class, VALUE fd, VALUE read, VALUE write, VALUE exception, VALUE function, VALUE data) { int c_fd, c_read, c_write, c_exception; char *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_fd", API_RETURN_EMPTY); if (NIL_P (fd) || NIL_P (read) || NIL_P (write) || NIL_P (exception) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); CHECK_INTEGER(fd); CHECK_INTEGER(read); CHECK_INTEGER(write); CHECK_INTEGER(exception); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_fd = NUM2INT (fd); c_read = NUM2INT (read); c_write = NUM2INT (write); c_exception = NUM2INT (exception); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_fd (weechat_ruby_plugin, ruby_current_script, c_fd, c_read, c_write, c_exception, &weechat_ruby_api_hook_fd_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_hook_process_cb (const void *pointer, void *data, const char *command, int return_code, const char *out, const char *err) { struct t_plugin_script *script; void *func_argv[5]; char empty_arg[1] = { '\0' }, *result; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (return_code == WEECHAT_HOOK_PROCESS_CHILD) { if (strncmp (command, "func:", 5) == 0) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; result = (char *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_STRING, command + 5, "s", func_argv); if (result) { printf ("%s", result); free (result); return 0; } } return 1; } else if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (command) ? (char *)command : empty_arg; func_argv[2] = &return_code; func_argv[3] = (out) ? (char *)out : empty_arg; func_argv[4] = (err) ? (char *)err : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ssiss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_process (VALUE class, VALUE command, VALUE timeout, VALUE function, VALUE data) { char *c_command, *c_function, *c_data; const char *result; int c_timeout; API_INIT_FUNC(1, "hook_process", API_RETURN_EMPTY); if (NIL_P (command) || NIL_P (timeout) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (command, T_STRING); CHECK_INTEGER(timeout); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_command = StringValuePtr (command); c_timeout = NUM2INT (timeout); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_process (weechat_ruby_plugin, ruby_current_script, c_command, c_timeout, &weechat_ruby_api_hook_process_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hook_process_hashtable (VALUE class, VALUE command, VALUE options, VALUE timeout, VALUE function, VALUE data) { char *c_command, *c_function, *c_data; const char *result; struct t_hashtable *c_options; int c_timeout; API_INIT_FUNC(1, "hook_process_hashtable", API_RETURN_EMPTY); if (NIL_P (command) || NIL_P (options) || NIL_P (timeout) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (command, T_STRING); Check_Type (options, T_HASH); CHECK_INTEGER(timeout); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_command = StringValuePtr (command); c_options = weechat_ruby_hash_to_hashtable (options, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); c_timeout = NUM2INT (timeout); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_process_hashtable (weechat_ruby_plugin, ruby_current_script, c_command, c_options, c_timeout, &weechat_ruby_api_hook_process_cb, c_function, c_data)); if (c_options) weechat_hashtable_free (c_options); API_RETURN_STRING(result); } int weechat_ruby_api_hook_connect_cb (const void *pointer, void *data, int status, int gnutls_rc, int sock, const char *error, const char *ip_address) { struct t_plugin_script *script; void *func_argv[6]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = &status; func_argv[2] = &gnutls_rc; func_argv[3] = &sock; func_argv[4] = (ip_address) ? (char *)ip_address : empty_arg; func_argv[5] = (error) ? (char *)error : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "siiiss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_connect (VALUE class, VALUE proxy, VALUE address, VALUE port, VALUE ipv6, VALUE retry, VALUE local_hostname, VALUE function, VALUE data) { char *c_proxy, *c_address, *c_local_hostname, *c_function, *c_data; const char *result; int c_port, c_ipv6, c_retry; API_INIT_FUNC(1, "hook_connect", API_RETURN_EMPTY); if (NIL_P (proxy) || NIL_P (address) || NIL_P (port) || NIL_P (ipv6) || NIL_P (retry) || NIL_P (local_hostname) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (proxy, T_STRING); Check_Type (address, T_STRING); CHECK_INTEGER(port); CHECK_INTEGER(ipv6); CHECK_INTEGER(retry); Check_Type (local_hostname, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_proxy = StringValuePtr (proxy); c_address = StringValuePtr (address); c_port = NUM2INT (port); c_ipv6 = NUM2INT (ipv6); c_retry = NUM2INT (retry); c_local_hostname = StringValuePtr (local_hostname); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_connect (weechat_ruby_plugin, ruby_current_script, c_proxy, c_address, c_port, c_ipv6, c_retry, NULL, /* gnutls session */ NULL, /* gnutls callback */ 0, /* gnutls DH key size */ NULL, /* gnutls priorities */ c_local_hostname, &weechat_ruby_api_hook_connect_cb, c_function, c_data)); API_RETURN_STRING(result); } struct t_hashtable * weechat_ruby_api_hook_line_cb (const void *pointer, void *data, struct t_hashtable *line) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = line; return (struct t_hashtable *)weechat_ruby_exec ( script, WEECHAT_SCRIPT_EXEC_HASHTABLE, ptr_function, "sh", func_argv); } return NULL; } static VALUE weechat_ruby_api_hook_line (VALUE class, VALUE buffer_type, VALUE buffer_name, VALUE tags, VALUE function, VALUE data) { char *c_buffer_type, *c_buffer_name, *c_tags, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_line", API_RETURN_EMPTY); if (NIL_P (buffer_type) || NIL_P (buffer_name) || NIL_P (tags) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer_type, T_STRING); Check_Type (buffer_name, T_STRING); Check_Type (tags, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_buffer_type = StringValuePtr (buffer_type); c_buffer_name = StringValuePtr (buffer_name); c_tags = StringValuePtr (tags); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_line (weechat_ruby_plugin, ruby_current_script, c_buffer_type, c_buffer_name, c_tags, &weechat_ruby_api_hook_line_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_hook_print_cb (const void *pointer, 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_plugin_script *script; void *func_argv[8]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; static char timebuffer[64]; int *rc, ret; /* make C compiler happy */ (void) tags_count; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { snprintf (timebuffer, sizeof (timebuffer), "%lld", (long long)date); func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_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; func_argv[5] = &highlight; func_argv[6] = (prefix) ? (char *)prefix : empty_arg; func_argv[7] = (message) ? (char *)message : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ssssiiss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } if (func_argv[3]) free (func_argv[3]); return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_print (VALUE class, VALUE buffer, VALUE tags, VALUE message, VALUE strip_colors, VALUE function, VALUE data) { char *c_buffer, *c_tags, *c_message, *c_function, *c_data; const char *result; int c_strip_colors; API_INIT_FUNC(1, "hook_print", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (tags) || NIL_P (message) || NIL_P (strip_colors) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (tags, T_STRING); Check_Type (message, T_STRING); CHECK_INTEGER(strip_colors); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_buffer = StringValuePtr (buffer); c_tags = StringValuePtr (tags); c_message = StringValuePtr (message); c_strip_colors = NUM2INT (strip_colors); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_print (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_buffer), c_tags, c_message, c_strip_colors, &weechat_ruby_api_hook_print_cb, c_function, c_data)); API_RETURN_STRING(result); } int weechat_ruby_api_hook_signal_cb (const void *pointer, void *data, const char *signal, const char *type_data, void *signal_data) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; static char str_value[64]; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (signal) ? (char *)signal : empty_arg; 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) { str_value[0] = '\0'; if (signal_data) { snprintf (str_value, sizeof (str_value), "%d", *((int *)signal_data)); } func_argv[2] = str_value; } else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_POINTER) == 0) { func_argv[2] = (char *)API_PTR2STR(signal_data); } else func_argv[2] = empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_signal (VALUE class, VALUE signal, VALUE function, VALUE data) { char *c_signal, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_signal", API_RETURN_EMPTY); if (NIL_P (signal) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (signal, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_signal = StringValuePtr (signal); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_signal (weechat_ruby_plugin, ruby_current_script, c_signal, &weechat_ruby_api_hook_signal_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hook_signal_send (VALUE class, VALUE signal, VALUE type_data, VALUE signal_data) { char *c_signal, *c_type_data, *c_signal_data; int number, rc; API_INIT_FUNC(1, "hook_signal_send", API_RETURN_INT(WEECHAT_RC_ERROR)); if (NIL_P (signal) || NIL_P (type_data) || NIL_P (signal_data)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_RC_ERROR)); Check_Type (signal, T_STRING); Check_Type (type_data, T_STRING); c_signal = StringValuePtr (signal); c_type_data = StringValuePtr (type_data); if (strcmp (c_type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0) { Check_Type (signal_data, T_STRING); c_signal_data = StringValuePtr (signal_data); rc = weechat_hook_signal_send (c_signal, c_type_data, c_signal_data); API_RETURN_INT(rc); } else if (strcmp (c_type_data, WEECHAT_HOOK_SIGNAL_INT) == 0) { CHECK_INTEGER(signal_data); number = NUM2INT (signal_data); rc = weechat_hook_signal_send (c_signal, c_type_data, &number); API_RETURN_INT(rc); } else if (strcmp (c_type_data, WEECHAT_HOOK_SIGNAL_POINTER) == 0) { Check_Type (signal_data, T_STRING); c_signal_data = StringValuePtr (signal_data); rc = weechat_hook_signal_send (c_signal, c_type_data, API_STR2PTR(c_signal_data)); API_RETURN_INT(rc); } API_RETURN_INT(WEECHAT_RC_ERROR); } int weechat_ruby_api_hook_hsignal_cb (const void *pointer, void *data, const char *signal, struct t_hashtable *hashtable) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (signal) ? (char *)signal : empty_arg; func_argv[2] = hashtable; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ssh", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_hsignal (VALUE class, VALUE signal, VALUE function, VALUE data) { char *c_signal, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_hsignal", API_RETURN_EMPTY); if (NIL_P (signal) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (signal, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_signal = StringValuePtr (signal); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_hsignal (weechat_ruby_plugin, ruby_current_script, c_signal, &weechat_ruby_api_hook_hsignal_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hook_hsignal_send (VALUE class, VALUE signal, VALUE hashtable) { char *c_signal; struct t_hashtable *c_hashtable; int rc; API_INIT_FUNC(1, "hook_hsignal_send", API_RETURN_INT(WEECHAT_RC_ERROR)); if (NIL_P (signal) || NIL_P (hashtable)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_RC_ERROR)); Check_Type (signal, T_STRING); Check_Type (hashtable, T_HASH); c_signal = StringValuePtr (signal); c_hashtable = weechat_ruby_hash_to_hashtable (hashtable, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); rc = weechat_hook_hsignal_send (c_signal, c_hashtable); if (c_hashtable) weechat_hashtable_free (c_hashtable); API_RETURN_INT(rc); } int weechat_ruby_api_hook_config_cb (const void *pointer, void *data, const char *option, const char *value) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (option) ? (char *)option : empty_arg; func_argv[2] = (value) ? (char *)value : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_hook_config (VALUE class, VALUE option, VALUE function, VALUE data) { char *c_option, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_config", API_RETURN_EMPTY); if (NIL_P (option) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (option, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_option = StringValuePtr (option); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_config (weechat_ruby_plugin, ruby_current_script, c_option, &weechat_ruby_api_hook_config_cb, c_function, c_data)); API_RETURN_STRING(result); } char * weechat_ruby_api_hook_modifier_cb (const void *pointer, void *data, const char *modifier, const char *modifier_data, const char *string) { struct t_plugin_script *script; void *func_argv[4]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_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_ruby_exec (script, WEECHAT_SCRIPT_EXEC_STRING, ptr_function, "ssss", func_argv); } return NULL; } static VALUE weechat_ruby_api_hook_modifier (VALUE class, VALUE modifier, VALUE function, VALUE data) { char *c_modifier, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_modifier", API_RETURN_EMPTY); if (NIL_P (modifier) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (modifier, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_modifier = StringValuePtr (modifier); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_modifier (weechat_ruby_plugin, ruby_current_script, c_modifier, &weechat_ruby_api_hook_modifier_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hook_modifier_exec (VALUE class, VALUE modifier, VALUE modifier_data, VALUE string) { char *c_modifier, *c_modifier_data, *c_string, *result; VALUE return_value; API_INIT_FUNC(1, "hook_modifier_exec", API_RETURN_EMPTY); if (NIL_P (modifier) || NIL_P (modifier_data) || NIL_P (string)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (modifier, T_STRING); Check_Type (modifier_data, T_STRING); Check_Type (string, T_STRING); c_modifier = StringValuePtr (modifier); c_modifier_data = StringValuePtr (modifier_data); c_string = StringValuePtr (string); result = weechat_hook_modifier_exec (c_modifier, c_modifier_data, c_string); API_RETURN_STRING_FREE(result); } char * weechat_ruby_api_hook_info_cb (const void *pointer, void *data, const char *info_name, const char *arguments) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (info_name) ? (char *)info_name : empty_arg; func_argv[2] = (arguments) ? (char *)arguments : empty_arg; return (char *)weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_STRING, ptr_function, "sss", func_argv); } return NULL; } static VALUE weechat_ruby_api_hook_info (VALUE class, VALUE info_name, VALUE description, VALUE args_description, VALUE function, VALUE data) { char *c_info_name, *c_description, *c_args_description, *c_function; char *c_data; const char *result; API_INIT_FUNC(1, "hook_info", API_RETURN_EMPTY); if (NIL_P (info_name) || NIL_P (description) || NIL_P (args_description) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (info_name, T_STRING); Check_Type (description, T_STRING); Check_Type (args_description, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_info_name = StringValuePtr (info_name); c_description = StringValuePtr (description); c_args_description = StringValuePtr (args_description); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_info (weechat_ruby_plugin, ruby_current_script, c_info_name, c_description, c_args_description, &weechat_ruby_api_hook_info_cb, c_function, c_data)); API_RETURN_STRING(result); } struct t_hashtable * weechat_ruby_api_hook_info_hashtable_cb (const void *pointer, void *data, const char *info_name, struct t_hashtable *hashtable) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (info_name) ? (char *)info_name : empty_arg; func_argv[2] = hashtable; return (struct t_hashtable *)weechat_ruby_exec ( script, WEECHAT_SCRIPT_EXEC_HASHTABLE, ptr_function, "ssh", func_argv); } return NULL; } static VALUE weechat_ruby_api_hook_info_hashtable (VALUE class, VALUE info_name, VALUE description, VALUE args_description, VALUE output_description, VALUE function, VALUE data) { char *c_info_name, *c_description, *c_args_description; char *c_output_description, *c_function; char *c_data; const char *result; API_INIT_FUNC(1, "hook_info_hashtable", API_RETURN_EMPTY); if (NIL_P (info_name) || NIL_P (description) || NIL_P (args_description) || NIL_P (output_description) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (info_name, T_STRING); Check_Type (description, T_STRING); Check_Type (args_description, T_STRING); Check_Type (output_description, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_info_name = StringValuePtr (info_name); c_description = StringValuePtr (description); c_args_description = StringValuePtr (args_description); c_output_description = StringValuePtr (output_description); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_info_hashtable (weechat_ruby_plugin, ruby_current_script, c_info_name, c_description, c_args_description, c_output_description, &weechat_ruby_api_hook_info_hashtable_cb, c_function, c_data)); API_RETURN_STRING(result); } struct t_infolist * weechat_ruby_api_hook_infolist_cb (const void *pointer, void *data, const char *infolist_name, void *obj_pointer, const char *arguments) { struct t_plugin_script *script; void *func_argv[4]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; struct t_infolist *result; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (infolist_name) ? (char *)infolist_name : empty_arg; func_argv[2] = (char *)API_PTR2STR(obj_pointer); func_argv[3] = (arguments) ? (char *)arguments : empty_arg; result = (struct t_infolist *)weechat_ruby_exec ( script, WEECHAT_SCRIPT_EXEC_POINTER, ptr_function, "ssss", func_argv); return result; } return NULL; } static VALUE weechat_ruby_api_hook_infolist (VALUE class, VALUE infolist_name, VALUE description, VALUE pointer_description, VALUE args_description, VALUE function, VALUE data) { char *c_infolist_name, *c_description, *c_pointer_description; char *c_args_description, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_infolist", API_RETURN_EMPTY); if (NIL_P (infolist_name) || NIL_P (description) || NIL_P (pointer_description) || NIL_P (args_description) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (infolist_name, T_STRING); Check_Type (description, T_STRING); Check_Type (pointer_description, T_STRING); Check_Type (args_description, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_infolist_name = StringValuePtr (infolist_name); c_description = StringValuePtr (description); c_pointer_description = StringValuePtr (pointer_description); c_args_description = StringValuePtr (args_description); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_infolist (weechat_ruby_plugin, ruby_current_script, c_infolist_name, c_description, c_pointer_description, c_args_description, &weechat_ruby_api_hook_infolist_cb, c_function, c_data)); API_RETURN_STRING(result); } struct t_hashtable * weechat_ruby_api_hook_focus_cb (const void *pointer, void *data, struct t_hashtable *info) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = info; return (struct t_hashtable *)weechat_ruby_exec ( script, WEECHAT_SCRIPT_EXEC_HASHTABLE, ptr_function, "sh", func_argv); } return NULL; } static VALUE weechat_ruby_api_hook_focus (VALUE class, VALUE area, VALUE function, VALUE data) { char *c_area, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "hook_focus", API_RETURN_EMPTY); if (NIL_P (area) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (area, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_area = StringValuePtr (area); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_hook_focus (weechat_ruby_plugin, ruby_current_script, c_area, &weechat_ruby_api_hook_focus_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hook_set (VALUE class, VALUE hook, VALUE property, VALUE value) { char *c_hook, *c_property, *c_value; API_INIT_FUNC(1, "hook_set", API_RETURN_ERROR); if (NIL_P (hook) || NIL_P (property) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (hook, T_STRING); Check_Type (property, T_STRING); Check_Type (value, T_STRING); c_hook = StringValuePtr (hook); c_property = StringValuePtr (property); c_value = StringValuePtr (value); weechat_hook_set (API_STR2PTR(c_hook), c_property, c_value); API_RETURN_OK; } static VALUE weechat_ruby_api_unhook (VALUE class, VALUE hook) { char *c_hook; API_INIT_FUNC(1, "unhook", API_RETURN_ERROR); if (NIL_P (hook)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (hook, T_STRING); c_hook = StringValuePtr (hook); weechat_unhook (API_STR2PTR(c_hook)); API_RETURN_OK; } static VALUE weechat_ruby_api_unhook_all (VALUE class) { API_INIT_FUNC(1, "unhook_all", API_RETURN_ERROR); weechat_unhook_all (ruby_current_script->name); API_RETURN_OK; } int weechat_ruby_api_buffer_input_data_cb (const void *pointer, void *data, struct t_gui_buffer *buffer, const char *input_data) { struct t_plugin_script *script; void *func_argv[3]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(buffer); func_argv[2] = (input_data) ? (char *)input_data : empty_arg; rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "sss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } int weechat_ruby_api_buffer_close_cb (const void *pointer, void *data, struct t_gui_buffer *buffer) { struct t_plugin_script *script; void *func_argv[2]; char empty_arg[1] = { '\0' }; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(buffer); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_buffer_new (VALUE class, VALUE name, VALUE function_input, VALUE data_input, VALUE function_close, VALUE data_close) { char *c_name, *c_function_input, *c_data_input, *c_function_close; char *c_data_close; const char *result; API_INIT_FUNC(1, "buffer_new", API_RETURN_EMPTY); if (NIL_P (name) || NIL_P (function_input) || NIL_P (data_input) || NIL_P (function_close) || NIL_P (data_close)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); Check_Type (function_input, T_STRING); Check_Type (data_input, T_STRING); Check_Type (function_close, T_STRING); Check_Type (data_close, T_STRING); c_name = StringValuePtr (name); c_function_input = StringValuePtr (function_input); c_data_input = StringValuePtr (data_input); c_function_close = StringValuePtr (function_close); c_data_close = StringValuePtr (data_close); result = API_PTR2STR(plugin_script_api_buffer_new (weechat_ruby_plugin, ruby_current_script, c_name, &weechat_ruby_api_buffer_input_data_cb, c_function_input, c_data_input, &weechat_ruby_api_buffer_close_cb, c_function_close, c_data_close)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_buffer_search (VALUE class, VALUE plugin, VALUE name) { char *c_plugin, *c_name; const char *result; API_INIT_FUNC(1, "buffer_search", API_RETURN_EMPTY); if (NIL_P (plugin) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (plugin, T_STRING); Check_Type (name, T_STRING); c_plugin = StringValuePtr (plugin); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_buffer_search (c_plugin, c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_buffer_search_main (VALUE class) { const char *result; API_INIT_FUNC(1, "buffer_search_main", API_RETURN_EMPTY); result = API_PTR2STR(weechat_buffer_search_main ()); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_current_buffer (VALUE class) { const char *result; API_INIT_FUNC(1, "current_buffer", API_RETURN_EMPTY); result = API_PTR2STR(weechat_current_buffer ()); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_buffer_clear (VALUE class, VALUE buffer) { char *c_buffer; API_INIT_FUNC(1, "buffer_clear", API_RETURN_ERROR); if (NIL_P (buffer)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); c_buffer = StringValuePtr (buffer); weechat_buffer_clear (API_STR2PTR(c_buffer)); API_RETURN_OK; } static VALUE weechat_ruby_api_buffer_close (VALUE class, VALUE buffer) { char *c_buffer; API_INIT_FUNC(1, "buffer_close", API_RETURN_ERROR); if (NIL_P (buffer)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); c_buffer = StringValuePtr (buffer); weechat_buffer_close (API_STR2PTR(c_buffer)); API_RETURN_OK; } static VALUE weechat_ruby_api_buffer_merge (VALUE class, VALUE buffer, VALUE target_buffer) { char *c_buffer, *c_target_buffer; API_INIT_FUNC(1, "buffer_merge", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (target_buffer)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (target_buffer, T_STRING); c_buffer = StringValuePtr (buffer); c_target_buffer = StringValuePtr (target_buffer); weechat_buffer_merge (API_STR2PTR(c_buffer), API_STR2PTR(c_target_buffer)); API_RETURN_OK; } static VALUE weechat_ruby_api_buffer_unmerge (VALUE class, VALUE buffer, VALUE number) { char *c_buffer; int c_number; API_INIT_FUNC(1, "buffer_unmerge", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (number)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); CHECK_INTEGER(number); c_buffer = StringValuePtr (buffer); c_number = NUM2INT (number); weechat_buffer_unmerge (API_STR2PTR(c_buffer), c_number); API_RETURN_OK; } static VALUE weechat_ruby_api_buffer_get_integer (VALUE class, VALUE buffer, VALUE property) { char *c_buffer, *c_property; int value; API_INIT_FUNC(1, "buffer_get_integer", API_RETURN_INT(-1)); if (NIL_P (buffer) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (buffer, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_property = StringValuePtr (property); value = weechat_buffer_get_integer (API_STR2PTR(c_buffer), c_property); API_RETURN_INT(value); } static VALUE weechat_ruby_api_buffer_get_string (VALUE class, VALUE buffer, VALUE property) { char *c_buffer, *c_property; const char *result; API_INIT_FUNC(1, "buffer_get_string", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_property = StringValuePtr (property); result = weechat_buffer_get_string (API_STR2PTR(c_buffer), c_property); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_buffer_get_pointer (VALUE class, VALUE buffer, VALUE property) { char *c_buffer, *c_property; const char *result; API_INIT_FUNC(1, "buffer_get_pointer", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_property = StringValuePtr (property); result = API_PTR2STR(weechat_buffer_get_pointer (API_STR2PTR(c_buffer), c_property)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_buffer_set (VALUE class, VALUE buffer, VALUE property, VALUE value) { char *c_buffer, *c_property, *c_value; API_INIT_FUNC(1, "buffer_set", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (property) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (property, T_STRING); Check_Type (value, T_STRING); c_buffer = StringValuePtr (buffer); c_property = StringValuePtr (property); c_value = StringValuePtr (value); weechat_buffer_set (API_STR2PTR(c_buffer), c_property, c_value); API_RETURN_OK; } static VALUE weechat_ruby_api_buffer_string_replace_local_var (VALUE class, VALUE buffer, VALUE string) { char *c_buffer, *c_string, *result; VALUE return_value; API_INIT_FUNC(1, "buffer_string_replace_local_var", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (string)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (string, T_STRING); c_buffer = StringValuePtr (buffer); c_string = StringValuePtr (string); result = weechat_buffer_string_replace_local_var (API_STR2PTR(c_buffer), c_string); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_buffer_match_list (VALUE class, VALUE buffer, VALUE string) { char *c_buffer, *c_string; int value; API_INIT_FUNC(1, "buffer_match_list", API_RETURN_INT(0)); if (NIL_P (buffer) || NIL_P (string)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (buffer, T_STRING); Check_Type (string, T_STRING); c_buffer = StringValuePtr (buffer); c_string = StringValuePtr (string); value = weechat_buffer_match_list (API_STR2PTR(c_buffer), c_string); API_RETURN_INT(value); } static VALUE weechat_ruby_api_current_window (VALUE class) { const char *result; API_INIT_FUNC(1, "current_window", API_RETURN_EMPTY); result = API_PTR2STR(weechat_current_window ()); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_window_search_with_buffer (VALUE class, VALUE buffer) { char *c_buffer; const char *result; API_INIT_FUNC(1, "window_search_with_buffer", API_RETURN_EMPTY); if (NIL_P (buffer)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); c_buffer = StringValuePtr (buffer); result = API_PTR2STR(weechat_window_search_with_buffer (API_STR2PTR(c_buffer))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_window_get_integer (VALUE class, VALUE window, VALUE property) { char *c_window, *c_property; int value; API_INIT_FUNC(1, "window_get_integer", API_RETURN_INT(-1)); if (NIL_P (window) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (window, T_STRING); Check_Type (property, T_STRING); c_window = StringValuePtr (window); c_property = StringValuePtr (property); value = weechat_window_get_integer (API_STR2PTR(c_window), c_property); API_RETURN_INT(value); } static VALUE weechat_ruby_api_window_get_string (VALUE class, VALUE window, VALUE property) { char *c_window, *c_property; const char *result; API_INIT_FUNC(1, "window_get_string", API_RETURN_EMPTY); if (NIL_P (window) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (window, T_STRING); Check_Type (property, T_STRING); c_window = StringValuePtr (window); c_property = StringValuePtr (property); result = weechat_window_get_string (API_STR2PTR(c_window), c_property); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_window_get_pointer (VALUE class, VALUE window, VALUE property) { char *c_window, *c_property; const char *result; API_INIT_FUNC(1, "window_get_pointer", API_RETURN_EMPTY); if (NIL_P (window) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (window, T_STRING); Check_Type (property, T_STRING); c_window = StringValuePtr (window); c_property = StringValuePtr (property); result = API_PTR2STR(weechat_window_get_pointer (API_STR2PTR(c_window), c_property)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_window_set_title (VALUE class, VALUE title) { char *c_title; API_INIT_FUNC(1, "window_set_title", API_RETURN_ERROR); if (NIL_P (title)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (title, T_STRING); c_title = StringValuePtr (title); weechat_window_set_title (c_title); API_RETURN_OK; } static VALUE weechat_ruby_api_nicklist_add_group (VALUE class, VALUE buffer, VALUE parent_group, VALUE name, VALUE color, VALUE visible) { char *c_buffer, *c_parent_group, *c_name, *c_color; const char *result; int c_visible; API_INIT_FUNC(1, "nicklist_add_group", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (parent_group) || NIL_P (name) || NIL_P (color) || NIL_P (visible)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (parent_group, T_STRING); Check_Type (name, T_STRING); Check_Type (color, T_STRING); CHECK_INTEGER(visible); c_buffer = StringValuePtr (buffer); c_parent_group = StringValuePtr (parent_group); c_name = StringValuePtr (name); c_color = StringValuePtr (color); c_visible = NUM2INT (visible); result = API_PTR2STR(weechat_nicklist_add_group (API_STR2PTR(c_buffer), API_STR2PTR(c_parent_group), c_name, c_color, c_visible)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_search_group (VALUE class, VALUE buffer, VALUE from_group, VALUE name) { char *c_buffer, *c_from_group, *c_name; const char *result; API_INIT_FUNC(1, "nicklist_search_group", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (from_group) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (from_group, T_STRING); Check_Type (name, T_STRING); c_buffer = StringValuePtr (buffer); c_from_group = StringValuePtr (from_group); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_nicklist_search_group (API_STR2PTR(c_buffer), API_STR2PTR(c_from_group), c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_add_nick (VALUE class, VALUE buffer, VALUE group, VALUE name, VALUE color, VALUE prefix, VALUE prefix_color, VALUE visible) { char *c_buffer, *c_group, *c_name, *c_color, *c_prefix, *c_prefix_color; const char *result; int c_visible; API_INIT_FUNC(1, "nicklist_add_nick", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (group) || NIL_P (name) || NIL_P (color) || NIL_P (prefix) || NIL_P (prefix_color) || NIL_P (visible)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (group, T_STRING); Check_Type (name, T_STRING); Check_Type (color, T_STRING); Check_Type (prefix, T_STRING); Check_Type (prefix_color, T_STRING); CHECK_INTEGER(visible); c_buffer = StringValuePtr (buffer); c_group = StringValuePtr (group); c_name = StringValuePtr (name); c_color = StringValuePtr (color); c_prefix = StringValuePtr (prefix); c_prefix_color = StringValuePtr (prefix_color); c_visible = NUM2INT (visible); result = API_PTR2STR(weechat_nicklist_add_nick (API_STR2PTR(c_buffer), API_STR2PTR(c_group), c_name, c_color, c_prefix, c_prefix_color, c_visible)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_search_nick (VALUE class, VALUE buffer, VALUE from_group, VALUE name) { char *c_buffer, *c_from_group, *c_name; const char *result; API_INIT_FUNC(1, "nicklist_search_nick", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (from_group) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (from_group, T_STRING); Check_Type (name, T_STRING); c_buffer = StringValuePtr (buffer); c_from_group = StringValuePtr (from_group); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_nicklist_search_nick (API_STR2PTR(c_buffer), API_STR2PTR(c_from_group), c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_remove_group (VALUE class, VALUE buffer, VALUE group) { char *c_buffer, *c_group; API_INIT_FUNC(1, "nicklist_remove_group", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (group)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (group, T_STRING); c_buffer = StringValuePtr (buffer); c_group = StringValuePtr (group); weechat_nicklist_remove_group (API_STR2PTR(c_buffer), API_STR2PTR(c_group)); API_RETURN_OK; } static VALUE weechat_ruby_api_nicklist_remove_nick (VALUE class, VALUE buffer, VALUE nick) { char *c_buffer, *c_nick; API_INIT_FUNC(1, "nicklist_remove_nick", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (nick)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (nick, T_STRING); c_buffer = StringValuePtr (buffer); c_nick = StringValuePtr (nick); weechat_nicklist_remove_nick (API_STR2PTR(c_buffer), API_STR2PTR(c_nick)); API_RETURN_OK; } static VALUE weechat_ruby_api_nicklist_remove_all (VALUE class, VALUE buffer) { char *c_buffer; API_INIT_FUNC(1, "nicklist_remove_all", API_RETURN_ERROR); if (NIL_P (buffer)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); c_buffer = StringValuePtr (buffer); weechat_nicklist_remove_all (API_STR2PTR(c_buffer)); API_RETURN_OK; } static VALUE weechat_ruby_api_nicklist_group_get_integer (VALUE class, VALUE buffer, VALUE group, VALUE property) { char *c_buffer, *c_group, *c_property; int value; API_INIT_FUNC(1, "nicklist_group_get_integer", API_RETURN_INT(-1)); if (NIL_P (buffer) || NIL_P (group) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (buffer, T_STRING); Check_Type (group, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_group = StringValuePtr (group); c_property = StringValuePtr (property); value = weechat_nicklist_group_get_integer (API_STR2PTR(c_buffer), API_STR2PTR(c_group), c_property); API_RETURN_INT(value); } static VALUE weechat_ruby_api_nicklist_group_get_string (VALUE class, VALUE buffer, VALUE group, VALUE property) { char *c_buffer, *c_group, *c_property; const char *result; API_INIT_FUNC(1, "nicklist_group_get_string", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (group) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (group, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_group = StringValuePtr (group); c_property = StringValuePtr (property); result = weechat_nicklist_group_get_string (API_STR2PTR(c_buffer), API_STR2PTR(c_group), c_property); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_group_get_pointer (VALUE class, VALUE buffer, VALUE group, VALUE property) { char *c_buffer, *c_group, *c_property; const char *result; API_INIT_FUNC(1, "nicklist_group_get_pointer", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (group) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (group, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_group = StringValuePtr (group); c_property = StringValuePtr (property); result = API_PTR2STR(weechat_nicklist_group_get_pointer (API_STR2PTR(c_buffer), API_STR2PTR(c_group), c_property)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_group_set (VALUE class, VALUE buffer, VALUE group, VALUE property, VALUE value) { char *c_buffer, *c_group, *c_property, *c_value; API_INIT_FUNC(1, "nicklist_group_set", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (group) || NIL_P (property) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (group, T_STRING); Check_Type (property, T_STRING); Check_Type (value, T_STRING); c_buffer = StringValuePtr (buffer); c_group = StringValuePtr (group); c_property = StringValuePtr (property); c_value = StringValuePtr (value); weechat_nicklist_group_set (API_STR2PTR(c_buffer), API_STR2PTR(c_group), c_property, c_value); API_RETURN_OK; } static VALUE weechat_ruby_api_nicklist_nick_get_integer (VALUE class, VALUE buffer, VALUE nick, VALUE property) { char *c_buffer, *c_nick, *c_property; int value; API_INIT_FUNC(1, "nicklist_nick_get_integer", API_RETURN_INT(-1)); if (NIL_P (buffer) || NIL_P (nick) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (buffer, T_STRING); Check_Type (nick, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_nick = StringValuePtr (nick); c_property = StringValuePtr (property); value = weechat_nicklist_nick_get_integer (API_STR2PTR(c_buffer), API_STR2PTR(c_nick), c_property); API_RETURN_INT(value); } static VALUE weechat_ruby_api_nicklist_nick_get_string (VALUE class, VALUE buffer, VALUE nick, VALUE property) { char *c_buffer, *c_nick, *c_property; const char *result; API_INIT_FUNC(1, "nicklist_nick_get_string", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (nick) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (nick, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_nick = StringValuePtr (nick); c_property = StringValuePtr (property); result = weechat_nicklist_nick_get_string (API_STR2PTR(c_buffer), API_STR2PTR(c_nick), c_property); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_nick_get_pointer (VALUE class, VALUE buffer, VALUE nick, VALUE property) { char *c_buffer, *c_nick, *c_property; const char *result; API_INIT_FUNC(1, "nicklist_nick_get_pointer", API_RETURN_EMPTY); if (NIL_P (buffer) || NIL_P (nick) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); Check_Type (nick, T_STRING); Check_Type (property, T_STRING); c_buffer = StringValuePtr (buffer); c_nick = StringValuePtr (nick); c_property = StringValuePtr (property); result = API_PTR2STR(weechat_nicklist_nick_get_pointer (API_STR2PTR(c_buffer), API_STR2PTR(c_nick), c_property)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_nicklist_nick_set (VALUE class, VALUE buffer, VALUE nick, VALUE property, VALUE value) { char *c_buffer, *c_nick, *c_property, *c_value; API_INIT_FUNC(1, "nicklist_nick_set", API_RETURN_ERROR); if (NIL_P (buffer) || NIL_P (nick) || NIL_P (property) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (buffer, T_STRING); Check_Type (nick, T_STRING); Check_Type (property, T_STRING); Check_Type (value, T_STRING); c_buffer = StringValuePtr (buffer); c_nick = StringValuePtr (nick); c_property = StringValuePtr (property); c_value = StringValuePtr (value); weechat_nicklist_nick_set (API_STR2PTR(c_buffer), API_STR2PTR(c_nick), c_property, c_value); API_RETURN_OK; } static VALUE weechat_ruby_api_bar_item_search (VALUE class, VALUE name) { char *c_name; const char *result; API_INIT_FUNC(1, "bar_item_search", API_RETURN_EMPTY); if (NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_bar_item_search (c_name)); API_RETURN_STRING(result); } char * weechat_ruby_api_bar_item_build_cb (const void *pointer, void *data, struct t_gui_bar_item *item, struct t_gui_window *window, struct t_gui_buffer *buffer, struct t_hashtable *extra_info) { struct t_plugin_script *script; void *func_argv[5]; char empty_arg[1] = { '\0' }, *ret; const char *ptr_function, *ptr_data; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { if (strncmp (ptr_function, "(extra)", 7) == 0) { /* new callback: data, item, window, buffer, extra_info */ func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(item); func_argv[2] = (char *)API_PTR2STR(window); func_argv[3] = (char *)API_PTR2STR(buffer); func_argv[4] = extra_info; ret = (char *)weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_STRING, ptr_function + 7, "ssssh", func_argv); } else { /* old callback: data, item, window */ func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(item); func_argv[2] = (char *)API_PTR2STR(window); ret = (char *)weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_STRING, ptr_function, "sss", func_argv); } return ret; } return NULL; } static VALUE weechat_ruby_api_bar_item_new (VALUE class, VALUE name, VALUE function, VALUE data) { char *c_name, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "bar_item_new", API_RETURN_EMPTY); if (NIL_P (name) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_name = StringValuePtr (name); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR(plugin_script_api_bar_item_new (weechat_ruby_plugin, ruby_current_script, c_name, &weechat_ruby_api_bar_item_build_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_bar_item_update (VALUE class, VALUE name) { char *c_name; API_INIT_FUNC(1, "bar_item_update", API_RETURN_ERROR); if (NIL_P (name)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (name, T_STRING); c_name = StringValuePtr (name); weechat_bar_item_update (c_name); API_RETURN_OK; } static VALUE weechat_ruby_api_bar_item_remove (VALUE class, VALUE item) { char *c_item; API_INIT_FUNC(1, "bar_item_remove", API_RETURN_ERROR); if (NIL_P (item)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (item, T_STRING); c_item = StringValuePtr (item); weechat_bar_item_remove (API_STR2PTR(c_item)); API_RETURN_OK; } static VALUE weechat_ruby_api_bar_search (VALUE class, VALUE name) { char *c_name; const char *result; API_INIT_FUNC(1, "bar_search", API_RETURN_EMPTY); if (NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_bar_search (c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_bar_new (VALUE class, VALUE name, VALUE hidden, VALUE priority, VALUE type, VALUE conditions, VALUE position, VALUE filling_top_bottom, VALUE filling_left_right, VALUE size, VALUE size_max, VALUE colors, VALUE separator, VALUE items) { char *c_name, *c_hidden, *c_priority, *c_type, *c_conditions, *c_position; char *c_filling_top_bottom, *c_filling_left_right, *c_size, *c_size_max; char *c_color_fg, *c_color_delim, *c_color_bg, *c_color_bg_inactive; char *c_separator, *c_items; const char *result; VALUE color_fg, color_delim, color_bg, color_bg_inactive; API_INIT_FUNC(1, "bar_new", API_RETURN_EMPTY); if (NIL_P (name) || NIL_P (hidden) || NIL_P (priority) || NIL_P (type) || NIL_P (conditions) || NIL_P (position) || NIL_P (filling_top_bottom) || NIL_P (filling_left_right) || NIL_P (size) || NIL_P (size_max) || NIL_P (colors) || NIL_P (separator) || NIL_P (items)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); Check_Type (hidden, T_STRING); Check_Type (priority, T_STRING); Check_Type (type, T_STRING); Check_Type (conditions, T_STRING); Check_Type (position, T_STRING); Check_Type (filling_top_bottom, T_STRING); Check_Type (filling_left_right, T_STRING); Check_Type (size, T_STRING); Check_Type (size_max, T_STRING); Check_Type (colors, T_ARRAY); Check_Type (separator, T_STRING); Check_Type (items, T_STRING); /* * due to a Ruby limitation (15 arguments max by function), we receive the * colors in an array of 4 strings (fg, delim, bg, bg_inactive) */ if (RARRAY_LEN(colors) != 4) API_WRONG_ARGS(API_RETURN_EMPTY); color_fg = rb_ary_entry (colors, 0); color_delim = rb_ary_entry (colors, 1); color_bg = rb_ary_entry (colors, 2); color_bg_inactive = rb_ary_entry (colors, 3); c_name = StringValuePtr (name); c_hidden = StringValuePtr (hidden); c_priority = StringValuePtr (priority); c_type = StringValuePtr (type); c_conditions = StringValuePtr (conditions); c_position = StringValuePtr (position); c_filling_top_bottom = StringValuePtr (filling_top_bottom); c_filling_left_right = StringValuePtr (filling_left_right); c_size = StringValuePtr (size); c_size_max = StringValuePtr (size_max); c_color_fg = StringValuePtr (color_fg); c_color_delim = StringValuePtr (color_delim); c_color_bg = StringValuePtr (color_bg); c_color_bg_inactive = StringValuePtr (color_bg_inactive); c_separator = StringValuePtr (separator); c_items = StringValuePtr (items); result = API_PTR2STR(weechat_bar_new (c_name, c_hidden, c_priority, c_type, c_conditions, c_position, c_filling_top_bottom, c_filling_left_right, c_size, c_size_max, c_color_fg, c_color_delim, c_color_bg, c_color_bg_inactive, c_separator, c_items)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_bar_set (VALUE class, VALUE bar, VALUE property, VALUE value) { char *c_bar, *c_property, *c_value; int rc; API_INIT_FUNC(1, "bar_set", API_RETURN_INT(0)); if (NIL_P (bar) || NIL_P (property) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (bar, T_STRING); Check_Type (property, T_STRING); Check_Type (value, T_STRING); c_bar = StringValuePtr (bar); c_property = StringValuePtr (property); c_value = StringValuePtr (value); rc = weechat_bar_set (API_STR2PTR(c_bar), c_property, c_value); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_bar_update (VALUE class, VALUE name) { char *c_name; API_INIT_FUNC(1, "bar_update", API_RETURN_ERROR); if (NIL_P (name)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (name, T_STRING); c_name = StringValuePtr (name); weechat_bar_update (c_name); API_RETURN_OK; } static VALUE weechat_ruby_api_bar_remove (VALUE class, VALUE bar) { char *c_bar; API_INIT_FUNC(1, "bar_remove", API_RETURN_ERROR); if (NIL_P (bar)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (bar, T_STRING); c_bar = StringValuePtr (bar); weechat_bar_remove (API_STR2PTR(c_bar)); API_RETURN_OK; } static VALUE weechat_ruby_api_command (VALUE class, VALUE buffer, VALUE command) { char *c_buffer, *c_command; int rc; API_INIT_FUNC(1, "command", API_RETURN_INT(WEECHAT_RC_ERROR)); if (NIL_P (buffer) || NIL_P (command)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_RC_ERROR)); Check_Type (buffer, T_STRING); Check_Type (command, T_STRING); c_buffer = StringValuePtr (buffer); c_command = StringValuePtr (command); rc = plugin_script_api_command (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_buffer), c_command); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_command_options (VALUE class, VALUE buffer, VALUE command, VALUE options) { char *c_buffer, *c_command; struct t_hashtable *c_options; int rc; API_INIT_FUNC(1, "command_options", API_RETURN_INT(WEECHAT_RC_ERROR)); if (NIL_P (buffer) || NIL_P (command) || NIL_P (options)) API_WRONG_ARGS(API_RETURN_INT(WEECHAT_RC_ERROR)); Check_Type (buffer, T_STRING); Check_Type (command, T_STRING); Check_Type (options, T_HASH); c_buffer = StringValuePtr (buffer); c_command = StringValuePtr (command); c_options = weechat_ruby_hash_to_hashtable (options, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); rc = plugin_script_api_command_options (weechat_ruby_plugin, ruby_current_script, API_STR2PTR(c_buffer), c_command, c_options); if (c_options) weechat_hashtable_free (c_options); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_completion_new (VALUE class, VALUE buffer) { char *c_buffer; const char *result; API_INIT_FUNC(1, "completion_new", API_RETURN_EMPTY); if (NIL_P (buffer)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (buffer, T_STRING); c_buffer = StringValuePtr (buffer); result = API_PTR2STR(weechat_completion_new (API_STR2PTR(c_buffer))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_completion_search (VALUE class, VALUE completion, VALUE data, VALUE position, VALUE direction) { char *c_completion, *c_data; int c_position, c_direction, rc; API_INIT_FUNC(1, "completion_search", API_RETURN_INT(0)); if (NIL_P (completion) || NIL_P (data) || NIL_P(position) || NIL_P(direction)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (completion, T_STRING); Check_Type (data, T_STRING); CHECK_INTEGER(position); CHECK_INTEGER(direction); c_completion = StringValuePtr (completion); c_data = StringValuePtr (data); c_position = NUM2INT (position); c_direction = NUM2INT (direction); rc = weechat_completion_search (API_STR2PTR(c_completion), c_data, c_position, c_direction); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_completion_get_string (VALUE class, VALUE completion, VALUE property) { char *c_completion, *c_property; const char *result; API_INIT_FUNC(1, "completion_get_string", API_RETURN_EMPTY); if (NIL_P (completion) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (completion, T_STRING); Check_Type (property, T_STRING); c_completion = StringValuePtr (completion); c_property = StringValuePtr (property); result = weechat_completion_get_string (API_STR2PTR(c_completion), c_property); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_completion_list_add (VALUE class, VALUE completion, VALUE word, VALUE nick_completion, VALUE where) { char *c_completion, *c_word, *c_where; int c_nick_completion; API_INIT_FUNC(1, "completion_list_add", API_RETURN_ERROR); if (NIL_P (completion) || NIL_P (word) || NIL_P (nick_completion) || NIL_P (where)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (completion, T_STRING); Check_Type (word, T_STRING); CHECK_INTEGER(nick_completion); Check_Type (where, T_STRING); c_completion = StringValuePtr (completion); c_word = StringValuePtr (word); c_nick_completion = NUM2INT (nick_completion); c_where = StringValuePtr (where); weechat_completion_list_add (API_STR2PTR(c_completion), c_word, c_nick_completion, c_where); API_RETURN_OK; } static VALUE weechat_ruby_api_completion_free (VALUE class, VALUE completion) { char *c_completion; API_INIT_FUNC(1, "completion_free", API_RETURN_ERROR); if (NIL_P (completion)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (completion, T_STRING); c_completion = StringValuePtr (completion); weechat_completion_free (API_STR2PTR(c_completion)); API_RETURN_OK; } static VALUE weechat_ruby_api_info_get (VALUE class, VALUE info_name, VALUE arguments) { char *c_info_name, *c_arguments, *result; VALUE return_value; API_INIT_FUNC(1, "info_get", API_RETURN_EMPTY); if (NIL_P (info_name) || NIL_P (arguments)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (info_name, T_STRING); Check_Type (arguments, T_STRING); c_info_name = StringValuePtr (info_name); c_arguments = StringValuePtr (arguments); result = weechat_info_get (c_info_name, c_arguments); API_RETURN_STRING_FREE(result); } static VALUE weechat_ruby_api_info_get_hashtable (VALUE class, VALUE info_name, VALUE hash) { char *c_info_name; struct t_hashtable *c_hashtable, *result_hashtable; VALUE result_hash; API_INIT_FUNC(1, "info_get_hashtable", API_RETURN_EMPTY); if (NIL_P (info_name) || NIL_P (hash)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (info_name, T_STRING); Check_Type (hash, T_HASH); c_info_name = StringValuePtr (info_name); c_hashtable = weechat_ruby_hash_to_hashtable (hash, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); result_hashtable = weechat_info_get_hashtable (c_info_name, c_hashtable); result_hash = weechat_ruby_hashtable_to_hash (result_hashtable); if (c_hashtable) weechat_hashtable_free (c_hashtable); if (result_hashtable) weechat_hashtable_free (result_hashtable); return result_hash; } static VALUE weechat_ruby_api_infolist_new (VALUE class) { const char *result; API_INIT_FUNC(1, "infolist_new", API_RETURN_EMPTY); result = API_PTR2STR(weechat_infolist_new ()); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_new_item (VALUE class, VALUE infolist) { char *c_infolist; const char *result; API_INIT_FUNC(1, "infolist_new_item", API_RETURN_EMPTY); if (NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (infolist, T_STRING); c_infolist = StringValuePtr (infolist); result = API_PTR2STR(weechat_infolist_new_item (API_STR2PTR(c_infolist))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_new_var_integer (VALUE class, VALUE item, VALUE name, VALUE value) { char *c_item, *c_name; const char *result; int c_value; API_INIT_FUNC(1, "infolist_new_var_integer", API_RETURN_EMPTY); if (NIL_P (item) || NIL_P (name) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); Check_Type (name, T_STRING); CHECK_INTEGER(value); c_item = StringValuePtr (item); c_name = StringValuePtr (name); c_value = NUM2INT (value); result = API_PTR2STR(weechat_infolist_new_var_integer (API_STR2PTR(c_item), c_name, c_value)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_new_var_string (VALUE class, VALUE item, VALUE name, VALUE value) { char *c_item, *c_name, *c_value; const char *result; API_INIT_FUNC(1, "infolist_new_var_string", API_RETURN_EMPTY); if (NIL_P (item) || NIL_P (name) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); Check_Type (name, T_STRING); Check_Type (value, T_STRING); c_item = StringValuePtr (item); c_name = StringValuePtr (name); c_value = StringValuePtr (value); result = API_PTR2STR(weechat_infolist_new_var_string (API_STR2PTR(c_item), c_name, c_value)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_new_var_pointer (VALUE class, VALUE item, VALUE name, VALUE value) { char *c_item, *c_name, *c_value; const char *result; API_INIT_FUNC(1, "infolist_new_var_pointer", API_RETURN_EMPTY); if (NIL_P (item) || NIL_P (name) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); Check_Type (name, T_STRING); Check_Type (value, T_STRING); c_item = StringValuePtr (item); c_name = StringValuePtr (name); c_value = StringValuePtr (value); result = API_PTR2STR(weechat_infolist_new_var_pointer (API_STR2PTR(c_item), c_name, API_STR2PTR(c_value))); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_new_var_time (VALUE class, VALUE item, VALUE name, VALUE value) { char *c_item, *c_name; const char *result; time_t c_value; API_INIT_FUNC(1, "infolist_new_var_time", API_RETURN_EMPTY); if (NIL_P (item) || NIL_P (name) || NIL_P (value)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (item, T_STRING); Check_Type (name, T_STRING); CHECK_INTEGER(value); c_item = StringValuePtr (item); c_name = StringValuePtr (name); c_value = NUM2ULONG (value); result = API_PTR2STR(weechat_infolist_new_var_time (API_STR2PTR(c_item), c_name, c_value)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_search_var (VALUE class, VALUE infolist, VALUE name) { char *c_infolist, *c_name; const char *result; API_INIT_FUNC(1, "infolist_search_var", API_RETURN_EMPTY); if (NIL_P (infolist) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (infolist, T_STRING); Check_Type (name, T_STRING); c_infolist = StringValuePtr (infolist); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_infolist_search_var (API_STR2PTR(c_infolist), c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_get (VALUE class, VALUE name, VALUE pointer, VALUE arguments) { char *c_name, *c_pointer, *c_arguments; const char *result; API_INIT_FUNC(1, "infolist_get", API_RETURN_EMPTY); if (NIL_P (name) || NIL_P (pointer) || NIL_P (arguments)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); Check_Type (pointer, T_STRING); Check_Type (arguments, T_STRING); c_name = StringValuePtr (name); c_pointer = StringValuePtr (pointer); c_arguments = StringValuePtr (arguments); result = API_PTR2STR(weechat_infolist_get (c_name, API_STR2PTR(c_pointer), c_arguments)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_next (VALUE class, VALUE infolist) { char *c_infolist; int value; API_INIT_FUNC(1, "infolist_next", API_RETURN_INT(0)); if (NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (infolist, T_STRING); c_infolist = StringValuePtr (infolist); value = weechat_infolist_next (API_STR2PTR(c_infolist)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_infolist_prev (VALUE class, VALUE infolist) { char *c_infolist; int value; API_INIT_FUNC(1, "infolist_prev", API_RETURN_INT(0)); if (NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (infolist, T_STRING); c_infolist = StringValuePtr (infolist); value = weechat_infolist_prev (API_STR2PTR(c_infolist)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_infolist_reset_item_cursor (VALUE class, VALUE infolist) { char *c_infolist; API_INIT_FUNC(1, "infolist_reset_item_cursor", API_RETURN_ERROR); if (NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (infolist, T_STRING); c_infolist = StringValuePtr (infolist); weechat_infolist_reset_item_cursor (API_STR2PTR(c_infolist)); API_RETURN_OK; } static VALUE weechat_ruby_api_infolist_fields (VALUE class, VALUE infolist) { char *c_infolist; const char *result; API_INIT_FUNC(1, "infolist_fields", API_RETURN_EMPTY); if (NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (infolist, T_STRING); c_infolist = StringValuePtr (infolist); result = weechat_infolist_fields (API_STR2PTR(c_infolist)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_integer (VALUE class, VALUE infolist, VALUE variable) { char *c_infolist, *c_variable; int value; API_INIT_FUNC(1, "infolist_integer", API_RETURN_INT(0)); if (NIL_P (infolist) || NIL_P (variable)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (infolist, T_STRING); Check_Type (variable, T_STRING); c_infolist = StringValuePtr (infolist); c_variable = StringValuePtr (variable); value = weechat_infolist_integer (API_STR2PTR(c_infolist), c_variable); API_RETURN_INT(value); } static VALUE weechat_ruby_api_infolist_string (VALUE class, VALUE infolist, VALUE variable) { char *c_infolist, *c_variable; const char *result; API_INIT_FUNC(1, "infolist_string", API_RETURN_EMPTY); if (NIL_P (infolist) || NIL_P (variable)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (infolist, T_STRING); Check_Type (variable, T_STRING); c_infolist = StringValuePtr (infolist); c_variable = StringValuePtr (variable); result = weechat_infolist_string (API_STR2PTR(c_infolist), c_variable); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_pointer (VALUE class, VALUE infolist, VALUE variable) { char *c_infolist, *c_variable; const char *result; API_INIT_FUNC(1, "infolist_pointer", API_RETURN_EMPTY); if (NIL_P (infolist) || NIL_P (variable)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (infolist, T_STRING); Check_Type (variable, T_STRING); c_infolist = StringValuePtr (infolist); c_variable = StringValuePtr (variable); result = API_PTR2STR(weechat_infolist_pointer (API_STR2PTR(c_infolist), c_variable)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_infolist_time (VALUE class, VALUE infolist, VALUE variable) { char *c_infolist, *c_variable; time_t time; API_INIT_FUNC(1, "infolist_time", API_RETURN_LONG(0)); if (NIL_P (infolist) || NIL_P (variable)) API_WRONG_ARGS(API_RETURN_LONG(0)); Check_Type (infolist, T_STRING); Check_Type (variable, T_STRING); c_infolist = StringValuePtr (infolist); c_variable = StringValuePtr (variable); time = weechat_infolist_time (API_STR2PTR(c_infolist), c_variable); API_RETURN_LONG(time); } static VALUE weechat_ruby_api_infolist_free (VALUE class, VALUE infolist) { char *c_infolist; API_INIT_FUNC(1, "infolist_free", API_RETURN_ERROR); if (NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (infolist, T_STRING); c_infolist = StringValuePtr (infolist); weechat_infolist_free (API_STR2PTR(c_infolist)); API_RETURN_OK; } static VALUE weechat_ruby_api_hdata_get (VALUE class, VALUE name) { char *c_name; const char *result; API_INIT_FUNC(1, "hdata_get", API_RETURN_EMPTY); if (NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (name, T_STRING); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_hdata_get (c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_get_var_offset (VALUE class, VALUE hdata, VALUE name) { char *c_hdata, *c_name; int value; API_INIT_FUNC(1, "hdata_get_var_offset", API_RETURN_INT(0)); if (NIL_P (hdata) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (hdata, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_name = StringValuePtr (name); value = weechat_hdata_get_var_offset (API_STR2PTR(c_hdata), c_name); API_RETURN_INT(value); } static VALUE weechat_ruby_api_hdata_get_var_type_string (VALUE class, VALUE hdata, VALUE name) { char *c_hdata, *c_name; const char *result; API_INIT_FUNC(1, "hdata_get_var_type_string", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_name = StringValuePtr (name); result = weechat_hdata_get_var_type_string (API_STR2PTR(c_hdata), c_name); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_get_var_array_size (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; int value; API_INIT_FUNC(1, "hdata_get_var_array_size", API_RETURN_INT(-1)); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_INT(-1)); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); value = weechat_hdata_get_var_array_size (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_INT(value); } static VALUE weechat_ruby_api_hdata_get_var_array_size_string (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; const char *result; API_INIT_FUNC(1, "hdata_get_var_array_size_string", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); result = weechat_hdata_get_var_array_size_string (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_get_var_hdata (VALUE class, VALUE hdata, VALUE name) { char *c_hdata, *c_name; const char *result; API_INIT_FUNC(1, "hdata_get_var_hdata", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_name = StringValuePtr (name); result = weechat_hdata_get_var_hdata (API_STR2PTR(c_hdata), c_name); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_get_list (VALUE class, VALUE hdata, VALUE name) { char *c_hdata, *c_name; const char *result; API_INIT_FUNC(1, "hdata_get_list", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_hdata_get_list (API_STR2PTR(c_hdata), c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_check_pointer (VALUE class, VALUE hdata, VALUE list, VALUE pointer) { char *c_hdata, *c_list, *c_pointer; int value; API_INIT_FUNC(1, "hdata_check_pointer", API_RETURN_INT(0)); if (NIL_P (hdata) || NIL_P (list) || NIL_P (pointer)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (hdata, T_STRING); Check_Type (list, T_STRING); Check_Type (pointer, T_STRING); c_hdata = StringValuePtr (hdata); c_list = StringValuePtr (list); c_pointer = StringValuePtr (pointer); value = weechat_hdata_check_pointer (API_STR2PTR(c_hdata), API_STR2PTR(c_list), API_STR2PTR(c_pointer)); API_RETURN_INT(value); } static VALUE weechat_ruby_api_hdata_move (VALUE class, VALUE hdata, VALUE pointer, VALUE count) { char *c_hdata, *c_pointer; const char *result; int c_count; API_INIT_FUNC(1, "hdata_move", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (count)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); CHECK_INTEGER(count); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_count = NUM2INT (count); result = API_PTR2STR(weechat_hdata_move (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_count)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_search (VALUE class, VALUE hdata, VALUE pointer, VALUE search, VALUE move) { char *c_hdata, *c_pointer, *c_search; const char *result; int c_move; API_INIT_FUNC(1, "hdata_search", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (search) || NIL_P (move)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (search, T_STRING); CHECK_INTEGER(move); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_search = StringValuePtr (search); c_move = NUM2INT (move); result = API_PTR2STR(weechat_hdata_search (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_search, c_move)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_char (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; int value; API_INIT_FUNC(1, "hdata_char", API_RETURN_INT(0)); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); value = (int)weechat_hdata_char (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_INT(value); } static VALUE weechat_ruby_api_hdata_integer (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; int value; API_INIT_FUNC(1, "hdata_integer", API_RETURN_INT(0)); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); value = weechat_hdata_integer (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_INT(value); } static VALUE weechat_ruby_api_hdata_long (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; long value; API_INIT_FUNC(1, "hdata_long", API_RETURN_LONG(0)); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_LONG(0)); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); value = weechat_hdata_long (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_LONG(value); } static VALUE weechat_ruby_api_hdata_string (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; const char *result; API_INIT_FUNC(1, "hdata_string", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); result = weechat_hdata_string (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_pointer (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; const char *result; API_INIT_FUNC(1, "hdata_pointer", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); result = API_PTR2STR(weechat_hdata_pointer (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_hdata_time (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; time_t time; API_INIT_FUNC(1, "hdata_time", API_RETURN_LONG(0)); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_LONG(0)); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); time = weechat_hdata_time (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name); API_RETURN_LONG(time); } static VALUE weechat_ruby_api_hdata_hashtable (VALUE class, VALUE hdata, VALUE pointer, VALUE name) { char *c_hdata, *c_pointer, *c_name; VALUE result_hash; API_INIT_FUNC(1, "hdata_hashtable", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (name)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (name, T_STRING); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_name = StringValuePtr (name); result_hash = weechat_ruby_hashtable_to_hash ( weechat_hdata_hashtable (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_name)); return result_hash; } static VALUE weechat_ruby_api_hdata_compare (VALUE class, VALUE hdata, VALUE pointer1, VALUE pointer2, VALUE name, VALUE case_sensitive) { char *c_hdata, *c_pointer1, *c_pointer2, *c_name; int c_case_sensitive, rc; API_INIT_FUNC(1, "hdata_compare", API_RETURN_INT(0)); if (NIL_P (hdata) || NIL_P (pointer1) || NIL_P (pointer2) || NIL_P (name) || NIL_P (case_sensitive)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (hdata, T_STRING); Check_Type (pointer1, T_STRING); Check_Type (pointer2, T_STRING); Check_Type (name, T_STRING); CHECK_INTEGER(case_sensitive); c_hdata = StringValuePtr (hdata); c_pointer1 = StringValuePtr (pointer1); c_pointer2 = StringValuePtr (pointer2); c_name = StringValuePtr (name); c_case_sensitive = NUM2INT (case_sensitive); rc = weechat_hdata_compare (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer1), API_STR2PTR(c_pointer2), c_name, c_case_sensitive); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_hdata_update (VALUE class, VALUE hdata, VALUE pointer, VALUE hashtable) { char *c_hdata, *c_pointer; struct t_hashtable *c_hashtable; int value; API_INIT_FUNC(1, "hdata_update", API_RETURN_INT(0)); if (NIL_P (hdata) || NIL_P (pointer) || NIL_P (hashtable)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (hdata, T_STRING); Check_Type (pointer, T_STRING); Check_Type (hashtable, T_HASH); c_hdata = StringValuePtr (hdata); c_pointer = StringValuePtr (pointer); c_hashtable = weechat_ruby_hash_to_hashtable (hashtable, WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE, WEECHAT_HASHTABLE_STRING, WEECHAT_HASHTABLE_STRING); value = weechat_hdata_update (API_STR2PTR(c_hdata), API_STR2PTR(c_pointer), c_hashtable); if (c_hashtable) weechat_hashtable_free (c_hashtable); API_RETURN_INT(value); } static VALUE weechat_ruby_api_hdata_get_string (VALUE class, VALUE hdata, VALUE property) { char *c_hdata, *c_property; const char *result; API_INIT_FUNC(1, "hdata_get_string", API_RETURN_EMPTY); if (NIL_P (hdata) || NIL_P (property)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (hdata, T_STRING); Check_Type (property, T_STRING); c_hdata = StringValuePtr (hdata); c_property = StringValuePtr (property); result = weechat_hdata_get_var_type_string (API_STR2PTR(c_hdata), c_property); API_RETURN_STRING(result); } int weechat_ruby_api_upgrade_read_cb (const void *pointer, void *data, struct t_upgrade_file *upgrade_file, int object_id, struct t_infolist *infolist) { struct t_plugin_script *script; void *func_argv[4]; char empty_arg[1] = { '\0' }, str_object_id[32]; const char *ptr_function, *ptr_data; int *rc, ret; script = (struct t_plugin_script *)pointer; plugin_script_get_function_and_data (data, &ptr_function, &ptr_data); if (ptr_function && ptr_function[0]) { snprintf (str_object_id, sizeof (str_object_id), "%d", object_id); func_argv[0] = (ptr_data) ? (char *)ptr_data : empty_arg; func_argv[1] = (char *)API_PTR2STR(upgrade_file); func_argv[2] = str_object_id; func_argv[3] = (char *)API_PTR2STR(infolist); rc = (int *) weechat_ruby_exec (script, WEECHAT_SCRIPT_EXEC_INT, ptr_function, "ssss", func_argv); if (!rc) ret = WEECHAT_RC_ERROR; else { ret = *rc; free (rc); } return ret; } return WEECHAT_RC_ERROR; } static VALUE weechat_ruby_api_upgrade_new (VALUE class, VALUE filename, VALUE function, VALUE data) { char *c_filename, *c_function, *c_data; const char *result; API_INIT_FUNC(1, "upgrade_new", API_RETURN_EMPTY); if (NIL_P (filename) || NIL_P (function) || NIL_P (data)) API_WRONG_ARGS(API_RETURN_EMPTY); Check_Type (filename, T_STRING); Check_Type (function, T_STRING); Check_Type (data, T_STRING); c_filename = StringValuePtr (filename); c_function = StringValuePtr (function); c_data = StringValuePtr (data); result = API_PTR2STR( plugin_script_api_upgrade_new ( weechat_ruby_plugin, ruby_current_script, c_filename, &weechat_ruby_api_upgrade_read_cb, c_function, c_data)); API_RETURN_STRING(result); } static VALUE weechat_ruby_api_upgrade_write_object (VALUE class, VALUE upgrade_file, VALUE object_id, VALUE infolist) { char *c_upgrade_file, *c_infolist; int c_object_id, rc; API_INIT_FUNC(1, "upgrade_write_object", API_RETURN_INT(0)); if (NIL_P (upgrade_file) || NIL_P (object_id) || NIL_P (infolist)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (upgrade_file, T_STRING); CHECK_INTEGER(object_id); Check_Type (infolist, T_STRING); c_upgrade_file = StringValuePtr (upgrade_file); c_object_id = NUM2INT (object_id); c_infolist = StringValuePtr (infolist); rc = weechat_upgrade_write_object (API_STR2PTR(c_upgrade_file), c_object_id, API_STR2PTR(c_infolist)); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_upgrade_read (VALUE class, VALUE upgrade_file) { char *c_upgrade_file; int rc; API_INIT_FUNC(1, "upgrade_read", API_RETURN_INT(0)); if (NIL_P (upgrade_file)) API_WRONG_ARGS(API_RETURN_INT(0)); Check_Type (upgrade_file, T_STRING); c_upgrade_file = StringValuePtr (upgrade_file); rc = weechat_upgrade_read (API_STR2PTR(c_upgrade_file)); API_RETURN_INT(rc); } static VALUE weechat_ruby_api_upgrade_close (VALUE class, VALUE upgrade_file) { char *c_upgrade_file; API_INIT_FUNC(1, "upgrade_close", API_RETURN_ERROR); if (NIL_P (upgrade_file)) API_WRONG_ARGS(API_RETURN_ERROR); Check_Type (upgrade_file, T_STRING); c_upgrade_file = StringValuePtr (upgrade_file); weechat_upgrade_close (API_STR2PTR(c_upgrade_file)); API_RETURN_OK; } /* * Initializes ruby functions and constants. */ void weechat_ruby_api_init (VALUE ruby_mWeechat) { rb_define_const (ruby_mWeechat, "WEECHAT_RC_OK", INT2NUM(WEECHAT_RC_OK)); rb_define_const (ruby_mWeechat, "WEECHAT_RC_OK_EAT", INT2NUM(WEECHAT_RC_OK_EAT)); rb_define_const (ruby_mWeechat, "WEECHAT_RC_ERROR", INT2NUM(WEECHAT_RC_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_READ_OK", INT2NUM(WEECHAT_CONFIG_READ_OK)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_READ_MEMORY_ERROR", INT2NUM(WEECHAT_CONFIG_READ_MEMORY_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_READ_FILE_NOT_FOUND", INT2NUM(WEECHAT_CONFIG_READ_FILE_NOT_FOUND)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_WRITE_OK", INT2NUM(WEECHAT_CONFIG_WRITE_OK)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_WRITE_ERROR", INT2NUM(WEECHAT_CONFIG_WRITE_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_WRITE_MEMORY_ERROR", INT2NUM(WEECHAT_CONFIG_WRITE_MEMORY_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_SET_OK_CHANGED", INT2NUM(WEECHAT_CONFIG_OPTION_SET_OK_CHANGED)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE", INT2NUM(WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_SET_ERROR", INT2NUM(WEECHAT_CONFIG_OPTION_SET_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND", INT2NUM(WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET", INT2NUM(WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_UNSET_OK_RESET", INT2NUM(WEECHAT_CONFIG_OPTION_UNSET_OK_RESET)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED", INT2NUM(WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED)); rb_define_const (ruby_mWeechat, "WEECHAT_CONFIG_OPTION_UNSET_ERROR", INT2NUM(WEECHAT_CONFIG_OPTION_UNSET_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_LIST_POS_SORT", rb_str_new2 (WEECHAT_LIST_POS_SORT)); rb_define_const (ruby_mWeechat, "WEECHAT_LIST_POS_BEGINNING", rb_str_new2 (WEECHAT_LIST_POS_BEGINNING)); rb_define_const (ruby_mWeechat, "WEECHAT_LIST_POS_END", rb_str_new2 (WEECHAT_LIST_POS_END)); rb_define_const (ruby_mWeechat, "WEECHAT_HOTLIST_LOW", rb_str_new2 (WEECHAT_HOTLIST_LOW)); rb_define_const (ruby_mWeechat, "WEECHAT_HOTLIST_MESSAGE", rb_str_new2 (WEECHAT_HOTLIST_MESSAGE)); rb_define_const (ruby_mWeechat, "WEECHAT_HOTLIST_PRIVATE", rb_str_new2 (WEECHAT_HOTLIST_PRIVATE)); rb_define_const (ruby_mWeechat, "WEECHAT_HOTLIST_HIGHLIGHT", rb_str_new2 (WEECHAT_HOTLIST_HIGHLIGHT)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_PROCESS_RUNNING", INT2NUM(WEECHAT_HOOK_PROCESS_RUNNING)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_PROCESS_ERROR", INT2NUM(WEECHAT_HOOK_PROCESS_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_OK", INT2NUM(WEECHAT_HOOK_CONNECT_OK)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND", INT2NUM(WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND", INT2NUM(WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED", INT2NUM(WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_PROXY_ERROR", INT2NUM(WEECHAT_HOOK_CONNECT_PROXY_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR", INT2NUM(WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR", INT2NUM(WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR", INT2NUM(WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_MEMORY_ERROR", INT2NUM(WEECHAT_HOOK_CONNECT_MEMORY_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_TIMEOUT", INT2NUM(WEECHAT_HOOK_CONNECT_TIMEOUT)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_CONNECT_SOCKET_ERROR", INT2NUM(WEECHAT_HOOK_CONNECT_SOCKET_ERROR)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_SIGNAL_STRING", rb_str_new2 (WEECHAT_HOOK_SIGNAL_STRING)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_SIGNAL_INT", rb_str_new2 (WEECHAT_HOOK_SIGNAL_INT)); rb_define_const (ruby_mWeechat, "WEECHAT_HOOK_SIGNAL_POINTER", rb_str_new2 (WEECHAT_HOOK_SIGNAL_POINTER)); API_DEF_FUNC(register, 7); API_DEF_FUNC(plugin_get_name, 1); API_DEF_FUNC(charset_set, 1); API_DEF_FUNC(iconv_to_internal, 2); API_DEF_FUNC(iconv_from_internal, 2); API_DEF_FUNC(gettext, 1); API_DEF_FUNC(ngettext, 3); API_DEF_FUNC(strlen_screen, 1); API_DEF_FUNC(string_match, 3); API_DEF_FUNC(string_match_list, 3); API_DEF_FUNC(string_has_highlight, 2); API_DEF_FUNC(string_has_highlight_regex, 2); API_DEF_FUNC(string_mask_to_regex, 1); API_DEF_FUNC(string_format_size, 1); API_DEF_FUNC(string_color_code_size, 1); API_DEF_FUNC(string_remove_color, 2); API_DEF_FUNC(string_is_command_char, 1); API_DEF_FUNC(string_input_for_buffer, 1); API_DEF_FUNC(string_eval_expression, 4); API_DEF_FUNC(string_eval_path_home, 4); API_DEF_FUNC(mkdir_home, 2); API_DEF_FUNC(mkdir, 2); API_DEF_FUNC(mkdir_parents, 2); API_DEF_FUNC(list_new, 0); API_DEF_FUNC(list_add, 4); API_DEF_FUNC(list_search, 2); API_DEF_FUNC(list_search_pos, 2); API_DEF_FUNC(list_casesearch, 2); API_DEF_FUNC(list_casesearch_pos, 2); API_DEF_FUNC(list_get, 2); API_DEF_FUNC(list_set, 2); API_DEF_FUNC(list_next, 1); API_DEF_FUNC(list_prev, 1); API_DEF_FUNC(list_string, 1); API_DEF_FUNC(list_size, 1); API_DEF_FUNC(list_remove, 2); API_DEF_FUNC(list_remove_all, 1); API_DEF_FUNC(list_free, 1); API_DEF_FUNC(config_new, 3); API_DEF_FUNC(config_new_section, 14); API_DEF_FUNC(config_search_section, 2); API_DEF_FUNC(config_new_option, 12); API_DEF_FUNC(config_search_option, 3); API_DEF_FUNC(config_string_to_boolean, 1); API_DEF_FUNC(config_option_reset, 2); API_DEF_FUNC(config_option_set, 3); API_DEF_FUNC(config_option_set_null, 2); API_DEF_FUNC(config_option_unset, 1); API_DEF_FUNC(config_option_rename, 2); API_DEF_FUNC(config_option_is_null, 1); API_DEF_FUNC(config_option_default_is_null, 1); API_DEF_FUNC(config_boolean, 1); API_DEF_FUNC(config_boolean_default, 1); API_DEF_FUNC(config_integer, 1); API_DEF_FUNC(config_integer_default, 1); API_DEF_FUNC(config_string, 1); API_DEF_FUNC(config_string_default, 1); API_DEF_FUNC(config_color, 1); API_DEF_FUNC(config_color_default, 1); API_DEF_FUNC(config_write_option, 2); API_DEF_FUNC(config_write_line, 3); API_DEF_FUNC(config_write, 1); API_DEF_FUNC(config_read, 1); API_DEF_FUNC(config_reload, 1); API_DEF_FUNC(config_option_free, 1); API_DEF_FUNC(config_section_free_options, 1); API_DEF_FUNC(config_section_free, 1); API_DEF_FUNC(config_free, 1); API_DEF_FUNC(config_get, 1); API_DEF_FUNC(config_get_plugin, 1); API_DEF_FUNC(config_is_set_plugin, 1); API_DEF_FUNC(config_set_plugin, 2); API_DEF_FUNC(config_set_desc_plugin, 2); API_DEF_FUNC(config_unset_plugin, 1); API_DEF_FUNC(key_bind, 2); API_DEF_FUNC(key_unbind, 2); API_DEF_FUNC(prefix, 1); API_DEF_FUNC(color, 1); API_DEF_FUNC(print, 2); API_DEF_FUNC(print_date_tags, 4); API_DEF_FUNC(print_y, 3); API_DEF_FUNC(log_print, 1); API_DEF_FUNC(hook_command, 7); API_DEF_FUNC(hook_completion, 4); API_DEF_FUNC(hook_completion_get_string, 2); API_DEF_FUNC(hook_completion_list_add, 4); API_DEF_FUNC(hook_command_run, 3); API_DEF_FUNC(hook_timer, 5); API_DEF_FUNC(hook_fd, 6); API_DEF_FUNC(hook_process, 4); API_DEF_FUNC(hook_process_hashtable, 5); API_DEF_FUNC(hook_connect, 8); API_DEF_FUNC(hook_line, 5); API_DEF_FUNC(hook_print, 6); API_DEF_FUNC(hook_signal, 3); API_DEF_FUNC(hook_signal_send, 3); API_DEF_FUNC(hook_hsignal, 3); API_DEF_FUNC(hook_hsignal_send, 2); API_DEF_FUNC(hook_config, 3); API_DEF_FUNC(hook_modifier, 3); API_DEF_FUNC(hook_modifier_exec, 3); API_DEF_FUNC(hook_info, 5); API_DEF_FUNC(hook_info_hashtable, 6); API_DEF_FUNC(hook_infolist, 6); API_DEF_FUNC(hook_focus, 3); API_DEF_FUNC(hook_set, 3); API_DEF_FUNC(unhook, 1); API_DEF_FUNC(unhook_all, 0); API_DEF_FUNC(buffer_new, 5); API_DEF_FUNC(buffer_search, 2); API_DEF_FUNC(buffer_search_main, 0); API_DEF_FUNC(current_buffer, 0); API_DEF_FUNC(buffer_clear, 1); API_DEF_FUNC(buffer_close, 1); API_DEF_FUNC(buffer_merge, 2); API_DEF_FUNC(buffer_unmerge, 2); API_DEF_FUNC(buffer_get_integer, 2); API_DEF_FUNC(buffer_get_string, 2); API_DEF_FUNC(buffer_get_pointer, 2); API_DEF_FUNC(buffer_set, 3); API_DEF_FUNC(buffer_string_replace_local_var, 2); API_DEF_FUNC(buffer_match_list, 2); API_DEF_FUNC(current_window, 0); API_DEF_FUNC(window_search_with_buffer, 1); API_DEF_FUNC(window_get_integer, 2); API_DEF_FUNC(window_get_string, 2); API_DEF_FUNC(window_get_pointer, 2); API_DEF_FUNC(window_set_title, 1); API_DEF_FUNC(nicklist_add_group, 5); API_DEF_FUNC(nicklist_search_group, 3); API_DEF_FUNC(nicklist_add_nick, 7); API_DEF_FUNC(nicklist_search_nick, 3); API_DEF_FUNC(nicklist_remove_group, 2); API_DEF_FUNC(nicklist_remove_nick, 2); API_DEF_FUNC(nicklist_remove_all, 1); API_DEF_FUNC(nicklist_group_get_integer, 3); API_DEF_FUNC(nicklist_group_get_string, 3); API_DEF_FUNC(nicklist_group_get_pointer, 3); API_DEF_FUNC(nicklist_group_set, 4); API_DEF_FUNC(nicklist_nick_get_integer, 3); API_DEF_FUNC(nicklist_nick_get_string, 3); API_DEF_FUNC(nicklist_nick_get_pointer, 3); API_DEF_FUNC(nicklist_nick_set, 4); API_DEF_FUNC(bar_item_search, 1); API_DEF_FUNC(bar_item_new, 3); API_DEF_FUNC(bar_item_update, 1); API_DEF_FUNC(bar_item_remove, 1); API_DEF_FUNC(bar_search, 1); API_DEF_FUNC(bar_new, 13); API_DEF_FUNC(bar_set, 3); API_DEF_FUNC(bar_update, 1); API_DEF_FUNC(bar_remove, 1); API_DEF_FUNC(command, 2); API_DEF_FUNC(command_options, 3); API_DEF_FUNC(completion_new, 1); API_DEF_FUNC(completion_search, 4); API_DEF_FUNC(completion_get_string, 2); API_DEF_FUNC(completion_list_add, 4); API_DEF_FUNC(completion_free, 1); API_DEF_FUNC(info_get, 2); API_DEF_FUNC(info_get_hashtable, 2); API_DEF_FUNC(infolist_new, 0); API_DEF_FUNC(infolist_new_item, 1); API_DEF_FUNC(infolist_new_var_integer, 3); API_DEF_FUNC(infolist_new_var_string, 3); API_DEF_FUNC(infolist_new_var_pointer, 3); API_DEF_FUNC(infolist_new_var_time, 3); API_DEF_FUNC(infolist_search_var, 2); API_DEF_FUNC(infolist_get, 3); API_DEF_FUNC(infolist_next, 1); API_DEF_FUNC(infolist_prev, 1); API_DEF_FUNC(infolist_reset_item_cursor, 1); API_DEF_FUNC(infolist_fields, 1); API_DEF_FUNC(infolist_integer, 2); API_DEF_FUNC(infolist_string, 2); API_DEF_FUNC(infolist_pointer, 2); API_DEF_FUNC(infolist_time, 2); API_DEF_FUNC(infolist_free, 1); API_DEF_FUNC(hdata_get, 1); API_DEF_FUNC(hdata_get_var_offset, 2); API_DEF_FUNC(hdata_get_var_type_string, 2); API_DEF_FUNC(hdata_get_var_array_size, 3); API_DEF_FUNC(hdata_get_var_array_size_string, 3); API_DEF_FUNC(hdata_get_var_hdata, 2); API_DEF_FUNC(hdata_get_list, 2); API_DEF_FUNC(hdata_check_pointer, 3); API_DEF_FUNC(hdata_move, 3); API_DEF_FUNC(hdata_search, 4); API_DEF_FUNC(hdata_char, 3); API_DEF_FUNC(hdata_integer, 3); API_DEF_FUNC(hdata_long, 3); API_DEF_FUNC(hdata_string, 3); API_DEF_FUNC(hdata_pointer, 3); API_DEF_FUNC(hdata_time, 3); API_DEF_FUNC(hdata_hashtable, 3); API_DEF_FUNC(hdata_compare, 5); API_DEF_FUNC(hdata_update, 3); API_DEF_FUNC(hdata_get_string, 2); API_DEF_FUNC(upgrade_new, 3); API_DEF_FUNC(upgrade_write_object, 3); API_DEF_FUNC(upgrade_read, 1); API_DEF_FUNC(upgrade_close, 1); }