1 /* vi:set ts=8 sts=4 sw=4 noet: 2 * 3 * VIM - Vi IMproved by Bram Moolenaar 4 * 5 * Do ":help uganda" in Vim to read copying and usage conditions. 6 * Do ":help credits" in Vim to see a list of people who contributed. 7 * See README.txt for an overview of the Vim source code. 8 */ 9 10 /* 11 * message.c: functions for displaying messages on the command line 12 */ 13 14 #define MESSAGE_FILE /* don't include prototype for smsg() */ 15 #define USING_FLOAT_STUFF 16 17 #include "vim.h" 18 19 static void add_msg_hist(char_u *s, int len, int attr); 20 static void hit_return_msg(void); 21 static void msg_home_replace_attr(char_u *fname, int attr); 22 static void msg_puts_attr_len(char *str, int maxlen, int attr); 23 static void msg_puts_display(char_u *str, int maxlen, int attr, int recurse); 24 static void msg_scroll_up(void); 25 static void inc_msg_scrolled(void); 26 static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int finish); 27 static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr); 28 static void msg_puts_printf(char_u *str, int maxlen); 29 static int do_more_prompt(int typed_char); 30 static void msg_screen_putchar(int c, int attr); 31 static void msg_moremsg(int full); 32 static int msg_check_screen(void); 33 static void redir_write(char_u *s, int maxlen); 34 #ifdef FEAT_CON_DIALOG 35 static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton); 36 static int confirm_msg_used = FALSE; /* displaying confirm_msg */ 37 static char_u *confirm_msg = NULL; /* ":confirm" message */ 38 static char_u *confirm_msg_tail; /* tail of confirm_msg */ 39 static void display_confirm_msg(void); 40 #endif 41 #ifdef FEAT_JOB_CHANNEL 42 static int emsg_to_channel_log = FALSE; 43 #endif 44 45 struct msg_hist 46 { 47 struct msg_hist *next; 48 char_u *msg; 49 int attr; 50 }; 51 52 static struct msg_hist *first_msg_hist = NULL; 53 static struct msg_hist *last_msg_hist = NULL; 54 static int msg_hist_len = 0; 55 56 static FILE *verbose_fd = NULL; 57 static int verbose_did_open = FALSE; 58 59 /* 60 * When writing messages to the screen, there are many different situations. 61 * A number of variables is used to remember the current state: 62 * msg_didany TRUE when messages were written since the last time the 63 * user reacted to a prompt. 64 * Reset: After hitting a key for the hit-return prompt, 65 * hitting <CR> for the command line or input(). 66 * Set: When any message is written to the screen. 67 * msg_didout TRUE when something was written to the current line. 68 * Reset: When advancing to the next line, when the current 69 * text can be overwritten. 70 * Set: When any message is written to the screen. 71 * msg_nowait No extra delay for the last drawn message. 72 * Used in normal_cmd() before the mode message is drawn. 73 * emsg_on_display There was an error message recently. Indicates that there 74 * should be a delay before redrawing. 75 * msg_scroll The next message should not overwrite the current one. 76 * msg_scrolled How many lines the screen has been scrolled (because of 77 * messages). Used in update_screen() to scroll the screen 78 * back. Incremented each time the screen scrolls a line. 79 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr() 80 * writes something without scrolling should not make 81 * need_wait_return to be set. This is a hack to make ":ts" 82 * work without an extra prompt. 83 * lines_left Number of lines available for messages before the 84 * more-prompt is to be given. -1 when not set. 85 * need_wait_return TRUE when the hit-return prompt is needed. 86 * Reset: After giving the hit-return prompt, when the user 87 * has answered some other prompt. 88 * Set: When the ruler or typeahead display is overwritten, 89 * scrolling the screen for some message. 90 * keep_msg Message to be displayed after redrawing the screen, in 91 * main_loop(). 92 * This is an allocated string or NULL when not used. 93 */ 94 95 /* 96 * msg(s) - displays the string 's' on the status line 97 * When terminal not initialized (yet) mch_errmsg(..) is used. 98 * return TRUE if wait_return not called 99 */ 100 int 101 msg(char *s) 102 { 103 return msg_attr_keep(s, 0, FALSE); 104 } 105 106 /* 107 * Like msg() but keep it silent when 'verbosefile' is set. 108 */ 109 int 110 verb_msg(char *s) 111 { 112 int n; 113 114 verbose_enter(); 115 n = msg_attr_keep(s, 0, FALSE); 116 verbose_leave(); 117 118 return n; 119 } 120 121 int 122 msg_attr(char *s, int attr) 123 { 124 return msg_attr_keep(s, attr, FALSE); 125 } 126 127 int 128 msg_attr_keep( 129 char *s, 130 int attr, 131 int keep) /* TRUE: set keep_msg if it doesn't scroll */ 132 { 133 static int entered = 0; 134 int retval; 135 char_u *buf = NULL; 136 137 /* Skip messages not matching ":filter pattern". 138 * Don't filter when there is an error. */ 139 if (!emsg_on_display && message_filtered((char_u *)s)) 140 return TRUE; 141 142 #ifdef FEAT_EVAL 143 if (attr == 0) 144 set_vim_var_string(VV_STATUSMSG, (char_u *)s, -1); 145 #endif 146 147 /* 148 * It is possible that displaying a messages causes a problem (e.g., 149 * when redrawing the window), which causes another message, etc.. To 150 * break this loop, limit the recursiveness to 3 levels. 151 */ 152 if (entered >= 3) 153 return TRUE; 154 ++entered; 155 156 /* Add message to history (unless it's a repeated kept message or a 157 * truncated message) */ 158 if ((char_u *)s != keep_msg 159 || (*s != '<' 160 && last_msg_hist != NULL 161 && last_msg_hist->msg != NULL 162 && STRCMP(s, last_msg_hist->msg))) 163 add_msg_hist((char_u *)s, -1, attr); 164 165 #ifdef FEAT_JOB_CHANNEL 166 if (emsg_to_channel_log) 167 /* Write message in the channel log. */ 168 ch_log(NULL, "ERROR: %s", (char *)s); 169 #endif 170 171 /* Truncate the message if needed. */ 172 msg_start(); 173 buf = msg_strtrunc((char_u *)s, FALSE); 174 if (buf != NULL) 175 s = (char *)buf; 176 177 msg_outtrans_attr((char_u *)s, attr); 178 msg_clr_eos(); 179 retval = msg_end(); 180 181 if (keep && retval && vim_strsize((char_u *)s) 182 < (int)(Rows - cmdline_row - 1) * Columns + sc_col) 183 set_keep_msg((char_u *)s, 0); 184 185 vim_free(buf); 186 --entered; 187 return retval; 188 } 189 190 /* 191 * Truncate a string such that it can be printed without causing a scroll. 192 * Returns an allocated string or NULL when no truncating is done. 193 */ 194 char_u * 195 msg_strtrunc( 196 char_u *s, 197 int force) /* always truncate */ 198 { 199 char_u *buf = NULL; 200 int len; 201 int room; 202 203 /* May truncate message to avoid a hit-return prompt */ 204 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL) 205 && !exmode_active && msg_silent == 0) || force) 206 { 207 len = vim_strsize(s); 208 if (msg_scrolled != 0) 209 /* Use all the columns. */ 210 room = (int)(Rows - msg_row) * Columns - 1; 211 else 212 /* Use up to 'showcmd' column. */ 213 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1; 214 if (len > room && room > 0) 215 { 216 if (enc_utf8) 217 /* may have up to 18 bytes per cell (6 per char, up to two 218 * composing chars) */ 219 len = (room + 2) * 18; 220 else if (enc_dbcs == DBCS_JPNU) 221 /* may have up to 2 bytes per cell for euc-jp */ 222 len = (room + 2) * 2; 223 else 224 len = room + 2; 225 buf = alloc(len); 226 if (buf != NULL) 227 trunc_string(s, buf, room, len); 228 } 229 } 230 return buf; 231 } 232 233 /* 234 * Truncate a string "s" to "buf" with cell width "room". 235 * "s" and "buf" may be equal. 236 */ 237 void 238 trunc_string( 239 char_u *s, 240 char_u *buf, 241 int room_in, 242 int buflen) 243 { 244 size_t room = room_in - 3; /* "..." takes 3 chars */ 245 size_t half; 246 size_t len = 0; 247 int e; 248 int i; 249 int n; 250 251 if (room_in < 3) 252 room = 0; 253 half = room / 2; 254 255 /* First part: Start of the string. */ 256 for (e = 0; len < half && e < buflen; ++e) 257 { 258 if (s[e] == NUL) 259 { 260 /* text fits without truncating! */ 261 buf[e] = NUL; 262 return; 263 } 264 n = ptr2cells(s + e); 265 if (len + n > half) 266 break; 267 len += n; 268 buf[e] = s[e]; 269 if (has_mbyte) 270 for (n = (*mb_ptr2len)(s + e); --n > 0; ) 271 { 272 if (++e == buflen) 273 break; 274 buf[e] = s[e]; 275 } 276 } 277 278 /* Last part: End of the string. */ 279 i = e; 280 if (enc_dbcs != 0) 281 { 282 /* For DBCS going backwards in a string is slow, but 283 * computing the cell width isn't too slow: go forward 284 * until the rest fits. */ 285 n = vim_strsize(s + i); 286 while (len + n > room) 287 { 288 n -= ptr2cells(s + i); 289 i += (*mb_ptr2len)(s + i); 290 } 291 } 292 else if (enc_utf8) 293 { 294 /* For UTF-8 we can go backwards easily. */ 295 half = i = (int)STRLEN(s); 296 for (;;) 297 { 298 do 299 half = half - utf_head_off(s, s + half - 1) - 1; 300 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half))); 301 n = ptr2cells(s + half); 302 if (len + n > room || half == 0) 303 break; 304 len += n; 305 i = (int)half; 306 } 307 } 308 else 309 { 310 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i) 311 len += n; 312 } 313 314 315 if (i <= e + 3) 316 { 317 /* text fits without truncating */ 318 if (s != buf) 319 { 320 len = STRLEN(s); 321 if (len >= (size_t)buflen) 322 len = buflen - 1; 323 len = len - e + 1; 324 if (len < 1) 325 buf[e - 1] = NUL; 326 else 327 mch_memmove(buf + e, s + e, len); 328 } 329 } 330 else if (e + 3 < buflen) 331 { 332 /* set the middle and copy the last part */ 333 mch_memmove(buf + e, "...", (size_t)3); 334 len = STRLEN(s + i) + 1; 335 if (len >= (size_t)buflen - e - 3) 336 len = buflen - e - 3 - 1; 337 mch_memmove(buf + e + 3, s + i, len); 338 buf[e + 3 + len - 1] = NUL; 339 } 340 else 341 { 342 /* can't fit in the "...", just truncate it */ 343 buf[e - 1] = NUL; 344 } 345 } 346 347 /* 348 * Automatic prototype generation does not understand this function. 349 * Note: Caller of smsg() and smsg_attr() must check the resulting string is 350 * shorter than IOSIZE!!! 351 */ 352 #ifndef PROTO 353 354 int vim_snprintf(char *str, size_t str_m, const char *fmt, ...); 355 356 int 357 smsg(const char *s, ...) 358 { 359 if (IObuff == NULL) 360 { 361 // Very early in initialisation and already something wrong, just 362 // give the raw message so the user at least gets a hint. 363 return msg((char *)s); 364 } 365 else 366 { 367 va_list arglist; 368 369 va_start(arglist, s); 370 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist); 371 va_end(arglist); 372 return msg((char *)IObuff); 373 } 374 } 375 376 int 377 smsg_attr(int attr, const char *s, ...) 378 { 379 if (IObuff == NULL) 380 { 381 // Very early in initialisation and already something wrong, just 382 // give the raw message so the user at least gets a hint. 383 return msg_attr((char *)s, attr); 384 } 385 else 386 { 387 va_list arglist; 388 389 va_start(arglist, s); 390 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist); 391 va_end(arglist); 392 return msg_attr((char *)IObuff, attr); 393 } 394 } 395 396 int 397 smsg_attr_keep(int attr, const char *s, ...) 398 { 399 if (IObuff == NULL) 400 { 401 // Very early in initialisation and already something wrong, just 402 // give the raw message so the user at least gets a hint. 403 return msg_attr_keep((char *)s, attr, TRUE); 404 } 405 else 406 { 407 va_list arglist; 408 409 va_start(arglist, s); 410 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist); 411 va_end(arglist); 412 return msg_attr_keep((char *)IObuff, attr, TRUE); 413 } 414 } 415 416 #endif 417 418 /* 419 * Remember the last sourcing name/lnum used in an error message, so that it 420 * isn't printed each time when it didn't change. 421 */ 422 static int last_sourcing_lnum = 0; 423 static char_u *last_sourcing_name = NULL; 424 425 /* 426 * Reset the last used sourcing name/lnum. Makes sure it is displayed again 427 * for the next error message; 428 */ 429 void 430 reset_last_sourcing(void) 431 { 432 VIM_CLEAR(last_sourcing_name); 433 last_sourcing_lnum = 0; 434 } 435 436 /* 437 * Return TRUE if "sourcing_name" differs from "last_sourcing_name". 438 */ 439 static int 440 other_sourcing_name(void) 441 { 442 if (sourcing_name != NULL) 443 { 444 if (last_sourcing_name != NULL) 445 return STRCMP(sourcing_name, last_sourcing_name) != 0; 446 return TRUE; 447 } 448 return FALSE; 449 } 450 451 /* 452 * Get the message about the source, as used for an error message. 453 * Returns an allocated string with room for one more character. 454 * Returns NULL when no message is to be given. 455 */ 456 static char_u * 457 get_emsg_source(void) 458 { 459 char_u *Buf, *p; 460 461 if (sourcing_name != NULL && other_sourcing_name()) 462 { 463 p = (char_u *)_("Error detected while processing %s:"); 464 Buf = alloc(STRLEN(sourcing_name) + STRLEN(p)); 465 if (Buf != NULL) 466 sprintf((char *)Buf, (char *)p, sourcing_name); 467 return Buf; 468 } 469 return NULL; 470 } 471 472 /* 473 * Get the message about the source lnum, as used for an error message. 474 * Returns an allocated string with room for one more character. 475 * Returns NULL when no message is to be given. 476 */ 477 static char_u * 478 get_emsg_lnum(void) 479 { 480 char_u *Buf, *p; 481 482 /* lnum is 0 when executing a command from the command line 483 * argument, we don't want a line number then */ 484 if (sourcing_name != NULL 485 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum) 486 && sourcing_lnum != 0) 487 { 488 p = (char_u *)_("line %4ld:"); 489 Buf = alloc(STRLEN(p) + 20); 490 if (Buf != NULL) 491 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum); 492 return Buf; 493 } 494 return NULL; 495 } 496 497 /* 498 * Display name and line number for the source of an error. 499 * Remember the file name and line number, so that for the next error the info 500 * is only displayed if it changed. 501 */ 502 void 503 msg_source(int attr) 504 { 505 char_u *p; 506 507 ++no_wait_return; 508 p = get_emsg_source(); 509 if (p != NULL) 510 { 511 msg_attr((char *)p, attr); 512 vim_free(p); 513 } 514 p = get_emsg_lnum(); 515 if (p != NULL) 516 { 517 msg_attr((char *)p, HL_ATTR(HLF_N)); 518 vim_free(p); 519 last_sourcing_lnum = sourcing_lnum; /* only once for each line */ 520 } 521 522 /* remember the last sourcing name printed, also when it's empty */ 523 if (sourcing_name == NULL || other_sourcing_name()) 524 { 525 vim_free(last_sourcing_name); 526 if (sourcing_name == NULL) 527 last_sourcing_name = NULL; 528 else 529 last_sourcing_name = vim_strsave(sourcing_name); 530 } 531 --no_wait_return; 532 } 533 534 /* 535 * Return TRUE if not giving error messages right now: 536 * If "emsg_off" is set: no error messages at the moment. 537 * If "msg" is in 'debug': do error message but without side effects. 538 * If "emsg_skip" is set: never do error messages. 539 */ 540 static int 541 emsg_not_now(void) 542 { 543 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL 544 && vim_strchr(p_debug, 't') == NULL) 545 #ifdef FEAT_EVAL 546 || emsg_skip > 0 547 #endif 548 ) 549 return TRUE; 550 return FALSE; 551 } 552 553 #if defined(FEAT_EVAL) || defined(PROTO) 554 static garray_T ignore_error_list = GA_EMPTY; 555 556 void 557 ignore_error_for_testing(char_u *error) 558 { 559 if (ignore_error_list.ga_itemsize == 0) 560 ga_init2(&ignore_error_list, sizeof(char_u *), 1); 561 562 if (STRCMP("RESET", error) == 0) 563 ga_clear_strings(&ignore_error_list); 564 else 565 ga_add_string(&ignore_error_list, error); 566 } 567 568 static int 569 ignore_error(char_u *msg) 570 { 571 int i; 572 573 for (i = 0; i < ignore_error_list.ga_len; ++i) 574 if (strstr((char *)msg, 575 (char *)((char_u **)(ignore_error_list.ga_data))[i]) != NULL) 576 return TRUE; 577 return FALSE; 578 } 579 #endif 580 581 #if !defined(HAVE_STRERROR) || defined(PROTO) 582 /* 583 * Replacement for perror() that behaves more or less like emsg() was called. 584 * v:errmsg will be set and called_emsg will be set. 585 */ 586 void 587 do_perror(char *msg) 588 { 589 perror(msg); 590 ++emsg_silent; 591 emsg(msg); 592 --emsg_silent; 593 } 594 #endif 595 596 /* 597 * emsg_core() - display an error message 598 * 599 * Rings the bell, if appropriate, and calls message() to do the real work 600 * When terminal not initialized (yet) mch_errmsg(..) is used. 601 * 602 * Return TRUE if wait_return not called. 603 * Note: caller must check 'emsg_not_now()' before calling this. 604 */ 605 static int 606 emsg_core(char_u *s) 607 { 608 int attr; 609 char_u *p; 610 int r; 611 #ifdef FEAT_EVAL 612 int ignore = FALSE; 613 int severe; 614 #endif 615 616 #ifdef FEAT_EVAL 617 /* When testing some errors are turned into a normal message. */ 618 if (ignore_error(s)) 619 /* don't call msg() if it results in a dialog */ 620 return msg_use_printf() ? FALSE : msg((char *)s); 621 #endif 622 623 called_emsg = TRUE; 624 625 #ifdef FEAT_EVAL 626 /* If "emsg_severe" is TRUE: When an error exception is to be thrown, 627 * prefer this message over previous messages for the same command. */ 628 severe = emsg_severe; 629 emsg_severe = FALSE; 630 #endif 631 632 if (!emsg_off || vim_strchr(p_debug, 't') != NULL) 633 { 634 #ifdef FEAT_EVAL 635 /* 636 * Cause a throw of an error exception if appropriate. Don't display 637 * the error message in this case. (If no matching catch clause will 638 * be found, the message will be displayed later on.) "ignore" is set 639 * when the message should be ignored completely (used for the 640 * interrupt message). 641 */ 642 if (cause_errthrow(s, severe, &ignore) == TRUE) 643 { 644 if (!ignore) 645 ++did_emsg; 646 return TRUE; 647 } 648 649 /* set "v:errmsg", also when using ":silent! cmd" */ 650 set_vim_var_string(VV_ERRMSG, s, -1); 651 #endif 652 653 /* 654 * When using ":silent! cmd" ignore error messages. 655 * But do write it to the redirection file. 656 */ 657 if (emsg_silent != 0) 658 { 659 if (emsg_noredir == 0) 660 { 661 msg_start(); 662 p = get_emsg_source(); 663 if (p != NULL) 664 { 665 STRCAT(p, "\n"); 666 redir_write(p, -1); 667 vim_free(p); 668 } 669 p = get_emsg_lnum(); 670 if (p != NULL) 671 { 672 STRCAT(p, "\n"); 673 redir_write(p, -1); 674 vim_free(p); 675 } 676 redir_write(s, -1); 677 } 678 #ifdef FEAT_JOB_CHANNEL 679 ch_log(NULL, "ERROR silent: %s", (char *)s); 680 #endif 681 return TRUE; 682 } 683 684 ex_exitval = 1; 685 686 /* Reset msg_silent, an error causes messages to be switched back on. 687 */ 688 msg_silent = 0; 689 cmd_silent = FALSE; 690 691 if (global_busy) /* break :global command */ 692 ++global_busy; 693 694 if (p_eb) 695 beep_flush(); /* also includes flush_buffers() */ 696 else 697 flush_buffers(FLUSH_MINIMAL); // flush internal buffers 698 ++did_emsg; // flag for DoOneCmd() 699 #ifdef FEAT_EVAL 700 did_uncaught_emsg = TRUE; 701 #endif 702 } 703 704 emsg_on_display = TRUE; /* remember there is an error message */ 705 ++msg_scroll; /* don't overwrite a previous message */ 706 attr = HL_ATTR(HLF_E); /* set highlight mode for error messages */ 707 if (msg_scrolled != 0) 708 need_wait_return = TRUE; /* needed in case emsg() is called after 709 * wait_return has reset need_wait_return 710 * and a redraw is expected because 711 * msg_scrolled is non-zero */ 712 713 #ifdef FEAT_JOB_CHANNEL 714 emsg_to_channel_log = TRUE; 715 #endif 716 /* 717 * Display name and line number for the source of the error. 718 */ 719 msg_source(attr); 720 721 /* 722 * Display the error message itself. 723 */ 724 msg_nowait = FALSE; /* wait for this msg */ 725 r = msg_attr((char *)s, attr); 726 727 #ifdef FEAT_JOB_CHANNEL 728 emsg_to_channel_log = FALSE; 729 #endif 730 return r; 731 } 732 733 /* 734 * Print an error message. 735 */ 736 int 737 emsg(char *s) 738 { 739 /* Skip this if not giving error messages at the moment. */ 740 if (!emsg_not_now()) 741 return emsg_core((char_u *)s); 742 return TRUE; /* no error messages at the moment */ 743 } 744 745 #ifndef PROTO // manual proto with __attribute__ 746 /* 747 * Print an error message with format string and variable arguments. 748 * Note: caller must not pass 'IObuff' as 1st argument. 749 */ 750 int 751 semsg(const char *s, ...) 752 { 753 // Skip this if not giving error messages at the moment. 754 if (!emsg_not_now()) 755 { 756 if (IObuff == NULL) 757 { 758 // Very early in initialisation and already something wrong, just 759 // give the raw message so the user at least gets a hint. 760 return emsg_core((char_u *)s); 761 } 762 else 763 { 764 va_list ap; 765 766 va_start(ap, s); 767 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap); 768 va_end(ap); 769 return emsg_core(IObuff); 770 } 771 } 772 return TRUE; // no error messages at the moment 773 } 774 #endif 775 776 /* 777 * Same as emsg(...), but abort on error when ABORT_ON_INTERNAL_ERROR is 778 * defined. It is used for internal errors only, so that they can be 779 * detected when fuzzing vim. 780 */ 781 void 782 iemsg(char *s) 783 { 784 if (!emsg_not_now()) 785 emsg_core((char_u *)s); 786 #ifdef ABORT_ON_INTERNAL_ERROR 787 abort(); 788 #endif 789 } 790 791 #ifndef PROTO // manual proto with __attribute__ 792 /* 793 * Same as semsg(...) but abort on error when ABORT_ON_INTERNAL_ERROR is 794 * defined. It is used for internal errors only, so that they can be 795 * detected when fuzzing vim. 796 * Note: caller must not pass 'IObuff' as 1st argument. 797 */ 798 void 799 siemsg(const char *s, ...) 800 { 801 if (!emsg_not_now()) 802 { 803 if (IObuff == NULL) 804 { 805 // Very early in initialisation and already something wrong, just 806 // give the raw message so the user at least gets a hint. 807 emsg_core((char_u *)s); 808 } 809 else 810 { 811 va_list ap; 812 813 va_start(ap, s); 814 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap); 815 va_end(ap); 816 emsg_core(IObuff); 817 } 818 } 819 # ifdef ABORT_ON_INTERNAL_ERROR 820 abort(); 821 # endif 822 } 823 #endif 824 825 /* 826 * Give an "Internal error" message. 827 */ 828 void 829 internal_error(char *where) 830 { 831 siemsg(_(e_intern2), where); 832 } 833 834 /* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */ 835 836 void 837 emsg_invreg(int name) 838 { 839 semsg(_("E354: Invalid register name: '%s'"), transchar(name)); 840 } 841 842 /* 843 * Like msg(), but truncate to a single line if p_shm contains 't', or when 844 * "force" is TRUE. This truncates in another way as for normal messages. 845 * Careful: The string may be changed by msg_may_trunc()! 846 * Returns a pointer to the printed message, if wait_return() not called. 847 */ 848 char * 849 msg_trunc_attr(char *s, int force, int attr) 850 { 851 int n; 852 char *ts; 853 854 /* Add message to history before truncating */ 855 add_msg_hist((char_u *)s, -1, attr); 856 857 ts = (char *)msg_may_trunc(force, (char_u *)s); 858 859 msg_hist_off = TRUE; 860 n = msg_attr(ts, attr); 861 msg_hist_off = FALSE; 862 863 if (n) 864 return ts; 865 return NULL; 866 } 867 868 /* 869 * Check if message "s" should be truncated at the start (for filenames). 870 * Return a pointer to where the truncated message starts. 871 * Note: May change the message by replacing a character with '<'. 872 */ 873 char_u * 874 msg_may_trunc(int force, char_u *s) 875 { 876 int n; 877 int room; 878 879 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1; 880 if ((force || (shortmess(SHM_TRUNC) && !exmode_active)) 881 && (n = (int)STRLEN(s) - room) > 0) 882 { 883 if (has_mbyte) 884 { 885 int size = vim_strsize(s); 886 887 /* There may be room anyway when there are multibyte chars. */ 888 if (size <= room) 889 return s; 890 891 for (n = 0; size >= room; ) 892 { 893 size -= (*mb_ptr2cells)(s + n); 894 n += (*mb_ptr2len)(s + n); 895 } 896 --n; 897 } 898 s += n; 899 *s = '<'; 900 } 901 return s; 902 } 903 904 static void 905 add_msg_hist( 906 char_u *s, 907 int len, /* -1 for undetermined length */ 908 int attr) 909 { 910 struct msg_hist *p; 911 912 if (msg_hist_off || msg_silent != 0) 913 return; 914 915 /* Don't let the message history get too big */ 916 while (msg_hist_len > MAX_MSG_HIST_LEN) 917 (void)delete_first_msg(); 918 919 /* allocate an entry and add the message at the end of the history */ 920 p = ALLOC_ONE(struct msg_hist); 921 if (p != NULL) 922 { 923 if (len < 0) 924 len = (int)STRLEN(s); 925 /* remove leading and trailing newlines */ 926 while (len > 0 && *s == '\n') 927 { 928 ++s; 929 --len; 930 } 931 while (len > 0 && s[len - 1] == '\n') 932 --len; 933 p->msg = vim_strnsave(s, len); 934 p->next = NULL; 935 p->attr = attr; 936 if (last_msg_hist != NULL) 937 last_msg_hist->next = p; 938 last_msg_hist = p; 939 if (first_msg_hist == NULL) 940 first_msg_hist = last_msg_hist; 941 ++msg_hist_len; 942 } 943 } 944 945 /* 946 * Delete the first (oldest) message from the history. 947 * Returns FAIL if there are no messages. 948 */ 949 int 950 delete_first_msg(void) 951 { 952 struct msg_hist *p; 953 954 if (msg_hist_len <= 0) 955 return FAIL; 956 p = first_msg_hist; 957 first_msg_hist = p->next; 958 if (first_msg_hist == NULL) 959 last_msg_hist = NULL; /* history is empty */ 960 vim_free(p->msg); 961 vim_free(p); 962 --msg_hist_len; 963 return OK; 964 } 965 966 /* 967 * ":messages" command. 968 */ 969 void 970 ex_messages(exarg_T *eap) 971 { 972 struct msg_hist *p; 973 char_u *s; 974 int c = 0; 975 976 if (STRCMP(eap->arg, "clear") == 0) 977 { 978 int keep = eap->addr_count == 0 ? 0 : eap->line2; 979 980 while (msg_hist_len > keep) 981 (void)delete_first_msg(); 982 return; 983 } 984 985 if (*eap->arg != NUL) 986 { 987 emsg(_(e_invarg)); 988 return; 989 } 990 991 msg_hist_off = TRUE; 992 993 p = first_msg_hist; 994 if (eap->addr_count != 0) 995 { 996 /* Count total messages */ 997 for (; p != NULL && !got_int; p = p->next) 998 c++; 999 1000 c -= eap->line2; 1001 1002 /* Skip without number of messages specified */ 1003 for (p = first_msg_hist; p != NULL && !got_int && c > 0; 1004 p = p->next, c--); 1005 } 1006 1007 if (p == first_msg_hist) 1008 { 1009 s = mch_getenv((char_u *)"LANG"); 1010 if (s != NULL && *s != NUL) 1011 // The next comment is extracted by xgettext and put in po file for 1012 // translators to read. 1013 msg_attr( 1014 // Translator: Please replace the name and email address 1015 // with the appropriate text for your translation. 1016 _("Messages maintainer: Bram Moolenaar <[email protected]>"), 1017 HL_ATTR(HLF_T)); 1018 } 1019 1020 /* Display what was not skipped. */ 1021 for (; p != NULL && !got_int; p = p->next) 1022 if (p->msg != NULL) 1023 msg_attr((char *)p->msg, p->attr); 1024 1025 msg_hist_off = FALSE; 1026 } 1027 1028 #if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO) 1029 /* 1030 * Call this after prompting the user. This will avoid a hit-return message 1031 * and a delay. 1032 */ 1033 void 1034 msg_end_prompt(void) 1035 { 1036 need_wait_return = FALSE; 1037 emsg_on_display = FALSE; 1038 cmdline_row = msg_row; 1039 msg_col = 0; 1040 msg_clr_eos(); 1041 lines_left = -1; 1042 } 1043 #endif 1044 1045 /* 1046 * Wait for the user to hit a key (normally Enter). 1047 * If "redraw" is TRUE, clear and redraw the screen. 1048 * If "redraw" is FALSE, just redraw the screen. 1049 * If "redraw" is -1, don't redraw at all. 1050 */ 1051 void 1052 wait_return(int redraw) 1053 { 1054 int c; 1055 int oldState; 1056 int tmpState; 1057 int had_got_int; 1058 int save_reg_recording; 1059 FILE *save_scriptout; 1060 1061 if (redraw == TRUE) 1062 must_redraw = CLEAR; 1063 1064 /* If using ":silent cmd", don't wait for a return. Also don't set 1065 * need_wait_return to do it later. */ 1066 if (msg_silent != 0) 1067 return; 1068 1069 /* 1070 * When inside vgetc(), we can't wait for a typed character at all. 1071 * With the global command (and some others) we only need one return at 1072 * the end. Adjust cmdline_row to avoid the next message overwriting the 1073 * last one. 1074 */ 1075 if (vgetc_busy > 0) 1076 return; 1077 need_wait_return = TRUE; 1078 if (no_wait_return) 1079 { 1080 if (!exmode_active) 1081 cmdline_row = msg_row; 1082 return; 1083 } 1084 1085 redir_off = TRUE; /* don't redirect this message */ 1086 oldState = State; 1087 if (quit_more) 1088 { 1089 c = CAR; /* just pretend CR was hit */ 1090 quit_more = FALSE; 1091 got_int = FALSE; 1092 } 1093 else if (exmode_active) 1094 { 1095 msg_puts(" "); /* make sure the cursor is on the right line */ 1096 c = CAR; /* no need for a return in ex mode */ 1097 got_int = FALSE; 1098 } 1099 else 1100 { 1101 /* Make sure the hit-return prompt is on screen when 'guioptions' was 1102 * just changed. */ 1103 screenalloc(FALSE); 1104 1105 State = HITRETURN; 1106 setmouse(); 1107 #ifdef USE_ON_FLY_SCROLL 1108 dont_scroll = TRUE; /* disallow scrolling here */ 1109 #endif 1110 cmdline_row = msg_row; 1111 1112 /* Avoid the sequence that the user types ":" at the hit-return prompt 1113 * to start an Ex command, but the file-changed dialog gets in the 1114 * way. */ 1115 if (need_check_timestamps) 1116 check_timestamps(FALSE); 1117 1118 hit_return_msg(); 1119 1120 do 1121 { 1122 /* Remember "got_int", if it is set vgetc() probably returns a 1123 * CTRL-C, but we need to loop then. */ 1124 had_got_int = got_int; 1125 1126 /* Don't do mappings here, we put the character back in the 1127 * typeahead buffer. */ 1128 ++no_mapping; 1129 ++allow_keys; 1130 1131 /* Temporarily disable Recording. If Recording is active, the 1132 * character will be recorded later, since it will be added to the 1133 * typebuf after the loop */ 1134 save_reg_recording = reg_recording; 1135 save_scriptout = scriptout; 1136 reg_recording = 0; 1137 scriptout = NULL; 1138 c = safe_vgetc(); 1139 if (had_got_int && !global_busy) 1140 got_int = FALSE; 1141 --no_mapping; 1142 --allow_keys; 1143 reg_recording = save_reg_recording; 1144 scriptout = save_scriptout; 1145 1146 #ifdef FEAT_CLIPBOARD 1147 /* Strange way to allow copying (yanking) a modeless selection at 1148 * the hit-enter prompt. Use CTRL-Y, because the same is used in 1149 * Cmdline-mode and it's harmless when there is no selection. */ 1150 if (c == Ctrl_Y && clip_star.state == SELECT_DONE) 1151 { 1152 clip_copy_modeless_selection(TRUE); 1153 c = K_IGNORE; 1154 } 1155 #endif 1156 1157 /* 1158 * Allow scrolling back in the messages. 1159 * Also accept scroll-down commands when messages fill the screen, 1160 * to avoid that typing one 'j' too many makes the messages 1161 * disappear. 1162 */ 1163 if (p_more && !p_cp) 1164 { 1165 if (c == 'b' || c == 'k' || c == 'u' || c == 'g' 1166 || c == K_UP || c == K_PAGEUP) 1167 { 1168 if (msg_scrolled > Rows) 1169 /* scroll back to show older messages */ 1170 do_more_prompt(c); 1171 else 1172 { 1173 msg_didout = FALSE; 1174 c = K_IGNORE; 1175 msg_col = 1176 #ifdef FEAT_RIGHTLEFT 1177 cmdmsg_rl ? Columns - 1 : 1178 #endif 1179 0; 1180 } 1181 if (quit_more) 1182 { 1183 c = CAR; /* just pretend CR was hit */ 1184 quit_more = FALSE; 1185 got_int = FALSE; 1186 } 1187 else if (c != K_IGNORE) 1188 { 1189 c = K_IGNORE; 1190 hit_return_msg(); 1191 } 1192 } 1193 else if (msg_scrolled > Rows - 2 1194 && (c == 'j' || c == 'd' || c == 'f' 1195 || c == K_DOWN || c == K_PAGEDOWN)) 1196 c = K_IGNORE; 1197 } 1198 } while ((had_got_int && c == Ctrl_C) 1199 || c == K_IGNORE 1200 #ifdef FEAT_GUI 1201 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR 1202 #endif 1203 || c == K_LEFTDRAG || c == K_LEFTRELEASE 1204 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE 1205 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE 1206 || c == K_MOUSELEFT || c == K_MOUSERIGHT 1207 || c == K_MOUSEDOWN || c == K_MOUSEUP 1208 || c == K_MOUSEMOVE 1209 || (!mouse_has(MOUSE_RETURN) 1210 && mouse_row < msg_row 1211 && (c == K_LEFTMOUSE 1212 || c == K_MIDDLEMOUSE 1213 || c == K_RIGHTMOUSE 1214 || c == K_X1MOUSE 1215 || c == K_X2MOUSE)) 1216 ); 1217 ui_breakcheck(); 1218 /* 1219 * Avoid that the mouse-up event causes visual mode to start. 1220 */ 1221 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE 1222 || c == K_X1MOUSE || c == K_X2MOUSE) 1223 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0); 1224 else if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C) 1225 { 1226 /* Put the character back in the typeahead buffer. Don't use the 1227 * stuff buffer, because lmaps wouldn't work. */ 1228 ins_char_typebuf(c); 1229 do_redraw = TRUE; /* need a redraw even though there is 1230 typeahead */ 1231 } 1232 } 1233 redir_off = FALSE; 1234 1235 /* 1236 * If the user hits ':', '?' or '/' we get a command line from the next 1237 * line. 1238 */ 1239 if (c == ':' || c == '?' || c == '/') 1240 { 1241 if (!exmode_active) 1242 cmdline_row = msg_row; 1243 skip_redraw = TRUE; /* skip redraw once */ 1244 do_redraw = FALSE; 1245 #ifdef FEAT_TERMINAL 1246 skip_term_loop = TRUE; 1247 #endif 1248 } 1249 1250 /* 1251 * If the window size changed set_shellsize() will redraw the screen. 1252 * Otherwise the screen is only redrawn if 'redraw' is set and no ':' 1253 * typed. 1254 */ 1255 tmpState = State; 1256 State = oldState; /* restore State before set_shellsize */ 1257 setmouse(); 1258 msg_check(); 1259 1260 #if defined(UNIX) || defined(VMS) 1261 /* 1262 * When switching screens, we need to output an extra newline on exit. 1263 */ 1264 if (swapping_screen() && !termcap_active) 1265 newline_on_exit = TRUE; 1266 #endif 1267 1268 need_wait_return = FALSE; 1269 did_wait_return = TRUE; 1270 emsg_on_display = FALSE; /* can delete error message now */ 1271 lines_left = -1; /* reset lines_left at next msg_start() */ 1272 reset_last_sourcing(); 1273 if (keep_msg != NULL && vim_strsize(keep_msg) >= 1274 (Rows - cmdline_row - 1) * Columns + sc_col) 1275 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */ 1276 1277 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */ 1278 { 1279 starttermcap(); /* start termcap before redrawing */ 1280 shell_resized(); 1281 } 1282 else if (!skip_redraw 1283 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1))) 1284 { 1285 starttermcap(); /* start termcap before redrawing */ 1286 redraw_later(VALID); 1287 } 1288 } 1289 1290 /* 1291 * Write the hit-return prompt. 1292 */ 1293 static void 1294 hit_return_msg(void) 1295 { 1296 int save_p_more = p_more; 1297 1298 p_more = FALSE; /* don't want see this message when scrolling back */ 1299 if (msg_didout) /* start on a new line */ 1300 msg_putchar('\n'); 1301 if (got_int) 1302 msg_puts(_("Interrupt: ")); 1303 1304 msg_puts_attr(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R)); 1305 if (!msg_use_printf()) 1306 msg_clr_eos(); 1307 p_more = save_p_more; 1308 } 1309 1310 /* 1311 * Set "keep_msg" to "s". Free the old value and check for NULL pointer. 1312 */ 1313 void 1314 set_keep_msg(char_u *s, int attr) 1315 { 1316 vim_free(keep_msg); 1317 if (s != NULL && msg_silent == 0) 1318 keep_msg = vim_strsave(s); 1319 else 1320 keep_msg = NULL; 1321 keep_msg_more = FALSE; 1322 keep_msg_attr = attr; 1323 } 1324 1325 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) 1326 /* 1327 * If there currently is a message being displayed, set "keep_msg" to it, so 1328 * that it will be displayed again after redraw. 1329 */ 1330 void 1331 set_keep_msg_from_hist(void) 1332 { 1333 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0 1334 && (State & NORMAL)) 1335 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr); 1336 } 1337 #endif 1338 1339 /* 1340 * Prepare for outputting characters in the command line. 1341 */ 1342 void 1343 msg_start(void) 1344 { 1345 int did_return = FALSE; 1346 1347 if (!msg_silent) 1348 VIM_CLEAR(keep_msg); 1349 1350 #ifdef FEAT_EVAL 1351 if (need_clr_eos) 1352 { 1353 /* Halfway an ":echo" command and getting an (error) message: clear 1354 * any text from the command. */ 1355 need_clr_eos = FALSE; 1356 msg_clr_eos(); 1357 } 1358 #endif 1359 1360 if (!msg_scroll && full_screen) /* overwrite last message */ 1361 { 1362 msg_row = cmdline_row; 1363 msg_col = 1364 #ifdef FEAT_RIGHTLEFT 1365 cmdmsg_rl ? Columns - 1 : 1366 #endif 1367 0; 1368 } 1369 else if (msg_didout) /* start message on next line */ 1370 { 1371 msg_putchar('\n'); 1372 did_return = TRUE; 1373 if (exmode_active != EXMODE_NORMAL) 1374 cmdline_row = msg_row; 1375 } 1376 if (!msg_didany || lines_left < 0) 1377 msg_starthere(); 1378 if (msg_silent == 0) 1379 { 1380 msg_didout = FALSE; /* no output on current line yet */ 1381 cursor_off(); 1382 } 1383 1384 /* when redirecting, may need to start a new line. */ 1385 if (!did_return) 1386 redir_write((char_u *)"\n", -1); 1387 } 1388 1389 /* 1390 * Note that the current msg position is where messages start. 1391 */ 1392 void 1393 msg_starthere(void) 1394 { 1395 lines_left = cmdline_row; 1396 msg_didany = FALSE; 1397 } 1398 1399 void 1400 msg_putchar(int c) 1401 { 1402 msg_putchar_attr(c, 0); 1403 } 1404 1405 void 1406 msg_putchar_attr(int c, int attr) 1407 { 1408 char_u buf[MB_MAXBYTES + 1]; 1409 1410 if (IS_SPECIAL(c)) 1411 { 1412 buf[0] = K_SPECIAL; 1413 buf[1] = K_SECOND(c); 1414 buf[2] = K_THIRD(c); 1415 buf[3] = NUL; 1416 } 1417 else 1418 buf[(*mb_char2bytes)(c, buf)] = NUL; 1419 msg_puts_attr((char *)buf, attr); 1420 } 1421 1422 void 1423 msg_outnum(long n) 1424 { 1425 char buf[20]; 1426 1427 sprintf(buf, "%ld", n); 1428 msg_puts(buf); 1429 } 1430 1431 void 1432 msg_home_replace(char_u *fname) 1433 { 1434 msg_home_replace_attr(fname, 0); 1435 } 1436 1437 #if defined(FEAT_FIND_ID) || defined(PROTO) 1438 void 1439 msg_home_replace_hl(char_u *fname) 1440 { 1441 msg_home_replace_attr(fname, HL_ATTR(HLF_D)); 1442 } 1443 #endif 1444 1445 static void 1446 msg_home_replace_attr(char_u *fname, int attr) 1447 { 1448 char_u *name; 1449 1450 name = home_replace_save(NULL, fname); 1451 if (name != NULL) 1452 msg_outtrans_attr(name, attr); 1453 vim_free(name); 1454 } 1455 1456 /* 1457 * Output 'len' characters in 'str' (including NULs) with translation 1458 * if 'len' is -1, output up to a NUL character. 1459 * Use attributes 'attr'. 1460 * Return the number of characters it takes on the screen. 1461 */ 1462 int 1463 msg_outtrans(char_u *str) 1464 { 1465 return msg_outtrans_attr(str, 0); 1466 } 1467 1468 int 1469 msg_outtrans_attr(char_u *str, int attr) 1470 { 1471 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr); 1472 } 1473 1474 int 1475 msg_outtrans_len(char_u *str, int len) 1476 { 1477 return msg_outtrans_len_attr(str, len, 0); 1478 } 1479 1480 /* 1481 * Output one character at "p". Return pointer to the next character. 1482 * Handles multi-byte characters. 1483 */ 1484 char_u * 1485 msg_outtrans_one(char_u *p, int attr) 1486 { 1487 int l; 1488 1489 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) 1490 { 1491 msg_outtrans_len_attr(p, l, attr); 1492 return p + l; 1493 } 1494 msg_puts_attr((char *)transchar_byte(*p), attr); 1495 return p + 1; 1496 } 1497 1498 int 1499 msg_outtrans_len_attr(char_u *msgstr, int len, int attr) 1500 { 1501 int retval = 0; 1502 char_u *str = msgstr; 1503 char_u *plain_start = msgstr; 1504 char_u *s; 1505 int mb_l; 1506 int c; 1507 1508 /* if MSG_HIST flag set, add message to history */ 1509 if (attr & MSG_HIST) 1510 { 1511 add_msg_hist(str, len, attr); 1512 attr &= ~MSG_HIST; 1513 } 1514 1515 /* If the string starts with a composing character first draw a space on 1516 * which the composing char can be drawn. */ 1517 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr))) 1518 msg_puts_attr(" ", attr); 1519 1520 /* 1521 * Go over the string. Special characters are translated and printed. 1522 * Normal characters are printed several at a time. 1523 */ 1524 while (--len >= 0) 1525 { 1526 if (enc_utf8) 1527 /* Don't include composing chars after the end. */ 1528 mb_l = utfc_ptr2len_len(str, len + 1); 1529 else if (has_mbyte) 1530 mb_l = (*mb_ptr2len)(str); 1531 else 1532 mb_l = 1; 1533 if (has_mbyte && mb_l > 1) 1534 { 1535 c = (*mb_ptr2char)(str); 1536 if (vim_isprintc(c)) 1537 /* printable multi-byte char: count the cells. */ 1538 retval += (*mb_ptr2cells)(str); 1539 else 1540 { 1541 /* unprintable multi-byte char: print the printable chars so 1542 * far and the translation of the unprintable char. */ 1543 if (str > plain_start) 1544 msg_puts_attr_len((char *)plain_start, 1545 (int)(str - plain_start), attr); 1546 plain_start = str + mb_l; 1547 msg_puts_attr((char *)transchar(c), 1548 attr == 0 ? HL_ATTR(HLF_8) : attr); 1549 retval += char2cells(c); 1550 } 1551 len -= mb_l - 1; 1552 str += mb_l; 1553 } 1554 else 1555 { 1556 s = transchar_byte(*str); 1557 if (s[1] != NUL) 1558 { 1559 /* unprintable char: print the printable chars so far and the 1560 * translation of the unprintable char. */ 1561 if (str > plain_start) 1562 msg_puts_attr_len((char *)plain_start, 1563 (int)(str - plain_start), attr); 1564 plain_start = str + 1; 1565 msg_puts_attr((char *)s, attr == 0 ? HL_ATTR(HLF_8) : attr); 1566 retval += (int)STRLEN(s); 1567 } 1568 else 1569 ++retval; 1570 ++str; 1571 } 1572 } 1573 1574 if (str > plain_start) 1575 /* print the printable chars at the end */ 1576 msg_puts_attr_len((char *)plain_start, (int)(str - plain_start), attr); 1577 1578 return retval; 1579 } 1580 1581 #if defined(FEAT_QUICKFIX) || defined(PROTO) 1582 void 1583 msg_make(char_u *arg) 1584 { 1585 int i; 1586 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB"; 1587 1588 arg = skipwhite(arg); 1589 for (i = 5; *arg && i >= 0; --i) 1590 if (*arg++ != str[i]) 1591 break; 1592 if (i < 0) 1593 { 1594 msg_putchar('\n'); 1595 for (i = 0; rs[i]; ++i) 1596 msg_putchar(rs[i] - 3); 1597 } 1598 } 1599 #endif 1600 1601 /* 1602 * Output the string 'str' up to a NUL character. 1603 * Return the number of characters it takes on the screen. 1604 * 1605 * If K_SPECIAL is encountered, then it is taken in conjunction with the 1606 * following character and shown as <F1>, <S-Up> etc. Any other character 1607 * which is not printable shown in <> form. 1608 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>. 1609 * If a character is displayed in one of these special ways, is also 1610 * highlighted (its highlight name is '8' in the p_hl variable). 1611 * Otherwise characters are not highlighted. 1612 * This function is used to show mappings, where we want to see how to type 1613 * the character/string -- webb 1614 */ 1615 int 1616 msg_outtrans_special( 1617 char_u *strstart, 1618 int from, // TRUE for lhs of a mapping 1619 int maxlen) // screen columns, 0 for unlimited 1620 { 1621 char_u *str = strstart; 1622 int retval = 0; 1623 char *text; 1624 int attr; 1625 int len; 1626 1627 attr = HL_ATTR(HLF_8); 1628 while (*str != NUL) 1629 { 1630 /* Leading and trailing spaces need to be displayed in <> form. */ 1631 if ((str == strstart || str[1] == NUL) && *str == ' ') 1632 { 1633 text = "<Space>"; 1634 ++str; 1635 } 1636 else 1637 text = (char *)str2special(&str, from); 1638 len = vim_strsize((char_u *)text); 1639 if (maxlen > 0 && retval + len >= maxlen) 1640 break; 1641 /* Highlight special keys */ 1642 msg_puts_attr(text, len > 1 1643 && (*mb_ptr2len)((char_u *)text) <= 1 ? attr : 0); 1644 retval += len; 1645 } 1646 return retval; 1647 } 1648 1649 #if defined(FEAT_EVAL) || defined(PROTO) 1650 /* 1651 * Return the lhs or rhs of a mapping, with the key codes turned into printable 1652 * strings, in an allocated string. 1653 */ 1654 char_u * 1655 str2special_save( 1656 char_u *str, 1657 int is_lhs) /* TRUE for lhs, FALSE for rhs */ 1658 { 1659 garray_T ga; 1660 char_u *p = str; 1661 1662 ga_init2(&ga, 1, 40); 1663 while (*p != NUL) 1664 ga_concat(&ga, str2special(&p, is_lhs)); 1665 ga_append(&ga, NUL); 1666 return (char_u *)ga.ga_data; 1667 } 1668 #endif 1669 1670 /* 1671 * Return the printable string for the key codes at "*sp". 1672 * Used for translating the lhs or rhs of a mapping to printable chars. 1673 * Advances "sp" to the next code. 1674 */ 1675 char_u * 1676 str2special( 1677 char_u **sp, 1678 int from) /* TRUE for lhs of mapping */ 1679 { 1680 int c; 1681 static char_u buf[7]; 1682 char_u *str = *sp; 1683 int modifiers = 0; 1684 int special = FALSE; 1685 1686 if (has_mbyte) 1687 { 1688 char_u *p; 1689 1690 /* Try to un-escape a multi-byte character. Return the un-escaped 1691 * string if it is a multi-byte character. */ 1692 p = mb_unescape(sp); 1693 if (p != NULL) 1694 return p; 1695 } 1696 1697 c = *str; 1698 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) 1699 { 1700 if (str[1] == KS_MODIFIER) 1701 { 1702 modifiers = str[2]; 1703 str += 3; 1704 c = *str; 1705 } 1706 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) 1707 { 1708 c = TO_SPECIAL(str[1], str[2]); 1709 str += 2; 1710 } 1711 if (IS_SPECIAL(c) || modifiers) /* special key */ 1712 special = TRUE; 1713 } 1714 1715 if (has_mbyte && !IS_SPECIAL(c)) 1716 { 1717 int len = (*mb_ptr2len)(str); 1718 1719 /* For multi-byte characters check for an illegal byte. */ 1720 if (has_mbyte && MB_BYTE2LEN(*str) > len) 1721 { 1722 transchar_nonprint(buf, c); 1723 *sp = str + 1; 1724 return buf; 1725 } 1726 /* Since 'special' is TRUE the multi-byte character 'c' will be 1727 * processed by get_special_key_name() */ 1728 c = (*mb_ptr2char)(str); 1729 *sp = str + len; 1730 } 1731 else 1732 *sp = str + 1; 1733 1734 /* Make unprintable characters in <> form, also <M-Space> and <Tab>. 1735 * Use <Space> only for lhs of a mapping. */ 1736 if (special || char2cells(c) > 1 || (from && c == ' ')) 1737 return get_special_key_name(c, modifiers); 1738 buf[0] = c; 1739 buf[1] = NUL; 1740 return buf; 1741 } 1742 1743 /* 1744 * Translate a key sequence into special key names. 1745 */ 1746 void 1747 str2specialbuf(char_u *sp, char_u *buf, int len) 1748 { 1749 char_u *s; 1750 1751 *buf = NUL; 1752 while (*sp) 1753 { 1754 s = str2special(&sp, FALSE); 1755 if ((int)(STRLEN(s) + STRLEN(buf)) < len) 1756 STRCAT(buf, s); 1757 } 1758 } 1759 1760 /* 1761 * print line for :print or :list command 1762 */ 1763 void 1764 msg_prt_line(char_u *s, int list) 1765 { 1766 int c; 1767 int col = 0; 1768 int n_extra = 0; 1769 int c_extra = 0; 1770 int c_final = 0; 1771 char_u *p_extra = NULL; /* init to make SASC shut up */ 1772 int n; 1773 int attr = 0; 1774 char_u *trail = NULL; 1775 int l; 1776 char_u buf[MB_MAXBYTES + 1]; 1777 1778 if (curwin->w_p_list) 1779 list = TRUE; 1780 1781 /* find start of trailing whitespace */ 1782 if (list && lcs_trail) 1783 { 1784 trail = s + STRLEN(s); 1785 while (trail > s && VIM_ISWHITE(trail[-1])) 1786 --trail; 1787 } 1788 1789 /* output a space for an empty line, otherwise the line will be 1790 * overwritten */ 1791 if (*s == NUL && !(list && lcs_eol != NUL)) 1792 msg_putchar(' '); 1793 1794 while (!got_int) 1795 { 1796 if (n_extra > 0) 1797 { 1798 --n_extra; 1799 if (n_extra == 0 && c_final) 1800 c = c_final; 1801 else if (c_extra) 1802 c = c_extra; 1803 else 1804 c = *p_extra++; 1805 } 1806 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1) 1807 { 1808 col += (*mb_ptr2cells)(s); 1809 if (lcs_nbsp != NUL && list 1810 && (mb_ptr2char(s) == 160 1811 || mb_ptr2char(s) == 0x202f)) 1812 { 1813 mb_char2bytes(lcs_nbsp, buf); 1814 buf[(*mb_ptr2len)(buf)] = NUL; 1815 } 1816 else 1817 { 1818 mch_memmove(buf, s, (size_t)l); 1819 buf[l] = NUL; 1820 } 1821 msg_puts((char *)buf); 1822 s += l; 1823 continue; 1824 } 1825 else 1826 { 1827 attr = 0; 1828 c = *s++; 1829 if (c == TAB && (!list || lcs_tab1)) 1830 { 1831 /* tab amount depends on current column */ 1832 #ifdef FEAT_VARTABS 1833 n_extra = tabstop_padding(col, curbuf->b_p_ts, 1834 curbuf->b_p_vts_array) - 1; 1835 #else 1836 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1; 1837 #endif 1838 if (!list) 1839 { 1840 c = ' '; 1841 c_extra = ' '; 1842 c_final = NUL; 1843 } 1844 else 1845 { 1846 c = (n_extra == 0 && lcs_tab3) ? lcs_tab3 : lcs_tab1; 1847 c_extra = lcs_tab2; 1848 c_final = lcs_tab3; 1849 attr = HL_ATTR(HLF_8); 1850 } 1851 } 1852 else if (c == 160 && list && lcs_nbsp != NUL) 1853 { 1854 c = lcs_nbsp; 1855 attr = HL_ATTR(HLF_8); 1856 } 1857 else if (c == NUL && list && lcs_eol != NUL) 1858 { 1859 p_extra = (char_u *)""; 1860 c_extra = NUL; 1861 c_final = NUL; 1862 n_extra = 1; 1863 c = lcs_eol; 1864 attr = HL_ATTR(HLF_AT); 1865 --s; 1866 } 1867 else if (c != NUL && (n = byte2cells(c)) > 1) 1868 { 1869 n_extra = n - 1; 1870 p_extra = transchar_byte(c); 1871 c_extra = NUL; 1872 c_final = NUL; 1873 c = *p_extra++; 1874 /* Use special coloring to be able to distinguish <hex> from 1875 * the same in plain text. */ 1876 attr = HL_ATTR(HLF_8); 1877 } 1878 else if (c == ' ' && trail != NULL && s > trail) 1879 { 1880 c = lcs_trail; 1881 attr = HL_ATTR(HLF_8); 1882 } 1883 else if (c == ' ' && list && lcs_space != NUL) 1884 { 1885 c = lcs_space; 1886 attr = HL_ATTR(HLF_8); 1887 } 1888 } 1889 1890 if (c == NUL) 1891 break; 1892 1893 msg_putchar_attr(c, attr); 1894 col++; 1895 } 1896 msg_clr_eos(); 1897 } 1898 1899 /* 1900 * Use screen_puts() to output one multi-byte character. 1901 * Return the pointer "s" advanced to the next character. 1902 */ 1903 static char_u * 1904 screen_puts_mbyte(char_u *s, int l, int attr) 1905 { 1906 int cw; 1907 1908 msg_didout = TRUE; /* remember that line is not empty */ 1909 cw = (*mb_ptr2cells)(s); 1910 if (cw > 1 && ( 1911 #ifdef FEAT_RIGHTLEFT 1912 cmdmsg_rl ? msg_col <= 1 : 1913 #endif 1914 msg_col == Columns - 1)) 1915 { 1916 /* Doesn't fit, print a highlighted '>' to fill it up. */ 1917 msg_screen_putchar('>', HL_ATTR(HLF_AT)); 1918 return s; 1919 } 1920 1921 screen_puts_len(s, l, msg_row, msg_col, attr); 1922 #ifdef FEAT_RIGHTLEFT 1923 if (cmdmsg_rl) 1924 { 1925 msg_col -= cw; 1926 if (msg_col == 0) 1927 { 1928 msg_col = Columns; 1929 ++msg_row; 1930 } 1931 } 1932 else 1933 #endif 1934 { 1935 msg_col += cw; 1936 if (msg_col >= Columns) 1937 { 1938 msg_col = 0; 1939 ++msg_row; 1940 } 1941 } 1942 return s + l; 1943 } 1944 1945 /* 1946 * Output a string to the screen at position msg_row, msg_col. 1947 * Update msg_row and msg_col for the next message. 1948 */ 1949 void 1950 msg_puts(char *s) 1951 { 1952 msg_puts_attr(s, 0); 1953 } 1954 1955 void 1956 msg_puts_title(char *s) 1957 { 1958 msg_puts_attr(s, HL_ATTR(HLF_T)); 1959 } 1960 1961 /* 1962 * Show a message in such a way that it always fits in the line. Cut out a 1963 * part in the middle and replace it with "..." when necessary. 1964 * Does not handle multi-byte characters! 1965 */ 1966 static void 1967 msg_outtrans_long_len_attr(char_u *longstr, int len, int attr) 1968 { 1969 int slen = len; 1970 int room; 1971 1972 room = Columns - msg_col; 1973 if (len > room && room >= 20) 1974 { 1975 slen = (room - 3) / 2; 1976 msg_outtrans_len_attr(longstr, slen, attr); 1977 msg_puts_attr("...", HL_ATTR(HLF_8)); 1978 } 1979 msg_outtrans_len_attr(longstr + len - slen, slen, attr); 1980 } 1981 1982 void 1983 msg_outtrans_long_attr(char_u *longstr, int attr) 1984 { 1985 msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr); 1986 } 1987 1988 /* 1989 * Basic function for writing a message with highlight attributes. 1990 */ 1991 void 1992 msg_puts_attr(char *s, int attr) 1993 { 1994 msg_puts_attr_len(s, -1, attr); 1995 } 1996 1997 /* 1998 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes). 1999 * When "maxlen" is -1 there is no maximum length. 2000 * When "maxlen" is >= 0 the message is not put in the history. 2001 */ 2002 static void 2003 msg_puts_attr_len(char *str, int maxlen, int attr) 2004 { 2005 /* 2006 * If redirection is on, also write to the redirection file. 2007 */ 2008 redir_write((char_u *)str, maxlen); 2009 2010 /* 2011 * Don't print anything when using ":silent cmd". 2012 */ 2013 if (msg_silent != 0) 2014 return; 2015 2016 /* if MSG_HIST flag set, add message to history */ 2017 if ((attr & MSG_HIST) && maxlen < 0) 2018 { 2019 add_msg_hist((char_u *)str, -1, attr); 2020 attr &= ~MSG_HIST; 2021 } 2022 2023 // When writing something to the screen after it has scrolled, requires a 2024 // wait-return prompt later. Needed when scrolling, resetting 2025 // need_wait_return after some prompt, and then outputting something 2026 // without scrolling 2027 // Not needed when only using CR to move the cursor. 2028 if (msg_scrolled != 0 && !msg_scrolled_ign && STRCMP(str, "\r") != 0) 2029 need_wait_return = TRUE; 2030 msg_didany = TRUE; // remember that something was outputted 2031 2032 /* 2033 * If there is no valid screen, use fprintf so we can see error messages. 2034 * If termcap is not active, we may be writing in an alternate console 2035 * window, cursor positioning may not work correctly (window size may be 2036 * different, e.g. for Win32 console) or we just don't know where the 2037 * cursor is. 2038 */ 2039 if (msg_use_printf()) 2040 msg_puts_printf((char_u *)str, maxlen); 2041 else 2042 msg_puts_display((char_u *)str, maxlen, attr, FALSE); 2043 } 2044 2045 /* 2046 * The display part of msg_puts_attr_len(). 2047 * May be called recursively to display scroll-back text. 2048 */ 2049 static void 2050 msg_puts_display( 2051 char_u *str, 2052 int maxlen, 2053 int attr, 2054 int recurse) 2055 { 2056 char_u *s = str; 2057 char_u *t_s = str; /* string from "t_s" to "s" is still todo */ 2058 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */ 2059 int l; 2060 int cw; 2061 char_u *sb_str = str; 2062 int sb_col = msg_col; 2063 int wrap; 2064 int did_last_char; 2065 2066 did_wait_return = FALSE; 2067 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) 2068 { 2069 /* 2070 * We are at the end of the screen line when: 2071 * - When outputting a newline. 2072 * - When outputting a character in the last column. 2073 */ 2074 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || ( 2075 #ifdef FEAT_RIGHTLEFT 2076 cmdmsg_rl 2077 ? ( 2078 msg_col <= 1 2079 || (*s == TAB && msg_col <= 7) 2080 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)) 2081 : 2082 #endif 2083 ((*s != '\r' && msg_col + t_col >= Columns - 1) 2084 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7)) 2085 || (has_mbyte && (*mb_ptr2cells)(s) > 1 2086 && msg_col + t_col >= Columns - 2))))) 2087 { 2088 /* 2089 * The screen is scrolled up when at the last row (some terminals 2090 * scroll automatically, some don't. To avoid problems we scroll 2091 * ourselves). 2092 */ 2093 if (t_col > 0) 2094 /* output postponed text */ 2095 t_puts(&t_col, t_s, s, attr); 2096 2097 /* When no more prompt and no more room, truncate here */ 2098 if (msg_no_more && lines_left == 0) 2099 break; 2100 2101 /* Scroll the screen up one line. */ 2102 msg_scroll_up(); 2103 2104 msg_row = Rows - 2; 2105 if (msg_col >= Columns) /* can happen after screen resize */ 2106 msg_col = Columns - 1; 2107 2108 /* Display char in last column before showing more-prompt. */ 2109 if (*s >= ' ' 2110 #ifdef FEAT_RIGHTLEFT 2111 && !cmdmsg_rl 2112 #endif 2113 ) 2114 { 2115 if (has_mbyte) 2116 { 2117 if (enc_utf8 && maxlen >= 0) 2118 /* avoid including composing chars after the end */ 2119 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); 2120 else 2121 l = (*mb_ptr2len)(s); 2122 s = screen_puts_mbyte(s, l, attr); 2123 } 2124 else 2125 msg_screen_putchar(*s++, attr); 2126 did_last_char = TRUE; 2127 } 2128 else 2129 did_last_char = FALSE; 2130 2131 if (p_more) 2132 /* store text for scrolling back */ 2133 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); 2134 2135 inc_msg_scrolled(); 2136 need_wait_return = TRUE; /* may need wait_return in main() */ 2137 redraw_cmdline = TRUE; 2138 if (cmdline_row > 0 && !exmode_active) 2139 --cmdline_row; 2140 2141 /* 2142 * If screen is completely filled and 'more' is set then wait 2143 * for a character. 2144 */ 2145 if (lines_left > 0) 2146 --lines_left; 2147 if (p_more && lines_left == 0 && State != HITRETURN 2148 && !msg_no_more && !exmode_active) 2149 { 2150 #ifdef FEAT_CON_DIALOG 2151 if (do_more_prompt(NUL)) 2152 s = confirm_msg_tail; 2153 #else 2154 (void)do_more_prompt(NUL); 2155 #endif 2156 if (quit_more) 2157 return; 2158 } 2159 2160 /* When we displayed a char in last column need to check if there 2161 * is still more. */ 2162 if (did_last_char) 2163 continue; 2164 } 2165 2166 wrap = *s == '\n' 2167 || msg_col + t_col >= Columns 2168 || (has_mbyte && (*mb_ptr2cells)(s) > 1 2169 && msg_col + t_col >= Columns - 1); 2170 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b' 2171 || *s == '\t' || *s == BELL)) 2172 /* output any postponed text */ 2173 t_puts(&t_col, t_s, s, attr); 2174 2175 if (wrap && p_more && !recurse) 2176 /* store text for scrolling back */ 2177 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); 2178 2179 if (*s == '\n') /* go to next line */ 2180 { 2181 msg_didout = FALSE; /* remember that line is empty */ 2182 #ifdef FEAT_RIGHTLEFT 2183 if (cmdmsg_rl) 2184 msg_col = Columns - 1; 2185 else 2186 #endif 2187 msg_col = 0; 2188 if (++msg_row >= Rows) /* safety check */ 2189 msg_row = Rows - 1; 2190 } 2191 else if (*s == '\r') /* go to column 0 */ 2192 { 2193 msg_col = 0; 2194 } 2195 else if (*s == '\b') /* go to previous char */ 2196 { 2197 if (msg_col) 2198 --msg_col; 2199 } 2200 else if (*s == TAB) /* translate Tab into spaces */ 2201 { 2202 do 2203 msg_screen_putchar(' ', attr); 2204 while (msg_col & 7); 2205 } 2206 else if (*s == BELL) /* beep (from ":sh") */ 2207 vim_beep(BO_SH); 2208 else 2209 { 2210 if (has_mbyte) 2211 { 2212 cw = (*mb_ptr2cells)(s); 2213 if (enc_utf8 && maxlen >= 0) 2214 /* avoid including composing chars after the end */ 2215 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); 2216 else 2217 l = (*mb_ptr2len)(s); 2218 } 2219 else 2220 { 2221 cw = 1; 2222 l = 1; 2223 } 2224 2225 /* When drawing from right to left or when a double-wide character 2226 * doesn't fit, draw a single character here. Otherwise collect 2227 * characters and draw them all at once later. */ 2228 if ( 2229 # ifdef FEAT_RIGHTLEFT 2230 cmdmsg_rl || 2231 # endif 2232 (cw > 1 && msg_col + t_col >= Columns - 1)) 2233 { 2234 if (l > 1) 2235 s = screen_puts_mbyte(s, l, attr) - 1; 2236 else 2237 msg_screen_putchar(*s, attr); 2238 } 2239 else 2240 { 2241 /* postpone this character until later */ 2242 if (t_col == 0) 2243 t_s = s; 2244 t_col += cw; 2245 s += l - 1; 2246 } 2247 } 2248 ++s; 2249 } 2250 2251 /* output any postponed text */ 2252 if (t_col > 0) 2253 t_puts(&t_col, t_s, s, attr); 2254 if (p_more && !recurse) 2255 store_sb_text(&sb_str, s, attr, &sb_col, FALSE); 2256 2257 msg_check(); 2258 } 2259 2260 /* 2261 * Return TRUE when ":filter pattern" was used and "msg" does not match 2262 * "pattern". 2263 */ 2264 int 2265 message_filtered(char_u *msg) 2266 { 2267 int match; 2268 2269 if (cmdmod.filter_regmatch.regprog == NULL) 2270 return FALSE; 2271 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0); 2272 return cmdmod.filter_force ? match : !match; 2273 } 2274 2275 /* 2276 * Scroll the screen up one line for displaying the next message line. 2277 */ 2278 static void 2279 msg_scroll_up(void) 2280 { 2281 #ifdef FEAT_GUI 2282 /* Remove the cursor before scrolling, ScreenLines[] is going 2283 * to become invalid. */ 2284 if (gui.in_use) 2285 gui_undraw_cursor(); 2286 #endif 2287 /* scrolling up always works */ 2288 mch_disable_flush(); 2289 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL); 2290 mch_enable_flush(); 2291 2292 if (!can_clear((char_u *)" ")) 2293 { 2294 /* Scrolling up doesn't result in the right background. Set the 2295 * background here. It's not efficient, but avoids that we have to do 2296 * it all over the code. */ 2297 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 2298 2299 /* Also clear the last char of the last but one line if it was not 2300 * cleared before to avoid a scroll-up. */ 2301 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1) 2302 screen_fill((int)Rows - 2, (int)Rows - 1, 2303 (int)Columns - 1, (int)Columns, ' ', ' ', 0); 2304 } 2305 } 2306 2307 /* 2308 * Increment "msg_scrolled". 2309 */ 2310 static void 2311 inc_msg_scrolled(void) 2312 { 2313 #ifdef FEAT_EVAL 2314 if (*get_vim_var_str(VV_SCROLLSTART) == NUL) 2315 { 2316 char_u *p = sourcing_name; 2317 char_u *tofree = NULL; 2318 int len; 2319 2320 /* v:scrollstart is empty, set it to the script/function name and line 2321 * number */ 2322 if (p == NULL) 2323 p = (char_u *)_("Unknown"); 2324 else 2325 { 2326 len = (int)STRLEN(p) + 40; 2327 tofree = alloc(len); 2328 if (tofree != NULL) 2329 { 2330 vim_snprintf((char *)tofree, len, _("%s line %ld"), 2331 p, (long)sourcing_lnum); 2332 p = tofree; 2333 } 2334 } 2335 set_vim_var_string(VV_SCROLLSTART, p, -1); 2336 vim_free(tofree); 2337 } 2338 #endif 2339 ++msg_scrolled; 2340 if (must_redraw < VALID) 2341 must_redraw = VALID; 2342 } 2343 2344 /* 2345 * To be able to scroll back at the "more" and "hit-enter" prompts we need to 2346 * store the displayed text and remember where screen lines start. 2347 */ 2348 typedef struct msgchunk_S msgchunk_T; 2349 struct msgchunk_S 2350 { 2351 msgchunk_T *sb_next; 2352 msgchunk_T *sb_prev; 2353 char sb_eol; /* TRUE when line ends after this text */ 2354 int sb_msg_col; /* column in which text starts */ 2355 int sb_attr; /* text attributes */ 2356 char_u sb_text[1]; /* text to be displayed, actually longer */ 2357 }; 2358 2359 static msgchunk_T *last_msgchunk = NULL; /* last displayed text */ 2360 2361 static msgchunk_T *msg_sb_start(msgchunk_T *mps); 2362 2363 typedef enum { 2364 SB_CLEAR_NONE = 0, 2365 SB_CLEAR_ALL, 2366 SB_CLEAR_CMDLINE_BUSY, 2367 SB_CLEAR_CMDLINE_DONE 2368 } sb_clear_T; 2369 2370 /* When to clear text on next msg. */ 2371 static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE; 2372 2373 /* 2374 * Store part of a printed message for displaying when scrolling back. 2375 */ 2376 static void 2377 store_sb_text( 2378 char_u **sb_str, /* start of string */ 2379 char_u *s, /* just after string */ 2380 int attr, 2381 int *sb_col, 2382 int finish) /* line ends */ 2383 { 2384 msgchunk_T *mp; 2385 2386 if (do_clear_sb_text == SB_CLEAR_ALL 2387 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE) 2388 { 2389 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL); 2390 do_clear_sb_text = SB_CLEAR_NONE; 2391 } 2392 2393 if (s > *sb_str) 2394 { 2395 mp = alloc(sizeof(msgchunk_T) + (s - *sb_str)); 2396 if (mp != NULL) 2397 { 2398 mp->sb_eol = finish; 2399 mp->sb_msg_col = *sb_col; 2400 mp->sb_attr = attr; 2401 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str); 2402 2403 if (last_msgchunk == NULL) 2404 { 2405 last_msgchunk = mp; 2406 mp->sb_prev = NULL; 2407 } 2408 else 2409 { 2410 mp->sb_prev = last_msgchunk; 2411 last_msgchunk->sb_next = mp; 2412 last_msgchunk = mp; 2413 } 2414 mp->sb_next = NULL; 2415 } 2416 } 2417 else if (finish && last_msgchunk != NULL) 2418 last_msgchunk->sb_eol = TRUE; 2419 2420 *sb_str = s; 2421 *sb_col = 0; 2422 } 2423 2424 /* 2425 * Finished showing messages, clear the scroll-back text on the next message. 2426 */ 2427 void 2428 may_clear_sb_text(void) 2429 { 2430 do_clear_sb_text = SB_CLEAR_ALL; 2431 } 2432 2433 /* 2434 * Starting to edit the command line, do not clear messages now. 2435 */ 2436 void 2437 sb_text_start_cmdline(void) 2438 { 2439 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY; 2440 msg_sb_eol(); 2441 } 2442 2443 /* 2444 * Ending to edit the command line. Clear old lines but the last one later. 2445 */ 2446 void 2447 sb_text_end_cmdline(void) 2448 { 2449 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE; 2450 } 2451 2452 /* 2453 * Clear any text remembered for scrolling back. 2454 * When "all" is FALSE keep the last line. 2455 * Called when redrawing the screen. 2456 */ 2457 void 2458 clear_sb_text(int all) 2459 { 2460 msgchunk_T *mp; 2461 msgchunk_T **lastp; 2462 2463 if (all) 2464 lastp = &last_msgchunk; 2465 else 2466 { 2467 if (last_msgchunk == NULL) 2468 return; 2469 lastp = &last_msgchunk->sb_prev; 2470 } 2471 2472 while (*lastp != NULL) 2473 { 2474 mp = (*lastp)->sb_prev; 2475 vim_free(*lastp); 2476 *lastp = mp; 2477 } 2478 } 2479 2480 /* 2481 * "g<" command. 2482 */ 2483 void 2484 show_sb_text(void) 2485 { 2486 msgchunk_T *mp; 2487 2488 /* Only show something if there is more than one line, otherwise it looks 2489 * weird, typing a command without output results in one line. */ 2490 mp = msg_sb_start(last_msgchunk); 2491 if (mp == NULL || mp->sb_prev == NULL) 2492 vim_beep(BO_MESS); 2493 else 2494 { 2495 do_more_prompt('G'); 2496 wait_return(FALSE); 2497 } 2498 } 2499 2500 /* 2501 * Move to the start of screen line in already displayed text. 2502 */ 2503 static msgchunk_T * 2504 msg_sb_start(msgchunk_T *mps) 2505 { 2506 msgchunk_T *mp = mps; 2507 2508 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol) 2509 mp = mp->sb_prev; 2510 return mp; 2511 } 2512 2513 /* 2514 * Mark the last message chunk as finishing the line. 2515 */ 2516 void 2517 msg_sb_eol(void) 2518 { 2519 if (last_msgchunk != NULL) 2520 last_msgchunk->sb_eol = TRUE; 2521 } 2522 2523 /* 2524 * Display a screen line from previously displayed text at row "row". 2525 * Returns a pointer to the text for the next line (can be NULL). 2526 */ 2527 static msgchunk_T * 2528 disp_sb_line(int row, msgchunk_T *smp) 2529 { 2530 msgchunk_T *mp = smp; 2531 char_u *p; 2532 2533 for (;;) 2534 { 2535 msg_row = row; 2536 msg_col = mp->sb_msg_col; 2537 p = mp->sb_text; 2538 if (*p == '\n') /* don't display the line break */ 2539 ++p; 2540 msg_puts_display(p, -1, mp->sb_attr, TRUE); 2541 if (mp->sb_eol || mp->sb_next == NULL) 2542 break; 2543 mp = mp->sb_next; 2544 } 2545 return mp->sb_next; 2546 } 2547 2548 /* 2549 * Output any postponed text for msg_puts_attr_len(). 2550 */ 2551 static void 2552 t_puts( 2553 int *t_col, 2554 char_u *t_s, 2555 char_u *s, 2556 int attr) 2557 { 2558 /* output postponed text */ 2559 msg_didout = TRUE; /* remember that line is not empty */ 2560 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr); 2561 msg_col += *t_col; 2562 *t_col = 0; 2563 /* If the string starts with a composing character don't increment the 2564 * column position for it. */ 2565 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s))) 2566 --msg_col; 2567 if (msg_col >= Columns) 2568 { 2569 msg_col = 0; 2570 ++msg_row; 2571 } 2572 } 2573 2574 /* 2575 * Returns TRUE when messages should be printed with mch_errmsg(). 2576 * This is used when there is no valid screen, so we can see error messages. 2577 * If termcap is not active, we may be writing in an alternate console 2578 * window, cursor positioning may not work correctly (window size may be 2579 * different, e.g. for Win32 console) or we just don't know where the 2580 * cursor is. 2581 */ 2582 int 2583 msg_use_printf(void) 2584 { 2585 return (!msg_check_screen() 2586 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 2587 # ifdef VIMDLL 2588 || (!gui.in_use && !termcap_active) 2589 # else 2590 || !termcap_active 2591 # endif 2592 #endif 2593 || (swapping_screen() && !termcap_active) 2594 ); 2595 } 2596 2597 /* 2598 * Print a message when there is no valid screen. 2599 */ 2600 static void 2601 msg_puts_printf(char_u *str, int maxlen) 2602 { 2603 char_u *s = str; 2604 char_u *buf = NULL; 2605 char_u *p = s; 2606 2607 #ifdef MSWIN 2608 if (!(silent_mode && p_verbose == 0)) 2609 mch_settmode(TMODE_COOK); /* handle CR and NL correctly */ 2610 #endif 2611 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) 2612 { 2613 if (!(silent_mode && p_verbose == 0)) 2614 { 2615 // NL --> CR NL translation (for Unix, not for "--version") 2616 if (*s == NL) 2617 { 2618 int n = (int)(s - p); 2619 2620 buf = alloc(n + 3); 2621 if (buf != NULL) 2622 { 2623 memcpy(buf, p, n); 2624 if (!info_message) 2625 buf[n++] = CAR; 2626 buf[n++] = NL; 2627 buf[n++] = NUL; 2628 if (info_message) // informative message, not an error 2629 mch_msg((char *)buf); 2630 else 2631 mch_errmsg((char *)buf); 2632 vim_free(buf); 2633 } 2634 p = s + 1; 2635 } 2636 } 2637 2638 // primitive way to compute the current column 2639 #ifdef FEAT_RIGHTLEFT 2640 if (cmdmsg_rl) 2641 { 2642 if (*s == CAR || *s == NL) 2643 msg_col = Columns - 1; 2644 else 2645 --msg_col; 2646 } 2647 else 2648 #endif 2649 { 2650 if (*s == CAR || *s == NL) 2651 msg_col = 0; 2652 else 2653 ++msg_col; 2654 } 2655 ++s; 2656 } 2657 2658 if (*p != NUL && !(silent_mode && p_verbose == 0)) 2659 { 2660 int c = -1; 2661 2662 if (maxlen > 0 && STRLEN(p) > (size_t)maxlen) 2663 { 2664 c = p[maxlen]; 2665 p[maxlen] = 0; 2666 } 2667 if (info_message) 2668 mch_msg((char *)p); 2669 else 2670 mch_errmsg((char *)p); 2671 if (c != -1) 2672 p[maxlen] = c; 2673 } 2674 2675 msg_didout = TRUE; // assume that line is not empty 2676 2677 #ifdef MSWIN 2678 if (!(silent_mode && p_verbose == 0)) 2679 mch_settmode(TMODE_RAW); 2680 #endif 2681 } 2682 2683 /* 2684 * Show the more-prompt and handle the user response. 2685 * This takes care of scrolling back and displaying previously displayed text. 2686 * When at hit-enter prompt "typed_char" is the already typed character, 2687 * otherwise it's NUL. 2688 * Returns TRUE when jumping ahead to "confirm_msg_tail". 2689 */ 2690 static int 2691 do_more_prompt(int typed_char) 2692 { 2693 static int entered = FALSE; 2694 int used_typed_char = typed_char; 2695 int oldState = State; 2696 int c; 2697 #ifdef FEAT_CON_DIALOG 2698 int retval = FALSE; 2699 #endif 2700 int toscroll; 2701 msgchunk_T *mp_last = NULL; 2702 msgchunk_T *mp; 2703 int i; 2704 2705 /* We get called recursively when a timer callback outputs a message. In 2706 * that case don't show another prompt. Also when at the hit-Enter prompt 2707 * and nothing was typed. */ 2708 if (entered || (State == HITRETURN && typed_char == 0)) 2709 return FALSE; 2710 entered = TRUE; 2711 2712 if (typed_char == 'G') 2713 { 2714 /* "g<": Find first line on the last page. */ 2715 mp_last = msg_sb_start(last_msgchunk); 2716 for (i = 0; i < Rows - 2 && mp_last != NULL 2717 && mp_last->sb_prev != NULL; ++i) 2718 mp_last = msg_sb_start(mp_last->sb_prev); 2719 } 2720 2721 State = ASKMORE; 2722 setmouse(); 2723 if (typed_char == NUL) 2724 msg_moremsg(FALSE); 2725 for (;;) 2726 { 2727 /* 2728 * Get a typed character directly from the user. 2729 */ 2730 if (used_typed_char != NUL) 2731 { 2732 c = used_typed_char; /* was typed at hit-enter prompt */ 2733 used_typed_char = NUL; 2734 } 2735 else 2736 c = get_keystroke(); 2737 2738 #if defined(FEAT_MENU) && defined(FEAT_GUI) 2739 if (c == K_MENU) 2740 { 2741 int idx = get_menu_index(current_menu, ASKMORE); 2742 2743 /* Used a menu. If it starts with CTRL-Y, it must 2744 * be a "Copy" for the clipboard. Otherwise 2745 * assume that we end */ 2746 if (idx == MENU_INDEX_INVALID) 2747 continue; 2748 c = *current_menu->strings[idx]; 2749 if (c != NUL && current_menu->strings[idx][1] != NUL) 2750 ins_typebuf(current_menu->strings[idx] + 1, 2751 current_menu->noremap[idx], 0, TRUE, 2752 current_menu->silent[idx]); 2753 } 2754 #endif 2755 2756 toscroll = 0; 2757 switch (c) 2758 { 2759 case BS: /* scroll one line back */ 2760 case K_BS: 2761 case 'k': 2762 case K_UP: 2763 toscroll = -1; 2764 break; 2765 2766 case CAR: /* one extra line */ 2767 case NL: 2768 case 'j': 2769 case K_DOWN: 2770 toscroll = 1; 2771 break; 2772 2773 case 'u': /* Up half a page */ 2774 toscroll = -(Rows / 2); 2775 break; 2776 2777 case 'd': /* Down half a page */ 2778 toscroll = Rows / 2; 2779 break; 2780 2781 case 'b': /* one page back */ 2782 case K_PAGEUP: 2783 toscroll = -(Rows - 1); 2784 break; 2785 2786 case ' ': /* one extra page */ 2787 case 'f': 2788 case K_PAGEDOWN: 2789 case K_LEFTMOUSE: 2790 toscroll = Rows - 1; 2791 break; 2792 2793 case 'g': /* all the way back to the start */ 2794 toscroll = -999999; 2795 break; 2796 2797 case 'G': /* all the way to the end */ 2798 toscroll = 999999; 2799 lines_left = 999999; 2800 break; 2801 2802 case ':': /* start new command line */ 2803 #ifdef FEAT_CON_DIALOG 2804 if (!confirm_msg_used) 2805 #endif 2806 { 2807 /* Since got_int is set all typeahead will be flushed, but we 2808 * want to keep this ':', remember that in a special way. */ 2809 typeahead_noflush(':'); 2810 #ifdef FEAT_TERMINAL 2811 skip_term_loop = TRUE; 2812 #endif 2813 cmdline_row = Rows - 1; /* put ':' on this line */ 2814 skip_redraw = TRUE; /* skip redraw once */ 2815 need_wait_return = FALSE; /* don't wait in main() */ 2816 } 2817 /* FALLTHROUGH */ 2818 case 'q': /* quit */ 2819 case Ctrl_C: 2820 case ESC: 2821 #ifdef FEAT_CON_DIALOG 2822 if (confirm_msg_used) 2823 { 2824 /* Jump to the choices of the dialog. */ 2825 retval = TRUE; 2826 } 2827 else 2828 #endif 2829 { 2830 got_int = TRUE; 2831 quit_more = TRUE; 2832 } 2833 /* When there is some more output (wrapping line) display that 2834 * without another prompt. */ 2835 lines_left = Rows - 1; 2836 break; 2837 2838 #ifdef FEAT_CLIPBOARD 2839 case Ctrl_Y: 2840 /* Strange way to allow copying (yanking) a modeless 2841 * selection at the more prompt. Use CTRL-Y, 2842 * because the same is used in Cmdline-mode and at the 2843 * hit-enter prompt. However, scrolling one line up 2844 * might be expected... */ 2845 if (clip_star.state == SELECT_DONE) 2846 clip_copy_modeless_selection(TRUE); 2847 continue; 2848 #endif 2849 default: /* no valid response */ 2850 msg_moremsg(TRUE); 2851 continue; 2852 } 2853 2854 if (toscroll != 0) 2855 { 2856 if (toscroll < 0) 2857 { 2858 /* go to start of last line */ 2859 if (mp_last == NULL) 2860 mp = msg_sb_start(last_msgchunk); 2861 else if (mp_last->sb_prev != NULL) 2862 mp = msg_sb_start(mp_last->sb_prev); 2863 else 2864 mp = NULL; 2865 2866 /* go to start of line at top of the screen */ 2867 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL; 2868 ++i) 2869 mp = msg_sb_start(mp->sb_prev); 2870 2871 if (mp != NULL && mp->sb_prev != NULL) 2872 { 2873 /* Find line to be displayed at top. */ 2874 for (i = 0; i > toscroll; --i) 2875 { 2876 if (mp == NULL || mp->sb_prev == NULL) 2877 break; 2878 mp = msg_sb_start(mp->sb_prev); 2879 if (mp_last == NULL) 2880 mp_last = msg_sb_start(last_msgchunk); 2881 else 2882 mp_last = msg_sb_start(mp_last->sb_prev); 2883 } 2884 2885 if (toscroll == -1 && screen_ins_lines(0, 0, 1, 2886 (int)Rows, 0, NULL) == OK) 2887 { 2888 /* display line at top */ 2889 (void)disp_sb_line(0, mp); 2890 } 2891 else 2892 { 2893 /* redisplay all lines */ 2894 screenclear(); 2895 for (i = 0; mp != NULL && i < Rows - 1; ++i) 2896 { 2897 mp = disp_sb_line(i, mp); 2898 ++msg_scrolled; 2899 } 2900 } 2901 toscroll = 0; 2902 } 2903 } 2904 else 2905 { 2906 /* First display any text that we scrolled back. */ 2907 while (toscroll > 0 && mp_last != NULL) 2908 { 2909 /* scroll up, display line at bottom */ 2910 msg_scroll_up(); 2911 inc_msg_scrolled(); 2912 screen_fill((int)Rows - 2, (int)Rows - 1, 0, 2913 (int)Columns, ' ', ' ', 0); 2914 mp_last = disp_sb_line((int)Rows - 2, mp_last); 2915 --toscroll; 2916 } 2917 } 2918 2919 if (toscroll <= 0) 2920 { 2921 /* displayed the requested text, more prompt again */ 2922 screen_fill((int)Rows - 1, (int)Rows, 0, 2923 (int)Columns, ' ', ' ', 0); 2924 msg_moremsg(FALSE); 2925 continue; 2926 } 2927 2928 /* display more text, return to caller */ 2929 lines_left = toscroll; 2930 } 2931 2932 break; 2933 } 2934 2935 /* clear the --more-- message */ 2936 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 2937 State = oldState; 2938 setmouse(); 2939 if (quit_more) 2940 { 2941 msg_row = Rows - 1; 2942 msg_col = 0; 2943 } 2944 #ifdef FEAT_RIGHTLEFT 2945 else if (cmdmsg_rl) 2946 msg_col = Columns - 1; 2947 #endif 2948 2949 entered = FALSE; 2950 #ifdef FEAT_CON_DIALOG 2951 return retval; 2952 #else 2953 return FALSE; 2954 #endif 2955 } 2956 2957 #if defined(USE_MCH_ERRMSG) || defined(PROTO) 2958 2959 #ifdef mch_errmsg 2960 # undef mch_errmsg 2961 #endif 2962 #ifdef mch_msg 2963 # undef mch_msg 2964 #endif 2965 2966 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 2967 static void 2968 mch_errmsg_c(char *str) 2969 { 2970 int len = (int)STRLEN(str); 2971 DWORD nwrite = 0; 2972 DWORD mode = 0; 2973 HANDLE h = GetStdHandle(STD_ERROR_HANDLE); 2974 2975 if (GetConsoleMode(h, &mode) && enc_codepage >= 0 2976 && (int)GetConsoleCP() != enc_codepage) 2977 { 2978 WCHAR *w = enc_to_utf16((char_u *)str, &len); 2979 2980 WriteConsoleW(h, w, len, &nwrite, NULL); 2981 vim_free(w); 2982 } 2983 else 2984 { 2985 fprintf(stderr, "%s", str); 2986 } 2987 } 2988 #endif 2989 2990 /* 2991 * Give an error message. To be used when the screen hasn't been initialized 2992 * yet. When stderr can't be used, collect error messages until the GUI has 2993 * started and they can be displayed in a message box. 2994 */ 2995 void 2996 mch_errmsg(char *str) 2997 { 2998 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) 2999 int len; 3000 #endif 3001 3002 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL) 3003 /* On Unix use stderr if it's a tty. 3004 * When not going to start the GUI also use stderr. 3005 * On Mac, when started from Finder, stderr is the console. */ 3006 if ( 3007 # ifdef UNIX 3008 # ifdef MACOS_X 3009 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) 3010 # else 3011 isatty(2) 3012 # endif 3013 # ifdef FEAT_GUI 3014 || 3015 # endif 3016 # endif 3017 # ifdef FEAT_GUI 3018 !(gui.in_use || gui.starting) 3019 # endif 3020 ) 3021 { 3022 fprintf(stderr, "%s", str); 3023 return; 3024 } 3025 #endif 3026 3027 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3028 # ifdef VIMDLL 3029 if (!(gui.in_use || gui.starting)) 3030 # endif 3031 { 3032 mch_errmsg_c(str); 3033 return; 3034 } 3035 #endif 3036 3037 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) 3038 /* avoid a delay for a message that isn't there */ 3039 emsg_on_display = FALSE; 3040 3041 len = (int)STRLEN(str) + 1; 3042 if (error_ga.ga_growsize == 0) 3043 { 3044 error_ga.ga_growsize = 80; 3045 error_ga.ga_itemsize = 1; 3046 } 3047 if (ga_grow(&error_ga, len) == OK) 3048 { 3049 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len, 3050 (char_u *)str, len); 3051 # ifdef UNIX 3052 /* remove CR characters, they are displayed */ 3053 { 3054 char_u *p; 3055 3056 p = (char_u *)error_ga.ga_data + error_ga.ga_len; 3057 for (;;) 3058 { 3059 p = vim_strchr(p, '\r'); 3060 if (p == NULL) 3061 break; 3062 *p = ' '; 3063 } 3064 } 3065 # endif 3066 --len; /* don't count the NUL at the end */ 3067 error_ga.ga_len += len; 3068 } 3069 #endif 3070 } 3071 3072 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3073 static void 3074 mch_msg_c(char *str) 3075 { 3076 int len = (int)STRLEN(str); 3077 DWORD nwrite = 0; 3078 DWORD mode; 3079 HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE); 3080 3081 3082 if (GetConsoleMode(h, &mode) && enc_codepage >= 0 3083 && (int)GetConsoleCP() != enc_codepage) 3084 { 3085 WCHAR *w = enc_to_utf16((char_u *)str, &len); 3086 3087 WriteConsoleW(h, w, len, &nwrite, NULL); 3088 vim_free(w); 3089 } 3090 else 3091 { 3092 printf("%s", str); 3093 } 3094 } 3095 #endif 3096 3097 /* 3098 * Give a message. To be used when the screen hasn't been initialized yet. 3099 * When there is no tty, collect messages until the GUI has started and they 3100 * can be displayed in a message box. 3101 */ 3102 void 3103 mch_msg(char *str) 3104 { 3105 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL) 3106 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and 3107 * uses mch_errmsg() when started from the desktop. 3108 * When not going to start the GUI also use stdout. 3109 * On Mac, when started from Finder, stderr is the console. */ 3110 if ( 3111 # ifdef UNIX 3112 # ifdef MACOS_X 3113 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) 3114 # else 3115 isatty(2) 3116 # endif 3117 # ifdef FEAT_GUI 3118 || 3119 # endif 3120 # endif 3121 # ifdef FEAT_GUI 3122 !(gui.in_use || gui.starting) 3123 # endif 3124 ) 3125 { 3126 printf("%s", str); 3127 return; 3128 } 3129 #endif 3130 3131 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3132 # ifdef VIMDLL 3133 if (!(gui.in_use || gui.starting)) 3134 # endif 3135 { 3136 mch_msg_c(str); 3137 return; 3138 } 3139 #endif 3140 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) 3141 mch_errmsg(str); 3142 #endif 3143 } 3144 #endif /* USE_MCH_ERRMSG */ 3145 3146 /* 3147 * Put a character on the screen at the current message position and advance 3148 * to the next position. Only for printable ASCII! 3149 */ 3150 static void 3151 msg_screen_putchar(int c, int attr) 3152 { 3153 msg_didout = TRUE; /* remember that line is not empty */ 3154 screen_putchar(c, msg_row, msg_col, attr); 3155 #ifdef FEAT_RIGHTLEFT 3156 if (cmdmsg_rl) 3157 { 3158 if (--msg_col == 0) 3159 { 3160 msg_col = Columns; 3161 ++msg_row; 3162 } 3163 } 3164 else 3165 #endif 3166 { 3167 if (++msg_col >= Columns) 3168 { 3169 msg_col = 0; 3170 ++msg_row; 3171 } 3172 } 3173 } 3174 3175 static void 3176 msg_moremsg(int full) 3177 { 3178 int attr; 3179 char_u *s = (char_u *)_("-- More --"); 3180 3181 attr = HL_ATTR(HLF_M); 3182 screen_puts(s, (int)Rows - 1, 0, attr); 3183 if (full) 3184 screen_puts((char_u *) 3185 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "), 3186 (int)Rows - 1, vim_strsize(s), attr); 3187 } 3188 3189 /* 3190 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or 3191 * exmode_active. 3192 */ 3193 void 3194 repeat_message(void) 3195 { 3196 if (State == ASKMORE) 3197 { 3198 msg_moremsg(TRUE); /* display --more-- message again */ 3199 msg_row = Rows - 1; 3200 } 3201 #ifdef FEAT_CON_DIALOG 3202 else if (State == CONFIRM) 3203 { 3204 display_confirm_msg(); /* display ":confirm" message again */ 3205 msg_row = Rows - 1; 3206 } 3207 #endif 3208 else if (State == EXTERNCMD) 3209 { 3210 windgoto(msg_row, msg_col); /* put cursor back */ 3211 } 3212 else if (State == HITRETURN || State == SETWSIZE) 3213 { 3214 if (msg_row == Rows - 1) 3215 { 3216 /* Avoid drawing the "hit-enter" prompt below the previous one, 3217 * overwrite it. Esp. useful when regaining focus and a 3218 * FocusGained autocmd exists but didn't draw anything. */ 3219 msg_didout = FALSE; 3220 msg_col = 0; 3221 msg_clr_eos(); 3222 } 3223 hit_return_msg(); 3224 msg_row = Rows - 1; 3225 } 3226 } 3227 3228 /* 3229 * msg_check_screen - check if the screen is initialized. 3230 * Also check msg_row and msg_col, if they are too big it may cause a crash. 3231 * While starting the GUI the terminal codes will be set for the GUI, but the 3232 * output goes to the terminal. Don't use the terminal codes then. 3233 */ 3234 static int 3235 msg_check_screen(void) 3236 { 3237 if (!full_screen || !screen_valid(FALSE)) 3238 return FALSE; 3239 3240 if (msg_row >= Rows) 3241 msg_row = Rows - 1; 3242 if (msg_col >= Columns) 3243 msg_col = Columns - 1; 3244 return TRUE; 3245 } 3246 3247 /* 3248 * Clear from current message position to end of screen. 3249 * Skip this when ":silent" was used, no need to clear for redirection. 3250 */ 3251 void 3252 msg_clr_eos(void) 3253 { 3254 if (msg_silent == 0) 3255 msg_clr_eos_force(); 3256 } 3257 3258 /* 3259 * Clear from current message position to end of screen. 3260 * Note: msg_col is not updated, so we remember the end of the message 3261 * for msg_check(). 3262 */ 3263 void 3264 msg_clr_eos_force(void) 3265 { 3266 if (msg_use_printf()) 3267 { 3268 if (full_screen) /* only when termcap codes are valid */ 3269 { 3270 if (*T_CD) 3271 out_str(T_CD); /* clear to end of display */ 3272 else if (*T_CE) 3273 out_str(T_CE); /* clear to end of line */ 3274 } 3275 } 3276 else 3277 { 3278 #ifdef FEAT_RIGHTLEFT 3279 if (cmdmsg_rl) 3280 { 3281 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0); 3282 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 3283 } 3284 else 3285 #endif 3286 { 3287 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns, 3288 ' ', ' ', 0); 3289 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 3290 } 3291 } 3292 } 3293 3294 /* 3295 * Clear the command line. 3296 */ 3297 void 3298 msg_clr_cmdline(void) 3299 { 3300 msg_row = cmdline_row; 3301 msg_col = 0; 3302 msg_clr_eos_force(); 3303 } 3304 3305 /* 3306 * end putting a message on the screen 3307 * call wait_return if the message does not fit in the available space 3308 * return TRUE if wait_return not called. 3309 */ 3310 int 3311 msg_end(void) 3312 { 3313 /* 3314 * If the string is larger than the window, 3315 * or the ruler option is set and we run into it, 3316 * we have to redraw the window. 3317 * Do not do this if we are abandoning the file or editing the command line. 3318 */ 3319 if (!exiting && need_wait_return && !(State & CMDLINE)) 3320 { 3321 wait_return(FALSE); 3322 return FALSE; 3323 } 3324 out_flush(); 3325 return TRUE; 3326 } 3327 3328 /* 3329 * If the written message runs into the shown command or ruler, we have to 3330 * wait for hit-return and redraw the window later. 3331 */ 3332 void 3333 msg_check(void) 3334 { 3335 if (msg_row == Rows - 1 && msg_col >= sc_col) 3336 { 3337 need_wait_return = TRUE; 3338 redraw_cmdline = TRUE; 3339 } 3340 } 3341 3342 /* 3343 * May write a string to the redirection file. 3344 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes. 3345 */ 3346 static void 3347 redir_write(char_u *str, int maxlen) 3348 { 3349 char_u *s = str; 3350 static int cur_col = 0; 3351 3352 /* Don't do anything for displaying prompts and the like. */ 3353 if (redir_off) 3354 return; 3355 3356 /* If 'verbosefile' is set prepare for writing in that file. */ 3357 if (*p_vfile != NUL && verbose_fd == NULL) 3358 verbose_open(); 3359 3360 if (redirecting()) 3361 { 3362 /* If the string doesn't start with CR or NL, go to msg_col */ 3363 if (*s != '\n' && *s != '\r') 3364 { 3365 while (cur_col < msg_col) 3366 { 3367 #ifdef FEAT_EVAL 3368 if (redir_execute) 3369 execute_redir_str((char_u *)" ", -1); 3370 else if (redir_reg) 3371 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE); 3372 else if (redir_vname) 3373 var_redir_str((char_u *)" ", -1); 3374 else 3375 #endif 3376 if (redir_fd != NULL) 3377 fputs(" ", redir_fd); 3378 if (verbose_fd != NULL) 3379 fputs(" ", verbose_fd); 3380 ++cur_col; 3381 } 3382 } 3383 3384 #ifdef FEAT_EVAL 3385 if (redir_execute) 3386 execute_redir_str(s, maxlen); 3387 else if (redir_reg) 3388 write_reg_contents(redir_reg, s, maxlen, TRUE); 3389 else if (redir_vname) 3390 var_redir_str(s, maxlen); 3391 #endif 3392 3393 /* Write and adjust the current column. */ 3394 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen)) 3395 { 3396 #ifdef FEAT_EVAL 3397 if (!redir_reg && !redir_vname && !redir_execute) 3398 #endif 3399 if (redir_fd != NULL) 3400 putc(*s, redir_fd); 3401 if (verbose_fd != NULL) 3402 putc(*s, verbose_fd); 3403 if (*s == '\r' || *s == '\n') 3404 cur_col = 0; 3405 else if (*s == '\t') 3406 cur_col += (8 - cur_col % 8); 3407 else 3408 ++cur_col; 3409 ++s; 3410 } 3411 3412 if (msg_silent != 0) /* should update msg_col */ 3413 msg_col = cur_col; 3414 } 3415 } 3416 3417 int 3418 redirecting(void) 3419 { 3420 return redir_fd != NULL || *p_vfile != NUL 3421 #ifdef FEAT_EVAL 3422 || redir_reg || redir_vname || redir_execute 3423 #endif 3424 ; 3425 } 3426 3427 /* 3428 * Before giving verbose message. 3429 * Must always be called paired with verbose_leave()! 3430 */ 3431 void 3432 verbose_enter(void) 3433 { 3434 if (*p_vfile != NUL) 3435 ++msg_silent; 3436 } 3437 3438 /* 3439 * After giving verbose message. 3440 * Must always be called paired with verbose_enter()! 3441 */ 3442 void 3443 verbose_leave(void) 3444 { 3445 if (*p_vfile != NUL) 3446 if (--msg_silent < 0) 3447 msg_silent = 0; 3448 } 3449 3450 /* 3451 * Like verbose_enter() and set msg_scroll when displaying the message. 3452 */ 3453 void 3454 verbose_enter_scroll(void) 3455 { 3456 if (*p_vfile != NUL) 3457 ++msg_silent; 3458 else 3459 /* always scroll up, don't overwrite */ 3460 msg_scroll = TRUE; 3461 } 3462 3463 /* 3464 * Like verbose_leave() and set cmdline_row when displaying the message. 3465 */ 3466 void 3467 verbose_leave_scroll(void) 3468 { 3469 if (*p_vfile != NUL) 3470 { 3471 if (--msg_silent < 0) 3472 msg_silent = 0; 3473 } 3474 else 3475 cmdline_row = msg_row; 3476 } 3477 3478 /* 3479 * Called when 'verbosefile' is set: stop writing to the file. 3480 */ 3481 void 3482 verbose_stop(void) 3483 { 3484 if (verbose_fd != NULL) 3485 { 3486 fclose(verbose_fd); 3487 verbose_fd = NULL; 3488 } 3489 verbose_did_open = FALSE; 3490 } 3491 3492 /* 3493 * Open the file 'verbosefile'. 3494 * Return FAIL or OK. 3495 */ 3496 int 3497 verbose_open(void) 3498 { 3499 if (verbose_fd == NULL && !verbose_did_open) 3500 { 3501 /* Only give the error message once. */ 3502 verbose_did_open = TRUE; 3503 3504 verbose_fd = mch_fopen((char *)p_vfile, "a"); 3505 if (verbose_fd == NULL) 3506 { 3507 semsg(_(e_notopen), p_vfile); 3508 return FAIL; 3509 } 3510 } 3511 return OK; 3512 } 3513 3514 /* 3515 * Give a warning message (for searching). 3516 * Use 'w' highlighting and may repeat the message after redrawing 3517 */ 3518 void 3519 give_warning(char_u *message, int hl) 3520 { 3521 /* Don't do this for ":silent". */ 3522 if (msg_silent != 0) 3523 return; 3524 3525 /* Don't want a hit-enter prompt here. */ 3526 ++no_wait_return; 3527 3528 #ifdef FEAT_EVAL 3529 set_vim_var_string(VV_WARNINGMSG, message, -1); 3530 #endif 3531 VIM_CLEAR(keep_msg); 3532 if (hl) 3533 keep_msg_attr = HL_ATTR(HLF_W); 3534 else 3535 keep_msg_attr = 0; 3536 if (msg_attr((char *)message, keep_msg_attr) && msg_scrolled == 0) 3537 set_keep_msg(message, keep_msg_attr); 3538 msg_didout = FALSE; /* overwrite this message */ 3539 msg_nowait = TRUE; /* don't wait for this message */ 3540 msg_col = 0; 3541 3542 --no_wait_return; 3543 } 3544 3545 #if defined(FEAT_EVAL) || defined(PROTO) 3546 void 3547 give_warning2(char_u *message, char_u *a1, int hl) 3548 { 3549 if (IObuff == NULL) 3550 { 3551 // Very early in initialisation and already something wrong, just give 3552 // the raw message so the user at least gets a hint. 3553 give_warning((char_u *)message, hl); 3554 } 3555 else 3556 { 3557 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1); 3558 give_warning(IObuff, hl); 3559 } 3560 } 3561 #endif 3562 3563 /* 3564 * Advance msg cursor to column "col". 3565 */ 3566 void 3567 msg_advance(int col) 3568 { 3569 if (msg_silent != 0) /* nothing to advance to */ 3570 { 3571 msg_col = col; /* for redirection, may fill it up later */ 3572 return; 3573 } 3574 if (col >= Columns) /* not enough room */ 3575 col = Columns - 1; 3576 #ifdef FEAT_RIGHTLEFT 3577 if (cmdmsg_rl) 3578 while (msg_col > Columns - col) 3579 msg_putchar(' '); 3580 else 3581 #endif 3582 while (msg_col < col) 3583 msg_putchar(' '); 3584 } 3585 3586 #if defined(FEAT_CON_DIALOG) || defined(PROTO) 3587 /* 3588 * Used for "confirm()" function, and the :confirm command prefix. 3589 * Versions which haven't got flexible dialogs yet, and console 3590 * versions, get this generic handler which uses the command line. 3591 * 3592 * type = one of: 3593 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC 3594 * title = title string (can be NULL for default) 3595 * (neither used in console dialogs at the moment) 3596 * 3597 * Format of the "buttons" string: 3598 * "Button1Name\nButton2Name\nButton3Name" 3599 * The first button should normally be the default/accept 3600 * The second button should be the 'Cancel' button 3601 * Other buttons- use your imagination! 3602 * A '&' in a button name becomes a shortcut, so each '&' should be before a 3603 * different letter. 3604 */ 3605 int 3606 do_dialog( 3607 int type UNUSED, 3608 char_u *title UNUSED, 3609 char_u *message, 3610 char_u *buttons, 3611 int dfltbutton, 3612 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL 3613 otherwise */ 3614 int ex_cmd) /* when TRUE pressing : accepts default and starts 3615 Ex command */ 3616 { 3617 int oldState; 3618 int retval = 0; 3619 char_u *hotkeys; 3620 int c; 3621 int i; 3622 3623 #ifndef NO_CONSOLE 3624 /* Don't output anything in silent mode ("ex -s") */ 3625 if (silent_mode) 3626 return dfltbutton; /* return default option */ 3627 #endif 3628 3629 #ifdef FEAT_GUI_DIALOG 3630 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */ 3631 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL) 3632 { 3633 c = gui_mch_dialog(type, title, message, buttons, dfltbutton, 3634 textfield, ex_cmd); 3635 /* avoid a hit-enter prompt without clearing the cmdline */ 3636 need_wait_return = FALSE; 3637 emsg_on_display = FALSE; 3638 cmdline_row = msg_row; 3639 3640 /* Flush output to avoid that further messages and redrawing is done 3641 * in the wrong order. */ 3642 out_flush(); 3643 gui_mch_update(); 3644 3645 return c; 3646 } 3647 #endif 3648 3649 oldState = State; 3650 State = CONFIRM; 3651 setmouse(); 3652 3653 /* 3654 * Since we wait for a keypress, don't make the 3655 * user press RETURN as well afterwards. 3656 */ 3657 ++no_wait_return; 3658 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton); 3659 3660 if (hotkeys != NULL) 3661 { 3662 for (;;) 3663 { 3664 /* Get a typed character directly from the user. */ 3665 c = get_keystroke(); 3666 switch (c) 3667 { 3668 case CAR: /* User accepts default option */ 3669 case NL: 3670 retval = dfltbutton; 3671 break; 3672 case Ctrl_C: /* User aborts/cancels */ 3673 case ESC: 3674 retval = 0; 3675 break; 3676 default: /* Could be a hotkey? */ 3677 if (c < 0) /* special keys are ignored here */ 3678 continue; 3679 if (c == ':' && ex_cmd) 3680 { 3681 retval = dfltbutton; 3682 ins_char_typebuf(':'); 3683 break; 3684 } 3685 3686 /* Make the character lowercase, as chars in "hotkeys" are. */ 3687 c = MB_TOLOWER(c); 3688 retval = 1; 3689 for (i = 0; hotkeys[i]; ++i) 3690 { 3691 if (has_mbyte) 3692 { 3693 if ((*mb_ptr2char)(hotkeys + i) == c) 3694 break; 3695 i += (*mb_ptr2len)(hotkeys + i) - 1; 3696 } 3697 else 3698 if (hotkeys[i] == c) 3699 break; 3700 ++retval; 3701 } 3702 if (hotkeys[i]) 3703 break; 3704 /* No hotkey match, so keep waiting */ 3705 continue; 3706 } 3707 break; 3708 } 3709 3710 vim_free(hotkeys); 3711 } 3712 3713 State = oldState; 3714 setmouse(); 3715 --no_wait_return; 3716 msg_end_prompt(); 3717 3718 return retval; 3719 } 3720 3721 /* 3722 * Copy one character from "*from" to "*to", taking care of multi-byte 3723 * characters. Return the length of the character in bytes. 3724 */ 3725 static int 3726 copy_char( 3727 char_u *from, 3728 char_u *to, 3729 int lowercase) /* make character lower case */ 3730 { 3731 int len; 3732 int c; 3733 3734 if (has_mbyte) 3735 { 3736 if (lowercase) 3737 { 3738 c = MB_TOLOWER((*mb_ptr2char)(from)); 3739 return (*mb_char2bytes)(c, to); 3740 } 3741 else 3742 { 3743 len = (*mb_ptr2len)(from); 3744 mch_memmove(to, from, (size_t)len); 3745 return len; 3746 } 3747 } 3748 else 3749 { 3750 if (lowercase) 3751 *to = (char_u)TOLOWER_LOC(*from); 3752 else 3753 *to = *from; 3754 return 1; 3755 } 3756 } 3757 3758 /* 3759 * Format the dialog string, and display it at the bottom of 3760 * the screen. Return a string of hotkey chars (if defined) for 3761 * each 'button'. If a button has no hotkey defined, the first character of 3762 * the button is used. 3763 * The hotkeys can be multi-byte characters, but without combining chars. 3764 * 3765 * Returns an allocated string with hotkeys, or NULL for error. 3766 */ 3767 static char_u * 3768 msg_show_console_dialog( 3769 char_u *message, 3770 char_u *buttons, 3771 int dfltbutton) 3772 { 3773 int len = 0; 3774 #define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1) 3775 int lenhotkey = HOTK_LEN; /* count first button */ 3776 char_u *hotk = NULL; 3777 char_u *msgp = NULL; 3778 char_u *hotkp = NULL; 3779 char_u *r; 3780 int copy; 3781 #define HAS_HOTKEY_LEN 30 3782 char_u has_hotkey[HAS_HOTKEY_LEN]; 3783 int first_hotkey = FALSE; /* first char of button is hotkey */ 3784 int idx; 3785 3786 has_hotkey[0] = FALSE; 3787 3788 /* 3789 * First loop: compute the size of memory to allocate. 3790 * Second loop: copy to the allocated memory. 3791 */ 3792 for (copy = 0; copy <= 1; ++copy) 3793 { 3794 r = buttons; 3795 idx = 0; 3796 while (*r) 3797 { 3798 if (*r == DLG_BUTTON_SEP) 3799 { 3800 if (copy) 3801 { 3802 *msgp++ = ','; 3803 *msgp++ = ' '; /* '\n' -> ', ' */ 3804 3805 /* advance to next hotkey and set default hotkey */ 3806 if (has_mbyte) 3807 hotkp += STRLEN(hotkp); 3808 else 3809 ++hotkp; 3810 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL; 3811 if (dfltbutton) 3812 --dfltbutton; 3813 3814 /* If no hotkey is specified first char is used. */ 3815 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx]) 3816 first_hotkey = TRUE; 3817 } 3818 else 3819 { 3820 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */ 3821 lenhotkey += HOTK_LEN; /* each button needs a hotkey */ 3822 if (idx < HAS_HOTKEY_LEN - 1) 3823 has_hotkey[++idx] = FALSE; 3824 } 3825 } 3826 else if (*r == DLG_HOTKEY_CHAR || first_hotkey) 3827 { 3828 if (*r == DLG_HOTKEY_CHAR) 3829 ++r; 3830 first_hotkey = FALSE; 3831 if (copy) 3832 { 3833 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */ 3834 *msgp++ = *r; 3835 else 3836 { 3837 /* '&a' -> '[a]' */ 3838 *msgp++ = (dfltbutton == 1) ? '[' : '('; 3839 msgp += copy_char(r, msgp, FALSE); 3840 *msgp++ = (dfltbutton == 1) ? ']' : ')'; 3841 3842 /* redefine hotkey */ 3843 hotkp[copy_char(r, hotkp, TRUE)] = NUL; 3844 } 3845 } 3846 else 3847 { 3848 ++len; /* '&a' -> '[a]' */ 3849 if (idx < HAS_HOTKEY_LEN - 1) 3850 has_hotkey[idx] = TRUE; 3851 } 3852 } 3853 else 3854 { 3855 /* everything else copy literally */ 3856 if (copy) 3857 msgp += copy_char(r, msgp, FALSE); 3858 } 3859 3860 /* advance to the next character */ 3861 MB_PTR_ADV(r); 3862 } 3863 3864 if (copy) 3865 { 3866 *msgp++ = ':'; 3867 *msgp++ = ' '; 3868 *msgp = NUL; 3869 } 3870 else 3871 { 3872 len += (int)(STRLEN(message) 3873 + 2 /* for the NL's */ 3874 + STRLEN(buttons) 3875 + 3); /* for the ": " and NUL */ 3876 lenhotkey++; /* for the NUL */ 3877 3878 /* If no hotkey is specified first char is used. */ 3879 if (!has_hotkey[0]) 3880 { 3881 first_hotkey = TRUE; 3882 len += 2; /* "x" -> "[x]" */ 3883 } 3884 3885 /* 3886 * Now allocate and load the strings 3887 */ 3888 vim_free(confirm_msg); 3889 confirm_msg = alloc(len); 3890 if (confirm_msg == NULL) 3891 return NULL; 3892 *confirm_msg = NUL; 3893 hotk = alloc(lenhotkey); 3894 if (hotk == NULL) 3895 return NULL; 3896 3897 *confirm_msg = '\n'; 3898 STRCPY(confirm_msg + 1, message); 3899 3900 msgp = confirm_msg + 1 + STRLEN(message); 3901 hotkp = hotk; 3902 3903 /* Define first default hotkey. Keep the hotkey string NUL 3904 * terminated to avoid reading past the end. */ 3905 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL; 3906 3907 /* Remember where the choices start, displaying starts here when 3908 * "hotkp" typed at the more prompt. */ 3909 confirm_msg_tail = msgp; 3910 *msgp++ = '\n'; 3911 } 3912 } 3913 3914 display_confirm_msg(); 3915 return hotk; 3916 } 3917 3918 /* 3919 * Display the ":confirm" message. Also called when screen resized. 3920 */ 3921 static void 3922 display_confirm_msg(void) 3923 { 3924 /* avoid that 'q' at the more prompt truncates the message here */ 3925 ++confirm_msg_used; 3926 if (confirm_msg != NULL) 3927 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M)); 3928 --confirm_msg_used; 3929 } 3930 3931 #endif /* FEAT_CON_DIALOG */ 3932 3933 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG) 3934 3935 int 3936 vim_dialog_yesno( 3937 int type, 3938 char_u *title, 3939 char_u *message, 3940 int dflt) 3941 { 3942 if (do_dialog(type, 3943 title == NULL ? (char_u *)_("Question") : title, 3944 message, 3945 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1) 3946 return VIM_YES; 3947 return VIM_NO; 3948 } 3949 3950 int 3951 vim_dialog_yesnocancel( 3952 int type, 3953 char_u *title, 3954 char_u *message, 3955 int dflt) 3956 { 3957 switch (do_dialog(type, 3958 title == NULL ? (char_u *)_("Question") : title, 3959 message, 3960 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE)) 3961 { 3962 case 1: return VIM_YES; 3963 case 2: return VIM_NO; 3964 } 3965 return VIM_CANCEL; 3966 } 3967 3968 int 3969 vim_dialog_yesnoallcancel( 3970 int type, 3971 char_u *title, 3972 char_u *message, 3973 int dflt) 3974 { 3975 switch (do_dialog(type, 3976 title == NULL ? (char_u *)"Question" : title, 3977 message, 3978 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"), 3979 dflt, NULL, FALSE)) 3980 { 3981 case 1: return VIM_YES; 3982 case 2: return VIM_NO; 3983 case 3: return VIM_ALL; 3984 case 4: return VIM_DISCARDALL; 3985 } 3986 return VIM_CANCEL; 3987 } 3988 3989 #endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */ 3990 3991 #if defined(FEAT_EVAL) 3992 static char *e_printf = N_("E766: Insufficient arguments for printf()"); 3993 3994 /* 3995 * Get number argument from "idxp" entry in "tvs". First entry is 1. 3996 */ 3997 static varnumber_T 3998 tv_nr(typval_T *tvs, int *idxp) 3999 { 4000 int idx = *idxp - 1; 4001 varnumber_T n = 0; 4002 int err = FALSE; 4003 4004 if (tvs[idx].v_type == VAR_UNKNOWN) 4005 emsg(_(e_printf)); 4006 else 4007 { 4008 ++*idxp; 4009 n = tv_get_number_chk(&tvs[idx], &err); 4010 if (err) 4011 n = 0; 4012 } 4013 return n; 4014 } 4015 4016 /* 4017 * Get string argument from "idxp" entry in "tvs". First entry is 1. 4018 * If "tofree" is NULL tv_get_string_chk() is used. Some types (e.g. List) 4019 * are not converted to a string. 4020 * If "tofree" is not NULL echo_string() is used. All types are converted to 4021 * a string with the same format as ":echo". The caller must free "*tofree". 4022 * Returns NULL for an error. 4023 */ 4024 static char * 4025 tv_str(typval_T *tvs, int *idxp, char_u **tofree) 4026 { 4027 int idx = *idxp - 1; 4028 char *s = NULL; 4029 static char_u numbuf[NUMBUFLEN]; 4030 4031 if (tvs[idx].v_type == VAR_UNKNOWN) 4032 emsg(_(e_printf)); 4033 else 4034 { 4035 ++*idxp; 4036 if (tofree != NULL) 4037 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID()); 4038 else 4039 s = (char *)tv_get_string_chk(&tvs[idx]); 4040 } 4041 return s; 4042 } 4043 4044 # ifdef FEAT_FLOAT 4045 /* 4046 * Get float argument from "idxp" entry in "tvs". First entry is 1. 4047 */ 4048 static double 4049 tv_float(typval_T *tvs, int *idxp) 4050 { 4051 int idx = *idxp - 1; 4052 double f = 0; 4053 4054 if (tvs[idx].v_type == VAR_UNKNOWN) 4055 emsg(_(e_printf)); 4056 else 4057 { 4058 ++*idxp; 4059 if (tvs[idx].v_type == VAR_FLOAT) 4060 f = tvs[idx].vval.v_float; 4061 else if (tvs[idx].v_type == VAR_NUMBER) 4062 f = (double)tvs[idx].vval.v_number; 4063 else 4064 emsg(_("E807: Expected Float argument for printf()")); 4065 } 4066 return f; 4067 } 4068 # endif 4069 #endif 4070 4071 #ifdef FEAT_FLOAT 4072 /* 4073 * Return the representation of infinity for printf() function: 4074 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF". 4075 */ 4076 static const char * 4077 infinity_str(int positive, 4078 char fmt_spec, 4079 int force_sign, 4080 int space_for_positive) 4081 { 4082 static const char *table[] = 4083 { 4084 "-inf", "inf", "+inf", " inf", 4085 "-INF", "INF", "+INF", " INF" 4086 }; 4087 int idx = positive * (1 + force_sign + force_sign * space_for_positive); 4088 4089 if (ASCII_ISUPPER(fmt_spec)) 4090 idx += 4; 4091 return table[idx]; 4092 } 4093 #endif 4094 4095 /* 4096 * This code was included to provide a portable vsnprintf() and snprintf(). 4097 * Some systems may provide their own, but we always use this one for 4098 * consistency. 4099 * 4100 * This code is based on snprintf.c - a portable implementation of snprintf 4101 * by Mark Martinec <[email protected]>, Version 2.2, 2000-10-06. 4102 * Included with permission. It was heavily modified to fit in Vim. 4103 * The original code, including useful comments, can be found here: 4104 * http://www.ijs.si/software/snprintf/ 4105 * 4106 * This snprintf() only supports the following conversion specifiers: 4107 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below) 4108 * with flags: '-', '+', ' ', '0' and '#'. 4109 * An asterisk is supported for field width as well as precision. 4110 * 4111 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'. 4112 * 4113 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int) 4114 * are supported. 4115 * 4116 * The locale is not used, the string is used as a byte string. This is only 4117 * relevant for double-byte encodings where the second byte may be '%'. 4118 * 4119 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL 4120 * pointer for resulting string argument if "str_m" is zero (as per ISO C99). 4121 * 4122 * The return value is the number of characters which would be generated 4123 * for the given input, excluding the trailing NUL. If this value 4124 * is greater or equal to "str_m", not all characters from the result 4125 * have been stored in str, output bytes beyond the ("str_m"-1) -th character 4126 * are discarded. If "str_m" is greater than zero it is guaranteed 4127 * the resulting string will be NUL-terminated. 4128 */ 4129 4130 /* 4131 * When va_list is not supported we only define vim_snprintf(). 4132 * 4133 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of 4134 * "typval_T". When the latter is not used it must be NULL. 4135 */ 4136 4137 /* When generating prototypes all of this is skipped, cproto doesn't 4138 * understand this. */ 4139 #ifndef PROTO 4140 4141 /* Like vim_vsnprintf() but append to the string. */ 4142 int 4143 vim_snprintf_add(char *str, size_t str_m, const char *fmt, ...) 4144 { 4145 va_list ap; 4146 int str_l; 4147 size_t len = STRLEN(str); 4148 size_t space; 4149 4150 if (str_m <= len) 4151 space = 0; 4152 else 4153 space = str_m - len; 4154 va_start(ap, fmt); 4155 str_l = vim_vsnprintf(str + len, space, fmt, ap); 4156 va_end(ap); 4157 return str_l; 4158 } 4159 4160 int 4161 vim_snprintf(char *str, size_t str_m, const char *fmt, ...) 4162 { 4163 va_list ap; 4164 int str_l; 4165 4166 va_start(ap, fmt); 4167 str_l = vim_vsnprintf(str, str_m, fmt, ap); 4168 va_end(ap); 4169 return str_l; 4170 } 4171 4172 int 4173 vim_vsnprintf( 4174 char *str, 4175 size_t str_m, 4176 const char *fmt, 4177 va_list ap) 4178 { 4179 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL); 4180 } 4181 4182 int 4183 vim_vsnprintf_typval( 4184 char *str, 4185 size_t str_m, 4186 const char *fmt, 4187 va_list ap, 4188 typval_T *tvs) 4189 { 4190 size_t str_l = 0; 4191 const char *p = fmt; 4192 int arg_idx = 1; 4193 4194 if (p == NULL) 4195 p = ""; 4196 while (*p != NUL) 4197 { 4198 if (*p != '%') 4199 { 4200 char *q = strchr(p + 1, '%'); 4201 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p); 4202 4203 /* Copy up to the next '%' or NUL without any changes. */ 4204 if (str_l < str_m) 4205 { 4206 size_t avail = str_m - str_l; 4207 4208 mch_memmove(str + str_l, p, n > avail ? avail : n); 4209 } 4210 p += n; 4211 str_l += n; 4212 } 4213 else 4214 { 4215 size_t min_field_width = 0, precision = 0; 4216 int zero_padding = 0, precision_specified = 0, justify_left = 0; 4217 int alternate_form = 0, force_sign = 0; 4218 4219 /* If both the ' ' and '+' flags appear, the ' ' flag should be 4220 * ignored. */ 4221 int space_for_positive = 1; 4222 4223 /* allowed values: \0, h, l, L */ 4224 char length_modifier = '\0'; 4225 4226 /* temporary buffer for simple numeric->string conversion */ 4227 # if defined(FEAT_FLOAT) 4228 # define TMP_LEN 350 /* On my system 1e308 is the biggest number possible. 4229 * That sounds reasonable to use as the maximum 4230 * printable. */ 4231 # elif defined(FEAT_NUM64) 4232 # define TMP_LEN 66 4233 # else 4234 # define TMP_LEN 34 4235 # endif 4236 char tmp[TMP_LEN]; 4237 4238 /* string address in case of string argument */ 4239 const char *str_arg = NULL; 4240 4241 /* natural field width of arg without padding and sign */ 4242 size_t str_arg_l; 4243 4244 /* unsigned char argument value - only defined for c conversion. 4245 * N.B. standard explicitly states the char argument for the c 4246 * conversion is unsigned */ 4247 unsigned char uchar_arg; 4248 4249 /* number of zeros to be inserted for numeric conversions as 4250 * required by the precision or minimal field width */ 4251 size_t number_of_zeros_to_pad = 0; 4252 4253 /* index into tmp where zero padding is to be inserted */ 4254 size_t zero_padding_insertion_ind = 0; 4255 4256 /* current conversion specifier character */ 4257 char fmt_spec = '\0'; 4258 4259 /* buffer for 's' and 'S' specs */ 4260 char_u *tofree = NULL; 4261 4262 4263 p++; /* skip '%' */ 4264 4265 /* parse flags */ 4266 while (*p == '0' || *p == '-' || *p == '+' || *p == ' ' 4267 || *p == '#' || *p == '\'') 4268 { 4269 switch (*p) 4270 { 4271 case '0': zero_padding = 1; break; 4272 case '-': justify_left = 1; break; 4273 case '+': force_sign = 1; space_for_positive = 0; break; 4274 case ' ': force_sign = 1; 4275 /* If both the ' ' and '+' flags appear, the ' ' 4276 * flag should be ignored */ 4277 break; 4278 case '#': alternate_form = 1; break; 4279 case '\'': break; 4280 } 4281 p++; 4282 } 4283 /* If the '0' and '-' flags both appear, the '0' flag should be 4284 * ignored. */ 4285 4286 /* parse field width */ 4287 if (*p == '*') 4288 { 4289 int j; 4290 4291 p++; 4292 j = 4293 # if defined(FEAT_EVAL) 4294 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4295 # endif 4296 va_arg(ap, int); 4297 if (j >= 0) 4298 min_field_width = j; 4299 else 4300 { 4301 min_field_width = -j; 4302 justify_left = 1; 4303 } 4304 } 4305 else if (VIM_ISDIGIT((int)(*p))) 4306 { 4307 /* size_t could be wider than unsigned int; make sure we treat 4308 * argument like common implementations do */ 4309 unsigned int uj = *p++ - '0'; 4310 4311 while (VIM_ISDIGIT((int)(*p))) 4312 uj = 10 * uj + (unsigned int)(*p++ - '0'); 4313 min_field_width = uj; 4314 } 4315 4316 /* parse precision */ 4317 if (*p == '.') 4318 { 4319 p++; 4320 precision_specified = 1; 4321 if (*p == '*') 4322 { 4323 int j; 4324 4325 j = 4326 # if defined(FEAT_EVAL) 4327 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4328 # endif 4329 va_arg(ap, int); 4330 p++; 4331 if (j >= 0) 4332 precision = j; 4333 else 4334 { 4335 precision_specified = 0; 4336 precision = 0; 4337 } 4338 } 4339 else if (VIM_ISDIGIT((int)(*p))) 4340 { 4341 /* size_t could be wider than unsigned int; make sure we 4342 * treat argument like common implementations do */ 4343 unsigned int uj = *p++ - '0'; 4344 4345 while (VIM_ISDIGIT((int)(*p))) 4346 uj = 10 * uj + (unsigned int)(*p++ - '0'); 4347 precision = uj; 4348 } 4349 } 4350 4351 /* parse 'h', 'l' and 'll' length modifiers */ 4352 if (*p == 'h' || *p == 'l') 4353 { 4354 length_modifier = *p; 4355 p++; 4356 if (length_modifier == 'l' && *p == 'l') 4357 { 4358 /* double l = long long */ 4359 # ifdef FEAT_NUM64 4360 length_modifier = 'L'; 4361 # else 4362 length_modifier = 'l'; /* treat it as a single 'l' */ 4363 # endif 4364 p++; 4365 } 4366 } 4367 fmt_spec = *p; 4368 4369 /* common synonyms: */ 4370 switch (fmt_spec) 4371 { 4372 case 'i': fmt_spec = 'd'; break; 4373 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break; 4374 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break; 4375 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break; 4376 default: break; 4377 } 4378 4379 # if defined(FEAT_EVAL) && defined(FEAT_NUM64) 4380 switch (fmt_spec) 4381 { 4382 case 'd': case 'u': case 'o': case 'x': case 'X': 4383 if (tvs != NULL && length_modifier == '\0') 4384 length_modifier = 'L'; 4385 } 4386 # endif 4387 4388 /* get parameter value, do initial processing */ 4389 switch (fmt_spec) 4390 { 4391 /* '%' and 'c' behave similar to 's' regarding flags and field 4392 * widths */ 4393 case '%': 4394 case 'c': 4395 case 's': 4396 case 'S': 4397 str_arg_l = 1; 4398 switch (fmt_spec) 4399 { 4400 case '%': 4401 str_arg = p; 4402 break; 4403 4404 case 'c': 4405 { 4406 int j; 4407 4408 j = 4409 # if defined(FEAT_EVAL) 4410 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4411 # endif 4412 va_arg(ap, int); 4413 /* standard demands unsigned char */ 4414 uchar_arg = (unsigned char)j; 4415 str_arg = (char *)&uchar_arg; 4416 break; 4417 } 4418 4419 case 's': 4420 case 'S': 4421 str_arg = 4422 # if defined(FEAT_EVAL) 4423 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) : 4424 # endif 4425 va_arg(ap, char *); 4426 if (str_arg == NULL) 4427 { 4428 str_arg = "[NULL]"; 4429 str_arg_l = 6; 4430 } 4431 /* make sure not to address string beyond the specified 4432 * precision !!! */ 4433 else if (!precision_specified) 4434 str_arg_l = strlen(str_arg); 4435 /* truncate string if necessary as requested by precision */ 4436 else if (precision == 0) 4437 str_arg_l = 0; 4438 else 4439 { 4440 /* Don't put the #if inside memchr(), it can be a 4441 * macro. */ 4442 /* memchr on HP does not like n > 2^31 !!! */ 4443 char *q = memchr(str_arg, '\0', 4444 precision <= (size_t)0x7fffffffL ? precision 4445 : (size_t)0x7fffffffL); 4446 str_arg_l = (q == NULL) ? precision 4447 : (size_t)(q - str_arg); 4448 } 4449 if (fmt_spec == 'S') 4450 { 4451 if (min_field_width != 0) 4452 min_field_width += STRLEN(str_arg) 4453 - mb_string2cells((char_u *)str_arg, -1); 4454 if (precision) 4455 { 4456 char_u *p1; 4457 size_t i = 0; 4458 4459 for (p1 = (char_u *)str_arg; *p1; 4460 p1 += mb_ptr2len(p1)) 4461 { 4462 i += (size_t)mb_ptr2cells(p1); 4463 if (i > precision) 4464 break; 4465 } 4466 str_arg_l = precision = p1 - (char_u *)str_arg; 4467 } 4468 } 4469 break; 4470 4471 default: 4472 break; 4473 } 4474 break; 4475 4476 case 'd': case 'u': 4477 case 'b': case 'B': 4478 case 'o': 4479 case 'x': case 'X': 4480 case 'p': 4481 { 4482 /* NOTE: the u, b, o, x, X and p conversion specifiers 4483 * imply the value is unsigned; d implies a signed 4484 * value */ 4485 4486 /* 0 if numeric argument is zero (or if pointer is 4487 * NULL for 'p'), +1 if greater than zero (or nonzero 4488 * for unsigned arguments), -1 if negative (unsigned 4489 * argument is never negative) */ 4490 int arg_sign = 0; 4491 4492 /* only defined for length modifier h, or for no 4493 * length modifiers */ 4494 int int_arg = 0; 4495 unsigned int uint_arg = 0; 4496 4497 /* only defined for length modifier l */ 4498 long int long_arg = 0; 4499 unsigned long int ulong_arg = 0; 4500 4501 # ifdef FEAT_NUM64 4502 /* only defined for length modifier ll */ 4503 varnumber_T llong_arg = 0; 4504 uvarnumber_T ullong_arg = 0; 4505 # endif 4506 4507 /* only defined for b conversion */ 4508 uvarnumber_T bin_arg = 0; 4509 4510 /* pointer argument value -only defined for p 4511 * conversion */ 4512 void *ptr_arg = NULL; 4513 4514 if (fmt_spec == 'p') 4515 { 4516 length_modifier = '\0'; 4517 ptr_arg = 4518 # if defined(FEAT_EVAL) 4519 tvs != NULL ? (void *)tv_str(tvs, &arg_idx, 4520 NULL) : 4521 # endif 4522 va_arg(ap, void *); 4523 if (ptr_arg != NULL) 4524 arg_sign = 1; 4525 } 4526 else if (fmt_spec == 'b' || fmt_spec == 'B') 4527 { 4528 bin_arg = 4529 # if defined(FEAT_EVAL) 4530 tvs != NULL ? 4531 (uvarnumber_T)tv_nr(tvs, &arg_idx) : 4532 # endif 4533 va_arg(ap, uvarnumber_T); 4534 if (bin_arg != 0) 4535 arg_sign = 1; 4536 } 4537 else if (fmt_spec == 'd') 4538 { 4539 /* signed */ 4540 switch (length_modifier) 4541 { 4542 case '\0': 4543 case 'h': 4544 /* char and short arguments are passed as int. */ 4545 int_arg = 4546 # if defined(FEAT_EVAL) 4547 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4548 # endif 4549 va_arg(ap, int); 4550 if (int_arg > 0) 4551 arg_sign = 1; 4552 else if (int_arg < 0) 4553 arg_sign = -1; 4554 break; 4555 case 'l': 4556 long_arg = 4557 # if defined(FEAT_EVAL) 4558 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4559 # endif 4560 va_arg(ap, long int); 4561 if (long_arg > 0) 4562 arg_sign = 1; 4563 else if (long_arg < 0) 4564 arg_sign = -1; 4565 break; 4566 # ifdef FEAT_NUM64 4567 case 'L': 4568 llong_arg = 4569 # if defined(FEAT_EVAL) 4570 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4571 # endif 4572 va_arg(ap, varnumber_T); 4573 if (llong_arg > 0) 4574 arg_sign = 1; 4575 else if (llong_arg < 0) 4576 arg_sign = -1; 4577 break; 4578 # endif 4579 } 4580 } 4581 else 4582 { 4583 /* unsigned */ 4584 switch (length_modifier) 4585 { 4586 case '\0': 4587 case 'h': 4588 uint_arg = 4589 # if defined(FEAT_EVAL) 4590 tvs != NULL ? (unsigned) 4591 tv_nr(tvs, &arg_idx) : 4592 # endif 4593 va_arg(ap, unsigned int); 4594 if (uint_arg != 0) 4595 arg_sign = 1; 4596 break; 4597 case 'l': 4598 ulong_arg = 4599 # if defined(FEAT_EVAL) 4600 tvs != NULL ? (unsigned long) 4601 tv_nr(tvs, &arg_idx) : 4602 # endif 4603 va_arg(ap, unsigned long int); 4604 if (ulong_arg != 0) 4605 arg_sign = 1; 4606 break; 4607 # ifdef FEAT_NUM64 4608 case 'L': 4609 ullong_arg = 4610 # if defined(FEAT_EVAL) 4611 tvs != NULL ? (uvarnumber_T) 4612 tv_nr(tvs, &arg_idx) : 4613 # endif 4614 va_arg(ap, uvarnumber_T); 4615 if (ullong_arg != 0) 4616 arg_sign = 1; 4617 break; 4618 # endif 4619 } 4620 } 4621 4622 str_arg = tmp; 4623 str_arg_l = 0; 4624 4625 /* NOTE: 4626 * For d, i, u, o, x, and X conversions, if precision is 4627 * specified, the '0' flag should be ignored. This is so 4628 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux, 4629 * FreeBSD, NetBSD; but not with Perl. 4630 */ 4631 if (precision_specified) 4632 zero_padding = 0; 4633 if (fmt_spec == 'd') 4634 { 4635 if (force_sign && arg_sign >= 0) 4636 tmp[str_arg_l++] = space_for_positive ? ' ' : '+'; 4637 /* leave negative numbers for sprintf to handle, to 4638 * avoid handling tricky cases like (short int)-32768 */ 4639 } 4640 else if (alternate_form) 4641 { 4642 if (arg_sign != 0 4643 && (fmt_spec == 'b' || fmt_spec == 'B' 4644 || fmt_spec == 'x' || fmt_spec == 'X') ) 4645 { 4646 tmp[str_arg_l++] = '0'; 4647 tmp[str_arg_l++] = fmt_spec; 4648 } 4649 /* alternate form should have no effect for p 4650 * conversion, but ... */ 4651 } 4652 4653 zero_padding_insertion_ind = str_arg_l; 4654 if (!precision_specified) 4655 precision = 1; /* default precision is 1 */ 4656 if (precision == 0 && arg_sign == 0) 4657 { 4658 /* When zero value is formatted with an explicit 4659 * precision 0, the resulting formatted string is 4660 * empty (d, i, u, b, B, o, x, X, p). */ 4661 } 4662 else 4663 { 4664 char f[6]; 4665 int f_l = 0; 4666 4667 /* construct a simple format string for sprintf */ 4668 f[f_l++] = '%'; 4669 if (!length_modifier) 4670 ; 4671 else if (length_modifier == 'L') 4672 { 4673 # ifdef FEAT_NUM64 4674 # ifdef MSWIN 4675 f[f_l++] = 'I'; 4676 f[f_l++] = '6'; 4677 f[f_l++] = '4'; 4678 # else 4679 f[f_l++] = 'l'; 4680 f[f_l++] = 'l'; 4681 # endif 4682 # else 4683 f[f_l++] = 'l'; 4684 # endif 4685 } 4686 else 4687 f[f_l++] = length_modifier; 4688 f[f_l++] = fmt_spec; 4689 f[f_l++] = '\0'; 4690 4691 if (fmt_spec == 'p') 4692 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg); 4693 else if (fmt_spec == 'b' || fmt_spec == 'B') 4694 { 4695 char b[8 * sizeof(uvarnumber_T)]; 4696 size_t b_l = 0; 4697 uvarnumber_T bn = bin_arg; 4698 4699 do 4700 { 4701 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1); 4702 bn >>= 1; 4703 } 4704 while (bn != 0); 4705 4706 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l); 4707 str_arg_l += b_l; 4708 } 4709 else if (fmt_spec == 'd') 4710 { 4711 /* signed */ 4712 switch (length_modifier) 4713 { 4714 case '\0': 4715 case 'h': str_arg_l += sprintf( 4716 tmp + str_arg_l, f, int_arg); 4717 break; 4718 case 'l': str_arg_l += sprintf( 4719 tmp + str_arg_l, f, long_arg); 4720 break; 4721 # ifdef FEAT_NUM64 4722 case 'L': str_arg_l += sprintf( 4723 tmp + str_arg_l, f, llong_arg); 4724 break; 4725 # endif 4726 } 4727 } 4728 else 4729 { 4730 /* unsigned */ 4731 switch (length_modifier) 4732 { 4733 case '\0': 4734 case 'h': str_arg_l += sprintf( 4735 tmp + str_arg_l, f, uint_arg); 4736 break; 4737 case 'l': str_arg_l += sprintf( 4738 tmp + str_arg_l, f, ulong_arg); 4739 break; 4740 # ifdef FEAT_NUM64 4741 case 'L': str_arg_l += sprintf( 4742 tmp + str_arg_l, f, ullong_arg); 4743 break; 4744 # endif 4745 } 4746 } 4747 4748 /* include the optional minus sign and possible 4749 * "0x" in the region before the zero padding 4750 * insertion point */ 4751 if (zero_padding_insertion_ind < str_arg_l 4752 && tmp[zero_padding_insertion_ind] == '-') 4753 zero_padding_insertion_ind++; 4754 if (zero_padding_insertion_ind + 1 < str_arg_l 4755 && tmp[zero_padding_insertion_ind] == '0' 4756 && (tmp[zero_padding_insertion_ind + 1] == 'x' 4757 || tmp[zero_padding_insertion_ind + 1] == 'X')) 4758 zero_padding_insertion_ind += 2; 4759 } 4760 4761 { 4762 size_t num_of_digits = str_arg_l 4763 - zero_padding_insertion_ind; 4764 4765 if (alternate_form && fmt_spec == 'o' 4766 /* unless zero is already the first 4767 * character */ 4768 && !(zero_padding_insertion_ind < str_arg_l 4769 && tmp[zero_padding_insertion_ind] == '0')) 4770 { 4771 /* assure leading zero for alternate-form 4772 * octal numbers */ 4773 if (!precision_specified 4774 || precision < num_of_digits + 1) 4775 { 4776 /* precision is increased to force the 4777 * first character to be zero, except if a 4778 * zero value is formatted with an 4779 * explicit precision of zero */ 4780 precision = num_of_digits + 1; 4781 } 4782 } 4783 /* zero padding to specified precision? */ 4784 if (num_of_digits < precision) 4785 number_of_zeros_to_pad = precision - num_of_digits; 4786 } 4787 /* zero padding to specified minimal field width? */ 4788 if (!justify_left && zero_padding) 4789 { 4790 int n = (int)(min_field_width - (str_arg_l 4791 + number_of_zeros_to_pad)); 4792 if (n > 0) 4793 number_of_zeros_to_pad += n; 4794 } 4795 break; 4796 } 4797 4798 # ifdef FEAT_FLOAT 4799 case 'f': 4800 case 'F': 4801 case 'e': 4802 case 'E': 4803 case 'g': 4804 case 'G': 4805 { 4806 /* Floating point. */ 4807 double f; 4808 double abs_f; 4809 char format[40]; 4810 int l; 4811 int remove_trailing_zeroes = FALSE; 4812 4813 f = 4814 # if defined(FEAT_EVAL) 4815 tvs != NULL ? tv_float(tvs, &arg_idx) : 4816 # endif 4817 va_arg(ap, double); 4818 abs_f = f < 0 ? -f : f; 4819 4820 if (fmt_spec == 'g' || fmt_spec == 'G') 4821 { 4822 /* Would be nice to use %g directly, but it prints 4823 * "1.0" as "1", we don't want that. */ 4824 if ((abs_f >= 0.001 && abs_f < 10000000.0) 4825 || abs_f == 0.0) 4826 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f'; 4827 else 4828 fmt_spec = fmt_spec == 'g' ? 'e' : 'E'; 4829 remove_trailing_zeroes = TRUE; 4830 } 4831 4832 if ((fmt_spec == 'f' || fmt_spec == 'F') && 4833 # ifdef VAX 4834 abs_f > 1.0e38 4835 # else 4836 abs_f > 1.0e307 4837 # endif 4838 ) 4839 { 4840 /* Avoid a buffer overflow */ 4841 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec, 4842 force_sign, space_for_positive)); 4843 str_arg_l = STRLEN(tmp); 4844 zero_padding = 0; 4845 } 4846 else 4847 { 4848 if (isnan(f)) 4849 { 4850 /* Not a number: nan or NAN */ 4851 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN" 4852 : "nan"); 4853 str_arg_l = 3; 4854 zero_padding = 0; 4855 } 4856 else if (isinf(f)) 4857 { 4858 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec, 4859 force_sign, space_for_positive)); 4860 str_arg_l = STRLEN(tmp); 4861 zero_padding = 0; 4862 } 4863 else 4864 { 4865 /* Regular float number */ 4866 format[0] = '%'; 4867 l = 1; 4868 if (force_sign) 4869 format[l++] = space_for_positive ? ' ' : '+'; 4870 if (precision_specified) 4871 { 4872 size_t max_prec = TMP_LEN - 10; 4873 4874 /* Make sure we don't get more digits than we 4875 * have room for. */ 4876 if ((fmt_spec == 'f' || fmt_spec == 'F') 4877 && abs_f > 1.0) 4878 max_prec -= (size_t)log10(abs_f); 4879 if (precision > max_prec) 4880 precision = max_prec; 4881 l += sprintf(format + l, ".%d", (int)precision); 4882 } 4883 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec; 4884 format[l + 1] = NUL; 4885 4886 str_arg_l = sprintf(tmp, format, f); 4887 } 4888 4889 if (remove_trailing_zeroes) 4890 { 4891 int i; 4892 char *tp; 4893 4894 /* Using %g or %G: remove superfluous zeroes. */ 4895 if (fmt_spec == 'f' || fmt_spec == 'F') 4896 tp = tmp + str_arg_l - 1; 4897 else 4898 { 4899 tp = (char *)vim_strchr((char_u *)tmp, 4900 fmt_spec == 'e' ? 'e' : 'E'); 4901 if (tp != NULL) 4902 { 4903 /* Remove superfluous '+' and leading 4904 * zeroes from the exponent. */ 4905 if (tp[1] == '+') 4906 { 4907 /* Change "1.0e+07" to "1.0e07" */ 4908 STRMOVE(tp + 1, tp + 2); 4909 --str_arg_l; 4910 } 4911 i = (tp[1] == '-') ? 2 : 1; 4912 while (tp[i] == '0') 4913 { 4914 /* Change "1.0e07" to "1.0e7" */ 4915 STRMOVE(tp + i, tp + i + 1); 4916 --str_arg_l; 4917 } 4918 --tp; 4919 } 4920 } 4921 4922 if (tp != NULL && !precision_specified) 4923 /* Remove trailing zeroes, but keep the one 4924 * just after a dot. */ 4925 while (tp > tmp + 2 && *tp == '0' 4926 && tp[-1] != '.') 4927 { 4928 STRMOVE(tp, tp + 1); 4929 --tp; 4930 --str_arg_l; 4931 } 4932 } 4933 else 4934 { 4935 char *tp; 4936 4937 /* Be consistent: some printf("%e") use 1.0e+12 4938 * and some 1.0e+012. Remove one zero in the last 4939 * case. */ 4940 tp = (char *)vim_strchr((char_u *)tmp, 4941 fmt_spec == 'e' ? 'e' : 'E'); 4942 if (tp != NULL && (tp[1] == '+' || tp[1] == '-') 4943 && tp[2] == '0' 4944 && vim_isdigit(tp[3]) 4945 && vim_isdigit(tp[4])) 4946 { 4947 STRMOVE(tp + 2, tp + 3); 4948 --str_arg_l; 4949 } 4950 } 4951 } 4952 if (zero_padding && min_field_width > str_arg_l 4953 && (tmp[0] == '-' || force_sign)) 4954 { 4955 /* padding 0's should be inserted after the sign */ 4956 number_of_zeros_to_pad = min_field_width - str_arg_l; 4957 zero_padding_insertion_ind = 1; 4958 } 4959 str_arg = tmp; 4960 break; 4961 } 4962 # endif 4963 4964 default: 4965 /* unrecognized conversion specifier, keep format string 4966 * as-is */ 4967 zero_padding = 0; /* turn zero padding off for non-numeric 4968 conversion */ 4969 justify_left = 1; 4970 min_field_width = 0; /* reset flags */ 4971 4972 /* discard the unrecognized conversion, just keep * 4973 * the unrecognized conversion character */ 4974 str_arg = p; 4975 str_arg_l = 0; 4976 if (*p != NUL) 4977 str_arg_l++; /* include invalid conversion specifier 4978 unchanged if not at end-of-string */ 4979 break; 4980 } 4981 4982 if (*p != NUL) 4983 p++; /* step over the just processed conversion specifier */ 4984 4985 /* insert padding to the left as requested by min_field_width; 4986 * this does not include the zero padding in case of numerical 4987 * conversions*/ 4988 if (!justify_left) 4989 { 4990 /* left padding with blank or zero */ 4991 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad)); 4992 4993 if (pn > 0) 4994 { 4995 if (str_l < str_m) 4996 { 4997 size_t avail = str_m - str_l; 4998 4999 vim_memset(str + str_l, zero_padding ? '0' : ' ', 5000 (size_t)pn > avail ? avail 5001 : (size_t)pn); 5002 } 5003 str_l += pn; 5004 } 5005 } 5006 5007 /* zero padding as requested by the precision or by the minimal 5008 * field width for numeric conversions required? */ 5009 if (number_of_zeros_to_pad == 0) 5010 { 5011 /* will not copy first part of numeric right now, * 5012 * force it to be copied later in its entirety */ 5013 zero_padding_insertion_ind = 0; 5014 } 5015 else 5016 { 5017 /* insert first part of numerics (sign or '0x') before zero 5018 * padding */ 5019 int zn = (int)zero_padding_insertion_ind; 5020 5021 if (zn > 0) 5022 { 5023 if (str_l < str_m) 5024 { 5025 size_t avail = str_m - str_l; 5026 5027 mch_memmove(str + str_l, str_arg, 5028 (size_t)zn > avail ? avail 5029 : (size_t)zn); 5030 } 5031 str_l += zn; 5032 } 5033 5034 /* insert zero padding as requested by the precision or min 5035 * field width */ 5036 zn = (int)number_of_zeros_to_pad; 5037 if (zn > 0) 5038 { 5039 if (str_l < str_m) 5040 { 5041 size_t avail = str_m - str_l; 5042 5043 vim_memset(str + str_l, '0', 5044 (size_t)zn > avail ? avail 5045 : (size_t)zn); 5046 } 5047 str_l += zn; 5048 } 5049 } 5050 5051 /* insert formatted string 5052 * (or as-is conversion specifier for unknown conversions) */ 5053 { 5054 int sn = (int)(str_arg_l - zero_padding_insertion_ind); 5055 5056 if (sn > 0) 5057 { 5058 if (str_l < str_m) 5059 { 5060 size_t avail = str_m - str_l; 5061 5062 mch_memmove(str + str_l, 5063 str_arg + zero_padding_insertion_ind, 5064 (size_t)sn > avail ? avail : (size_t)sn); 5065 } 5066 str_l += sn; 5067 } 5068 } 5069 5070 /* insert right padding */ 5071 if (justify_left) 5072 { 5073 /* right blank padding to the field width */ 5074 int pn = (int)(min_field_width 5075 - (str_arg_l + number_of_zeros_to_pad)); 5076 5077 if (pn > 0) 5078 { 5079 if (str_l < str_m) 5080 { 5081 size_t avail = str_m - str_l; 5082 5083 vim_memset(str + str_l, ' ', 5084 (size_t)pn > avail ? avail 5085 : (size_t)pn); 5086 } 5087 str_l += pn; 5088 } 5089 } 5090 vim_free(tofree); 5091 } 5092 } 5093 5094 if (str_m > 0) 5095 { 5096 /* make sure the string is nul-terminated even at the expense of 5097 * overwriting the last character (shouldn't happen, but just in case) 5098 * */ 5099 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0'; 5100 } 5101 5102 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN) 5103 emsg(_("E767: Too many arguments to printf()")); 5104 5105 /* Return the number of characters formatted (excluding trailing nul 5106 * character), that is, the number of characters that would have been 5107 * written to the buffer if it were large enough. */ 5108 return (int)str_l; 5109 } 5110 5111 #endif /* PROTO */ 5112