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
|
/* message.c */
/* Copyright 1995 by Steve Kirkendall */
char id_message[] = "$Id: message.c,v 2.32 1998/02/22 22:27:54 steve Exp $";
#include "elvis.h"
#if USE_PROTOTYPES
# include <stdarg.h>
#else
# include <varargs.h>
#endif
#if USE_PROTOTYPES
static void translate(char *terse);
#endif
static CHAR verbose[200];
static FILE *fperr, *fpinfo;
/* redirect messages to a log file. If "filename" is NULL then revert to
* the normal reporting (stdout and stderr)
*/
void msglog(filename)
char *filename;
{
/* if previously redirected, then stop redirection now */
if (fperr != stderr)
fclose(fperr);
/* open the log file, if any */
fperr = fpinfo = filename ? fopen(filename, "w") : NULL;
}
/* Copy a message into static verbose[] buffer, declared at the top of this
* file. If a buffer named "Elvis messages" exists, translate the message via
* that buffer along the way.
*/
static void translate(terse)
char *terse; /* terse form of error message */
{
BUFFER buf; /* the "Elvis messages" buffer */
MARKBUF mark; /* the start of the buffer */
CHAR *scan; /* used for scanning the buffer */
CHAR *build; /* used for copying chars into the verbose[] buffer */
BOOLEAN bol; /* are we at the start of a line? */
int match; /* used for counting characters that match */
/* Copy the terse string into the verbose buffer, as a default */
for (build = verbose, match = 0; terse[match]; )
{
*build++ = terse[match++];
}
*build = '\0';
/* if the "terse" option is on, then we're done */
if (o_terse)
{
return;
}
/* Find the "Elvis messages" buffer. If it doesn't exist, then
* no more translation is necessary.
*/
buf = buffind(toCHAR(MSG_BUF));
if (!buf)
{
return;
}
/* Scan the buffer for a line which starts with the terse message
* followed by a colon. If there is no such line, then we're done.
*/
for (scanalloc(&scan, marktmp(mark, buf, 0L)), match = 0, bol = True;
scan;
scannext(&scan))
{
/* if this is a newline, then set "bol" and zero "match" */
if (*scan == '\n')
{
bol = True;
match = 0;
continue;
}
/* if we're in the middle of a match, then check to see if
* this position in "Elvis messages" matches the terse message.
*/
if (match >= 0)
{
if (*scan != (terse[match] ? terse[match] : ':'))
{
match = -1;
continue;
}
if (!terse[match])
{
break;
}
match++;
}
}
/* if we get here and "scan" isn't NULL, then we've found the line
* that translates this terse message and "scan" is pointing at the
* ':' that marks the end of the terse text. Copy the verbose text
* after the ':' into the verbose[] variable.
*/
if (scan)
{
/* skip the ':' */
scannext(&scan);
/* at this point, the previous character was not a newline */
bol = False;
/* copy the verbose message from the buffer */
for (build = verbose; build < &verbose[QTY(verbose) - 1]; )
{
/* if non-whitespace, then copy the character */
if (*scan != ' ' && *scan != '\t' && *scan != '\n')
{
*build++ = *scan;
scannext(&scan);
continue;
}
/* skip whitespace */
while (scan && (*scan == ' ' || *scan == '\t' || *scan == '\n'))
{
bol = (*scan == '\n') ? True : False;
scannext(&scan);
}
/* if this non-whitespace character appeared right after
* a newline, then we're done. This is because an
* unindented line in this file always marks the start
* of the next terse message. We're also done if we
* hit the end of the buffer.
*/
if (!scan || bol)
{
break;
}
/* whitespace is converted into a single blank
* character, except at the very beginning of the
* message where it is deleted completely.
*/
if (build != verbose)
{
*build++ = ' ';
}
}
*build = '\0';
}
/* clean up */
scanfree(&scan);
}
/* output a message via the GUI. Before calling the GUI, it subjects
* the terse message to a series of transformations. First, the
* buffer "Elvis messages" is scanned to perform a user-configurable
* transformation, such as translating it into a native language.
* Then the message is evaluated via the calculate() function with
* its "asmsg" parameter set to True.
*
* The arg[] array passed into calculate() is built from the extra arguments
* supplied to msg. The beginning of the terse string can begin with a list
* of characters enclosed in square brackets to indicate how the arguments
* are to be converted to text strings. The conversion letters are:
* d The argument is a (long int), to be shown as a decimal number
* s The argument is a (char *)
* S The argument is a (CHAR *)
* c The argument is a (char), to be shown as a string of length 1
* C The argument is a (CHAR), to be shown as a string of length 1
* If no bracketted list appears at the start of the string, then it is assumed
* that the message has no extra arguments.
*
* For example, msg(MSG_info, "[s]\$1=$1, list=(list)", "foo") will output
* "$1=foo, list=false"
*/
#if USE_PROTOTYPES
void msg(MSGIMP imp, char *terse, ...)
{
#else
void msg(imp, terse, va_alist)
MSGIMP imp; /* message type */
char *terse; /* terse form of message (may contain %s or %d) */
va_dcl
{
#endif
va_list argptr;
CHAR *scan;
CHAR *arg[10];
char text[12], *str;
int i;
BUFFER buf;
MARKBUF mark;
BOOLEAN ding;
/* if fperr and fpinfo are NULL, then use stderr and stdout */
if (!fperr)
{
fperr = stderr;
fpinfo = stdout;
}
/* can't nest msg() calls. If another call is in progress, exit now */
if (*verbose)
{
if (imp == MSG_FATAL)
{
fprintf(fperr, "%s\n", terse);
o_tempsession = False;
sesclose();
if (gui) (*gui->term)();
#ifdef NDEBUG
exit(1);
#else
abort();
#endif
}
return;
}
/* Convert any arguments to CHAR strings */
if (*terse == '[')
{
#if USE_PROTOTYPES
va_start(argptr, terse);
#else
va_start(argptr);
#endif
for (i = 0, terse++; *terse != ']'; i++, terse++)
{
assert(i < QTY(arg));
/* convert argument to a CHAR string */
switch (*terse)
{
case 'd':
sprintf(text, "%ld", va_arg(argptr, long));
arg[i] = toCHAR(text);
break;
case 'S':
arg[i] = va_arg(argptr, CHAR *);
if (!arg[i])
arg[i] = toCHAR("NULL");
break;
case 's':
str = va_arg(argptr, char *);
if (!str)
str = "NULL";
arg[i] = toCHAR(str);
break;
case 'c':
text[0] = va_arg(argptr, _char_);
text[1] = '\0';
arg[i] = toCHAR(text);
break;
case 'C':
text[0] = va_arg(argptr, _CHAR_);
text[1] = '\0';
arg[i] = toCHAR(text);
break;
default:
/* elvis source code should never have a
* bad format code.
*/
abort();
}
/* dynamically allocate a copy of that string. This
* is done because some parameter types use the text[]
* buffer, and a later argument may need to reuse that
* buffer.
*/
arg[i] = CHARdup(arg[i]);
}
va_end(argptr);
arg[i] = NULL;
/* move the terse pointer past the closing ']' character */
assert(*terse == ']');
terse++;
}
else /* no bracketted list at start of terse string */
{
/* no extra arguments */
arg[0] = NULL;
}
if (imp == MSG_FATAL && !arg[0])
{
/* set "scan" to the message text */
scan = toCHAR(terse);
}
else
{
/* translate the terse message via "Elvis messages" buffer */
translate(terse);
/* expand any arguments or option names */
scan = calculate(verbose, arg, True);
if (!scan)
scan = calculate(toCHAR(terse), arg, True);
if (!scan)
scan = toCHAR(terse);
}
/* If it starts with a ^G character, then ring the bell. Also
* ring the bell if errorbells or warningbells is set
*/
switch (imp)
{
case MSG_ERROR: ding = o_errorbells; break;
case MSG_WARNING: ding = o_warningbells; break;
default: ding = False;
}
if (*scan == ELVCTRL('G'))
{
scan++;
ding = True;
}
/* copy the string into verbose[] */
CHARncpy(verbose, scan, QTY(verbose) - 1);
verbose[QTY(verbose) - 1] = '\0';
/* free the arg[] strings */
for (i = 0; arg[i]; i++)
{
safefree(arg[i]);
}
/* Status and fatal messages are shown immediately, without flushing
* the message buffer. During the initialization phase, other messages
* may also be output immediately.
*/
if (!verbose[0] && imp != MSG_FATAL)
{
/* ignore it. No output */
}
else if ((o_verbose >= 1 && !windefault) || !gui
|| (eventcounter <= 1 && imp == MSG_ERROR)
|| imp == MSG_STATUS || imp == MSG_FATAL)
{
/* show the message */
if (gui && windefault)
{
/* Either the GUI will show it, or we will */
if (!gui->msg || !(*gui->msg)(windefault->gw, imp, verbose, (int)(scan - verbose)))
{
/* we have to show it... on bottom of window? */
drawmsg(windefault, imp, verbose, (int)CHARlen(verbose));
}
/* For fatal error messages, also write it to fperr */
if (imp == MSG_FATAL)
{
fprintf(fperr, "%s\n", verbose);
}
}
else if (!gui || !gui->msg || !gui->exonly || !(*gui->msg)(0, imp, verbose, (int)(scan - verbose)))
{
/* no GUI yet, so just write it to fpinfo/fperr */
if (imp == MSG_FATAL)
{
fprintf(fperr, "%s\n", verbose);
}
else
{
fprintf(fpinfo, "%s\r\n", verbose);
}
}
/* clean up & exit */
if (imp == MSG_FATAL)
{
o_tempsession = False;
sesclose();
if (gui) (*gui->term)();
#ifdef NDEBUG
exit(1);
#else
abort();
#endif
}
}
else
{
/* append the message to the message buffer */
buf = bufalloc(toCHAR(MSGQUEUE_BUF), 0, True);
(void)marktmp(mark, buf, o_bufchars(buf));
bufreplace(&mark, &mark, toCHAR("\n"), 1L);
bufreplace(&mark, &mark, verbose, (long)CHARlen(verbose));
bufreplace(&mark, &mark, toCHAR(imp>=MSG_ERROR ? "n" : " "), 1L);
}
/* if error, then alert the terminal */
if (imp >= MSG_ERROR)
{
mapalert();
if ((!optflags(o_exitcode) & OPT_SET) == 0 && eventcounter <= 1)
{
o_exitcode = 1;
}
}
/* if we're supposed to ring the bell, and this GUI has a bell,
* then ring it.
*/
if (ding && gui && gui->beep && windefault)
{
guibeep(windefault);
}
/* Zero the first byte of verbose[], so we can tell that we aren't
* in the middle of a message anymore.
*/
*verbose = '\0';
}
/* This function flushes messages from the message queue to the current
* window. This function should be called before outputting ex text,
* before reading keystrokes, and when exiting elvis, after the GUI has
* been shut down but before the session file has been closed.
*/
void msgflush()
{
BUFFER buf;
MARK mark, end;
CHAR *cp;
int len;
MSGIMP imp;
/* if we have a GUI but no windows yet, then delay output */
if (gui && !windefault)
{
return;
}
/* locate the message queue buffer, if any. If it doesn't exist,
* or is empty, then we're done!
*/
buf = buffind(toCHAR(MSGQUEUE_BUF));
if (!buf || o_bufchars(buf) == 0)
{
return;
}
/* Copy each line into the "verbose" buffer. For each one, display
* the message as either info or an error.
*/
mark = markalloc(buf, 0);
for (scanalloc(&cp, mark), len = 0; cp; scannext(&cp))
{
if (*cp == '\n')
{
verbose[len] = '\0';
imp = (verbose[0]=='*' ? MSG_ERROR : MSG_INFO);
/* show the message */
if (gui && windefault)
{
/* Either the GUI will show it, or we will */
if (!gui->msg || !(*gui->msg)(windefault->gw, imp, verbose + 1, len - 1))
{
/* we have to show it... on bottom of window? */
drawmsg(windefault, imp, verbose + 1, len - 1);
}
}
else
{
/* no GUI yet, so just write it to fpinfo/fperr */
fprintf(imp >= MSG_ERROR ? fperr : fpinfo,
"%s\n", verbose + 1);
}
len = 0;
}
else if (len < QTY(verbose) - 2)
{
verbose[len++] = *cp;
}
}
scanfree(&cp);
/* cleanup */
end = markalloc(buf, o_bufchars(buf));
bufreplace(mark, end, NULL, 0);
markfree(mark);
markfree(end);
*verbose = '\0';
}
/* Translate a simple word or phrase, and return a dynamically-allocated
* copy of the result. This also has the side-effect of converting a
* (char *) to a (CHAR *).
*
* This is used mostly for setting some options to locale-sensitive defaults
*/
CHAR *msgtranslate(word)
char *word;
{
CHAR *ret;
/* Translate it */
translate(word);
/* Make a dynamic copy of it */
ret = CHARkdup(verbose);
/* Zero the first by of verbose[] so msg() doesn't think we're
* doing a message. That's important because msg() skips translation
* if an error message occurs while evaluating another message.
*/
verbose[0] = '\0';
/* return the dynamically-allocated copy */
return ret;
}
|