source: functions.c @ 2afae56

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 2afae56 was eaedfba, checked in by David Benjamin <davidben@mit.edu>, 13 years ago
Don't leak messages in owl_function_makemsg Just give the msgwin the memory we allocated instead of copying and deleting things.
  • Property mode set to 100644
File size: 95.8 KB
RevLine 
[7d4fbcd]1#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <signal.h>
[789462a]5#include <netinet/in.h>
[7d4fbcd]6#include <string.h>
7#include <time.h>
[2adaf1d]8#include <sys/types.h>
9#include <sys/stat.h>
[8f44c6b]10#include <sys/wait.h>
11#include <errno.h>
[d09e5a1]12#include <signal.h>
[7d4fbcd]13#include "owl.h"
[d564c3d]14#include "filterproc.h"
[7d4fbcd]15
[e19eb97]16char *owl_function_command(const char *cmdbuff)
[d54838d]17{
[7d4fbcd]18  owl_function_debugmsg("executing command: %s", cmdbuff);
19  return owl_cmddict_execute(owl_global_get_cmddict(&g), 
20                             owl_global_get_context(&g), cmdbuff);
21}
22
[e19eb97]23char *owl_function_command_argv(const char *const *argv, int argc)
[c4ba74d]24{
25  return owl_cmddict_execute_argv(owl_global_get_cmddict(&g),
26                                  owl_global_get_context(&g),
27                                  argv, argc);
28}
29
[e19eb97]30void owl_function_command_norv(const char *cmdbuff)
[d54838d]31{
[7d4fbcd]32  char *rv;
[4b464a4]33  rv=owl_function_command(cmdbuff);
[7d4fbcd]34  if (rv) owl_free(rv);
35}
36
[e19eb97]37void owl_function_command_alias(const char *alias_from, const char *alias_to)
[d54838d]38{
[7d4fbcd]39  owl_cmddict_add_alias(owl_global_get_cmddict(&g), alias_from, alias_to);
40}
41
[0a0fb74]42const owl_cmd *owl_function_get_cmd(const char *name)
[d54838d]43{
[7d4fbcd]44  return owl_cmddict_find(owl_global_get_cmddict(&g), name);
45}
46
[c79a047]47void owl_function_show_commands(void)
[d54838d]48{
[7d4fbcd]49  owl_list l;
50  owl_fmtext fm;
51
52  owl_fmtext_init_null(&fm);
53  owl_fmtext_append_bold(&fm, "Commands:  ");
54  owl_fmtext_append_normal(&fm, "(use 'show command <name>' for details)\n");
55  owl_cmddict_get_names(owl_global_get_cmddict(&g), &l);
56  owl_fmtext_append_list(&fm, &l, "\n", owl_function_cmd_describe);
57  owl_fmtext_append_normal(&fm, "\n");
58  owl_function_popless_fmtext(&fm);
[8d4b521]59  owl_cmddict_namelist_cleanup(&l);
[7ab0020]60  owl_fmtext_cleanup(&fm);
[7d4fbcd]61}
62
[e19eb97]63void owl_function_show_view(const char *viewname)
[ef56a67]64{
[9e5c9f3]65  const owl_view *v;
[ef56a67]66  owl_fmtext fm;
67
68  /* we only have the one view right now */
69  v=owl_global_get_current_view(&g);
70  if (viewname && strcmp(viewname, owl_view_get_name(v))) {
[ec6ff52]71    owl_function_error("No view named '%s'", viewname);
[ef56a67]72    return;
73  }
74
75  owl_fmtext_init_null(&fm);
76  owl_view_to_fmtext(v, &fm);
77  owl_function_popless_fmtext(&fm);
[7ab0020]78  owl_fmtext_cleanup(&fm);
[ef56a67]79}
80
[c79a047]81void owl_function_show_styles(void) {
[f1e629d]82  owl_list l;
83  owl_fmtext fm;
84
85  owl_fmtext_init_null(&fm);
86  owl_fmtext_append_bold(&fm, "Styles:\n");
87  owl_global_get_style_names(&g, &l);
88  owl_fmtext_append_list(&fm, &l, "\n", owl_function_style_describe);
89  owl_fmtext_append_normal(&fm, "\n");
90  owl_function_popless_fmtext(&fm);
[8c59178]91  owl_list_cleanup(&l, owl_free);
[7ab0020]92  owl_fmtext_cleanup(&fm);
[f1e629d]93}
94
[c6adf17]95static void _owl_function_timer_append_fmtext(gpointer data, gpointer user_data) {
96  owl_fmtext *fm = user_data;
97  owl_timer *timer = data;
98  char *str = owl_sprintf("- %s: in %d seconds",
99                          timer->name ? timer->name : "(unnamed)",
100                          timer->time - time(NULL));
101  owl_fmtext_append_normal(fm, str);
102  owl_free(str);
103  if (timer->interval) {
104    str = owl_sprintf(", repeat every %d seconds", timer->interval);
105    owl_fmtext_append_normal(fm, str);
106    owl_free(str);
107  }
108  owl_fmtext_append_normal(fm, "\n");
109}
110
111void owl_function_show_timers(void) {
112  owl_fmtext fm;
113  GList **timers;
114
115  owl_fmtext_init_null(&fm);
116  owl_fmtext_append_bold(&fm, "Active timers:\n");
117
118  timers = owl_global_get_timerlist(&g);
119  g_list_foreach(*timers, _owl_function_timer_append_fmtext, &fm);
120
121  owl_function_popless_fmtext(&fm);
122  owl_fmtext_cleanup(&fm);
123}
124
[e19eb97]125char *owl_function_style_describe(const char *name) {
126  const char *desc;
[65b2173]127  char *s;
[1fdab04]128  const owl_style *style;
[f1e629d]129  style = owl_global_get_style_by_name(&g, name);
130  if (style) {
131    desc = owl_style_get_description(style);
132  } else {
133    desc = "???";
134  }
135  s = owl_sprintf("%-20s - %s%s", name, 
136                  0==owl_style_validate(style)?"":"[INVALID] ",
137                  desc);
138  return s;
139}
[ef56a67]140
[e19eb97]141char *owl_function_cmd_describe(const char *name)
[d54838d]142{
[0a0fb74]143  const owl_cmd *cmd = owl_cmddict_find(owl_global_get_cmddict(&g), name);
[7d4fbcd]144  if (cmd) return owl_cmd_describe(cmd);
145  else return(NULL);
146}
147
[e19eb97]148void owl_function_show_command(const char *name)
[d54838d]149{
[7d4fbcd]150  owl_function_help_for_command(name);
151}
152
[c79a047]153void owl_function_show_license(void)
[debb15d]154{
[e19eb97]155  const char *text;
[debb15d]156
157  text=""
[4228f8b]158    "barnowl version " OWL_VERSION_STRING "\n"
[1cfcab7]159    "Copyright (c) 2006-2010 The BarnOwl Developers. All rights reserved.\n"
[debb15d]160    "Copyright (c) 2004 James Kretchmar. All rights reserved.\n"
161    "\n"
162    "Redistribution and use in source and binary forms, with or without\n"
163    "modification, are permitted provided that the following conditions are\n"
164    "met:\n"
165    "\n"
166    "   * Redistributions of source code must retain the above copyright\n"
167    "     notice, this list of conditions and the following disclaimer.\n"
168    "\n"
169    "   * Redistributions in binary form must reproduce the above copyright\n"
170    "     notice, this list of conditions and the following disclaimer in\n"
171    "     the documentation and/or other materials provided with the\n"
172    "     distribution.\n"
173    "\n"
174    "   * Redistributions in any form must be accompanied by information on\n"
175    "     how to obtain complete source code for the Owl software and any\n"
176    "     accompanying software that uses the Owl software. The source code\n"
177    "     must either be included in the distribution or be available for no\n"
178    "     more than the cost of distribution plus a nominal fee, and must be\n"
179    "     freely redistributable under reasonable conditions. For an\n"
180    "     executable file, complete source code means the source code for\n"
181    "     all modules it contains. It does not include source code for\n"
182    "     modules or files that typically accompany the major components of\n"
183    "     the operating system on which the executable file runs.\n"
184    "\n"
185    "THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n"
186    "IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n"
187    "WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n"
188    "NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n"
189    "LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n"
190    "CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n"
191    "SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n"
192    "BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n"
193    "WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n"
194    "OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n"
195    "IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n";
196  owl_function_popless_text(text);
197}
198
[c79a047]199void owl_function_show_quickstart(void)
[799b60e]200{
[e19eb97]201    const char *message =
[799b60e]202    "Move between messages with the arrow keys, and press 'r' to reply.\n"
203    "For more info, press 'h' or visit http://barnowl.mit.edu/\n\n"
204#ifdef HAVE_LIBZEPHYR
205    "@b(Zephyr:)\n"
206    "To send a message to a user, type ':zwrite @b(username)'. You can also\n"
207    "press 'z' and then type the username. To subscribe to a class, type\n"
208    "':sub @b(class)', and then type ':zwrite -c @b(class)' to send.\n\n"
209#endif
210    "@b(AIM:)\n"
211    "Log in to AIM with ':aimlogin @b(screenname)'. Use ':aimwrite @b(screenname)',\n"
212    "or 'a' and then the screen name, to send someone a message.\n\n"
213    ;
214
215    if (owl_perlconfig_is_function("BarnOwl::Hooks::_get_quickstart")) {
216        char *perlquickstart = owl_perlconfig_execute("BarnOwl::Hooks::_get_quickstart()");
217        if (perlquickstart) {
218            char *result = owl_sprintf("%s%s", message, perlquickstart);
219            owl_function_adminmsg("BarnOwl Quickstart", result);
220            owl_free(result);
221            owl_free(perlquickstart);
222            return;
223        }
224    }
225    owl_function_adminmsg("BarnOwl Quickstart", message);
226}
227
228
[15b34fd]229/* Create an admin message, append it to the global list of messages
230 * and redisplay if necessary.
231 */
[e19eb97]232void owl_function_adminmsg(const char *header, const char *body)
[d54838d]233{
[7d4fbcd]234  owl_message *m;
[4b464a4]235
[7d4fbcd]236  m=owl_malloc(sizeof(owl_message));
[15b34fd]237  owl_message_create_admin(m, header, body);
238 
[8fec514]239  /* add it to the global list and current view */
[7d4fbcd]240  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
241  owl_view_consider_message(owl_global_get_current_view(&g), m);
242
[15b34fd]243  /* do followlast if necessary */
244  if (owl_global_should_followlast(&g)) owl_function_lastmsg_noredisplay();
[7d4fbcd]245
[15b34fd]246  /* redisplay etc. */
[7d4fbcd]247  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
248}
249
[15b34fd]250/* Create an outgoing zephyr message and return a pointer to it.  Does
[13fe062]251 * not put it on the global queue, use owl_global_messagequeue_addmsg() for
[15b34fd]252 * that.
253 */
[987cf3f]254owl_message *owl_function_make_outgoing_zephyr(const owl_zwrite *z)
[d09e5a1]255{
256  owl_message *m;
257
258  /* create the message */
259  m=owl_malloc(sizeof(owl_message));
[987cf3f]260  owl_message_create_from_zwrite(m, z, owl_zwrite_get_message(z));
[15b34fd]261
262  return(m);
263}
264
265/* Create an outgoing AIM message, returns a pointer to the created
266 * message or NULL if we're not logged into AIM (and thus unable to
267 * create the message).  Does not put it on the global queue.  Use
[13fe062]268 * owl_global_messagequeue_addmsg() for that .
[15b34fd]269 */
[e19eb97]270owl_message *owl_function_make_outgoing_aim(const char *body, const char *to)
[15b34fd]271{
272  owl_message *m;
273
274  /* error if we're not logged into aim */
275  if (!owl_global_is_aimloggedin(&g)) return(NULL);
276 
277  m=owl_malloc(sizeof(owl_message));
[d559df9]278  owl_message_create_aim(m,
279                         owl_global_get_aim_screenname(&g),
280                         to,
281                         body,
282                         OWL_MESSAGE_DIRECTION_OUT,
283                         0);
[15b34fd]284  return(m);
[d09e5a1]285}
286
[15b34fd]287/* Create an outgoing loopback message and return a pointer to it.
288 * Does not append it to the global queue, use
[13fe062]289 * owl_global_messagequeue_addmsg() for that.
[15b34fd]290 */
[e19eb97]291owl_message *owl_function_make_outgoing_loopback(const char *body)
[37eab7f]292{
293  owl_message *m;
294
295  /* create the message */
296  m=owl_malloc(sizeof(owl_message));
297  owl_message_create_loopback(m, body);
298  owl_message_set_direction_out(m);
299
[15b34fd]300  return(m);
[37eab7f]301}
302
[1b1cd2c]303void owl_function_start_edit_win(const char *line, void (*callback)(owl_editwin *), void *data, void (*cleanup)(void *))
[d54838d]304{
[7d4fbcd]305  owl_editwin *e;
[c394de8]306  owl_context *ctx;
[bdbec0a]307  char *s;
308
309  /* create and setup the editwin */
[58d47ca]310  e = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_MULTILINE,
311                                   owl_global_get_msg_history(&g));
[bdbec0a]312  owl_editwin_set_dotsend(e);
313  s = owl_sprintf("----> %s\n", line);
314  owl_editwin_set_locktext(e, s);
315  owl_free(s);
316
[38cc669]317  owl_editwin_set_cbdata(e, data, cleanup);
318  owl_editwin_set_callback(e, callback);
[4a41f16]319  ctx = owl_editcontext_new(OWL_CTX_EDITMULTI, e, "editmulti",
320                            owl_global_deactivate_editcontext, &g);
[c394de8]321  owl_global_push_context_obj(&g, ctx);
322
[bdbec0a]323}
324
[987cf3f]325static void owl_function_write_setup(const char *noun)
[bdbec0a]326{
327
328  if (!owl_global_get_lockout_ctrld(&g))
329    owl_function_makemsg("Type your %s below.  "
330                         "End with ^D or a dot on a line by itself."
331                         "  ^C will quit.", noun);
332  else
333    owl_function_makemsg("Type your %s below.  "
334                         "End with a dot on a line by itself.  ^C will quit.",
335                         noun);
336}
337
[987cf3f]338void owl_function_zwrite_setup(owl_zwrite *z)
[bdbec0a]339{
[7d4fbcd]340  /* send a ping if necessary */
341  if (owl_global_is_txping(&g)) {
[987cf3f]342    owl_zwrite_send_ping(z);
[7d4fbcd]343  }
344
[987cf3f]345
346  owl_function_write_setup("zephyr");
347  owl_function_start_edit_win(z->zwriteline,
348                              &owl_callback_zwrite,
349                              z, (void(*)(void*))owl_zwrite_delete);
[7d4fbcd]350}
351
[e19eb97]352void owl_function_aimwrite_setup(const char *line)
[d09e5a1]353{
[987cf3f]354  owl_function_write_setup("message");
355  owl_function_start_edit_win(line,
356                              &owl_callback_aimwrite,
357                              owl_strdup(line),
358                              owl_free);
359
[d09e5a1]360}
361
[c79a047]362void owl_function_loopwrite_setup(void)
[37eab7f]363{
[987cf3f]364  owl_function_write_setup("message");
365  owl_function_start_edit_win("loopwrite",
366                              &owl_callback_loopwrite,
367                              "loopwrite", NULL);
[1b6b2f3]368}
369
370void owl_callback_zwrite(owl_editwin *e) {
[987cf3f]371  owl_zwrite *z = owl_editwin_get_cbdata(e);
372  owl_function_zwrite(z, owl_editwin_get_text(e));
[37eab7f]373}
374
[9ceee9d]375/* send, log and display an outgoing zephyr.  If 'msg' is NULL
376 * the message is expected to be set from the zwrite line itself
377 */
[987cf3f]378void owl_function_zwrite(owl_zwrite *z, const char *msg)
[d54838d]379{
[15b34fd]380  owl_message *m;
[0743696]381  int ret;
[d309eb3]382
[987cf3f]383  if(strcmp(z->cmd, "zcrypt") == 0) {
384    owl_function_zcrypt(z, msg);
[a5fc448]385    return;
386  }
387
[9ceee9d]388  /* create the zwrite and send the message */
[987cf3f]389  owl_zwrite_populate_zsig(z);
[9ceee9d]390  if (msg) {
[987cf3f]391    owl_zwrite_set_message(z, msg);
[d309eb3]392  }
[0743696]393  ret = owl_zwrite_send_message(z);
394  if (ret != 0) {
395    owl_function_makemsg("Error sending zephyr: %s", error_message(ret));
396    return;
397  }
[9ceee9d]398  owl_function_makemsg("Waiting for ack...");
[d309eb3]399
[15b34fd]400  /* If it's personal */
[987cf3f]401  if (owl_zwrite_is_personal(z)) {
[15b34fd]402    /* create the outgoing message */
[987cf3f]403    m=owl_function_make_outgoing_zephyr(z);
[d309eb3]404
[3c7d086a]405    if (m) {
[13a3c1db]406      owl_global_messagequeue_addmsg(&g, m);
[15b34fd]407    } else {
[3c7d086a]408      owl_function_error("Could not create outgoing zephyr message");
[9ceee9d]409    }
410  }
[d309eb3]411}
412
[9ceee9d]413/* send, log and display an outgoing zcrypt zephyr.  If 'msg' is NULL
[ce7db4d]414 * the message is expected to be set from the zwrite line itself
415 */
[987cf3f]416void owl_function_zcrypt(owl_zwrite *z, const char *msg)
[d54838d]417{
[9ceee9d]418  char *cryptmsg;
[15b34fd]419  owl_message *m;
[d564c3d]420  const char *argv[7];
[9a7b4f2]421  char *zcrypt;
[d564c3d]422  int rv, status;
[96582d5]423  char *old_msg;
[7d4fbcd]424
425  /* create the zwrite and send the message */
[987cf3f]426  owl_zwrite_populate_zsig(z);
[ce7db4d]427  if (msg) {
[987cf3f]428    owl_zwrite_set_message(z, msg);
[ce7db4d]429  }
[96582d5]430  old_msg = owl_strdup(owl_zwrite_get_message(z));
[d564c3d]431
[9a7b4f2]432  zcrypt = owl_sprintf("%s/zcrypt", owl_get_bindir());
[d564c3d]433  argv[0] = "zcrypt";
434  argv[1] = "-E";
[987cf3f]435  argv[2] = "-c"; argv[3] = owl_zwrite_get_class(z);
436  argv[4] = "-i"; argv[5] = owl_zwrite_get_instance(z);
[d564c3d]437  argv[6] = NULL;
438
[987cf3f]439  rv = call_filter(zcrypt, argv, owl_zwrite_get_message(z), &cryptmsg, &status);
[9a7b4f2]440
441  owl_free(zcrypt);
[d564c3d]442
443  if (rv || status) {
444    if(cryptmsg) owl_free(cryptmsg);
[96582d5]445    owl_free(old_msg);
[ec6ff52]446    owl_function_error("Error in zcrypt, possibly no key found.  Message not sent.");
[9ceee9d]447    owl_function_beep();
448    return;
449  }
450
[7bfc613]451  owl_zwrite_set_message_raw(z, cryptmsg);
[987cf3f]452  owl_zwrite_set_opcode(z, "crypt");
[7bfc613]453
[987cf3f]454  owl_zwrite_send_message(z);
[7d4fbcd]455  owl_function_makemsg("Waiting for ack...");
456
[15b34fd]457  /* If it's personal */
[987cf3f]458  if (owl_zwrite_is_personal(z)) {
[c43c77b]459    /* Create the outgoing message. Restore the un-crypted message for display. */
[7bfc613]460    owl_zwrite_set_message_raw(z, old_msg);
[987cf3f]461    m=owl_function_make_outgoing_zephyr(z);
[3c7d086a]462    if (m) {
[13a3c1db]463      owl_global_messagequeue_addmsg(&g, m);
[15b34fd]464    } else {
[3c7d086a]465      owl_function_error("Could not create outgoing zephyr message");
[7d4fbcd]466    }
467  }
468
469  /* free the zwrite */
[9ceee9d]470  owl_free(cryptmsg);
[7d4fbcd]471}
472
[1b6b2f3]473void owl_callback_aimwrite(owl_editwin *e) {
[8dfb59c]474  char *command = owl_editwin_get_cbdata(e);
475  owl_function_aimwrite(command,
[1b6b2f3]476                        owl_editwin_get_text(e));
477}
478
[e19eb97]479void owl_function_aimwrite(const char *line, const char *msg)
[d09e5a1]480{
[ec6ff52]481  int ret;
[e19eb97]482  const char *to;
[65b2173]483  char *format_msg;
[15b34fd]484  owl_message *m;
[f82e233]485
[4211f50b]486  to = line + 9;
487
[f82e233]488  /* make a formatted copy of the message */
489  format_msg=owl_strdup(msg);
490  owl_text_wordunwrap(format_msg);
[ec6ff52]491 
[f82e233]492  /* send the message */
493  ret=owl_aim_send_im(to, format_msg);
[ec6ff52]494  if (!ret) {
495    owl_function_makemsg("AIM message sent.");
496  } else {
497    owl_function_error("Could not send AIM message.");
498  }
[d09e5a1]499
[15b34fd]500  /* create the outgoing message */
501  m=owl_function_make_outgoing_aim(msg, to);
502
[3c7d086a]503  if (m) {
[13a3c1db]504    owl_global_messagequeue_addmsg(&g, m);
[15b34fd]505  } else {
[3c7d086a]506    owl_function_error("Could not create outgoing AIM message");
[d09e5a1]507  }
[f82e233]508
509  owl_free(format_msg);
[d09e5a1]510}
511
[e19eb97]512void owl_function_send_aimawymsg(const char *to, const char *msg)
[9854278]513{
514  int ret;
515  char *format_msg;
[15b34fd]516  owl_message *m;
[9854278]517
518  /* make a formatted copy of the message */
519  format_msg=owl_strdup(msg);
520  owl_text_wordunwrap(format_msg);
521 
522  /* send the message */
523  ret=owl_aim_send_awaymsg(to, format_msg);
524  if (!ret) {
525    /* owl_function_makemsg("AIM message sent."); */
526  } else {
527    owl_function_error("Could not send AIM message.");
528  }
529
[15b34fd]530  /* create the message */
531  m=owl_function_make_outgoing_aim(msg, to);
532  if (m) {
[13a3c1db]533    owl_global_messagequeue_addmsg(&g, m);
[15b34fd]534  } else {
535    owl_function_error("Could not create AIM message");
[9854278]536  }
537  owl_free(format_msg);
538}
539
[1b6b2f3]540void owl_callback_loopwrite(owl_editwin *e) {
541  owl_function_loopwrite(owl_editwin_get_text(e));
542}
543
[e19eb97]544void owl_function_loopwrite(const char *msg)
[37eab7f]545{
[15b34fd]546  owl_message *min, *mout;
[37eab7f]547
548  /* create a message and put it on the message queue.  This simulates
549   * an incoming message */
[15b34fd]550  min=owl_malloc(sizeof(owl_message));
[4211f50b]551  mout=owl_function_make_outgoing_loopback(msg);
[13a3c1db]552
[37eab7f]553  if (owl_global_is_displayoutgoing(&g)) {
[13a3c1db]554    owl_global_messagequeue_addmsg(&g, mout);
[15b34fd]555  } else {
[91634ec]556    owl_message_delete(mout);
[37eab7f]557  }
558
[13a3c1db]559  owl_message_create_loopback(min, msg);
560  owl_message_set_direction_in(min);
561  owl_global_messagequeue_addmsg(&g, min);
562
[37eab7f]563  /* fake a makemsg */
564  owl_function_makemsg("loopback message sent");
565}
566
[b950088]567/* If filter is non-null, looks for the next message matching
568 * that filter.  If skip_deleted, skips any deleted messages.
569 * If last_if_none, will stop at the last message in the view
570 * if no matching messages are found.  */
[e19eb97]571void owl_function_nextmsg_full(const char *filter, int skip_deleted, int last_if_none)
[d54838d]572{
[b950088]573  int curmsg, i, viewsize, found;
[9e5c9f3]574  const owl_view *v;
[4542047]575  const owl_filter *f = NULL;
[c08c70a]576  const owl_message *m;
[7d4fbcd]577
578  v=owl_global_get_current_view(&g);
[b950088]579
580  if (filter) {
581    f=owl_global_get_filter(&g, filter);
582    if (!f) {
[ec6ff52]583      owl_function_error("No %s filter defined", filter);
[b950088]584      return;
585    }
[7d4fbcd]586  }
587
[b950088]588  curmsg=owl_global_get_curmsg(&g);
589  viewsize=owl_view_get_size(v);
590  found=0;
[7d4fbcd]591
[b950088]592  /* just check to make sure we're in bounds... */
593  if (curmsg>viewsize-1) curmsg=viewsize-1;
594  if (curmsg<0) curmsg=0;
[7d4fbcd]595
[b950088]596  for (i=curmsg+1; i<viewsize; i++) {
597    m=owl_view_get_element(v, i);
598    if (skip_deleted && owl_message_is_delete(m)) continue;
599    if (f && !owl_filter_message_match(f, m)) continue;
600    found = 1;
601    break;
602  }
603
604  if (i>owl_view_get_size(v)-1) i=owl_view_get_size(v)-1;
[5763474]605  if (i<0) i=0;
[b950088]606
607  if (!found) {
[799b60e]608    owl_function_makemsg("already at last%s message%s%s%s",
[b950088]609                         skip_deleted?" non-deleted":"",
[799b60e]610                         filter?" in ":"", filter?filter:"",
611                         owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g)) ?
612                         ", press Enter to scroll" : "");
[5a6e6b9]613    /* if (!skip_deleted) owl_function_beep(); */
[7d4fbcd]614  }
615
[b950088]616  if (last_if_none || found) {
617    owl_global_set_curmsg(&g, i);
618    owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
619    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
620    owl_global_set_direction_downwards(&g);
621  }
622}
[7d4fbcd]623
[e19eb97]624void owl_function_prevmsg_full(const char *filter, int skip_deleted, int first_if_none)
[d54838d]625{
[402eb16f]626  int curmsg, i, found;
[9e5c9f3]627  const owl_view *v;
[4542047]628  const owl_filter *f = NULL;
[c08c70a]629  const owl_message *m;
[7d4fbcd]630
631  v=owl_global_get_current_view(&g);
632
[b950088]633  if (filter) {
634    f=owl_global_get_filter(&g, filter);
635    if (!f) {
[ec6ff52]636      owl_function_error("No %s filter defined", filter);
[b950088]637      return;
[7d4fbcd]638    }
[b950088]639  }
[7d4fbcd]640
[b950088]641  curmsg=owl_global_get_curmsg(&g);
642  found=0;
643
644  /* just check to make sure we're in bounds... */
645  if (curmsg<0) curmsg=0;
646
647  for (i=curmsg-1; i>=0; i--) {
648    m=owl_view_get_element(v, i);
649    if (skip_deleted && owl_message_is_delete(m)) continue;
650    if (f && !owl_filter_message_match(f, m)) continue;
651    found = 1;
652    break;
653  }
654
655  if (i<0) i=0;
656
657  if (!found) {
[f51bc78]658    owl_function_makemsg("already at first%s message%s%s",
[b950088]659                         skip_deleted?" non-deleted":"",
660                         filter?" in ":"", filter?filter:"");
[5a6e6b9]661    /* if (!skip_deleted) owl_function_beep(); */
[b950088]662  }
663
664  if (first_if_none || found) {
665    owl_global_set_curmsg(&g, i);
666    owl_function_calculate_topmsg(OWL_DIRECTION_UPWARDS);
667    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
668    owl_global_set_direction_upwards(&g);
[7d4fbcd]669  }
670}
671
[c79a047]672void owl_function_nextmsg(void)
[d54838d]673{
[b950088]674  owl_function_nextmsg_full(NULL, 0, 1);
675}
[7d4fbcd]676
[c79a047]677void owl_function_prevmsg(void)
[d54838d]678{
[b950088]679  owl_function_prevmsg_full(NULL, 0, 1);
680}
[7d4fbcd]681
[c79a047]682void owl_function_nextmsg_notdeleted(void)
[d54838d]683{
[b950088]684  owl_function_nextmsg_full(NULL, 1, 1);
685}
[7d4fbcd]686
[c79a047]687void owl_function_prevmsg_notdeleted(void)
[d54838d]688{
[b950088]689  owl_function_prevmsg_full(NULL, 1, 1);
[7d4fbcd]690}
691
[b950088]692/* if move_after is 1, moves after the delete */
[d54838d]693void owl_function_deletecur(int move_after)
694{
[7d4fbcd]695  int curmsg;
696  owl_view *v;
697
698  v=owl_global_get_current_view(&g);
699
700  /* bail if there's no current message */
701  if (owl_view_get_size(v) < 1) {
[ec6ff52]702    owl_function_error("No current message to delete");
[7d4fbcd]703    return;
704  }
705
706  /* mark the message for deletion */
707  curmsg=owl_global_get_curmsg(&g);
708  owl_view_delete_element(v, curmsg);
709
[b950088]710  if (move_after) {
711    /* move the poiner in the appropriate direction
712     * to the next undeleted msg */
713    if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) {
714      owl_function_prevmsg_notdeleted();
715    } else {
716      owl_function_nextmsg_notdeleted();
717    }
[7d4fbcd]718  }
719}
720
[d54838d]721void owl_function_undeletecur(int move_after)
722{
[7d4fbcd]723  int curmsg;
724  owl_view *v;
725
726  v=owl_global_get_current_view(&g);
727 
728  if (owl_view_get_size(v) < 1) {
[ec6ff52]729    owl_function_error("No current message to undelete");
[7d4fbcd]730    return;
731  }
732  curmsg=owl_global_get_curmsg(&g);
733
734  owl_view_undelete_element(v, curmsg);
735
[b950088]736  if (move_after) {
737    if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) {
738      if (curmsg>0) {
739        owl_function_prevmsg();
740      } else {
741        owl_function_nextmsg();
742      }
[7d4fbcd]743    } else {
[b950088]744      owl_function_nextmsg();
[7d4fbcd]745    }
746  }
747
748  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
749}
750
[c79a047]751void owl_function_expunge(void)
[d54838d]752{
[7d4fbcd]753  int curmsg;
[c08c70a]754  const owl_message *m;
[7d4fbcd]755  owl_messagelist *ml;
756  owl_view *v;
[486688f]757  int lastmsgid=0;
[7d4fbcd]758
759  curmsg=owl_global_get_curmsg(&g);
760  v=owl_global_get_current_view(&g);
761  ml=owl_global_get_msglist(&g);
762
763  m=owl_view_get_element(v, curmsg);
[486688f]764  if (m) lastmsgid = owl_message_get_id(m);
[7d4fbcd]765
766  /* expunge the message list */
767  owl_messagelist_expunge(ml);
768
769  /* update all views (we only have one right now) */
770  owl_view_recalculate(v);
771
[486688f]772  /* find where the new position should be
773     (as close as possible to where we last where) */
774  curmsg = owl_view_get_nearest_to_msgid(v, lastmsgid);
775  if (curmsg>owl_view_get_size(v)-1) curmsg = owl_view_get_size(v)-1;
776  if (curmsg<0) curmsg = 0;
777  owl_global_set_curmsg(&g, curmsg);
778  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
[7d4fbcd]779  /* if there are no messages set the direction to down in case we
780     delete everything upwards */
781  owl_global_set_direction_downwards(&g);
782 
783  owl_function_makemsg("Messages expunged");
784  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
785}
786
[c79a047]787void owl_function_firstmsg(void)
[d54838d]788{
[7d4fbcd]789  owl_global_set_curmsg(&g, 0);
790  owl_global_set_topmsg(&g, 0);
791  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
792  owl_global_set_direction_downwards(&g);
793}
794
[c79a047]795void owl_function_lastmsg_noredisplay(void)
[d54838d]796{
[5eeea3b]797  int oldcurmsg, curmsg;
[9e5c9f3]798  const owl_view *v;
[7d4fbcd]799
800  v=owl_global_get_current_view(&g);
[5eeea3b]801  oldcurmsg=owl_global_get_curmsg(&g);
802  curmsg=owl_view_get_size(v)-1; 
[7d4fbcd]803  if (curmsg<0) curmsg=0;
804  owl_global_set_curmsg(&g, curmsg);
[5eeea3b]805  if (oldcurmsg < curmsg) {
806    owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
807  } else if (curmsg<owl_view_get_size(v)) {
808    /* If already at the end, blank the screen and move curmsg
809     * past the end of the messages. */
810    owl_global_set_topmsg(&g, curmsg+1);
811    owl_global_set_curmsg(&g, curmsg+1);
812  } 
[6b580b0]813  /* owl_mainwin_redisplay(owl_global_get_mainwin(&g)); */
[7d4fbcd]814  owl_global_set_direction_downwards(&g);
815}
816
[c79a047]817void owl_function_lastmsg(void)
[d54838d]818{
[7d4fbcd]819  owl_function_lastmsg_noredisplay();
820  owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 
821}
822
[c79a047]823void owl_function_shift_right(void)
[d54838d]824{
[7d4fbcd]825  owl_global_set_rightshift(&g, owl_global_get_rightshift(&g)+10);
826}
827
[c79a047]828void owl_function_shift_left(void)
[d54838d]829{
[7d4fbcd]830  int shift;
831
832  shift=owl_global_get_rightshift(&g);
[8c97fa1]833  if (shift > 0) {
834    owl_global_set_rightshift(&g, MAX(shift - 10, 0));
[7d4fbcd]835  } else {
836    owl_function_beep();
[f51bc78]837    owl_function_makemsg("Already full left");
[7d4fbcd]838  }
839}
840
[c79a047]841void owl_function_unsuball(void)
[d54838d]842{
[7d4fbcd]843  unsuball();
844  owl_function_makemsg("Unsubscribed from all messages.");
845}
846
[95474d7]847
848/* Load zephyr subscriptions from the named 'file' and load zephyr's
849 * default subscriptions as well.  An error message is printed if
850 * 'file' can't be opened or if zephyr reports an error in
851 * subscribing.
852 *
853 * If 'file' is NULL, this look for the default filename
854 * $HOME/.zephyr.subs.  If the file can not be opened in this case
855 * only, no error message is printed.
856 */
[e19eb97]857void owl_function_loadsubs(const char *file)
[d54838d]858{
[4357be8]859  int ret, ret2;
[e19eb97]860  const char *foo;
[65b2173]861  char *path;
[ecd5dc5]862
[95474d7]863  if (file==NULL) {
864    ret=owl_zephyr_loadsubs(NULL, 0);
865  } else {
[27d8d83]866    path = owl_util_makepath(file);
867    ret=owl_zephyr_loadsubs(path, 1);
[27f6487]868    owl_free(path);
[95474d7]869  }
[ecd5dc5]870
[4357be8]871  /* for backwards compatibility for now */
872  ret2=owl_zephyr_loaddefaultsubs();
873
[ecd5dc5]874  if (!owl_context_is_interactive(owl_global_get_context(&g))) return;
[95474d7]875
876  foo=file?file:"file";
877  if (ret==0 && ret2==0) {
878    if (!file) {
879      owl_function_makemsg("Subscribed to messages.");
880    } else {
881      owl_function_makemsg("Subscribed to messages from %s", file);
882    }
[7d4fbcd]883  } else if (ret==-1) {
[95474d7]884    owl_function_error("Could not read %s", foo);
[7d4fbcd]885  } else {
[95474d7]886    owl_function_error("Error subscribing to messages");
[7d4fbcd]887  }
888}
889
[e19eb97]890void owl_function_loadloginsubs(const char *file)
[d54838d]891{
[7933748]892  int ret;
[ecd5dc5]893
[7933748]894  ret=owl_zephyr_loadloginsubs(file);
[ecd5dc5]895
896  if (!owl_context_is_interactive(owl_global_get_context(&g))) return;
[7933748]897  if (ret==0) {
898  } else if (ret==-1) {
[ec6ff52]899    owl_function_error("Could not open file for login subscriptions.");
[7933748]900  } else {
[ec6ff52]901    owl_function_error("Error subscribing to login messages from file.");
[7933748]902  }
903}
904
[1b6b2f3]905void owl_callback_aimlogin(owl_editwin *e) {
[8dfb59c]906  char *user = owl_editwin_get_cbdata(e);
907  owl_function_aimlogin(user,
[db8b00b]908                        owl_editwin_get_text(e));
[1b6b2f3]909}
910
[e19eb97]911void owl_function_aimlogin(const char *user, const char *passwd) {
[4211f50b]912  int ret;
913
914  /* clear the buddylist */
915  owl_buddylist_clear(owl_global_get_buddylist(&g));
916
917  /* try to login */
918  ret=owl_aim_login(user, passwd);
919  if (ret) owl_function_makemsg("Warning: login for %s failed.\n", user);
920}
921
[c79a047]922void owl_function_suspend(void)
[d54838d]923{
[7d4fbcd]924  endwin();
925  printf("\n");
926  kill(getpid(), SIGSTOP);
927
928  /* resize to reinitialize all the windows when we come back */
929  owl_command_resize();
930}
931
[c79a047]932void owl_function_zaway_toggle(void)
[d54838d]933{
[7d4fbcd]934  if (!owl_global_is_zaway(&g)) {
935    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
936    owl_function_zaway_on();
937  } else {
938    owl_function_zaway_off();
939  }
940}
941
[c79a047]942void owl_function_zaway_on(void)
[d54838d]943{
[7d4fbcd]944  owl_global_set_zaway_on(&g);
[4b660cc]945  owl_function_makemsg("zaway set (%s)", owl_global_get_zaway_msg(&g));
[7d4fbcd]946}
947
[c79a047]948void owl_function_zaway_off(void)
[d54838d]949{
[7d4fbcd]950  owl_global_set_zaway_off(&g);
[4b660cc]951  owl_function_makemsg("zaway off");
952}
953
[c79a047]954void owl_function_aaway_toggle(void)
[4b660cc]955{
956  if (!owl_global_is_aaway(&g)) {
957    owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g));
958    owl_function_aaway_on();
959  } else {
960    owl_function_aaway_off();
961  }
962}
963
[c79a047]964void owl_function_aaway_on(void)
[4b660cc]965{
966  owl_global_set_aaway_on(&g);
967  /* owl_aim_set_awaymsg(owl_global_get_zaway_msg(&g)); */
968  owl_function_makemsg("AIM away set (%s)", owl_global_get_aaway_msg(&g));
969}
970
[c79a047]971void owl_function_aaway_off(void)
[4b660cc]972{
973  owl_global_set_aaway_off(&g);
974  /* owl_aim_set_awaymsg(""); */
975  owl_function_makemsg("AIM away off");
[7d4fbcd]976}
977
[c79a047]978void owl_function_quit(void)
[d54838d]979{
[7d4fbcd]980  char *ret;
981 
982  /* zlog out if we need to */
[7433402]983  if (owl_global_is_havezephyr(&g) &&
984      owl_global_is_shutdownlogout(&g)) {
[31e48a3]985    owl_zephyr_zlog_out();
[7d4fbcd]986  }
987
988  /* execute the commands in shutdown */
[0337203]989  ret = owl_perlconfig_execute("BarnOwl::Hooks::_shutdown();");
[7d4fbcd]990  if (ret) owl_free(ret);
991
[d09e5a1]992  /* signal our child process, if any */
993  if (owl_global_get_newmsgproc_pid(&g)) {
994    kill(owl_global_get_newmsgproc_pid(&g), SIGHUP);
995  }
[8c46404]996 
997  /* Quit AIM */
998  if (owl_global_is_aimloggedin(&g)) {
999    owl_aim_logout();
1000  }
1001
[7d4fbcd]1002  owl_function_debugmsg("Quitting Owl");
[3ecd78b]1003  owl_select_quit_loop();
[7d4fbcd]1004}
1005
[d54838d]1006void owl_function_calculate_topmsg(int direction)
1007{
[aa2f33b3]1008  int recwinlines, topmsg, curmsg;
[9e5c9f3]1009  const owl_view *v;
[7d4fbcd]1010
1011  v=owl_global_get_current_view(&g);
[aa2f33b3]1012  curmsg=owl_global_get_curmsg(&g);
1013  topmsg=owl_global_get_topmsg(&g);
[7d4fbcd]1014  recwinlines=owl_global_get_recwin_lines(&g);
1015
[f9c43ae]1016  /*
[7d4fbcd]1017  if (owl_view_get_size(v) < 1) {
1018    return;
1019  }
[f9c43ae]1020  */
[aa2f33b3]1021
1022  switch (owl_global_get_scrollmode(&g)) {
1023  case OWL_SCROLLMODE_TOP:
[f9c43ae]1024    topmsg = owl_function_calculate_topmsg_top(direction, v, curmsg, topmsg, recwinlines);
[aa2f33b3]1025    break;
1026  case OWL_SCROLLMODE_NEARTOP:
[f9c43ae]1027    topmsg = owl_function_calculate_topmsg_neartop(direction, v, curmsg, topmsg, recwinlines);
[aa2f33b3]1028    break;
1029  case OWL_SCROLLMODE_CENTER:
[f9c43ae]1030    topmsg = owl_function_calculate_topmsg_center(direction, v, curmsg, topmsg, recwinlines);
[aa2f33b3]1031    break;
1032  case OWL_SCROLLMODE_PAGED:
[f9c43ae]1033    topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 0);
[aa2f33b3]1034    break;
1035  case OWL_SCROLLMODE_PAGEDCENTER:
[f9c43ae]1036    topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 1);
[aa2f33b3]1037    break;
1038  case OWL_SCROLLMODE_NORMAL:
1039  default:
[f9c43ae]1040    topmsg = owl_function_calculate_topmsg_normal(direction, v, curmsg, topmsg, recwinlines);
[aa2f33b3]1041  }
[3a2daac]1042  owl_function_debugmsg("Calculated a topmsg of %i", topmsg);
[aa2f33b3]1043  owl_global_set_topmsg(&g, topmsg);
1044}
1045
1046/* Returns what the new topmsg should be. 
1047 * Passed the last direction of movement,
1048 * the current view,
1049 * the current message number in the view,
1050 * the top message currently being displayed,
1051 * and the number of lines in the recwin.
1052 */
[9e5c9f3]1053int owl_function_calculate_topmsg_top(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
[d54838d]1054{
[f9c43ae]1055  return(curmsg);
[aa2f33b3]1056}
1057
[9e5c9f3]1058int owl_function_calculate_topmsg_neartop(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
[d54838d]1059{
[aa2f33b3]1060  if (curmsg>0 
1061      && (owl_message_get_numlines(owl_view_get_element(v, curmsg-1))
1062          <  recwinlines/2)) {
[f9c43ae]1063    return(curmsg-1);
[aa2f33b3]1064  } else {
[f9c43ae]1065    return(curmsg);
[aa2f33b3]1066  }
1067}
1068 
[9e5c9f3]1069int owl_function_calculate_topmsg_center(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
[d54838d]1070{
[aa2f33b3]1071  int i, last, lines;
1072
1073  last = curmsg;
1074  lines = 0;
1075  for (i=curmsg-1; i>=0; i--) {
1076    lines += owl_message_get_numlines(owl_view_get_element(v, i));
1077    if (lines > recwinlines/2) break;
1078    last = i;
1079  }
[f9c43ae]1080  return(last);
[aa2f33b3]1081}
1082 
[9e5c9f3]1083int owl_function_calculate_topmsg_paged(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines, int center_on_page)
[d54838d]1084{
[aa2f33b3]1085  int i, last, lines, savey;
1086 
1087  /* If we're off the top of the screen, scroll up such that the
1088   * curmsg is near the botton of the screen. */
1089  if (curmsg < topmsg) {
1090    last = curmsg;
1091    lines = 0;
1092    for (i=curmsg; i>=0; i--) {
1093      lines += owl_message_get_numlines(owl_view_get_element(v, i));
1094      if (lines > recwinlines) break;
1095    last = i;
1096    }
1097    if (center_on_page) {
[f9c43ae]1098      return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines));
[aa2f33b3]1099    } else {
[f9c43ae]1100      return(last);
[aa2f33b3]1101    }
1102  }
1103
1104  /* Find number of lines from top to bottom of curmsg (store in savey) */
1105  savey=0;
1106  for (i=topmsg; i<=curmsg; i++) {
1107    savey+=owl_message_get_numlines(owl_view_get_element(v, i));
1108  }
1109
1110  /* if we're off the bottom of the screen, scroll down */
1111  if (savey > recwinlines) {
1112    if (center_on_page) {
[f9c43ae]1113      return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines));
[aa2f33b3]1114    } else {
[f9c43ae]1115      return(curmsg);
[aa2f33b3]1116    }
1117  }
1118
1119  /* else just stay as we are... */
[f9c43ae]1120  return(topmsg);
[aa2f33b3]1121}
1122
[9e5c9f3]1123int owl_function_calculate_topmsg_normal(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines)
[d54838d]1124{
[801b7ac]1125  int savey, i, foo, y;
[f9c43ae]1126
[88736cb]1127  if (curmsg<0) return(topmsg);
1128   
[f9c43ae]1129  /* If we're off the top of the screen then center */
1130  if (curmsg<topmsg) {
1131    topmsg=owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines);
1132  }
1133
[801b7ac]1134  /* If curmsg is so far past topmsg that there are more messages than
1135     lines, skip the line counting that follows because we're
1136     certainly off screen.  */
1137  savey=curmsg-topmsg;
1138  if (savey <= recwinlines) {
1139    /* Find number of lines from top to bottom of curmsg (store in savey) */
1140    savey = 0;
1141    for (i=topmsg; i<=curmsg; i++) {
1142      savey+=owl_message_get_numlines(owl_view_get_element(v, i));
1143    }
[7d4fbcd]1144  }
1145
[f9c43ae]1146  /* If we're off the bottom of the screen, set the topmsg to curmsg
1147   * and scroll upwards */
1148  if (savey > recwinlines) {
1149    topmsg=curmsg;
[801b7ac]1150    savey=owl_message_get_numlines(owl_view_get_element(v, curmsg));
[f9c43ae]1151    direction=OWL_DIRECTION_UPWARDS;
[7d4fbcd]1152  }
[f9c43ae]1153 
[7d4fbcd]1154  /* If our bottom line is less than 1/4 down the screen then scroll up */
1155  if (direction == OWL_DIRECTION_UPWARDS || direction == OWL_DIRECTION_NONE) {
1156    if (savey < (recwinlines / 4)) {
1157      y=0;
[801b7ac]1158      for (i=curmsg; i>=0; i--) {
1159        foo=owl_message_get_numlines(owl_view_get_element(v, i));
[7d4fbcd]1160        /* will we run the curmsg off the screen? */
1161        if ((foo+y) >= recwinlines) {
[801b7ac]1162          i++;
1163          if (i>curmsg) i=curmsg;
[7d4fbcd]1164          break;
1165        }
1166        /* have saved 1/2 the screen space? */
1167        y+=foo;
1168        if (y > (recwinlines / 2)) break;
1169      }
[801b7ac]1170      if (i<0) i=0;
1171      return(i);
[7d4fbcd]1172    }
1173  }
1174
1175  if (direction == OWL_DIRECTION_DOWNWARDS || direction == OWL_DIRECTION_NONE) {
1176    /* If curmsg bottom line is more than 3/4 down the screen then scroll down */
1177    if (savey > ((recwinlines * 3)/4)) {
1178      y=0;
1179      /* count lines from the top until we can save 1/2 the screen size */
[801b7ac]1180      for (i=topmsg; i<curmsg; i++) {
1181        y+=owl_message_get_numlines(owl_view_get_element(v, i));
[7d4fbcd]1182        if (y > (recwinlines / 2)) break;
1183      }
[801b7ac]1184      if (i==curmsg) {
1185        i--;
[7d4fbcd]1186      }
[801b7ac]1187      return(i+1);
[7d4fbcd]1188    }
1189  }
[aa2f33b3]1190
[f9c43ae]1191  return(topmsg);
[7d4fbcd]1192}
1193
[c79a047]1194void owl_function_resize(void)
[d54838d]1195{
[7d4fbcd]1196  owl_global_set_resize_pending(&g);
1197}
1198
[e19eb97]1199void owl_function_debugmsg(const char *fmt, ...)
[d54838d]1200{
[7d4fbcd]1201  FILE *file;
1202  time_t now;
1203  va_list ap;
1204  va_start(ap, fmt);
1205
[52761cc]1206  if (!owl_global_is_debug_fast(&g))
1207    return;
[7d4fbcd]1208
[d12a8c7]1209  file = owl_global_get_debug_file_handle(&g);
[52761cc]1210  if (!file) /* XXX should report this */
1211    return;
[7d4fbcd]1212
[52761cc]1213  now = time(NULL);
[7d4fbcd]1214
[52761cc]1215  fprintf(file, "[%d -  %.24s - %lds]: ",
1216          (int) getpid(), ctime(&now), now - owl_global_get_starttime(&g));
[7d4fbcd]1217  vfprintf(file, fmt, ap);
[52761cc]1218  putc('\n', file);
[d12a8c7]1219  fflush(file);
[7d4fbcd]1220
1221  va_end(ap);
1222}
1223
[c79a047]1224void owl_function_beep(void)
[d54838d]1225{
[7d4fbcd]1226  if (owl_global_is_bell(&g)) {
1227    beep();
1228  }
1229}
1230
[e19eb97]1231int owl_function_subscribe(const char *class, const char *inst, const char *recip)
[d54838d]1232{
[7d4fbcd]1233  int ret;
1234
1235  ret=owl_zephyr_sub(class, inst, recip);
1236  if (ret) {
[ec6ff52]1237    owl_function_error("Error subscribing.");
[7d4fbcd]1238  } else {
1239    owl_function_makemsg("Subscribed.");
1240  }
[3617286]1241  return(ret);
[7d4fbcd]1242}
1243
[e19eb97]1244void owl_function_unsubscribe(const char *class, const char *inst, const char *recip)
[d54838d]1245{
[7d4fbcd]1246  int ret;
1247
1248  ret=owl_zephyr_unsub(class, inst, recip);
1249  if (ret) {
[ec6ff52]1250    owl_function_error("Error subscribing.");
[7d4fbcd]1251  } else {
1252    owl_function_makemsg("Unsubscribed.");
1253  }
1254}
1255
[e8128c5]1256static void _dirty_everything(owl_window *w) {
1257  if (!owl_window_is_realized(w))
1258    return;
1259  owl_window_dirty(w);
1260  owl_window_children_foreach(w, (GFunc)_dirty_everything, NULL);
[7d4fbcd]1261}
1262
[c79a047]1263void owl_function_full_redisplay(void)
[d54838d]1264{
[e8128c5]1265  _dirty_everything(owl_window_get_screen());
[7d4fbcd]1266}
1267
[e19eb97]1268void owl_function_popless_text(const char *text)
[d54838d]1269{
[7d4fbcd]1270  owl_popwin *pw;
1271  owl_viewwin *v;
1272
[9eb38bb]1273  if (owl_global_get_popwin(&g) || owl_global_get_viewwin(&g)) {
[4cf7b1b]1274    owl_function_error("Popwin already in use.");
1275    return;
1276  }
[03ca005]1277  pw = owl_popwin_new();
1278  owl_global_set_popwin(&g, pw);
1279  owl_popwin_up(pw);
[9eb38bb]1280
1281  v = owl_viewwin_new_text(owl_popwin_get_content(pw), text);
1282  owl_global_set_viewwin(&g, v);
1283
[07b59ea]1284  owl_global_push_context(&g, OWL_CTX_POPLESS, v, "popless", NULL);
[7d4fbcd]1285}
1286
[075ba92]1287void owl_function_popless_fmtext(const owl_fmtext *fm)
[d54838d]1288{
[7d4fbcd]1289  owl_popwin *pw;
1290  owl_viewwin *v;
1291
[9eb38bb]1292  if (owl_global_get_popwin(&g) || owl_global_get_viewwin(&g)) {
[4cf7b1b]1293    owl_function_error("Popwin already in use.");
1294    return;
1295  }
[03ca005]1296  pw = owl_popwin_new();
1297  owl_global_set_popwin(&g, pw);
1298  owl_popwin_up(pw);
[9eb38bb]1299
1300  v = owl_viewwin_new_fmtext(owl_popwin_get_content(pw), fm);
1301  owl_global_set_viewwin(&g, v);
1302
[07b59ea]1303  owl_global_push_context(&g, OWL_CTX_POPLESS, v, "popless", NULL);
[f17bff98]1304}
1305
[e19eb97]1306void owl_function_popless_file(const char *filename)
[f17bff98]1307{
1308  owl_fmtext fm;
1309  FILE *file;
[b7ee89b]1310  char *s = NULL;
[f17bff98]1311
1312  file=fopen(filename, "r");
1313  if (!file) {
1314    owl_function_error("Could not open file: %s", filename);
1315    return;
1316  }
1317
1318  owl_fmtext_init_null(&fm);
[b7ee89b]1319  while (owl_getline(&s, file))
1320    owl_fmtext_append_normal(&fm, s);
1321  owl_free(s);
[f17bff98]1322
1323  owl_function_popless_fmtext(&fm);
[7ab0020]1324  owl_fmtext_cleanup(&fm);
[f17bff98]1325  fclose(file);
[7d4fbcd]1326}
1327
[c79a047]1328void owl_function_about(void)
[d54838d]1329{
[2101a50]1330  owl_function_popless_text(
1331    "This is barnowl version " OWL_VERSION_STRING ".\n\n"
1332    "barnowl is a fork of the Owl zephyr client, written and\n"
1333    "maintained by Alejandro Sedeno and Nelson Elhage at the\n"
1334    "Massachusetts Institute of Technology. \n"
1335    "\n"
1336    "Owl was written by James Kretchmar. The first version, 0.5, was\n"
1337    "released in March 2002.\n"
1338    "\n"
1339    "The name 'owl' was chosen in reference to the owls in the\n"
1340    "Harry Potter novels, who are tasked with carrying messages\n"
1341    "between Witches and Wizards. The name 'barnowl' was chosen\n"
1342    "because we feel our owls should live closer to our ponies.\n"
1343    "\n"
[1cfcab7]1344    "Copyright (c) 2006-2010 The BarnOwl Developers. All rights reserved.\n"
[2101a50]1345    "Copyright (c) 2004 James Kretchmar. All rights reserved.\n"
1346    "Copyright 2002 Massachusetts Institute of Technology\n"
1347    "\n"
1348    "This program is free software. You can redistribute it and/or\n"
1349    "modify under the terms of the Sleepycat License. Use the \n"
1350    "':show license' command to display the full license\n"
1351  );
[7d4fbcd]1352}
1353
[c79a047]1354void owl_function_info(void)
[d54838d]1355{
[c08c70a]1356  const owl_message *m;
[5789230]1357  owl_fmtext fm, attrfm;
[9e5c9f3]1358  const owl_view *v;
[09489b89]1359#ifdef HAVE_LIBZEPHYR
[1077891a]1360  const ZNotice_t *n;
[09489b89]1361#endif
[7d4fbcd]1362
[d0d65df]1363  owl_fmtext_init_null(&fm);
1364 
[7d4fbcd]1365  v=owl_global_get_current_view(&g);
[5eeea3b]1366  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
1367  if (!m || owl_view_get_size(v)==0) {
[ec6ff52]1368    owl_function_error("No message selected\n");
[7d4fbcd]1369    return;
1370  }
1371
[5789230]1372  owl_fmtext_append_bold(&fm, "General Information:\n");
[57609b3]1373  owl_fmtext_appendf_normal(&fm, "  Msg Id    : %i\n", owl_message_get_id(m));
[df0d93a]1374
[5789230]1375  owl_fmtext_append_normal(&fm, "  Type      : ");
[37eab7f]1376  owl_fmtext_append_bold(&fm, owl_message_get_type(m));
[df0d93a]1377  owl_fmtext_append_normal(&fm, "\n");
1378
[4b464a4]1379  if (owl_message_is_direction_in(m)) {
[5789230]1380    owl_fmtext_append_normal(&fm, "  Direction : in\n");
[4b464a4]1381  } else if (owl_message_is_direction_out(m)) {
[5789230]1382    owl_fmtext_append_normal(&fm, "  Direction : out\n");
[4b464a4]1383  } else if (owl_message_is_direction_none(m)) {
[5789230]1384    owl_fmtext_append_normal(&fm, "  Direction : none\n");
[4b464a4]1385  } else {
[5789230]1386    owl_fmtext_append_normal(&fm, "  Direction : unknown\n");
[4b464a4]1387  }
[df0d93a]1388
[57609b3]1389  owl_fmtext_appendf_normal(&fm, "  Time      : %s\n", owl_message_get_timestr(m));
[4b464a4]1390
[df0d93a]1391  if (!owl_message_is_type_admin(m)) {
[57609b3]1392    owl_fmtext_appendf_normal(&fm, "  Sender    : %s\n", owl_message_get_sender(m));
1393    owl_fmtext_appendf_normal(&fm, "  Recipient : %s\n", owl_message_get_recipient(m));
[df0d93a]1394  }
[57609b3]1395
[0ff8fb57]1396  if (owl_message_is_type_zephyr(m)) {
[5789230]1397    owl_fmtext_append_bold(&fm, "\nZephyr Specific Information:\n");
[0ff8fb57]1398   
[57609b3]1399    owl_fmtext_appendf_normal(&fm, "  Class     : %s\n", owl_message_get_class(m));
1400    owl_fmtext_appendf_normal(&fm, "  Instance  : %s\n", owl_message_get_instance(m));
1401    owl_fmtext_appendf_normal(&fm, "  Opcode    : %s\n", owl_message_get_opcode(m));
[09489b89]1402#ifdef HAVE_LIBZEPHYR
[d0d65df]1403    if (owl_message_is_direction_in(m)) {
[09489b89]1404      char *ptr, tmpbuff[1024];
1405      int i, j, fields, len;
1406
[d0d65df]1407      n=owl_message_get_notice(m);
[df0d93a]1408
[5a95b69]1409      if (!owl_message_is_pseudo(m)) {
1410        owl_fmtext_append_normal(&fm, "  Kind      : ");
1411        if (n->z_kind==UNSAFE) {
1412          owl_fmtext_append_normal(&fm, "UNSAFE\n");
1413        } else if (n->z_kind==UNACKED) {
1414          owl_fmtext_append_normal(&fm, "UNACKED\n");
1415        } else if (n->z_kind==ACKED) {
1416          owl_fmtext_append_normal(&fm, "ACKED\n");
1417        } else if (n->z_kind==HMACK) {
1418          owl_fmtext_append_normal(&fm, "HMACK\n");
1419        } else if (n->z_kind==HMCTL) {
1420          owl_fmtext_append_normal(&fm, "HMCTL\n");
1421        } else if (n->z_kind==SERVACK) {
1422          owl_fmtext_append_normal(&fm, "SERVACK\n");
1423        } else if (n->z_kind==SERVNAK) {
1424          owl_fmtext_append_normal(&fm, "SERVNACK\n");
1425        } else if (n->z_kind==CLIENTACK) {
1426          owl_fmtext_append_normal(&fm, "CLIENTACK\n");
1427        } else if (n->z_kind==STAT) {
1428          owl_fmtext_append_normal(&fm, "STAT\n");
1429        } else {
1430          owl_fmtext_append_normal(&fm, "ILLEGAL VALUE\n");
1431        }
[d0d65df]1432      }
[57609b3]1433      owl_fmtext_appendf_normal(&fm, "  Host      : %s\n", owl_message_get_hostname(m));
[5a95b69]1434
1435      if (!owl_message_is_pseudo(m)) {
1436        owl_fmtext_append_normal(&fm, "\n");
[57609b3]1437        owl_fmtext_appendf_normal(&fm, "  Port      : %i\n", ntohs(n->z_port));
[f12d199]1438        owl_fmtext_appendf_normal(&fm, "  Auth      : %s\n", owl_zephyr_get_authstr(n));
[57609b3]1439
1440        /* FIXME make these more descriptive */
[f12d199]1441        owl_fmtext_appendf_normal(&fm, "  Checkd Ath: %i\n", n->z_checked_auth);
[57609b3]1442        owl_fmtext_appendf_normal(&fm, "  Multi notc: %s\n", n->z_multinotice);
1443        owl_fmtext_appendf_normal(&fm, "  Num other : %i\n", n->z_num_other_fields);
1444        owl_fmtext_appendf_normal(&fm, "  Msg Len   : %i\n", n->z_message_len);
[5a95b69]1445
1446        fields=owl_zephyr_get_num_fields(n);
[57609b3]1447        owl_fmtext_appendf_normal(&fm, "  Fields    : %i\n", fields);
1448
[5a95b69]1449        for (i=0; i<fields; i++) {
[5376a95]1450          ptr=owl_zephyr_get_field_as_utf8(n, i+1);
[b0430a6]1451          len=strlen(ptr);
[5a95b69]1452          if (len<30) {
1453            strncpy(tmpbuff, ptr, len);
1454            tmpbuff[len]='\0';
1455          } else {
1456            strncpy(tmpbuff, ptr, 30);
1457            tmpbuff[30]='\0';
1458            strcat(tmpbuff, "...");
1459          }
[b0430a6]1460          owl_free(ptr);
[57609b3]1461
[5a95b69]1462          for (j=0; j<strlen(tmpbuff); j++) {
1463            if (tmpbuff[j]=='\n') tmpbuff[j]='~';
1464            if (tmpbuff[j]=='\r') tmpbuff[j]='!';
1465          }
[57609b3]1466
1467          owl_fmtext_appendf_normal(&fm, "  Field %i   : %s\n", i+1, tmpbuff);
[5a95b69]1468        }
[57609b3]1469        owl_fmtext_appendf_normal(&fm, "  Default Fm: %s\n", n->z_default_format);
[d0d65df]1470      }
[57609b3]1471
[7d4fbcd]1472    }
[57609b3]1473#endif
[7d4fbcd]1474  }
[0ff8fb57]1475
[5789230]1476  owl_fmtext_append_bold(&fm, "\nOwl Message Attributes:\n");
1477  owl_message_attributes_tofmtext(m, &attrfm);
1478  owl_fmtext_append_fmtext(&fm, &attrfm);
[d0d65df]1479 
1480  owl_function_popless_fmtext(&fm);
[7ab0020]1481  owl_fmtext_cleanup(&fm);
1482  owl_fmtext_cleanup(&attrfm);
[7d4fbcd]1483}
1484
[5639bf2]1485/* print the current message in a popup window.
1486 * Use the 'default' style regardless of whatever
1487 * style the user may be using
1488 */
[c79a047]1489void owl_function_curmsg_to_popwin(void)
[d54838d]1490{
[9e5c9f3]1491  const owl_view *v;
[c08c70a]1492  const owl_message *m;
[1fdab04]1493  const owl_style *s;
[5639bf2]1494  owl_fmtext fm;
[7d4fbcd]1495
[5639bf2]1496  v=owl_global_get_current_view(&g);
1497  s=owl_global_get_style_by_name(&g, "default");
[7d4fbcd]1498
[5eeea3b]1499  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
1500
1501  if (!m || owl_view_get_size(v)==0) {
[ec6ff52]1502    owl_function_error("No current message");
[7d4fbcd]1503    return;
1504  }
1505
[5639bf2]1506  owl_fmtext_init_null(&fm);
1507  owl_style_get_formattext(s, &fm, m);
1508
1509  owl_function_popless_fmtext(&fm);
[7ab0020]1510  owl_fmtext_cleanup(&fm);
[7d4fbcd]1511}
1512
[d54838d]1513void owl_function_page_curmsg(int step)
1514{
[7d4fbcd]1515  /* scroll down or up within the current message IF the message is truncated */
1516
1517  int offset, curmsg, lines;
[9e5c9f3]1518  const owl_view *v;
[7d4fbcd]1519  owl_message *m;
1520
1521  offset=owl_global_get_curmsg_vert_offset(&g);
1522  v=owl_global_get_current_view(&g);
1523  curmsg=owl_global_get_curmsg(&g);
1524  m=owl_view_get_element(v, curmsg);
[5eeea3b]1525  if (!m || owl_view_get_size(v)==0) return;
[7d4fbcd]1526  lines=owl_message_get_numlines(m);
1527
1528  if (offset==0) {
1529    /* Bail if the curmsg isn't the last one displayed */
1530    if (curmsg != owl_mainwin_get_last_msg(owl_global_get_mainwin(&g))) {
[f51bc78]1531      owl_function_makemsg("The entire message is already displayed");
[7d4fbcd]1532      return;
1533    }
1534   
1535    /* Bail if we're not truncated */
1536    if (!owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) {
[f51bc78]1537      owl_function_makemsg("The entire message is already displayed");
[7d4fbcd]1538      return;
1539    }
1540  }
1541 
1542 
1543  /* don't scroll past the last line */
1544  if (step>0) {
1545    if (offset+step > lines-1) {
1546      owl_global_set_curmsg_vert_offset(&g, lines-1);
1547    } else {
1548      owl_global_set_curmsg_vert_offset(&g, offset+step);
1549    }
1550  }
1551
1552  /* would we be before the beginning of the message? */
1553  if (step<0) {
1554    if (offset+step<0) {
1555      owl_global_set_curmsg_vert_offset(&g, 0);
1556    } else {
1557      owl_global_set_curmsg_vert_offset(&g, offset+step);
1558    }
1559  }
1560 
1561  /* redisplay */
1562  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1563}
1564
[d54838d]1565void owl_function_resize_typwin(int newsize)
1566{
[7d4fbcd]1567  owl_global_set_typwin_lines(&g, newsize);
[f6fae8d]1568  owl_mainpanel_layout_contents(&g.mainpanel);
[7d4fbcd]1569}
1570
[c79a047]1571void owl_function_mainwin_pagedown(void)
[d54838d]1572{
[7d4fbcd]1573  int i;
1574
1575  i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g));
1576  if (i<0) return;
[f2e36b5]1577  if (owl_mainwin_is_last_msg_truncated(owl_global_get_mainwin(&g))
1578      && (owl_global_get_curmsg(&g) < i)
1579      && (i>0)) {
1580    i--;
1581  }
[7d4fbcd]1582  owl_global_set_curmsg(&g, i);
1583  owl_function_nextmsg();
1584}
1585
[c79a047]1586void owl_function_mainwin_pageup(void)
[d54838d]1587{
[7d4fbcd]1588  owl_global_set_curmsg(&g, owl_global_get_topmsg(&g));
1589  owl_function_prevmsg();
1590}
1591
[c79a047]1592void owl_function_getsubs(void)
[d54838d]1593{
[09489b89]1594  char *buff;
[7d4fbcd]1595
[09489b89]1596  buff=owl_zephyr_getsubs();
[7d4fbcd]1597
[09489b89]1598  if (buff) {
1599    owl_function_popless_text(buff);
1600  } else {
1601    owl_function_popless_text("Error getting subscriptions");
[7d4fbcd]1602  }
[09489b89]1603           
[1c6c4d3]1604  owl_free(buff);
[7d4fbcd]1605}
1606
[c79a047]1607void owl_function_printallvars(void)
[d54838d]1608{
[e19eb97]1609  const char *name;
[b4c270c]1610  char var[LINE];
[7d4fbcd]1611  owl_list varnames;
[b4c270c]1612  int i, numvarnames;
1613  GString *str   = g_string_new("");
[7d4fbcd]1614
[b4c270c]1615  g_string_append_printf(str, "%-20s = %s\n", "VARIABLE", "VALUE");
1616  g_string_append_printf(str, "%-20s   %s\n",  "--------", "-----");
[7d4fbcd]1617  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
1618  numvarnames = owl_list_get_size(&varnames);
1619  for (i=0; i<numvarnames; i++) {
1620    name = owl_list_get_element(&varnames, i);
1621    if (name && name[0]!='_') {
[b4c270c]1622      g_string_append_printf(str, "\n%-20s = ", name);
1623      owl_variable_get_tostring(owl_global_get_vardict(&g), name, var, LINE);
1624      g_string_append(str, var);
[7d4fbcd]1625    }
1626  }
[b4c270c]1627  g_string_append(str, "\n");
[0e57335]1628  owl_variable_dict_namelist_cleanup(&varnames);
[b4c270c]1629
1630  owl_function_popless_text(str->str);
1631  g_string_free(str, TRUE);
[7d4fbcd]1632}
1633
[c79a047]1634void owl_function_show_variables(void)
[d54838d]1635{
[7d4fbcd]1636  owl_list varnames;
1637  owl_fmtext fm; 
1638  int i, numvarnames;
[e19eb97]1639  const char *varname;
[7d4fbcd]1640
1641  owl_fmtext_init_null(&fm);
1642  owl_fmtext_append_bold(&fm, 
1643      "Variables: (use 'show variable <name>' for details)\n");
1644  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
1645  numvarnames = owl_list_get_size(&varnames);
1646  for (i=0; i<numvarnames; i++) {
1647    varname = owl_list_get_element(&varnames, i);
1648    if (varname && varname[0]!='_') {
[aa2f33b3]1649      owl_variable_describe(owl_global_get_vardict(&g), varname, &fm);
[7d4fbcd]1650    }
1651  }
[0e57335]1652  owl_variable_dict_namelist_cleanup(&varnames);
[7d4fbcd]1653  owl_function_popless_fmtext(&fm);
[7ab0020]1654  owl_fmtext_cleanup(&fm);
[7d4fbcd]1655}
1656
[e19eb97]1657void owl_function_show_variable(const char *name)
[d54838d]1658{
[7d4fbcd]1659  owl_fmtext fm; 
1660
1661  owl_fmtext_init_null(&fm);
1662  owl_variable_get_help(owl_global_get_vardict(&g), name, &fm);
1663  owl_function_popless_fmtext(&fm);
[7ab0020]1664  owl_fmtext_cleanup(&fm);
[7d4fbcd]1665}
1666
1667/* note: this applies to global message list, not to view.
1668 * If flag is 1, deletes.  If flag is 0, undeletes. */
[d54838d]1669void owl_function_delete_by_id(int id, int flag)
1670{
[3eb599d]1671  const owl_messagelist *ml;
[7d4fbcd]1672  owl_message *m;
1673  ml = owl_global_get_msglist(&g);
1674  m = owl_messagelist_get_by_id(ml, id);
1675  if (m) {
1676    if (flag == 1) {
1677      owl_message_mark_delete(m);
1678    } else if (flag == 0) {
1679      owl_message_unmark_delete(m);
1680    }
1681    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1682  } else {
[ec6ff52]1683    owl_function_error("No message with id %d: unable to mark for (un)delete",id);
[7d4fbcd]1684  }
1685}
1686
[c79a047]1687void owl_function_delete_automsgs(void)
[d54838d]1688{
[7d4fbcd]1689  /* mark for deletion all messages in the current view that match the
1690   * 'trash' filter */
1691
1692  int i, j, count;
1693  owl_message *m;
[9e5c9f3]1694  const owl_view *v;
[4542047]1695  const owl_filter *f;
[7d4fbcd]1696
1697  /* get the trash filter */
1698  f=owl_global_get_filter(&g, "trash");
1699  if (!f) {
[ec6ff52]1700    owl_function_error("No trash filter defined");
[7d4fbcd]1701    return;
1702  }
1703
1704  v=owl_global_get_current_view(&g);
1705
1706  count=0;
1707  j=owl_view_get_size(v);
1708  for (i=0; i<j; i++) {
1709    m=owl_view_get_element(v, i);
1710    if (owl_filter_message_match(f, m)) {
1711      count++;
1712      owl_message_mark_delete(m);
1713    }
1714  }
1715  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
[1c6c4d3]1716  owl_function_makemsg("%i messages marked for deletion", count);
[7d4fbcd]1717}
1718
[c79a047]1719void owl_function_status(void)
[d54838d]1720{
[49a8434]1721  char buff[MAXPATHLEN+1];
[7d4fbcd]1722  time_t start;
1723  int up, days, hours, minutes;
[a352335c]1724  owl_fmtext fm;
1725
1726  owl_fmtext_init_null(&fm);
[7d4fbcd]1727
1728  start=owl_global_get_starttime(&g);
1729
[d9b0b972]1730  owl_fmtext_append_normal(&fm, "General Information:\n");
1731
1732  owl_fmtext_append_normal(&fm, "  Version: ");
[a352335c]1733  owl_fmtext_append_normal(&fm, OWL_VERSION_STRING);
1734  owl_fmtext_append_normal(&fm, "\n");
1735
[cdd3959]1736  owl_fmtext_append_normal(&fm, "  Startup Arguments: ");
[a352335c]1737  owl_fmtext_append_normal(&fm, owl_global_get_startupargs(&g));
1738  owl_fmtext_append_normal(&fm, "\n");
[b6a7367]1739
1740  owl_fmtext_append_normal(&fm, "  Current Directory: ");
[49a8434]1741  if(getcwd(buff, MAXPATHLEN) == NULL) {
1742    owl_fmtext_append_normal(&fm, "<Error in getcwd>");
1743  } else {
1744    owl_fmtext_append_normal(&fm, buff);
1745  }
[b6a7367]1746  owl_fmtext_append_normal(&fm, "\n");
1747
[c1d166b]1748  owl_fmtext_appendf_normal(&fm, "  Startup Time: %s", ctime(&start));
[7d4fbcd]1749
1750  up=owl_global_get_runtime(&g);
1751  days=up/86400;
1752  up-=days*86400;
1753  hours=up/3600;
1754  up-=hours*3600;
1755  minutes=up/60;
1756  up-=minutes*60;
[c1d166b]1757  owl_fmtext_appendf_normal(&fm, "  Run Time: %i days %2.2i:%2.2i:%2.2i\n", days, hours, minutes, up);
[7d4fbcd]1758
[d9b0b972]1759  owl_fmtext_append_normal(&fm, "\nProtocol Options:\n");
1760  owl_fmtext_append_normal(&fm, "  Zephyr included    : ");
1761  if (owl_global_is_havezephyr(&g)) {
1762    owl_fmtext_append_normal(&fm, "yes\n");
[7d4fbcd]1763  } else {
[d9b0b972]1764    owl_fmtext_append_normal(&fm, "no\n");
[7d4fbcd]1765  }
[d9b0b972]1766  owl_fmtext_append_normal(&fm, "  AIM included       : yes\n");
1767  owl_fmtext_append_normal(&fm, "  Loopback included  : yes\n");
1768
[8262340]1769
[d9b0b972]1770  owl_fmtext_append_normal(&fm, "\nBuild Options:\n");
1771  owl_fmtext_append_normal(&fm, "  Stderr redirection : ");
1772#if OWL_STDERR_REDIR
1773  owl_fmtext_append_normal(&fm, "yes\n");
1774#else
1775  owl_fmtext_append_normal(&fm, "no\n");
1776#endif
1777 
1778
1779  owl_fmtext_append_normal(&fm, "\nAIM Status:\n");
1780  owl_fmtext_append_normal(&fm, "  Logged in: ");
[a352335c]1781  if (owl_global_is_aimloggedin(&g)) {
1782    owl_fmtext_append_normal(&fm, owl_global_get_aim_screenname(&g));
1783    owl_fmtext_append_normal(&fm, "\n");
1784  } else {
[d9b0b972]1785    owl_fmtext_append_normal(&fm, "(not logged in)\n");
[a352335c]1786  }
[d9b0b972]1787
1788  owl_fmtext_append_normal(&fm, "  Processing events: ");
[a352335c]1789  if (owl_global_is_doaimevents(&g)) {
[d9b0b972]1790    owl_fmtext_append_normal(&fm, "yes\n");
[a352335c]1791  } else {
[d9b0b972]1792    owl_fmtext_append_normal(&fm, "no\n");
[a352335c]1793  }
1794
1795  owl_function_popless_fmtext(&fm);
[7ab0020]1796  owl_fmtext_cleanup(&fm);
[7d4fbcd]1797}
1798
[c79a047]1799void owl_function_show_term(void)
[d54838d]1800{
[7d4fbcd]1801  owl_fmtext fm;
1802
1803  owl_fmtext_init_null(&fm);
[c1d166b]1804  owl_fmtext_appendf_normal(&fm, "Terminal Lines: %i\nTerminal Columns: %i\n",
[7d4fbcd]1805          owl_global_get_lines(&g),
1806          owl_global_get_cols(&g));
1807
1808  if (owl_global_get_hascolors(&g)) {
1809    owl_fmtext_append_normal(&fm, "Color: Yes\n");
[c1d166b]1810    owl_fmtext_appendf_normal(&fm, "Number of color pairs: %i\n", owl_global_get_colorpairs(&g));
1811    owl_fmtext_appendf_normal(&fm, "Can change colors: %s\n", can_change_color() ? "yes" : "no");
[7d4fbcd]1812  } else {
1813    owl_fmtext_append_normal(&fm, "Color: No\n");
1814  }
1815
1816  owl_function_popless_fmtext(&fm);
[7ab0020]1817  owl_fmtext_cleanup(&fm);
[7d4fbcd]1818}
1819
[e7cc1c3]1820/* if type = 0 then normal reply.
1821 * if type = 1 then it's a reply to sender
1822 * if enter = 0 then allow the command to be edited
1823 * if enter = 1 then don't wait for editing
1824 */
[d54838d]1825void owl_function_reply(int type, int enter)
1826{
[740d5f7]1827  char *buff=NULL;
[c08c70a]1828  const owl_message *m;
[4542047]1829  const owl_filter *f;
[7d4fbcd]1830 
1831  if (owl_view_get_size(owl_global_get_current_view(&g))==0) {
[ec6ff52]1832    owl_function_error("No message selected");
[7d4fbcd]1833  } else {
[5ebc202]1834    char *cmd;
[7d4fbcd]1835   
1836    m=owl_view_get_element(owl_global_get_current_view(&g), owl_global_get_curmsg(&g));
[5eeea3b]1837    if (!m) {
[ec6ff52]1838      owl_function_error("No message selected");
[5eeea3b]1839      return;
1840    }
1841
[7d4fbcd]1842    /* first check if we catch the reply-lockout filter */
1843    f=owl_global_get_filter(&g, "reply-lockout");
1844    if (f) {
1845      if (owl_filter_message_match(f, m)) {
[ec6ff52]1846        owl_function_error("Sorry, replies to this message have been disabled by the reply-lockout filter");
[7d4fbcd]1847        return;
1848      }
1849    }
[4b464a4]1850
[2c09826]1851    /* then check if it's a question and just bring up the command prompt */
1852    if (owl_message_is_question(m)) {
1853      owl_function_start_command("");
1854      return;
1855    }
1856
[740d5f7]1857    if((type == 0 &&
1858        (cmd=owl_perlconfig_message_call_method(m, "replycmd", 0, NULL))) ||
1859       (type == 1 &&
1860        (cmd=owl_perlconfig_message_call_method(m, "replysendercmd", 0, NULL)))) {
1861      buff = cmd;
[d09e5a1]1862    }
[1b6b2f3]1863
[e0540e4]1864    if(!buff) {
1865        owl_function_error("I don't know how to reply to that message.");
1866        return;
1867    }
[740d5f7]1868
[d09e5a1]1869    if (enter) {
1870      owl_history *hist = owl_global_get_cmd_history(&g);
1871      owl_history_store(hist, buff);
1872      owl_history_reset(hist);
1873      owl_function_command_norv(buff);
1874    } else {
1875      owl_function_start_command(buff);
[7d4fbcd]1876    }
[d09e5a1]1877    owl_free(buff);
[7d4fbcd]1878  }
1879}
1880
[e19eb97]1881void owl_function_zlocate(int argc, const char *const *argv, int auth)
[d54838d]1882{
[2527615]1883  owl_fmtext fm;
[dca3b27]1884  char *ptr;
1885  char *result;
[2527615]1886  int i;
1887
1888  owl_fmtext_init_null(&fm);
[7d4fbcd]1889
[2527615]1890  for (i=0; i<argc; i++) {
[dca3b27]1891    ptr = long_zuser(argv[i]);
1892    result = owl_zephyr_zlocate(ptr, auth);
1893    owl_fmtext_append_normal(&fm, result);
1894    owl_free(result);
[2527615]1895    owl_free(ptr);
[7d4fbcd]1896  }
1897
[2527615]1898  owl_function_popless_fmtext(&fm);
[7ab0020]1899  owl_fmtext_cleanup(&fm);
[7d4fbcd]1900}
1901
[5934b87]1902void owl_callback_command(owl_editwin *e)
1903{
1904  char *rv;
1905  const char *line = owl_editwin_get_text(e);
1906
1907  rv = owl_function_command(line);
1908   if (rv) {
1909    owl_function_makemsg("%s", rv);
1910    owl_free(rv);
1911  }
1912}
1913
[e19eb97]1914void owl_function_start_command(const char *line)
[d54838d]1915{
[7d4fbcd]1916  owl_editwin *tw;
[c394de8]1917  owl_context *ctx;
[7d4fbcd]1918
[58d47ca]1919  tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g));
[10b866d]1920
[7d4fbcd]1921  owl_editwin_set_locktext(tw, "command: ");
1922
[47519e1b]1923  owl_editwin_insert_string(tw, line);
[cf83b7a]1924
[4a41f16]1925  ctx = owl_editcontext_new(OWL_CTX_EDITLINE, tw, "editline",
1926                            owl_global_deactivate_editcontext, &g);
[c394de8]1927  owl_global_push_context_obj(&g, ctx);
[5934b87]1928  owl_editwin_set_callback(tw, owl_callback_command);
[cf83b7a]1929}
1930
[9186c75]1931owl_editwin *owl_function_start_question(const char *line)
[cf83b7a]1932{
1933  owl_editwin *tw;
[c394de8]1934  owl_context *ctx;
[cf83b7a]1935
[58d47ca]1936  tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g));
[cf83b7a]1937
1938  owl_editwin_set_locktext(tw, line);
1939
[4a41f16]1940  ctx = owl_editcontext_new(OWL_CTX_EDITRESPONSE, tw, "editresponse",
1941                            owl_global_deactivate_editcontext, &g);
[c394de8]1942  owl_global_push_context_obj(&g, ctx);
[9186c75]1943  return tw;
[7d4fbcd]1944}
1945
[9186c75]1946owl_editwin *owl_function_start_password(const char *line)
[453bd70]1947{
1948  owl_editwin *tw;
[c394de8]1949  owl_context *ctx;
[453bd70]1950
[58d47ca]1951  tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, NULL);
1952
[453bd70]1953  owl_editwin_set_echochar(tw, '*');
1954
1955  owl_editwin_set_locktext(tw, line);
1956
[4a41f16]1957  ctx = owl_editcontext_new(OWL_CTX_EDITRESPONSE, tw, "editresponse",
1958                            owl_global_deactivate_editcontext, &g);
[c394de8]1959  owl_global_push_context_obj(&g, ctx);
[9186c75]1960  return tw;
[453bd70]1961}
1962
[e19eb97]1963char *owl_function_exec(int argc, const char *const *argv, const char *buff, int type)
[d54838d]1964{
[7d4fbcd]1965  /* if type == 1 display in a popup
1966   * if type == 2 display an admin messages
1967   * if type == 0 return output
1968   * else display in a popup
1969   */
[e19eb97]1970  const char *redirect = " 2>&1 < /dev/null";
[65b2173]1971  char *newbuff;
[b7ee89b]1972  char *out;
[7d4fbcd]1973  FILE *p;
1974
[2a2bb60]1975#if OWL_STDERR_REDIR
1976  redirect = " < /dev/null";
1977#endif
1978
[7d4fbcd]1979  if (argc<2) {
[ec6ff52]1980    owl_function_error("Wrong number of arguments to the exec command");
[7d4fbcd]1981    return NULL;
1982  }
1983
1984  buff = skiptokens(buff, 1);
[36486be]1985  newbuff = owl_sprintf("%s%s", buff, redirect);
[7d4fbcd]1986
[7ba9e0de]1987  if (type == OWL_OUTPUT_POPUP) {
[afbf668]1988    owl_popexec_new(newbuff);
[7d4fbcd]1989  } else {
[b7ee89b]1990    p = popen(newbuff, "r");
1991    out = owl_slurp(p);
[afbf668]1992    pclose(p);
1993   
[2cfc6d7]1994    if (type == OWL_OUTPUT_RETURN) {
[b85c1c4]1995      owl_free(newbuff);
[afbf668]1996      return out;
[7ba9e0de]1997    } else if (type == OWL_OUTPUT_ADMINMSG) {
[afbf668]1998      owl_function_adminmsg(buff, out);
1999    }
2000    owl_free(out);
[7d4fbcd]2001  }
[b85c1c4]2002  owl_free(newbuff);
[7d4fbcd]2003  return NULL;
2004}
2005
[e19eb97]2006char *owl_function_perl(int argc, const char *const *argv, const char *buff, int type)
[d54838d]2007{
[7d4fbcd]2008  /* if type == 1 display in a popup
2009   * if type == 2 display an admin messages
2010   * if type == 0 return output
2011   * else display in a popup
2012   */
2013  char *perlout;
2014
2015  if (argc<2) {
[ec6ff52]2016    owl_function_error("Wrong number of arguments to perl command");
[7d4fbcd]2017    return NULL;
2018  }
2019
2020  /* consume first token (argv[0]) */
2021  buff = skiptokens(buff, 1);
2022
[f1e629d]2023  perlout = owl_perlconfig_execute(buff);
[7d4fbcd]2024  if (perlout) { 
[7ba9e0de]2025    if (type == OWL_OUTPUT_POPUP) {
[7d4fbcd]2026      owl_function_popless_text(perlout);
[7ba9e0de]2027    } else if (type == OWL_OUTPUT_ADMINMSG) {
[7d4fbcd]2028      owl_function_adminmsg(buff, perlout);
[7ba9e0de]2029    } else if (type == OWL_OUTPUT_RETURN) {
[7d4fbcd]2030      return perlout;
2031    }
2032    owl_free(perlout);
2033  }
2034  return NULL;
2035}
2036
[5e0b690]2037/* Change the filter associated with the current view.
2038 * This also figures out which message in the new filter
2039 * should have the pointer.
2040 */
[e19eb97]2041void owl_function_change_currentview_filter(const char *filtname)
[c3ab155]2042{
2043  owl_view *v;
2044  owl_filter *f;
2045  int curid=-1, newpos, curmsg;
[c08c70a]2046  const owl_message *curm=NULL;
[c3ab155]2047
2048  v=owl_global_get_current_view(&g);
2049
2050  curmsg=owl_global_get_curmsg(&g);
2051  if (curmsg==-1) {
2052    owl_function_debugmsg("Hit the curmsg==-1 case in change_view");
2053  } else {
2054    curm=owl_view_get_element(v, curmsg);
2055    if (curm) {
2056      curid=owl_message_get_id(curm);
2057      owl_view_save_curmsgid(v, curid);
2058    }
2059  }
2060
2061  f=owl_global_get_filter(&g, filtname);
2062  if (!f) {
[ec6ff52]2063    owl_function_error("Unknown filter %s", filtname);
[c3ab155]2064    return;
2065  }
2066
2067  owl_view_new_filter(v, f);
2068
2069  /* Figure out what to set the current message to.
2070   * - If the view we're leaving has messages in it, go to the closest message
2071   *   to the last message pointed to in that view.
2072   * - If the view we're leaving is empty, try to restore the position
2073   *   from the last time we were in the new view.  */
2074  if (curm) {
2075    newpos = owl_view_get_nearest_to_msgid(v, curid);
2076  } else {
2077    newpos = owl_view_get_nearest_to_saved(v);
2078  }
2079
2080  owl_global_set_curmsg(&g, newpos);
2081  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
2082  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2083  owl_global_set_direction_downwards(&g);
2084}
[7d4fbcd]2085
[5e0b690]2086/* Create a new filter, or replace an existing one
2087 * with a new definition.
2088 */
[e19eb97]2089void owl_function_create_filter(int argc, const char *const *argv)
[d54838d]2090{
[7d4fbcd]2091  owl_filter *f;
[9e5c9f3]2092  const owl_view *v;
[23fddad]2093  int inuse = 0;
[7d4fbcd]2094
2095  if (argc < 2) {
[ec6ff52]2096    owl_function_error("Wrong number of arguments to filter command");
[7d4fbcd]2097    return;
2098  }
2099
[3895e23]2100  owl_function_debugmsg("owl_function_create_filter: starting to create filter named %s", argv[1]);
2101
[7d4fbcd]2102  v=owl_global_get_current_view(&g);
2103
2104  /* don't touch the all filter */
2105  if (!strcmp(argv[1], "all")) {
[ec6ff52]2106    owl_function_error("You may not change the 'all' filter.");
[7d4fbcd]2107    return;
2108  }
2109
2110  /* deal with the case of trying change the filter color */
2111  if (argc==4 && !strcmp(argv[2], "-c")) {
2112    f=owl_global_get_filter(&g, argv[1]);
2113    if (!f) {
[ec6ff52]2114      owl_function_error("The filter '%s' does not exist.", argv[1]);
[7d4fbcd]2115      return;
2116    }
[601733d]2117    if (owl_util_string_to_color(argv[3])==OWL_COLOR_INVALID) {
[12c35df]2118      owl_function_error("The color '%s' is not available.", argv[3]);
2119      return;
2120    }
[8fa9562]2121    owl_filter_set_fgcolor(f, owl_util_string_to_color(argv[3]));
2122    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2123    return;
2124  }
2125  if (argc==4 && !strcmp(argv[2], "-b")) {
2126    f=owl_global_get_filter(&g, argv[1]);
2127    if (!f) {
2128      owl_function_error("The filter '%s' does not exist.", argv[1]);
2129      return;
2130    }
[601733d]2131    if (owl_util_string_to_color(argv[3])==OWL_COLOR_INVALID) {
[8fa9562]2132      owl_function_error("The color '%s' is not available.", argv[3]);
2133      return;
2134    }
2135    owl_filter_set_bgcolor(f, owl_util_string_to_color(argv[3]));
[7d4fbcd]2136    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2137    return;
2138  }
2139
2140  /* create the filter and check for errors */
[23fddad]2141  f = owl_filter_new(argv[1], argc-2, argv+2);
2142  if (f == NULL) {
[40458b9]2143    owl_function_error("Invalid filter");
[7d4fbcd]2144    return;
2145  }
2146
2147  /* if the named filter is in use by the current view, remember it */
2148  if (!strcmp(owl_view_get_filtname(v), argv[1])) {
2149    inuse=1;
2150  }
2151
2152  /* if the named filter already exists, nuke it */
2153  if (owl_global_get_filter(&g, argv[1])) {
2154    owl_global_remove_filter(&g, argv[1]);
2155  }
2156
2157  /* add the filter */
2158  owl_global_add_filter(&g, f);
2159
2160  /* if it was in use by the current view then update */
2161  if (inuse) {
[3895e23]2162    owl_function_change_currentview_filter(argv[1]);
[7d4fbcd]2163  }
2164  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2165}
2166
[3895e23]2167/* If 'filtername' does not start with 'not-' create a filter named
2168 * 'not-<filtername>' defined as "not filter <filtername>".  If the
2169 * filter 'not-<filtername>' already exists, do not overwrite it.  If
2170 * 'filtername' begins with 'not-' and a filter 'filtername' already
2171 * exists, then do nothing.  If the filter 'filtername' does not
2172 * exist, create it and define it as 'not filter <filtername>'
2173 *
2174 * Returns the name of the negated filter, which the caller must free.
2175 */
[e19eb97]2176char *owl_function_create_negative_filter(const char *filtername)
[3895e23]2177{
2178  char *newname;
[4542047]2179  const owl_filter *tmpfilt;
[e19eb97]2180  const char *argv[5];
[3895e23]2181
2182  owl_function_debugmsg("owl_function_create_negative_filter");
2183 
2184  if (!strncmp(filtername, "not-", 4)) {
2185    newname=owl_strdup(filtername+4);
2186  } else {
2187    newname=owl_sprintf("not-%s", filtername);
2188  }
2189
2190  tmpfilt=owl_global_get_filter(&g, newname);
2191  if (!tmpfilt) {
2192    argv[0]="filter"; /* anything is fine here */
2193    argv[1]=newname;
2194    argv[2]="not";
2195    argv[3]="filter";
2196    argv[4]=filtername;
2197    owl_function_create_filter(5, argv);
2198  }
2199
2200  owl_function_debugmsg("owl_function_create_negative_filter: returning with %s", newname);
2201  return(newname);
2202}
2203
[c79a047]2204void owl_function_show_filters(void)
[d54838d]2205{
[4542047]2206  const owl_filter *f;
[129e609]2207  GList *fl;
[7d4fbcd]2208  owl_fmtext fm;
2209
2210  owl_fmtext_init_null(&fm);
2211
2212  owl_fmtext_append_bold(&fm, "Filters:\n");
2213
[129e609]2214  for (fl = g.filterlist; fl; fl = g_list_next(fl)) {
2215    f = fl->data;
[7d4fbcd]2216    owl_fmtext_append_normal(&fm, "   ");
2217    if (owl_global_get_hascolors(&g)) {
[8fa9562]2218      owl_fmtext_append_normal_color(&fm, owl_filter_get_name(f), owl_filter_get_fgcolor(f), owl_filter_get_bgcolor(f));
[7d4fbcd]2219    } else {
2220      owl_fmtext_append_normal(&fm, owl_filter_get_name(f));
2221    }
2222    owl_fmtext_append_normal(&fm, "\n");
2223  }
2224  owl_function_popless_fmtext(&fm);
[7ab0020]2225  owl_fmtext_cleanup(&fm);
[7d4fbcd]2226}
2227
[e19eb97]2228void owl_function_show_filter(const char *name)
[d54838d]2229{
[4542047]2230  const owl_filter *f;
[cdc6ff1]2231  char *buff, *tmp;
[7d4fbcd]2232
2233  f=owl_global_get_filter(&g, name);
2234  if (!f) {
[ec6ff52]2235    owl_function_error("There is no filter named %s", name);
[7d4fbcd]2236    return;
2237  }
[cdc6ff1]2238  tmp = owl_filter_print(f);
2239  buff = owl_sprintf("%s: %s", owl_filter_get_name(f), tmp);
[7d4fbcd]2240  owl_function_popless_text(buff);
[0504f63]2241  owl_free(buff);
[cdc6ff1]2242  owl_free(tmp);
[7d4fbcd]2243}
2244
[c79a047]2245void owl_function_show_zpunts(void)
[d54838d]2246{
[4542047]2247  const owl_filter *f;
[77bced3]2248  const owl_list *fl;
[7d4fbcd]2249  char buff[5000];
[0504f63]2250  char *tmp;
[7d4fbcd]2251  owl_fmtext fm;
2252  int i, j;
2253
2254  owl_fmtext_init_null(&fm);
2255
2256  fl=owl_global_get_puntlist(&g);
2257  j=owl_list_get_size(fl);
2258  owl_fmtext_append_bold(&fm, "Active zpunt filters:\n");
2259
2260  for (i=0; i<j; i++) {
2261    f=owl_list_get_element(fl, i);
[ce7b824]2262    snprintf(buff, sizeof(buff), "[% 2d] ", i+1);
2263    owl_fmtext_append_normal(&fm, buff);
[0504f63]2264    tmp = owl_filter_print(f);
2265    owl_fmtext_append_normal(&fm, tmp);
2266    owl_free(tmp);
[7d4fbcd]2267  }
2268  owl_function_popless_fmtext(&fm);
[7ab0020]2269  owl_fmtext_cleanup(&fm);
[7d4fbcd]2270}
2271
[3abf28b]2272/* Create a filter for a class, instance if one doesn't exist.  If
2273 * instance is NULL then catch all messgaes in the class.  Returns the
2274 * name of the filter, which the caller must free.
[66e409c]2275 * If 'related' is nonzero, encompass unclasses and .d classes as well.
[3abf28b]2276 */
[66e409c]2277char *owl_function_classinstfilt(const char *c, const char *i, int related) 
[d54838d]2278{
[7d4fbcd]2279  owl_filter *f;
2280  char *argbuff, *filtname;
[d54838d]2281  char *tmpclass, *tmpinstance = NULL;
[7a20e4c]2282  char *class, *instance = NULL;
[7d4fbcd]2283
[66e409c]2284  if (related) {
2285    class = owl_util_baseclass(c);
2286    if (i) {
2287      instance = owl_util_baseclass(i);
2288    }
2289  } else {
2290    class = owl_strdup(c);
2291    if (i) {
2292      instance = owl_strdup(i);
2293    }
[7a20e4c]2294  }
2295
[7d4fbcd]2296  /* name for the filter */
2297  if (!instance) {
[66e409c]2298    filtname = owl_sprintf("%sclass-%s", related ? "related-" : "", class);
[7d4fbcd]2299  } else {
[66e409c]2300    filtname = owl_sprintf("%sclass-%s-instance-%s", related ? "related-" : "", class, instance);
[7d4fbcd]2301  }
[ed2412d]2302  /* downcase it */
[28ee32b]2303  {
2304    char *temp = g_utf8_strdown(filtname, -1);
2305    if (temp) {
2306      owl_free(filtname);
2307      filtname = temp;
2308    }
2309  }
[4099cf8]2310  /* turn spaces, single quotes, and double quotes into dots */
[e3d9c77]2311  owl_text_tr(filtname, ' ', '.');
[4099cf8]2312  owl_text_tr(filtname, '\'', '.');
2313  owl_text_tr(filtname, '"', '.');
[ed2412d]2314 
[7d4fbcd]2315  /* if it already exists then go with it.  This lets users override */
2316  if (owl_global_get_filter(&g, filtname)) {
[ff426f9]2317    goto done;
[7d4fbcd]2318  }
2319
2320  /* create the new filter */
[995eb4b]2321  tmpclass=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
[12c35df]2322  owl_text_tr(tmpclass, ' ', '.');
[4099cf8]2323  owl_text_tr(tmpclass, '\'', '.');
2324  owl_text_tr(tmpclass, '"', '.');
[ed2412d]2325  if (instance) {
[995eb4b]2326    tmpinstance=owl_text_quote(instance, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
[12c35df]2327    owl_text_tr(tmpinstance, ' ', '.');
[4099cf8]2328    owl_text_tr(tmpinstance, '\'', '.');
2329    owl_text_tr(tmpinstance, '"', '.');
[ed2412d]2330  }
[a0e6082]2331
[66e409c]2332  argbuff = owl_sprintf(related ? "class ^(un)*%s(\\.d)*$" : "class ^%s$", tmpclass);
[d54838d]2333  if (tmpinstance) {
[a0e6082]2334    char *tmp = argbuff;
[66e409c]2335    argbuff = owl_sprintf(related ? "%s and ( instance ^(un)*%s(\\.d)*$ )" : "%s and instance ^%s$", tmp, tmpinstance);
[a0e6082]2336    owl_free(tmp);
[7d4fbcd]2337  }
[ed2412d]2338  owl_free(tmpclass);
[d54838d]2339  if (tmpinstance) owl_free(tmpinstance);
[7d4fbcd]2340
[23fddad]2341  f = owl_filter_new_fromstring(filtname, argbuff);
[7d4fbcd]2342
2343  /* add it to the global list */
2344  owl_global_add_filter(&g, f);
2345
2346  owl_free(argbuff);
[ff426f9]2347done:
[be5aa09]2348  owl_free(class);
2349  if (instance) {
2350    owl_free(instance);
2351  }
[ed2412d]2352  return(filtname);
[7d4fbcd]2353}
2354
[3abf28b]2355/* Create a filter for personal zephyrs to or from the specified
2356 * zephyr user.  Includes login/logout notifications for the user.
[811644f]2357 * The name of the filter will be 'user-<shortuser>'.  If a filter already
[3abf28b]2358 * exists with this name, no new filter will be created.  This allows
2359 * the configuration to override this function.  Returns the name of
2360 * the filter, which the caller must free.
2361 */
[811644f]2362char *owl_function_zuserfilt(const char *longuser)
[d54838d]2363{
[7d4fbcd]2364  owl_filter *f;
[811644f]2365  char *argbuff, *esclonguser, *shortuser, *filtname;
[7d4fbcd]2366
2367  /* name for the filter */
[811644f]2368  shortuser = short_zuser(longuser);
2369  filtname = owl_sprintf("user-%s", shortuser);
2370  owl_free(shortuser);
[7d4fbcd]2371
2372  /* if it already exists then go with it.  This lets users override */
2373  if (owl_global_get_filter(&g, filtname)) {
[6cc3306]2374    return filtname;
[7d4fbcd]2375  }
2376
2377  /* create the new-internal filter */
[1d12db24]2378  esclonguser = owl_text_quote(longuser, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2379
[9a2ae6c]2380  argbuff=owl_sprintf("( type ^zephyr$ and filter personal and "
2381      "( ( direction ^in$ and sender ^%1$s$ ) or ( direction ^out$ and "
2382      "recipient ^%1$s$ ) ) ) or ( ( class ^login$ ) and ( sender ^%1$s$ ) )",
[1d12db24]2383      esclonguser);
[7d4fbcd]2384
[23fddad]2385  f = owl_filter_new_fromstring(filtname, argbuff);
[7d4fbcd]2386
2387  /* add it to the global list */
2388  owl_global_add_filter(&g, f);
2389
2390  /* free stuff */
2391  owl_free(argbuff);
[1d12db24]2392  owl_free(esclonguser);
[7360fab]2393
[ed2412d]2394  return(filtname);
[7d4fbcd]2395}
2396
[3abf28b]2397/* Create a filter for AIM IM messages to or from the specified
2398 * screenname.  The name of the filter will be 'aimuser-<user>'.  If a
2399 * filter already exists with this name, no new filter will be
2400 * created.  This allows the configuration to override this function.
2401 * Returns the name of the filter, which the caller must free.
2402 */
[e19eb97]2403char *owl_function_aimuserfilt(const char *user)
[3abf28b]2404{
2405  owl_filter *f;
2406  char *argbuff, *filtname;
[af9b92e]2407  char *escuser;
[3abf28b]2408
2409  /* name for the filter */
[9a2ae6c]2410  filtname=owl_sprintf("aimuser-%s", user);
[3abf28b]2411
2412  /* if it already exists then go with it.  This lets users override */
2413  if (owl_global_get_filter(&g, filtname)) {
2414    return(owl_strdup(filtname));
2415  }
2416
2417  /* create the new-internal filter */
[af9b92e]2418  escuser = owl_text_quote(user, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2419
[9a2ae6c]2420  argbuff = owl_sprintf(
2421      "( type ^aim$ and ( ( sender ^%1$s$ and recipient ^%2$s$ ) or "
2422      "( sender ^%2$s$ and recipient ^%1$s$ ) ) )",
2423      escuser, owl_global_get_aim_screenname_for_filters(&g));
[3abf28b]2424
[23fddad]2425  f = owl_filter_new_fromstring(filtname, argbuff);
[3abf28b]2426
2427  /* add it to the global list */
2428  owl_global_add_filter(&g, f);
2429
2430  /* free stuff */
2431  owl_free(argbuff);
[af9b92e]2432  owl_free(escuser);
[3abf28b]2433
2434  return(filtname);
2435}
2436
[e19eb97]2437char *owl_function_typefilt(const char *type)
[d54838d]2438{
[f73e519]2439  owl_filter *f;
[1d12db24]2440  char *argbuff, *filtname, *esctype;
[f73e519]2441
2442  /* name for the filter */
2443  filtname=owl_sprintf("type-%s", type);
2444
2445  /* if it already exists then go with it.  This lets users override */
2446  if (owl_global_get_filter(&g, filtname)) {
2447    return filtname;
2448  }
2449
2450  /* create the new-internal filter */
[1d12db24]2451  esctype = owl_text_quote(type, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2452
2453  argbuff = owl_sprintf("type ^%s$", esctype);
[f73e519]2454
[23fddad]2455  f = owl_filter_new_fromstring(filtname, argbuff);
[f73e519]2456
2457  /* add it to the global list */
2458  owl_global_add_filter(&g, f);
2459
2460  /* free stuff */
2461  owl_free(argbuff);
[1d12db24]2462  owl_free(esctype);
[f73e519]2463
2464  return filtname;
2465}
2466
[7d4fbcd]2467/* If flag is 1, marks for deletion.  If flag is 0,
2468 * unmarks for deletion. */
[d54838d]2469void owl_function_delete_curview_msgs(int flag)
2470{
[9e5c9f3]2471  const owl_view *v;
[7d4fbcd]2472  int i, j;
2473
2474  v=owl_global_get_current_view(&g);
2475  j=owl_view_get_size(v);
2476  for (i=0; i<j; i++) {
2477    if (flag == 1) {
2478      owl_message_mark_delete(owl_view_get_element(v, i));
2479    } else if (flag == 0) {
2480      owl_message_unmark_delete(owl_view_get_element(v, i));
2481    }
2482  }
2483
2484  owl_function_makemsg("%i messages marked for %sdeletion", j, flag?"":"un");
2485
2486  owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 
2487}
2488
[ecaec21]2489static char *owl_function_smartfilter_cc(const owl_message *m) {
2490  const char *ccs;
2491  char *filtname;
2492  char *text;
2493  owl_filter *f;
2494
2495  ccs = owl_message_get_attribute_value(m, "zephyr_ccs");
2496
2497  filtname = owl_sprintf("conversation-%s", ccs);
2498  owl_text_tr(filtname, ' ', '-');
2499
2500  if (owl_global_get_filter(&g, filtname)) {
2501    return filtname;
2502  }
2503
2504  text = owl_sprintf("type ^zephyr$ and filter personal and "
2505                     "zephyr_ccs ^%s%s%s$",
2506                     owl_getquoting(ccs), ccs, owl_getquoting(ccs));
2507
2508  f = owl_filter_new_fromstring(filtname, text);
2509
2510  owl_global_add_filter(&g, f);
2511
2512  owl_free(text);
2513
2514  return filtname;
2515}
2516
[3abf28b]2517/* Create a filter based on the current message.  Returns the name of
2518 * a filter or null.  The caller must free this name.
2519 *
2520 * if the curmsg is a personal zephyr return a filter name
[e6d989f]2521 *    to the zephyr conversation with that user.
[3abf28b]2522 * If the curmsg is a zephyr class message, instance foo, recip *,
2523 *    return a filter name to the class, inst.
2524 * If the curmsg is a zephyr class message and type==0 then
2525 *    return a filter name for just the class.
2526 * If the curmsg is a zephyr class message and type==1 then
2527 *    return a filter name for the class and instance.
2528 * If the curmsg is a personal AIM message returna  filter
2529 *    name to the AIM conversation with that user
2530 */
[8a5b5a1]2531char *owl_function_smartfilter(int type, int invert_related)
[d54838d]2532{
[9e5c9f3]2533  const owl_view *v;
[c08c70a]2534  const owl_message *m;
[811644f]2535  char *filtname = NULL;
2536  const char *argv[2], *zperson;
[8a5b5a1]2537  int related = owl_global_is_narrow_related(&g) ^ invert_related;
2538
[7d4fbcd]2539  v=owl_global_get_current_view(&g);
2540  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
2541
[5eeea3b]2542  if (!m || owl_view_get_size(v)==0) {
[ec6ff52]2543    owl_function_error("No message selected\n");
[4b464a4]2544    return(NULL);
[7d4fbcd]2545  }
2546
[f73e519]2547  /* very simple handling of admin messages for now */
[4b464a4]2548  if (owl_message_is_type_admin(m)) {
[3abf28b]2549    return(owl_function_typefilt("admin"));
2550  }
2551
[995eb4b]2552  /* very simple handling of loopback messages for now */
2553  if (owl_message_is_type_loopback(m)) {
2554    return(owl_function_typefilt("loopback"));
2555  }
2556
[3abf28b]2557  /* aim messages */
2558  if (owl_message_is_type_aim(m)) {
2559    if (owl_message_is_direction_in(m)) {
2560      filtname=owl_function_aimuserfilt(owl_message_get_sender(m));
2561    } else if (owl_message_is_direction_out(m)) {
2562      filtname=owl_function_aimuserfilt(owl_message_get_recipient(m));
2563    }
2564    return(filtname);
[7d4fbcd]2565  }
2566
[4b464a4]2567  /* narrow personal and login messages to the sender or recip as appropriate */
[25729b2]2568  if (owl_message_is_type_zephyr(m)) {
[0ef0e8f]2569    if (owl_message_is_personal(m) || owl_message_is_loginout(m)) {
[ecaec21]2570      if (owl_message_get_attribute_value(m, "zephyr_ccs") != NULL) {
2571        return owl_function_smartfilter_cc(m);
2572      }
2573
[4b464a4]2574      if (owl_message_is_direction_in(m)) {
[811644f]2575        zperson = owl_message_get_sender(m);
[4b464a4]2576      } else {
[811644f]2577        zperson = owl_message_get_recipient(m);
[4b464a4]2578      }
[811644f]2579      filtname = owl_function_zuserfilt(zperson);
2580      return filtname;
[7d4fbcd]2581    }
2582
[25729b2]2583    /* narrow class MESSAGE, instance foo, recip * messages to class, inst */
[ce74deb]2584    if (!strcasecmp(owl_message_get_class(m), "message")) {
[66e409c]2585      filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m), related);
[25729b2]2586      return(filtname);
2587    }
2588
2589    /* otherwise narrow to the class */
2590    if (type==0) {
[66e409c]2591      filtname=owl_function_classinstfilt(owl_message_get_class(m), NULL, related);
[25729b2]2592    } else if (type==1) {
[66e409c]2593      filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m), related);
[25729b2]2594    }
[4b464a4]2595    return(filtname);
[7d4fbcd]2596  }
2597
[25729b2]2598  /* pass it off to perl */
[66e409c]2599  argv[0] = type ? "1" : "0";
2600  argv[1] = related ? "1" : "0";
2601  return owl_perlconfig_message_call_method(m, "smartfilter", 2, argv);
[7d4fbcd]2602}
2603
[d54838d]2604void owl_function_smartzpunt(int type)
2605{
[d36f2cb]2606  /* Starts a zpunt command based on the current class,instance pair.
2607   * If type=0, uses just class.  If type=1, uses instance as well. */
[9e5c9f3]2608  const owl_view *v;
[c08c70a]2609  const owl_message *m;
[e19eb97]2610  const char *cmdprefix, *mclass, *minst;
[65b2173]2611  char *cmd;
[d36f2cb]2612 
2613  v=owl_global_get_current_view(&g);
2614  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
2615
[5eeea3b]2616  if (!m || owl_view_get_size(v)==0) {
[ec6ff52]2617    owl_function_error("No message selected\n");
[d36f2cb]2618    return;
2619  }
2620
2621  /* for now we skip admin messages. */
[4b464a4]2622  if (owl_message_is_type_admin(m)
[5789230]2623      || owl_message_is_loginout(m)
[4b464a4]2624      || !owl_message_is_type_zephyr(m)) {
[ec6ff52]2625    owl_function_error("smartzpunt doesn't support this message type.");
[d36f2cb]2626    return;
2627  }
2628
[cee1f25]2629  mclass = owl_message_get_class(m);
2630  minst = owl_message_get_instance(m);
[d36f2cb]2631  if (!mclass || !*mclass || *mclass==' '
2632      || (!strcasecmp(mclass, "message") && !strcasecmp(minst, "personal"))
2633      || (type && (!minst || !*minst|| *minst==' '))) {
[ec6ff52]2634    owl_function_error("smartzpunt can't safely do this for <%s,%s>",
[d36f2cb]2635                         mclass, minst);
2636  } else {
2637    cmdprefix = "start-command zpunt ";
[cee1f25]2638    cmd = owl_malloc(strlen(cmdprefix)+strlen(mclass)+strlen(minst)+10);
[d36f2cb]2639    strcpy(cmd, cmdprefix);
[cee1f25]2640    strcat(cmd, owl_getquoting(mclass));
[d36f2cb]2641    strcat(cmd, mclass);
[cee1f25]2642    strcat(cmd, owl_getquoting(mclass));
[d36f2cb]2643    if (type) {
2644      strcat(cmd, " ");
[cee1f25]2645      strcat(cmd, owl_getquoting(minst));
[d36f2cb]2646      strcat(cmd, minst);
[cee1f25]2647      strcat(cmd, owl_getquoting(minst));
[d36f2cb]2648    } else {
2649      strcat(cmd, " *");
2650    }
2651    owl_function_command(cmd);
2652    owl_free(cmd);
2653  }
2654}
2655
[5e0b690]2656/* Set the color of the current view's filter to
2657 * be 'color'
2658 */
[e19eb97]2659void owl_function_color_current_filter(const char *fgcolor, const char *bgcolor)
[d54838d]2660{
[e19eb97]2661  const char *name;
[7d4fbcd]2662
2663  name=owl_view_get_filtname(owl_global_get_current_view(&g));
[8fa9562]2664  owl_function_color_filter(name, fgcolor, bgcolor);
[5e0b690]2665}
2666
2667/* Set the color of the filter 'filter' to be 'color'.  If the color
2668 * name does not exist, return -1, if the filter does not exist or is
2669 * the "all" filter, return -2.  Return 0 on success
2670 */
[e19eb97]2671int owl_function_color_filter(const char *filtname, const char *fgcolor, const char *bgcolor)
[5e0b690]2672{
2673  owl_filter *f;
2674
2675  f=owl_global_get_filter(&g, filtname);
[7d4fbcd]2676  if (!f) {
[ec6ff52]2677    owl_function_error("Unknown filter");
[5e0b690]2678    return(-2);
[7d4fbcd]2679  }
2680
2681  /* don't touch the all filter */
[5e0b690]2682  if (!strcmp(filtname, "all")) {
[ec6ff52]2683    owl_function_error("You may not change the 'all' filter.");
[5e0b690]2684    return(-2);
[7d4fbcd]2685  }
2686
[601733d]2687  if (owl_util_string_to_color(fgcolor)==OWL_COLOR_INVALID) {
[8fa9562]2688    owl_function_error("No color named '%s' avilable.", fgcolor);
[5e0b690]2689    return(-1);
[12c35df]2690  }
[8fa9562]2691
2692
2693  if (bgcolor != NULL) {
[601733d]2694    if (owl_util_string_to_color(bgcolor)==OWL_COLOR_INVALID) {
[8fa9562]2695      owl_function_error("No color named '%s' avilable.", bgcolor);
2696      return(-1);
2697    }
2698    owl_filter_set_bgcolor(f, owl_util_string_to_color(bgcolor));
2699  }
2700  owl_filter_set_fgcolor(f, owl_util_string_to_color(fgcolor));
2701 
[7d4fbcd]2702  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
[5e0b690]2703  return(0);
[7d4fbcd]2704}
2705
[c79a047]2706void owl_function_show_colors(void)
[d54838d]2707{
[7d4fbcd]2708  owl_fmtext fm;
[c2c5c77]2709  int i; 
2710 
[7d4fbcd]2711  owl_fmtext_init_null(&fm);
[ca9142e]2712  owl_fmtext_append_normal(&fm, "default: ");
[8fa9562]2713  owl_fmtext_append_normal_color(&fm, "default\n", OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
[ca9142e]2714
2715  owl_fmtext_append_normal(&fm,"red:      ");
[8fa9562]2716  owl_fmtext_append_normal_color(&fm, "red\n", OWL_COLOR_RED, OWL_COLOR_DEFAULT);
[ca9142e]2717
2718  owl_fmtext_append_normal(&fm,"green:    ");
[8fa9562]2719  owl_fmtext_append_normal_color(&fm, "green\n", OWL_COLOR_GREEN, OWL_COLOR_DEFAULT);
[ca9142e]2720
2721  owl_fmtext_append_normal(&fm,"yellow:   ");
[8fa9562]2722  owl_fmtext_append_normal_color(&fm, "yellow\n", OWL_COLOR_YELLOW, OWL_COLOR_DEFAULT);
[ca9142e]2723
2724  owl_fmtext_append_normal(&fm,"blue:     ");
[8fa9562]2725  owl_fmtext_append_normal_color(&fm, "blue\n", OWL_COLOR_BLUE, OWL_COLOR_DEFAULT);
[ca9142e]2726
2727  owl_fmtext_append_normal(&fm,"magenta:  ");
[8fa9562]2728  owl_fmtext_append_normal_color(&fm, "magenta\n", OWL_COLOR_MAGENTA, OWL_COLOR_DEFAULT);
[ca9142e]2729
2730  owl_fmtext_append_normal(&fm,"cyan:     ");
[8fa9562]2731  owl_fmtext_append_normal_color(&fm, "cyan\n", OWL_COLOR_CYAN, OWL_COLOR_DEFAULT);
[ca9142e]2732
2733  owl_fmtext_append_normal(&fm,"white:    ");
[8fa9562]2734  owl_fmtext_append_normal_color(&fm, "white\n", OWL_COLOR_WHITE, OWL_COLOR_DEFAULT);
[7d4fbcd]2735
[c2c5c77]2736  for(i = 8; i < COLORS; ++i) {
2737    char* str1 = owl_sprintf("%4i:     ",i);
2738    char* str2 = owl_sprintf("%i\n",i);
2739    owl_fmtext_append_normal(&fm,str1);
2740    owl_fmtext_append_normal_color(&fm, str2, i, OWL_COLOR_DEFAULT);
2741    owl_free(str1);
2742     owl_free(str2);
2743  }
2744 
[7d4fbcd]2745  owl_function_popless_fmtext(&fm);
[7ab0020]2746  owl_fmtext_cleanup(&fm);
[7d4fbcd]2747}
2748
[5bb6c21]2749/* add the given class, inst, recip to the punt list for filtering.
2750 *   if direction==0 then punt
2751 *   if direction==1 then unpunt
2752 */
[e19eb97]2753void owl_function_zpunt(const char *class, const char *inst, const char *recip, int direction)
[d54838d]2754{
[c894c15]2755  char *puntexpr, *classexpr, *instexpr, *recipexpr;
[bc08664]2756  char *quoted;
[7d4fbcd]2757
[5bb6c21]2758  if (!strcmp(class, "*")) {
[c894c15]2759    classexpr = owl_sprintf("class .*");
[5bb6c21]2760  } else {
[bc08664]2761    quoted=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
[cee1f25]2762    owl_text_tr(quoted, ' ', '.');
[4099cf8]2763    owl_text_tr(quoted, '\'', '.');
2764    owl_text_tr(quoted, '"', '.');
[c894c15]2765    classexpr = owl_sprintf("class ^(un)*%s(\\.d)*$", quoted);
[bc08664]2766    owl_free(quoted);
[5bb6c21]2767  }
2768  if (!strcmp(inst, "*")) {
[c894c15]2769    instexpr = owl_sprintf(" and instance .*");
[7d4fbcd]2770  } else {
[bc08664]2771    quoted=owl_text_quote(inst, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
[cee1f25]2772    owl_text_tr(quoted, ' ', '.');
[4099cf8]2773    owl_text_tr(quoted, '\'', '.');
2774    owl_text_tr(quoted, '"', '.');
[c894c15]2775    instexpr = owl_sprintf(" and instance ^(un)*%s(\\.d)*$", quoted);
[bc08664]2776    owl_free(quoted);
[7d4fbcd]2777  }
[c894c15]2778  if (!strcmp(recip, "*")) {
2779    recipexpr = owl_sprintf("");
2780  } else {
[e6c59ba]2781    if(!strcmp(recip, "%me%")) {
2782      recip = owl_zephyr_get_sender();
2783    }
[bc08664]2784    quoted=owl_text_quote(recip, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
[cee1f25]2785    owl_text_tr(quoted, ' ', '.');
[4099cf8]2786    owl_text_tr(quoted, '\'', '.');
2787    owl_text_tr(quoted, '"', '.');
[7980fb2]2788    recipexpr = owl_sprintf(" and recipient ^%s$", quoted);
[bc08664]2789    owl_free(quoted);
[5bb6c21]2790  }
[ce7b824]2791
[c894c15]2792  puntexpr = owl_sprintf("%s %s %s", classexpr, instexpr, recipexpr);
2793  owl_function_punt(puntexpr, direction);
2794  owl_free(puntexpr);
2795  owl_free(classexpr);
2796  owl_free(instexpr);
2797  owl_free(recipexpr);
[ce7b824]2798}
2799
[e19eb97]2800void owl_function_punt(const char *filter, int direction)
[ce7b824]2801{
2802  owl_filter *f;
2803  owl_list *fl;
[23fddad]2804  int i, j;
[ce7b824]2805  fl=owl_global_get_puntlist(&g);
2806
2807  /* first, create the filter */
2808  owl_function_debugmsg("About to filter %s", filter);
[23fddad]2809  f = owl_filter_new_fromstring("punt-filter", filter);
2810  if (f == NULL) {
[ec6ff52]2811    owl_function_error("Error creating filter for zpunt");
[7d4fbcd]2812    return;
2813  }
2814
2815  /* Check for an identical filter */
2816  j=owl_list_get_size(fl);
2817  for (i=0; i<j; i++) {
2818    if (owl_filter_equiv(f, owl_list_get_element(fl, i))) {
[ce7b824]2819      owl_function_debugmsg("found an equivalent punt filter");
[7d4fbcd]2820      /* if we're punting, then just silently bow out on this duplicate */
2821      if (direction==0) {
[23fddad]2822        owl_filter_delete(f);
[7d4fbcd]2823        return;
2824      }
2825
2826      /* if we're unpunting, then remove this filter from the puntlist */
2827      if (direction==1) {
[23fddad]2828        owl_filter_delete(owl_list_get_element(fl, i));
[7d4fbcd]2829        owl_list_remove_element(fl, i);
[23fddad]2830        owl_filter_delete(f);
[7d4fbcd]2831        return;
2832      }
2833    }
2834  }
2835
[ce7b824]2836  owl_function_debugmsg("punting");
[7d4fbcd]2837  /* If we're punting, add the filter to the global punt list */
2838  if (direction==0) {
2839    owl_list_append_element(fl, f);
2840  }
2841}
2842
[c79a047]2843void owl_function_show_keymaps(void)
[d54838d]2844{
[7d4fbcd]2845  owl_list l;
2846  owl_fmtext fm;
[afa200a]2847  const owl_keymap *km;
[12bc46a]2848  const owl_keyhandler *kh;
[1aee7d9]2849  int i, numkm;
[e19eb97]2850  const char *kmname;
[7d4fbcd]2851
[1aee7d9]2852  kh = owl_global_get_keyhandler(&g);
[7d4fbcd]2853  owl_fmtext_init_null(&fm);
2854  owl_fmtext_append_bold(&fm, "Keymaps:   ");
2855  owl_fmtext_append_normal(&fm, "(use 'show keymap <name>' for details)\n");
[1aee7d9]2856  owl_keyhandler_get_keymap_names(kh, &l);
[7d4fbcd]2857  owl_fmtext_append_list(&fm, &l, "\n", owl_function_keymap_summary);
2858  owl_fmtext_append_normal(&fm, "\n");
[1aee7d9]2859
2860  numkm = owl_list_get_size(&l);
2861  for (i=0; i<numkm; i++) {
2862    kmname = owl_list_get_element(&l, i);
2863    km = owl_keyhandler_get_keymap(kh, kmname);
2864    owl_fmtext_append_bold(&fm, "\n\n----------------------------------------------------------------------------------------------------\n\n");
[13ebf92]2865    owl_keymap_get_details(km, &fm, 0);
[1aee7d9]2866  }
2867  owl_fmtext_append_normal(&fm, "\n");
2868 
[7d4fbcd]2869  owl_function_popless_fmtext(&fm);
[bb0d439]2870  owl_keyhandler_keymap_namelist_cleanup(&l);
[7ab0020]2871  owl_fmtext_cleanup(&fm);
[7d4fbcd]2872}
2873
[e19eb97]2874char *owl_function_keymap_summary(const char *name)
[d54838d]2875{
[afa200a]2876  const owl_keymap *km
[7d4fbcd]2877    = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name);
2878  if (km) return owl_keymap_summary(km);
2879  else return(NULL);
2880}
2881
2882/* TODO: implement for real */
[e19eb97]2883void owl_function_show_keymap(const char *name)
[d54838d]2884{
[1fd0b25]2885  owl_fmtext fm;
[afa200a]2886  const owl_keymap *km;
[7d4fbcd]2887
2888  owl_fmtext_init_null(&fm);
2889  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name);
2890  if (km) {
[13ebf92]2891    owl_keymap_get_details(km, &fm, 1);
[7d4fbcd]2892  } else {
2893    owl_fmtext_append_normal(&fm, "No such keymap...\n");
2894  } 
2895  owl_function_popless_fmtext(&fm);
[7ab0020]2896  owl_fmtext_cleanup(&fm);
[7d4fbcd]2897}
2898
[e19eb97]2899void owl_function_help_for_command(const char *cmdname)
[d54838d]2900{
[1fd0b25]2901  owl_fmtext fm;
[7d4fbcd]2902
2903  owl_fmtext_init_null(&fm);
2904  owl_cmd_get_help(owl_global_get_cmddict(&g), cmdname, &fm);
2905  owl_function_popless_fmtext(&fm); 
[7ab0020]2906  owl_fmtext_cleanup(&fm);
[7d4fbcd]2907}
[1fd0b25]2908
[2ec737f]2909void owl_function_set_search(const char *string)
[d54838d]2910{
[41c9a96]2911  owl_regex re;
2912
2913  if (string && owl_regex_create_quoted(&re, string) == 0) {
2914    owl_global_set_search_re(&g, &re);
[5cbc929]2915    owl_regex_cleanup(&re);
[41c9a96]2916  } else {
2917    owl_global_set_search_re(&g, NULL);
2918  }
[2ec737f]2919}
[ab225e0]2920
[118c919]2921void owl_function_search_helper(int consider_current, int direction)
[d54838d]2922{
[1fd0b25]2923  /* move to a message that contains the string.  If direction is
2924   * OWL_DIRECTION_DOWNWARDS then search fowards, if direction is
2925   * OWL_DIRECTION_UPWARDS then search backwards.
2926   *
[118c919]2927   * If consider_current is true then it will stay on the
[9c1e61d4]2928   * current message if it contains the string.
[1fd0b25]2929   */
2930
[9e5c9f3]2931  const owl_view *v;
[1fd0b25]2932  int viewsize, i, curmsg, start;
2933  owl_message *m;
2934
2935  v=owl_global_get_current_view(&g);
2936  viewsize=owl_view_get_size(v);
2937  curmsg=owl_global_get_curmsg(&g);
2938 
2939  if (viewsize==0) {
[ec6ff52]2940    owl_function_error("No messages present");
[1fd0b25]2941    return;
2942  }
2943
[118c919]2944  if (consider_current) {
[1fd0b25]2945    start=curmsg;
2946  } else if (direction==OWL_DIRECTION_DOWNWARDS) {
2947    start=curmsg+1;
2948  } else {
2949    start=curmsg-1;
2950  }
2951
2952  /* bounds check */
2953  if (start>=viewsize || start<0) {
[ec6ff52]2954    owl_function_error("No further matches found");
[1fd0b25]2955    return;
2956  }
2957
2958  for (i=start; i<viewsize && i>=0;) {
2959    m=owl_view_get_element(v, i);
[41c9a96]2960    if (owl_message_search(m, owl_global_get_search_re(&g))) {
[1fd0b25]2961      owl_global_set_curmsg(&g, i);
2962      owl_function_calculate_topmsg(direction);
2963      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2964      if (direction==OWL_DIRECTION_DOWNWARDS) {
2965        owl_global_set_direction_downwards(&g);
2966      } else {
2967        owl_global_set_direction_upwards(&g);
2968      }
2969      return;
2970    }
2971    if (direction==OWL_DIRECTION_DOWNWARDS) {
2972      i++;
2973    } else {
2974      i--;
2975    }
[0cb6c26]2976    owl_function_mask_sigint(NULL);
[bf66f4e]2977    if(owl_global_is_interrupted(&g)) {
2978      owl_global_unset_interrupted(&g);
[0cb6c26]2979      owl_function_unmask_sigint(NULL);
[bf66f4e]2980      owl_function_makemsg("Search interrupted!");
2981      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2982      return;
2983    }
[0cb6c26]2984    owl_function_unmask_sigint(NULL);
[1fd0b25]2985  }
[37c27cf]2986  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
[ec6ff52]2987  owl_function_error("No matches found");
[1fd0b25]2988}
2989
2990/* strips formatting from ztext and returns the unformatted text.
2991 * caller is responsible for freeing. */
[e19eb97]2992char *owl_function_ztext_stylestrip(const char *zt)
[d54838d]2993{
[1fd0b25]2994  owl_fmtext fm;
2995  char *plaintext;
2996
2997  owl_fmtext_init_null(&fm);
2998  owl_fmtext_append_ztext(&fm, zt);
2999  plaintext = owl_fmtext_print_plain(&fm);
[7ab0020]3000  owl_fmtext_cleanup(&fm);
[1fd0b25]3001  return(plaintext);
3002}
[42abb10]3003
[5a95b69]3004/* Popup a buddylisting.  If filename is NULL use the default .anyone */
[e19eb97]3005void owl_function_buddylist(int aim, int zephyr, const char *filename)
[d54838d]3006{
[fea7992]3007  int i, j, idle;
[8daf504]3008  int interrupted = 0;
[42abb10]3009  owl_fmtext fm;
[35b3518]3010  const owl_buddylist *bl;
[476faed]3011  const owl_buddy *b;
[99b50a5]3012  char *timestr;
[09489b89]3013#ifdef HAVE_LIBZEPHYR
[fea7992]3014  int x;
3015  owl_list anyone;
[e19eb97]3016  const char *user;
[65b2173]3017  char *tmp;
[09489b89]3018  ZLocations_t location[200];
3019  int numlocs, ret;
3020#endif
[42abb10]3021
[aa5f725]3022  owl_fmtext_init_null(&fm);
[42abb10]3023
[a0a5179]3024  /* AIM first */
[aa5f725]3025  if (aim && owl_global_is_aimloggedin(&g)) {
[f4d0975]3026    bl=owl_global_get_buddylist(&g);
[42abb10]3027
[aa5f725]3028    owl_fmtext_append_bold(&fm, "AIM users logged in:\n");
[f4d0975]3029    /* we're assuming AIM for now */
3030    j=owl_buddylist_get_size(bl);
[aa5f725]3031    for (i=0; i<j; i++) {
[f4d0975]3032      b=owl_buddylist_get_buddy_n(bl, i);
3033      idle=owl_buddy_get_idle_time(b);
[de03334]3034      if (idle!=0) {
[5b85d19]3035        timestr=owl_util_minutes_to_timestr(idle);
[de03334]3036      } else {
3037        timestr=owl_strdup("");
3038      }
[99b50a5]3039      owl_fmtext_appendf_normal(&fm, "  %-20.20s %-12.12s\n", owl_buddy_get_name(b), timestr);
[de03334]3040      owl_free(timestr);
[42abb10]3041    }
[aa5f725]3042  }
[42abb10]3043
[09489b89]3044#ifdef HAVE_LIBZEPHYR
[aa5f725]3045  if (zephyr) {
[bfbf590]3046    if(!owl_global_is_havezephyr(&g)) {
3047      owl_function_error("Zephyr currently not available.");
[a0a5179]3048    } else {
[bfbf590]3049      owl_fmtext_append_bold(&fm, "Zephyr users logged in:\n");
3050      owl_list_create(&anyone);
3051      ret=owl_zephyr_get_anyone_list(&anyone, filename);
3052      if (ret) {
[94af438]3053        if (errno == ENOENT) {
3054          owl_fmtext_append_normal(&fm, " You have not added any zephyr buddies.  Use the\n");
3055          owl_fmtext_append_normal(&fm, " command ':addbuddy zephyr ");
3056          owl_fmtext_append_bold(  &fm, "<username>");
3057          owl_fmtext_append_normal(&fm, "'.\n");
3058        } else {
3059          owl_fmtext_append_normal(&fm, " Could not read zephyr buddies from the .anyone file.\n");
3060        }
[bfbf590]3061      } else {
3062        j=owl_list_get_size(&anyone);
3063        for (i=0; i<j; i++) {
3064          user=owl_list_get_element(&anyone, i);
[712caac]3065          ret=ZLocateUser(zstr(user), &numlocs, ZAUTH);
[8daf504]3066
3067          owl_function_mask_sigint(NULL);
3068          if(owl_global_is_interrupted(&g)) {
3069            interrupted = 1;
3070            owl_global_unset_interrupted(&g);
3071            owl_function_unmask_sigint(NULL);
3072            owl_function_makemsg("Interrupted!");
3073            break;
3074          }
3075
3076          owl_function_unmask_sigint(NULL);
[08e414a]3077
3078          if (ret!=ZERR_NONE) {
[bfbf590]3079            owl_function_error("Error getting location for %s", user);
3080            continue;
3081          }
3082
3083          numlocs=200;
3084          ret=ZGetLocations(location, &numlocs);
3085          if (ret==0) {
3086            for (x=0; x<numlocs; x++) {
3087              tmp=short_zuser(user);
[99b50a5]3088              owl_fmtext_appendf_normal(&fm, "  %-10.10s %-24.24s %-12.12s  %20.20s\n",
3089                                        tmp,
3090                                        location[x].host,
3091                                        location[x].tty,
3092                                        location[x].time);
[bfbf590]3093              owl_free(tmp);
3094            }
3095            if (numlocs>=200) {
3096              owl_fmtext_append_normal(&fm, "  Too many locations found for this user, truncating.\n");
3097            }
3098          }
3099        }
[42abb10]3100      }
[8c59178]3101      owl_list_cleanup(&anyone, owl_free);
[8daf504]3102    }
[42abb10]3103  }
[09489b89]3104#endif
[f8b42ac]3105
[cce5dbd]3106  if (aim && zephyr) {
3107    if (owl_perlconfig_is_function("BarnOwl::Hooks::_get_blist")) {
3108      char * perlblist = owl_perlconfig_execute("BarnOwl::Hooks::_get_blist()");
3109      if (perlblist) {
3110        owl_fmtext_append_ztext(&fm, perlblist);
3111        owl_free(perlblist);
[f8b42ac]3112      }
[cce5dbd]3113    }
[f8b42ac]3114  }
[8daf504]3115
3116  if(!interrupted) {
3117    owl_function_popless_fmtext(&fm);
3118  }
[7ab0020]3119  owl_fmtext_cleanup(&fm);
[42abb10]3120}
[2adaf1d]3121
[f36222f]3122/* Dump messages in the current view to the file 'filename'. */
[e19eb97]3123void owl_function_dump(const char *filename) 
[d54838d]3124{
[682fb8d]3125  int i, j;
[2adaf1d]3126  owl_message *m;
[9e5c9f3]3127  const owl_view *v;
[2adaf1d]3128  FILE *file;
[f9eea4c]3129  char *plaintext;
[f36222f]3130
[2adaf1d]3131  v=owl_global_get_current_view(&g);
3132
3133  /* in the future make it ask yes/no */
3134  /*
3135  ret=stat(filename, &sbuf);
3136  if (!ret) {
3137    ret=owl_function_askyesno("File exists, continue? [Y/n]");
3138    if (!ret) return;
3139  }
3140  */
3141
3142  file=fopen(filename, "w");
3143  if (!file) {
[ec6ff52]3144    owl_function_error("Error opening file");
[2adaf1d]3145    return;
3146  }
3147
3148  j=owl_view_get_size(v);
3149  for (i=0; i<j; i++) {
3150    m=owl_view_get_element(v, i);
[f9eea4c]3151    plaintext = owl_strip_format_chars(owl_message_get_text(m));
3152    if (plaintext) {
3153      fputs(plaintext, file);
3154      owl_free(plaintext);
3155    }
[2adaf1d]3156  }
3157  fclose(file);
[f36222f]3158  owl_function_makemsg("Messages dumped to %s", filename);
[2adaf1d]3159}
[8f44c6b]3160
[801c7cb]3161void owl_function_do_newmsgproc(void)
3162{
[8f44c6b]3163  if (owl_global_get_newmsgproc(&g) && strcmp(owl_global_get_newmsgproc(&g), "")) {
3164    /* if there's a process out there, we need to check on it */
3165    if (owl_global_get_newmsgproc_pid(&g)) {
3166      owl_function_debugmsg("Checking on newmsgproc pid==%i", owl_global_get_newmsgproc_pid(&g));
3167      owl_function_debugmsg("Waitpid return is %i", waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG));
3168      waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG);
3169      if (waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG)==-1) {
3170        /* it exited */
3171        owl_global_set_newmsgproc_pid(&g, 0);
3172        owl_function_debugmsg("newmsgproc exited");
3173      } else {
3174        owl_function_debugmsg("newmsgproc did not exit");
3175      }
3176    }
3177   
3178    /* if it exited, fork & exec a new one */
3179    if (owl_global_get_newmsgproc_pid(&g)==0) {
[0e5afa2]3180      pid_t i;
3181      int myargc;
[8f44c6b]3182      i=fork();
3183      if (i) {
3184        /* parent set the child's pid */
3185        owl_global_set_newmsgproc_pid(&g, i);
3186        owl_function_debugmsg("I'm the parent and I started a new newmsgproc with pid %i", i);
3187      } else {
3188        /* child exec's the program */
3189        char **parsed;
3190        parsed=owl_parseline(owl_global_get_newmsgproc(&g), &myargc);
[d54838d]3191        if (myargc < 0) {
3192          owl_function_debugmsg("Could not parse newmsgproc '%s': unbalanced quotes?", owl_global_get_newmsgproc(&g));
3193        }
3194        if (myargc <= 0) {
3195          _exit(127);
3196        }
[34509d5]3197        parsed=owl_realloc(parsed, sizeof(*parsed) * (myargc+1));
[d54838d]3198        parsed[myargc] = NULL;
[8f44c6b]3199       
[d54838d]3200        owl_function_debugmsg("About to exec \"%s\" with %d arguments", parsed[0], myargc);
[8f44c6b]3201       
[d54838d]3202        execvp(parsed[0], parsed);
[8f44c6b]3203       
3204       
3205        /* was there an error exec'ing? */
[d54838d]3206        owl_function_debugmsg("Cannot run newmsgproc '%s': cannot exec '%s': %s", 
3207                              owl_global_get_newmsgproc(&g), parsed[0], strerror(errno));
[8f44c6b]3208        _exit(127);
3209      }
3210    }
3211  }
3212}
[ecd5dc5]3213
[2824f79]3214/* print the xterm escape sequence to raise the window */
[801c7cb]3215void owl_function_xterm_raise(void)
3216{
[e9b1f60]3217  printf("\033[5t");
[ecd5dc5]3218}
3219
[2824f79]3220/* print the xterm escape sequence to deiconify the window */
[801c7cb]3221void owl_function_xterm_deiconify(void)
3222{
[e9b1f60]3223  printf("\033[1t");
[ecd5dc5]3224}
[38cf544c]3225
3226/* Add the specified command to the startup file.  Eventually this
3227 * should be clever, and rewriting settings that will obviosly
3228 * override earlier settings with 'set' 'bindkey' and 'alias'
[2824f79]3229 * commands.  For now though we just remove any line that would
3230 * duplicate this one and then append this line to the end of
3231 * startupfile.
[38cf544c]3232 */
[e19eb97]3233void owl_function_addstartup(const char *buff)
[38cf544c]3234{
3235  FILE *file;
[e19eb97]3236  const char *filename;
[38cf544c]3237
[b363d83]3238  filename=owl_global_get_startupfile(&g);
[2c48db8]3239
3240  /* delete earlier copies */
3241  owl_util_file_deleteline(filename, buff, 1);
3242
[38cf544c]3243  file=fopen(filename, "a");
3244  if (!file) {
[ec6ff52]3245    owl_function_error("Error opening startupfile for new command");
[38cf544c]3246    return;
3247  }
[2824f79]3248
3249  /* add this line */
[38cf544c]3250  fprintf(file, "%s\n", buff);
[2824f79]3251
[38cf544c]3252  fclose(file);
3253}
3254
3255/* Remove the specified command from the startup file. */
[e19eb97]3256void owl_function_delstartup(const char *buff)
[38cf544c]3257{
[e19eb97]3258  const char *filename;
[b363d83]3259  filename=owl_global_get_startupfile(&g);
[38cf544c]3260  owl_util_file_deleteline(filename, buff, 1);
3261}
3262
[2404c3a]3263/* Execute owl commands from the given filename.  If the filename
3264 * is NULL, use the default owl startup commands file.
3265 */
[e19eb97]3266void owl_function_source(const char *filename)
[38cf544c]3267{
[10d67d5]3268  char *path;
[38cf544c]3269  FILE *file;
[b7ee89b]3270  char *s = NULL;
[dd28b51]3271  int fail_silent = 0;
[38cf544c]3272
[2404c3a]3273  if (!filename) {
[dd28b51]3274    fail_silent = 1;
[10d67d5]3275    path = owl_strdup(owl_global_get_startupfile(&g));
3276  } else {
3277    path = owl_util_makepath(filename);
[2404c3a]3278  }
[b7ee89b]3279  file = fopen(path, "r");
[10d67d5]3280  owl_free(path);
[38cf544c]3281  if (!file) {
[dd28b51]3282    if (!fail_silent) {
3283      owl_function_error("Error opening file: %s", filename);
3284    }
[38cf544c]3285    return;
3286  }
[b7ee89b]3287  while (owl_getline_chomp(&s, file)) {
3288    if (s[0] == '\0' || s[0] == '#')
3289      continue;
3290    owl_function_command(s);
[38cf544c]3291  }
[b7ee89b]3292
3293  owl_free(s);
[38cf544c]3294  fclose(file);
3295}
[c3ab155]3296
[e19eb97]3297void owl_function_change_style(owl_view *v, const char *stylename)
[ef56a67]3298{
[1fdab04]3299  const owl_style *s;
[f1cbb7a]3300
3301  s=owl_global_get_style_by_name(&g, stylename);
3302  if (!s) {
[ec6ff52]3303    owl_function_error("No style named %s", stylename);
[f1cbb7a]3304    return;
3305  }
3306  owl_view_set_style(v, s);
[ef56a67]3307  owl_messagelist_invalidate_formats(owl_global_get_msglist(&g));
3308  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
3309  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3310}
3311
[c79a047]3312void owl_function_toggleoneline(void)
[c3ab155]3313{
[ef56a67]3314  owl_view *v;
[1fdab04]3315  const owl_style *s;
[c3ab155]3316
[ef56a67]3317  v=owl_global_get_current_view(&g);
3318  s=owl_view_get_style(v);
[c3ab155]3319
[ef56a67]3320  if (!owl_style_matches_name(s, "oneline")) {
3321    owl_function_change_style(v, "oneline");
[c3ab155]3322  } else {
[ef56a67]3323    owl_function_change_style(v, owl_global_get_default_style(&g));
[c3ab155]3324  }
[ef56a67]3325
3326  owl_messagelist_invalidate_formats(owl_global_get_msglist(&g));
3327  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
3328  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
[c3ab155]3329}
[ec6ff52]3330
[e19eb97]3331void owl_function_error(const char *fmt, ...)
[ec6ff52]3332{
[340c3e7]3333  static int in_error = 0;
[ec6ff52]3334  va_list ap;
[45cf49f]3335  char *buff;
[e19eb97]3336  const char *nl;
[ec6ff52]3337
[340c3e7]3338  if (++in_error > 2) {
3339    /* More than two nested errors, bail immediately. */
3340    in_error--;
3341    return;
3342  }
[ec6ff52]3343
[340c3e7]3344  va_start(ap, fmt);
[bd8b991]3345  buff = g_strdup_vprintf(fmt, ap);
[340c3e7]3346  va_end(ap);
3347
[ec6ff52]3348  owl_function_debugmsg("ERROR: %s", buff);
[340c3e7]3349  owl_function_log_err(buff);
3350
[bd8b991]3351  nl = strchr(buff, '\n');
[340c3e7]3352
3353  /*
3354    Showing admin messages triggers a lot of code. If we have a
3355    recursive error call, that's the most likely candidate, so
3356    suppress the call in that case, to try to avoid infinite looping.
3357  */
3358
3359  if(nl && *(nl + 1) && in_error == 1) {
[bd8b991]3360    /* Multiline error */
3361    owl_function_adminmsg("ERROR", buff);
3362  } else {
[637d983]3363    owl_function_makemsg("[Error] %s", buff);
[ec6ff52]3364  }
[340c3e7]3365
[bd8b991]3366  owl_free(buff);
[340c3e7]3367
3368  in_error--;
[45cf49f]3369}
3370
[e19eb97]3371void owl_function_log_err(const char *string)
[45cf49f]3372{
3373  char *date;
3374  time_t now;
3375  char *buff;
3376
3377  now=time(NULL);
3378  date=owl_strdup(ctime(&now));
3379  date[strlen(date)-1]='\0';
3380
3381  buff = owl_sprintf("%s %s", date, string);
3382
3383  owl_errqueue_append_err(owl_global_get_errqueue(&g), buff);
3384
3385  owl_free(buff);
3386  owl_free(date);
[ec6ff52]3387}
3388
[c79a047]3389void owl_function_showerrs(void)
[ec6ff52]3390{
3391  owl_fmtext fm;
3392
3393  owl_fmtext_init_null(&fm);
3394  owl_fmtext_append_normal(&fm, "Errors:\n\n");
3395  owl_errqueue_to_fmtext(owl_global_get_errqueue(&g), &fm);
3396  owl_function_popless_fmtext(&fm);
3397}
3398
[e19eb97]3399void owl_function_makemsg(const char *fmt, ...)
[ec6ff52]3400{
3401  va_list ap;
[d70f45f]3402  char *str;
[ec6ff52]3403
3404  va_start(ap, fmt);
[d70f45f]3405  str = g_strdup_vprintf(fmt, ap);
[ec6ff52]3406  va_end(ap);
[d70f45f]3407
3408  owl_function_debugmsg("makemsg: %s", str);
[eaedfba]3409  owl_msgwin_set_text_nocopy(&g.msgwin, str);
[ec6ff52]3410}
[5a95b69]3411
3412/* get locations for everyone in .anyone.  If 'notify' is '1' then
3413 * send a pseudo login or logout message for everyone not in sync with
3414 * the global zephyr buddy list.  The list is updated regardless of
3415 * the status of 'notify'.
3416 */
3417void owl_function_zephyr_buddy_check(int notify)
3418{
3419#ifdef HAVE_LIBZEPHYR
3420  int i, j;
3421  owl_list anyone;
3422  owl_zbuddylist *zbl;
[f25812b]3423  GList **zaldlist;
3424  GList *zaldptr;
3425  ZAsyncLocateData_t *zald;
[e19eb97]3426  const char *user;
[5a95b69]3427
[27964fe]3428  if (!owl_global_is_havezephyr(&g)) return;
[f25812b]3429  owl_global_set_pseudologin_notify(&g, notify);
3430  zbl = owl_global_get_zephyr_buddylist(&g);
3431  zaldlist = owl_global_get_zaldlist(&g);
[27964fe]3432
[f25812b]3433  /* Clear the existing ZALDs first. */
3434  zaldptr = g_list_first(*zaldlist);
3435  while (zaldptr) {
3436    ZFreeALD(zaldptr->data);
3437    owl_free(zaldptr->data);
3438    zaldptr = g_list_next(zaldptr);
3439  }
3440  g_list_free(*zaldlist);
3441  *zaldlist = NULL;
[5a95b69]3442
3443  owl_list_create(&anyone);
[f25812b]3444  owl_zephyr_get_anyone_list(&anyone, NULL);
3445  j = owl_list_get_size(&anyone);
3446  for (i = 0; i < j; i++) {
3447    user = owl_list_get_element(&anyone, i);
3448    zald = owl_malloc(sizeof(ZAsyncLocateData_t));
3449    if (ZRequestLocations(zstr(user), zald, UNACKED, ZAUTH) == ZERR_NONE) {
3450      *zaldlist = g_list_append(*zaldlist, zald);
3451    } else {
3452      owl_free(zald);
[5a95b69]3453    }
3454  }
3455
[8c59178]3456  owl_list_cleanup(&anyone, owl_free);
[5a95b69]3457#endif
3458}
[952bb256]3459
[e19eb97]3460void owl_function_aimsearch_results(const char *email, owl_list *namelist)
[952bb256]3461{
3462  owl_fmtext fm;
3463  int i, j;
3464
3465  owl_fmtext_init_null(&fm);
3466  owl_fmtext_append_normal(&fm, "AIM screennames associated with ");
3467  owl_fmtext_append_normal(&fm, email);
3468  owl_fmtext_append_normal(&fm, ":\n");
3469
3470  j=owl_list_get_size(namelist);
3471  for (i=0; i<j; i++) {
3472    owl_fmtext_append_normal(&fm, "  ");
3473    owl_fmtext_append_normal(&fm, owl_list_get_element(namelist, i));
3474    owl_fmtext_append_normal(&fm, "\n");
3475  }
3476
3477  owl_function_popless_fmtext(&fm);
[7ab0020]3478  owl_fmtext_cleanup(&fm);
[952bb256]3479}
[c2c5c77]3480
[c79a047]3481int owl_function_get_color_count(void)
[c2c5c77]3482{
3483     return COLORS;
3484}
[0cb6c26]3485
3486void owl_function_mask_sigint(sigset_t *oldmask) {
3487  sigset_t intr;
3488
3489  sigemptyset(&intr);
3490  sigaddset(&intr, SIGINT);
3491  sigprocmask(SIG_BLOCK, &intr, oldmask);
3492}
3493
3494void owl_function_unmask_sigint(sigset_t *oldmask) {
3495  sigset_t intr;
3496
3497  sigemptyset(&intr);
3498  sigaddset(&intr, SIGINT);
3499  sigprocmask(SIG_UNBLOCK, &intr, oldmask);
3500}
[70110286]3501
[c08c70a]3502void _owl_function_mark_message(const owl_message *m)
[70110286]3503{
[f63a681]3504  if (m) {
[70110286]3505    owl_global_set_markedmsgid(&g, owl_message_get_id(m));
[f63a681]3506    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3507  }
[70110286]3508}
3509
[c79a047]3510void owl_function_mark_message(void)
[70110286]3511{
[c08c70a]3512  const owl_message *m;
[9e5c9f3]3513  const owl_view *v;
[70110286]3514
3515  v=owl_global_get_current_view(&g);
3516
3517  /* bail if there's no current message */
3518  if (owl_view_get_size(v) < 1) {
3519    owl_function_error("No messages to mark");
3520    return;
3521  }
3522
3523  /* mark the message */
3524  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
3525  _owl_function_mark_message(m);
[3d08168]3526  owl_function_makemsg("Mark set");
[70110286]3527}
3528
[c79a047]3529void owl_function_swap_cur_marked(void)
[70110286]3530{
3531  int marked_id;
[c08c70a]3532  const owl_message *m;
[9e5c9f3]3533  const owl_view *v;
[70110286]3534
[bd783db]3535  marked_id=owl_global_get_markedmsgid(&g);
3536  if (marked_id == -1) {
3537    owl_function_error("Mark not set.");
3538    return;
3539  }
3540
[70110286]3541  v=owl_global_get_current_view(&g);
3542  /* bail if there's no current message */
3543  if (owl_view_get_size(v) < 1) {
3544    return;
3545  }
3546
[bd783db]3547  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
[70110286]3548  _owl_function_mark_message(m);
3549  owl_global_set_curmsg(&g, owl_view_get_nearest_to_msgid(v, marked_id));
[b72670b]3550  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
[70110286]3551  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3552  owl_global_set_direction_downwards(&g);
3553}
Note: See TracBrowser for help on using the repository browser.