1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
|
/*
* lastlog.c: handles the lastlog features of irc.
*
* Written By Michael Sandrof
*
* Copyright(c) 1990
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
* $Id: lastlog.c,v 1.2 2001/07/13 20:45:29 edwards Exp $
*/
#include "teknap.h"
#include "struct.h"
#include "hook.h"
#include "lastlog.h"
#include "window.h"
#include "screen.h"
#include "vars.h"
#include "ircaux.h"
#include "output.h"
#include "status.h"
/*
* lastlog_level: current bitmap setting of which things should be stored in
* the lastlog. The LOG_MSG, LOG_NOTICE, etc., defines tell more about this
*/
static unsigned long lastlog_level;
static unsigned long notify_level;
unsigned long beep_on_level = 0;
unsigned long new_server_lastlog_level = 0;
unsigned long current_window_level = 0;
FILE *logptr = NULL;
/*
* msg_level: the mask for the current message level. What? Did he really
* say that? This is set in the set_lastlog_msg_level() routine as it
* compared to the lastlog_level variable to see if what ever is being added
* should actually be added
*/
static unsigned long msg_level = LOG_CRAP;
static char *levels[] =
{
"CRAP", "PUBLIC", "MSGS", "WALLOPS",
"USERLOG1", "USERLOG2", "USERLOG3", "USERLOG4",
"USERLOG5", "BEEP", "SEND_MSG", "KILL",
"PARTS", "JOIN", "TOPIC", "NOTIFY",
"SERVER", "DEBUG"
};
#define NUMBER_OF_LEVELS (sizeof(levels) / sizeof(char *))
void reset_hold_mode(Window *win)
{
win->hold_mode = win->save_hold_mode;
win->save_hold_mode = win->in_more = 0;
}
/* set_lastlog_msg_level: sets the message level for recording in the lastlog */
unsigned long set_lastlog_msg_level(unsigned long level)
{
unsigned long old;
old = msg_level;
msg_level = level;
return (old);
}
/*
* bits_to_lastlog_level: converts the bitmap of lastlog levels into a nice
* string format. Note that this uses the global buffer, so watch out
*/
char * bits_to_lastlog_level(unsigned long level)
{
static char buffer[481]; /* this *should* be enough for this */
int i;
unsigned long p;
if (level == LOG_ALL)
strcpy(buffer, "ALL");
else if (level == 0)
strcpy(buffer, "NONE");
else
{
*buffer = '\0';
for (i = 0, p = 1; i < NUMBER_OF_LEVELS; i++, p <<= 1)
{
if (level & p)
{
if (*buffer)
strmcat(buffer, space, 480);
strmcat(buffer, levels[i],480);
}
}
}
return (buffer);
}
unsigned long parse_lastlog_level(char *str, int display)
{
char *ptr,
*rest;
int len,
i;
unsigned long p,
level;
int neg;
level = 0;
while ((str = next_arg(str, &rest)) != NULL)
{
while (str)
{
if ((ptr = strchr(str, ',')) != NULL)
*ptr++ = '\0';
if ((len = strlen(str)) != 0)
{
if (my_strnicmp(str, "ALL", len) == 0)
level = LOG_ALL;
else if (my_strnicmp(str, "NONE", len) == 0)
level = 0;
else
{
if (*str == '-')
{
str++; len--;
neg = 1;
}
else
neg = 0;
for (i = 0, p = 1; i < NUMBER_OF_LEVELS; i++, p <<= 1)
{
if (!my_strnicmp(str, levels[i], len))
{
if (neg)
level &= (LOG_ALL ^ p);
else
level |= p;
break;
}
}
if (i == NUMBER_OF_LEVELS)
{
if (display)
say("Unknown lastlog level: %s", str);
return LOG_ALL;
}
}
}
str = ptr;
}
str = rest;
}
return (level);
}
/*
* set_lastlog_level: called whenever a "SET LASTLOG_LEVEL" is done. It
* parses the settings and sets the lastlog_level variable appropriately. It
* also rewrites the LASTLOG_LEVEL variable to make it look nice
*/
void set_lastlog_level(Window *win, char *str, int unused)
{
lastlog_level = parse_lastlog_level(str, 1);
set_string_var(LASTLOG_LEVEL_VAR, bits_to_lastlog_level(lastlog_level));
current_window->lastlog_level = lastlog_level;
}
void remove_from_lastlog(Window *window)
{
Lastlog *tmp, *end_holder;
if (window->lastlog_tail)
{
end_holder = window->lastlog_tail;
tmp = window->lastlog_tail->prev;
window->lastlog_tail = tmp;
if (tmp)
tmp->next = NULL;
else
window->lastlog_head = window->lastlog_tail;
window->lastlog_size--;
new_free(&end_holder->msg);
new_free((char **)&end_holder);
}
else
window->lastlog_size = 0;
}
/*
* set_lastlog_size: sets up a lastlog buffer of size given. If the lastlog
* has gotten larger than it was before, all previous lastlog entry remain.
* If it get smaller, some are deleted from the end.
*/
void set_lastlog_size(Window *win_unused, char *unused, int size)
{
int i,
diff;
Window *win = NULL;
while ((traverse_all_windows(&win)))
{
if (win->lastlog_size > size)
{
diff = win->lastlog_size - size;
for (i = 0; i < diff; i++)
remove_from_lastlog(win);
}
win->lastlog_max = size;
}
}
void free_lastlog(Window *win)
{
Lastlog *ptr;
for (ptr = win->lastlog_head; ptr;)
{
Lastlog *next = ptr->next;
new_free(&ptr->msg);
new_free(&ptr);
ptr = next;
}
win->lastlog_head = NULL;
win->lastlog_tail = NULL;
win->lastlog_size = 0;
}
void print_lastlog(FILE *fp, Lastlog *msg, int timelog)
{
time_t ltime;
struct tm *tm;
char buff[129];
if (timelog)
{
ltime = msg->time;
tm = localtime(<ime);
strftime(buff, 128,
get_string_var(LASTLOG_TIMEFORMAT_VAR) ?
get_string_var(LASTLOG_TIMEFORMAT_VAR) :
"[%H:%M]", tm);
if (fp)
{
#ifdef WINNT
fprintf(fp, "%s %s\r\n", buff, msg->msg);
#else
fprintf(fp, "%s %s\n", buff, msg->msg);
#endif
}
else
put_it("%s %s", buff, msg->msg);
}
else
{
fp ?
#ifdef WINNT
fprintf(fp, "%s\r\n", msg->msg)
#else
fprintf(fp, "%s\n", msg->msg)
#endif
: put_it("%s", msg->msg);
}
}
/*
* lastlog: the /LASTLOG command. Displays the lastlog to the screen. If
* args contains a valid integer, only that many lastlog entries are shown
* (if the value is less than lastlog_size), otherwise the entire lastlog is
* displayed
*/
BUILT_IN_COMMAND(lastlog)
{
int cnt,
from = 0,
p,
i,
level = 0,
msg_level,
len,
mask = 0,
header = 1,
lines = 0,
reverse = 0,
time_log = 1,
remove = 0;
Lastlog *start_pos;
char *match = NULL,
*arg;
char *file_open[] = { "wt", "at" };
int file_open_type = 0;
char *blah = NULL;
FILE *fp = NULL;
reset_display_target();
cnt = current_window->lastlog_size;
while ((arg = new_next_arg(args, &args)) != NULL)
{
if (*arg == '-')
{
arg++;
if (!(len = strlen(arg)))
{
header = 0;
continue;
}
else if (!my_strnicmp(arg, "MAX", len))
{
char *ptr = NULL;
ptr = new_next_arg(args, &args);
if (ptr)
lines = atoi(ptr);
if (lines < 0)
lines = 0;
}
else if (!my_strnicmp(arg, "LITERAL", len))
{
if (match)
{
say("Second -LITERAL argument ignored");
(void) new_next_arg(args, &args);
continue;
}
if ((match = new_next_arg(args, &args)) != NULL)
continue;
say("Need pattern for -LITERAL");
return;
}
else if (!my_strnicmp(arg, "REVERSE", len))
reverse = 1;
else if (!my_strnicmp(arg, "TIME", len))
time_log = 0;
else if (!my_strnicmp(arg, "BEEP", len))
{
if (match)
{
say("-BEEP is exclusive; ignored");
continue;
}
else
match = "\007";
}
else if (!my_strnicmp(arg, "CLEAR", len))
{
free_lastlog(current_window);
say("Cleared lastlog");
return;
}
else if (!my_strnicmp(arg, "APPEND", len))
file_open_type = 1;
else if (!my_strnicmp(arg, "FILE", len))
{
if (args && *args)
{
char *filename;
filename = next_arg(args, &args);
if (!(fp = fopen(filename, file_open[file_open_type])))
{
say("cannot open file %s", filename);
return;
}
}
else
{
say("Filename needed for save");
return;
}
}
else if (!my_strnicmp(arg, "MORE", len))
{
current_window->save_hold_mode = current_window->hold_mode;
current_window->in_more = 1;
reset_line_cnt(current_window, NULL, 1);
}
else
{
if (*arg == '-')
remove = 1, arg++;
else
remove = 0;
/*
* Which can be combined with -ALL, which
* turns on all levels. Use --MSGS or
* whatever to turn off ones you dont want.
*/
if (!my_strnicmp(arg, "ALL", len))
{
if (remove)
mask = 0;
else
mask = LOG_ALL;
continue; /* Go to next arg */
}
/*
* Find the lastlog level in our list.
*/
for (i = 0, p = 1; i < NUMBER_OF_LEVELS; i++, p *= 2)
{
if (!my_strnicmp(levels[i], arg, len))
{
if (remove)
mask &= ~p;
else
mask |= p;
break;
}
}
if (i == NUMBER_OF_LEVELS)
{
say("Unknown flag: %s", arg);
reset_display_target();
return;
}
}
}
else
{
if (level == 0)
{
if (match || isdigit(*arg))
{
cnt = atoi(arg);
level++;
}
else
match = arg;
}
else if (level == 1)
{
from = atoi(arg);
level++;
}
}
}
start_pos = current_window->lastlog_head;
level = current_window->lastlog_level;
msg_level = set_lastlog_msg_level(0);
if (!reverse)
{
for (i = 0; (i < from) && start_pos; start_pos = start_pos->next)
if (!mask || (mask & start_pos->level))
i++;
for (i = 0; (i < cnt) && start_pos; start_pos = start_pos->next)
if (!mask || (mask & start_pos->level))
i++;
start_pos = (start_pos) ? start_pos->prev : current_window->lastlog_tail;
} else
start_pos = current_window->lastlog_head;
/* Let's not get confused here, display a seperator.. -lynx */
if (header && !fp)
if (do_hook(LASTLOG_LIST, "%s%s", "LastLog", ":"))
say("Lastlog:");
if (match)
{
blah = (char *) alloca(strlen(match)+4);
sprintf(blah, "*%s*", match);
}
for (i = 0; (i < cnt) && start_pos; start_pos = (reverse ? start_pos->next : start_pos->prev))
{
if (!mask || (mask & start_pos->level))
{
i++;
if (!match || wild_match(blah, start_pos->msg))
{
if (fp || do_hook(LASTLOG_LIST, "%lu %s", start_pos->time, start_pos->msg))
print_lastlog(fp, start_pos, time_log);
if (lines == 0)
continue;
else if (lines == 1)
break;
lines--;
}
}
}
if (header && !fp)
if (do_hook(LASTLOG_LIST, "%s of %s", "End", "LastLog"))
say("End of Lastlog");
if (fp)
fclose(fp);
current_window->lastlog_level = level;
set_lastlog_msg_level(msg_level);
}
Lastlog *get_lastlog_current_head(Window *win)
{
return win->lastlog_head;
}
/*
* add_to_lastlog: adds the line to the lastlog. If the LASTLOG_CONVERSATION
* variable is on, then only those lines that are user messages (private
* messages, channel messages, wall's, and any outgoing messages) are
* recorded, otherwise, everything is recorded
*/
void add_to_lastlog(Window *window, const char *line)
{
Lastlog *new;
if (window == NULL)
window = current_window;
if (window->lastlog_level & msg_level)
{
/* no nulls or empty lines (they contain "> ") */
if (line && (strlen(line) > 2))
{
new = (Lastlog *) new_malloc(sizeof(Lastlog));
new->next = window->lastlog_head;
new->prev = NULL;
new->level = msg_level;
new->msg = NULL;
new->time = now;
new->msg = m_strdup(line);
if (window->lastlog_head)
window->lastlog_head->prev = new;
window->lastlog_head = new;
if (window->lastlog_tail == NULL)
window->lastlog_tail = window->lastlog_head;
if (window->lastlog_size++ >= window->lastlog_max)
remove_from_lastlog(window);
}
}
}
unsigned long real_notify_level(void)
{
return (notify_level);
}
unsigned long real_lastlog_level(void)
{
return (lastlog_level);
}
void set_beep_on_msg (Window *win, char *str, int unused)
{
beep_on_level = parse_lastlog_level(str, 1);
set_string_var(BEEP_ON_MSG_VAR, bits_to_lastlog_level(beep_on_level));
}
#define EMPTY empty_string
#define RETURN_EMPTY return m_strdup(EMPTY)
#define RETURN_IF_EMPTY(x) if (empty( x )) RETURN_EMPTY
#define GET_INT_ARG(x, y) {RETURN_IF_EMPTY(y); x = my_atol(safe_new_next_arg(y, &y));}
#define GET_STR_ARG(x, y) {RETURN_IF_EMPTY((y)); x = new_next_arg((y), &(y));RETURN_IF_EMPTY((x));}
#define RETURN_STR(x) return m_strdup(x ? x : EMPTY);
/*
* $line(<line number> [window number])
* Returns the text of logical line <line number> from the lastlog of
* window <window number>. If no window number is supplied, the current
* window will be used. If the window number is invalid, the function
* will return the false value.
*
* Lines are numbered from 1, starting at the most recent line in the buffer.
* Contributed by Crackbaby (Matt Carothers) on March 19, 1998.
*/
BUILT_IN_FUNCTION(function_line)
{
int line = 0;
char * windesc = zero;
Lastlog *start_pos;
Window *win;
char *extra;
int do_level = 0;
GET_INT_ARG(line, input);
while (input && *input)
{
GET_STR_ARG(extra, input);
if (!my_stricmp(extra, "-LEVEL"))
do_level = 1;
else
windesc = extra;
}
/* Get the current window, default to current window */
if (!(win = get_window_by_desc(windesc)))
RETURN_EMPTY;
/* Make sure that the line request is within reason */
if (line < 1 || line > win->lastlog_size)
RETURN_EMPTY;
/* Get the line from the lastlog */
for (start_pos = win->lastlog_head; line; start_pos = start_pos->next)
line--;
if (!start_pos)
start_pos = win->lastlog_tail;
else
start_pos = start_pos->prev;
if (do_level)
return m_sprintf("%s %s", start_pos->msg,
levels[start_pos->level]);
else
RETURN_STR(start_pos->msg);
}
/*
* $lastlog(<window description> <pattern> <lastlog levels>)
* Returns all of the lastlog lines (suitable for use with $line()) on the
* indicated window (0 for the current window) that have any of the lastlog
* levels as represented by the lastlog levels. If the window number is
* invalid, the function will return the false value.
*/
BUILT_IN_FUNCTION(function_lastlog)
{
char * windesc = zero;
char * pattern = NULL;
char * retval = NULL;
Lastlog *iter;
Window *win;
int levels;
int line = 1;
GET_STR_ARG(windesc, input);
GET_STR_ARG(pattern, input);
levels = parse_lastlog_level(input, 0);
/* Get the current window, default to current window */
if (!(win = get_window_by_desc(windesc)))
RETURN_EMPTY;
for (iter = win->lastlog_head; iter; iter = iter->next, line++)
{
if (iter->level & levels)
if (wild_match(pattern, iter->msg))
m_s3cat(&retval, space, ltoa(line));
}
if (retval)
return retval;
RETURN_EMPTY;
}
|