2011-02-23 22:14:30 -05:00
|
|
|
/* X-Chat 2.0 PERL Plugin
|
|
|
|
* Copyright (C) 1998-2002 Peter Zelezny.
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
2012-12-23 14:36:54 -05:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2011-02-23 22:14:30 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
2011-02-28 12:59:32 -05:00
|
|
|
#else
|
|
|
|
#include <dirent.h>
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef PACKAGE
|
2012-10-26 19:26:32 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
#include "../../config-win32.h" /* for #define OLD_PERL */
|
|
|
|
#else
|
|
|
|
#include "../../config.h"
|
|
|
|
#endif
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "hexchat-plugin.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
static hexchat_plugin *ph; /* plugin handle */
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
static int perl_load_file (char *script_name);
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
/* STRINGIFY is from perl's CORE/config.h */
|
|
|
|
#ifndef PERL_REQUIRED_VERSION
|
|
|
|
#define PERL_REQUIRED_VERSION STRINGIFY(PERL_REVISION) "." STRINGIFY(PERL_VERSION)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PERL_DLL
|
|
|
|
#define PERL_DLL "perl" STRINGIFY(PERL_REVISION) STRINGIFY(PERL_VERSION) ".dll"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static DWORD
|
|
|
|
child (char *str)
|
|
|
|
{
|
|
|
|
MessageBoxA (0, str, "Perl DLL Error",
|
|
|
|
MB_OK | MB_ICONHAND | MB_SETFOREGROUND | MB_TASKMODAL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
thread_mbox (char *str)
|
|
|
|
{
|
|
|
|
DWORD tid;
|
|
|
|
|
|
|
|
CloseHandle (CreateThread (NULL, 0, (LPTHREAD_START_ROUTINE) child,
|
|
|
|
str, 0, &tid));
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* leave this before XSUB.h, to avoid readdir() being redefined */
|
|
|
|
|
2012-07-13 14:07:47 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
static void
|
|
|
|
perl_auto_load_from_path (const char *path)
|
|
|
|
{
|
|
|
|
WIN32_FIND_DATA find_data;
|
|
|
|
HANDLE find_handle;
|
|
|
|
char *search_path;
|
|
|
|
int path_len = strlen (path);
|
|
|
|
|
|
|
|
/* +6 for \*.pl and \0 */
|
|
|
|
search_path = malloc(path_len + 6);
|
|
|
|
sprintf (search_path, "%s\\*.pl", path);
|
|
|
|
|
|
|
|
find_handle = FindFirstFile (search_path, &find_data);
|
|
|
|
|
|
|
|
if (find_handle != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (!(find_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY
|
|
|
|
||find_data.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN))
|
|
|
|
{
|
|
|
|
char *full_path =
|
|
|
|
malloc (path_len + strlen (find_data.cFileName) + 2);
|
|
|
|
sprintf (full_path, "%s\\%s", path, find_data.cFileName);
|
|
|
|
|
|
|
|
perl_load_file (full_path);
|
|
|
|
free (full_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (FindNextFile (find_handle, &find_data) != 0);
|
|
|
|
FindClose (find_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
free (search_path);
|
|
|
|
}
|
|
|
|
#else
|
2011-02-23 22:14:30 -05:00
|
|
|
static void
|
|
|
|
perl_auto_load_from_path (const char *path)
|
|
|
|
{
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *ent;
|
|
|
|
|
|
|
|
dir = opendir (path);
|
|
|
|
if (dir) {
|
|
|
|
while ((ent = readdir (dir))) {
|
|
|
|
int len = strlen (ent->d_name);
|
|
|
|
if (len > 3 && strcasecmp (".pl", ent->d_name + len - 3) == 0) {
|
|
|
|
char *file = malloc (len + strlen (path) + 2);
|
|
|
|
sprintf (file, "%s/%s", path, ent->d_name);
|
|
|
|
perl_load_file (file);
|
|
|
|
free (file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir (dir);
|
|
|
|
}
|
|
|
|
}
|
2012-07-13 14:07:47 -04:00
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
static int
|
|
|
|
perl_auto_load (void *unused)
|
|
|
|
{
|
|
|
|
const char *xdir;
|
|
|
|
char *sub_dir;
|
|
|
|
#ifdef WIN32
|
|
|
|
int copied = 0;
|
|
|
|
char *slash = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* get the dir in local filesystem encoding (what opendir() expects!) */
|
2012-11-04 17:55:36 -05:00
|
|
|
xdir = hexchat_get_info (ph, "configdir");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-07-21 13:16:31 -04:00
|
|
|
/* don't pollute the filesystem with script files, this only causes misuse of the folders
|
2012-07-26 14:53:59 -04:00
|
|
|
* only use ~/.config/hexchat/addons/ and %APPDATA%\HexChat\addons */
|
2012-07-21 13:16:31 -04:00
|
|
|
#if 0
|
2012-07-20 09:52:33 -04:00
|
|
|
/* autoload from ~/.config/hexchat/ or %APPDATA%\HexChat\ on win32 */
|
2011-02-23 22:14:30 -05:00
|
|
|
perl_auto_load_from_path (xdir);
|
2012-07-21 13:16:31 -04:00
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-07-26 14:53:59 -04:00
|
|
|
sub_dir = malloc (strlen (xdir) + 8);
|
2011-02-23 22:14:30 -05:00
|
|
|
strcpy (sub_dir, xdir);
|
2012-07-26 14:53:59 -04:00
|
|
|
strcat (sub_dir, "/addons");
|
2011-02-23 22:14:30 -05:00
|
|
|
perl_auto_load_from_path (sub_dir);
|
|
|
|
free (sub_dir);
|
|
|
|
|
2012-07-21 13:16:31 -04:00
|
|
|
#if 0
|
2011-02-23 22:14:30 -05:00
|
|
|
#ifdef WIN32
|
2012-07-20 09:52:33 -04:00
|
|
|
/* autoload from C:\Program Files\HexChat\plugins\ */
|
2011-02-23 22:14:30 -05:00
|
|
|
sub_dir = malloc (1025 + 9);
|
|
|
|
copied = GetModuleFileName( 0, sub_dir, 1024 );
|
|
|
|
sub_dir[copied] = '\0';
|
|
|
|
slash = strrchr( sub_dir, '\\' );
|
|
|
|
if( slash != NULL ) {
|
|
|
|
*slash = '\0';
|
|
|
|
}
|
|
|
|
perl_auto_load_from_path ( strncat (sub_dir, "\\plugins", 9));
|
|
|
|
free (sub_dir);
|
2012-07-21 13:16:31 -04:00
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <EXTERN.h>
|
|
|
|
#define WIN32IOP_H
|
|
|
|
#include <perl.h>
|
|
|
|
#include <XSUB.h>
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
SV *callback;
|
|
|
|
SV *userdata;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook; /* required for timers */
|
|
|
|
hexchat_context *ctx; /* allow timers to remember their context */
|
2011-02-23 22:14:30 -05:00
|
|
|
SV *package; /* need to track the package name when removing hooks
|
|
|
|
by returning REMOVE
|
|
|
|
*/
|
|
|
|
unsigned int depth;
|
|
|
|
} HookData;
|
|
|
|
|
|
|
|
static PerlInterpreter *my_perl = NULL;
|
|
|
|
extern void boot_DynaLoader (pTHX_ CV * cv);
|
|
|
|
|
|
|
|
/*
|
|
|
|
this is used for autoload and shutdown callbacks
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
execute_perl (SV * function, char *args)
|
|
|
|
{
|
|
|
|
|
|
|
|
int count, ret_value = 1;
|
|
|
|
|
|
|
|
dSP;
|
|
|
|
ENTER;
|
|
|
|
SAVETMPS;
|
|
|
|
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (sv_2mortal (newSVpv (args, 0)));
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
count = call_sv (function, G_EVAL | G_SCALAR);
|
|
|
|
SPAGAIN;
|
|
|
|
if (SvTRUE (ERRSV)) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf(ph, "Perl error: %s\n", SvPV_nolen (ERRSV));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!SvOK (POPs)) {} /* remove undef from the top of the stack */
|
|
|
|
} else if (count != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph, "Perl error: expected 1 value from %s, "
|
2011-02-23 22:14:30 -05:00
|
|
|
"got: %d\n", SvPV_nolen (function), count);
|
|
|
|
} else {
|
|
|
|
ret_value = POPi;
|
|
|
|
}
|
|
|
|
PUTBACK;
|
|
|
|
FREETMPS;
|
|
|
|
LEAVE;
|
|
|
|
|
|
|
|
return ret_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
get_filename (char *word[], char *word_eol[])
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *file;
|
|
|
|
|
|
|
|
len = strlen (word[2]);
|
|
|
|
|
|
|
|
/* if called as /load "filename.pl" the only difference between word and
|
|
|
|
* word_eol will be the two quotes
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (strchr (word[2], ' ') != NULL
|
|
|
|
|| (strlen (word_eol[2]) - strlen(word[2])) == 2 )
|
|
|
|
{
|
|
|
|
file = word[2];
|
|
|
|
} else {
|
|
|
|
file = word_eol[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
len = strlen (file);
|
|
|
|
|
|
|
|
if (len > 3 && strncasecmp (".pl", file + len - 3, 3) == 0) {
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SV *
|
2012-10-30 03:42:48 -04:00
|
|
|
list_item_to_sv ( hexchat_list *list, const char *const *fields )
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
HV *hash = newHV();
|
|
|
|
SV *field_value;
|
|
|
|
const char *field;
|
|
|
|
int field_index = 0;
|
|
|
|
const char *field_name;
|
|
|
|
int name_len;
|
|
|
|
|
|
|
|
while (fields[field_index] != NULL) {
|
|
|
|
field_name = fields[field_index] + 1;
|
|
|
|
name_len = strlen (field_name);
|
|
|
|
|
|
|
|
switch (fields[field_index][0]) {
|
|
|
|
case 's':
|
2012-10-30 03:42:48 -04:00
|
|
|
field = hexchat_list_str (ph, list, field_name);
|
2011-02-23 22:14:30 -05:00
|
|
|
if (field != NULL) {
|
|
|
|
field_value = newSVpvn (field, strlen (field));
|
|
|
|
} else {
|
|
|
|
field_value = &PL_sv_undef;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'p':
|
2012-10-30 03:42:48 -04:00
|
|
|
field_value = newSViv (PTR2IV (hexchat_list_str (ph, list,
|
2011-02-23 22:14:30 -05:00
|
|
|
field_name)));
|
|
|
|
break;
|
|
|
|
case 'i':
|
2012-10-30 03:42:48 -04:00
|
|
|
field_value = newSVuv (hexchat_list_int (ph, list, field_name));
|
2011-02-23 22:14:30 -05:00
|
|
|
break;
|
|
|
|
case 't':
|
2012-10-30 03:42:48 -04:00
|
|
|
field_value = newSVnv (hexchat_list_time (ph, list, field_name));
|
2011-02-23 22:14:30 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
field_value = &PL_sv_undef;
|
|
|
|
}
|
|
|
|
hv_store (hash, field_name, name_len, field_value, 0);
|
|
|
|
field_index++;
|
|
|
|
}
|
|
|
|
return sv_2mortal (newRV_noinc ((SV *) hash));
|
|
|
|
}
|
|
|
|
|
|
|
|
static AV *
|
|
|
|
array2av (char *array[])
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
SV *temp = NULL;
|
|
|
|
AV *av = newAV();
|
|
|
|
sv_2mortal ((SV *)av);
|
|
|
|
|
|
|
|
for (
|
|
|
|
count = 1;
|
|
|
|
count < 32 && array[count] != NULL && array[count][0] != 0;
|
|
|
|
count++
|
|
|
|
) {
|
|
|
|
temp = newSVpv (array[count], 0);
|
|
|
|
SvUTF8_on (temp);
|
|
|
|
av_push (av, temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return av;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
/* sets $Xchat::Embed::current_package */
|
|
|
|
static void
|
|
|
|
set_current_package (SV *package)
|
|
|
|
{
|
|
|
|
SV *current_package = get_sv ("Xchat::Embed::current_package", 1);
|
|
|
|
SvSetSV_nosteal (current_package, package);
|
|
|
|
}
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
static int
|
|
|
|
fd_cb (int fd, int flags, void *userdata)
|
|
|
|
{
|
|
|
|
HookData *data = (HookData *) userdata;
|
|
|
|
int retVal = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
dSP;
|
|
|
|
ENTER;
|
|
|
|
SAVETMPS;
|
|
|
|
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (data->userdata);
|
|
|
|
PUTBACK;
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (data->package);
|
2011-02-23 22:14:30 -05:00
|
|
|
count = call_sv (data->callback, G_EVAL);
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (&PL_sv_undef);
|
2011-02-23 22:14:30 -05:00
|
|
|
SPAGAIN;
|
|
|
|
|
|
|
|
if (SvTRUE (ERRSV)) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph, "Error in fd callback %s", SvPV_nolen (ERRSV));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!SvOK (POPs)) {} /* remove undef from the top of the stack */
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_ALL;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
if (count != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Fd handler should only return 1 value.");
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
retVal = POPi;
|
|
|
|
if (retVal == 0) {
|
|
|
|
/* if 0 is returned, the fd is going to get unhooked */
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (sv_2mortal (newSViv (PTR2IV (data->hook))));
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
call_pv ("Xchat::unhook", G_EVAL);
|
|
|
|
SPAGAIN;
|
|
|
|
|
|
|
|
SvREFCNT_dec (data->callback);
|
|
|
|
|
|
|
|
if (data->userdata) {
|
|
|
|
SvREFCNT_dec (data->userdata);
|
|
|
|
}
|
|
|
|
free (data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PUTBACK;
|
|
|
|
FREETMPS;
|
|
|
|
LEAVE;
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
timer_cb (void *userdata)
|
|
|
|
{
|
|
|
|
HookData *data = (HookData *) userdata;
|
|
|
|
int retVal = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
dSP;
|
|
|
|
ENTER;
|
|
|
|
SAVETMPS;
|
|
|
|
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (data->userdata);
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
if (data->ctx) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_set_context (ph, data->ctx);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2012-07-13 14:16:10 -04:00
|
|
|
|
|
|
|
set_current_package (data->package);
|
2011-02-23 22:14:30 -05:00
|
|
|
count = call_sv (data->callback, G_EVAL);
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (&PL_sv_undef);
|
2011-02-23 22:14:30 -05:00
|
|
|
SPAGAIN;
|
|
|
|
|
|
|
|
if (SvTRUE (ERRSV)) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph, "Error in timer callback %s", SvPV_nolen (ERRSV));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!SvOK (POPs)) {} /* remove undef from the top of the stack */
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_ALL;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
if (count != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Timer handler should only return 1 value.");
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
retVal = POPi;
|
|
|
|
if (retVal == 0) {
|
|
|
|
/* if 0 is return the timer is going to get unhooked */
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (sv_2mortal (newSViv (PTR2IV (data->hook))));
|
|
|
|
XPUSHs (sv_mortalcopy (data->package));
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
call_pv ("Xchat::unhook", G_EVAL);
|
|
|
|
SPAGAIN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PUTBACK;
|
|
|
|
FREETMPS;
|
|
|
|
LEAVE;
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
server_cb (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
HookData *data = (HookData *) userdata;
|
|
|
|
int retVal = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
dSP;
|
|
|
|
ENTER;
|
|
|
|
SAVETMPS;
|
|
|
|
|
|
|
|
if (data->depth)
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_printf (ph, */
|
2011-02-23 22:14:30 -05:00
|
|
|
/* "Recieved %d words in server callback", av_len (wd)); */
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (newRV_noinc ((SV *) array2av (word)));
|
|
|
|
XPUSHs (newRV_noinc ((SV *) array2av (word_eol)));
|
|
|
|
XPUSHs (data->userdata);
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
data->depth++;
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (data->package);
|
2011-02-23 22:14:30 -05:00
|
|
|
count = call_sv (data->callback, G_EVAL);
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (&PL_sv_undef);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->depth--;
|
|
|
|
SPAGAIN;
|
|
|
|
if (SvTRUE (ERRSV)) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph, "Error in server callback %s", SvPV_nolen (ERRSV));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!SvOK (POPs)) {} /* remove undef from the top of the stack */
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
if (count != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Server handler should only return 1 value.");
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
retVal = POPi;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PUTBACK;
|
|
|
|
FREETMPS;
|
|
|
|
LEAVE;
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
command_cb (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
HookData *data = (HookData *) userdata;
|
|
|
|
int retVal = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
dSP;
|
|
|
|
ENTER;
|
|
|
|
SAVETMPS;
|
|
|
|
|
|
|
|
if (data->depth)
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_printf (ph, "Recieved %d words in command callback", */
|
2011-02-23 22:14:30 -05:00
|
|
|
/* av_len (wd)); */
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (newRV_noinc ((SV *) array2av (word)));
|
|
|
|
XPUSHs (newRV_noinc ((SV *) array2av (word_eol)));
|
|
|
|
XPUSHs (data->userdata);
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
data->depth++;
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (data->package);
|
2011-02-23 22:14:30 -05:00
|
|
|
count = call_sv (data->callback, G_EVAL);
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (&PL_sv_undef);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->depth--;
|
|
|
|
SPAGAIN;
|
|
|
|
if (SvTRUE (ERRSV)) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph, "Error in command callback %s", SvPV_nolen (ERRSV));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!SvOK (POPs)) {} /* remove undef from the top of the stack */
|
2012-10-30 05:42:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
if (count != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Command handler should only return 1 value.");
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
retVal = POPi;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PUTBACK;
|
|
|
|
FREETMPS;
|
|
|
|
LEAVE;
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
print_cb (char *word[], void *userdata)
|
|
|
|
{
|
|
|
|
|
|
|
|
HookData *data = (HookData *) userdata;
|
|
|
|
SV *temp = NULL;
|
|
|
|
int retVal = 0;
|
|
|
|
int count = 1;
|
|
|
|
int last_index = 31;
|
|
|
|
/* must be initialized after SAVETMPS */
|
|
|
|
AV *wd = NULL;
|
|
|
|
|
|
|
|
dSP;
|
|
|
|
ENTER;
|
|
|
|
SAVETMPS;
|
|
|
|
|
|
|
|
if (data->depth)
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
wd = newAV ();
|
|
|
|
sv_2mortal ((SV *) wd);
|
|
|
|
|
|
|
|
/* need to scan backwards to find the index of the last element since some
|
|
|
|
events such as "DCC Timeout" can have NULL elements in between non NULL
|
|
|
|
elements */
|
|
|
|
|
|
|
|
while (last_index >= 0
|
|
|
|
&& (word[last_index] == NULL || word[last_index][0] == 0)) {
|
|
|
|
last_index--;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 1; count <= last_index; count++) {
|
|
|
|
if (word[count] == NULL) {
|
|
|
|
av_push (wd, &PL_sv_undef);
|
|
|
|
} else if (word[count][0] == 0) {
|
|
|
|
av_push (wd, newSVpvn ("",0));
|
|
|
|
} else {
|
|
|
|
temp = newSVpv (word[count], 0);
|
|
|
|
SvUTF8_on (temp);
|
|
|
|
av_push (wd, temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
/*hexchat_printf (ph, "Recieved %d words in print callback", av_len (wd)+1); */
|
2011-02-23 22:14:30 -05:00
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (newRV_noinc ((SV *) wd));
|
|
|
|
XPUSHs (data->userdata);
|
|
|
|
PUTBACK;
|
|
|
|
|
|
|
|
data->depth++;
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (data->package);
|
2011-02-23 22:14:30 -05:00
|
|
|
count = call_sv (data->callback, G_EVAL);
|
2012-07-13 14:16:10 -04:00
|
|
|
set_current_package (&PL_sv_undef);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->depth--;
|
|
|
|
SPAGAIN;
|
|
|
|
if (SvTRUE (ERRSV)) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph, "Error in print callback %s", SvPV_nolen (ERRSV));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!SvOK (POPs)) {} /* remove undef from the top of the stack */
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
if (count != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Print handler should only return 1 value.");
|
2012-10-30 02:40:37 -04:00
|
|
|
retVal = HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
retVal = POPi;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PUTBACK;
|
|
|
|
FREETMPS;
|
|
|
|
LEAVE;
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* custom IRC perl functions for scripting */
|
|
|
|
|
|
|
|
/* Xchat::Internal::register (scriptname, version, desc, shutdowncallback, filename)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_register)
|
|
|
|
{
|
|
|
|
char *name, *version, *desc, *filename;
|
|
|
|
void *gui_entry;
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 4) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_printf (ph,
|
2011-02-23 22:14:30 -05:00
|
|
|
"Usage: Xchat::Internal::register(scriptname, version, desc, filename)");
|
|
|
|
} else {
|
|
|
|
name = SvPV_nolen (ST (0));
|
|
|
|
version = SvPV_nolen (ST (1));
|
|
|
|
desc = SvPV_nolen (ST (2));
|
|
|
|
filename = SvPV_nolen (ST (3));
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
gui_entry = hexchat_plugingui_add (ph, filename, name,
|
2011-02-23 22:14:30 -05:00
|
|
|
desc, version, NULL);
|
|
|
|
|
|
|
|
XSRETURN_IV (PTR2IV (gui_entry));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Xchat::print(output) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_print)
|
|
|
|
{
|
|
|
|
|
|
|
|
char *text = NULL;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::Internal::print(text)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
text = SvPV_nolen (ST (0));
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, text);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
XSRETURN_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_emit_print)
|
|
|
|
{
|
|
|
|
char *event_name;
|
|
|
|
int RETVAL;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
if (items < 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::emit_print(event_name, ...)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
event_name = (char *) SvPV_nolen (ST (0));
|
|
|
|
RETVAL = 0;
|
|
|
|
|
|
|
|
/* we need to figure out the number of defined values passed in */
|
|
|
|
for (count = 0; count < items; count++) {
|
|
|
|
if (!SvOK (ST (count))) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (count) {
|
|
|
|
case 1:
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_emit_print (ph, event_name, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
break;
|
|
|
|
case 2:
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_emit_print (ph, event_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
SvPV_nolen (ST (1)), NULL);
|
|
|
|
break;
|
|
|
|
case 3:
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_emit_print (ph, event_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
SvPV_nolen (ST (1)),
|
|
|
|
SvPV_nolen (ST (2)), NULL);
|
|
|
|
break;
|
|
|
|
case 4:
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_emit_print (ph, event_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
SvPV_nolen (ST (1)),
|
|
|
|
SvPV_nolen (ST (2)),
|
|
|
|
SvPV_nolen (ST (3)), NULL);
|
|
|
|
break;
|
|
|
|
case 5:
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_emit_print (ph, event_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
SvPV_nolen (ST (1)),
|
|
|
|
SvPV_nolen (ST (2)),
|
|
|
|
SvPV_nolen (ST (3)),
|
|
|
|
SvPV_nolen (ST (4)), NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
XSRETURN_IV (RETVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_send_modes)
|
|
|
|
{
|
|
|
|
AV *p_targets = NULL;
|
|
|
|
int modes_per_line = 0;
|
|
|
|
char sign;
|
|
|
|
char mode;
|
|
|
|
int i = 0;
|
|
|
|
const char **targets;
|
|
|
|
int target_count = 0;
|
|
|
|
SV **elem;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
if (items < 3 || items > 4) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph,
|
2011-02-23 22:14:30 -05:00
|
|
|
"Usage: Xchat::send_modes( targets, sign, mode, modes_per_line)"
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
if (SvROK (ST (0))) {
|
|
|
|
p_targets = (AV*) SvRV (ST (0));
|
|
|
|
target_count = av_len (p_targets) + 1;
|
|
|
|
targets = malloc (target_count * sizeof (char *));
|
|
|
|
for (i = 0; i < target_count; i++ ) {
|
|
|
|
elem = av_fetch (p_targets, i, 0);
|
|
|
|
|
|
|
|
if (elem != NULL) {
|
|
|
|
targets[i] = SvPV_nolen (*elem);
|
|
|
|
} else {
|
|
|
|
targets[i] = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else{
|
|
|
|
targets = malloc (sizeof (char *));
|
|
|
|
targets[0] = SvPV_nolen (ST (0));
|
|
|
|
target_count = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target_count == 0) {
|
|
|
|
XSRETURN_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
sign = (SvPV_nolen (ST (1)))[0];
|
|
|
|
mode = (SvPV_nolen (ST (2)))[0];
|
|
|
|
|
|
|
|
if (items == 4 ) {
|
|
|
|
modes_per_line = (int) SvIV (ST (3));
|
|
|
|
}
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_send_modes (ph, targets, target_count, modes_per_line, sign, mode);
|
2011-02-23 22:14:30 -05:00
|
|
|
free (targets);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_get_info)
|
|
|
|
{
|
|
|
|
SV *temp = NULL;
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::get_info(id)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
SV *id = ST (0);
|
|
|
|
const char *RETVAL;
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_get_info (ph, SvPV_nolen (id));
|
2011-02-23 22:14:30 -05:00
|
|
|
if (RETVAL == NULL) {
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strncmp ("win_ptr", SvPV_nolen (id), 7)
|
|
|
|
|| !strncmp ("gtkwin_ptr", SvPV_nolen (id), 10))
|
|
|
|
{
|
|
|
|
XSRETURN_IV (PTR2IV (RETVAL));
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (
|
|
|
|
!strncmp ("libdirfs", SvPV_nolen (id), 8) ||
|
2012-11-04 17:55:36 -05:00
|
|
|
!strncmp ("xchatdirfs", SvPV_nolen (id), 10) ||
|
|
|
|
!strncmp ("configdir", SvPV_nolen (id), 9)
|
2011-02-23 22:14:30 -05:00
|
|
|
) {
|
|
|
|
XSRETURN_PV (RETVAL);
|
|
|
|
} else {
|
|
|
|
temp = newSVpv (RETVAL, 0);
|
|
|
|
SvUTF8_on (temp);
|
|
|
|
PUSHMARK (SP);
|
|
|
|
XPUSHs (sv_2mortal (temp));
|
|
|
|
PUTBACK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_context_info)
|
|
|
|
{
|
|
|
|
const char *const *fields;
|
|
|
|
dXSARGS;
|
|
|
|
|
|
|
|
if (items > 0 ) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::Internal::context_info()");
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2012-10-30 03:42:48 -04:00
|
|
|
fields = hexchat_list_fields (ph, "channels" );
|
2011-02-23 22:14:30 -05:00
|
|
|
XPUSHs (list_item_to_sv (NULL, fields));
|
|
|
|
XSRETURN (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_get_prefs)
|
|
|
|
{
|
|
|
|
const char *str;
|
|
|
|
int integer;
|
|
|
|
SV *temp = NULL;
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::get_prefs(name)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
|
|
|
|
|
2012-10-30 03:58:50 -04:00
|
|
|
switch (hexchat_get_prefs (ph, SvPV_nolen (ST (0)), &str, &integer)) {
|
2011-02-23 22:14:30 -05:00
|
|
|
case 0:
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
temp = newSVpv (str, 0);
|
|
|
|
SvUTF8_on (temp);
|
|
|
|
SP -= items;
|
|
|
|
sp = mark;
|
|
|
|
XPUSHs (sv_2mortal (temp));
|
|
|
|
PUTBACK;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
XSRETURN_IV (integer);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if (integer) {
|
|
|
|
XSRETURN_YES;
|
|
|
|
} else {
|
|
|
|
XSRETURN_NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xchat::Internal::hook_server(name, priority, callback, userdata) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_hook_server)
|
|
|
|
{
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
int pri;
|
|
|
|
SV *callback;
|
|
|
|
SV *userdata;
|
2012-07-13 14:16:10 -04:00
|
|
|
SV *package;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook;
|
2011-02-23 22:14:30 -05:00
|
|
|
HookData *data;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
if (items != 5) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph,
|
2012-07-13 14:16:10 -04:00
|
|
|
"Usage: Xchat::Internal::hook_server(name, priority, callback, userdata, package)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
name = SvPV_nolen (ST (0));
|
|
|
|
pri = (int) SvIV (ST (1));
|
|
|
|
callback = ST (2);
|
|
|
|
userdata = ST (3);
|
2012-07-13 14:16:10 -04:00
|
|
|
package = ST (4);
|
2011-02-23 22:14:30 -05:00
|
|
|
data = NULL;
|
|
|
|
data = malloc (sizeof (HookData));
|
|
|
|
if (data == NULL) {
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
data->callback = newSVsv (callback);
|
|
|
|
data->userdata = newSVsv (userdata);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->depth = 0;
|
2012-07-13 14:16:10 -04:00
|
|
|
data->package = newSVsv (package);
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hook = hexchat_hook_server (ph, name, pri, server_cb, data);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
XSRETURN_IV (PTR2IV (hook));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xchat::Internal::hook_command(name, priority, callback, help_text, userdata) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_hook_command)
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
int pri;
|
|
|
|
SV *callback;
|
|
|
|
char *help_text = NULL;
|
|
|
|
SV *userdata;
|
2012-07-13 14:16:10 -04:00
|
|
|
SV *package;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook;
|
2011-02-23 22:14:30 -05:00
|
|
|
HookData *data;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
if (items != 6) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph,
|
2012-07-13 14:16:10 -04:00
|
|
|
"Usage: Xchat::Internal::hook_command(name, priority, callback, help_text, userdata, package)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
name = SvPV_nolen (ST (0));
|
|
|
|
pri = (int) SvIV (ST (1));
|
|
|
|
callback = ST (2);
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
/* leave the help text as NULL if the help text is undefined to avoid
|
2011-02-23 22:14:30 -05:00
|
|
|
* overriding the default help message for builtin commands */
|
|
|
|
if (SvOK(ST (3))) {
|
|
|
|
help_text = SvPV_nolen (ST (3));
|
|
|
|
}
|
|
|
|
|
|
|
|
userdata = ST (4);
|
2012-07-13 14:16:10 -04:00
|
|
|
package = ST (5);
|
2011-02-23 22:14:30 -05:00
|
|
|
data = NULL;
|
|
|
|
|
|
|
|
data = malloc (sizeof (HookData));
|
|
|
|
if (data == NULL) {
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
data->callback = newSVsv (callback);
|
|
|
|
data->userdata = newSVsv (userdata);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->depth = 0;
|
2012-07-13 14:16:10 -04:00
|
|
|
data->package = newSVsv (package);
|
2012-10-30 03:42:48 -04:00
|
|
|
hook = hexchat_hook_command (ph, name, pri, command_cb, help_text, data);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
XSRETURN_IV (PTR2IV (hook));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xchat::Internal::hook_print(name, priority, callback, [userdata]) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_hook_print)
|
|
|
|
{
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
int pri;
|
|
|
|
SV *callback;
|
|
|
|
SV *userdata;
|
2012-07-13 14:16:10 -04:00
|
|
|
SV *package;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook;
|
2011-02-23 22:14:30 -05:00
|
|
|
HookData *data;
|
|
|
|
dXSARGS;
|
2012-07-13 14:16:10 -04:00
|
|
|
if (items != 5) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph,
|
2012-07-13 14:16:10 -04:00
|
|
|
"Usage: Xchat::Internal::hook_print(name, priority, callback, userdata, package)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
name = SvPV_nolen (ST (0));
|
|
|
|
pri = (int) SvIV (ST (1));
|
|
|
|
callback = ST (2);
|
|
|
|
data = NULL;
|
|
|
|
userdata = ST (3);
|
2012-07-13 14:16:10 -04:00
|
|
|
package = ST (4);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
data = malloc (sizeof (HookData));
|
|
|
|
if (data == NULL) {
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
data->callback = newSVsv (callback);
|
|
|
|
data->userdata = newSVsv (userdata);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->depth = 0;
|
2012-07-13 14:16:10 -04:00
|
|
|
data->package = newSVsv (package);
|
2012-10-30 03:42:48 -04:00
|
|
|
hook = hexchat_hook_print (ph, name, pri, print_cb, data);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
XSRETURN_IV (PTR2IV (hook));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xchat::Internal::hook_timer(timeout, callback, userdata) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_hook_timer)
|
|
|
|
{
|
|
|
|
int timeout;
|
|
|
|
SV *callback;
|
|
|
|
SV *userdata;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook;
|
2011-02-23 22:14:30 -05:00
|
|
|
SV *package;
|
|
|
|
HookData *data;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
|
|
|
|
if (items != 4) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph,
|
2011-02-23 22:14:30 -05:00
|
|
|
"Usage: Xchat::Internal::hook_timer(timeout, callback, userdata, package)");
|
|
|
|
} else {
|
|
|
|
timeout = (int) SvIV (ST (0));
|
|
|
|
callback = ST (1);
|
|
|
|
data = NULL;
|
|
|
|
userdata = ST (2);
|
|
|
|
package = ST (3);
|
|
|
|
|
|
|
|
data = malloc (sizeof (HookData));
|
|
|
|
if (data == NULL) {
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
data->callback = newSVsv (callback);
|
|
|
|
data->userdata = newSVsv (userdata);
|
2012-10-30 03:42:48 -04:00
|
|
|
data->ctx = hexchat_get_context (ph);
|
2012-07-13 14:16:10 -04:00
|
|
|
data->package = newSVsv (package);
|
2012-10-30 03:42:48 -04:00
|
|
|
hook = hexchat_hook_timer (ph, timeout, timer_cb, data);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->hook = hook;
|
|
|
|
|
|
|
|
XSRETURN_IV (PTR2IV (hook));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xchat::Internal::hook_fd(fd, callback, flags, userdata) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_hook_fd)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
SV *callback;
|
|
|
|
int flags;
|
|
|
|
SV *userdata;
|
2012-07-13 14:16:10 -04:00
|
|
|
SV *package;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook;
|
2011-02-23 22:14:30 -05:00
|
|
|
HookData *data;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
|
2013-03-16 17:41:40 -04:00
|
|
|
if (items != 5) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph,
|
2011-02-23 22:14:30 -05:00
|
|
|
"Usage: Xchat::Internal::hook_fd(fd, callback, flags, userdata)");
|
|
|
|
} else {
|
|
|
|
fd = (int) SvIV (ST (0));
|
|
|
|
callback = ST (1);
|
|
|
|
flags = (int) SvIV (ST (2));
|
|
|
|
userdata = ST (3);
|
2012-07-13 14:16:10 -04:00
|
|
|
package = ST (4);
|
2011-02-23 22:14:30 -05:00
|
|
|
data = NULL;
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2012-10-30 02:25:40 -04:00
|
|
|
if ((flags & HEXCHAT_FD_NOTSOCKET) == 0) {
|
2011-02-23 22:14:30 -05:00
|
|
|
/* this _get_osfhandle if from win32iop.h in the perl distribution,
|
|
|
|
* not the one provided by Windows
|
|
|
|
*/
|
|
|
|
fd = _get_osfhandle(fd);
|
|
|
|
if (fd < 0) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print(ph, "Invalid file descriptor");
|
2011-02-23 22:14:30 -05:00
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
data = malloc (sizeof (HookData));
|
|
|
|
if (data == NULL) {
|
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:16:10 -04:00
|
|
|
data->callback = newSVsv (callback);
|
|
|
|
data->userdata = newSVsv (userdata);
|
|
|
|
data->depth = 0;
|
|
|
|
data->package = newSVsv (package);
|
2012-10-30 03:42:48 -04:00
|
|
|
hook = hexchat_hook_fd (ph, fd, flags, fd_cb, data);
|
2011-02-23 22:14:30 -05:00
|
|
|
data->hook = hook;
|
|
|
|
|
|
|
|
XSRETURN_IV (PTR2IV (hook));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_unhook)
|
|
|
|
{
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook *hook;
|
2011-02-23 22:14:30 -05:00
|
|
|
HookData *userdata;
|
|
|
|
int retCount = 0;
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::unhook(hook)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
2012-10-30 03:42:48 -04:00
|
|
|
hook = INT2PTR (hexchat_hook *, SvUV (ST (0)));
|
|
|
|
userdata = (HookData *) hexchat_unhook (ph, hook);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
if (userdata != NULL) {
|
|
|
|
if (userdata->callback != NULL) {
|
|
|
|
SvREFCNT_dec (userdata->callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (userdata->userdata != NULL) {
|
|
|
|
XPUSHs (sv_mortalcopy (userdata->userdata));
|
|
|
|
SvREFCNT_dec (userdata->userdata);
|
|
|
|
retCount = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (userdata->package != NULL) {
|
|
|
|
SvREFCNT_dec (userdata->package);
|
|
|
|
}
|
2012-07-13 14:16:10 -04:00
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
free (userdata);
|
|
|
|
}
|
|
|
|
XSRETURN (retCount);
|
|
|
|
}
|
|
|
|
XSRETURN_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xchat::Internal::command(command) */
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_command)
|
|
|
|
{
|
|
|
|
char *cmd = NULL;
|
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::Internal::command(command)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
cmd = SvPV_nolen (ST (0));
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_command (ph, cmd);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
XSRETURN_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_find_context)
|
|
|
|
{
|
|
|
|
char *server = NULL;
|
|
|
|
char *chan = NULL;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_context *RETVAL;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
dXSARGS;
|
|
|
|
if (items > 2)
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::find_context ([channel, [server]])");
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
switch (items) {
|
|
|
|
case 0: /* no server name and no channel name */
|
|
|
|
/* nothing to do, server and chan are already NULL */
|
|
|
|
break;
|
|
|
|
case 1: /* channel name only */
|
|
|
|
/* change channel value only if it is true or 0 */
|
|
|
|
/* otherwise leave it as null */
|
|
|
|
if (SvTRUE (ST (0)) || SvNIOK (ST (0))) {
|
|
|
|
chan = SvPV_nolen (ST (0));
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_printf( ph, "XSUB - find_context( %s, NULL )", chan ); */
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2012-10-30 03:42:48 -04:00
|
|
|
/* else { hexchat_print( ph, "XSUB - find_context( NULL, NULL )" ); } */
|
2011-02-23 22:14:30 -05:00
|
|
|
/* chan is already NULL */
|
|
|
|
break;
|
|
|
|
case 2: /* server and channel */
|
|
|
|
/* change channel value only if it is true or 0 */
|
|
|
|
/* otherwise leave it as NULL */
|
|
|
|
if (SvTRUE (ST (0)) || SvNIOK (ST (0))) {
|
|
|
|
chan = SvPV_nolen (ST (0));
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_printf( ph, "XSUB - find_context( %s, NULL )", SvPV_nolen(ST(0) )); */
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
/* else { hexchat_print( ph, "XSUB - 2 arg NULL chan" ); } */
|
2011-02-23 22:14:30 -05:00
|
|
|
/* change server value only if it is true or 0 */
|
|
|
|
/* otherwise leave it as NULL */
|
|
|
|
if (SvTRUE (ST (1)) || SvNIOK (ST (1))) {
|
|
|
|
server = SvPV_nolen (ST (1));
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_printf( ph, "XSUB - find_context( NULL, %s )", SvPV_nolen(ST(1) )); */
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2012-10-30 03:42:48 -04:00
|
|
|
/* else { hexchat_print( ph, "XSUB - 2 arg NULL server" ); } */
|
2011-02-23 22:14:30 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
RETVAL = hexchat_find_context (ph, server, chan);
|
2011-02-23 22:14:30 -05:00
|
|
|
if (RETVAL != NULL) {
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_print (ph, "XSUB - context found"); */
|
2011-02-23 22:14:30 -05:00
|
|
|
XSRETURN_IV (PTR2IV (RETVAL));
|
|
|
|
} else {
|
2012-10-30 03:42:48 -04:00
|
|
|
/* hexchat_print (ph, "XSUB - context not found"); */
|
2011-02-23 22:14:30 -05:00
|
|
|
XSRETURN_UNDEF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_get_context)
|
|
|
|
{
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 0) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::get_context()");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
2012-10-30 03:42:48 -04:00
|
|
|
XSRETURN_IV (PTR2IV (hexchat_get_context (ph)));
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_set_context)
|
|
|
|
{
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_context *ctx;
|
2011-02-23 22:14:30 -05:00
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::set_context(ctx)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
2012-10-30 03:42:48 -04:00
|
|
|
ctx = INT2PTR (hexchat_context *, SvUV (ST (0)));
|
|
|
|
XSRETURN_IV ((IV) hexchat_set_context (ph, ctx));
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_nickcmp)
|
|
|
|
{
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 2) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::nickcmp(s1, s2)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
2012-10-30 03:42:48 -04:00
|
|
|
XSRETURN_IV ((IV) hexchat_nickcmp (ph, SvPV_nolen (ST (0)),
|
2011-02-23 22:14:30 -05:00
|
|
|
SvPV_nolen (ST (1))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_get_list)
|
|
|
|
{
|
|
|
|
SV *name;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_list *list;
|
2011-02-23 22:14:30 -05:00
|
|
|
const char *const *fields;
|
|
|
|
int count = 0; /* return value for scalar context */
|
|
|
|
dXSARGS;
|
|
|
|
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::get_list(name)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
SP -= items; /*remove the argument list from the stack */
|
|
|
|
|
|
|
|
name = ST (0);
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
list = hexchat_list_get (ph, SvPV_nolen (name));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
if (list == NULL) {
|
|
|
|
XSRETURN_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GIMME_V == G_SCALAR) {
|
2012-10-30 03:42:48 -04:00
|
|
|
while (hexchat_list_next (ph, list)) {
|
2011-02-23 22:14:30 -05:00
|
|
|
count++;
|
|
|
|
}
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_list_free (ph, list);
|
2011-02-23 22:14:30 -05:00
|
|
|
XSRETURN_IV ((IV) count);
|
|
|
|
}
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
fields = hexchat_list_fields (ph, SvPV_nolen (name));
|
|
|
|
while (hexchat_list_next (ph, list)) {
|
2011-02-23 22:14:30 -05:00
|
|
|
XPUSHs (list_item_to_sv (list, fields));
|
|
|
|
}
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_list_free (ph, list);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
PUTBACK;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
XS (XS_Xchat_Embed_plugingui_remove)
|
|
|
|
{
|
|
|
|
void *gui_entry;
|
|
|
|
dXSARGS;
|
|
|
|
if (items != 1) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Usage: Xchat::Embed::plugingui_remove(handle)");
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
gui_entry = INT2PTR (void *, SvUV (ST (0)));
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_plugingui_remove (ph, gui_entry);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
XSRETURN_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* xs_init is the second argument perl_parse. As the name hints, it
|
|
|
|
initializes XS subroutines (see the perlembed manpage) */
|
|
|
|
static void
|
|
|
|
xs_init (pTHX)
|
|
|
|
{
|
|
|
|
HV *stash;
|
|
|
|
SV *version;
|
|
|
|
/* This one allows dynamic loading of perl modules in perl
|
|
|
|
scripts by the 'use perlmod;' construction */
|
|
|
|
newXS ("DynaLoader::boot_DynaLoader", boot_DynaLoader, __FILE__);
|
|
|
|
/* load up all the custom IRC perl functions */
|
|
|
|
newXS ("Xchat::Internal::register", XS_Xchat_register, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::hook_server", XS_Xchat_hook_server, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::hook_command", XS_Xchat_hook_command, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::hook_print", XS_Xchat_hook_print, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::hook_timer", XS_Xchat_hook_timer, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::hook_fd", XS_Xchat_hook_fd, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::unhook", XS_Xchat_unhook, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::print", XS_Xchat_print, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::command", XS_Xchat_command, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::set_context", XS_Xchat_set_context, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::get_info", XS_Xchat_get_info, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::context_info", XS_Xchat_context_info, __FILE__);
|
|
|
|
newXS ("Xchat::Internal::get_list", XS_Xchat_get_list, __FILE__);
|
|
|
|
|
|
|
|
newXS ("Xchat::find_context", XS_Xchat_find_context, __FILE__);
|
|
|
|
newXS ("Xchat::get_context", XS_Xchat_get_context, __FILE__);
|
|
|
|
newXS ("Xchat::get_prefs", XS_Xchat_get_prefs, __FILE__);
|
|
|
|
newXS ("Xchat::emit_print", XS_Xchat_emit_print, __FILE__);
|
|
|
|
newXS ("Xchat::send_modes", XS_Xchat_send_modes, __FILE__);
|
|
|
|
newXS ("Xchat::nickcmp", XS_Xchat_nickcmp, __FILE__);
|
|
|
|
|
|
|
|
newXS ("Xchat::Embed::plugingui_remove", XS_Xchat_Embed_plugingui_remove,
|
|
|
|
__FILE__);
|
|
|
|
|
|
|
|
stash = get_hv ("Xchat::", TRUE);
|
|
|
|
if (stash == NULL) {
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
2012-10-30 02:18:25 -04:00
|
|
|
newCONSTSUB (stash, "PRI_HIGHEST", newSViv (HEXCHAT_PRI_HIGHEST));
|
|
|
|
newCONSTSUB (stash, "PRI_HIGH", newSViv (HEXCHAT_PRI_HIGH));
|
|
|
|
newCONSTSUB (stash, "PRI_NORM", newSViv (HEXCHAT_PRI_NORM));
|
|
|
|
newCONSTSUB (stash, "PRI_LOW", newSViv (HEXCHAT_PRI_LOW));
|
|
|
|
newCONSTSUB (stash, "PRI_LOWEST", newSViv (HEXCHAT_PRI_LOWEST));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
newCONSTSUB (stash, "EAT_NONE", newSViv (HEXCHAT_EAT_NONE));
|
2012-10-30 05:42:37 -04:00
|
|
|
newCONSTSUB (stash, "EAT_XCHAT", newSViv (HEXCHAT_EAT_HEXCHAT));
|
2012-10-30 02:40:37 -04:00
|
|
|
newCONSTSUB (stash, "EAT_PLUGIN", newSViv (HEXCHAT_EAT_PLUGIN));
|
|
|
|
newCONSTSUB (stash, "EAT_ALL", newSViv (HEXCHAT_EAT_ALL));
|
2012-10-30 02:25:40 -04:00
|
|
|
newCONSTSUB (stash, "FD_READ", newSViv (HEXCHAT_FD_READ));
|
|
|
|
newCONSTSUB (stash, "FD_WRITE", newSViv (HEXCHAT_FD_WRITE));
|
|
|
|
newCONSTSUB (stash, "FD_EXCEPTION", newSViv (HEXCHAT_FD_EXCEPTION));
|
|
|
|
newCONSTSUB (stash, "FD_NOTSOCKET", newSViv (HEXCHAT_FD_NOTSOCKET));
|
2011-02-23 22:14:30 -05:00
|
|
|
newCONSTSUB (stash, "KEEP", newSViv (1));
|
|
|
|
newCONSTSUB (stash, "REMOVE", newSViv (0));
|
|
|
|
|
|
|
|
version = get_sv( "Xchat::VERSION", 1 );
|
|
|
|
sv_setpv( version, PACKAGE_VERSION );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
perl_init (void)
|
|
|
|
{
|
|
|
|
int warn;
|
|
|
|
int arg_count;
|
|
|
|
char *perl_args[] = { "", "-e", "0", "-w" };
|
|
|
|
char *env[] = { "" };
|
|
|
|
static const char xchat_definitions[] = {
|
2012-11-11 07:51:50 -05:00
|
|
|
/* Redefine the $SIG{__WARN__} handler to have HexChat
|
2011-02-23 22:14:30 -05:00
|
|
|
printing warnings in the main window. (TheHobbit) */
|
|
|
|
#include "xchat.pm.h"
|
|
|
|
};
|
|
|
|
#ifdef OLD_PERL
|
|
|
|
static const char irc_definitions[] = {
|
|
|
|
#include "irc.pm.h"
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
|
|
|
|
/* Problem is, dynamicaly loaded modules check out the $]
|
|
|
|
var. It appears that in the embedded interpreter we get
|
|
|
|
5,00503 as soon as the LC_NUMERIC locale calls for a comma
|
|
|
|
instead of a point in separating integer and decimal
|
|
|
|
parts. I realy can't understant why... The following
|
|
|
|
appears to be an awful workaround... But it'll do until I
|
|
|
|
(or someone else :)) found the "right way" to solve this
|
|
|
|
nasty problem. (TheHobbit <thehobbit@altern.org>) */
|
|
|
|
|
|
|
|
setlocale (LC_NUMERIC, "C");
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
warn = 0;
|
2012-10-30 03:58:50 -04:00
|
|
|
hexchat_get_prefs (ph, "perl_warnings", NULL, &warn);
|
2011-02-23 22:14:30 -05:00
|
|
|
arg_count = warn ? 4 : 3;
|
|
|
|
|
|
|
|
PERL_SYS_INIT3 (&arg_count, (char ***)&perl_args, (char ***)&env);
|
|
|
|
my_perl = perl_alloc ();
|
|
|
|
perl_construct (my_perl);
|
|
|
|
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
|
|
|
|
perl_parse (my_perl, xs_init, arg_count, perl_args, (char **)NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Now initialising the perl interpreter by loading the
|
|
|
|
perl_definition array.
|
|
|
|
*/
|
|
|
|
|
|
|
|
eval_pv (xchat_definitions, TRUE);
|
|
|
|
#ifdef OLD_PERL
|
|
|
|
eval_pv (irc_definitions, TRUE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
perl_load_file (char *filename)
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
static HMODULE lib = NULL;
|
|
|
|
|
|
|
|
if (!lib) {
|
|
|
|
lib = LoadLibraryA (PERL_DLL);
|
|
|
|
if (!lib) {
|
|
|
|
if (GetLastError () == ERROR_BAD_EXE_FORMAT)
|
|
|
|
/* http://forum.xchat.org/viewtopic.php?t=3277 */
|
|
|
|
thread_mbox ("Cannot use this " PERL_DLL "\n\n"
|
2011-02-28 12:59:32 -05:00
|
|
|
#ifdef _WIN64
|
2011-07-27 18:32:29 -04:00
|
|
|
"64-bit Strawberry Perl is required.");
|
2011-02-28 12:59:32 -05:00
|
|
|
#else
|
2011-07-27 18:32:29 -04:00
|
|
|
"32-bit Strawberry Perl is required.");
|
2011-02-28 12:59:32 -05:00
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
else {
|
|
|
|
/* a lot of people install this old version */
|
|
|
|
lib = LoadLibraryA ("perl56.dll");
|
|
|
|
if (lib) {
|
|
|
|
FreeLibrary (lib);
|
|
|
|
lib = NULL;
|
2012-11-11 20:24:19 -05:00
|
|
|
thread_mbox ("Cannot open " PERL_DLL "!\n\n"
|
|
|
|
"You must have a Visual C++ build of Perl "
|
|
|
|
PERL_REQUIRED_VERSION " installed in order to\n"
|
2013-03-24 17:49:45 -04:00
|
|
|
"run Perl scripts. A reboot may be required.\n\n"
|
2013-03-18 20:29:28 -04:00
|
|
|
"http://hexchat.org/downloads.html\n\n"
|
2011-02-23 22:14:30 -05:00
|
|
|
"I have found Perl 5.6, but that is too old.");
|
|
|
|
} else {
|
2012-11-11 20:24:19 -05:00
|
|
|
thread_mbox ("Cannot open " PERL_DLL "!\n\n"
|
|
|
|
"You must have a Visual C++ build of Perl "
|
2011-11-22 21:04:25 -05:00
|
|
|
PERL_REQUIRED_VERSION " installed in order to\n"
|
2013-03-24 17:49:45 -04:00
|
|
|
"run Perl scripts. A reboot may be required.\n\n"
|
2013-03-18 20:29:28 -04:00
|
|
|
"http://hexchat.org/downloads.html\n\n"
|
2012-11-11 20:24:19 -05:00
|
|
|
"Make sure Perl's bin directory is in your PATH.");
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* failure */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* success */
|
|
|
|
FreeLibrary (lib);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (my_perl == NULL) {
|
|
|
|
perl_init ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return execute_perl (sv_2mortal (newSVpv ("Xchat::Embed::load", 0)),
|
|
|
|
filename);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
perl_end (void)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (my_perl != NULL) {
|
|
|
|
execute_perl (sv_2mortal (newSVpv ("Xchat::Embed::unload_all", 0)), "");
|
|
|
|
PL_perl_destruct_level = 1;
|
|
|
|
perl_destruct (my_perl);
|
|
|
|
perl_free (my_perl);
|
|
|
|
PERL_SYS_TERM();
|
|
|
|
my_perl = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
perl_command_unloadall (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
if (my_perl != NULL) {
|
|
|
|
execute_perl (sv_2mortal (newSVpv ("Xchat::Embed::unload_all", 0)), "");
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
perl_command_reloadall (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
if (my_perl != NULL) {
|
|
|
|
execute_perl (sv_2mortal (newSVpv ("Xchat::Embed::reload_all", 0)), "");
|
|
|
|
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
} else {
|
|
|
|
perl_auto_load( NULL );
|
|
|
|
}
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
perl_command_load (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
char *file = get_filename (word, word_eol);
|
|
|
|
|
|
|
|
if (file != NULL )
|
|
|
|
{
|
|
|
|
perl_load_file (file);
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
perl_command_unload (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
char *file = get_filename (word, word_eol);
|
|
|
|
|
|
|
|
if (my_perl != NULL && file != NULL) {
|
|
|
|
execute_perl (sv_2mortal (newSVpv ("Xchat::Embed::unload", 0)), file);
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
perl_command_reload (char *word[], char *word_eol[], void *userdata)
|
|
|
|
{
|
|
|
|
char *file = get_filename (word, word_eol);
|
|
|
|
|
|
|
|
if (my_perl != NULL && file != NULL) {
|
|
|
|
execute_perl (sv_2mortal (newSVpv ("Xchat::Embed::reload", 0)), file);
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2012-10-30 05:42:37 -04:00
|
|
|
return HEXCHAT_EAT_HEXCHAT;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_plugin_get_info (char **name, char **desc, char **version,
|
2011-02-23 22:14:30 -05:00
|
|
|
void **reserved)
|
|
|
|
{
|
|
|
|
*name = "Perl";
|
|
|
|
*desc = "Perl scripting interface";
|
|
|
|
*version = PACKAGE_VERSION;
|
|
|
|
if (reserved)
|
|
|
|
*reserved = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Reinit safeguard */
|
|
|
|
|
|
|
|
static int initialized = 0;
|
|
|
|
|
|
|
|
int
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_plugin_init (hexchat_plugin * plugin_handle, char **plugin_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
char **plugin_desc, char **plugin_version, char *arg)
|
|
|
|
{
|
|
|
|
if (initialized != 0) {
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (plugin_handle, "Perl interface already loaded\n");
|
2011-02-23 22:14:30 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ph = plugin_handle;
|
|
|
|
initialized = 1;
|
|
|
|
|
|
|
|
*plugin_name = "Perl";
|
|
|
|
*plugin_desc = "Perl scripting interface";
|
|
|
|
*plugin_version = PACKAGE_VERSION;
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_command (ph, "load", HEXCHAT_PRI_NORM, perl_command_load, 0, 0);
|
|
|
|
hexchat_hook_command (ph, "unload", HEXCHAT_PRI_NORM, perl_command_unload, 0,
|
2011-02-23 22:14:30 -05:00
|
|
|
0);
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_command (ph, "reload", HEXCHAT_PRI_NORM, perl_command_reload, 0,
|
2011-02-23 22:14:30 -05:00
|
|
|
0);
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_command (ph, "pl_reload", HEXCHAT_PRI_NORM, perl_command_reload, 0,
|
2011-02-23 22:14:30 -05:00
|
|
|
0);
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_command (ph, "unloadall", HEXCHAT_PRI_NORM,
|
2011-02-23 22:14:30 -05:00
|
|
|
perl_command_unloadall, 0, 0);
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_command (ph, "reloadall", HEXCHAT_PRI_NORM,
|
2011-02-23 22:14:30 -05:00
|
|
|
perl_command_reloadall, 0, 0);
|
|
|
|
|
|
|
|
/*perl_init (); */
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_timer (ph, 0, perl_auto_load, NULL );
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (ph, "Perl interface loaded\n");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_plugin_deinit (hexchat_plugin * plugin_handle)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
perl_end ();
|
|
|
|
|
|
|
|
initialized = 0;
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_print (plugin_handle, "Perl interface unloaded\n");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|