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