1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
|
/*
* The functions in this file negotiate with the operating system for
* characters, and write characters in a barely buffered fashion on the display.
* All operating systems.
*
* $Header: /usr/build/vile/vile/RCS/termio.c,v 1.220 2010/05/01 12:33:07 tom Exp $
*
*/
#include "estruct.h"
#include "edef.h"
#include "nefunc.h"
#if CC_DJGPP
# include <pc.h> /* for kbhit() */
#endif
#if SYS_UNIX
static void ttmiscinit(void);
/* there are three copies of the tt...() routines here -- one each for
POSIX termios, traditional termio, and sgtty. If you have a
choice, I recommend them in that order. */
/* ttopen() and ttclose() are responsible for putting the terminal in raw
mode, setting up terminal signals, etc.
ttclean() prepares the terminal for shell escapes, and ttunclean() gets
us back into vile's mode
*/
/* I suppose this config stuff should move to estruct.h */
#if defined(HAVE_TERMIOS_H) && defined(HAVE_TCGETATTR)
/* Note: <termios.h> is available on some systems, but in order to use it
* a special library needs to be linked in. This is the case on the NeXT
* where libposix.a needs to be linked in. Unfortunately libposix.a is buggy.
* So we have the configuration script test to make sure that tcgetattr is
* available through the standard set of libraries in order to help us
* determine whether or not to use <termios.h>.
*/
# define USE_POSIX_TERMIOS 1
# define USE_FCNTL 1
#else
# define USE_POSIX_TERMIOS 0
# ifdef HAVE_TERMIO_H
# define USE_TERMIO 1
# define USE_FCNTL 1
# else
# ifdef HAVE_SGTTY_H
# define USE_SGTTY 1
# define USE_FIONREAD 1
# else
error "No termios or sgtty"
# endif
# endif
#endif
/* FIXME: There used to be code here which dealt with OSF1 not working right
* with termios. We will have to determine if this is still the case and
* add code here to deal with it if so.
*/
#if !defined(FIONREAD)
/* try harder to get it */
# ifdef HAVE_SYS_FILIO_H
# include <sys/filio.h>
# else /* if you have trouble including ioctl.h, try "sys/ioctl.h" instead */
# ifdef HAVE_IOCTL_H
# include <ioctl.h>
# else
# ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
# define VL_sys_ioctl
# endif
# endif
# endif
#endif
#if DISP_X11 /* don't use either one */
# undef USE_FCNTL
# undef USE_FIONREAD
#else
# if defined(FIONREAD)
/* there seems to be a bug in someone's implementation of fcntl -- it causes
* output to be flushed if you change to ndelay input while output is
* pending. (In some instances, the fcntl sets O_NDELAY on the output!).
*
* For these systems, we use FIONREAD instead, if possible.
* In fact, try to use FIONREAD in any case if present. If you have
* the problem with fcntl, you'll notice that the screen doesn't always
* refresh correctly, as if the fcntl is interfering with the output drain.
*/
# undef USE_FCNTL
# define USE_FIONREAD 1
# endif
# if defined(HAVE_SELECT) && defined(HAVE_TYPE_FD_SET)
/* Attempt to use the select call if possible to find out if input is
* ready. This will allow us to use the file descriptor watching
* facilities.
*/
# define USE_SELECT 1
# undef USE_FCNTL
# undef USE_FIONREAD
# else
# if defined(HAVE_POLL) && defined(HAVE_POLL_H)
# define USE_POLL 1
# endif
# endif
#endif
#ifndef USE_FIONREAD
#define USE_FIONREAD 0
#endif
#ifndef USE_FCNTL
#define USE_FCNTL 0
#endif
#ifndef USE_POLL
#define USE_POLL 0
#endif
#ifndef USE_SELECT
#define USE_SELECT 0
#endif
#ifndef USE_SGTTY
#define USE_SGTTY 0
#endif
#ifndef USE_TERMIO
#define USE_TERMIO 0
#endif
#if USE_POLL
#include <poll.h>
#endif
#if !defined(O_NDELAY) && defined(O_NONBLOCK)
#define O_NDELAY O_NONBLOCK
#endif
#ifndef O_NDELAY
#undef USE_FCNTL
#define USE_FCNTL 0
#endif
#if USE_FCNTL
#include <fcntl.h>
static char kbd_char; /* one char of typeahead, gotten during poll */
static int kbd_char_good; /* is a char in kbd_char? */
/*
* putting the input tty in polling mode lets us check for
* user typeahead
*/
static void
set_kbd_polling(int yes)
{
static int kbd_flags = -1; /* initial keyboard flags */
static int kbd_is_polled; /* are we in O_NDELAY mode? */
if (kbd_flags == -1) {
kbd_flags = fcntl(0, F_GETFL, 0);
if (kbd_flags == -1)
imdying(SIGINT);
kbd_is_polled = FALSE;
}
if (yes) { /* turn polling on -- put us in NDELAY mode */
if (!kbd_is_polled) {
if (fcntl(0, F_SETFL, kbd_flags | O_NDELAY) < 0)
imdying(SIGINT);
}
kbd_is_polled = TRUE; /* I think */
} else { /* turn polling off -- clear NDELAY mode */
if (kbd_is_polled) {
if (fcntl(0, F_SETFL, kbd_flags) < 0)
imdying(SIGINT);
}
kbd_is_polled = FALSE;
}
}
#endif
#define SMALL_STDOUT 1
#if defined(SMALL_STDOUT) && (defined (USE_FCNTL) || defined(USE_FIONREAD))
#define TBUFSIZ 128 /* Provide a smaller terminal output buffer so that
the type-ahead detection works better (more often).
That is, we overlap screen writing with more keyboard polling */
#else
#define TBUFSIZ 1024 /* reduces the number of writes */
#endif
#if USE_POSIX_TERMIOS
#include <termios.h>
#ifdef NEED_PTEM_H
/* they neglected to define struct winsize in termios.h -- it's only
in termio.h */
#include <sys/stream.h>
#include <sys/ptem.h>
#endif
#ifndef VDISABLE
# ifdef _POSIX_VDISABLE
# define VDISABLE _POSIX_VDISABLE
# else
# define VDISABLE '\0'
# endif
#endif
static int saved_tty = FALSE;
static struct termios otermios;
#if !DISP_X11
static struct termios ntermios;
static char tobuf[TBUFSIZ]; /* terminal output buffer */
#endif
void
vl_save_tty(void)
{
int s;
s = tcgetattr(0, &otermios);
if (s < 0) {
perror("vl_save_tty tcgetattr");
ExitProgram(BADEXIT);
}
suspc = otermios.c_cc[VSUSP];
intrc = otermios.c_cc[VINTR];
killc = otermios.c_cc[VKILL];
startc = otermios.c_cc[VSTART];
stopc = otermios.c_cc[VSTOP];
backspc = otermios.c_cc[VERASE];
#ifdef VWERASE /* Sun has it. any others? */
wkillc = otermios.c_cc[VWERASE];
#else
wkillc = tocntrl('W');
#endif
saved_tty = TRUE;
}
void
vl_restore_tty(void)
{
if (saved_tty) {
tcdrain(1);
tcsetattr(0, TCSADRAIN, &otermios);
}
}
void
ttopen(void)
{
vl_save_tty();
#if !DISP_X11
#ifdef HAVE_SETVBUF
# ifdef SETVBUF_REVERSED
setvbuf(stdout, _IOFBF, tobuf, TBUFSIZ);
# else
setvbuf(stdout, tobuf, _IOFBF, TBUFSIZ);
# endif
#else /* !HAVE_SETVBUF */
setbuffer(stdout, tobuf, TBUFSIZ);
#endif /* !HAVE_SETVBUF */
#endif /* !DISP_X11 */
/* this could probably be done more POSIX'ish? */
#if OPT_SHELL && defined(SIGTSTP) && defined(SIGCONT)
setup_handler(SIGTSTP, SIG_DFL); /* set signals so that we can */
setup_handler(SIGCONT, rtfrmshell); /* suspend & restart */
#endif
#ifdef SIGTTOU
setup_handler(SIGTTOU, SIG_IGN); /* ignore output prevention */
#endif
#if ! DISP_X11
ntermios = otermios;
/* new input settings: turn off crnl mapping, cr-ignoring,
* case-conversion, and allow BREAK
*/
ntermios.c_iflag = BRKINT | (otermios.c_iflag &
(ULONG) ~ (INLCR | IGNCR | ICRNL
#ifdef IUCLC
| IUCLC
#endif
));
ntermios.c_oflag = 0;
ntermios.c_lflag = ISIG;
ntermios.c_cc[VMIN] = 1;
ntermios.c_cc[VTIME] = 0;
#ifdef VSWTCH
ntermios.c_cc[VSWTCH] = VDISABLE;
#endif
ntermios.c_cc[VSUSP] = VDISABLE;
#if defined (VDSUSP) && defined(NCCS) && VDSUSP < NCCS
ntermios.c_cc[VDSUSP] = VDISABLE;
#endif
ntermios.c_cc[VSTART] = VDISABLE;
ntermios.c_cc[VSTOP] = VDISABLE;
#endif /* ! DISP_X11 */
ttmiscinit();
term.unclean();
}
/* we disable the flow control chars so we can use ^S as a command, but
some folks still need it. they can put "flow-control-enable" in their
.vilerc
no argument: re-enable ^S/^Q processing in the driver
with arg: disable it
*/
/* ARGSUSED */
int
flow_control_enable(int f GCC_UNUSED, int n GCC_UNUSED)
{
#if !DISP_X11
if (!f) {
ntermios.c_cc[VSTART] = (char) startc;
ntermios.c_cc[VSTOP] = (char) stopc;
} else {
ntermios.c_cc[VSTART] = VDISABLE;
ntermios.c_cc[VSTOP] = VDISABLE;
}
term.unclean();
#endif
return TRUE;
}
void
ttclose(void)
{
term.clean(TRUE);
}
/*
* Clean up in anticipation for a return to the
* operating system. Move down to the last line and advance, to make room
* for the system prompt. Shut down the channel to the
* terminal.
*/
/*ARGSUSED*/
void
ttclean(int f GCC_UNUSED)
{
#if !DISP_X11
if (f)
term.openup();
(void) fflush(stdout);
vl_restore_tty();
term.flush();
term.close();
term.kclose();
#if USE_FCNTL
set_kbd_polling(FALSE);
#endif
#endif
}
void
ttunclean(void)
{
#if ! DISP_X11
tcdrain(1);
tcsetattr(0, TCSADRAIN, &ntermios);
#endif
}
#endif /* USE_POSIX_TERMIOS */
#if USE_TERMIO
#include <termio.h>
/* original terminal characteristics and characteristics to use inside */
struct termio otermio, ntermio;
static int saved_tty = FALSE;
#ifdef HAVE_SETBUFFER /* setbuffer() isn't on most termio systems */
char tobuf[TBUFSIZ]; /* terminal output buffer */
#endif
void
vl_save_tty(void)
{
ioctl(0, TCGETA, (char *) &otermio); /* save old settings */
intrc = otermio.c_cc[VINTR];
killc = otermio.c_cc[VKILL];
startc = tocntrl('Q');
stopc = tocntrl('S');
backspc = otermio.c_cc[VERASE];
wkillc = tocntrl('W');
#if SIGTSTP
#ifdef V_SUSP
suspc = otermio.c_cc[V_SUSP];
#else
suspc = -1;
#endif
#else /* no SIGTSTP */
suspc = tocntrl('Z');
#endif
saved_tty = TRUE;
}
void
vl_restore_tty(void)
{
if (saved_tty)
ioctl(0, TCSETAF, (char *) &otermio);
}
void
ttopen(void)
{
vl_save_tty();
#if defined(HAVE_SETBUFFER) && !DISP_X11
setbuffer(stdout, tobuf, TBUFSIZ);
#endif
#if SIGTSTP
/* be careful here -- VSUSP is sometimes out of the range of the c_cc array */
#ifdef V_SUSP
ntermio.c_cc[V_SUSP] = -1;
#endif
#ifdef V_DSUSP
ntermio.c_cc[V_DSUSP] = -1;
#endif
#if OPT_SHELL
setup_handler(SIGTSTP, SIG_DFL); /* set signals so that we can */
setup_handler(SIGCONT, rtfrmshell); /* suspend & restart */
#endif
setup_handler(SIGTTOU, SIG_IGN); /* ignore output prevention */
#endif
#if ! DISP_X11
ntermio = otermio;
/* setup new settings, allow BREAK */
ntermio.c_iflag = BRKINT;
ntermio.c_oflag = 0;
ntermio.c_lflag = ISIG;
ntermio.c_cc[VMIN] = 1;
ntermio.c_cc[VTIME] = 0;
#ifdef VSWTCH
ntermio.c_cc[VSWTCH] = -1;
#endif
#endif
ttmiscinit();
term.unclean();
}
/* we disable the flow control chars so we can use ^S as a command, but
some folks still need it. they can put "flow-control-enable" in their
.vilerc */
/* ARGSUSED */
int
flow_control_enable(int f, int n)
{
#if !DISP_X11
ntermio.c_iflag &= ~(IXON | IXANY | IXOFF);
if (!f)
ntermio.c_iflag |= otermio.c_iflag & (IXON | IXANY | IXOFF);
term.unclean();
#endif
return TRUE;
}
void
ttclose(void)
{
term.clean(TRUE);
}
void
ttclean(int f)
{
#if ! DISP_X11
if (f)
term.openup();
(void) fflush(stdout);
term.flush();
term.close();
term.kclose(); /* xterm */
vl_restore_tty();
#if USE_FCNTL
set_kbd_polling(FALSE);
#endif
#endif /* DISP_X11 */
}
void
ttunclean(void)
{
#if ! DISP_X11
ioctl(0, TCSETAW, (char *) &ntermio);
#endif
}
#endif /* USE_TERMIO */
#if USE_SGTTY
#if USE_FIONREAD
char tobuf[TBUFSIZ]; /* terminal output buffer */
#endif
#undef CTRL
#include <sgtty.h> /* for stty/gtty functions */
static int saved_tty = FALSE;
struct sgttyb ostate; /* saved tty state */
struct sgttyb nstate; /* values for editor mode */
struct sgttyb rnstate; /* values for raw editor mode */
int olstate; /* Saved local mode values */
int nlstate; /* new local mode values */
struct ltchars oltchars; /* Saved terminal special character set */
struct ltchars nltchars =
{-1, -1, -1, -1, -1, -1}; /* a lot of nothing */
struct tchars otchars; /* Saved terminal special character set */
struct tchars ntchars; /* = { -1, -1, -1, -1, -1, -1 }; */
void
vl_save_tty(void)
{
ioctl(0, TIOCGETP, (char *) &ostate); /* save old state */
killc = ostate.sg_kill;
backspc = ostate.sg_erase;
ioctl(0, TIOCGETC, (char *) &otchars); /* Save old characters */
intrc = otchars.t_intrc;
startc = otchars.t_startc;
stopc = otchars.t_stopc;
ioctl(0, TIOCGLTC, (char *) &oltchars); /* Save old characters */
wkillc = oltchars.t_werasc;
suspc = oltchars.t_suspc;
#ifdef TIOCLGET
ioctl(0, TIOCLGET, (char *) &olstate);
#endif
saved_tty = TRUE;
}
void
vl_restore_tty(void)
{
if (saved_tty) {
ioctl(0, TIOCSETN, (char *) &ostate);
ioctl(0, TIOCSETC, (char *) &otchars);
ioctl(0, TIOCSLTC, (char *) &oltchars);
#ifdef TIOCLSET
ioctl(0, TIOCLSET, (char *) &olstate);
#endif
}
}
void
ttopen(void)
{
vl_save_tty();
#if ! DISP_X11
nstate = ostate;
nstate.sg_flags |= CBREAK;
nstate.sg_flags &= ~(ECHO | CRMOD); /* no echo for now... */
ioctl(0, TIOCSETN, (char *) &nstate); /* set new state */
#endif
rnstate = nstate;
rnstate.sg_flags &= ~CBREAK;
rnstate.sg_flags |= RAW;
#if ! DISP_X11
ntchars = otchars;
ntchars.t_brkc = -1;
ntchars.t_eofc = -1;
ntchars.t_startc = -1;
ntchars.t_stopc = -1;
ioctl(0, TIOCSETC, (char *) &ntchars); /* Place new character into K */
ioctl(0, TIOCSLTC, (char *) &nltchars); /* Place new character into K */
#ifdef TIOCLGET
nlstate = olstate;
nlstate |= LLITOUT;
ioctl(0, TIOCLSET, (char *) &nlstate);
#endif
#if OPT_SHELL
setup_handler(SIGTSTP, SIG_DFL); /* set signals so that we can */
setup_handler(SIGCONT, rtfrmshell); /* suspend & restart */
#endif
setup_handler(SIGTTOU, SIG_IGN); /* ignore output prevention */
#endif
#if USE_FIONREAD
setbuffer(stdout, tobuf, TBUFSIZ);
#endif
ttmiscinit();
}
/* we disable the flow control chars so we can use ^S as a command, but
some folks still need it. they can put "flow-control-enable" in their
.vilerc */
/* ARGSUSED */
int
flow_control_enable(int f, int n)
{
#if !DISP_X11
if (!f) {
ntchars.t_startc = startc;
ntchars.t_stopc = stopc;
} else {
ntchars.t_startc = -1;
ntchars.t_stopc = -1;
}
term.unclean();
#endif
return TRUE;
}
void
ttclose(void)
{
term.clean(TRUE);
}
void
ttclean(int f)
{
#if ! DISP_X11
if (f)
term.openup();
term.flush();
term.close();
term.kclose(); /* xterm */
vl_restore_tty();
#endif
}
void
ttunclean(void)
{
#if ! DISP_X11
ioctl(0, TIOCSETN, (char *) &nstate);
ioctl(0, TIOCSETC, (char *) &ntchars);
ioctl(0, TIOCSLTC, (char *) &nltchars);
#ifdef TIOCLSET
ioctl(0, TIOCLSET, (char *) &nlstate);
#endif
#endif /* !DISP_X11 */
}
#endif /* USE_SGTTY */
#if !DISP_X11
OUTC_DCL
ttputc(OUTC_ARGS)
{
OUTC_RET vl_ttputc(c);
}
OUTC_DCL
vl_ttputc(int c)
{
OUTC_RET putchar((char) c);
}
void
ttflush(void)
{
(void) fflush(stdout);
}
#if USE_SELECT
static fd_set watchfd_read_fds;
static fd_set watchfd_write_fds;
static int watchfd_maxfd;
#else
#if USE_POLL
static struct pollfd watch_fds[256];
static int watch_max;
#else
#ifdef __BEOS__
static UCHAR watch_fds[256];
static int watch_max;
#endif /* __BEOS__ */
#endif /* USE_POLL */
#endif /* USE_SELECT */
int
ttwatchfd(int fd, WATCHTYPE type, long *idp)
{
#if USE_SELECT
*idp = (long) fd;
if (fd > watchfd_maxfd)
watchfd_maxfd = fd;
if (type & WATCHREAD)
FD_SET(fd, &watchfd_read_fds);
if (type & WATCHWRITE)
FD_SET(fd, &watchfd_write_fds);
#else /* USE_SELECT */
#if USE_POLL
int n;
for (n = 0; n < watch_max; n++) {
if (watch_fds[n].fd == fd)
break;
}
if (n < (int) TABLESIZE(watch_fds) - 1) {
*idp = (long) fd;
if (n >= watch_max)
watch_max = n + 1;
watch_fds[n].fd = fd;
if (type & WATCHREAD)
watch_fds[n].events |= POLLIN;
if (type & WATCHWRITE)
watch_fds[n].events |= POLLOUT;
} else {
return FALSE;
}
#else
#ifdef __BEOS__
if (fd < (int) sizeof(watch_fds)) {
*idp = (long) fd;
if (fd > watch_max)
watch_max = fd;
watch_fds[fd] |= type;
}
#endif /* __BEOS__ */
#endif /* USE_POLL */
#endif /* USE_SELECT */
return TRUE;
}
/* ARGSUSED */
void
ttunwatchfd(int fd, long id GCC_UNUSED)
{
#if USE_SELECT
FD_CLR(fd, &watchfd_read_fds);
FD_CLR(fd, &watchfd_write_fds);
while (watchfd_maxfd != 0
&& !FD_ISSET(watchfd_maxfd - 1, &watchfd_read_fds)
&& !FD_ISSET(watchfd_maxfd - 1, &watchfd_write_fds))
watchfd_maxfd--;
#else /* USE_SELECT */
#if USE_POLL
int n;
for (n = 0; n < watch_max; n++) {
if (watch_fds[n].fd == fd) {
watch_max--;
while (n < watch_max) {
watch_fds[n] = watch_fds[n + 1];
n++;
}
break;
}
}
#else
#ifdef __BEOS__
if (fd < (int) sizeof(watch_fds)) {
watch_fds[fd] = 0;
while (watch_max != 0
&& watch_fds[watch_max - 1] == 0) {
watch_max--;
}
}
#endif /* __BEOS__ */
#endif /* USE_POLL */
#endif /* USE_SELECT */
}
#ifdef VAL_AUTOCOLOR
#define val_autocolor() global_b_val(VAL_AUTOCOLOR)
#else
#define val_autocolor() 0
#endif
#if USE_SELECT || USE_POLL
static int
vl_getchar(void)
{
char c;
int n;
n = read(0, &c, 1);
if (n <= 0) {
if (n < 0 && errno == EINTR)
return -1;
imdying(SIGINT);
}
return (c & 0xff);
}
#endif
/*
* Read a character from the terminal, performing no editing and doing no echo
* at all.
*/
int
ttgetc(void)
{
#if USE_SELECT
for_ever {
fd_set read_fds;
fd_set write_fds;
fd_set except_fds;
int fd, status;
struct timeval tval;
int acmilli = val_autocolor();
read_fds = watchfd_read_fds;
write_fds = watchfd_write_fds;
except_fds = watchfd_read_fds;
tval.tv_sec = acmilli / 1000;
tval.tv_usec = (acmilli % 1000) * 1000;
FD_SET(0, &read_fds); /* add stdin to the set */
FD_SET(0, &except_fds);
status = select(watchfd_maxfd + 1,
&read_fds, &write_fds, &except_fds,
acmilli > 0 ? &tval : NULL);
if (status < 0) { /* Error */
if (errno == EINTR)
continue;
else
return -1;
} else if (status > 0) { /* process descriptors */
for (fd = watchfd_maxfd; fd > 0; fd--) {
if (FD_ISSET(fd, &read_fds)
|| FD_ISSET(fd, &write_fds)
|| FD_ISSET(fd, &except_fds))
dowatchcallback(fd);
}
if (FD_ISSET(0, &read_fds) || FD_ISSET(0, &except_fds))
break;
} else { /* Timeout */
autocolor();
}
}
return vl_getchar();
#else /* !USE_SELECT */
#if USE_POLL
int acmilli = val_autocolor();
if (acmilli != 0
|| watch_max != 0) {
int n;
for_ever {
watch_fds[watch_max].fd = 0;
watch_fds[watch_max].events = POLLIN;
watch_fds[watch_max].revents = 0;
if ((n = poll(watch_fds, watch_max + 1, acmilli)) > 0) {
for (n = 0; n < watch_max; n++) {
if (watch_fds[n].revents & (POLLIN | POLLOUT | POLLERR)) {
dowatchcallback(watch_fds[n].fd);
}
}
if (watch_fds[watch_max].revents & (POLLIN | POLLERR))
break;
} else if (n == 0 && acmilli != 0) {
autocolor();
if (watch_max == 0)
break; /* revert to blocking input */
}
}
}
return vl_getchar();
#else
#if USE_FCNTL
if (!kbd_char_good) {
int n;
set_kbd_polling(FALSE);
n = read(0, &kbd_char, 1);
if (n <= 0) {
if (n < 0 && errno == EINTR)
return -1;
imdying(SIGINT);
}
}
kbd_char_good = FALSE;
return (kbd_char);
#else /* USE_FCNTL */
#ifdef __BEOS__
int fd;
int acmilli = val_autocolor();
for_ever {
for (fd = 1; fd < watch_max; fd++) {
if (((watch_fds[fd] & WATCHREAD) != 0 && beos_has_input(fd))
|| ((watch_fds[fd] & WATCHWRITE) != 0 && beos_can_output(fd))) {
dowatchcallback(fd);
}
}
if (beos_has_input(0))
break;
if (acmilli > 0) {
beos_napms(5);
if ((acmilli -= 5) <= 0) {
autocolor();
}
}
}
return getchar();
#else /* __BEOS__ */
int c;
c = getchar();
if (c == EOF) {
#ifdef linux
/*
* The command "^X!vile -V" makes vile receive an EOF at this
* point. In fact, I've seen as many as 20,000 to 35,000 EOF's
* in a row at this point, presumably while the processes are
* fighting over /dev/tty. The corresponding errno is ESPIPE
* (invalid seek).
*
* (tested with Linux 2.0.36 and 2.2.5-15)
*/
return -1;
#else
if (errno == EINTR)
return -1;
imdying(SIGINT);
#endif
}
return c;
#endif /* __BEOS__ */
#endif /* USE_FCNTL */
#endif /* USE_POLL */
#endif /* USE_SELECT */
}
#endif /* !DISP_X11 */
/* tttypahead: Check to see if any characters are already in the
keyboard buffer
*/
int
tttypahead(void)
{
#if DISP_X11
return x_milli_sleep(0);
#else
# if USE_SELECT || USE_POLL || defined(__BEOS__)
/* use the watchinput part of catnap if it's useful */
return catnap(0, TRUE);
# else
# if USE_FIONREAD
{
long x;
return ((ioctl(0, FIONREAD, (void *) &x) < 0) ? 0 : (int) x);
}
# else
# if USE_FCNTL
if (!kbd_char_good) {
set_kbd_polling(TRUE);
if (read(0, &kbd_char, 1) == 1)
kbd_char_good = TRUE;
}
return (kbd_char_good);
# else
/* otherwise give up */
return FALSE;
# endif /* USE_FCNTL */
# endif /* USE_FIONREAD */
# endif /* using catnap */
#endif /* DISP_X11 */
}
/* this takes care of some stuff that's common across all ttopen's. Some of
it should arguably be somewhere else, but... */
static void
ttmiscinit(void)
{
/* make sure backspace is bound to backspace */
asciitbl[backspc] = &f_backchar_to_bol;
#if !DISP_X11
/* no buffering on input */
setbuf(stdin, (char *) 0);
#endif
}
#else /* not SYS_UNIX */
#if SYS_MSDOS || SYS_OS2 || SYS_WINNT
# if CC_DJGPP
# include <gppconio.h>
# else
# if CC_NEWDOSCC
# include <conio.h>
# endif
# endif
#endif
void
ttopen(void)
{
/* make sure backspace is bound to backspace */
asciitbl[backspc] = &f_backchar_to_bol;
}
void
ttclose(void)
{
term.clean(TRUE);
}
void
ttclean(int f)
{
#if !DISP_X11
if (f)
term.openup();
term.flush();
term.close();
term.kclose();
#endif
}
void
ttunclean(void)
{
}
/*
* Write a character to the display.
* On CPM terminal I/O unbuffered, so we just write the byte out. Ditto on
* MS-DOS (use the very very raw console output routine).
*/
OUTC_DCL
ttputc(OUTC_ARGS)
{
#if SYS_OS2 && !DISP_VIO
OUTC_RET putch(c);
#endif
#if SYS_MSDOS
# if DISP_ANSI
OUTC_RET putchar(c);
# endif
#endif
}
/*
* Flush terminal buffer. Does real work where the terminal output is buffered
* up. A no-operation on systems where byte at a time terminal I/O is done.
*/
void
ttflush(void)
{
#if SYS_MSDOS
# if DISP_ANSI
fflush(stdout);
# endif
#endif
}
/*
* Read a character from the terminal, performing no editing and doing no echo
* at all. Very simple on CPM, because the system can do exactly what you
* want.
* This should be a terminal dispatch function.
*/
int
ttgetc(void)
{
#if SYS_MSDOS || SYS_OS2
/*
* If we've got a mouse, poll waiting for mouse movement and mouse
* clicks until we've got a character to return.
*/
#if CC_MSC || CC_TURBO || SYS_OS2
return getch();
#endif
#if CC_NEWDOSCC && !(CC_MSC||CC_TURBO||SYS_OS2||SYS_WINNT)
{
int c;
union REGS rg; /* cpu registers for DOS calls */
static int nxtchar = -1;
/* if a char already is ready, return it */
if (nxtchar >= 0) {
c = nxtchar;
nxtchar = -1;
return (c);
}
/* call the dos to get a char */
rg.h.ah = 7; /* dos Direct Console Input call */
intdos(&rg, &rg);
c = rg.h.al; /* grab the char */
return (c & 0xff);
}
#endif
#else /* ! (SYS_MSDOS || SYS_OS2) */
/* Not used. */
return 0;
#endif
}
/* tttypahead: See if the user has more characters waiting in the
keyboard buffer
*/
#if ! SYS_WINNT && !SYS_VMS
int
tttypahead(void)
{
#if DISP_X11
return x_milli_sleep(0);
#endif
#if SYS_MSDOS || SYS_OS2
return (kbhit() != 0);
#endif
}
#endif
#endif /* not SYS_UNIX */
#ifdef HAVE_SIZECHANGE
#if !defined(VL_sys_ioctl)
#if !defined(sun) || !defined(HAVE_TERMIOS_H)
#include <sys/ioctl.h>
#endif
#endif
/*
* SCO defines TIOCGSIZE and the corresponding struct. Other systems (SunOS,
* Solaris, IRIX) define TIOCGWINSZ and struct winsize.
*/
#ifdef TIOCGSIZE
# define IOCTL_GET_WINSIZE TIOCGSIZE
# define IOCTL_SET_WINSIZE TIOCSSIZE
# define STRUCT_WINSIZE struct ttysize
# define WINSIZE_ROWS(n) n.ts_lines
# define WINSIZE_COLS(n) n.ts_cols
#else
# ifdef TIOCGWINSZ
# define IOCTL_GET_WINSIZE TIOCGWINSZ
# define IOCTL_SET_WINSIZE TIOCSWINSZ
# define STRUCT_WINSIZE struct winsize
# define WINSIZE_ROWS(n) n.ws_row
# define WINSIZE_COLS(n) n.ws_col
# endif
#endif
#endif /* HAVE_SIZECHANGE */
/* Get terminal size from system, first trying the driver, and then
* the environment. Store number of lines into *heightp and width
* into *widthp. If zero or a negative number is stored, the value
* is not valid. This may be fixed (in the tcap.c case) by the TERM
* variable.
*/
#if ! DISP_X11
void
getscreensize(int *widthp, int *heightp)
{
char *e;
#ifdef HAVE_SIZECHANGE
STRUCT_WINSIZE size;
#endif
*widthp = 0;
*heightp = 0;
#ifdef HAVE_SIZECHANGE
if (ioctl(0, IOCTL_GET_WINSIZE, (void *) &size) == 0) {
if ((int) (WINSIZE_ROWS(size)) > 0)
*heightp = WINSIZE_ROWS(size);
if ((int) (WINSIZE_COLS(size)) > 0)
*widthp = WINSIZE_COLS(size);
}
if (*widthp <= 0) {
e = getenv("COLUMNS");
if (e)
*widthp = atoi(e);
}
if (*heightp <= 0) {
e = getenv("LINES");
if (e)
*heightp = atoi(e);
}
#else
e = getenv("COLUMNS");
if (e)
*widthp = atoi(e);
e = getenv("LINES");
if (e)
*heightp = atoi(e);
#endif
}
#endif
/******************************************************************************/
/*
* This function is used during terminal initialization to allow us to setup
* either a dumb or null terminal driver to handle stray command-line and other
* debris, then (in the second call), open the screen driver.
*/
int
open_terminal(TERM * termp)
{
static TERM save_term;
static int initialized;
if (!initialized++) {
/*
* Help separate dumb_term from termio.c
*/
if (termp != &null_term) {
if (termp->clean == nullterm_clean)
termp->clean = ttclean;
if (termp->unclean == nullterm_unclean)
termp->unclean = ttunclean;
if (termp->openup == nullterm_openup)
termp->openup = kbd_openup;
}
/*
* If the open and/or close slots are empty, fill them in with
* the screen driver's functions.
*/
if (termp->open == 0)
termp->open = term.open;
if (termp->close == 0)
termp->close = term.close;
/*
* If the command-line driver is the same as the screen driver,
* then all we're really doing is opening the terminal in raw
* mode (e.g., the termcap driver), but with restrictions on
* cursor movement, etc. We do a bit of juggling, because the
* screen driver typically sets entries (such as the screen
* size) in the 'term' struct.
*/
if (term.open == termp->open) {
term.open();
save_term = term;
term = *termp;
} else {
save_term = term;
term = *termp;
term.open();
}
} else {
/*
* If the command-line driver isn't the same as the screen
* driver, reopen the terminal with the screen driver.
*/
if (save_term.open != term.open) {
term.close();
term = save_term;
term.open();
} else {
term = save_term;
}
}
return TRUE;
}
|