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 #ifdef FEAT_MOUSE 1204 || c == K_LEFTDRAG || c == K_LEFTRELEASE 1205 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE 1206 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE 1207 || c == K_MOUSELEFT || c == K_MOUSERIGHT 1208 || c == K_MOUSEDOWN || c == K_MOUSEUP 1209 || c == K_MOUSEMOVE 1210 || (!mouse_has(MOUSE_RETURN) 1211 && mouse_row < msg_row 1212 && (c == K_LEFTMOUSE 1213 || c == K_MIDDLEMOUSE 1214 || c == K_RIGHTMOUSE 1215 || c == K_X1MOUSE 1216 || c == K_X2MOUSE)) 1217 #endif 1218 ); 1219 ui_breakcheck(); 1220 #ifdef FEAT_MOUSE 1221 /* 1222 * Avoid that the mouse-up event causes visual mode to start. 1223 */ 1224 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE 1225 || c == K_X1MOUSE || c == K_X2MOUSE) 1226 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0); 1227 else 1228 #endif 1229 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C) 1230 { 1231 /* Put the character back in the typeahead buffer. Don't use the 1232 * stuff buffer, because lmaps wouldn't work. */ 1233 ins_char_typebuf(c); 1234 do_redraw = TRUE; /* need a redraw even though there is 1235 typeahead */ 1236 } 1237 } 1238 redir_off = FALSE; 1239 1240 /* 1241 * If the user hits ':', '?' or '/' we get a command line from the next 1242 * line. 1243 */ 1244 if (c == ':' || c == '?' || c == '/') 1245 { 1246 if (!exmode_active) 1247 cmdline_row = msg_row; 1248 skip_redraw = TRUE; /* skip redraw once */ 1249 do_redraw = FALSE; 1250 #ifdef FEAT_TERMINAL 1251 skip_term_loop = TRUE; 1252 #endif 1253 } 1254 1255 /* 1256 * If the window size changed set_shellsize() will redraw the screen. 1257 * Otherwise the screen is only redrawn if 'redraw' is set and no ':' 1258 * typed. 1259 */ 1260 tmpState = State; 1261 State = oldState; /* restore State before set_shellsize */ 1262 setmouse(); 1263 msg_check(); 1264 1265 #if defined(UNIX) || defined(VMS) 1266 /* 1267 * When switching screens, we need to output an extra newline on exit. 1268 */ 1269 if (swapping_screen() && !termcap_active) 1270 newline_on_exit = TRUE; 1271 #endif 1272 1273 need_wait_return = FALSE; 1274 did_wait_return = TRUE; 1275 emsg_on_display = FALSE; /* can delete error message now */ 1276 lines_left = -1; /* reset lines_left at next msg_start() */ 1277 reset_last_sourcing(); 1278 if (keep_msg != NULL && vim_strsize(keep_msg) >= 1279 (Rows - cmdline_row - 1) * Columns + sc_col) 1280 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */ 1281 1282 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */ 1283 { 1284 starttermcap(); /* start termcap before redrawing */ 1285 shell_resized(); 1286 } 1287 else if (!skip_redraw 1288 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1))) 1289 { 1290 starttermcap(); /* start termcap before redrawing */ 1291 redraw_later(VALID); 1292 } 1293 } 1294 1295 /* 1296 * Write the hit-return prompt. 1297 */ 1298 static void 1299 hit_return_msg(void) 1300 { 1301 int save_p_more = p_more; 1302 1303 p_more = FALSE; /* don't want see this message when scrolling back */ 1304 if (msg_didout) /* start on a new line */ 1305 msg_putchar('\n'); 1306 if (got_int) 1307 msg_puts(_("Interrupt: ")); 1308 1309 msg_puts_attr(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R)); 1310 if (!msg_use_printf()) 1311 msg_clr_eos(); 1312 p_more = save_p_more; 1313 } 1314 1315 /* 1316 * Set "keep_msg" to "s". Free the old value and check for NULL pointer. 1317 */ 1318 void 1319 set_keep_msg(char_u *s, int attr) 1320 { 1321 vim_free(keep_msg); 1322 if (s != NULL && msg_silent == 0) 1323 keep_msg = vim_strsave(s); 1324 else 1325 keep_msg = NULL; 1326 keep_msg_more = FALSE; 1327 keep_msg_attr = attr; 1328 } 1329 1330 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) 1331 /* 1332 * If there currently is a message being displayed, set "keep_msg" to it, so 1333 * that it will be displayed again after redraw. 1334 */ 1335 void 1336 set_keep_msg_from_hist(void) 1337 { 1338 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0 1339 && (State & NORMAL)) 1340 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr); 1341 } 1342 #endif 1343 1344 /* 1345 * Prepare for outputting characters in the command line. 1346 */ 1347 void 1348 msg_start(void) 1349 { 1350 int did_return = FALSE; 1351 1352 if (!msg_silent) 1353 VIM_CLEAR(keep_msg); 1354 1355 #ifdef FEAT_EVAL 1356 if (need_clr_eos) 1357 { 1358 /* Halfway an ":echo" command and getting an (error) message: clear 1359 * any text from the command. */ 1360 need_clr_eos = FALSE; 1361 msg_clr_eos(); 1362 } 1363 #endif 1364 1365 if (!msg_scroll && full_screen) /* overwrite last message */ 1366 { 1367 msg_row = cmdline_row; 1368 msg_col = 1369 #ifdef FEAT_RIGHTLEFT 1370 cmdmsg_rl ? Columns - 1 : 1371 #endif 1372 0; 1373 } 1374 else if (msg_didout) /* start message on next line */ 1375 { 1376 msg_putchar('\n'); 1377 did_return = TRUE; 1378 if (exmode_active != EXMODE_NORMAL) 1379 cmdline_row = msg_row; 1380 } 1381 if (!msg_didany || lines_left < 0) 1382 msg_starthere(); 1383 if (msg_silent == 0) 1384 { 1385 msg_didout = FALSE; /* no output on current line yet */ 1386 cursor_off(); 1387 } 1388 1389 /* when redirecting, may need to start a new line. */ 1390 if (!did_return) 1391 redir_write((char_u *)"\n", -1); 1392 } 1393 1394 /* 1395 * Note that the current msg position is where messages start. 1396 */ 1397 void 1398 msg_starthere(void) 1399 { 1400 lines_left = cmdline_row; 1401 msg_didany = FALSE; 1402 } 1403 1404 void 1405 msg_putchar(int c) 1406 { 1407 msg_putchar_attr(c, 0); 1408 } 1409 1410 void 1411 msg_putchar_attr(int c, int attr) 1412 { 1413 char_u buf[MB_MAXBYTES + 1]; 1414 1415 if (IS_SPECIAL(c)) 1416 { 1417 buf[0] = K_SPECIAL; 1418 buf[1] = K_SECOND(c); 1419 buf[2] = K_THIRD(c); 1420 buf[3] = NUL; 1421 } 1422 else 1423 buf[(*mb_char2bytes)(c, buf)] = NUL; 1424 msg_puts_attr((char *)buf, attr); 1425 } 1426 1427 void 1428 msg_outnum(long n) 1429 { 1430 char buf[20]; 1431 1432 sprintf(buf, "%ld", n); 1433 msg_puts(buf); 1434 } 1435 1436 void 1437 msg_home_replace(char_u *fname) 1438 { 1439 msg_home_replace_attr(fname, 0); 1440 } 1441 1442 #if defined(FEAT_FIND_ID) || defined(PROTO) 1443 void 1444 msg_home_replace_hl(char_u *fname) 1445 { 1446 msg_home_replace_attr(fname, HL_ATTR(HLF_D)); 1447 } 1448 #endif 1449 1450 static void 1451 msg_home_replace_attr(char_u *fname, int attr) 1452 { 1453 char_u *name; 1454 1455 name = home_replace_save(NULL, fname); 1456 if (name != NULL) 1457 msg_outtrans_attr(name, attr); 1458 vim_free(name); 1459 } 1460 1461 /* 1462 * Output 'len' characters in 'str' (including NULs) with translation 1463 * if 'len' is -1, output upto a NUL character. 1464 * Use attributes 'attr'. 1465 * Return the number of characters it takes on the screen. 1466 */ 1467 int 1468 msg_outtrans(char_u *str) 1469 { 1470 return msg_outtrans_attr(str, 0); 1471 } 1472 1473 int 1474 msg_outtrans_attr(char_u *str, int attr) 1475 { 1476 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr); 1477 } 1478 1479 int 1480 msg_outtrans_len(char_u *str, int len) 1481 { 1482 return msg_outtrans_len_attr(str, len, 0); 1483 } 1484 1485 /* 1486 * Output one character at "p". Return pointer to the next character. 1487 * Handles multi-byte characters. 1488 */ 1489 char_u * 1490 msg_outtrans_one(char_u *p, int attr) 1491 { 1492 int l; 1493 1494 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) 1495 { 1496 msg_outtrans_len_attr(p, l, attr); 1497 return p + l; 1498 } 1499 msg_puts_attr((char *)transchar_byte(*p), attr); 1500 return p + 1; 1501 } 1502 1503 int 1504 msg_outtrans_len_attr(char_u *msgstr, int len, int attr) 1505 { 1506 int retval = 0; 1507 char_u *str = msgstr; 1508 char_u *plain_start = msgstr; 1509 char_u *s; 1510 int mb_l; 1511 int c; 1512 1513 /* if MSG_HIST flag set, add message to history */ 1514 if (attr & MSG_HIST) 1515 { 1516 add_msg_hist(str, len, attr); 1517 attr &= ~MSG_HIST; 1518 } 1519 1520 /* If the string starts with a composing character first draw a space on 1521 * which the composing char can be drawn. */ 1522 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr))) 1523 msg_puts_attr(" ", attr); 1524 1525 /* 1526 * Go over the string. Special characters are translated and printed. 1527 * Normal characters are printed several at a time. 1528 */ 1529 while (--len >= 0) 1530 { 1531 if (enc_utf8) 1532 /* Don't include composing chars after the end. */ 1533 mb_l = utfc_ptr2len_len(str, len + 1); 1534 else if (has_mbyte) 1535 mb_l = (*mb_ptr2len)(str); 1536 else 1537 mb_l = 1; 1538 if (has_mbyte && mb_l > 1) 1539 { 1540 c = (*mb_ptr2char)(str); 1541 if (vim_isprintc(c)) 1542 /* printable multi-byte char: count the cells. */ 1543 retval += (*mb_ptr2cells)(str); 1544 else 1545 { 1546 /* unprintable multi-byte char: print the printable chars so 1547 * far and the translation of the unprintable char. */ 1548 if (str > plain_start) 1549 msg_puts_attr_len((char *)plain_start, 1550 (int)(str - plain_start), attr); 1551 plain_start = str + mb_l; 1552 msg_puts_attr((char *)transchar(c), 1553 attr == 0 ? HL_ATTR(HLF_8) : attr); 1554 retval += char2cells(c); 1555 } 1556 len -= mb_l - 1; 1557 str += mb_l; 1558 } 1559 else 1560 { 1561 s = transchar_byte(*str); 1562 if (s[1] != NUL) 1563 { 1564 /* unprintable char: print the printable chars so far and the 1565 * translation of the unprintable char. */ 1566 if (str > plain_start) 1567 msg_puts_attr_len((char *)plain_start, 1568 (int)(str - plain_start), attr); 1569 plain_start = str + 1; 1570 msg_puts_attr((char *)s, attr == 0 ? HL_ATTR(HLF_8) : attr); 1571 retval += (int)STRLEN(s); 1572 } 1573 else 1574 ++retval; 1575 ++str; 1576 } 1577 } 1578 1579 if (str > plain_start) 1580 /* print the printable chars at the end */ 1581 msg_puts_attr_len((char *)plain_start, (int)(str - plain_start), attr); 1582 1583 return retval; 1584 } 1585 1586 #if defined(FEAT_QUICKFIX) || defined(PROTO) 1587 void 1588 msg_make(char_u *arg) 1589 { 1590 int i; 1591 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB"; 1592 1593 arg = skipwhite(arg); 1594 for (i = 5; *arg && i >= 0; --i) 1595 if (*arg++ != str[i]) 1596 break; 1597 if (i < 0) 1598 { 1599 msg_putchar('\n'); 1600 for (i = 0; rs[i]; ++i) 1601 msg_putchar(rs[i] - 3); 1602 } 1603 } 1604 #endif 1605 1606 /* 1607 * Output the string 'str' upto a NUL character. 1608 * Return the number of characters it takes on the screen. 1609 * 1610 * If K_SPECIAL is encountered, then it is taken in conjunction with the 1611 * following character and shown as <F1>, <S-Up> etc. Any other character 1612 * which is not printable shown in <> form. 1613 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>. 1614 * If a character is displayed in one of these special ways, is also 1615 * highlighted (its highlight name is '8' in the p_hl variable). 1616 * Otherwise characters are not highlighted. 1617 * This function is used to show mappings, where we want to see how to type 1618 * the character/string -- webb 1619 */ 1620 int 1621 msg_outtrans_special( 1622 char_u *strstart, 1623 int from, // TRUE for lhs of a mapping 1624 int maxlen) // screen columns, 0 for unlimeted 1625 { 1626 char_u *str = strstart; 1627 int retval = 0; 1628 char *text; 1629 int attr; 1630 int len; 1631 1632 attr = HL_ATTR(HLF_8); 1633 while (*str != NUL) 1634 { 1635 /* Leading and trailing spaces need to be displayed in <> form. */ 1636 if ((str == strstart || str[1] == NUL) && *str == ' ') 1637 { 1638 text = "<Space>"; 1639 ++str; 1640 } 1641 else 1642 text = (char *)str2special(&str, from); 1643 len = vim_strsize((char_u *)text); 1644 if (maxlen > 0 && retval + len >= maxlen) 1645 break; 1646 /* Highlight special keys */ 1647 msg_puts_attr(text, len > 1 1648 && (*mb_ptr2len)((char_u *)text) <= 1 ? attr : 0); 1649 retval += len; 1650 } 1651 return retval; 1652 } 1653 1654 #if defined(FEAT_EVAL) || defined(PROTO) 1655 /* 1656 * Return the lhs or rhs of a mapping, with the key codes turned into printable 1657 * strings, in an allocated string. 1658 */ 1659 char_u * 1660 str2special_save( 1661 char_u *str, 1662 int is_lhs) /* TRUE for lhs, FALSE for rhs */ 1663 { 1664 garray_T ga; 1665 char_u *p = str; 1666 1667 ga_init2(&ga, 1, 40); 1668 while (*p != NUL) 1669 ga_concat(&ga, str2special(&p, is_lhs)); 1670 ga_append(&ga, NUL); 1671 return (char_u *)ga.ga_data; 1672 } 1673 #endif 1674 1675 /* 1676 * Return the printable string for the key codes at "*sp". 1677 * Used for translating the lhs or rhs of a mapping to printable chars. 1678 * Advances "sp" to the next code. 1679 */ 1680 char_u * 1681 str2special( 1682 char_u **sp, 1683 int from) /* TRUE for lhs of mapping */ 1684 { 1685 int c; 1686 static char_u buf[7]; 1687 char_u *str = *sp; 1688 int modifiers = 0; 1689 int special = FALSE; 1690 1691 if (has_mbyte) 1692 { 1693 char_u *p; 1694 1695 /* Try to un-escape a multi-byte character. Return the un-escaped 1696 * string if it is a multi-byte character. */ 1697 p = mb_unescape(sp); 1698 if (p != NULL) 1699 return p; 1700 } 1701 1702 c = *str; 1703 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) 1704 { 1705 if (str[1] == KS_MODIFIER) 1706 { 1707 modifiers = str[2]; 1708 str += 3; 1709 c = *str; 1710 } 1711 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) 1712 { 1713 c = TO_SPECIAL(str[1], str[2]); 1714 str += 2; 1715 } 1716 if (IS_SPECIAL(c) || modifiers) /* special key */ 1717 special = TRUE; 1718 } 1719 1720 if (has_mbyte && !IS_SPECIAL(c)) 1721 { 1722 int len = (*mb_ptr2len)(str); 1723 1724 /* For multi-byte characters check for an illegal byte. */ 1725 if (has_mbyte && MB_BYTE2LEN(*str) > len) 1726 { 1727 transchar_nonprint(buf, c); 1728 *sp = str + 1; 1729 return buf; 1730 } 1731 /* Since 'special' is TRUE the multi-byte character 'c' will be 1732 * processed by get_special_key_name() */ 1733 c = (*mb_ptr2char)(str); 1734 *sp = str + len; 1735 } 1736 else 1737 *sp = str + 1; 1738 1739 /* Make unprintable characters in <> form, also <M-Space> and <Tab>. 1740 * Use <Space> only for lhs of a mapping. */ 1741 if (special || char2cells(c) > 1 || (from && c == ' ')) 1742 return get_special_key_name(c, modifiers); 1743 buf[0] = c; 1744 buf[1] = NUL; 1745 return buf; 1746 } 1747 1748 /* 1749 * Translate a key sequence into special key names. 1750 */ 1751 void 1752 str2specialbuf(char_u *sp, char_u *buf, int len) 1753 { 1754 char_u *s; 1755 1756 *buf = NUL; 1757 while (*sp) 1758 { 1759 s = str2special(&sp, FALSE); 1760 if ((int)(STRLEN(s) + STRLEN(buf)) < len) 1761 STRCAT(buf, s); 1762 } 1763 } 1764 1765 /* 1766 * print line for :print or :list command 1767 */ 1768 void 1769 msg_prt_line(char_u *s, int list) 1770 { 1771 int c; 1772 int col = 0; 1773 int n_extra = 0; 1774 int c_extra = 0; 1775 int c_final = 0; 1776 char_u *p_extra = NULL; /* init to make SASC shut up */ 1777 int n; 1778 int attr = 0; 1779 char_u *trail = NULL; 1780 int l; 1781 char_u buf[MB_MAXBYTES + 1]; 1782 1783 if (curwin->w_p_list) 1784 list = TRUE; 1785 1786 /* find start of trailing whitespace */ 1787 if (list && lcs_trail) 1788 { 1789 trail = s + STRLEN(s); 1790 while (trail > s && VIM_ISWHITE(trail[-1])) 1791 --trail; 1792 } 1793 1794 /* output a space for an empty line, otherwise the line will be 1795 * overwritten */ 1796 if (*s == NUL && !(list && lcs_eol != NUL)) 1797 msg_putchar(' '); 1798 1799 while (!got_int) 1800 { 1801 if (n_extra > 0) 1802 { 1803 --n_extra; 1804 if (n_extra == 0 && c_final) 1805 c = c_final; 1806 else if (c_extra) 1807 c = c_extra; 1808 else 1809 c = *p_extra++; 1810 } 1811 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1) 1812 { 1813 col += (*mb_ptr2cells)(s); 1814 if (lcs_nbsp != NUL && list 1815 && (mb_ptr2char(s) == 160 1816 || mb_ptr2char(s) == 0x202f)) 1817 { 1818 mb_char2bytes(lcs_nbsp, buf); 1819 buf[(*mb_ptr2len)(buf)] = NUL; 1820 } 1821 else 1822 { 1823 mch_memmove(buf, s, (size_t)l); 1824 buf[l] = NUL; 1825 } 1826 msg_puts((char *)buf); 1827 s += l; 1828 continue; 1829 } 1830 else 1831 { 1832 attr = 0; 1833 c = *s++; 1834 if (c == TAB && (!list || lcs_tab1)) 1835 { 1836 /* tab amount depends on current column */ 1837 #ifdef FEAT_VARTABS 1838 n_extra = tabstop_padding(col, curbuf->b_p_ts, 1839 curbuf->b_p_vts_array) - 1; 1840 #else 1841 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1; 1842 #endif 1843 if (!list) 1844 { 1845 c = ' '; 1846 c_extra = ' '; 1847 c_final = NUL; 1848 } 1849 else 1850 { 1851 c = (n_extra == 0 && lcs_tab3) ? lcs_tab3 : lcs_tab1; 1852 c_extra = lcs_tab2; 1853 c_final = lcs_tab3; 1854 attr = HL_ATTR(HLF_8); 1855 } 1856 } 1857 else if (c == 160 && list && lcs_nbsp != NUL) 1858 { 1859 c = lcs_nbsp; 1860 attr = HL_ATTR(HLF_8); 1861 } 1862 else if (c == NUL && list && lcs_eol != NUL) 1863 { 1864 p_extra = (char_u *)""; 1865 c_extra = NUL; 1866 c_final = NUL; 1867 n_extra = 1; 1868 c = lcs_eol; 1869 attr = HL_ATTR(HLF_AT); 1870 --s; 1871 } 1872 else if (c != NUL && (n = byte2cells(c)) > 1) 1873 { 1874 n_extra = n - 1; 1875 p_extra = transchar_byte(c); 1876 c_extra = NUL; 1877 c_final = NUL; 1878 c = *p_extra++; 1879 /* Use special coloring to be able to distinguish <hex> from 1880 * the same in plain text. */ 1881 attr = HL_ATTR(HLF_8); 1882 } 1883 else if (c == ' ' && trail != NULL && s > trail) 1884 { 1885 c = lcs_trail; 1886 attr = HL_ATTR(HLF_8); 1887 } 1888 else if (c == ' ' && list && lcs_space != NUL) 1889 { 1890 c = lcs_space; 1891 attr = HL_ATTR(HLF_8); 1892 } 1893 } 1894 1895 if (c == NUL) 1896 break; 1897 1898 msg_putchar_attr(c, attr); 1899 col++; 1900 } 1901 msg_clr_eos(); 1902 } 1903 1904 /* 1905 * Use screen_puts() to output one multi-byte character. 1906 * Return the pointer "s" advanced to the next character. 1907 */ 1908 static char_u * 1909 screen_puts_mbyte(char_u *s, int l, int attr) 1910 { 1911 int cw; 1912 1913 msg_didout = TRUE; /* remember that line is not empty */ 1914 cw = (*mb_ptr2cells)(s); 1915 if (cw > 1 && ( 1916 #ifdef FEAT_RIGHTLEFT 1917 cmdmsg_rl ? msg_col <= 1 : 1918 #endif 1919 msg_col == Columns - 1)) 1920 { 1921 /* Doesn't fit, print a highlighted '>' to fill it up. */ 1922 msg_screen_putchar('>', HL_ATTR(HLF_AT)); 1923 return s; 1924 } 1925 1926 screen_puts_len(s, l, msg_row, msg_col, attr); 1927 #ifdef FEAT_RIGHTLEFT 1928 if (cmdmsg_rl) 1929 { 1930 msg_col -= cw; 1931 if (msg_col == 0) 1932 { 1933 msg_col = Columns; 1934 ++msg_row; 1935 } 1936 } 1937 else 1938 #endif 1939 { 1940 msg_col += cw; 1941 if (msg_col >= Columns) 1942 { 1943 msg_col = 0; 1944 ++msg_row; 1945 } 1946 } 1947 return s + l; 1948 } 1949 1950 /* 1951 * Output a string to the screen at position msg_row, msg_col. 1952 * Update msg_row and msg_col for the next message. 1953 */ 1954 void 1955 msg_puts(char *s) 1956 { 1957 msg_puts_attr(s, 0); 1958 } 1959 1960 void 1961 msg_puts_title(char *s) 1962 { 1963 msg_puts_attr(s, HL_ATTR(HLF_T)); 1964 } 1965 1966 /* 1967 * Show a message in such a way that it always fits in the line. Cut out a 1968 * part in the middle and replace it with "..." when necessary. 1969 * Does not handle multi-byte characters! 1970 */ 1971 static void 1972 msg_outtrans_long_len_attr(char_u *longstr, int len, int attr) 1973 { 1974 int slen = len; 1975 int room; 1976 1977 room = Columns - msg_col; 1978 if (len > room && room >= 20) 1979 { 1980 slen = (room - 3) / 2; 1981 msg_outtrans_len_attr(longstr, slen, attr); 1982 msg_puts_attr("...", HL_ATTR(HLF_8)); 1983 } 1984 msg_outtrans_len_attr(longstr + len - slen, slen, attr); 1985 } 1986 1987 void 1988 msg_outtrans_long_attr(char_u *longstr, int attr) 1989 { 1990 msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr); 1991 } 1992 1993 /* 1994 * Basic function for writing a message with highlight attributes. 1995 */ 1996 void 1997 msg_puts_attr(char *s, int attr) 1998 { 1999 msg_puts_attr_len(s, -1, attr); 2000 } 2001 2002 /* 2003 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes). 2004 * When "maxlen" is -1 there is no maximum length. 2005 * When "maxlen" is >= 0 the message is not put in the history. 2006 */ 2007 static void 2008 msg_puts_attr_len(char *str, int maxlen, int attr) 2009 { 2010 /* 2011 * If redirection is on, also write to the redirection file. 2012 */ 2013 redir_write((char_u *)str, maxlen); 2014 2015 /* 2016 * Don't print anything when using ":silent cmd". 2017 */ 2018 if (msg_silent != 0) 2019 return; 2020 2021 /* if MSG_HIST flag set, add message to history */ 2022 if ((attr & MSG_HIST) && maxlen < 0) 2023 { 2024 add_msg_hist((char_u *)str, -1, attr); 2025 attr &= ~MSG_HIST; 2026 } 2027 2028 // When writing something to the screen after it has scrolled, requires a 2029 // wait-return prompt later. Needed when scrolling, resetting 2030 // need_wait_return after some prompt, and then outputting something 2031 // without scrolling 2032 // Not needed when only using CR to move the cursor. 2033 if (msg_scrolled != 0 && !msg_scrolled_ign && STRCMP(str, "\r") != 0) 2034 need_wait_return = TRUE; 2035 msg_didany = TRUE; // remember that something was outputted 2036 2037 /* 2038 * If there is no valid screen, use fprintf so we can see error messages. 2039 * If termcap is not active, we may be writing in an alternate console 2040 * window, cursor positioning may not work correctly (window size may be 2041 * different, e.g. for Win32 console) or we just don't know where the 2042 * cursor is. 2043 */ 2044 if (msg_use_printf()) 2045 msg_puts_printf((char_u *)str, maxlen); 2046 else 2047 msg_puts_display((char_u *)str, maxlen, attr, FALSE); 2048 } 2049 2050 /* 2051 * The display part of msg_puts_attr_len(). 2052 * May be called recursively to display scroll-back text. 2053 */ 2054 static void 2055 msg_puts_display( 2056 char_u *str, 2057 int maxlen, 2058 int attr, 2059 int recurse) 2060 { 2061 char_u *s = str; 2062 char_u *t_s = str; /* string from "t_s" to "s" is still todo */ 2063 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */ 2064 int l; 2065 int cw; 2066 char_u *sb_str = str; 2067 int sb_col = msg_col; 2068 int wrap; 2069 int did_last_char; 2070 2071 did_wait_return = FALSE; 2072 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) 2073 { 2074 /* 2075 * We are at the end of the screen line when: 2076 * - When outputting a newline. 2077 * - When outputting a character in the last column. 2078 */ 2079 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || ( 2080 #ifdef FEAT_RIGHTLEFT 2081 cmdmsg_rl 2082 ? ( 2083 msg_col <= 1 2084 || (*s == TAB && msg_col <= 7) 2085 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)) 2086 : 2087 #endif 2088 (msg_col + t_col >= Columns - 1 2089 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7)) 2090 || (has_mbyte && (*mb_ptr2cells)(s) > 1 2091 && msg_col + t_col >= Columns - 2))))) 2092 { 2093 /* 2094 * The screen is scrolled up when at the last row (some terminals 2095 * scroll automatically, some don't. To avoid problems we scroll 2096 * ourselves). 2097 */ 2098 if (t_col > 0) 2099 /* output postponed text */ 2100 t_puts(&t_col, t_s, s, attr); 2101 2102 /* When no more prompt and no more room, truncate here */ 2103 if (msg_no_more && lines_left == 0) 2104 break; 2105 2106 /* Scroll the screen up one line. */ 2107 msg_scroll_up(); 2108 2109 msg_row = Rows - 2; 2110 if (msg_col >= Columns) /* can happen after screen resize */ 2111 msg_col = Columns - 1; 2112 2113 /* Display char in last column before showing more-prompt. */ 2114 if (*s >= ' ' 2115 #ifdef FEAT_RIGHTLEFT 2116 && !cmdmsg_rl 2117 #endif 2118 ) 2119 { 2120 if (has_mbyte) 2121 { 2122 if (enc_utf8 && maxlen >= 0) 2123 /* avoid including composing chars after the end */ 2124 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); 2125 else 2126 l = (*mb_ptr2len)(s); 2127 s = screen_puts_mbyte(s, l, attr); 2128 } 2129 else 2130 msg_screen_putchar(*s++, attr); 2131 did_last_char = TRUE; 2132 } 2133 else 2134 did_last_char = FALSE; 2135 2136 if (p_more) 2137 /* store text for scrolling back */ 2138 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); 2139 2140 inc_msg_scrolled(); 2141 need_wait_return = TRUE; /* may need wait_return in main() */ 2142 redraw_cmdline = TRUE; 2143 if (cmdline_row > 0 && !exmode_active) 2144 --cmdline_row; 2145 2146 /* 2147 * If screen is completely filled and 'more' is set then wait 2148 * for a character. 2149 */ 2150 if (lines_left > 0) 2151 --lines_left; 2152 if (p_more && lines_left == 0 && State != HITRETURN 2153 && !msg_no_more && !exmode_active) 2154 { 2155 #ifdef FEAT_CON_DIALOG 2156 if (do_more_prompt(NUL)) 2157 s = confirm_msg_tail; 2158 #else 2159 (void)do_more_prompt(NUL); 2160 #endif 2161 if (quit_more) 2162 return; 2163 } 2164 2165 /* When we displayed a char in last column need to check if there 2166 * is still more. */ 2167 if (did_last_char) 2168 continue; 2169 } 2170 2171 wrap = *s == '\n' 2172 || msg_col + t_col >= Columns 2173 || (has_mbyte && (*mb_ptr2cells)(s) > 1 2174 && msg_col + t_col >= Columns - 1); 2175 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b' 2176 || *s == '\t' || *s == BELL)) 2177 /* output any postponed text */ 2178 t_puts(&t_col, t_s, s, attr); 2179 2180 if (wrap && p_more && !recurse) 2181 /* store text for scrolling back */ 2182 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); 2183 2184 if (*s == '\n') /* go to next line */ 2185 { 2186 msg_didout = FALSE; /* remember that line is empty */ 2187 #ifdef FEAT_RIGHTLEFT 2188 if (cmdmsg_rl) 2189 msg_col = Columns - 1; 2190 else 2191 #endif 2192 msg_col = 0; 2193 if (++msg_row >= Rows) /* safety check */ 2194 msg_row = Rows - 1; 2195 } 2196 else if (*s == '\r') /* go to column 0 */ 2197 { 2198 msg_col = 0; 2199 } 2200 else if (*s == '\b') /* go to previous char */ 2201 { 2202 if (msg_col) 2203 --msg_col; 2204 } 2205 else if (*s == TAB) /* translate Tab into spaces */ 2206 { 2207 do 2208 msg_screen_putchar(' ', attr); 2209 while (msg_col & 7); 2210 } 2211 else if (*s == BELL) /* beep (from ":sh") */ 2212 vim_beep(BO_SH); 2213 else 2214 { 2215 if (has_mbyte) 2216 { 2217 cw = (*mb_ptr2cells)(s); 2218 if (enc_utf8 && maxlen >= 0) 2219 /* avoid including composing chars after the end */ 2220 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); 2221 else 2222 l = (*mb_ptr2len)(s); 2223 } 2224 else 2225 { 2226 cw = 1; 2227 l = 1; 2228 } 2229 2230 /* When drawing from right to left or when a double-wide character 2231 * doesn't fit, draw a single character here. Otherwise collect 2232 * characters and draw them all at once later. */ 2233 if ( 2234 # ifdef FEAT_RIGHTLEFT 2235 cmdmsg_rl || 2236 # endif 2237 (cw > 1 && msg_col + t_col >= Columns - 1)) 2238 { 2239 if (l > 1) 2240 s = screen_puts_mbyte(s, l, attr) - 1; 2241 else 2242 msg_screen_putchar(*s, attr); 2243 } 2244 else 2245 { 2246 /* postpone this character until later */ 2247 if (t_col == 0) 2248 t_s = s; 2249 t_col += cw; 2250 s += l - 1; 2251 } 2252 } 2253 ++s; 2254 } 2255 2256 /* output any postponed text */ 2257 if (t_col > 0) 2258 t_puts(&t_col, t_s, s, attr); 2259 if (p_more && !recurse) 2260 store_sb_text(&sb_str, s, attr, &sb_col, FALSE); 2261 2262 msg_check(); 2263 } 2264 2265 /* 2266 * Return TRUE when ":filter pattern" was used and "msg" does not match 2267 * "pattern". 2268 */ 2269 int 2270 message_filtered(char_u *msg) 2271 { 2272 int match; 2273 2274 if (cmdmod.filter_regmatch.regprog == NULL) 2275 return FALSE; 2276 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0); 2277 return cmdmod.filter_force ? match : !match; 2278 } 2279 2280 /* 2281 * Scroll the screen up one line for displaying the next message line. 2282 */ 2283 static void 2284 msg_scroll_up(void) 2285 { 2286 #ifdef FEAT_GUI 2287 /* Remove the cursor before scrolling, ScreenLines[] is going 2288 * to become invalid. */ 2289 if (gui.in_use) 2290 gui_undraw_cursor(); 2291 #endif 2292 /* scrolling up always works */ 2293 mch_disable_flush(); 2294 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL); 2295 mch_enable_flush(); 2296 2297 if (!can_clear((char_u *)" ")) 2298 { 2299 /* Scrolling up doesn't result in the right background. Set the 2300 * background here. It's not efficient, but avoids that we have to do 2301 * it all over the code. */ 2302 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 2303 2304 /* Also clear the last char of the last but one line if it was not 2305 * cleared before to avoid a scroll-up. */ 2306 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1) 2307 screen_fill((int)Rows - 2, (int)Rows - 1, 2308 (int)Columns - 1, (int)Columns, ' ', ' ', 0); 2309 } 2310 } 2311 2312 /* 2313 * Increment "msg_scrolled". 2314 */ 2315 static void 2316 inc_msg_scrolled(void) 2317 { 2318 #ifdef FEAT_EVAL 2319 if (*get_vim_var_str(VV_SCROLLSTART) == NUL) 2320 { 2321 char_u *p = sourcing_name; 2322 char_u *tofree = NULL; 2323 int len; 2324 2325 /* v:scrollstart is empty, set it to the script/function name and line 2326 * number */ 2327 if (p == NULL) 2328 p = (char_u *)_("Unknown"); 2329 else 2330 { 2331 len = (int)STRLEN(p) + 40; 2332 tofree = alloc(len); 2333 if (tofree != NULL) 2334 { 2335 vim_snprintf((char *)tofree, len, _("%s line %ld"), 2336 p, (long)sourcing_lnum); 2337 p = tofree; 2338 } 2339 } 2340 set_vim_var_string(VV_SCROLLSTART, p, -1); 2341 vim_free(tofree); 2342 } 2343 #endif 2344 ++msg_scrolled; 2345 if (must_redraw < VALID) 2346 must_redraw = VALID; 2347 } 2348 2349 /* 2350 * To be able to scroll back at the "more" and "hit-enter" prompts we need to 2351 * store the displayed text and remember where screen lines start. 2352 */ 2353 typedef struct msgchunk_S msgchunk_T; 2354 struct msgchunk_S 2355 { 2356 msgchunk_T *sb_next; 2357 msgchunk_T *sb_prev; 2358 char sb_eol; /* TRUE when line ends after this text */ 2359 int sb_msg_col; /* column in which text starts */ 2360 int sb_attr; /* text attributes */ 2361 char_u sb_text[1]; /* text to be displayed, actually longer */ 2362 }; 2363 2364 static msgchunk_T *last_msgchunk = NULL; /* last displayed text */ 2365 2366 static msgchunk_T *msg_sb_start(msgchunk_T *mps); 2367 2368 typedef enum { 2369 SB_CLEAR_NONE = 0, 2370 SB_CLEAR_ALL, 2371 SB_CLEAR_CMDLINE_BUSY, 2372 SB_CLEAR_CMDLINE_DONE 2373 } sb_clear_T; 2374 2375 /* When to clear text on next msg. */ 2376 static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE; 2377 2378 /* 2379 * Store part of a printed message for displaying when scrolling back. 2380 */ 2381 static void 2382 store_sb_text( 2383 char_u **sb_str, /* start of string */ 2384 char_u *s, /* just after string */ 2385 int attr, 2386 int *sb_col, 2387 int finish) /* line ends */ 2388 { 2389 msgchunk_T *mp; 2390 2391 if (do_clear_sb_text == SB_CLEAR_ALL 2392 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE) 2393 { 2394 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL); 2395 do_clear_sb_text = SB_CLEAR_NONE; 2396 } 2397 2398 if (s > *sb_str) 2399 { 2400 mp = alloc(sizeof(msgchunk_T) + (s - *sb_str)); 2401 if (mp != NULL) 2402 { 2403 mp->sb_eol = finish; 2404 mp->sb_msg_col = *sb_col; 2405 mp->sb_attr = attr; 2406 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str); 2407 2408 if (last_msgchunk == NULL) 2409 { 2410 last_msgchunk = mp; 2411 mp->sb_prev = NULL; 2412 } 2413 else 2414 { 2415 mp->sb_prev = last_msgchunk; 2416 last_msgchunk->sb_next = mp; 2417 last_msgchunk = mp; 2418 } 2419 mp->sb_next = NULL; 2420 } 2421 } 2422 else if (finish && last_msgchunk != NULL) 2423 last_msgchunk->sb_eol = TRUE; 2424 2425 *sb_str = s; 2426 *sb_col = 0; 2427 } 2428 2429 /* 2430 * Finished showing messages, clear the scroll-back text on the next message. 2431 */ 2432 void 2433 may_clear_sb_text(void) 2434 { 2435 do_clear_sb_text = SB_CLEAR_ALL; 2436 } 2437 2438 /* 2439 * Starting to edit the command line, do not clear messages now. 2440 */ 2441 void 2442 sb_text_start_cmdline(void) 2443 { 2444 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY; 2445 msg_sb_eol(); 2446 } 2447 2448 /* 2449 * Ending to edit the command line. Clear old lines but the last one later. 2450 */ 2451 void 2452 sb_text_end_cmdline(void) 2453 { 2454 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE; 2455 } 2456 2457 /* 2458 * Clear any text remembered for scrolling back. 2459 * When "all" is FALSE keep the last line. 2460 * Called when redrawing the screen. 2461 */ 2462 void 2463 clear_sb_text(int all) 2464 { 2465 msgchunk_T *mp; 2466 msgchunk_T **lastp; 2467 2468 if (all) 2469 lastp = &last_msgchunk; 2470 else 2471 { 2472 if (last_msgchunk == NULL) 2473 return; 2474 lastp = &last_msgchunk->sb_prev; 2475 } 2476 2477 while (*lastp != NULL) 2478 { 2479 mp = (*lastp)->sb_prev; 2480 vim_free(*lastp); 2481 *lastp = mp; 2482 } 2483 } 2484 2485 /* 2486 * "g<" command. 2487 */ 2488 void 2489 show_sb_text(void) 2490 { 2491 msgchunk_T *mp; 2492 2493 /* Only show something if there is more than one line, otherwise it looks 2494 * weird, typing a command without output results in one line. */ 2495 mp = msg_sb_start(last_msgchunk); 2496 if (mp == NULL || mp->sb_prev == NULL) 2497 vim_beep(BO_MESS); 2498 else 2499 { 2500 do_more_prompt('G'); 2501 wait_return(FALSE); 2502 } 2503 } 2504 2505 /* 2506 * Move to the start of screen line in already displayed text. 2507 */ 2508 static msgchunk_T * 2509 msg_sb_start(msgchunk_T *mps) 2510 { 2511 msgchunk_T *mp = mps; 2512 2513 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol) 2514 mp = mp->sb_prev; 2515 return mp; 2516 } 2517 2518 /* 2519 * Mark the last message chunk as finishing the line. 2520 */ 2521 void 2522 msg_sb_eol(void) 2523 { 2524 if (last_msgchunk != NULL) 2525 last_msgchunk->sb_eol = TRUE; 2526 } 2527 2528 /* 2529 * Display a screen line from previously displayed text at row "row". 2530 * Returns a pointer to the text for the next line (can be NULL). 2531 */ 2532 static msgchunk_T * 2533 disp_sb_line(int row, msgchunk_T *smp) 2534 { 2535 msgchunk_T *mp = smp; 2536 char_u *p; 2537 2538 for (;;) 2539 { 2540 msg_row = row; 2541 msg_col = mp->sb_msg_col; 2542 p = mp->sb_text; 2543 if (*p == '\n') /* don't display the line break */ 2544 ++p; 2545 msg_puts_display(p, -1, mp->sb_attr, TRUE); 2546 if (mp->sb_eol || mp->sb_next == NULL) 2547 break; 2548 mp = mp->sb_next; 2549 } 2550 return mp->sb_next; 2551 } 2552 2553 /* 2554 * Output any postponed text for msg_puts_attr_len(). 2555 */ 2556 static void 2557 t_puts( 2558 int *t_col, 2559 char_u *t_s, 2560 char_u *s, 2561 int attr) 2562 { 2563 /* output postponed text */ 2564 msg_didout = TRUE; /* remember that line is not empty */ 2565 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr); 2566 msg_col += *t_col; 2567 *t_col = 0; 2568 /* If the string starts with a composing character don't increment the 2569 * column position for it. */ 2570 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s))) 2571 --msg_col; 2572 if (msg_col >= Columns) 2573 { 2574 msg_col = 0; 2575 ++msg_row; 2576 } 2577 } 2578 2579 /* 2580 * Returns TRUE when messages should be printed with mch_errmsg(). 2581 * This is used when there is no valid screen, so we can see error messages. 2582 * If termcap is not active, we may be writing in an alternate console 2583 * window, cursor positioning may not work correctly (window size may be 2584 * different, e.g. for Win32 console) or we just don't know where the 2585 * cursor is. 2586 */ 2587 int 2588 msg_use_printf(void) 2589 { 2590 return (!msg_check_screen() 2591 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 2592 # ifdef VIMDLL 2593 || (!gui.in_use && !termcap_active) 2594 # else 2595 || !termcap_active 2596 # endif 2597 #endif 2598 || (swapping_screen() && !termcap_active) 2599 ); 2600 } 2601 2602 /* 2603 * Print a message when there is no valid screen. 2604 */ 2605 static void 2606 msg_puts_printf(char_u *str, int maxlen) 2607 { 2608 char_u *s = str; 2609 char_u *buf = NULL; 2610 char_u *p = s; 2611 2612 #ifdef MSWIN 2613 if (!(silent_mode && p_verbose == 0)) 2614 mch_settmode(TMODE_COOK); /* handle CR and NL correctly */ 2615 #endif 2616 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) 2617 { 2618 if (!(silent_mode && p_verbose == 0)) 2619 { 2620 // NL --> CR NL translation (for Unix, not for "--version") 2621 if (*s == NL) 2622 { 2623 int n = (int)(s - p); 2624 2625 buf = alloc(n + 3); 2626 if (buf != NULL) 2627 { 2628 memcpy(buf, p, n); 2629 if (!info_message) 2630 buf[n++] = CAR; 2631 buf[n++] = NL; 2632 buf[n++] = NUL; 2633 if (info_message) // informative message, not an error 2634 mch_msg((char *)buf); 2635 else 2636 mch_errmsg((char *)buf); 2637 vim_free(buf); 2638 } 2639 p = s + 1; 2640 } 2641 } 2642 2643 // primitive way to compute the current column 2644 #ifdef FEAT_RIGHTLEFT 2645 if (cmdmsg_rl) 2646 { 2647 if (*s == CAR || *s == NL) 2648 msg_col = Columns - 1; 2649 else 2650 --msg_col; 2651 } 2652 else 2653 #endif 2654 { 2655 if (*s == CAR || *s == NL) 2656 msg_col = 0; 2657 else 2658 ++msg_col; 2659 } 2660 ++s; 2661 } 2662 2663 if (*p != NUL && !(silent_mode && p_verbose == 0)) 2664 { 2665 int c = -1; 2666 2667 if (maxlen > 0 && STRLEN(p) > (size_t)maxlen) 2668 { 2669 c = p[maxlen]; 2670 p[maxlen] = 0; 2671 } 2672 if (info_message) 2673 mch_msg((char *)p); 2674 else 2675 mch_errmsg((char *)p); 2676 if (c != -1) 2677 p[maxlen] = c; 2678 } 2679 2680 msg_didout = TRUE; // assume that line is not empty 2681 2682 #ifdef MSWIN 2683 if (!(silent_mode && p_verbose == 0)) 2684 mch_settmode(TMODE_RAW); 2685 #endif 2686 } 2687 2688 /* 2689 * Show the more-prompt and handle the user response. 2690 * This takes care of scrolling back and displaying previously displayed text. 2691 * When at hit-enter prompt "typed_char" is the already typed character, 2692 * otherwise it's NUL. 2693 * Returns TRUE when jumping ahead to "confirm_msg_tail". 2694 */ 2695 static int 2696 do_more_prompt(int typed_char) 2697 { 2698 static int entered = FALSE; 2699 int used_typed_char = typed_char; 2700 int oldState = State; 2701 int c; 2702 #ifdef FEAT_CON_DIALOG 2703 int retval = FALSE; 2704 #endif 2705 int toscroll; 2706 msgchunk_T *mp_last = NULL; 2707 msgchunk_T *mp; 2708 int i; 2709 2710 /* We get called recursively when a timer callback outputs a message. In 2711 * that case don't show another prompt. Also when at the hit-Enter prompt 2712 * and nothing was typed. */ 2713 if (entered || (State == HITRETURN && typed_char == 0)) 2714 return FALSE; 2715 entered = TRUE; 2716 2717 if (typed_char == 'G') 2718 { 2719 /* "g<": Find first line on the last page. */ 2720 mp_last = msg_sb_start(last_msgchunk); 2721 for (i = 0; i < Rows - 2 && mp_last != NULL 2722 && mp_last->sb_prev != NULL; ++i) 2723 mp_last = msg_sb_start(mp_last->sb_prev); 2724 } 2725 2726 State = ASKMORE; 2727 setmouse(); 2728 if (typed_char == NUL) 2729 msg_moremsg(FALSE); 2730 for (;;) 2731 { 2732 /* 2733 * Get a typed character directly from the user. 2734 */ 2735 if (used_typed_char != NUL) 2736 { 2737 c = used_typed_char; /* was typed at hit-enter prompt */ 2738 used_typed_char = NUL; 2739 } 2740 else 2741 c = get_keystroke(); 2742 2743 #if defined(FEAT_MENU) && defined(FEAT_GUI) 2744 if (c == K_MENU) 2745 { 2746 int idx = get_menu_index(current_menu, ASKMORE); 2747 2748 /* Used a menu. If it starts with CTRL-Y, it must 2749 * be a "Copy" for the clipboard. Otherwise 2750 * assume that we end */ 2751 if (idx == MENU_INDEX_INVALID) 2752 continue; 2753 c = *current_menu->strings[idx]; 2754 if (c != NUL && current_menu->strings[idx][1] != NUL) 2755 ins_typebuf(current_menu->strings[idx] + 1, 2756 current_menu->noremap[idx], 0, TRUE, 2757 current_menu->silent[idx]); 2758 } 2759 #endif 2760 2761 toscroll = 0; 2762 switch (c) 2763 { 2764 case BS: /* scroll one line back */ 2765 case K_BS: 2766 case 'k': 2767 case K_UP: 2768 toscroll = -1; 2769 break; 2770 2771 case CAR: /* one extra line */ 2772 case NL: 2773 case 'j': 2774 case K_DOWN: 2775 toscroll = 1; 2776 break; 2777 2778 case 'u': /* Up half a page */ 2779 toscroll = -(Rows / 2); 2780 break; 2781 2782 case 'd': /* Down half a page */ 2783 toscroll = Rows / 2; 2784 break; 2785 2786 case 'b': /* one page back */ 2787 case K_PAGEUP: 2788 toscroll = -(Rows - 1); 2789 break; 2790 2791 case ' ': /* one extra page */ 2792 case 'f': 2793 case K_PAGEDOWN: 2794 case K_LEFTMOUSE: 2795 toscroll = Rows - 1; 2796 break; 2797 2798 case 'g': /* all the way back to the start */ 2799 toscroll = -999999; 2800 break; 2801 2802 case 'G': /* all the way to the end */ 2803 toscroll = 999999; 2804 lines_left = 999999; 2805 break; 2806 2807 case ':': /* start new command line */ 2808 #ifdef FEAT_CON_DIALOG 2809 if (!confirm_msg_used) 2810 #endif 2811 { 2812 /* Since got_int is set all typeahead will be flushed, but we 2813 * want to keep this ':', remember that in a special way. */ 2814 typeahead_noflush(':'); 2815 #ifdef FEAT_TERMINAL 2816 skip_term_loop = TRUE; 2817 #endif 2818 cmdline_row = Rows - 1; /* put ':' on this line */ 2819 skip_redraw = TRUE; /* skip redraw once */ 2820 need_wait_return = FALSE; /* don't wait in main() */ 2821 } 2822 /* FALLTHROUGH */ 2823 case 'q': /* quit */ 2824 case Ctrl_C: 2825 case ESC: 2826 #ifdef FEAT_CON_DIALOG 2827 if (confirm_msg_used) 2828 { 2829 /* Jump to the choices of the dialog. */ 2830 retval = TRUE; 2831 } 2832 else 2833 #endif 2834 { 2835 got_int = TRUE; 2836 quit_more = TRUE; 2837 } 2838 /* When there is some more output (wrapping line) display that 2839 * without another prompt. */ 2840 lines_left = Rows - 1; 2841 break; 2842 2843 #ifdef FEAT_CLIPBOARD 2844 case Ctrl_Y: 2845 /* Strange way to allow copying (yanking) a modeless 2846 * selection at the more prompt. Use CTRL-Y, 2847 * because the same is used in Cmdline-mode and at the 2848 * hit-enter prompt. However, scrolling one line up 2849 * might be expected... */ 2850 if (clip_star.state == SELECT_DONE) 2851 clip_copy_modeless_selection(TRUE); 2852 continue; 2853 #endif 2854 default: /* no valid response */ 2855 msg_moremsg(TRUE); 2856 continue; 2857 } 2858 2859 if (toscroll != 0) 2860 { 2861 if (toscroll < 0) 2862 { 2863 /* go to start of last line */ 2864 if (mp_last == NULL) 2865 mp = msg_sb_start(last_msgchunk); 2866 else if (mp_last->sb_prev != NULL) 2867 mp = msg_sb_start(mp_last->sb_prev); 2868 else 2869 mp = NULL; 2870 2871 /* go to start of line at top of the screen */ 2872 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL; 2873 ++i) 2874 mp = msg_sb_start(mp->sb_prev); 2875 2876 if (mp != NULL && mp->sb_prev != NULL) 2877 { 2878 /* Find line to be displayed at top. */ 2879 for (i = 0; i > toscroll; --i) 2880 { 2881 if (mp == NULL || mp->sb_prev == NULL) 2882 break; 2883 mp = msg_sb_start(mp->sb_prev); 2884 if (mp_last == NULL) 2885 mp_last = msg_sb_start(last_msgchunk); 2886 else 2887 mp_last = msg_sb_start(mp_last->sb_prev); 2888 } 2889 2890 if (toscroll == -1 && screen_ins_lines(0, 0, 1, 2891 (int)Rows, 0, NULL) == OK) 2892 { 2893 /* display line at top */ 2894 (void)disp_sb_line(0, mp); 2895 } 2896 else 2897 { 2898 /* redisplay all lines */ 2899 screenclear(); 2900 for (i = 0; mp != NULL && i < Rows - 1; ++i) 2901 { 2902 mp = disp_sb_line(i, mp); 2903 ++msg_scrolled; 2904 } 2905 } 2906 toscroll = 0; 2907 } 2908 } 2909 else 2910 { 2911 /* First display any text that we scrolled back. */ 2912 while (toscroll > 0 && mp_last != NULL) 2913 { 2914 /* scroll up, display line at bottom */ 2915 msg_scroll_up(); 2916 inc_msg_scrolled(); 2917 screen_fill((int)Rows - 2, (int)Rows - 1, 0, 2918 (int)Columns, ' ', ' ', 0); 2919 mp_last = disp_sb_line((int)Rows - 2, mp_last); 2920 --toscroll; 2921 } 2922 } 2923 2924 if (toscroll <= 0) 2925 { 2926 /* displayed the requested text, more prompt again */ 2927 screen_fill((int)Rows - 1, (int)Rows, 0, 2928 (int)Columns, ' ', ' ', 0); 2929 msg_moremsg(FALSE); 2930 continue; 2931 } 2932 2933 /* display more text, return to caller */ 2934 lines_left = toscroll; 2935 } 2936 2937 break; 2938 } 2939 2940 /* clear the --more-- message */ 2941 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 2942 State = oldState; 2943 setmouse(); 2944 if (quit_more) 2945 { 2946 msg_row = Rows - 1; 2947 msg_col = 0; 2948 } 2949 #ifdef FEAT_RIGHTLEFT 2950 else if (cmdmsg_rl) 2951 msg_col = Columns - 1; 2952 #endif 2953 2954 entered = FALSE; 2955 #ifdef FEAT_CON_DIALOG 2956 return retval; 2957 #else 2958 return FALSE; 2959 #endif 2960 } 2961 2962 #if defined(USE_MCH_ERRMSG) || defined(PROTO) 2963 2964 #ifdef mch_errmsg 2965 # undef mch_errmsg 2966 #endif 2967 #ifdef mch_msg 2968 # undef mch_msg 2969 #endif 2970 2971 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 2972 static void 2973 mch_errmsg_c(char *str) 2974 { 2975 int len = (int)STRLEN(str); 2976 DWORD nwrite = 0; 2977 DWORD mode = 0; 2978 HANDLE h = GetStdHandle(STD_ERROR_HANDLE); 2979 2980 if (GetConsoleMode(h, &mode) && enc_codepage >= 0 2981 && (int)GetConsoleCP() != enc_codepage) 2982 { 2983 WCHAR *w = enc_to_utf16((char_u *)str, &len); 2984 2985 WriteConsoleW(h, w, len, &nwrite, NULL); 2986 vim_free(w); 2987 } 2988 else 2989 { 2990 fprintf(stderr, "%s", str); 2991 } 2992 } 2993 #endif 2994 2995 /* 2996 * Give an error message. To be used when the screen hasn't been initialized 2997 * yet. When stderr can't be used, collect error messages until the GUI has 2998 * started and they can be displayed in a message box. 2999 */ 3000 void 3001 mch_errmsg(char *str) 3002 { 3003 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) 3004 int len; 3005 #endif 3006 3007 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL) 3008 /* On Unix use stderr if it's a tty. 3009 * When not going to start the GUI also use stderr. 3010 * On Mac, when started from Finder, stderr is the console. */ 3011 if ( 3012 # ifdef UNIX 3013 # ifdef MACOS_X 3014 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) 3015 # else 3016 isatty(2) 3017 # endif 3018 # ifdef FEAT_GUI 3019 || 3020 # endif 3021 # endif 3022 # ifdef FEAT_GUI 3023 !(gui.in_use || gui.starting) 3024 # endif 3025 ) 3026 { 3027 fprintf(stderr, "%s", str); 3028 return; 3029 } 3030 #endif 3031 3032 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3033 # ifdef VIMDLL 3034 if (!(gui.in_use || gui.starting)) 3035 # endif 3036 { 3037 mch_errmsg_c(str); 3038 return; 3039 } 3040 #endif 3041 3042 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) 3043 /* avoid a delay for a message that isn't there */ 3044 emsg_on_display = FALSE; 3045 3046 len = (int)STRLEN(str) + 1; 3047 if (error_ga.ga_growsize == 0) 3048 { 3049 error_ga.ga_growsize = 80; 3050 error_ga.ga_itemsize = 1; 3051 } 3052 if (ga_grow(&error_ga, len) == OK) 3053 { 3054 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len, 3055 (char_u *)str, len); 3056 # ifdef UNIX 3057 /* remove CR characters, they are displayed */ 3058 { 3059 char_u *p; 3060 3061 p = (char_u *)error_ga.ga_data + error_ga.ga_len; 3062 for (;;) 3063 { 3064 p = vim_strchr(p, '\r'); 3065 if (p == NULL) 3066 break; 3067 *p = ' '; 3068 } 3069 } 3070 # endif 3071 --len; /* don't count the NUL at the end */ 3072 error_ga.ga_len += len; 3073 } 3074 #endif 3075 } 3076 3077 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3078 static void 3079 mch_msg_c(char *str) 3080 { 3081 int len = (int)STRLEN(str); 3082 DWORD nwrite = 0; 3083 DWORD mode; 3084 HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE); 3085 3086 3087 if (GetConsoleMode(h, &mode) && enc_codepage >= 0 3088 && (int)GetConsoleCP() != enc_codepage) 3089 { 3090 WCHAR *w = enc_to_utf16((char_u *)str, &len); 3091 3092 WriteConsoleW(h, w, len, &nwrite, NULL); 3093 vim_free(w); 3094 } 3095 else 3096 { 3097 printf("%s", str); 3098 } 3099 } 3100 #endif 3101 3102 /* 3103 * Give a message. To be used when the screen hasn't been initialized yet. 3104 * When there is no tty, collect messages until the GUI has started and they 3105 * can be displayed in a message box. 3106 */ 3107 void 3108 mch_msg(char *str) 3109 { 3110 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL) 3111 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and 3112 * uses mch_errmsg() when started from the desktop. 3113 * When not going to start the GUI also use stdout. 3114 * On Mac, when started from Finder, stderr is the console. */ 3115 if ( 3116 # ifdef UNIX 3117 # ifdef MACOS_X 3118 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) 3119 # else 3120 isatty(2) 3121 # endif 3122 # ifdef FEAT_GUI 3123 || 3124 # endif 3125 # endif 3126 # ifdef FEAT_GUI 3127 !(gui.in_use || gui.starting) 3128 # endif 3129 ) 3130 { 3131 printf("%s", str); 3132 return; 3133 } 3134 #endif 3135 3136 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) 3137 # ifdef VIMDLL 3138 if (!(gui.in_use || gui.starting)) 3139 # endif 3140 { 3141 mch_msg_c(str); 3142 return; 3143 } 3144 #endif 3145 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) 3146 mch_errmsg(str); 3147 #endif 3148 } 3149 #endif /* USE_MCH_ERRMSG */ 3150 3151 /* 3152 * Put a character on the screen at the current message position and advance 3153 * to the next position. Only for printable ASCII! 3154 */ 3155 static void 3156 msg_screen_putchar(int c, int attr) 3157 { 3158 msg_didout = TRUE; /* remember that line is not empty */ 3159 screen_putchar(c, msg_row, msg_col, attr); 3160 #ifdef FEAT_RIGHTLEFT 3161 if (cmdmsg_rl) 3162 { 3163 if (--msg_col == 0) 3164 { 3165 msg_col = Columns; 3166 ++msg_row; 3167 } 3168 } 3169 else 3170 #endif 3171 { 3172 if (++msg_col >= Columns) 3173 { 3174 msg_col = 0; 3175 ++msg_row; 3176 } 3177 } 3178 } 3179 3180 static void 3181 msg_moremsg(int full) 3182 { 3183 int attr; 3184 char_u *s = (char_u *)_("-- More --"); 3185 3186 attr = HL_ATTR(HLF_M); 3187 screen_puts(s, (int)Rows - 1, 0, attr); 3188 if (full) 3189 screen_puts((char_u *) 3190 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "), 3191 (int)Rows - 1, vim_strsize(s), attr); 3192 } 3193 3194 /* 3195 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or 3196 * exmode_active. 3197 */ 3198 void 3199 repeat_message(void) 3200 { 3201 if (State == ASKMORE) 3202 { 3203 msg_moremsg(TRUE); /* display --more-- message again */ 3204 msg_row = Rows - 1; 3205 } 3206 #ifdef FEAT_CON_DIALOG 3207 else if (State == CONFIRM) 3208 { 3209 display_confirm_msg(); /* display ":confirm" message again */ 3210 msg_row = Rows - 1; 3211 } 3212 #endif 3213 else if (State == EXTERNCMD) 3214 { 3215 windgoto(msg_row, msg_col); /* put cursor back */ 3216 } 3217 else if (State == HITRETURN || State == SETWSIZE) 3218 { 3219 if (msg_row == Rows - 1) 3220 { 3221 /* Avoid drawing the "hit-enter" prompt below the previous one, 3222 * overwrite it. Esp. useful when regaining focus and a 3223 * FocusGained autocmd exists but didn't draw anything. */ 3224 msg_didout = FALSE; 3225 msg_col = 0; 3226 msg_clr_eos(); 3227 } 3228 hit_return_msg(); 3229 msg_row = Rows - 1; 3230 } 3231 } 3232 3233 /* 3234 * msg_check_screen - check if the screen is initialized. 3235 * Also check msg_row and msg_col, if they are too big it may cause a crash. 3236 * While starting the GUI the terminal codes will be set for the GUI, but the 3237 * output goes to the terminal. Don't use the terminal codes then. 3238 */ 3239 static int 3240 msg_check_screen(void) 3241 { 3242 if (!full_screen || !screen_valid(FALSE)) 3243 return FALSE; 3244 3245 if (msg_row >= Rows) 3246 msg_row = Rows - 1; 3247 if (msg_col >= Columns) 3248 msg_col = Columns - 1; 3249 return TRUE; 3250 } 3251 3252 /* 3253 * Clear from current message position to end of screen. 3254 * Skip this when ":silent" was used, no need to clear for redirection. 3255 */ 3256 void 3257 msg_clr_eos(void) 3258 { 3259 if (msg_silent == 0) 3260 msg_clr_eos_force(); 3261 } 3262 3263 /* 3264 * Clear from current message position to end of screen. 3265 * Note: msg_col is not updated, so we remember the end of the message 3266 * for msg_check(). 3267 */ 3268 void 3269 msg_clr_eos_force(void) 3270 { 3271 if (msg_use_printf()) 3272 { 3273 if (full_screen) /* only when termcap codes are valid */ 3274 { 3275 if (*T_CD) 3276 out_str(T_CD); /* clear to end of display */ 3277 else if (*T_CE) 3278 out_str(T_CE); /* clear to end of line */ 3279 } 3280 } 3281 else 3282 { 3283 #ifdef FEAT_RIGHTLEFT 3284 if (cmdmsg_rl) 3285 { 3286 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0); 3287 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 3288 } 3289 else 3290 #endif 3291 { 3292 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns, 3293 ' ', ' ', 0); 3294 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); 3295 } 3296 } 3297 } 3298 3299 /* 3300 * Clear the command line. 3301 */ 3302 void 3303 msg_clr_cmdline(void) 3304 { 3305 msg_row = cmdline_row; 3306 msg_col = 0; 3307 msg_clr_eos_force(); 3308 } 3309 3310 /* 3311 * end putting a message on the screen 3312 * call wait_return if the message does not fit in the available space 3313 * return TRUE if wait_return not called. 3314 */ 3315 int 3316 msg_end(void) 3317 { 3318 /* 3319 * If the string is larger than the window, 3320 * or the ruler option is set and we run into it, 3321 * we have to redraw the window. 3322 * Do not do this if we are abandoning the file or editing the command line. 3323 */ 3324 if (!exiting && need_wait_return && !(State & CMDLINE)) 3325 { 3326 wait_return(FALSE); 3327 return FALSE; 3328 } 3329 out_flush(); 3330 return TRUE; 3331 } 3332 3333 /* 3334 * If the written message runs into the shown command or ruler, we have to 3335 * wait for hit-return and redraw the window later. 3336 */ 3337 void 3338 msg_check(void) 3339 { 3340 if (msg_row == Rows - 1 && msg_col >= sc_col) 3341 { 3342 need_wait_return = TRUE; 3343 redraw_cmdline = TRUE; 3344 } 3345 } 3346 3347 /* 3348 * May write a string to the redirection file. 3349 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes. 3350 */ 3351 static void 3352 redir_write(char_u *str, int maxlen) 3353 { 3354 char_u *s = str; 3355 static int cur_col = 0; 3356 3357 /* Don't do anything for displaying prompts and the like. */ 3358 if (redir_off) 3359 return; 3360 3361 /* If 'verbosefile' is set prepare for writing in that file. */ 3362 if (*p_vfile != NUL && verbose_fd == NULL) 3363 verbose_open(); 3364 3365 if (redirecting()) 3366 { 3367 /* If the string doesn't start with CR or NL, go to msg_col */ 3368 if (*s != '\n' && *s != '\r') 3369 { 3370 while (cur_col < msg_col) 3371 { 3372 #ifdef FEAT_EVAL 3373 if (redir_execute) 3374 execute_redir_str((char_u *)" ", -1); 3375 else if (redir_reg) 3376 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE); 3377 else if (redir_vname) 3378 var_redir_str((char_u *)" ", -1); 3379 else 3380 #endif 3381 if (redir_fd != NULL) 3382 fputs(" ", redir_fd); 3383 if (verbose_fd != NULL) 3384 fputs(" ", verbose_fd); 3385 ++cur_col; 3386 } 3387 } 3388 3389 #ifdef FEAT_EVAL 3390 if (redir_execute) 3391 execute_redir_str(s, maxlen); 3392 else if (redir_reg) 3393 write_reg_contents(redir_reg, s, maxlen, TRUE); 3394 else if (redir_vname) 3395 var_redir_str(s, maxlen); 3396 #endif 3397 3398 /* Write and adjust the current column. */ 3399 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen)) 3400 { 3401 #ifdef FEAT_EVAL 3402 if (!redir_reg && !redir_vname && !redir_execute) 3403 #endif 3404 if (redir_fd != NULL) 3405 putc(*s, redir_fd); 3406 if (verbose_fd != NULL) 3407 putc(*s, verbose_fd); 3408 if (*s == '\r' || *s == '\n') 3409 cur_col = 0; 3410 else if (*s == '\t') 3411 cur_col += (8 - cur_col % 8); 3412 else 3413 ++cur_col; 3414 ++s; 3415 } 3416 3417 if (msg_silent != 0) /* should update msg_col */ 3418 msg_col = cur_col; 3419 } 3420 } 3421 3422 int 3423 redirecting(void) 3424 { 3425 return redir_fd != NULL || *p_vfile != NUL 3426 #ifdef FEAT_EVAL 3427 || redir_reg || redir_vname || redir_execute 3428 #endif 3429 ; 3430 } 3431 3432 /* 3433 * Before giving verbose message. 3434 * Must always be called paired with verbose_leave()! 3435 */ 3436 void 3437 verbose_enter(void) 3438 { 3439 if (*p_vfile != NUL) 3440 ++msg_silent; 3441 } 3442 3443 /* 3444 * After giving verbose message. 3445 * Must always be called paired with verbose_enter()! 3446 */ 3447 void 3448 verbose_leave(void) 3449 { 3450 if (*p_vfile != NUL) 3451 if (--msg_silent < 0) 3452 msg_silent = 0; 3453 } 3454 3455 /* 3456 * Like verbose_enter() and set msg_scroll when displaying the message. 3457 */ 3458 void 3459 verbose_enter_scroll(void) 3460 { 3461 if (*p_vfile != NUL) 3462 ++msg_silent; 3463 else 3464 /* always scroll up, don't overwrite */ 3465 msg_scroll = TRUE; 3466 } 3467 3468 /* 3469 * Like verbose_leave() and set cmdline_row when displaying the message. 3470 */ 3471 void 3472 verbose_leave_scroll(void) 3473 { 3474 if (*p_vfile != NUL) 3475 { 3476 if (--msg_silent < 0) 3477 msg_silent = 0; 3478 } 3479 else 3480 cmdline_row = msg_row; 3481 } 3482 3483 /* 3484 * Called when 'verbosefile' is set: stop writing to the file. 3485 */ 3486 void 3487 verbose_stop(void) 3488 { 3489 if (verbose_fd != NULL) 3490 { 3491 fclose(verbose_fd); 3492 verbose_fd = NULL; 3493 } 3494 verbose_did_open = FALSE; 3495 } 3496 3497 /* 3498 * Open the file 'verbosefile'. 3499 * Return FAIL or OK. 3500 */ 3501 int 3502 verbose_open(void) 3503 { 3504 if (verbose_fd == NULL && !verbose_did_open) 3505 { 3506 /* Only give the error message once. */ 3507 verbose_did_open = TRUE; 3508 3509 verbose_fd = mch_fopen((char *)p_vfile, "a"); 3510 if (verbose_fd == NULL) 3511 { 3512 semsg(_(e_notopen), p_vfile); 3513 return FAIL; 3514 } 3515 } 3516 return OK; 3517 } 3518 3519 /* 3520 * Give a warning message (for searching). 3521 * Use 'w' highlighting and may repeat the message after redrawing 3522 */ 3523 void 3524 give_warning(char_u *message, int hl) 3525 { 3526 /* Don't do this for ":silent". */ 3527 if (msg_silent != 0) 3528 return; 3529 3530 /* Don't want a hit-enter prompt here. */ 3531 ++no_wait_return; 3532 3533 #ifdef FEAT_EVAL 3534 set_vim_var_string(VV_WARNINGMSG, message, -1); 3535 #endif 3536 VIM_CLEAR(keep_msg); 3537 if (hl) 3538 keep_msg_attr = HL_ATTR(HLF_W); 3539 else 3540 keep_msg_attr = 0; 3541 if (msg_attr((char *)message, keep_msg_attr) && msg_scrolled == 0) 3542 set_keep_msg(message, keep_msg_attr); 3543 msg_didout = FALSE; /* overwrite this message */ 3544 msg_nowait = TRUE; /* don't wait for this message */ 3545 msg_col = 0; 3546 3547 --no_wait_return; 3548 } 3549 3550 #if defined(FEAT_EVAL) || defined(PROTO) 3551 void 3552 give_warning2(char_u *message, char_u *a1, int hl) 3553 { 3554 if (IObuff == NULL) 3555 { 3556 // Very early in initialisation and already something wrong, just give 3557 // the raw message so the user at least gets a hint. 3558 give_warning((char_u *)message, hl); 3559 } 3560 else 3561 { 3562 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1); 3563 give_warning(IObuff, hl); 3564 } 3565 } 3566 #endif 3567 3568 /* 3569 * Advance msg cursor to column "col". 3570 */ 3571 void 3572 msg_advance(int col) 3573 { 3574 if (msg_silent != 0) /* nothing to advance to */ 3575 { 3576 msg_col = col; /* for redirection, may fill it up later */ 3577 return; 3578 } 3579 if (col >= Columns) /* not enough room */ 3580 col = Columns - 1; 3581 #ifdef FEAT_RIGHTLEFT 3582 if (cmdmsg_rl) 3583 while (msg_col > Columns - col) 3584 msg_putchar(' '); 3585 else 3586 #endif 3587 while (msg_col < col) 3588 msg_putchar(' '); 3589 } 3590 3591 #if defined(FEAT_CON_DIALOG) || defined(PROTO) 3592 /* 3593 * Used for "confirm()" function, and the :confirm command prefix. 3594 * Versions which haven't got flexible dialogs yet, and console 3595 * versions, get this generic handler which uses the command line. 3596 * 3597 * type = one of: 3598 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC 3599 * title = title string (can be NULL for default) 3600 * (neither used in console dialogs at the moment) 3601 * 3602 * Format of the "buttons" string: 3603 * "Button1Name\nButton2Name\nButton3Name" 3604 * The first button should normally be the default/accept 3605 * The second button should be the 'Cancel' button 3606 * Other buttons- use your imagination! 3607 * A '&' in a button name becomes a shortcut, so each '&' should be before a 3608 * different letter. 3609 */ 3610 int 3611 do_dialog( 3612 int type UNUSED, 3613 char_u *title UNUSED, 3614 char_u *message, 3615 char_u *buttons, 3616 int dfltbutton, 3617 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL 3618 otherwise */ 3619 int ex_cmd) /* when TRUE pressing : accepts default and starts 3620 Ex command */ 3621 { 3622 int oldState; 3623 int retval = 0; 3624 char_u *hotkeys; 3625 int c; 3626 int i; 3627 3628 #ifndef NO_CONSOLE 3629 /* Don't output anything in silent mode ("ex -s") */ 3630 if (silent_mode) 3631 return dfltbutton; /* return default option */ 3632 #endif 3633 3634 #ifdef FEAT_GUI_DIALOG 3635 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */ 3636 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL) 3637 { 3638 c = gui_mch_dialog(type, title, message, buttons, dfltbutton, 3639 textfield, ex_cmd); 3640 /* avoid a hit-enter prompt without clearing the cmdline */ 3641 need_wait_return = FALSE; 3642 emsg_on_display = FALSE; 3643 cmdline_row = msg_row; 3644 3645 /* Flush output to avoid that further messages and redrawing is done 3646 * in the wrong order. */ 3647 out_flush(); 3648 gui_mch_update(); 3649 3650 return c; 3651 } 3652 #endif 3653 3654 oldState = State; 3655 State = CONFIRM; 3656 setmouse(); 3657 3658 /* 3659 * Since we wait for a keypress, don't make the 3660 * user press RETURN as well afterwards. 3661 */ 3662 ++no_wait_return; 3663 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton); 3664 3665 if (hotkeys != NULL) 3666 { 3667 for (;;) 3668 { 3669 /* Get a typed character directly from the user. */ 3670 c = get_keystroke(); 3671 switch (c) 3672 { 3673 case CAR: /* User accepts default option */ 3674 case NL: 3675 retval = dfltbutton; 3676 break; 3677 case Ctrl_C: /* User aborts/cancels */ 3678 case ESC: 3679 retval = 0; 3680 break; 3681 default: /* Could be a hotkey? */ 3682 if (c < 0) /* special keys are ignored here */ 3683 continue; 3684 if (c == ':' && ex_cmd) 3685 { 3686 retval = dfltbutton; 3687 ins_char_typebuf(':'); 3688 break; 3689 } 3690 3691 /* Make the character lowercase, as chars in "hotkeys" are. */ 3692 c = MB_TOLOWER(c); 3693 retval = 1; 3694 for (i = 0; hotkeys[i]; ++i) 3695 { 3696 if (has_mbyte) 3697 { 3698 if ((*mb_ptr2char)(hotkeys + i) == c) 3699 break; 3700 i += (*mb_ptr2len)(hotkeys + i) - 1; 3701 } 3702 else 3703 if (hotkeys[i] == c) 3704 break; 3705 ++retval; 3706 } 3707 if (hotkeys[i]) 3708 break; 3709 /* No hotkey match, so keep waiting */ 3710 continue; 3711 } 3712 break; 3713 } 3714 3715 vim_free(hotkeys); 3716 } 3717 3718 State = oldState; 3719 setmouse(); 3720 --no_wait_return; 3721 msg_end_prompt(); 3722 3723 return retval; 3724 } 3725 3726 /* 3727 * Copy one character from "*from" to "*to", taking care of multi-byte 3728 * characters. Return the length of the character in bytes. 3729 */ 3730 static int 3731 copy_char( 3732 char_u *from, 3733 char_u *to, 3734 int lowercase) /* make character lower case */ 3735 { 3736 int len; 3737 int c; 3738 3739 if (has_mbyte) 3740 { 3741 if (lowercase) 3742 { 3743 c = MB_TOLOWER((*mb_ptr2char)(from)); 3744 return (*mb_char2bytes)(c, to); 3745 } 3746 else 3747 { 3748 len = (*mb_ptr2len)(from); 3749 mch_memmove(to, from, (size_t)len); 3750 return len; 3751 } 3752 } 3753 else 3754 { 3755 if (lowercase) 3756 *to = (char_u)TOLOWER_LOC(*from); 3757 else 3758 *to = *from; 3759 return 1; 3760 } 3761 } 3762 3763 /* 3764 * Format the dialog string, and display it at the bottom of 3765 * the screen. Return a string of hotkey chars (if defined) for 3766 * each 'button'. If a button has no hotkey defined, the first character of 3767 * the button is used. 3768 * The hotkeys can be multi-byte characters, but without combining chars. 3769 * 3770 * Returns an allocated string with hotkeys, or NULL for error. 3771 */ 3772 static char_u * 3773 msg_show_console_dialog( 3774 char_u *message, 3775 char_u *buttons, 3776 int dfltbutton) 3777 { 3778 int len = 0; 3779 #define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1) 3780 int lenhotkey = HOTK_LEN; /* count first button */ 3781 char_u *hotk = NULL; 3782 char_u *msgp = NULL; 3783 char_u *hotkp = NULL; 3784 char_u *r; 3785 int copy; 3786 #define HAS_HOTKEY_LEN 30 3787 char_u has_hotkey[HAS_HOTKEY_LEN]; 3788 int first_hotkey = FALSE; /* first char of button is hotkey */ 3789 int idx; 3790 3791 has_hotkey[0] = FALSE; 3792 3793 /* 3794 * First loop: compute the size of memory to allocate. 3795 * Second loop: copy to the allocated memory. 3796 */ 3797 for (copy = 0; copy <= 1; ++copy) 3798 { 3799 r = buttons; 3800 idx = 0; 3801 while (*r) 3802 { 3803 if (*r == DLG_BUTTON_SEP) 3804 { 3805 if (copy) 3806 { 3807 *msgp++ = ','; 3808 *msgp++ = ' '; /* '\n' -> ', ' */ 3809 3810 /* advance to next hotkey and set default hotkey */ 3811 if (has_mbyte) 3812 hotkp += STRLEN(hotkp); 3813 else 3814 ++hotkp; 3815 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL; 3816 if (dfltbutton) 3817 --dfltbutton; 3818 3819 /* If no hotkey is specified first char is used. */ 3820 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx]) 3821 first_hotkey = TRUE; 3822 } 3823 else 3824 { 3825 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */ 3826 lenhotkey += HOTK_LEN; /* each button needs a hotkey */ 3827 if (idx < HAS_HOTKEY_LEN - 1) 3828 has_hotkey[++idx] = FALSE; 3829 } 3830 } 3831 else if (*r == DLG_HOTKEY_CHAR || first_hotkey) 3832 { 3833 if (*r == DLG_HOTKEY_CHAR) 3834 ++r; 3835 first_hotkey = FALSE; 3836 if (copy) 3837 { 3838 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */ 3839 *msgp++ = *r; 3840 else 3841 { 3842 /* '&a' -> '[a]' */ 3843 *msgp++ = (dfltbutton == 1) ? '[' : '('; 3844 msgp += copy_char(r, msgp, FALSE); 3845 *msgp++ = (dfltbutton == 1) ? ']' : ')'; 3846 3847 /* redefine hotkey */ 3848 hotkp[copy_char(r, hotkp, TRUE)] = NUL; 3849 } 3850 } 3851 else 3852 { 3853 ++len; /* '&a' -> '[a]' */ 3854 if (idx < HAS_HOTKEY_LEN - 1) 3855 has_hotkey[idx] = TRUE; 3856 } 3857 } 3858 else 3859 { 3860 /* everything else copy literally */ 3861 if (copy) 3862 msgp += copy_char(r, msgp, FALSE); 3863 } 3864 3865 /* advance to the next character */ 3866 MB_PTR_ADV(r); 3867 } 3868 3869 if (copy) 3870 { 3871 *msgp++ = ':'; 3872 *msgp++ = ' '; 3873 *msgp = NUL; 3874 } 3875 else 3876 { 3877 len += (int)(STRLEN(message) 3878 + 2 /* for the NL's */ 3879 + STRLEN(buttons) 3880 + 3); /* for the ": " and NUL */ 3881 lenhotkey++; /* for the NUL */ 3882 3883 /* If no hotkey is specified first char is used. */ 3884 if (!has_hotkey[0]) 3885 { 3886 first_hotkey = TRUE; 3887 len += 2; /* "x" -> "[x]" */ 3888 } 3889 3890 /* 3891 * Now allocate and load the strings 3892 */ 3893 vim_free(confirm_msg); 3894 confirm_msg = alloc(len); 3895 if (confirm_msg == NULL) 3896 return NULL; 3897 *confirm_msg = NUL; 3898 hotk = alloc(lenhotkey); 3899 if (hotk == NULL) 3900 return NULL; 3901 3902 *confirm_msg = '\n'; 3903 STRCPY(confirm_msg + 1, message); 3904 3905 msgp = confirm_msg + 1 + STRLEN(message); 3906 hotkp = hotk; 3907 3908 /* Define first default hotkey. Keep the hotkey string NUL 3909 * terminated to avoid reading past the end. */ 3910 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL; 3911 3912 /* Remember where the choices start, displaying starts here when 3913 * "hotkp" typed at the more prompt. */ 3914 confirm_msg_tail = msgp; 3915 *msgp++ = '\n'; 3916 } 3917 } 3918 3919 display_confirm_msg(); 3920 return hotk; 3921 } 3922 3923 /* 3924 * Display the ":confirm" message. Also called when screen resized. 3925 */ 3926 static void 3927 display_confirm_msg(void) 3928 { 3929 /* avoid that 'q' at the more prompt truncates the message here */ 3930 ++confirm_msg_used; 3931 if (confirm_msg != NULL) 3932 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M)); 3933 --confirm_msg_used; 3934 } 3935 3936 #endif /* FEAT_CON_DIALOG */ 3937 3938 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG) 3939 3940 int 3941 vim_dialog_yesno( 3942 int type, 3943 char_u *title, 3944 char_u *message, 3945 int dflt) 3946 { 3947 if (do_dialog(type, 3948 title == NULL ? (char_u *)_("Question") : title, 3949 message, 3950 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1) 3951 return VIM_YES; 3952 return VIM_NO; 3953 } 3954 3955 int 3956 vim_dialog_yesnocancel( 3957 int type, 3958 char_u *title, 3959 char_u *message, 3960 int dflt) 3961 { 3962 switch (do_dialog(type, 3963 title == NULL ? (char_u *)_("Question") : title, 3964 message, 3965 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE)) 3966 { 3967 case 1: return VIM_YES; 3968 case 2: return VIM_NO; 3969 } 3970 return VIM_CANCEL; 3971 } 3972 3973 int 3974 vim_dialog_yesnoallcancel( 3975 int type, 3976 char_u *title, 3977 char_u *message, 3978 int dflt) 3979 { 3980 switch (do_dialog(type, 3981 title == NULL ? (char_u *)"Question" : title, 3982 message, 3983 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"), 3984 dflt, NULL, FALSE)) 3985 { 3986 case 1: return VIM_YES; 3987 case 2: return VIM_NO; 3988 case 3: return VIM_ALL; 3989 case 4: return VIM_DISCARDALL; 3990 } 3991 return VIM_CANCEL; 3992 } 3993 3994 #endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */ 3995 3996 #if defined(FEAT_EVAL) 3997 static char *e_printf = N_("E766: Insufficient arguments for printf()"); 3998 3999 /* 4000 * Get number argument from "idxp" entry in "tvs". First entry is 1. 4001 */ 4002 static varnumber_T 4003 tv_nr(typval_T *tvs, int *idxp) 4004 { 4005 int idx = *idxp - 1; 4006 varnumber_T n = 0; 4007 int err = FALSE; 4008 4009 if (tvs[idx].v_type == VAR_UNKNOWN) 4010 emsg(_(e_printf)); 4011 else 4012 { 4013 ++*idxp; 4014 n = tv_get_number_chk(&tvs[idx], &err); 4015 if (err) 4016 n = 0; 4017 } 4018 return n; 4019 } 4020 4021 /* 4022 * Get string argument from "idxp" entry in "tvs". First entry is 1. 4023 * If "tofree" is NULL tv_get_string_chk() is used. Some types (e.g. List) 4024 * are not converted to a string. 4025 * If "tofree" is not NULL echo_string() is used. All types are converted to 4026 * a string with the same format as ":echo". The caller must free "*tofree". 4027 * Returns NULL for an error. 4028 */ 4029 static char * 4030 tv_str(typval_T *tvs, int *idxp, char_u **tofree) 4031 { 4032 int idx = *idxp - 1; 4033 char *s = NULL; 4034 static char_u numbuf[NUMBUFLEN]; 4035 4036 if (tvs[idx].v_type == VAR_UNKNOWN) 4037 emsg(_(e_printf)); 4038 else 4039 { 4040 ++*idxp; 4041 if (tofree != NULL) 4042 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID()); 4043 else 4044 s = (char *)tv_get_string_chk(&tvs[idx]); 4045 } 4046 return s; 4047 } 4048 4049 # ifdef FEAT_FLOAT 4050 /* 4051 * Get float argument from "idxp" entry in "tvs". First entry is 1. 4052 */ 4053 static double 4054 tv_float(typval_T *tvs, int *idxp) 4055 { 4056 int idx = *idxp - 1; 4057 double f = 0; 4058 4059 if (tvs[idx].v_type == VAR_UNKNOWN) 4060 emsg(_(e_printf)); 4061 else 4062 { 4063 ++*idxp; 4064 if (tvs[idx].v_type == VAR_FLOAT) 4065 f = tvs[idx].vval.v_float; 4066 else if (tvs[idx].v_type == VAR_NUMBER) 4067 f = (double)tvs[idx].vval.v_number; 4068 else 4069 emsg(_("E807: Expected Float argument for printf()")); 4070 } 4071 return f; 4072 } 4073 # endif 4074 #endif 4075 4076 #ifdef FEAT_FLOAT 4077 /* 4078 * Return the representation of infinity for printf() function: 4079 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF". 4080 */ 4081 static const char * 4082 infinity_str(int positive, 4083 char fmt_spec, 4084 int force_sign, 4085 int space_for_positive) 4086 { 4087 static const char *table[] = 4088 { 4089 "-inf", "inf", "+inf", " inf", 4090 "-INF", "INF", "+INF", " INF" 4091 }; 4092 int idx = positive * (1 + force_sign + force_sign * space_for_positive); 4093 4094 if (ASCII_ISUPPER(fmt_spec)) 4095 idx += 4; 4096 return table[idx]; 4097 } 4098 #endif 4099 4100 /* 4101 * This code was included to provide a portable vsnprintf() and snprintf(). 4102 * Some systems may provide their own, but we always use this one for 4103 * consistency. 4104 * 4105 * This code is based on snprintf.c - a portable implementation of snprintf 4106 * by Mark Martinec <[email protected]>, Version 2.2, 2000-10-06. 4107 * Included with permission. It was heavily modified to fit in Vim. 4108 * The original code, including useful comments, can be found here: 4109 * http://www.ijs.si/software/snprintf/ 4110 * 4111 * This snprintf() only supports the following conversion specifiers: 4112 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below) 4113 * with flags: '-', '+', ' ', '0' and '#'. 4114 * An asterisk is supported for field width as well as precision. 4115 * 4116 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'. 4117 * 4118 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int) 4119 * are supported. 4120 * 4121 * The locale is not used, the string is used as a byte string. This is only 4122 * relevant for double-byte encodings where the second byte may be '%'. 4123 * 4124 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL 4125 * pointer for resulting string argument if "str_m" is zero (as per ISO C99). 4126 * 4127 * The return value is the number of characters which would be generated 4128 * for the given input, excluding the trailing NUL. If this value 4129 * is greater or equal to "str_m", not all characters from the result 4130 * have been stored in str, output bytes beyond the ("str_m"-1) -th character 4131 * are discarded. If "str_m" is greater than zero it is guaranteed 4132 * the resulting string will be NUL-terminated. 4133 */ 4134 4135 /* 4136 * When va_list is not supported we only define vim_snprintf(). 4137 * 4138 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of 4139 * "typval_T". When the latter is not used it must be NULL. 4140 */ 4141 4142 /* When generating prototypes all of this is skipped, cproto doesn't 4143 * understand this. */ 4144 #ifndef PROTO 4145 4146 /* Like vim_vsnprintf() but append to the string. */ 4147 int 4148 vim_snprintf_add(char *str, size_t str_m, const char *fmt, ...) 4149 { 4150 va_list ap; 4151 int str_l; 4152 size_t len = STRLEN(str); 4153 size_t space; 4154 4155 if (str_m <= len) 4156 space = 0; 4157 else 4158 space = str_m - len; 4159 va_start(ap, fmt); 4160 str_l = vim_vsnprintf(str + len, space, fmt, ap); 4161 va_end(ap); 4162 return str_l; 4163 } 4164 4165 int 4166 vim_snprintf(char *str, size_t str_m, const char *fmt, ...) 4167 { 4168 va_list ap; 4169 int str_l; 4170 4171 va_start(ap, fmt); 4172 str_l = vim_vsnprintf(str, str_m, fmt, ap); 4173 va_end(ap); 4174 return str_l; 4175 } 4176 4177 int 4178 vim_vsnprintf( 4179 char *str, 4180 size_t str_m, 4181 const char *fmt, 4182 va_list ap) 4183 { 4184 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL); 4185 } 4186 4187 int 4188 vim_vsnprintf_typval( 4189 char *str, 4190 size_t str_m, 4191 const char *fmt, 4192 va_list ap, 4193 typval_T *tvs) 4194 { 4195 size_t str_l = 0; 4196 const char *p = fmt; 4197 int arg_idx = 1; 4198 4199 if (p == NULL) 4200 p = ""; 4201 while (*p != NUL) 4202 { 4203 if (*p != '%') 4204 { 4205 char *q = strchr(p + 1, '%'); 4206 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p); 4207 4208 /* Copy up to the next '%' or NUL without any changes. */ 4209 if (str_l < str_m) 4210 { 4211 size_t avail = str_m - str_l; 4212 4213 mch_memmove(str + str_l, p, n > avail ? avail : n); 4214 } 4215 p += n; 4216 str_l += n; 4217 } 4218 else 4219 { 4220 size_t min_field_width = 0, precision = 0; 4221 int zero_padding = 0, precision_specified = 0, justify_left = 0; 4222 int alternate_form = 0, force_sign = 0; 4223 4224 /* If both the ' ' and '+' flags appear, the ' ' flag should be 4225 * ignored. */ 4226 int space_for_positive = 1; 4227 4228 /* allowed values: \0, h, l, L */ 4229 char length_modifier = '\0'; 4230 4231 /* temporary buffer for simple numeric->string conversion */ 4232 # if defined(FEAT_FLOAT) 4233 # define TMP_LEN 350 /* On my system 1e308 is the biggest number possible. 4234 * That sounds reasonable to use as the maximum 4235 * printable. */ 4236 # elif defined(FEAT_NUM64) 4237 # define TMP_LEN 66 4238 # else 4239 # define TMP_LEN 34 4240 # endif 4241 char tmp[TMP_LEN]; 4242 4243 /* string address in case of string argument */ 4244 const char *str_arg = NULL; 4245 4246 /* natural field width of arg without padding and sign */ 4247 size_t str_arg_l; 4248 4249 /* unsigned char argument value - only defined for c conversion. 4250 * N.B. standard explicitly states the char argument for the c 4251 * conversion is unsigned */ 4252 unsigned char uchar_arg; 4253 4254 /* number of zeros to be inserted for numeric conversions as 4255 * required by the precision or minimal field width */ 4256 size_t number_of_zeros_to_pad = 0; 4257 4258 /* index into tmp where zero padding is to be inserted */ 4259 size_t zero_padding_insertion_ind = 0; 4260 4261 /* current conversion specifier character */ 4262 char fmt_spec = '\0'; 4263 4264 /* buffer for 's' and 'S' specs */ 4265 char_u *tofree = NULL; 4266 4267 4268 p++; /* skip '%' */ 4269 4270 /* parse flags */ 4271 while (*p == '0' || *p == '-' || *p == '+' || *p == ' ' 4272 || *p == '#' || *p == '\'') 4273 { 4274 switch (*p) 4275 { 4276 case '0': zero_padding = 1; break; 4277 case '-': justify_left = 1; break; 4278 case '+': force_sign = 1; space_for_positive = 0; break; 4279 case ' ': force_sign = 1; 4280 /* If both the ' ' and '+' flags appear, the ' ' 4281 * flag should be ignored */ 4282 break; 4283 case '#': alternate_form = 1; break; 4284 case '\'': break; 4285 } 4286 p++; 4287 } 4288 /* If the '0' and '-' flags both appear, the '0' flag should be 4289 * ignored. */ 4290 4291 /* parse field width */ 4292 if (*p == '*') 4293 { 4294 int j; 4295 4296 p++; 4297 j = 4298 # if defined(FEAT_EVAL) 4299 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4300 # endif 4301 va_arg(ap, int); 4302 if (j >= 0) 4303 min_field_width = j; 4304 else 4305 { 4306 min_field_width = -j; 4307 justify_left = 1; 4308 } 4309 } 4310 else if (VIM_ISDIGIT((int)(*p))) 4311 { 4312 /* size_t could be wider than unsigned int; make sure we treat 4313 * argument like common implementations do */ 4314 unsigned int uj = *p++ - '0'; 4315 4316 while (VIM_ISDIGIT((int)(*p))) 4317 uj = 10 * uj + (unsigned int)(*p++ - '0'); 4318 min_field_width = uj; 4319 } 4320 4321 /* parse precision */ 4322 if (*p == '.') 4323 { 4324 p++; 4325 precision_specified = 1; 4326 if (*p == '*') 4327 { 4328 int j; 4329 4330 j = 4331 # if defined(FEAT_EVAL) 4332 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4333 # endif 4334 va_arg(ap, int); 4335 p++; 4336 if (j >= 0) 4337 precision = j; 4338 else 4339 { 4340 precision_specified = 0; 4341 precision = 0; 4342 } 4343 } 4344 else if (VIM_ISDIGIT((int)(*p))) 4345 { 4346 /* size_t could be wider than unsigned int; make sure we 4347 * treat argument like common implementations do */ 4348 unsigned int uj = *p++ - '0'; 4349 4350 while (VIM_ISDIGIT((int)(*p))) 4351 uj = 10 * uj + (unsigned int)(*p++ - '0'); 4352 precision = uj; 4353 } 4354 } 4355 4356 /* parse 'h', 'l' and 'll' length modifiers */ 4357 if (*p == 'h' || *p == 'l') 4358 { 4359 length_modifier = *p; 4360 p++; 4361 if (length_modifier == 'l' && *p == 'l') 4362 { 4363 /* double l = long long */ 4364 # ifdef FEAT_NUM64 4365 length_modifier = 'L'; 4366 # else 4367 length_modifier = 'l'; /* treat it as a single 'l' */ 4368 # endif 4369 p++; 4370 } 4371 } 4372 fmt_spec = *p; 4373 4374 /* common synonyms: */ 4375 switch (fmt_spec) 4376 { 4377 case 'i': fmt_spec = 'd'; break; 4378 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break; 4379 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break; 4380 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break; 4381 default: break; 4382 } 4383 4384 # if defined(FEAT_EVAL) && defined(FEAT_NUM64) 4385 switch (fmt_spec) 4386 { 4387 case 'd': case 'u': case 'o': case 'x': case 'X': 4388 if (tvs != NULL && length_modifier == '\0') 4389 length_modifier = 'L'; 4390 } 4391 # endif 4392 4393 /* get parameter value, do initial processing */ 4394 switch (fmt_spec) 4395 { 4396 /* '%' and 'c' behave similar to 's' regarding flags and field 4397 * widths */ 4398 case '%': 4399 case 'c': 4400 case 's': 4401 case 'S': 4402 str_arg_l = 1; 4403 switch (fmt_spec) 4404 { 4405 case '%': 4406 str_arg = p; 4407 break; 4408 4409 case 'c': 4410 { 4411 int j; 4412 4413 j = 4414 # if defined(FEAT_EVAL) 4415 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4416 # endif 4417 va_arg(ap, int); 4418 /* standard demands unsigned char */ 4419 uchar_arg = (unsigned char)j; 4420 str_arg = (char *)&uchar_arg; 4421 break; 4422 } 4423 4424 case 's': 4425 case 'S': 4426 str_arg = 4427 # if defined(FEAT_EVAL) 4428 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) : 4429 # endif 4430 va_arg(ap, char *); 4431 if (str_arg == NULL) 4432 { 4433 str_arg = "[NULL]"; 4434 str_arg_l = 6; 4435 } 4436 /* make sure not to address string beyond the specified 4437 * precision !!! */ 4438 else if (!precision_specified) 4439 str_arg_l = strlen(str_arg); 4440 /* truncate string if necessary as requested by precision */ 4441 else if (precision == 0) 4442 str_arg_l = 0; 4443 else 4444 { 4445 /* Don't put the #if inside memchr(), it can be a 4446 * macro. */ 4447 /* memchr on HP does not like n > 2^31 !!! */ 4448 char *q = memchr(str_arg, '\0', 4449 precision <= (size_t)0x7fffffffL ? precision 4450 : (size_t)0x7fffffffL); 4451 str_arg_l = (q == NULL) ? precision 4452 : (size_t)(q - str_arg); 4453 } 4454 if (fmt_spec == 'S') 4455 { 4456 if (min_field_width != 0) 4457 min_field_width += STRLEN(str_arg) 4458 - mb_string2cells((char_u *)str_arg, -1); 4459 if (precision) 4460 { 4461 char_u *p1; 4462 size_t i = 0; 4463 4464 for (p1 = (char_u *)str_arg; *p1; 4465 p1 += mb_ptr2len(p1)) 4466 { 4467 i += (size_t)mb_ptr2cells(p1); 4468 if (i > precision) 4469 break; 4470 } 4471 str_arg_l = precision = p1 - (char_u *)str_arg; 4472 } 4473 } 4474 break; 4475 4476 default: 4477 break; 4478 } 4479 break; 4480 4481 case 'd': case 'u': 4482 case 'b': case 'B': 4483 case 'o': 4484 case 'x': case 'X': 4485 case 'p': 4486 { 4487 /* NOTE: the u, b, o, x, X and p conversion specifiers 4488 * imply the value is unsigned; d implies a signed 4489 * value */ 4490 4491 /* 0 if numeric argument is zero (or if pointer is 4492 * NULL for 'p'), +1 if greater than zero (or nonzero 4493 * for unsigned arguments), -1 if negative (unsigned 4494 * argument is never negative) */ 4495 int arg_sign = 0; 4496 4497 /* only defined for length modifier h, or for no 4498 * length modifiers */ 4499 int int_arg = 0; 4500 unsigned int uint_arg = 0; 4501 4502 /* only defined for length modifier l */ 4503 long int long_arg = 0; 4504 unsigned long int ulong_arg = 0; 4505 4506 # ifdef FEAT_NUM64 4507 /* only defined for length modifier ll */ 4508 varnumber_T llong_arg = 0; 4509 uvarnumber_T ullong_arg = 0; 4510 # endif 4511 4512 /* only defined for b conversion */ 4513 uvarnumber_T bin_arg = 0; 4514 4515 /* pointer argument value -only defined for p 4516 * conversion */ 4517 void *ptr_arg = NULL; 4518 4519 if (fmt_spec == 'p') 4520 { 4521 length_modifier = '\0'; 4522 ptr_arg = 4523 # if defined(FEAT_EVAL) 4524 tvs != NULL ? (void *)tv_str(tvs, &arg_idx, 4525 NULL) : 4526 # endif 4527 va_arg(ap, void *); 4528 if (ptr_arg != NULL) 4529 arg_sign = 1; 4530 } 4531 else if (fmt_spec == 'b' || fmt_spec == 'B') 4532 { 4533 bin_arg = 4534 # if defined(FEAT_EVAL) 4535 tvs != NULL ? 4536 (uvarnumber_T)tv_nr(tvs, &arg_idx) : 4537 # endif 4538 va_arg(ap, uvarnumber_T); 4539 if (bin_arg != 0) 4540 arg_sign = 1; 4541 } 4542 else if (fmt_spec == 'd') 4543 { 4544 /* signed */ 4545 switch (length_modifier) 4546 { 4547 case '\0': 4548 case 'h': 4549 /* char and short arguments are passed as int. */ 4550 int_arg = 4551 # if defined(FEAT_EVAL) 4552 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4553 # endif 4554 va_arg(ap, int); 4555 if (int_arg > 0) 4556 arg_sign = 1; 4557 else if (int_arg < 0) 4558 arg_sign = -1; 4559 break; 4560 case 'l': 4561 long_arg = 4562 # if defined(FEAT_EVAL) 4563 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4564 # endif 4565 va_arg(ap, long int); 4566 if (long_arg > 0) 4567 arg_sign = 1; 4568 else if (long_arg < 0) 4569 arg_sign = -1; 4570 break; 4571 # ifdef FEAT_NUM64 4572 case 'L': 4573 llong_arg = 4574 # if defined(FEAT_EVAL) 4575 tvs != NULL ? tv_nr(tvs, &arg_idx) : 4576 # endif 4577 va_arg(ap, varnumber_T); 4578 if (llong_arg > 0) 4579 arg_sign = 1; 4580 else if (llong_arg < 0) 4581 arg_sign = -1; 4582 break; 4583 # endif 4584 } 4585 } 4586 else 4587 { 4588 /* unsigned */ 4589 switch (length_modifier) 4590 { 4591 case '\0': 4592 case 'h': 4593 uint_arg = 4594 # if defined(FEAT_EVAL) 4595 tvs != NULL ? (unsigned) 4596 tv_nr(tvs, &arg_idx) : 4597 # endif 4598 va_arg(ap, unsigned int); 4599 if (uint_arg != 0) 4600 arg_sign = 1; 4601 break; 4602 case 'l': 4603 ulong_arg = 4604 # if defined(FEAT_EVAL) 4605 tvs != NULL ? (unsigned long) 4606 tv_nr(tvs, &arg_idx) : 4607 # endif 4608 va_arg(ap, unsigned long int); 4609 if (ulong_arg != 0) 4610 arg_sign = 1; 4611 break; 4612 # ifdef FEAT_NUM64 4613 case 'L': 4614 ullong_arg = 4615 # if defined(FEAT_EVAL) 4616 tvs != NULL ? (uvarnumber_T) 4617 tv_nr(tvs, &arg_idx) : 4618 # endif 4619 va_arg(ap, uvarnumber_T); 4620 if (ullong_arg != 0) 4621 arg_sign = 1; 4622 break; 4623 # endif 4624 } 4625 } 4626 4627 str_arg = tmp; 4628 str_arg_l = 0; 4629 4630 /* NOTE: 4631 * For d, i, u, o, x, and X conversions, if precision is 4632 * specified, the '0' flag should be ignored. This is so 4633 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux, 4634 * FreeBSD, NetBSD; but not with Perl. 4635 */ 4636 if (precision_specified) 4637 zero_padding = 0; 4638 if (fmt_spec == 'd') 4639 { 4640 if (force_sign && arg_sign >= 0) 4641 tmp[str_arg_l++] = space_for_positive ? ' ' : '+'; 4642 /* leave negative numbers for sprintf to handle, to 4643 * avoid handling tricky cases like (short int)-32768 */ 4644 } 4645 else if (alternate_form) 4646 { 4647 if (arg_sign != 0 4648 && (fmt_spec == 'b' || fmt_spec == 'B' 4649 || fmt_spec == 'x' || fmt_spec == 'X') ) 4650 { 4651 tmp[str_arg_l++] = '0'; 4652 tmp[str_arg_l++] = fmt_spec; 4653 } 4654 /* alternate form should have no effect for p 4655 * conversion, but ... */ 4656 } 4657 4658 zero_padding_insertion_ind = str_arg_l; 4659 if (!precision_specified) 4660 precision = 1; /* default precision is 1 */ 4661 if (precision == 0 && arg_sign == 0) 4662 { 4663 /* When zero value is formatted with an explicit 4664 * precision 0, the resulting formatted string is 4665 * empty (d, i, u, b, B, o, x, X, p). */ 4666 } 4667 else 4668 { 4669 char f[6]; 4670 int f_l = 0; 4671 4672 /* construct a simple format string for sprintf */ 4673 f[f_l++] = '%'; 4674 if (!length_modifier) 4675 ; 4676 else if (length_modifier == 'L') 4677 { 4678 # ifdef FEAT_NUM64 4679 # ifdef MSWIN 4680 f[f_l++] = 'I'; 4681 f[f_l++] = '6'; 4682 f[f_l++] = '4'; 4683 # else 4684 f[f_l++] = 'l'; 4685 f[f_l++] = 'l'; 4686 # endif 4687 # else 4688 f[f_l++] = 'l'; 4689 # endif 4690 } 4691 else 4692 f[f_l++] = length_modifier; 4693 f[f_l++] = fmt_spec; 4694 f[f_l++] = '\0'; 4695 4696 if (fmt_spec == 'p') 4697 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg); 4698 else if (fmt_spec == 'b' || fmt_spec == 'B') 4699 { 4700 char b[8 * sizeof(uvarnumber_T)]; 4701 size_t b_l = 0; 4702 uvarnumber_T bn = bin_arg; 4703 4704 do 4705 { 4706 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1); 4707 bn >>= 1; 4708 } 4709 while (bn != 0); 4710 4711 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l); 4712 str_arg_l += b_l; 4713 } 4714 else if (fmt_spec == 'd') 4715 { 4716 /* signed */ 4717 switch (length_modifier) 4718 { 4719 case '\0': 4720 case 'h': str_arg_l += sprintf( 4721 tmp + str_arg_l, f, int_arg); 4722 break; 4723 case 'l': str_arg_l += sprintf( 4724 tmp + str_arg_l, f, long_arg); 4725 break; 4726 # ifdef FEAT_NUM64 4727 case 'L': str_arg_l += sprintf( 4728 tmp + str_arg_l, f, llong_arg); 4729 break; 4730 # endif 4731 } 4732 } 4733 else 4734 { 4735 /* unsigned */ 4736 switch (length_modifier) 4737 { 4738 case '\0': 4739 case 'h': str_arg_l += sprintf( 4740 tmp + str_arg_l, f, uint_arg); 4741 break; 4742 case 'l': str_arg_l += sprintf( 4743 tmp + str_arg_l, f, ulong_arg); 4744 break; 4745 # ifdef FEAT_NUM64 4746 case 'L': str_arg_l += sprintf( 4747 tmp + str_arg_l, f, ullong_arg); 4748 break; 4749 # endif 4750 } 4751 } 4752 4753 /* include the optional minus sign and possible 4754 * "0x" in the region before the zero padding 4755 * insertion point */ 4756 if (zero_padding_insertion_ind < str_arg_l 4757 && tmp[zero_padding_insertion_ind] == '-') 4758 zero_padding_insertion_ind++; 4759 if (zero_padding_insertion_ind + 1 < str_arg_l 4760 && tmp[zero_padding_insertion_ind] == '0' 4761 && (tmp[zero_padding_insertion_ind + 1] == 'x' 4762 || tmp[zero_padding_insertion_ind + 1] == 'X')) 4763 zero_padding_insertion_ind += 2; 4764 } 4765 4766 { 4767 size_t num_of_digits = str_arg_l 4768 - zero_padding_insertion_ind; 4769 4770 if (alternate_form && fmt_spec == 'o' 4771 /* unless zero is already the first 4772 * character */ 4773 && !(zero_padding_insertion_ind < str_arg_l 4774 && tmp[zero_padding_insertion_ind] == '0')) 4775 { 4776 /* assure leading zero for alternate-form 4777 * octal numbers */ 4778 if (!precision_specified 4779 || precision < num_of_digits + 1) 4780 { 4781 /* precision is increased to force the 4782 * first character to be zero, except if a 4783 * zero value is formatted with an 4784 * explicit precision of zero */ 4785 precision = num_of_digits + 1; 4786 } 4787 } 4788 /* zero padding to specified precision? */ 4789 if (num_of_digits < precision) 4790 number_of_zeros_to_pad = precision - num_of_digits; 4791 } 4792 /* zero padding to specified minimal field width? */ 4793 if (!justify_left && zero_padding) 4794 { 4795 int n = (int)(min_field_width - (str_arg_l 4796 + number_of_zeros_to_pad)); 4797 if (n > 0) 4798 number_of_zeros_to_pad += n; 4799 } 4800 break; 4801 } 4802 4803 # ifdef FEAT_FLOAT 4804 case 'f': 4805 case 'F': 4806 case 'e': 4807 case 'E': 4808 case 'g': 4809 case 'G': 4810 { 4811 /* Floating point. */ 4812 double f; 4813 double abs_f; 4814 char format[40]; 4815 int l; 4816 int remove_trailing_zeroes = FALSE; 4817 4818 f = 4819 # if defined(FEAT_EVAL) 4820 tvs != NULL ? tv_float(tvs, &arg_idx) : 4821 # endif 4822 va_arg(ap, double); 4823 abs_f = f < 0 ? -f : f; 4824 4825 if (fmt_spec == 'g' || fmt_spec == 'G') 4826 { 4827 /* Would be nice to use %g directly, but it prints 4828 * "1.0" as "1", we don't want that. */ 4829 if ((abs_f >= 0.001 && abs_f < 10000000.0) 4830 || abs_f == 0.0) 4831 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f'; 4832 else 4833 fmt_spec = fmt_spec == 'g' ? 'e' : 'E'; 4834 remove_trailing_zeroes = TRUE; 4835 } 4836 4837 if ((fmt_spec == 'f' || fmt_spec == 'F') && 4838 # ifdef VAX 4839 abs_f > 1.0e38 4840 # else 4841 abs_f > 1.0e307 4842 # endif 4843 ) 4844 { 4845 /* Avoid a buffer overflow */ 4846 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec, 4847 force_sign, space_for_positive)); 4848 str_arg_l = STRLEN(tmp); 4849 zero_padding = 0; 4850 } 4851 else 4852 { 4853 if (isnan(f)) 4854 { 4855 /* Not a number: nan or NAN */ 4856 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN" 4857 : "nan"); 4858 str_arg_l = 3; 4859 zero_padding = 0; 4860 } 4861 else if (isinf(f)) 4862 { 4863 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec, 4864 force_sign, space_for_positive)); 4865 str_arg_l = STRLEN(tmp); 4866 zero_padding = 0; 4867 } 4868 else 4869 { 4870 /* Regular float number */ 4871 format[0] = '%'; 4872 l = 1; 4873 if (force_sign) 4874 format[l++] = space_for_positive ? ' ' : '+'; 4875 if (precision_specified) 4876 { 4877 size_t max_prec = TMP_LEN - 10; 4878 4879 /* Make sure we don't get more digits than we 4880 * have room for. */ 4881 if ((fmt_spec == 'f' || fmt_spec == 'F') 4882 && abs_f > 1.0) 4883 max_prec -= (size_t)log10(abs_f); 4884 if (precision > max_prec) 4885 precision = max_prec; 4886 l += sprintf(format + l, ".%d", (int)precision); 4887 } 4888 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec; 4889 format[l + 1] = NUL; 4890 4891 str_arg_l = sprintf(tmp, format, f); 4892 } 4893 4894 if (remove_trailing_zeroes) 4895 { 4896 int i; 4897 char *tp; 4898 4899 /* Using %g or %G: remove superfluous zeroes. */ 4900 if (fmt_spec == 'f' || fmt_spec == 'F') 4901 tp = tmp + str_arg_l - 1; 4902 else 4903 { 4904 tp = (char *)vim_strchr((char_u *)tmp, 4905 fmt_spec == 'e' ? 'e' : 'E'); 4906 if (tp != NULL) 4907 { 4908 /* Remove superfluous '+' and leading 4909 * zeroes from the exponent. */ 4910 if (tp[1] == '+') 4911 { 4912 /* Change "1.0e+07" to "1.0e07" */ 4913 STRMOVE(tp + 1, tp + 2); 4914 --str_arg_l; 4915 } 4916 i = (tp[1] == '-') ? 2 : 1; 4917 while (tp[i] == '0') 4918 { 4919 /* Change "1.0e07" to "1.0e7" */ 4920 STRMOVE(tp + i, tp + i + 1); 4921 --str_arg_l; 4922 } 4923 --tp; 4924 } 4925 } 4926 4927 if (tp != NULL && !precision_specified) 4928 /* Remove trailing zeroes, but keep the one 4929 * just after a dot. */ 4930 while (tp > tmp + 2 && *tp == '0' 4931 && tp[-1] != '.') 4932 { 4933 STRMOVE(tp, tp + 1); 4934 --tp; 4935 --str_arg_l; 4936 } 4937 } 4938 else 4939 { 4940 char *tp; 4941 4942 /* Be consistent: some printf("%e") use 1.0e+12 4943 * and some 1.0e+012. Remove one zero in the last 4944 * case. */ 4945 tp = (char *)vim_strchr((char_u *)tmp, 4946 fmt_spec == 'e' ? 'e' : 'E'); 4947 if (tp != NULL && (tp[1] == '+' || tp[1] == '-') 4948 && tp[2] == '0' 4949 && vim_isdigit(tp[3]) 4950 && vim_isdigit(tp[4])) 4951 { 4952 STRMOVE(tp + 2, tp + 3); 4953 --str_arg_l; 4954 } 4955 } 4956 } 4957 if (zero_padding && min_field_width > str_arg_l 4958 && (tmp[0] == '-' || force_sign)) 4959 { 4960 /* padding 0's should be inserted after the sign */ 4961 number_of_zeros_to_pad = min_field_width - str_arg_l; 4962 zero_padding_insertion_ind = 1; 4963 } 4964 str_arg = tmp; 4965 break; 4966 } 4967 # endif 4968 4969 default: 4970 /* unrecognized conversion specifier, keep format string 4971 * as-is */ 4972 zero_padding = 0; /* turn zero padding off for non-numeric 4973 conversion */ 4974 justify_left = 1; 4975 min_field_width = 0; /* reset flags */ 4976 4977 /* discard the unrecognized conversion, just keep * 4978 * the unrecognized conversion character */ 4979 str_arg = p; 4980 str_arg_l = 0; 4981 if (*p != NUL) 4982 str_arg_l++; /* include invalid conversion specifier 4983 unchanged if not at end-of-string */ 4984 break; 4985 } 4986 4987 if (*p != NUL) 4988 p++; /* step over the just processed conversion specifier */ 4989 4990 /* insert padding to the left as requested by min_field_width; 4991 * this does not include the zero padding in case of numerical 4992 * conversions*/ 4993 if (!justify_left) 4994 { 4995 /* left padding with blank or zero */ 4996 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad)); 4997 4998 if (pn > 0) 4999 { 5000 if (str_l < str_m) 5001 { 5002 size_t avail = str_m - str_l; 5003 5004 vim_memset(str + str_l, zero_padding ? '0' : ' ', 5005 (size_t)pn > avail ? avail 5006 : (size_t)pn); 5007 } 5008 str_l += pn; 5009 } 5010 } 5011 5012 /* zero padding as requested by the precision or by the minimal 5013 * field width for numeric conversions required? */ 5014 if (number_of_zeros_to_pad == 0) 5015 { 5016 /* will not copy first part of numeric right now, * 5017 * force it to be copied later in its entirety */ 5018 zero_padding_insertion_ind = 0; 5019 } 5020 else 5021 { 5022 /* insert first part of numerics (sign or '0x') before zero 5023 * padding */ 5024 int zn = (int)zero_padding_insertion_ind; 5025 5026 if (zn > 0) 5027 { 5028 if (str_l < str_m) 5029 { 5030 size_t avail = str_m - str_l; 5031 5032 mch_memmove(str + str_l, str_arg, 5033 (size_t)zn > avail ? avail 5034 : (size_t)zn); 5035 } 5036 str_l += zn; 5037 } 5038 5039 /* insert zero padding as requested by the precision or min 5040 * field width */ 5041 zn = (int)number_of_zeros_to_pad; 5042 if (zn > 0) 5043 { 5044 if (str_l < str_m) 5045 { 5046 size_t avail = str_m - str_l; 5047 5048 vim_memset(str + str_l, '0', 5049 (size_t)zn > avail ? avail 5050 : (size_t)zn); 5051 } 5052 str_l += zn; 5053 } 5054 } 5055 5056 /* insert formatted string 5057 * (or as-is conversion specifier for unknown conversions) */ 5058 { 5059 int sn = (int)(str_arg_l - zero_padding_insertion_ind); 5060 5061 if (sn > 0) 5062 { 5063 if (str_l < str_m) 5064 { 5065 size_t avail = str_m - str_l; 5066 5067 mch_memmove(str + str_l, 5068 str_arg + zero_padding_insertion_ind, 5069 (size_t)sn > avail ? avail : (size_t)sn); 5070 } 5071 str_l += sn; 5072 } 5073 } 5074 5075 /* insert right padding */ 5076 if (justify_left) 5077 { 5078 /* right blank padding to the field width */ 5079 int pn = (int)(min_field_width 5080 - (str_arg_l + number_of_zeros_to_pad)); 5081 5082 if (pn > 0) 5083 { 5084 if (str_l < str_m) 5085 { 5086 size_t avail = str_m - str_l; 5087 5088 vim_memset(str + str_l, ' ', 5089 (size_t)pn > avail ? avail 5090 : (size_t)pn); 5091 } 5092 str_l += pn; 5093 } 5094 } 5095 vim_free(tofree); 5096 } 5097 } 5098 5099 if (str_m > 0) 5100 { 5101 /* make sure the string is nul-terminated even at the expense of 5102 * overwriting the last character (shouldn't happen, but just in case) 5103 * */ 5104 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0'; 5105 } 5106 5107 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN) 5108 emsg(_("E767: Too many arguments to printf()")); 5109 5110 /* Return the number of characters formatted (excluding trailing nul 5111 * character), that is, the number of characters that would have been 5112 * written to the buffer if it were large enough. */ 5113 return (int)str_l; 5114 } 5115 5116 #endif /* PROTO */ 5117