Remove window checks from test plugins

This commit is contained in:
James Booth
2016-07-12 01:59:24 +01:00
parent ff23b5b2ce
commit 9c7f05305b
2 changed files with 110 additions and 123 deletions

View File

@@ -23,13 +23,8 @@ def _handle_win_input(win, line):
prof.win_show(win, "Input received: " + line)
def _create_win():
if prof.win_exists(plugin_win) == False:
prof.win_create(plugin_win, _handle_win_input)
def _consalert():
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.cons_alert()
prof.win_show(plugin_win, "called -> prof.cons_alert")
@@ -40,7 +35,7 @@ def _consshow(msg):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.cons_show(msg)
prof.win_show(plugin_win, "called -> prof.cons_show: " + msg)
@@ -51,7 +46,7 @@ def _consshow_t(group, key, dflt, msg):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
groupval = None if group == "none" else group
keyval = None if key == "none" else key
@@ -62,7 +57,7 @@ def _consshow_t(group, key, dflt, msg):
def _constest():
res = prof.current_win_is_console()
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
if res:
prof.win_show(plugin_win, "called -> prof.current_win_is_console: true")
@@ -75,7 +70,7 @@ def _winshow(msg):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.win_show(plugin_win, msg)
prof.win_show(plugin_win, "called -> prof.win_show: " + msg)
@@ -86,7 +81,7 @@ def _winshow_t(group, key, dflt, msg):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
groupval = None if group == "none" else group
keyval = None if key == "none" else key
@@ -100,7 +95,7 @@ def _sendline(line):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.send_line(line)
prof.win_show(plugin_win, "called -> prof.send_line: " + line)
@@ -111,7 +106,7 @@ def _notify(msg):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.notify(msg, 5000, "python-test plugin")
prof.win_show(plugin_win, "called -> prof.notify: " + msg)
@@ -119,7 +114,7 @@ def _notify(msg):
def _get(subject):
if subject == "recipient":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
recipient = prof.get_current_recipient();
if recipient:
prof.win_focus(plugin_win)
@@ -128,7 +123,7 @@ def _get(subject):
prof.win_focus(plugin_win)
prof.win_show(plugin_win, "called -> prof_get_current_recipient: <none>")
elif subject == "room":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
room = prof.get_current_muc()
if room:
prof.win_focus(plugin_win)
@@ -137,7 +132,7 @@ def _get(subject):
prof.win_focus(plugin_win)
prof.win_show(plugin_win, "called -> prof_get_current_muc: <none>")
elif subject == "nick":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
nick = prof.get_current_nick()
if nick:
prof.win_focus(plugin_win)
@@ -146,7 +141,7 @@ def _get(subject):
prof.win_focus(plugin_win)
prof.win_show(plugin_win, "called -> prof_get_current_nick: <none>")
elif subject == "occupants":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
occupants = prof.get_current_occupants()
if occupants:
prof.win_focus(plugin_win)
@@ -166,22 +161,22 @@ def _log(level, msg):
return
if level == "debug":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.log_debug(msg)
prof.win_show(plugin_win, "called -> prof.log_debug: " + msg)
elif level == "info":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.log_info(msg)
prof.win_show(plugin_win, "called -> prof.log_info: " + msg)
elif level == "warning":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.log_warning(msg)
prof.win_show(plugin_win, "called -> prof.log_warning: " + msg)
elif level == "error":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.log_error(msg)
prof.win_show(plugin_win, "called -> prof.log_error: " + msg)
@@ -190,7 +185,7 @@ def _log(level, msg):
def _count():
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.win_show(plugin_win, "Count: " + str(count))
@@ -202,7 +197,7 @@ def _ping(jid):
prof.cons_bad_cmd_usage("/python-test")
return
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
res = prof.send_stanza("<iq to='" + jid + "' id='pythonplugin-" + str(ping_id) + "' type='get'><ping xmlns='urn:xmpp:ping'/></iq>")
ping_id = ping_id + 1
@@ -227,7 +222,7 @@ def _boolean(op, group, key, value_str):
if op == "get":
dflt = False
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
res = prof.settings_get_boolean(group, key, dflt)
if res:
@@ -238,7 +233,7 @@ def _boolean(op, group, key, value_str):
value = False
if value_str == "true":
value = True
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.settings_set_boolean(group, key, value)
prof.win_show(plugin_win, "Set [" + group + "] " + key + " to " + str(value))
@@ -258,7 +253,7 @@ def _string(op, group, key, value):
return
if op == "get":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
res = prof.settings_get_string(group, key, None)
if res:
@@ -266,7 +261,7 @@ def _string(op, group, key, value):
else:
prof.win_show(plugin_win, "String setting: None")
elif op == "set":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.settings_set_string(group, key, value)
prof.win_show(plugin_win, "Set [" + group + "] " + key + " to " + value)
@@ -282,12 +277,12 @@ def _int(op, group, key, value):
return
if op == "get":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
res = prof.settings_get_int(group, key, 0)
prof.win_show(plugin_win, "Integer setting: " + str(res))
elif op == "set":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.settings_set_int(group, key, int(value))
prof.win_show(plugin_win, "Set [" + group + "] " + key + " to " + str(value))
@@ -307,13 +302,13 @@ def _completer(op, item):
return
if op == "add":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.completer_add("/python-test", [item])
prof.win_show(plugin_win, "Added \"" + item + "\" to /python-test completer")
prof.completer_add("/python-test completer remove", [item])
elif op == "remove":
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_focus(plugin_win)
prof.completer_remove("/python-test", [item])
prof.win_show(plugin_win, "Removed \"" + item + "\" to /python-test completer")
@@ -344,7 +339,7 @@ def _cmd_pythontest(subcmd=None, arg1=None, arg2=None, arg3=None, arg4=None):
def timed_callback():
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "timed -> timed_callback called")
@@ -472,14 +467,14 @@ def prof_init(version, status, account_name, fulljid):
def prof_on_start():
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_start")
def prof_on_shutdown():
global thread_stop
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_shutdown")
thread_stop.set()
count_thread.join()
@@ -488,64 +483,64 @@ def prof_on_shutdown():
def prof_on_unload():
global thread_stop
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_unload")
thread_stop.set()
count_thread.join()
def prof_on_connect(account_name, fulljid):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_connect: " + account_name + ", " + fulljid)
def prof_on_disconnect(account_name, fulljid):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_disconnect: " + account_name + ", " + fulljid)
def prof_pre_chat_message_display(jid, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_pre_chat_message_display: " + jid + ", " + message)
def prof_post_chat_message_display(jid, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_post_chat_message_display: " + jid + ", " + message)
def prof_pre_chat_message_send(jid, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_pre_chat_message_send: " + jid + ", " + message)
def prof_post_chat_message_send(jid, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_post_chat_message_send: " + jid + ", " + message)
def prof_pre_room_message_display(room, nick, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_pre_room_message_display: " + room + ", " + nick + ", " + message)
def prof_post_room_message_display(room, nick, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_post_room_message_display: " + room + ", " + nick + ", " + message)
def prof_pre_room_message_send(room, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_pre_room_message_send: " + room + ", " + message)
def prof_post_room_message_send(room, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_post_room_message_send: " + room + ", " + message)
def prof_on_room_history_message(room, nick, message, timestamp):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
if timestamp:
prof.win_show(plugin_win, "fired -> prof_on_room_history_message: " + room + ", " + nick + ", " + message + ", " + timestamp)
else:
@@ -553,60 +548,60 @@ def prof_on_room_history_message(room, nick, message, timestamp):
def prof_pre_priv_message_display(room, nick, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_pre_priv_message_display: " + room + ", " + nick + ", " + message)
def prof_post_priv_message_display(room, nick, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_post_priv_message_display: " + room + ", " + nick + ", " + message)
def prof_pre_priv_message_send(room, nick, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_pre_priv_message_send: " + room + ", " + nick + ", " + message)
def prof_post_priv_message_send(room, nick, message):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_post_priv_message_send: " + room + ", " + nick + ", " + message)
def prof_on_message_stanza_send(stanza):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_message_stanza_send: " + stanza)
def prof_on_message_stanza_receive(stanza):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_message_stanza_receive: " + stanza)
return True
def prof_on_presence_stanza_send(stanza):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_presence_stanza_send: " + stanza)
def prof_on_presence_stanza_receive(stanza):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_presence_stanza_receive: " + stanza)
return True
def prof_on_iq_stanza_send(stanza):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_iq_stanza_send: " + stanza)
def prof_on_iq_stanza_receive(stanza):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_iq_stanza_receive: " + stanza)
return True
def prof_on_contact_offline(barejid, resource, status):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
if status:
prof.win_show(plugin_win, "fired -> prof_on_contact_offline: " + barejid + "/" + resource + " \"" + status + "\"")
else:
@@ -614,7 +609,7 @@ def prof_on_contact_offline(barejid, resource, status):
def prof_on_contact_presence(barejid, resource, presence, status, priority):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
if status:
prof.win_show(plugin_win, "fired -> prof_on_contact_presence: " + barejid + "/" + resource + " " + presence + " " + str(priority) + " \"" + status + "\"")
else:
@@ -622,10 +617,10 @@ def prof_on_contact_presence(barejid, resource, presence, status, priority):
def prof_on_chat_win_focus(barejid):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_chat_win_focus: " + barejid)
def prof_on_room_win_focus(roomjid):
_create_win()
prof.win_create(plugin_win, _handle_win_input)
prof.win_show(plugin_win, "fired -> prof_on_room_win_focus: " + roomjid)

View File

@@ -31,18 +31,10 @@ handle_win_input(PROF_WIN_TAG win, char *line)
prof_win_show(win, buf);
}
void
create_win(void)
{
if (!prof_win_exists(plugin_win)) {
prof_win_create(plugin_win, handle_win_input);
}
}
void
consalert(void)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_cons_alert();
prof_win_show(plugin_win, "called -> prof_cons_alert");
@@ -55,7 +47,7 @@ consshow(char *msg)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_cons_show(msg);
char *str = "called -> prof_cons_show: ";
@@ -71,7 +63,7 @@ consshow_t(char *group, char *key, char *def, char *msg)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char *groupval = strcmp(group, "none") == 0 ? NULL : group;
char *keyval = strcmp(key, "none") == 0 ? NULL : key;
@@ -87,7 +79,7 @@ void
constest(void)
{
int res = prof_current_win_is_console();
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
if (res) {
prof_win_show(plugin_win, "called -> prof_current_win_is_console: true");
@@ -103,7 +95,7 @@ winshow(char *msg)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_win_show(plugin_win, msg);
char *str = "called -> prof_win_show: ";
@@ -119,7 +111,7 @@ winshow_t(char *group, char *key, char *def, char *msg)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char *groupval = strcmp(group, "none") == 0 ? NULL : group;
char *keyval = strcmp(key, "none") == 0 ? NULL : key;
@@ -138,7 +130,7 @@ sendline(char *line)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_send_line(line);
char *str = "called -> prof_send_line: ";
@@ -154,7 +146,7 @@ donotify(char *msg)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_notify(msg, 5000, "c-test plugin");
char *str = "called -> prof_notify: ";
@@ -172,7 +164,7 @@ getsubject(char *subject)
}
if (strcmp(subject, "recipient") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
char *recipient = prof_get_current_recipient();
if (recipient) {
prof_win_focus(plugin_win);
@@ -185,7 +177,7 @@ getsubject(char *subject)
prof_win_show(plugin_win, "called -> prof_get_current_recipient: <none>");
}
} else if (strcmp(subject, "room") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
char *room = prof_get_current_muc();
if (room) {
prof_win_focus(plugin_win);
@@ -198,7 +190,7 @@ getsubject(char *subject)
prof_win_show(plugin_win, "called -> prof_get_current_muc: <none>");
}
} else if (strcmp(subject, "nick") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
char *nick = prof_get_current_nick();
if (nick) {
prof_win_focus(plugin_win);
@@ -211,7 +203,7 @@ getsubject(char *subject)
prof_win_show(plugin_win, "called -> prof_get_current_nick: <none>");
}
} else if (strcmp(subject, "occupants") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
char **occupants = prof_get_current_occupants();
if (occupants) {
prof_win_focus(plugin_win);
@@ -239,7 +231,7 @@ logmsg(char *level, char *msg)
}
if (strcmp(level, "debug") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_log_debug(msg);
char *str = "called -> prof_log_debug: ";
@@ -247,7 +239,7 @@ logmsg(char *level, char *msg)
sprintf(buf, "%s%s", str, msg);
prof_win_show(plugin_win, buf);
} else if (strcmp(level, "info") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_log_info(msg);
char *str = "called -> prof_log_info: ";
@@ -255,7 +247,7 @@ logmsg(char *level, char *msg)
sprintf(buf, "%s%s", str, msg);
prof_win_show(plugin_win, buf);
} else if (strcmp(level, "warning") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_log_warning(msg);
char *str = "called -> prof_log_warning: ";
@@ -263,7 +255,7 @@ logmsg(char *level, char *msg)
sprintf(buf, "%s%s", str, msg);
prof_win_show(plugin_win, buf);
} else if (strcmp(level, "error") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_log_error(msg);
char *str = "called -> prof_log_error: ";
@@ -278,7 +270,7 @@ logmsg(char *level, char *msg)
void
docount(void)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char buf[100];
sprintf(buf, "Count: %d", count);
@@ -292,7 +284,7 @@ doping(char *jid)
prof_cons_bad_cmd_usage("/c-test");
return;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char *strstart = "<iq to='";
char *strend = "' type='get'><ping xmlns='urn:xmpp:ping'/></iq>";
@@ -330,7 +322,7 @@ booleansetting(char *op, char *group, char *key, char *value_str)
if (strcmp(op, "get") == 0) {
int dflt = 0;
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
int res = prof_settings_get_boolean(group, key, dflt);
if (res) {
@@ -343,7 +335,7 @@ booleansetting(char *op, char *group, char *key, char *value_str)
if (strcmp(value_str, "true") == 0) {
value = 1;
}
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_settings_set_boolean(group, key, value);
char buf[5 + strlen(group) + 2 + strlen(key) + 4 + strlen(value_str)];
@@ -371,7 +363,7 @@ stringsetting(char *op, char *group, char *key, char *value)
}
if (strcmp(op, "get") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char *res = prof_settings_get_string(group, key, NULL);
if (res) {
@@ -382,7 +374,7 @@ stringsetting(char *op, char *group, char *key, char *value)
prof_win_show(plugin_win, "String setting: NULL");
}
} else if (strcmp(op, "set") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
prof_settings_set_string(group, key, value);
char buf[5 + strlen(group) + 2 + strlen(key) + 4 + strlen(value)];
@@ -405,14 +397,14 @@ intsetting(char *op, char *group, char *key, char *value)
}
if (strcmp(op, "get") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
int res = prof_settings_get_int(group, key, 0);
char buf[256];
sprintf(buf, "Integer setting: %d", res);
prof_win_show(plugin_win, buf);
} else if (strcmp(op, "set") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
int int_value = atoi(value);
prof_settings_set_int(group, key, int_value);
@@ -437,7 +429,7 @@ completer(char *op, char *item)
}
if (strcmp(op, "add") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char *ac[] = { item, NULL };
prof_completer_add("/c-test", ac);
@@ -446,7 +438,7 @@ completer(char *op, char *item)
prof_win_show(plugin_win, buf);
prof_completer_add("/c-test completer remove", ac);
} else if (strcmp(op, "remove") == 0) {
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_focus(plugin_win);
char *ac[] = { item, NULL };
prof_completer_remove("/c-test", ac);
@@ -485,7 +477,7 @@ cmd_ctest(char **args)
void
timed_callback(void)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_show(plugin_win, "timed -> timed_callback called");
}
@@ -615,14 +607,14 @@ prof_init(const char * const version, const char * const status, const char *con
void
prof_on_start(void)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_show(plugin_win, "fired -> prof_on_start");
}
void
prof_on_shutdown(void)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_show(plugin_win, "fired -> prof_on_shutdown");
pthread_cancel(worker_thread);
}
@@ -630,7 +622,7 @@ prof_on_shutdown(void)
void
prof_on_unload(void)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
prof_win_show(plugin_win, "fired -> prof_on_unload");
pthread_cancel(worker_thread);
}
@@ -638,7 +630,7 @@ prof_on_unload(void)
void
prof_on_connect(const char * const account_name, const char * const fulljid)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_connect: ";
char buf[strlen(str) + strlen(account_name) + 2 + strlen(fulljid) + 1];
@@ -649,7 +641,7 @@ prof_on_connect(const char * const account_name, const char * const fulljid)
void
prof_on_disconnect(const char * const account_name, const char * const fulljid)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_disconnect: ";
char buf[strlen(str) + strlen(account_name) + 2 + strlen(fulljid) + 1];
@@ -660,7 +652,7 @@ prof_on_disconnect(const char * const account_name, const char * const fulljid)
char*
prof_pre_chat_message_display(const char * const jid, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_pre_chat_message_display: ";
char buf[strlen(str) + strlen(jid) + 2 + strlen(message) + 1];
@@ -673,7 +665,7 @@ prof_pre_chat_message_display(const char * const jid, const char *message)
void
prof_post_chat_message_display(const char * const jid, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_post_chat_message_display: ";
char buf[strlen(str) + strlen(jid) + 2 + strlen(message) + 1];
@@ -684,7 +676,7 @@ prof_post_chat_message_display(const char * const jid, const char *message)
char*
prof_pre_chat_message_send(const char * const jid, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_pre_chat_message_send: ";
char buf[strlen(str) + strlen(jid) + 2 + strlen(message) + 1];
@@ -697,7 +689,7 @@ prof_pre_chat_message_send(const char * const jid, const char *message)
void
prof_post_chat_message_send(const char * const jid, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_post_chat_message_send: ";
char buf[strlen(str) + strlen(jid) + 2 + strlen(message) + 1];
@@ -708,7 +700,7 @@ prof_post_chat_message_send(const char * const jid, const char *message)
char*
prof_pre_room_message_display(const char * const room, const char * const nick, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_pre_room_message_display: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
@@ -721,7 +713,7 @@ prof_pre_room_message_display(const char * const room, const char * const nick,
void
prof_post_room_message_display(const char * const room, const char * const nick, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_post_room_message_display: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
@@ -732,7 +724,7 @@ prof_post_room_message_display(const char * const room, const char * const nick,
char *
prof_pre_room_message_send(const char * const room, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_pre_room_message_send: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(message) + 1];
@@ -745,7 +737,7 @@ prof_pre_room_message_send(const char * const room, const char *message)
void
prof_post_room_message_send(const char * const room, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_post_room_message_send: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(message) + 1];
@@ -756,7 +748,7 @@ prof_post_room_message_send(const char * const room, const char *message)
void
prof_on_room_history_message(const char * const room, const char *const nick, const char *const message, const char *const timestamp)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_room_history_message: ";
if (timestamp == NULL) {
@@ -773,7 +765,7 @@ prof_on_room_history_message(const char * const room, const char *const nick, co
char *
prof_pre_priv_message_display(const char * const room, const char * const nick, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_pre_priv_message_display: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
@@ -786,7 +778,7 @@ prof_pre_priv_message_display(const char * const room, const char * const nick,
void
prof_post_priv_message_display(const char * const room, const char * const nick, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_post_priv_message_display: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
@@ -797,7 +789,7 @@ prof_post_priv_message_display(const char * const room, const char * const nick,
char *
prof_pre_priv_message_send(const char * const room, const char * const nick, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_pre_priv_message_send: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
@@ -810,7 +802,7 @@ prof_pre_priv_message_send(const char * const room, const char * const nick, con
void
prof_post_priv_message_send(const char * const room, const char * const nick, const char *message)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_post_priv_message_send: ";
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
@@ -821,7 +813,7 @@ prof_post_priv_message_send(const char * const room, const char * const nick, co
char*
prof_on_message_stanza_send(const char *const stanza)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_message_stanza_send: ";
char buf[strlen(str) + strlen(stanza) + 1];
@@ -836,7 +828,7 @@ prof_on_message_stanza_send(const char *const stanza)
int
prof_on_message_stanza_receive(const char *const stanza)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_message_stanza_receive: ";
char buf[strlen(str) + strlen(stanza) + 1];
@@ -849,7 +841,7 @@ prof_on_message_stanza_receive(const char *const stanza)
char*
prof_on_presence_stanza_send(const char *const stanza)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_presence_stanza_send: ";
char buf[strlen(str) + strlen(stanza) + 1];
@@ -862,7 +854,7 @@ prof_on_presence_stanza_send(const char *const stanza)
int
prof_on_presence_stanza_receive(const char *const stanza)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_presence_stanza_receive: ";
char buf[strlen(str) + strlen(stanza) + 1];
@@ -875,7 +867,7 @@ prof_on_presence_stanza_receive(const char *const stanza)
char*
prof_on_iq_stanza_send(const char *const stanza)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_iq_stanza_send: ";
char buf[strlen(str) + strlen(stanza) + 1];
@@ -888,7 +880,7 @@ prof_on_iq_stanza_send(const char *const stanza)
int
prof_on_iq_stanza_receive(const char *const stanza)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_iq_stanza_receive: ";
char buf[strlen(str) + strlen(stanza) + 1];
@@ -901,7 +893,7 @@ prof_on_iq_stanza_receive(const char *const stanza)
void
prof_on_contact_offline(const char *const barejid, const char *const resource, const char *const status)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_contact_offline: ";
int status_len = status == NULL ? 0 : strlen(status) + 2;
@@ -917,7 +909,7 @@ prof_on_contact_offline(const char *const barejid, const char *const resource, c
void
prof_on_contact_presence(const char *const barejid, const char *const resource, const char *const presence, const char *const status, const int priority)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_contact_presence: ";
int status_len = status == NULL ? 0 : strlen(status) + 2;
@@ -933,7 +925,7 @@ prof_on_contact_presence(const char *const barejid, const char *const resource,
void
prof_on_chat_win_focus(const char *const barejid)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_chat_win_focus: ";
char buf[strlen(str) + strlen(barejid) + 1];
sprintf(buf, "%s%s", str, barejid);
@@ -943,7 +935,7 @@ prof_on_chat_win_focus(const char *const barejid)
void
prof_on_room_win_focus(const char *const roomjid)
{
create_win();
prof_win_create(plugin_win, handle_win_input);
char *str = "fired -> prof_on_room_win_focus: ";
char buf[strlen(str) + strlen(roomjid) + 1];
sprintf(buf, "%s%s", str, roomjid);