Dialog sheet animation can no longer cause a crash
[MacVim.git] / src / os_unix.c
blob205029a8eaec8d27a3289407dbc381ae3e067c5f
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * OS/2 port by Paul Slootman
5 * VMS merge by Zoltan Arpadffy
7 * Do ":help uganda" in Vim to read copying and usage conditions.
8 * Do ":help credits" in Vim to see a list of people who contributed.
9 * See README.txt for an overview of the Vim source code.
13 * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...)
14 * Also for OS/2, using the excellent EMX package!!!
15 * Also for BeOS and Atari MiNT.
17 * A lot of this file was originally written by Juergen Weigert and later
18 * changed beyond recognition.
22 * Some systems have a prototype for select() that has (int *) instead of
23 * (fd_set *), which is wrong. This define removes that prototype. We define
24 * our own prototype below.
25 * Don't use it for the Mac, it causes a warning for precompiled headers.
26 * TODO: use a configure check for precompiled headers?
28 #if !defined(__APPLE__) && !defined(__TANDEM)
29 # define select select_declared_wrong
30 #endif
32 #include "vim.h"
34 #ifdef FEAT_MZSCHEME
35 # include "if_mzsch.h"
36 #endif
38 #include "os_unixx.h" /* unix includes for os_unix.c only */
40 #ifdef USE_XSMP
41 # include <X11/SM/SMlib.h>
42 #endif
44 #ifdef HAVE_SELINUX
45 # include <selinux/selinux.h>
46 static int selinux_enabled = -1;
47 #endif
50 * Use this prototype for select, some include files have a wrong prototype
52 #ifndef __TANDEM
53 # undef select
54 # ifdef __BEOS__
55 # define select beos_select
56 # endif
57 #endif
59 #ifdef __CYGWIN__
60 # ifndef WIN32
61 # include <cygwin/version.h>
62 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
63 * for cygwin_conv_path() */
64 # endif
65 #endif
67 #if defined(HAVE_SELECT)
68 extern int select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *));
69 #endif
71 #ifdef FEAT_MOUSE_GPM
72 # include <gpm.h>
73 /* <linux/keyboard.h> contains defines conflicting with "keymap.h",
74 * I just copied relevant defines here. A cleaner solution would be to put gpm
75 * code into separate file and include there linux/keyboard.h
77 /* #include <linux/keyboard.h> */
78 # define KG_SHIFT 0
79 # define KG_CTRL 2
80 # define KG_ALT 3
81 # define KG_ALTGR 1
82 # define KG_SHIFTL 4
83 # define KG_SHIFTR 5
84 # define KG_CTRLL 6
85 # define KG_CTRLR 7
86 # define KG_CAPSSHIFT 8
88 static void gpm_close __ARGS((void));
89 static int gpm_open __ARGS((void));
90 static int mch_gpm_process __ARGS((void));
91 #endif
93 #ifdef FEAT_SYSMOUSE
94 # include <sys/consio.h>
95 # include <sys/fbio.h>
97 static int sysmouse_open __ARGS((void));
98 static void sysmouse_close __ARGS((void));
99 static RETSIGTYPE sig_sysmouse __ARGS(SIGPROTOARG);
100 #endif
103 * end of autoconf section. To be extended...
106 /* Are the following #ifdefs still required? And why? Is that for X11? */
108 #if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
109 # ifdef SIGWINCH
110 # undef SIGWINCH
111 # endif
112 # ifdef TIOCGWINSZ
113 # undef TIOCGWINSZ
114 # endif
115 #endif
117 #if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
118 # define SIGWINCH SIGWINDOW
119 #endif
121 #ifdef FEAT_X11
122 # include <X11/Xlib.h>
123 # include <X11/Xutil.h>
124 # include <X11/Xatom.h>
125 # ifdef FEAT_XCLIPBOARD
126 # include <X11/Intrinsic.h>
127 # include <X11/Shell.h>
128 # include <X11/StringDefs.h>
129 static Widget xterm_Shell = (Widget)0;
130 static void xterm_update __ARGS((void));
131 # endif
133 # if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
134 Window x11_window = 0;
135 # endif
136 Display *x11_display = NULL;
138 # ifdef FEAT_TITLE
139 static int get_x11_windis __ARGS((void));
140 static void set_x11_title __ARGS((char_u *));
141 static void set_x11_icon __ARGS((char_u *));
142 # endif
143 #endif
145 #ifdef FEAT_TITLE
146 static int get_x11_title __ARGS((int));
147 static int get_x11_icon __ARGS((int));
149 static char_u *oldtitle = NULL;
150 static int did_set_title = FALSE;
151 static char_u *oldicon = NULL;
152 static int did_set_icon = FALSE;
153 #endif
155 static void may_core_dump __ARGS((void));
157 static int WaitForChar __ARGS((long));
158 #if defined(__BEOS__)
159 int RealWaitForChar __ARGS((int, long, int *));
160 #else
161 static int RealWaitForChar __ARGS((int, long, int *));
162 #endif
164 #ifdef FEAT_XCLIPBOARD
165 static int do_xterm_trace __ARGS((void));
166 # define XT_TRACE_DELAY 50 /* delay for xterm tracing */
167 #endif
169 static void handle_resize __ARGS((void));
171 #if defined(SIGWINCH)
172 static RETSIGTYPE sig_winch __ARGS(SIGPROTOARG);
173 #endif
174 #if defined(SIGINT)
175 static RETSIGTYPE catch_sigint __ARGS(SIGPROTOARG);
176 #endif
177 #if defined(SIGPWR)
178 static RETSIGTYPE catch_sigpwr __ARGS(SIGPROTOARG);
179 #endif
180 #if defined(SIGALRM) && defined(FEAT_X11) \
181 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
182 # define SET_SIG_ALARM
183 static RETSIGTYPE sig_alarm __ARGS(SIGPROTOARG);
184 /* volatile because it is used in signal handler sig_alarm(). */
185 static volatile int sig_alarm_called;
186 #endif
187 static RETSIGTYPE deathtrap __ARGS(SIGPROTOARG);
189 static void catch_int_signal __ARGS((void));
190 static void set_signals __ARGS((void));
191 static void catch_signals __ARGS((RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()));
192 #ifndef __EMX__
193 static int have_wildcard __ARGS((int, char_u **));
194 static int have_dollars __ARGS((int, char_u **));
195 #endif
197 #ifndef __EMX__
198 static int save_patterns __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file));
199 #endif
201 #ifndef SIG_ERR
202 # define SIG_ERR ((RETSIGTYPE (*)())-1)
203 #endif
205 /* volatile because it is used in signal handler sig_winch(). */
206 static volatile int do_resize = FALSE;
207 #ifndef __EMX__
208 static char_u *extra_shell_arg = NULL;
209 static int show_shell_mess = TRUE;
210 #endif
211 /* volatile because it is used in signal handler deathtrap(). */
212 static volatile int deadly_signal = 0; /* The signal we caught */
213 /* volatile because it is used in signal handler deathtrap(). */
214 static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */
216 static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
218 #ifdef USE_XSMP
219 typedef struct
221 SmcConn smcconn; /* The SM connection ID */
222 IceConn iceconn; /* The ICE connection ID */
223 char *clientid; /* The client ID for the current smc session */
224 Bool save_yourself; /* If we're in the middle of a save_yourself */
225 Bool shutdown; /* If we're in shutdown mode */
226 } xsmp_config_T;
228 static xsmp_config_T xsmp;
229 #endif
231 #ifdef SYS_SIGLIST_DECLARED
233 * I have seen
234 * extern char *_sys_siglist[NSIG];
235 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
236 * that describe the signals. That is nearly what we want here. But
237 * autoconf does only check for sys_siglist (without the underscore), I
238 * do not want to change everything today.... jw.
239 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
241 #endif
243 static struct signalinfo
245 int sig; /* Signal number, eg. SIGSEGV etc */
246 char *name; /* Signal name (not char_u!). */
247 char deadly; /* Catch as a deadly signal? */
248 } signal_info[] =
250 #ifdef SIGHUP
251 {SIGHUP, "HUP", TRUE},
252 #endif
253 #ifdef SIGQUIT
254 {SIGQUIT, "QUIT", TRUE},
255 #endif
256 #ifdef SIGILL
257 {SIGILL, "ILL", TRUE},
258 #endif
259 #ifdef SIGTRAP
260 {SIGTRAP, "TRAP", TRUE},
261 #endif
262 #ifdef SIGABRT
263 {SIGABRT, "ABRT", TRUE},
264 #endif
265 #ifdef SIGEMT
266 {SIGEMT, "EMT", TRUE},
267 #endif
268 #ifdef SIGFPE
269 {SIGFPE, "FPE", TRUE},
270 #endif
271 #ifdef SIGBUS
272 {SIGBUS, "BUS", TRUE},
273 #endif
274 #ifdef SIGSEGV
275 {SIGSEGV, "SEGV", TRUE},
276 #endif
277 #ifdef SIGSYS
278 {SIGSYS, "SYS", TRUE},
279 #endif
280 #ifdef SIGALRM
281 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
282 #endif
283 #ifdef SIGTERM
284 {SIGTERM, "TERM", TRUE},
285 #endif
286 #ifdef SIGVTALRM
287 {SIGVTALRM, "VTALRM", TRUE},
288 #endif
289 #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
290 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
291 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
292 {SIGPROF, "PROF", TRUE},
293 #endif
294 #ifdef SIGXCPU
295 {SIGXCPU, "XCPU", TRUE},
296 #endif
297 #ifdef SIGXFSZ
298 {SIGXFSZ, "XFSZ", TRUE},
299 #endif
300 #ifdef SIGUSR1
301 {SIGUSR1, "USR1", TRUE},
302 #endif
303 #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
304 /* Used for sysmouse handling */
305 {SIGUSR2, "USR2", TRUE},
306 #endif
307 #ifdef SIGINT
308 {SIGINT, "INT", FALSE},
309 #endif
310 #ifdef SIGWINCH
311 {SIGWINCH, "WINCH", FALSE},
312 #endif
313 #ifdef SIGTSTP
314 {SIGTSTP, "TSTP", FALSE},
315 #endif
316 #ifdef SIGPIPE
317 {SIGPIPE, "PIPE", FALSE},
318 #endif
319 {-1, "Unknown!", FALSE}
323 * Write s[len] to the screen.
325 void
326 mch_write(s, len)
327 char_u *s;
328 int len;
330 ignored = (int)write(1, (char *)s, len);
331 if (p_wd) /* Unix is too fast, slow down a bit more */
332 RealWaitForChar(read_cmd_fd, p_wd, NULL);
336 * mch_inchar(): low level input function.
337 * Get a characters from the keyboard.
338 * Return the number of characters that are available.
339 * If wtime == 0 do not wait for characters.
340 * If wtime == n wait a short time for characters.
341 * If wtime == -1 wait forever for characters.
344 mch_inchar(buf, maxlen, wtime, tb_change_cnt)
345 char_u *buf;
346 int maxlen;
347 long wtime; /* don't use "time", MIPS cannot handle it */
348 int tb_change_cnt;
350 int len;
352 /* Check if window changed size while we were busy, perhaps the ":set
353 * columns=99" command was used. */
354 while (do_resize)
355 handle_resize();
357 if (wtime >= 0)
359 while (WaitForChar(wtime) == 0) /* no character available */
361 if (!do_resize) /* return if not interrupted by resize */
362 return 0;
363 handle_resize();
366 else /* wtime == -1 */
369 * If there is no character available within 'updatetime' seconds
370 * flush all the swap files to disk.
371 * Also done when interrupted by SIGWINCH.
373 if (WaitForChar(p_ut) == 0)
375 #ifdef FEAT_AUTOCMD
376 if (trigger_cursorhold() && maxlen >= 3
377 && !typebuf_changed(tb_change_cnt))
379 buf[0] = K_SPECIAL;
380 buf[1] = KS_EXTRA;
381 buf[2] = (int)KE_CURSORHOLD;
382 return 3;
384 #endif
385 before_blocking();
389 for (;;) /* repeat until we got a character */
391 while (do_resize) /* window changed size */
392 handle_resize();
394 * we want to be interrupted by the winch signal
396 WaitForChar(-1L);
397 if (do_resize) /* interrupted by SIGWINCH signal */
398 continue;
400 /* If input was put directly in typeahead buffer bail out here. */
401 if (typebuf_changed(tb_change_cnt))
402 return 0;
405 * For some terminals we only get one character at a time.
406 * We want the get all available characters, so we could keep on
407 * trying until none is available
408 * For some other terminals this is quite slow, that's why we don't do
409 * it.
411 len = read_from_input_buf(buf, (long)maxlen);
412 if (len > 0)
414 #ifdef OS2
415 int i;
417 for (i = 0; i < len; i++)
418 if (buf[i] == 0)
419 buf[i] = K_NUL;
420 #endif
421 return len;
426 static void
427 handle_resize()
429 do_resize = FALSE;
430 shell_resized();
434 * return non-zero if a character is available
437 mch_char_avail()
439 return WaitForChar(0L);
442 #if defined(HAVE_TOTAL_MEM) || defined(PROTO)
443 # ifdef HAVE_SYS_RESOURCE_H
444 # include <sys/resource.h>
445 # endif
446 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
447 # include <sys/sysctl.h>
448 # endif
449 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
450 # include <sys/sysinfo.h>
451 # endif
454 * Return total amount of memory available in Kbyte.
455 * Doesn't change when memory has been allocated.
457 long_u
458 mch_total_mem(special)
459 int special UNUSED;
461 # ifdef __EMX__
462 return ulimit(3, 0L) >> 10; /* always 32MB? */
463 # else
464 long_u mem = 0;
465 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
467 # ifdef HAVE_SYSCTL
468 int mib[2], physmem;
469 size_t len;
471 /* BSD way of getting the amount of RAM available. */
472 mib[0] = CTL_HW;
473 mib[1] = HW_USERMEM;
474 len = sizeof(physmem);
475 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
476 mem = (long_u)physmem;
477 # endif
479 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
480 if (mem == 0)
482 struct sysinfo sinfo;
484 /* Linux way of getting amount of RAM available */
485 if (sysinfo(&sinfo) == 0)
487 # ifdef HAVE_SYSINFO_MEM_UNIT
488 /* avoid overflow as much as possible */
489 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
491 sinfo.mem_unit = sinfo.mem_unit >> 1;
492 --shiftright;
494 mem = sinfo.totalram * sinfo.mem_unit;
495 # else
496 mem = sinfo.totalram;
497 # endif
500 # endif
502 # ifdef HAVE_SYSCONF
503 if (mem == 0)
505 long pagesize, pagecount;
507 /* Solaris way of getting amount of RAM available */
508 pagesize = sysconf(_SC_PAGESIZE);
509 pagecount = sysconf(_SC_PHYS_PAGES);
510 if (pagesize > 0 && pagecount > 0)
512 /* avoid overflow as much as possible */
513 while (shiftright > 0 && (pagesize & 1) == 0)
515 pagesize = (long_u)pagesize >> 1;
516 --shiftright;
518 mem = (long_u)pagesize * pagecount;
521 # endif
523 /* Return the minimum of the physical memory and the user limit, because
524 * using more than the user limit may cause Vim to be terminated. */
525 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
527 struct rlimit rlp;
529 if (getrlimit(RLIMIT_DATA, &rlp) == 0
530 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
531 # ifdef RLIM_INFINITY
532 && rlp.rlim_cur != RLIM_INFINITY
533 # endif
534 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
537 mem = (long_u)rlp.rlim_cur;
538 shiftright = 10;
541 # endif
543 if (mem > 0)
544 return mem >> shiftright;
545 return (long_u)0x1fffff;
546 # endif
548 #endif
550 void
551 mch_delay(msec, ignoreinput)
552 long msec;
553 int ignoreinput;
555 int old_tmode;
556 #ifdef FEAT_MZSCHEME
557 long total = msec; /* remember original value */
558 #endif
560 if (ignoreinput)
562 /* Go to cooked mode without echo, to allow SIGINT interrupting us
563 * here. But we don't want QUIT to kill us (CTRL-\ used in a
564 * shell may produce SIGQUIT). */
565 in_mch_delay = TRUE;
566 old_tmode = curr_tmode;
567 if (curr_tmode == TMODE_RAW)
568 settmode(TMODE_SLEEP);
571 * Everybody sleeps in a different way...
572 * Prefer nanosleep(), some versions of usleep() can only sleep up to
573 * one second.
575 #ifdef FEAT_MZSCHEME
578 /* if total is large enough, wait by portions in p_mzq */
579 if (total > p_mzq)
580 msec = p_mzq;
581 else
582 msec = total;
583 total -= msec;
584 #endif
585 #ifdef HAVE_NANOSLEEP
587 struct timespec ts;
589 ts.tv_sec = msec / 1000;
590 ts.tv_nsec = (msec % 1000) * 1000000;
591 (void)nanosleep(&ts, NULL);
593 #else
594 # ifdef HAVE_USLEEP
595 while (msec >= 1000)
597 usleep((unsigned int)(999 * 1000));
598 msec -= 999;
600 usleep((unsigned int)(msec * 1000));
601 # else
602 # ifndef HAVE_SELECT
603 poll(NULL, 0, (int)msec);
604 # else
605 # ifdef __EMX__
606 _sleep2(msec);
607 # else
609 struct timeval tv;
611 tv.tv_sec = msec / 1000;
612 tv.tv_usec = (msec % 1000) * 1000;
614 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
615 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
617 select(0, NULL, NULL, NULL, &tv);
619 # endif /* __EMX__ */
620 # endif /* HAVE_SELECT */
621 # endif /* HAVE_NANOSLEEP */
622 #endif /* HAVE_USLEEP */
623 #ifdef FEAT_MZSCHEME
625 while (total > 0);
626 #endif
628 settmode(old_tmode);
629 in_mch_delay = FALSE;
631 else
632 WaitForChar(msec);
635 #if 0 /* disabled, no longer needed now that regmatch() is not recursive */
636 # if defined(HAVE_GETRLIMIT)
637 # define HAVE_STACK_LIMIT
638 # endif
639 #endif
641 #if defined(HAVE_STACK_LIMIT) \
642 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
643 # define HAVE_CHECK_STACK_GROWTH
645 * Support for checking for an almost-out-of-stack-space situation.
649 * Return a pointer to an item on the stack. Used to find out if the stack
650 * grows up or down.
652 static void check_stack_growth __ARGS((char *p));
653 static int stack_grows_downwards;
656 * Find out if the stack grows upwards or downwards.
657 * "p" points to a variable on the stack of the caller.
659 static void
660 check_stack_growth(p)
661 char *p;
663 int i;
665 stack_grows_downwards = (p > (char *)&i);
667 #endif
669 #if defined(HAVE_STACK_LIMIT) || defined(PROTO)
670 static char *stack_limit = NULL;
672 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
673 # include <pthread.h>
674 # include <pthread_np.h>
675 #endif
678 * Find out until how var the stack can grow without getting into trouble.
679 * Called when starting up and when switching to the signal stack in
680 * deathtrap().
682 static void
683 get_stack_limit()
685 struct rlimit rlp;
686 int i;
687 long lim;
689 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
690 * limit doesn't fit in a long (rlim_cur might be "long long"). */
691 if (getrlimit(RLIMIT_STACK, &rlp) == 0
692 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
693 # ifdef RLIM_INFINITY
694 && rlp.rlim_cur != RLIM_INFINITY
695 # endif
698 lim = (long)rlp.rlim_cur;
699 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
701 pthread_attr_t attr;
702 size_t size;
704 /* On FreeBSD the initial thread always has a fixed stack size, no
705 * matter what the limits are set to. Normally it's 1 Mbyte. */
706 pthread_attr_init(&attr);
707 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
709 pthread_attr_getstacksize(&attr, &size);
710 if (lim > (long)size)
711 lim = (long)size;
713 pthread_attr_destroy(&attr);
715 #endif
716 if (stack_grows_downwards)
718 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
719 if (stack_limit >= (char *)&i)
720 /* overflow, set to 1/16 of current stack position */
721 stack_limit = (char *)((long)&i / 16L);
723 else
725 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
726 if (stack_limit <= (char *)&i)
727 stack_limit = NULL; /* overflow */
733 * Return FAIL when running out of stack space.
734 * "p" must point to any variable local to the caller that's on the stack.
737 mch_stackcheck(p)
738 char *p;
740 if (stack_limit != NULL)
742 if (stack_grows_downwards)
744 if (p < stack_limit)
745 return FAIL;
747 else if (p > stack_limit)
748 return FAIL;
750 return OK;
752 #endif
754 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
756 * Support for using the signal stack.
757 * This helps when we run out of stack space, which causes a SIGSEGV. The
758 * signal handler then must run on another stack, since the normal stack is
759 * completely full.
762 #ifndef SIGSTKSZ
763 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
764 #endif
766 # ifdef HAVE_SIGALTSTACK
767 static stack_t sigstk; /* for sigaltstack() */
768 # else
769 static struct sigstack sigstk; /* for sigstack() */
770 # endif
772 static void init_signal_stack __ARGS((void));
773 static char *signal_stack;
775 static void
776 init_signal_stack()
778 if (signal_stack != NULL)
780 # ifdef HAVE_SIGALTSTACK
781 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
782 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
783 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
784 * "struct sigaltstack" needs to be declared. */
785 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
786 # endif
788 # ifdef HAVE_SS_BASE
789 sigstk.ss_base = signal_stack;
790 # else
791 sigstk.ss_sp = signal_stack;
792 # endif
793 sigstk.ss_size = SIGSTKSZ;
794 sigstk.ss_flags = 0;
795 (void)sigaltstack(&sigstk, NULL);
796 # else
797 sigstk.ss_sp = signal_stack;
798 if (stack_grows_downwards)
799 sigstk.ss_sp += SIGSTKSZ - 1;
800 sigstk.ss_onstack = 0;
801 (void)sigstack(&sigstk, NULL);
802 # endif
805 #endif
808 * We need correct prototypes for a signal function, otherwise mean compilers
809 * will barf when the second argument to signal() is ``wrong''.
810 * Let me try it with a few tricky defines from my own osdef.h (jw).
812 #if defined(SIGWINCH)
813 static RETSIGTYPE
814 sig_winch SIGDEFARG(sigarg)
816 /* this is not required on all systems, but it doesn't hurt anybody */
817 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
818 do_resize = TRUE;
819 SIGRETURN;
821 #endif
823 #if defined(SIGINT)
824 static RETSIGTYPE
825 catch_sigint SIGDEFARG(sigarg)
827 /* this is not required on all systems, but it doesn't hurt anybody */
828 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
829 got_int = TRUE;
830 SIGRETURN;
832 #endif
834 #if defined(SIGPWR)
835 static RETSIGTYPE
836 catch_sigpwr SIGDEFARG(sigarg)
838 /* this is not required on all systems, but it doesn't hurt anybody */
839 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
841 * I'm not sure we get the SIGPWR signal when the system is really going
842 * down or when the batteries are almost empty. Just preserve the swap
843 * files and don't exit, that can't do any harm.
845 ml_sync_all(FALSE, FALSE);
846 SIGRETURN;
848 #endif
850 #ifdef SET_SIG_ALARM
852 * signal function for alarm().
854 static RETSIGTYPE
855 sig_alarm SIGDEFARG(sigarg)
857 /* doesn't do anything, just to break a system call */
858 sig_alarm_called = TRUE;
859 SIGRETURN;
861 #endif
863 #if (defined(HAVE_SETJMP_H) \
864 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
865 || defined(FEAT_LIBCALL))) \
866 || defined(PROTO)
868 * A simplistic version of setjmp() that only allows one level of using.
869 * Don't call twice before calling mch_endjmp()!.
870 * Usage:
871 * mch_startjmp();
872 * if (SETJMP(lc_jump_env) != 0)
874 * mch_didjmp();
875 * EMSG("crash!");
877 * else
879 * do_the_work;
880 * mch_endjmp();
882 * Note: Can't move SETJMP() here, because a function calling setjmp() must
883 * not return before the saved environment is used.
884 * Returns OK for normal return, FAIL when the protected code caused a
885 * problem and LONGJMP() was used.
887 void
888 mch_startjmp()
890 #ifdef SIGHASARG
891 lc_signal = 0;
892 #endif
893 lc_active = TRUE;
896 void
897 mch_endjmp()
899 lc_active = FALSE;
902 void
903 mch_didjmp()
905 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
906 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
907 * otherwise catching the signal only works once. */
908 init_signal_stack();
909 # endif
911 #endif
914 * This function handles deadly signals.
915 * It tries to preserve any swap file and exit properly.
916 * (partly from Elvis).
918 static RETSIGTYPE
919 deathtrap SIGDEFARG(sigarg)
921 static int entered = 0; /* count the number of times we got here.
922 Note: when memory has been corrupted
923 this may get an arbitrary value! */
924 #ifdef SIGHASARG
925 int i;
926 #endif
928 #if defined(HAVE_SETJMP_H)
930 * Catch a crash in protected code.
931 * Restores the environment saved in lc_jump_env, which looks like
932 * SETJMP() returns 1.
934 if (lc_active)
936 # if defined(SIGHASARG)
937 lc_signal = sigarg;
938 # endif
939 lc_active = FALSE; /* don't jump again */
940 LONGJMP(lc_jump_env, 1);
941 /* NOTREACHED */
943 #endif
945 #ifdef SIGHASARG
946 # ifdef SIGQUIT
947 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
948 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
949 * pressing CTRL-\, but we don't want Vim to exit then. */
950 if (in_mch_delay && sigarg == SIGQUIT)
951 SIGRETURN;
952 # endif
954 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
955 * here. This avoids that a non-reentrant function is interrupted, e.g.,
956 * free(). Calling free() again may then cause a crash. */
957 if (entered == 0
958 && (0
959 # ifdef SIGHUP
960 || sigarg == SIGHUP
961 # endif
962 # ifdef SIGQUIT
963 || sigarg == SIGQUIT
964 # endif
965 # ifdef SIGTERM
966 || sigarg == SIGTERM
967 # endif
968 # ifdef SIGPWR
969 || sigarg == SIGPWR
970 # endif
971 # ifdef SIGUSR1
972 || sigarg == SIGUSR1
973 # endif
974 # ifdef SIGUSR2
975 || sigarg == SIGUSR2
976 # endif
978 && !vim_handle_signal(sigarg))
979 SIGRETURN;
980 #endif
982 /* Remember how often we have been called. */
983 ++entered;
985 #ifdef FEAT_EVAL
986 /* Set the v:dying variable. */
987 set_vim_var_nr(VV_DYING, (long)entered);
988 #endif
990 #ifdef HAVE_STACK_LIMIT
991 /* Since we are now using the signal stack, need to reset the stack
992 * limit. Otherwise using a regexp will fail. */
993 get_stack_limit();
994 #endif
996 #if 0
997 /* This is for opening gdb the moment Vim crashes.
998 * You need to manually adjust the file name and Vim executable name.
999 * Suggested by SungHyun Nam. */
1001 # define VI_GDB_FILE "/tmp/vimgdb"
1002 # define VIM_NAME "/usr/bin/vim"
1003 FILE *fp = fopen(VI_GDB_FILE, "w");
1004 if (fp)
1006 fprintf(fp,
1007 "file %s\n"
1008 "attach %d\n"
1009 "set height 1000\n"
1010 "bt full\n"
1011 , VIM_NAME, getpid());
1012 fclose(fp);
1013 system("xterm -e gdb -x "VI_GDB_FILE);
1014 unlink(VI_GDB_FILE);
1017 #endif
1019 #ifdef SIGHASARG
1020 /* try to find the name of this signal */
1021 for (i = 0; signal_info[i].sig != -1; i++)
1022 if (sigarg == signal_info[i].sig)
1023 break;
1024 deadly_signal = sigarg;
1025 #endif
1027 full_screen = FALSE; /* don't write message to the GUI, it might be
1028 * part of the problem... */
1030 * If something goes wrong after entering here, we may get here again.
1031 * When this happens, give a message and try to exit nicely (resetting the
1032 * terminal mode, etc.)
1033 * When this happens twice, just exit, don't even try to give a message,
1034 * stack may be corrupt or something weird.
1035 * When this still happens again (or memory was corrupted in such a way
1036 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1038 if (entered >= 3)
1040 reset_signals(); /* don't catch any signals anymore */
1041 may_core_dump();
1042 if (entered >= 4)
1043 _exit(8);
1044 exit(7);
1046 if (entered == 2)
1048 OUT_STR(_("Vim: Double signal, exiting\n"));
1049 out_flush();
1050 getout(1);
1053 #ifdef SIGHASARG
1054 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1055 signal_info[i].name);
1056 #else
1057 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1058 #endif
1059 preserve_exit(); /* preserve files and exit */
1061 #ifdef NBDEBUG
1062 reset_signals();
1063 may_core_dump();
1064 abort();
1065 #endif
1067 SIGRETURN;
1070 #if defined(_REENTRANT) && defined(SIGCONT)
1072 * On Solaris with multi-threading, suspending might not work immediately.
1073 * Catch the SIGCONT signal, which will be used as an indication whether the
1074 * suspending has been done or not.
1076 * On Linux, signal is not always handled immediately either.
1077 * See https://bugs.launchpad.net/bugs/291373
1079 * volatile because it is used in in signal handler sigcont_handler().
1081 static volatile int sigcont_received;
1082 static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1085 * signal handler for SIGCONT
1087 static RETSIGTYPE
1088 sigcont_handler SIGDEFARG(sigarg)
1090 sigcont_received = TRUE;
1091 SIGRETURN;
1093 #endif
1096 * If the machine has job control, use it to suspend the program,
1097 * otherwise fake it by starting a new shell.
1099 void
1100 mch_suspend()
1102 /* BeOS does have SIGTSTP, but it doesn't work. */
1103 #if defined(SIGTSTP) && !defined(__BEOS__)
1104 out_flush(); /* needed to make cursor visible on some systems */
1105 settmode(TMODE_COOK);
1106 out_flush(); /* needed to disable mouse on some systems */
1108 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1109 /* Since we are going to sleep, we can't respond to requests for the X
1110 * selections. Lose them, otherwise other applications will hang. But
1111 * first copy the text to cut buffer 0. */
1112 if (clip_star.owned || clip_plus.owned)
1114 x11_export_final_selection();
1115 if (clip_star.owned)
1116 clip_lose_selection(&clip_star);
1117 if (clip_plus.owned)
1118 clip_lose_selection(&clip_plus);
1119 if (x11_display != NULL)
1120 XFlush(x11_display);
1122 # endif
1124 # if defined(_REENTRANT) && defined(SIGCONT)
1125 sigcont_received = FALSE;
1126 # endif
1127 kill(0, SIGTSTP); /* send ourselves a STOP signal */
1128 # if defined(_REENTRANT) && defined(SIGCONT)
1130 * Wait for the SIGCONT signal to be handled. It generally happens
1131 * immediately, but somehow not all the time. Do not call pause()
1132 * because there would be race condition which would hang Vim if
1133 * signal happened in between the test of sigcont_received and the
1134 * call to pause(). If signal is not yet received, call sleep(0)
1135 * to just yield CPU. Signal should then be received. If somehow
1136 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1137 * further if signal is not received after 1+2+3+4 ms (not expected
1138 * to happen).
1141 long wait;
1142 for (wait = 0; !sigcont_received && wait <= 3L; wait++)
1143 /* Loop is not entered most of the time */
1144 mch_delay(wait, FALSE);
1146 # endif
1148 # ifdef FEAT_TITLE
1150 * Set oldtitle to NULL, so the current title is obtained again.
1152 vim_free(oldtitle);
1153 oldtitle = NULL;
1154 # endif
1155 settmode(TMODE_RAW);
1156 need_check_timestamps = TRUE;
1157 did_check_timestamps = FALSE;
1158 #else
1159 suspend_shell();
1160 #endif
1163 void
1164 mch_init()
1166 Columns = 80;
1167 Rows = 24;
1169 out_flush();
1170 set_signals();
1172 #ifdef MACOS_CONVERT
1173 mac_conv_init();
1174 #endif
1177 static void
1178 set_signals()
1180 #if defined(SIGWINCH)
1182 * WINDOW CHANGE signal is handled with sig_winch().
1184 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1185 #endif
1188 * We want the STOP signal to work, to make mch_suspend() work.
1189 * For "rvim" the STOP signal is ignored.
1191 #ifdef SIGTSTP
1192 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1193 #endif
1194 #if defined(_REENTRANT) && defined(SIGCONT)
1195 signal(SIGCONT, sigcont_handler);
1196 #endif
1199 * We want to ignore breaking of PIPEs.
1201 #ifdef SIGPIPE
1202 signal(SIGPIPE, SIG_IGN);
1203 #endif
1205 #ifdef SIGINT
1206 catch_int_signal();
1207 #endif
1210 * Ignore alarm signals (Perl's alarm() generates it).
1212 #ifdef SIGALRM
1213 signal(SIGALRM, SIG_IGN);
1214 #endif
1217 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1218 * work will be lost.
1220 #ifdef SIGPWR
1221 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1222 #endif
1225 * Arrange for other signals to gracefully shutdown Vim.
1227 catch_signals(deathtrap, SIG_ERR);
1229 #if defined(FEAT_GUI) && defined(SIGHUP)
1231 * When the GUI is running, ignore the hangup signal.
1233 if (gui.in_use)
1234 signal(SIGHUP, SIG_IGN);
1235 #endif
1238 #if defined(SIGINT) || defined(PROTO)
1240 * Catch CTRL-C (only works while in Cooked mode).
1242 static void
1243 catch_int_signal()
1245 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1247 #endif
1249 void
1250 reset_signals()
1252 catch_signals(SIG_DFL, SIG_DFL);
1253 #if defined(_REENTRANT) && defined(SIGCONT)
1254 /* SIGCONT isn't in the list, because its default action is ignore */
1255 signal(SIGCONT, SIG_DFL);
1256 #endif
1259 static void
1260 catch_signals(func_deadly, func_other)
1261 RETSIGTYPE (*func_deadly)();
1262 RETSIGTYPE (*func_other)();
1264 int i;
1266 for (i = 0; signal_info[i].sig != -1; i++)
1267 if (signal_info[i].deadly)
1269 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1270 struct sigaction sa;
1272 /* Setup to use the alternate stack for the signal function. */
1273 sa.sa_handler = func_deadly;
1274 sigemptyset(&sa.sa_mask);
1275 # if defined(__linux__) && defined(_REENTRANT)
1276 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1277 * thread handling in combination with using the alternate stack:
1278 * pthread library functions try to use the stack pointer to
1279 * identify the current thread, causing a SEGV signal, which
1280 * recursively calls deathtrap() and hangs. */
1281 sa.sa_flags = 0;
1282 # else
1283 sa.sa_flags = SA_ONSTACK;
1284 # endif
1285 sigaction(signal_info[i].sig, &sa, NULL);
1286 #else
1287 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1288 struct sigvec sv;
1290 /* Setup to use the alternate stack for the signal function. */
1291 sv.sv_handler = func_deadly;
1292 sv.sv_mask = 0;
1293 sv.sv_flags = SV_ONSTACK;
1294 sigvec(signal_info[i].sig, &sv, NULL);
1295 # else
1296 signal(signal_info[i].sig, func_deadly);
1297 # endif
1298 #endif
1300 else if (func_other != SIG_ERR)
1301 signal(signal_info[i].sig, func_other);
1305 * Handling of SIGHUP, SIGQUIT and SIGTERM:
1306 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1307 * return TRUE
1308 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1309 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1310 * signal
1311 * Returns TRUE when Vim should exit.
1314 vim_handle_signal(sig)
1315 int sig;
1317 static int got_signal = 0;
1318 static int blocked = TRUE;
1320 switch (sig)
1322 case SIGNAL_BLOCK: blocked = TRUE;
1323 break;
1325 case SIGNAL_UNBLOCK: blocked = FALSE;
1326 if (got_signal != 0)
1328 kill(getpid(), got_signal);
1329 got_signal = 0;
1331 break;
1333 default: if (!blocked)
1334 return TRUE; /* exit! */
1335 got_signal = sig;
1336 #ifdef SIGPWR
1337 if (sig != SIGPWR)
1338 #endif
1339 got_int = TRUE; /* break any loops */
1340 break;
1342 return FALSE;
1346 * Check_win checks whether we have an interactive stdout.
1349 mch_check_win(argc, argv)
1350 int argc UNUSED;
1351 char **argv UNUSED;
1353 #ifdef OS2
1355 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1356 * name, mostly it's just "vim" and found in the path, which is unusable.
1358 if (mch_isFullName(argv[0]))
1359 exe_name = vim_strsave((char_u *)argv[0]);
1360 #endif
1361 if (isatty(1))
1362 return OK;
1363 return FAIL;
1367 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1370 mch_input_isatty()
1372 if (isatty(read_cmd_fd))
1373 return TRUE;
1374 return FALSE;
1377 #ifdef FEAT_X11
1379 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1380 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1382 static void xopen_message __ARGS((struct timeval *tvp));
1385 * Give a message about the elapsed time for opening the X window.
1387 static void
1388 xopen_message(tvp)
1389 struct timeval *tvp; /* must contain start time */
1391 struct timeval end_tv;
1393 /* Compute elapsed time. */
1394 gettimeofday(&end_tv, NULL);
1395 smsg((char_u *)_("Opening the X display took %ld msec"),
1396 (end_tv.tv_sec - tvp->tv_sec) * 1000L
1397 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
1399 # endif
1400 #endif
1402 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1404 * A few functions shared by X11 title and clipboard code.
1406 static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1407 static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1408 static int x_connect_to_server __ARGS((void));
1409 static int test_x11_window __ARGS((Display *dpy));
1411 static int got_x_error = FALSE;
1414 * X Error handler, otherwise X just exits! (very rude) -- webb
1416 static int
1417 x_error_handler(dpy, error_event)
1418 Display *dpy;
1419 XErrorEvent *error_event;
1421 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
1422 STRCAT(IObuff, _("\nVim: Got X error\n"));
1424 /* We cannot print a message and continue, because no X calls are allowed
1425 * here (causes my system to hang). Silently continuing might be an
1426 * alternative... */
1427 preserve_exit(); /* preserve files and exit */
1429 return 0; /* NOTREACHED */
1433 * Another X Error handler, just used to check for errors.
1435 static int
1436 x_error_check(dpy, error_event)
1437 Display *dpy UNUSED;
1438 XErrorEvent *error_event UNUSED;
1440 got_x_error = TRUE;
1441 return 0;
1444 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1445 # if defined(HAVE_SETJMP_H)
1447 * An X IO Error handler, used to catch error while opening the display.
1449 static int x_IOerror_check __ARGS((Display *dpy));
1451 static int
1452 x_IOerror_check(dpy)
1453 Display *dpy UNUSED;
1455 /* This function should not return, it causes exit(). Longjump instead. */
1456 LONGJMP(lc_jump_env, 1);
1458 # endif
1461 * An X IO Error handler, used to catch terminal errors.
1463 static int x_IOerror_handler __ARGS((Display *dpy));
1465 static int
1466 x_IOerror_handler(dpy)
1467 Display *dpy UNUSED;
1469 xterm_dpy = NULL;
1470 x11_window = 0;
1471 x11_display = NULL;
1472 xterm_Shell = (Widget)0;
1474 /* This function should not return, it causes exit(). Longjump instead. */
1475 LONGJMP(x_jump_env, 1);
1477 #endif
1480 * Return TRUE when connection to the X server is desired.
1482 static int
1483 x_connect_to_server()
1485 regmatch_T regmatch;
1487 #if defined(FEAT_CLIENTSERVER)
1488 if (x_force_connect)
1489 return TRUE;
1490 #endif
1491 if (x_no_connect)
1492 return FALSE;
1494 /* Check for a match with "exclude:" from 'clipboard'. */
1495 if (clip_exclude_prog != NULL)
1497 regmatch.rm_ic = FALSE; /* Don't ignore case */
1498 regmatch.regprog = clip_exclude_prog;
1499 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1500 return FALSE;
1502 return TRUE;
1506 * Test if "dpy" and x11_window are valid by getting the window title.
1507 * I don't actually want it yet, so there may be a simpler call to use, but
1508 * this will cause the error handler x_error_check() to be called if anything
1509 * is wrong, such as the window pointer being invalid (as can happen when the
1510 * user changes his DISPLAY, but not his WINDOWID) -- webb
1512 static int
1513 test_x11_window(dpy)
1514 Display *dpy;
1516 int (*old_handler)();
1517 XTextProperty text_prop;
1519 old_handler = XSetErrorHandler(x_error_check);
1520 got_x_error = FALSE;
1521 if (XGetWMName(dpy, x11_window, &text_prop))
1522 XFree((void *)text_prop.value);
1523 XSync(dpy, False);
1524 (void)XSetErrorHandler(old_handler);
1526 if (p_verbose > 0 && got_x_error)
1527 verb_msg((char_u *)_("Testing the X display failed"));
1529 return (got_x_error ? FAIL : OK);
1531 #endif
1533 #ifdef FEAT_TITLE
1535 #ifdef FEAT_X11
1537 static int get_x11_thing __ARGS((int get_title, int test_only));
1540 * try to get x11 window and display
1542 * return FAIL for failure, OK otherwise
1544 static int
1545 get_x11_windis()
1547 char *winid;
1548 static int result = -1;
1549 #define XD_NONE 0 /* x11_display not set here */
1550 #define XD_HERE 1 /* x11_display opened here */
1551 #define XD_GUI 2 /* x11_display used from gui.dpy */
1552 #define XD_XTERM 3 /* x11_display used from xterm_dpy */
1553 static int x11_display_from = XD_NONE;
1554 static int did_set_error_handler = FALSE;
1556 if (!did_set_error_handler)
1558 /* X just exits if it finds an error otherwise! */
1559 (void)XSetErrorHandler(x_error_handler);
1560 did_set_error_handler = TRUE;
1563 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
1564 if (gui.in_use)
1567 * If the X11 display was opened here before, for the window where Vim
1568 * was started, close that one now to avoid a memory leak.
1570 if (x11_display_from == XD_HERE && x11_display != NULL)
1572 XCloseDisplay(x11_display);
1573 x11_display_from = XD_NONE;
1575 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1577 x11_display_from = XD_GUI;
1578 return OK;
1580 x11_display = NULL;
1581 return FAIL;
1583 else if (x11_display_from == XD_GUI)
1585 /* GUI must have stopped somehow, clear x11_display */
1586 x11_window = 0;
1587 x11_display = NULL;
1588 x11_display_from = XD_NONE;
1590 #endif
1592 /* When started with the "-X" argument, don't try connecting. */
1593 if (!x_connect_to_server())
1594 return FAIL;
1597 * If WINDOWID not set, should try another method to find out
1598 * what the current window number is. The only code I know for
1599 * this is very complicated.
1600 * We assume that zero is invalid for WINDOWID.
1602 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1603 x11_window = (Window)atol(winid);
1605 #ifdef FEAT_XCLIPBOARD
1606 if (xterm_dpy != NULL && x11_window != 0)
1608 /* We may have checked it already, but Gnome terminal can move us to
1609 * another window, so we need to check every time. */
1610 if (x11_display_from != XD_XTERM)
1613 * If the X11 display was opened here before, for the window where
1614 * Vim was started, close that one now to avoid a memory leak.
1616 if (x11_display_from == XD_HERE && x11_display != NULL)
1617 XCloseDisplay(x11_display);
1618 x11_display = xterm_dpy;
1619 x11_display_from = XD_XTERM;
1621 if (test_x11_window(x11_display) == FAIL)
1623 /* probably bad $WINDOWID */
1624 x11_window = 0;
1625 x11_display = NULL;
1626 x11_display_from = XD_NONE;
1627 return FAIL;
1629 return OK;
1631 #endif
1633 if (x11_window == 0 || x11_display == NULL)
1634 result = -1;
1636 if (result != -1) /* Have already been here and set this */
1637 return result; /* Don't do all these X calls again */
1639 if (x11_window != 0 && x11_display == NULL)
1641 #ifdef SET_SIG_ALARM
1642 RETSIGTYPE (*sig_save)();
1643 #endif
1644 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1645 struct timeval start_tv;
1647 if (p_verbose > 0)
1648 gettimeofday(&start_tv, NULL);
1649 #endif
1651 #ifdef SET_SIG_ALARM
1653 * Opening the Display may hang if the DISPLAY setting is wrong, or
1654 * the network connection is bad. Set an alarm timer to get out.
1656 sig_alarm_called = FALSE;
1657 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1658 (RETSIGTYPE (*)())sig_alarm);
1659 alarm(2);
1660 #endif
1661 x11_display = XOpenDisplay(NULL);
1663 #ifdef SET_SIG_ALARM
1664 alarm(0);
1665 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1666 if (p_verbose > 0 && sig_alarm_called)
1667 verb_msg((char_u *)_("Opening the X display timed out"));
1668 #endif
1669 if (x11_display != NULL)
1671 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1672 if (p_verbose > 0)
1674 verbose_enter();
1675 xopen_message(&start_tv);
1676 verbose_leave();
1678 # endif
1679 if (test_x11_window(x11_display) == FAIL)
1681 /* Maybe window id is bad */
1682 x11_window = 0;
1683 XCloseDisplay(x11_display);
1684 x11_display = NULL;
1686 else
1687 x11_display_from = XD_HERE;
1690 if (x11_window == 0 || x11_display == NULL)
1691 return (result = FAIL);
1692 return (result = OK);
1696 * Determine original x11 Window Title
1698 static int
1699 get_x11_title(test_only)
1700 int test_only;
1702 return get_x11_thing(TRUE, test_only);
1706 * Determine original x11 Window icon
1708 static int
1709 get_x11_icon(test_only)
1710 int test_only;
1712 int retval = FALSE;
1714 retval = get_x11_thing(FALSE, test_only);
1716 /* could not get old icon, use terminal name */
1717 if (oldicon == NULL && !test_only)
1719 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1720 oldicon = T_NAME + 8;
1721 else
1722 oldicon = T_NAME;
1725 return retval;
1728 static int
1729 get_x11_thing(get_title, test_only)
1730 int get_title; /* get title string */
1731 int test_only;
1733 XTextProperty text_prop;
1734 int retval = FALSE;
1735 Status status;
1737 if (get_x11_windis() == OK)
1739 /* Get window/icon name if any */
1740 if (get_title)
1741 status = XGetWMName(x11_display, x11_window, &text_prop);
1742 else
1743 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1746 * If terminal is xterm, then x11_window may be a child window of the
1747 * outer xterm window that actually contains the window/icon name, so
1748 * keep traversing up the tree until a window with a title/icon is
1749 * found.
1751 /* Previously this was only done for xterm and alikes. I don't see a
1752 * reason why it would fail for other terminal emulators.
1753 * if (term_is_xterm) */
1755 Window root;
1756 Window parent;
1757 Window win = x11_window;
1758 Window *children;
1759 unsigned int num_children;
1761 while (!status || text_prop.value == NULL)
1763 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1764 &num_children))
1765 break;
1766 if (children)
1767 XFree((void *)children);
1768 if (parent == root || parent == 0)
1769 break;
1771 win = parent;
1772 if (get_title)
1773 status = XGetWMName(x11_display, win, &text_prop);
1774 else
1775 status = XGetWMIconName(x11_display, win, &text_prop);
1778 if (status && text_prop.value != NULL)
1780 retval = TRUE;
1781 if (!test_only)
1783 #ifdef FEAT_XFONTSET
1784 if (text_prop.encoding == XA_STRING)
1786 #endif
1787 if (get_title)
1788 oldtitle = vim_strsave((char_u *)text_prop.value);
1789 else
1790 oldicon = vim_strsave((char_u *)text_prop.value);
1791 #ifdef FEAT_XFONTSET
1793 else
1795 char **cl;
1796 Status transform_status;
1797 int n = 0;
1799 transform_status = XmbTextPropertyToTextList(x11_display,
1800 &text_prop,
1801 &cl, &n);
1802 if (transform_status >= Success && n > 0 && cl[0])
1804 if (get_title)
1805 oldtitle = vim_strsave((char_u *) cl[0]);
1806 else
1807 oldicon = vim_strsave((char_u *) cl[0]);
1808 XFreeStringList(cl);
1810 else
1812 if (get_title)
1813 oldtitle = vim_strsave((char_u *)text_prop.value);
1814 else
1815 oldicon = vim_strsave((char_u *)text_prop.value);
1818 #endif
1820 XFree((void *)text_prop.value);
1823 return retval;
1826 /* Are Xutf8 functions available? Avoid error from old compilers. */
1827 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1828 # if X_HAVE_UTF8_STRING
1829 # define USE_UTF8_STRING
1830 # endif
1831 #endif
1834 * Set x11 Window Title
1836 * get_x11_windis() must be called before this and have returned OK
1838 static void
1839 set_x11_title(title)
1840 char_u *title;
1842 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1843 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1844 * supported everywhere and STRING doesn't work for multi-byte titles.
1846 #ifdef USE_UTF8_STRING
1847 if (enc_utf8)
1848 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1849 NULL, NULL, 0, NULL, NULL, NULL);
1850 else
1851 #endif
1853 #if XtSpecificationRelease >= 4
1854 # ifdef FEAT_XFONTSET
1855 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1856 NULL, NULL, 0, NULL, NULL, NULL);
1857 # else
1858 XTextProperty text_prop;
1859 char *c_title = (char *)title;
1861 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
1862 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
1863 XSetWMProperties(x11_display, x11_window, &text_prop,
1864 NULL, NULL, 0, NULL, NULL, NULL);
1865 # endif
1866 #else
1867 XStoreName(x11_display, x11_window, (char *)title);
1868 #endif
1870 XFlush(x11_display);
1874 * Set x11 Window icon
1876 * get_x11_windis() must be called before this and have returned OK
1878 static void
1879 set_x11_icon(icon)
1880 char_u *icon;
1882 /* See above for comments about using X*SetWMProperties(). */
1883 #ifdef USE_UTF8_STRING
1884 if (enc_utf8)
1885 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1886 NULL, 0, NULL, NULL, NULL);
1887 else
1888 #endif
1890 #if XtSpecificationRelease >= 4
1891 # ifdef FEAT_XFONTSET
1892 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1893 NULL, 0, NULL, NULL, NULL);
1894 # else
1895 XTextProperty text_prop;
1896 char *c_icon = (char *)icon;
1898 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
1899 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1900 NULL, 0, NULL, NULL, NULL);
1901 # endif
1902 #else
1903 XSetIconName(x11_display, x11_window, (char *)icon);
1904 #endif
1906 XFlush(x11_display);
1909 #else /* FEAT_X11 */
1911 static int
1912 get_x11_title(test_only)
1913 int test_only UNUSED;
1915 return FALSE;
1918 static int
1919 get_x11_icon(test_only)
1920 int test_only;
1922 if (!test_only)
1924 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1925 oldicon = T_NAME + 8;
1926 else
1927 oldicon = T_NAME;
1929 return FALSE;
1932 #endif /* FEAT_X11 */
1935 mch_can_restore_title()
1937 return get_x11_title(TRUE);
1941 mch_can_restore_icon()
1943 return get_x11_icon(TRUE);
1947 * Set the window title and icon.
1949 void
1950 mch_settitle(title, icon)
1951 char_u *title;
1952 char_u *icon;
1954 int type = 0;
1955 static int recursive = 0;
1957 if (T_NAME == NULL) /* no terminal name (yet) */
1958 return;
1959 if (title == NULL && icon == NULL) /* nothing to do */
1960 return;
1962 /* When one of the X11 functions causes a deadly signal, we get here again
1963 * recursively. Avoid hanging then (something is probably locked). */
1964 if (recursive)
1965 return;
1966 ++recursive;
1969 * if the window ID and the display is known, we may use X11 calls
1971 #ifdef FEAT_X11
1972 if (get_x11_windis() == OK)
1973 type = 1;
1974 #else
1975 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
1976 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
1977 if (gui.in_use)
1978 type = 1;
1979 # endif
1980 #endif
1983 * Note: if "t_TS" is set, title is set with escape sequence rather
1984 * than x11 calls, because the x11 calls don't always work
1986 if ((type || *T_TS != NUL) && title != NULL)
1988 if (oldtitle == NULL
1989 #ifdef FEAT_GUI
1990 && !gui.in_use
1991 #endif
1992 ) /* first call but not in GUI, save title */
1993 (void)get_x11_title(FALSE);
1995 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1996 term_settitle(title);
1997 #ifdef FEAT_X11
1998 else
1999 # ifdef FEAT_GUI_GTK
2000 if (!gui.in_use) /* don't do this if GTK+ is running */
2001 # endif
2002 set_x11_title(title); /* x11 */
2003 #endif
2004 #if defined(FEAT_GUI_GTK) \
2005 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
2006 || defined(FEAT_GUI_MACVIM)
2007 else
2008 gui_mch_settitle(title, icon);
2009 #endif
2010 did_set_title = TRUE;
2013 if ((type || *T_CIS != NUL) && icon != NULL)
2015 if (oldicon == NULL
2016 #ifdef FEAT_GUI
2017 && !gui.in_use
2018 #endif
2019 ) /* first call, save icon */
2020 get_x11_icon(FALSE);
2022 if (*T_CIS != NUL)
2024 out_str(T_CIS); /* set icon start */
2025 out_str_nf(icon);
2026 out_str(T_CIE); /* set icon end */
2027 out_flush();
2029 #ifdef FEAT_X11
2030 else
2031 # ifdef FEAT_GUI_GTK
2032 if (!gui.in_use) /* don't do this if GTK+ is running */
2033 # endif
2034 set_x11_icon(icon); /* x11 */
2035 #endif
2036 did_set_icon = TRUE;
2038 --recursive;
2042 * Restore the window/icon title.
2043 * "which" is one of:
2044 * 1 only restore title
2045 * 2 only restore icon
2046 * 3 restore title and icon
2048 void
2049 mch_restore_title(which)
2050 int which;
2052 /* only restore the title or icon when it has been set */
2053 mch_settitle(((which & 1) && did_set_title) ?
2054 (oldtitle ? oldtitle : p_titleold) : NULL,
2055 ((which & 2) && did_set_icon) ? oldicon : NULL);
2058 #endif /* FEAT_TITLE */
2061 * Return TRUE if "name" looks like some xterm name.
2062 * Seiichi Sato mentioned that "mlterm" works like xterm.
2065 vim_is_xterm(name)
2066 char_u *name;
2068 if (name == NULL)
2069 return FALSE;
2070 return (STRNICMP(name, "xterm", 5) == 0
2071 || STRNICMP(name, "nxterm", 6) == 0
2072 || STRNICMP(name, "kterm", 5) == 0
2073 || STRNICMP(name, "mlterm", 6) == 0
2074 || STRNICMP(name, "rxvt", 4) == 0
2075 || STRCMP(name, "builtin_xterm") == 0);
2078 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2080 * Return TRUE if "name" appears to be that of a terminal
2081 * known to support the xterm-style mouse protocol.
2082 * Relies on term_is_xterm having been set to its correct value.
2085 use_xterm_like_mouse(name)
2086 char_u *name;
2088 return (name != NULL
2089 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2091 #endif
2093 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2095 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2096 * Return 1 for "xterm".
2097 * Return 2 for "xterm2".
2100 use_xterm_mouse()
2102 if (ttym_flags == TTYM_XTERM2)
2103 return 2;
2104 if (ttym_flags == TTYM_XTERM)
2105 return 1;
2106 return 0;
2108 #endif
2111 vim_is_iris(name)
2112 char_u *name;
2114 if (name == NULL)
2115 return FALSE;
2116 return (STRNICMP(name, "iris-ansi", 9) == 0
2117 || STRCMP(name, "builtin_iris-ansi") == 0);
2121 vim_is_vt300(name)
2122 char_u *name;
2124 if (name == NULL)
2125 return FALSE; /* actually all ANSI comp. terminals should be here */
2126 /* catch VT100 - VT5xx */
2127 return ((STRNICMP(name, "vt", 2) == 0
2128 && vim_strchr((char_u *)"12345", name[2]) != NULL)
2129 || STRCMP(name, "builtin_vt320") == 0);
2133 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2134 * This should include all windowed terminal emulators.
2137 vim_is_fastterm(name)
2138 char_u *name;
2140 if (name == NULL)
2141 return FALSE;
2142 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2143 return TRUE;
2144 return ( STRNICMP(name, "hpterm", 6) == 0
2145 || STRNICMP(name, "sun-cmd", 7) == 0
2146 || STRNICMP(name, "screen", 6) == 0
2147 || STRNICMP(name, "dtterm", 6) == 0);
2151 * Insert user name in s[len].
2152 * Return OK if a name found.
2155 mch_get_user_name(s, len)
2156 char_u *s;
2157 int len;
2159 #ifdef VMS
2160 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
2161 return OK;
2162 #else
2163 return mch_get_uname(getuid(), s, len);
2164 #endif
2168 * Insert user name for "uid" in s[len].
2169 * Return OK if a name found.
2172 mch_get_uname(uid, s, len)
2173 uid_t uid;
2174 char_u *s;
2175 int len;
2177 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2178 struct passwd *pw;
2180 if ((pw = getpwuid(uid)) != NULL
2181 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2183 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
2184 return OK;
2186 #endif
2187 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2188 return FAIL; /* a number is not a name */
2192 * Insert host name is s[len].
2195 #ifdef HAVE_SYS_UTSNAME_H
2196 void
2197 mch_get_host_name(s, len)
2198 char_u *s;
2199 int len;
2201 struct utsname vutsname;
2203 if (uname(&vutsname) < 0)
2204 *s = NUL;
2205 else
2206 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
2208 #else /* HAVE_SYS_UTSNAME_H */
2210 # ifdef HAVE_SYS_SYSTEMINFO_H
2211 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2212 # endif
2214 void
2215 mch_get_host_name(s, len)
2216 char_u *s;
2217 int len;
2219 # ifdef VAXC
2220 vaxc$gethostname((char *)s, len);
2221 # else
2222 gethostname((char *)s, len);
2223 # endif
2224 s[len - 1] = NUL; /* make sure it's terminated */
2226 #endif /* HAVE_SYS_UTSNAME_H */
2229 * return process ID
2231 long
2232 mch_get_pid()
2234 return (long)getpid();
2237 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2238 static char *strerror __ARGS((int));
2240 static char *
2241 strerror(err)
2242 int err;
2244 extern int sys_nerr;
2245 extern char *sys_errlist[];
2246 static char er[20];
2248 if (err > 0 && err < sys_nerr)
2249 return (sys_errlist[err]);
2250 sprintf(er, "Error %d", err);
2251 return er;
2253 #endif
2256 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2257 * Return OK for success, FAIL for failure.
2260 mch_dirname(buf, len)
2261 char_u *buf;
2262 int len;
2264 #if defined(USE_GETCWD)
2265 if (getcwd((char *)buf, len) == NULL)
2267 STRCPY(buf, strerror(errno));
2268 return FAIL;
2270 return OK;
2271 #else
2272 return (getwd((char *)buf) != NULL ? OK : FAIL);
2273 #endif
2276 #if defined(OS2) || defined(PROTO)
2278 * Replace all slashes by backslashes.
2279 * When 'shellslash' set do it the other way around.
2281 void
2282 slash_adjust(p)
2283 char_u *p;
2285 while (*p)
2287 if (*p == psepcN)
2288 *p = psepc;
2289 mb_ptr_adv(p);
2292 #endif
2295 * Get absolute file name into "buf[len]".
2297 * return FAIL for failure, OK for success
2300 mch_FullName(fname, buf, len, force)
2301 char_u *fname, *buf;
2302 int len;
2303 int force; /* also expand when already absolute path */
2305 int l;
2306 #ifdef OS2
2307 int only_drive; /* file name is only a drive letter */
2308 #endif
2309 #ifdef HAVE_FCHDIR
2310 int fd = -1;
2311 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
2312 #endif
2313 char_u olddir[MAXPATHL];
2314 char_u *p;
2315 int retval = OK;
2316 #ifdef __CYGWIN__
2317 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2318 it's not always defined */
2319 #endif
2321 #ifdef VMS
2322 fname = vms_fixfilename(fname);
2323 #endif
2325 #ifdef __CYGWIN__
2327 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2329 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2330 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2331 # else
2332 cygwin_conv_to_posix_path(fname, posix_fname);
2333 # endif
2334 fname = posix_fname;
2335 #endif
2337 /* expand it if forced or not an absolute path */
2338 if (force || !mch_isFullName(fname))
2341 * If the file name has a path, change to that directory for a moment,
2342 * and then do the getwd() (and get back to where we were).
2343 * This will get the correct path name with "../" things.
2345 #ifdef OS2
2346 only_drive = 0;
2347 if (((p = vim_strrchr(fname, '/')) != NULL)
2348 || ((p = vim_strrchr(fname, '\\')) != NULL)
2349 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
2350 #else
2351 if ((p = vim_strrchr(fname, '/')) != NULL)
2352 #endif
2354 #ifdef HAVE_FCHDIR
2356 * Use fchdir() if possible, it's said to be faster and more
2357 * reliable. But on SunOS 4 it might not work. Check this by
2358 * doing a fchdir() right now.
2360 if (!dont_fchdir)
2362 fd = open(".", O_RDONLY | O_EXTRA, 0);
2363 if (fd >= 0 && fchdir(fd) < 0)
2365 close(fd);
2366 fd = -1;
2367 dont_fchdir = TRUE; /* don't try again */
2370 #endif
2372 /* Only change directory when we are sure we can return to where
2373 * we are now. After doing "su" chdir(".") might not work. */
2374 if (
2375 #ifdef HAVE_FCHDIR
2376 fd < 0 &&
2377 #endif
2378 (mch_dirname(olddir, MAXPATHL) == FAIL
2379 || mch_chdir((char *)olddir) != 0))
2381 p = NULL; /* can't get current dir: don't chdir */
2382 retval = FAIL;
2384 else
2386 #ifdef OS2
2388 * compensate for case where ':' from "D:" was the only
2389 * path separator detected in the file name; the _next_
2390 * character has to be removed, and then restored later.
2392 if (only_drive)
2393 p++;
2394 #endif
2395 /* The directory is copied into buf[], to be able to remove
2396 * the file name without changing it (could be a string in
2397 * read-only memory) */
2398 if (p - fname >= len)
2399 retval = FAIL;
2400 else
2402 vim_strncpy(buf, fname, p - fname);
2403 if (mch_chdir((char *)buf))
2404 retval = FAIL;
2405 else
2406 fname = p + 1;
2407 *buf = NUL;
2409 #ifdef OS2
2410 if (only_drive)
2412 p--;
2413 if (retval != FAIL)
2414 fname--;
2416 #endif
2419 if (mch_dirname(buf, len) == FAIL)
2421 retval = FAIL;
2422 *buf = NUL;
2424 if (p != NULL)
2426 #ifdef HAVE_FCHDIR
2427 if (fd >= 0)
2429 l = fchdir(fd);
2430 close(fd);
2432 else
2433 #endif
2434 l = mch_chdir((char *)olddir);
2435 if (l != 0)
2436 EMSG(_(e_prev_dir));
2439 l = STRLEN(buf);
2440 if (l >= len)
2441 retval = FAIL;
2442 #ifndef VMS
2443 else
2445 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2446 && STRCMP(fname, ".") != 0)
2447 STRCAT(buf, "/");
2449 #endif
2452 /* Catch file names which are too long. */
2453 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
2454 return FAIL;
2456 /* Do not append ".", "/dir/." is equal to "/dir". */
2457 if (STRCMP(fname, ".") != 0)
2458 STRCAT(buf, fname);
2460 return OK;
2464 * Return TRUE if "fname" does not depend on the current directory.
2467 mch_isFullName(fname)
2468 char_u *fname;
2470 #ifdef __EMX__
2471 return _fnisabs(fname);
2472 #else
2473 # ifdef VMS
2474 return ( fname[0] == '/' || fname[0] == '.' ||
2475 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2476 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2477 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2478 # else
2479 return (*fname == '/' || *fname == '~');
2480 # endif
2481 #endif
2484 #if defined(USE_FNAME_CASE) || defined(PROTO)
2486 * Set the case of the file name, if it already exists. This will cause the
2487 * file name to remain exactly the same.
2488 * Only required for file systems where case is ignored and preserved.
2490 void
2491 fname_case(name, len)
2492 char_u *name;
2493 int len UNUSED; /* buffer size, only used when name gets longer */
2495 struct stat st;
2496 char_u *slash, *tail;
2497 DIR *dirp;
2498 struct dirent *dp;
2500 if (lstat((char *)name, &st) >= 0)
2502 /* Open the directory where the file is located. */
2503 slash = vim_strrchr(name, '/');
2504 if (slash == NULL)
2506 dirp = opendir(".");
2507 tail = name;
2509 else
2511 *slash = NUL;
2512 dirp = opendir((char *)name);
2513 *slash = '/';
2514 tail = slash + 1;
2517 if (dirp != NULL)
2519 while ((dp = readdir(dirp)) != NULL)
2521 /* Only accept names that differ in case and are the same byte
2522 * length. TODO: accept different length name. */
2523 if (STRICMP(tail, dp->d_name) == 0
2524 && STRLEN(tail) == STRLEN(dp->d_name))
2526 char_u newname[MAXPATHL + 1];
2527 struct stat st2;
2529 /* Verify the inode is equal. */
2530 vim_strncpy(newname, name, MAXPATHL);
2531 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2532 MAXPATHL - (tail - name));
2533 if (lstat((char *)newname, &st2) >= 0
2534 && st.st_ino == st2.st_ino
2535 && st.st_dev == st2.st_dev)
2537 STRCPY(tail, dp->d_name);
2538 break;
2543 closedir(dirp);
2547 #endif
2550 * Get file permissions for 'name'.
2551 * Returns -1 when it doesn't exist.
2553 long
2554 mch_getperm(name)
2555 char_u *name;
2557 struct stat statb;
2559 /* Keep the #ifdef outside of stat(), it may be a macro. */
2560 #ifdef VMS
2561 if (stat((char *)vms_fixfilename(name), &statb))
2562 #else
2563 if (stat((char *)name, &statb))
2564 #endif
2565 return -1;
2566 #ifdef __INTERIX
2567 /* The top bit makes the value negative, which means the file doesn't
2568 * exist. Remove the bit, we don't use it. */
2569 return statb.st_mode & ~S_ADDACE;
2570 #else
2571 return statb.st_mode;
2572 #endif
2576 * set file permission for 'name' to 'perm'
2578 * return FAIL for failure, OK otherwise
2581 mch_setperm(name, perm)
2582 char_u *name;
2583 long perm;
2585 return (chmod((char *)
2586 #ifdef VMS
2587 vms_fixfilename(name),
2588 #else
2589 name,
2590 #endif
2591 (mode_t)perm) == 0 ? OK : FAIL);
2594 #if defined(HAVE_ACL) || defined(PROTO)
2595 # ifdef HAVE_SYS_ACL_H
2596 # include <sys/acl.h>
2597 # endif
2598 # ifdef HAVE_SYS_ACCESS_H
2599 # include <sys/access.h>
2600 # endif
2602 # ifdef HAVE_SOLARIS_ACL
2603 typedef struct vim_acl_solaris_T {
2604 int acl_cnt;
2605 aclent_t *acl_entry;
2606 } vim_acl_solaris_T;
2607 # endif
2609 #if defined(HAVE_SELINUX) || defined(PROTO)
2611 * Copy security info from "from_file" to "to_file".
2613 void
2614 mch_copy_sec(from_file, to_file)
2615 char_u *from_file;
2616 char_u *to_file;
2618 if (from_file == NULL)
2619 return;
2621 if (selinux_enabled == -1)
2622 selinux_enabled = is_selinux_enabled();
2624 if (selinux_enabled > 0)
2626 security_context_t from_context = NULL;
2627 security_context_t to_context = NULL;
2629 if (getfilecon((char *)from_file, &from_context) < 0)
2631 /* If the filesystem doesn't support extended attributes,
2632 the original had no special security context and the
2633 target cannot have one either. */
2634 if (errno == EOPNOTSUPP)
2635 return;
2637 MSG_PUTS(_("\nCould not get security context for "));
2638 msg_outtrans(from_file);
2639 msg_putchar('\n');
2640 return;
2642 if (getfilecon((char *)to_file, &to_context) < 0)
2644 MSG_PUTS(_("\nCould not get security context for "));
2645 msg_outtrans(to_file);
2646 msg_putchar('\n');
2647 freecon (from_context);
2648 return ;
2650 if (strcmp(from_context, to_context) != 0)
2652 if (setfilecon((char *)to_file, from_context) < 0)
2654 MSG_PUTS(_("\nCould not set security context for "));
2655 msg_outtrans(to_file);
2656 msg_putchar('\n');
2659 freecon(to_context);
2660 freecon(from_context);
2663 #endif /* HAVE_SELINUX */
2666 * Return a pointer to the ACL of file "fname" in allocated memory.
2667 * Return NULL if the ACL is not available for whatever reason.
2669 vim_acl_T
2670 mch_get_acl(fname)
2671 char_u *fname UNUSED;
2673 vim_acl_T ret = NULL;
2674 #ifdef HAVE_POSIX_ACL
2675 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2676 #else
2677 #ifdef HAVE_SOLARIS_ACL
2678 vim_acl_solaris_T *aclent;
2680 aclent = malloc(sizeof(vim_acl_solaris_T));
2681 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2683 free(aclent);
2684 return NULL;
2686 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2687 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2689 free(aclent->acl_entry);
2690 free(aclent);
2691 return NULL;
2693 ret = (vim_acl_T)aclent;
2694 #else
2695 #if defined(HAVE_AIX_ACL)
2696 int aclsize;
2697 struct acl *aclent;
2699 aclsize = sizeof(struct acl);
2700 aclent = malloc(aclsize);
2701 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2703 if (errno == ENOSPC)
2705 aclsize = aclent->acl_len;
2706 aclent = realloc(aclent, aclsize);
2707 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2709 free(aclent);
2710 return NULL;
2713 else
2715 free(aclent);
2716 return NULL;
2719 ret = (vim_acl_T)aclent;
2720 #endif /* HAVE_AIX_ACL */
2721 #endif /* HAVE_SOLARIS_ACL */
2722 #endif /* HAVE_POSIX_ACL */
2723 return ret;
2727 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2729 void
2730 mch_set_acl(fname, aclent)
2731 char_u *fname UNUSED;
2732 vim_acl_T aclent;
2734 if (aclent == NULL)
2735 return;
2736 #ifdef HAVE_POSIX_ACL
2737 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2738 #else
2739 #ifdef HAVE_SOLARIS_ACL
2740 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2741 ((vim_acl_solaris_T *)aclent)->acl_entry);
2742 #else
2743 #ifdef HAVE_AIX_ACL
2744 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2745 #endif /* HAVE_AIX_ACL */
2746 #endif /* HAVE_SOLARIS_ACL */
2747 #endif /* HAVE_POSIX_ACL */
2750 void
2751 mch_free_acl(aclent)
2752 vim_acl_T aclent;
2754 if (aclent == NULL)
2755 return;
2756 #ifdef HAVE_POSIX_ACL
2757 acl_free((acl_t)aclent);
2758 #else
2759 #ifdef HAVE_SOLARIS_ACL
2760 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2761 free(aclent);
2762 #else
2763 #ifdef HAVE_AIX_ACL
2764 free(aclent);
2765 #endif /* HAVE_AIX_ACL */
2766 #endif /* HAVE_SOLARIS_ACL */
2767 #endif /* HAVE_POSIX_ACL */
2769 #endif
2772 * Set hidden flag for "name".
2774 void
2775 mch_hide(name)
2776 char_u *name UNUSED;
2778 /* can't hide a file */
2782 * return TRUE if "name" is a directory
2783 * return FALSE if "name" is not a directory
2784 * return FALSE for error
2787 mch_isdir(name)
2788 char_u *name;
2790 struct stat statb;
2792 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2793 return FALSE;
2794 if (stat((char *)name, &statb))
2795 return FALSE;
2796 #ifdef _POSIX_SOURCE
2797 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2798 #else
2799 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2800 #endif
2803 static int executable_file __ARGS((char_u *name));
2806 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2808 static int
2809 executable_file(name)
2810 char_u *name;
2812 struct stat st;
2814 if (stat((char *)name, &st))
2815 return 0;
2816 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2820 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2821 * Return -1 if unknown.
2824 mch_can_exe(name)
2825 char_u *name;
2827 char_u *buf;
2828 char_u *p, *e;
2829 int retval;
2831 /* If it's an absolute or relative path don't need to use $PATH. */
2832 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2833 || (name[1] == '.' && name[2] == '/'))))
2834 return executable_file(name);
2836 p = (char_u *)getenv("PATH");
2837 if (p == NULL || *p == NUL)
2838 return -1;
2839 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2840 if (buf == NULL)
2841 return -1;
2844 * Walk through all entries in $PATH to check if "name" exists there and
2845 * is an executable file.
2847 for (;;)
2849 e = (char_u *)strchr((char *)p, ':');
2850 if (e == NULL)
2851 e = p + STRLEN(p);
2852 if (e - p <= 1) /* empty entry means current dir */
2853 STRCPY(buf, "./");
2854 else
2856 vim_strncpy(buf, p, e - p);
2857 add_pathsep(buf);
2859 STRCAT(buf, name);
2860 retval = executable_file(buf);
2861 if (retval == 1)
2862 break;
2864 if (*e != ':')
2865 break;
2866 p = e + 1;
2869 vim_free(buf);
2870 return retval;
2874 * Check what "name" is:
2875 * NODE_NORMAL: file or directory (or doesn't exist)
2876 * NODE_WRITABLE: writable device, socket, fifo, etc.
2877 * NODE_OTHER: non-writable things
2880 mch_nodetype(name)
2881 char_u *name;
2883 struct stat st;
2885 if (stat((char *)name, &st))
2886 return NODE_NORMAL;
2887 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2888 return NODE_NORMAL;
2889 #ifndef OS2
2890 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2891 return NODE_OTHER;
2892 #endif
2893 /* Everything else is writable? */
2894 return NODE_WRITABLE;
2897 void
2898 mch_early_init()
2900 #ifdef HAVE_CHECK_STACK_GROWTH
2901 int i;
2903 check_stack_growth((char *)&i);
2905 # ifdef HAVE_STACK_LIMIT
2906 get_stack_limit();
2907 # endif
2909 #endif
2912 * Setup an alternative stack for signals. Helps to catch signals when
2913 * running out of stack space.
2914 * Use of sigaltstack() is preferred, it's more portable.
2915 * Ignore any errors.
2917 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2918 signal_stack = (char *)alloc(SIGSTKSZ);
2919 init_signal_stack();
2920 #endif
2923 #if defined(EXITFREE) || defined(PROTO)
2924 void
2925 mch_free_mem()
2927 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2928 if (clip_star.owned)
2929 clip_lose_selection(&clip_star);
2930 if (clip_plus.owned)
2931 clip_lose_selection(&clip_plus);
2932 # endif
2933 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2934 if (xterm_Shell != (Widget)0)
2935 XtDestroyWidget(xterm_Shell);
2936 # ifndef LESSTIF_VERSION
2937 /* Lesstif crashes here, lose some memory */
2938 if (xterm_dpy != NULL)
2939 XtCloseDisplay(xterm_dpy);
2940 if (app_context != (XtAppContext)NULL)
2942 XtDestroyApplicationContext(app_context);
2943 # ifdef FEAT_X11
2944 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2945 # endif
2947 # endif
2948 # endif
2949 /* Don't close the display for GTK 1, it is done in exit(). */
2950 # if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
2951 if (x11_display != NULL
2952 # ifdef FEAT_XCLIPBOARD
2953 && x11_display != xterm_dpy
2954 # endif
2956 XCloseDisplay(x11_display);
2957 # endif
2958 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2959 vim_free(signal_stack);
2960 signal_stack = NULL;
2961 # endif
2962 # ifdef FEAT_TITLE
2963 vim_free(oldtitle);
2964 vim_free(oldicon);
2965 # endif
2967 #endif
2969 static void exit_scroll __ARGS((void));
2972 * Output a newline when exiting.
2973 * Make sure the newline goes to the same stream as the text.
2975 static void
2976 exit_scroll()
2978 if (silent_mode)
2979 return;
2980 if (newline_on_exit || msg_didout)
2982 if (msg_use_printf())
2984 if (info_message)
2985 mch_msg("\n");
2986 else
2987 mch_errmsg("\r\n");
2989 else
2990 out_char('\n');
2992 else
2994 restore_cterm_colors(); /* get original colors back */
2995 msg_clr_eos_force(); /* clear the rest of the display */
2996 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3000 void
3001 mch_exit(r)
3002 int r;
3004 exiting = TRUE;
3006 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3007 x11_export_final_selection();
3008 #endif
3010 #ifdef FEAT_GUI
3011 if (!gui.in_use)
3012 #endif
3014 settmode(TMODE_COOK);
3015 #ifdef FEAT_TITLE
3016 mch_restore_title(3); /* restore xterm title and icon name */
3017 #endif
3019 * When t_ti is not empty but it doesn't cause swapping terminal
3020 * pages, need to output a newline when msg_didout is set. But when
3021 * t_ti does swap pages it should not go to the shell page. Do this
3022 * before stoptermcap().
3024 if (swapping_screen() && !newline_on_exit)
3025 exit_scroll();
3027 /* Stop termcap: May need to check for T_CRV response, which
3028 * requires RAW mode. */
3029 stoptermcap();
3032 * A newline is only required after a message in the alternate screen.
3033 * This is set to TRUE by wait_return().
3035 if (!swapping_screen() || newline_on_exit)
3036 exit_scroll();
3038 /* Cursor may have been switched off without calling starttermcap()
3039 * when doing "vim -u vimrc" and vimrc contains ":q". */
3040 if (full_screen)
3041 cursor_on();
3043 out_flush();
3044 ml_close_all(TRUE); /* remove all memfiles */
3045 may_core_dump();
3046 #ifdef FEAT_GUI
3047 if (gui.in_use)
3048 gui_exit(r);
3049 #endif
3051 #ifdef MACOS_CONVERT
3052 mac_conv_cleanup();
3053 #endif
3055 #ifdef __QNX__
3056 /* A core dump won't be created if the signal handler
3057 * doesn't return, so we can't call exit() */
3058 if (deadly_signal != 0)
3059 return;
3060 #endif
3062 #ifdef FEAT_NETBEANS_INTG
3063 if (usingNetbeans)
3064 netbeans_send_disconnect();
3065 #endif
3067 #ifdef EXITFREE
3068 free_all_mem();
3069 #endif
3071 exit(r);
3074 static void
3075 may_core_dump()
3077 if (deadly_signal != 0)
3079 signal(deadly_signal, SIG_DFL);
3080 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3084 #ifndef VMS
3086 void
3087 mch_settmode(tmode)
3088 int tmode;
3090 static int first = TRUE;
3092 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3093 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3095 * for "new" tty systems
3097 # ifdef HAVE_TERMIOS_H
3098 static struct termios told;
3099 struct termios tnew;
3100 # else
3101 static struct termio told;
3102 struct termio tnew;
3103 # endif
3105 if (first)
3107 first = FALSE;
3108 # if defined(HAVE_TERMIOS_H)
3109 tcgetattr(read_cmd_fd, &told);
3110 # else
3111 ioctl(read_cmd_fd, TCGETA, &told);
3112 # endif
3115 tnew = told;
3116 if (tmode == TMODE_RAW)
3119 * ~ICRNL enables typing ^V^M
3121 tnew.c_iflag &= ~ICRNL;
3122 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3123 # if defined(IEXTEN) && !defined(__MINT__)
3124 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3125 /* but it breaks function keys on MINT */
3126 # endif
3128 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3129 tnew.c_oflag &= ~ONLCR;
3130 # endif
3131 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3132 tnew.c_cc[VTIME] = 0; /* don't wait */
3134 else if (tmode == TMODE_SLEEP)
3135 tnew.c_lflag &= ~(ECHO);
3137 # if defined(HAVE_TERMIOS_H)
3139 int n = 10;
3141 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3142 * few times. */
3143 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3144 && errno == EINTR && n > 0)
3145 --n;
3147 # else
3148 ioctl(read_cmd_fd, TCSETA, &tnew);
3149 # endif
3151 #else
3154 * for "old" tty systems
3156 # ifndef TIOCSETN
3157 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3158 # endif
3159 static struct sgttyb ttybold;
3160 struct sgttyb ttybnew;
3162 if (first)
3164 first = FALSE;
3165 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3168 ttybnew = ttybold;
3169 if (tmode == TMODE_RAW)
3171 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3172 ttybnew.sg_flags |= RAW;
3174 else if (tmode == TMODE_SLEEP)
3175 ttybnew.sg_flags &= ~(ECHO);
3176 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3177 #endif
3178 curr_tmode = tmode;
3182 * Try to get the code for "t_kb" from the stty setting
3184 * Even if termcap claims a backspace key, the user's setting *should*
3185 * prevail. stty knows more about reality than termcap does, and if
3186 * somebody's usual erase key is DEL (which, for most BSD users, it will
3187 * be), they're going to get really annoyed if their erase key starts
3188 * doing forward deletes for no reason. (Eric Fischer)
3190 void
3191 get_stty()
3193 char_u buf[2];
3194 char_u *p;
3196 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3197 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3198 /* for "new" tty systems */
3199 # ifdef HAVE_TERMIOS_H
3200 struct termios keys;
3201 # else
3202 struct termio keys;
3203 # endif
3205 # if defined(HAVE_TERMIOS_H)
3206 if (tcgetattr(read_cmd_fd, &keys) != -1)
3207 # else
3208 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3209 # endif
3211 buf[0] = keys.c_cc[VERASE];
3212 intr_char = keys.c_cc[VINTR];
3213 #else
3214 /* for "old" tty systems */
3215 struct sgttyb keys;
3217 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3219 buf[0] = keys.sg_erase;
3220 intr_char = keys.sg_kill;
3221 #endif
3222 buf[1] = NUL;
3223 add_termcode((char_u *)"kb", buf, FALSE);
3226 * If <BS> and <DEL> are now the same, redefine <DEL>.
3228 p = find_termcode((char_u *)"kD");
3229 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3230 do_fixdel(NULL);
3232 #if 0
3233 } /* to keep cindent happy */
3234 #endif
3237 #endif /* VMS */
3239 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3241 * Set mouse clicks on or off.
3243 void
3244 mch_setmouse(on)
3245 int on;
3247 static int ison = FALSE;
3248 int xterm_mouse_vers;
3250 if (on == ison) /* return quickly if nothing to do */
3251 return;
3253 xterm_mouse_vers = use_xterm_mouse();
3254 if (xterm_mouse_vers > 0)
3256 if (on) /* enable mouse events, use mouse tracking if available */
3257 out_str_nf((char_u *)
3258 (xterm_mouse_vers > 1
3259 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3260 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3261 else /* disable mouse events, could probably always send the same */
3262 out_str_nf((char_u *)
3263 (xterm_mouse_vers > 1
3264 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3265 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3266 ison = on;
3269 # ifdef FEAT_MOUSE_DEC
3270 else if (ttym_flags == TTYM_DEC)
3272 if (on) /* enable mouse events */
3273 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3274 else /* disable mouse events */
3275 out_str_nf((char_u *)"\033['z");
3276 ison = on;
3278 # endif
3280 # ifdef FEAT_MOUSE_GPM
3281 else
3283 if (on)
3285 if (gpm_open())
3286 ison = TRUE;
3288 else
3290 gpm_close();
3291 ison = FALSE;
3294 # endif
3296 # ifdef FEAT_SYSMOUSE
3297 else
3299 if (on)
3301 if (sysmouse_open() == OK)
3302 ison = TRUE;
3304 else
3306 sysmouse_close();
3307 ison = FALSE;
3310 # endif
3312 # ifdef FEAT_MOUSE_JSB
3313 else
3315 if (on)
3317 /* D - Enable Mouse up/down messages
3318 * L - Enable Left Button Reporting
3319 * M - Enable Middle Button Reporting
3320 * R - Enable Right Button Reporting
3321 * K - Enable SHIFT and CTRL key Reporting
3322 * + - Enable Advanced messaging of mouse moves and up/down messages
3323 * Q - Quiet No Ack
3324 * # - Numeric value of mouse pointer required
3325 * 0 = Multiview 2000 cursor, used as standard
3326 * 1 = Windows Arrow
3327 * 2 = Windows I Beam
3328 * 3 = Windows Hour Glass
3329 * 4 = Windows Cross Hair
3330 * 5 = Windows UP Arrow
3332 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3333 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3334 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3335 #else
3336 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3337 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3338 #endif
3339 ison = TRUE;
3341 else
3343 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3344 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3345 ison = FALSE;
3348 # endif
3349 # ifdef FEAT_MOUSE_PTERM
3350 else
3352 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3353 if (on)
3354 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3355 else
3356 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3357 ison = on;
3359 # endif
3363 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3365 void
3366 check_mouse_termcode()
3368 # ifdef FEAT_MOUSE_XTERM
3369 if (use_xterm_mouse()
3370 # ifdef FEAT_GUI
3371 && !gui.in_use
3372 # endif
3375 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3376 ? IF_EB("\233M", CSI_STR "M")
3377 : IF_EB("\033[M", ESC_STR "[M")));
3378 if (*p_mouse != NUL)
3380 /* force mouse off and maybe on to send possibly new mouse
3381 * activation sequence to the xterm, with(out) drag tracing. */
3382 mch_setmouse(FALSE);
3383 setmouse();
3386 else
3387 del_mouse_termcode(KS_MOUSE);
3388 # endif
3390 # ifdef FEAT_MOUSE_GPM
3391 if (!use_xterm_mouse()
3392 # ifdef FEAT_GUI
3393 && !gui.in_use
3394 # endif
3396 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3397 # endif
3399 # ifdef FEAT_SYSMOUSE
3400 if (!use_xterm_mouse()
3401 # ifdef FEAT_GUI
3402 && !gui.in_use
3403 # endif
3405 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3406 # endif
3408 # ifdef FEAT_MOUSE_JSB
3409 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3410 if (!use_xterm_mouse()
3411 # ifdef FEAT_GUI
3412 && !gui.in_use
3413 # endif
3415 set_mouse_termcode(KS_JSBTERM_MOUSE,
3416 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3417 else
3418 del_mouse_termcode(KS_JSBTERM_MOUSE);
3419 # endif
3421 # ifdef FEAT_MOUSE_NET
3422 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3423 * define it in the GUI or when using an xterm. */
3424 if (!use_xterm_mouse()
3425 # ifdef FEAT_GUI
3426 && !gui.in_use
3427 # endif
3429 set_mouse_termcode(KS_NETTERM_MOUSE,
3430 (char_u *)IF_EB("\033}", ESC_STR "}"));
3431 else
3432 del_mouse_termcode(KS_NETTERM_MOUSE);
3433 # endif
3435 # ifdef FEAT_MOUSE_DEC
3436 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3437 if (!use_xterm_mouse()
3438 # ifdef FEAT_GUI
3439 && !gui.in_use
3440 # endif
3442 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3443 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
3444 else
3445 del_mouse_termcode(KS_DEC_MOUSE);
3446 # endif
3447 # ifdef FEAT_MOUSE_PTERM
3448 /* same as the dec mouse */
3449 if (!use_xterm_mouse()
3450 # ifdef FEAT_GUI
3451 && !gui.in_use
3452 # endif
3454 set_mouse_termcode(KS_PTERM_MOUSE,
3455 (char_u *) IF_EB("\033[", ESC_STR "["));
3456 else
3457 del_mouse_termcode(KS_PTERM_MOUSE);
3458 # endif
3460 #endif
3463 * set screen mode, always fails.
3466 mch_screenmode(arg)
3467 char_u *arg UNUSED;
3469 EMSG(_(e_screenmode));
3470 return FAIL;
3473 #ifndef VMS
3476 * Try to get the current window size:
3477 * 1. with an ioctl(), most accurate method
3478 * 2. from the environment variables LINES and COLUMNS
3479 * 3. from the termcap
3480 * 4. keep using the old values
3481 * Return OK when size could be determined, FAIL otherwise.
3484 mch_get_shellsize()
3486 long rows = 0;
3487 long columns = 0;
3488 char_u *p;
3491 * For OS/2 use _scrsize().
3493 # ifdef __EMX__
3495 int s[2];
3497 _scrsize(s);
3498 columns = s[0];
3499 rows = s[1];
3501 # endif
3504 * 1. try using an ioctl. It is the most accurate method.
3506 * Try using TIOCGWINSZ first, some systems that have it also define
3507 * TIOCGSIZE but don't have a struct ttysize.
3509 # ifdef TIOCGWINSZ
3511 struct winsize ws;
3512 int fd = 1;
3514 /* When stdout is not a tty, use stdin for the ioctl(). */
3515 if (!isatty(fd) && isatty(read_cmd_fd))
3516 fd = read_cmd_fd;
3517 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3519 columns = ws.ws_col;
3520 rows = ws.ws_row;
3523 # else /* TIOCGWINSZ */
3524 # ifdef TIOCGSIZE
3526 struct ttysize ts;
3527 int fd = 1;
3529 /* When stdout is not a tty, use stdin for the ioctl(). */
3530 if (!isatty(fd) && isatty(read_cmd_fd))
3531 fd = read_cmd_fd;
3532 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3534 columns = ts.ts_cols;
3535 rows = ts.ts_lines;
3538 # endif /* TIOCGSIZE */
3539 # endif /* TIOCGWINSZ */
3542 * 2. get size from environment
3543 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3544 * the ioctl() values!
3546 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
3548 if ((p = (char_u *)getenv("LINES")))
3549 rows = atoi((char *)p);
3550 if ((p = (char_u *)getenv("COLUMNS")))
3551 columns = atoi((char *)p);
3554 #ifdef HAVE_TGETENT
3556 * 3. try reading "co" and "li" entries from termcap
3558 if (columns == 0 || rows == 0)
3559 getlinecol(&columns, &rows);
3560 #endif
3563 * 4. If everything fails, use the old values
3565 if (columns <= 0 || rows <= 0)
3566 return FAIL;
3568 Rows = rows;
3569 Columns = columns;
3570 return OK;
3574 * Try to set the window size to Rows and Columns.
3576 void
3577 mch_set_shellsize()
3579 if (*T_CWS)
3582 * NOTE: if you get an error here that term_set_winsize() is
3583 * undefined, check the output of configure. It could probably not
3584 * find a ncurses, termcap or termlib library.
3586 term_set_winsize((int)Rows, (int)Columns);
3587 out_flush();
3588 screen_start(); /* don't know where cursor is now */
3592 #endif /* VMS */
3595 * Rows and/or Columns has changed.
3597 void
3598 mch_new_shellsize()
3600 /* Nothing to do. */
3603 #ifndef USE_SYSTEM
3604 static void append_ga_line __ARGS((garray_T *gap));
3607 * Append the text in "gap" below the cursor line and clear "gap".
3609 static void
3610 append_ga_line(gap)
3611 garray_T *gap;
3613 /* Remove trailing CR. */
3614 if (gap->ga_len > 0
3615 && !curbuf->b_p_bin
3616 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3617 --gap->ga_len;
3618 ga_append(gap, NUL);
3619 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3620 gap->ga_len = 0;
3622 #endif
3625 mch_call_shell(cmd, options)
3626 char_u *cmd;
3627 int options; /* SHELL_*, see vim.h */
3629 #ifdef VMS
3630 char *ifn = NULL;
3631 char *ofn = NULL;
3632 #endif
3633 int tmode = cur_tmode;
3634 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3635 int x;
3636 # ifndef __EMX__
3637 char_u *newcmd; /* only needed for unix */
3638 # else
3640 * Set the preferred shell in the EMXSHELL environment variable (but
3641 * only if it is different from what is already in the environment).
3642 * Emx then takes care of whether to use "/c" or "-c" in an
3643 * intelligent way. Simply pass the whole thing to emx's system() call.
3644 * Emx also starts an interactive shell if system() is passed an empty
3645 * string.
3647 char_u *p, *old;
3649 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3651 /* should check HAVE_SETENV, but I know we don't have it. */
3652 p = alloc(10 + strlen(p_sh));
3653 if (p)
3655 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3656 putenv((char *)p); /* don't free the pointer! */
3659 # endif
3661 out_flush();
3663 if (options & SHELL_COOKED)
3664 settmode(TMODE_COOK); /* set to normal mode */
3666 # ifdef __EMX__
3667 if (cmd == NULL)
3668 x = system(""); /* this starts an interactive shell in emx */
3669 else
3670 x = system((char *)cmd);
3671 /* system() returns -1 when error occurs in starting shell */
3672 if (x == -1 && !emsg_silent)
3674 MSG_PUTS(_("\nCannot execute shell "));
3675 msg_outtrans(p_sh);
3676 msg_putchar('\n');
3678 # else /* not __EMX__ */
3679 if (cmd == NULL)
3680 x = system((char *)p_sh);
3681 else
3683 # ifdef VMS
3684 if (ofn = strchr((char *)cmd, '>'))
3685 *ofn++ = '\0';
3686 if (ifn = strchr((char *)cmd, '<'))
3688 char *p;
3690 *ifn++ = '\0';
3691 p = strchr(ifn,' '); /* chop off any trailing spaces */
3692 if (p)
3693 *p = '\0';
3695 if (ofn)
3696 x = vms_sys((char *)cmd, ofn, ifn);
3697 else
3698 x = system((char *)cmd);
3699 # else
3700 newcmd = lalloc(STRLEN(p_sh)
3701 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3702 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3703 if (newcmd == NULL)
3704 x = 0;
3705 else
3707 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3708 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3709 (char *)p_shcf,
3710 (char *)cmd);
3711 x = system((char *)newcmd);
3712 vim_free(newcmd);
3714 # endif
3716 # ifdef VMS
3717 x = vms_sys_status(x);
3718 # endif
3719 if (emsg_silent)
3721 else if (x == 127)
3722 MSG_PUTS(_("\nCannot execute shell sh\n"));
3723 # endif /* __EMX__ */
3724 else if (x && !(options & SHELL_SILENT))
3726 MSG_PUTS(_("\nshell returned "));
3727 msg_outnum((long)x);
3728 msg_putchar('\n');
3731 if (tmode == TMODE_RAW)
3732 settmode(TMODE_RAW); /* set to raw mode */
3733 # ifdef FEAT_TITLE
3734 resettitle();
3735 # endif
3736 return x;
3738 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3740 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3741 127, some shells use that already */
3743 char_u *newcmd = NULL;
3744 pid_t pid;
3745 pid_t wpid = 0;
3746 pid_t wait_pid = 0;
3747 # ifdef HAVE_UNION_WAIT
3748 union wait status;
3749 # else
3750 int status = -1;
3751 # endif
3752 int retval = -1;
3753 char **argv = NULL;
3754 int argc;
3755 int i;
3756 char_u *p;
3757 int inquote;
3758 int pty_master_fd = -1; /* for pty's */
3759 # ifdef FEAT_GUI
3760 int pty_slave_fd = -1;
3761 char *tty_name;
3762 # endif
3763 int fd_toshell[2]; /* for pipes */
3764 int fd_fromshell[2];
3765 int pipe_error = FALSE;
3766 # ifdef HAVE_SETENV
3767 char envbuf[50];
3768 # else
3769 static char envbuf_Rows[20];
3770 static char envbuf_Columns[20];
3771 # endif
3772 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
3774 out_flush();
3775 if (options & SHELL_COOKED)
3776 settmode(TMODE_COOK); /* set to normal mode */
3778 newcmd = vim_strsave(p_sh);
3779 if (newcmd == NULL) /* out of memory */
3780 goto error;
3783 * Do this loop twice:
3784 * 1: find number of arguments
3785 * 2: separate them and build argv[]
3787 for (i = 0; i < 2; ++i)
3789 p = newcmd;
3790 inquote = FALSE;
3791 argc = 0;
3792 for (;;)
3794 if (i == 1)
3795 argv[argc] = (char *)p;
3796 ++argc;
3797 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3799 if (*p == '"')
3800 inquote = !inquote;
3801 ++p;
3803 if (*p == NUL)
3804 break;
3805 if (i == 1)
3806 *p++ = NUL;
3807 p = skipwhite(p);
3809 if (argv == NULL)
3811 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3812 if (argv == NULL) /* out of memory */
3813 goto error;
3816 if (cmd != NULL)
3818 if (extra_shell_arg != NULL)
3819 argv[argc++] = (char *)extra_shell_arg;
3820 argv[argc++] = (char *)p_shcf;
3821 argv[argc++] = (char *)cmd;
3823 argv[argc] = NULL;
3826 * For the GUI, when writing the output into the buffer and when reading
3827 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3828 * of the executed command into the Vim window. Or use a pipe.
3830 if ((options & (SHELL_READ|SHELL_WRITE))
3831 # ifdef FEAT_GUI
3832 || (gui.in_use && show_shell_mess)
3833 # endif
3836 # ifdef FEAT_GUI
3838 * Try to open a master pty.
3839 * If this works, open the slave pty.
3840 * If the slave can't be opened, close the master pty.
3842 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
3844 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3845 if (pty_master_fd >= 0 && ((pty_slave_fd =
3846 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3848 close(pty_master_fd);
3849 pty_master_fd = -1;
3853 * If not opening a pty or it didn't work, try using pipes.
3855 if (pty_master_fd < 0)
3856 # endif
3858 pipe_error = (pipe(fd_toshell) < 0);
3859 if (!pipe_error) /* pipe create OK */
3861 pipe_error = (pipe(fd_fromshell) < 0);
3862 if (pipe_error) /* pipe create failed */
3864 close(fd_toshell[0]);
3865 close(fd_toshell[1]);
3868 if (pipe_error)
3870 MSG_PUTS(_("\nCannot create pipes\n"));
3871 out_flush();
3876 if (!pipe_error) /* pty or pipe opened or not used */
3878 # ifdef __BEOS__
3879 beos_cleanup_read_thread();
3880 # endif
3882 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3884 MSG_PUTS(_("\nCannot fork\n"));
3885 if ((options & (SHELL_READ|SHELL_WRITE))
3886 # ifdef FEAT_GUI
3887 || (gui.in_use && show_shell_mess)
3888 # endif
3891 # ifdef FEAT_GUI
3892 if (pty_master_fd >= 0) /* close the pseudo tty */
3894 close(pty_master_fd);
3895 close(pty_slave_fd);
3897 else /* close the pipes */
3898 # endif
3900 close(fd_toshell[0]);
3901 close(fd_toshell[1]);
3902 close(fd_fromshell[0]);
3903 close(fd_fromshell[1]);
3907 else if (pid == 0) /* child */
3909 reset_signals(); /* handle signals normally */
3911 if (!show_shell_mess || (options & SHELL_EXPAND))
3913 int fd;
3916 * Don't want to show any message from the shell. Can't just
3917 * close stdout and stderr though, because some systems will
3918 * break if you try to write to them after that, so we must
3919 * use dup() to replace them with something else -- webb
3920 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3921 * waiting for input.
3923 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3924 fclose(stdin);
3925 fclose(stdout);
3926 fclose(stderr);
3929 * If any of these open()'s and dup()'s fail, we just continue
3930 * anyway. It's not fatal, and on most systems it will make
3931 * no difference at all. On a few it will cause the execvp()
3932 * to exit with a non-zero status even when the completion
3933 * could be done, which is nothing too serious. If the open()
3934 * or dup() failed we'd just do the same thing ourselves
3935 * anyway -- webb
3937 if (fd >= 0)
3939 ignored = dup(fd); /* To replace stdin (fd 0) */
3940 ignored = dup(fd); /* To replace stdout (fd 1) */
3941 ignored = dup(fd); /* To replace stderr (fd 2) */
3943 /* Don't need this now that we've duplicated it */
3944 close(fd);
3947 else if ((options & (SHELL_READ|SHELL_WRITE))
3948 # ifdef FEAT_GUI
3949 || gui.in_use
3950 # endif
3954 # ifdef HAVE_SETSID
3955 /* Create our own process group, so that the child and all its
3956 * children can be kill()ed. Don't do this when using pipes,
3957 * because stdin is not a tty, we would lose /dev/tty. */
3958 if (p_stmp)
3960 (void)setsid();
3961 # if defined(SIGHUP)
3962 /* When doing "!xterm&" and 'shell' is bash: the shell
3963 * will exit and send SIGHUP to all processes in its
3964 * group, killing the just started process. Ignore SIGHUP
3965 * to avoid that. (suggested by Simon Schubert)
3967 signal(SIGHUP, SIG_IGN);
3968 # endif
3970 # endif
3971 # ifdef FEAT_GUI
3972 if (pty_slave_fd >= 0)
3974 /* push stream discipline modules */
3975 if (options & SHELL_COOKED)
3976 SetupSlavePTY(pty_slave_fd);
3977 # if defined(TIOCSCTTY) && !defined(FEAT_GUI_MACVIM)
3978 /* Try to become controlling tty (probably doesn't work,
3979 * unless run by root) */
3980 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
3981 # endif
3983 # endif
3984 /* Simulate to have a dumb terminal (for now) */
3985 # ifdef HAVE_SETENV
3986 setenv("TERM", "dumb", 1);
3987 sprintf((char *)envbuf, "%ld", Rows);
3988 setenv("ROWS", (char *)envbuf, 1);
3989 sprintf((char *)envbuf, "%ld", Rows);
3990 setenv("LINES", (char *)envbuf, 1);
3991 sprintf((char *)envbuf, "%ld", Columns);
3992 setenv("COLUMNS", (char *)envbuf, 1);
3993 # else
3995 * Putenv does not copy the string, it has to remain valid.
3996 * Use a static array to avoid losing allocated memory.
3998 putenv("TERM=dumb");
3999 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4000 putenv(envbuf_Rows);
4001 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4002 putenv(envbuf_Rows);
4003 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4004 putenv(envbuf_Columns);
4005 # endif
4008 * stderr is only redirected when using the GUI, so that a
4009 * program like gpg can still access the terminal to get a
4010 * passphrase using stderr.
4012 # ifdef FEAT_GUI
4013 if (pty_master_fd >= 0)
4015 close(pty_master_fd); /* close master side of pty */
4017 /* set up stdin/stdout/stderr for the child */
4018 close(0);
4019 ignored = dup(pty_slave_fd);
4020 close(1);
4021 ignored = dup(pty_slave_fd);
4022 if (gui.in_use)
4024 close(2);
4025 ignored = dup(pty_slave_fd);
4028 close(pty_slave_fd); /* has been dupped, close it now */
4030 else
4031 # endif
4033 /* set up stdin for the child */
4034 close(fd_toshell[1]);
4035 close(0);
4036 ignored = dup(fd_toshell[0]);
4037 close(fd_toshell[0]);
4039 /* set up stdout for the child */
4040 close(fd_fromshell[0]);
4041 close(1);
4042 ignored = dup(fd_fromshell[1]);
4043 close(fd_fromshell[1]);
4045 # ifdef FEAT_GUI
4046 if (gui.in_use)
4048 /* set up stderr for the child */
4049 close(2);
4050 ignored = dup(1);
4052 # endif
4057 * There is no type cast for the argv, because the type may be
4058 * different on different machines. This may cause a warning
4059 * message with strict compilers, don't worry about it.
4060 * Call _exit() instead of exit() to avoid closing the connection
4061 * to the X server (esp. with GTK, which uses atexit()).
4063 execvp(argv[0], argv);
4064 _exit(EXEC_FAILED); /* exec failed, return failure code */
4066 else /* parent */
4069 * While child is running, ignore terminating signals.
4070 * Do catch CTRL-C, so that "got_int" is set.
4072 catch_signals(SIG_IGN, SIG_ERR);
4073 catch_int_signal();
4076 * For the GUI we redirect stdin, stdout and stderr to our window.
4077 * This is also used to pipe stdin/stdout to/from the external
4078 * command.
4080 if ((options & (SHELL_READ|SHELL_WRITE))
4081 # ifdef FEAT_GUI
4082 || (gui.in_use && show_shell_mess)
4083 # endif
4086 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4087 char_u buffer[BUFLEN + 1];
4088 # ifdef FEAT_MBYTE
4089 int buffer_off = 0; /* valid bytes in buffer[] */
4090 # endif
4091 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4092 int ta_len = 0; /* valid bytes in ta_buf[] */
4093 int len;
4094 int p_more_save;
4095 int old_State;
4096 int c;
4097 int toshell_fd;
4098 int fromshell_fd;
4099 garray_T ga;
4100 int noread_cnt;
4101 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4102 struct timeval start_tv;
4103 # endif
4105 # ifdef FEAT_GUI
4106 if (pty_master_fd >= 0)
4108 close(pty_slave_fd); /* close slave side of pty */
4109 fromshell_fd = pty_master_fd;
4110 toshell_fd = dup(pty_master_fd);
4112 else
4113 # endif
4115 close(fd_toshell[0]);
4116 close(fd_fromshell[1]);
4117 toshell_fd = fd_toshell[1];
4118 fromshell_fd = fd_fromshell[0];
4122 * Write to the child if there are typed characters.
4123 * Read from the child if there are characters available.
4124 * Repeat the reading a few times if more characters are
4125 * available. Need to check for typed keys now and then, but
4126 * not too often (delays when no chars are available).
4127 * This loop is quit if no characters can be read from the pty
4128 * (WaitForChar detected special condition), or there are no
4129 * characters available and the child has exited.
4130 * Only check if the child has exited when there is no more
4131 * output. The child may exit before all the output has
4132 * been printed.
4134 * Currently this busy loops!
4135 * This can probably dead-lock when the write blocks!
4137 p_more_save = p_more;
4138 p_more = FALSE;
4139 old_State = State;
4140 State = EXTERNCMD; /* don't redraw at window resize */
4142 if ((options & SHELL_WRITE) && toshell_fd >= 0)
4144 /* Fork a process that will write the lines to the
4145 * external program. */
4146 if ((wpid = fork()) == -1)
4148 MSG_PUTS(_("\nCannot fork\n"));
4150 else if (wpid == 0)
4152 linenr_T lnum = curbuf->b_op_start.lnum;
4153 int written = 0;
4154 char_u *lp = ml_get(lnum);
4155 char_u *s;
4156 size_t l;
4158 /* child */
4159 close(fromshell_fd);
4160 for (;;)
4162 l = STRLEN(lp + written);
4163 if (l == 0)
4164 len = 0;
4165 else if (lp[written] == NL)
4166 /* NL -> NUL translation */
4167 len = write(toshell_fd, "", (size_t)1);
4168 else
4170 s = vim_strchr(lp + written, NL);
4171 len = write(toshell_fd, (char *)lp + written,
4172 s == NULL ? l
4173 : (size_t)(s - (lp + written)));
4175 if (len == (int)l)
4177 /* Finished a line, add a NL, unless this line
4178 * should not have one. */
4179 if (lnum != curbuf->b_op_end.lnum
4180 || !curbuf->b_p_bin
4181 || (lnum != write_no_eol_lnum
4182 && (lnum !=
4183 curbuf->b_ml.ml_line_count
4184 || curbuf->b_p_eol)))
4185 ignored = write(toshell_fd, "\n",
4186 (size_t)1);
4187 ++lnum;
4188 if (lnum > curbuf->b_op_end.lnum)
4190 /* finished all the lines, close pipe */
4191 close(toshell_fd);
4192 toshell_fd = -1;
4193 break;
4195 lp = ml_get(lnum);
4196 written = 0;
4198 else if (len > 0)
4199 written += len;
4201 _exit(0);
4203 else
4205 close(toshell_fd);
4206 toshell_fd = -1;
4210 if (options & SHELL_READ)
4211 ga_init2(&ga, 1, BUFLEN);
4213 noread_cnt = 0;
4214 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4215 gettimeofday(&start_tv, NULL);
4216 # endif
4217 for (;;)
4220 * Check if keys have been typed, write them to the child
4221 * if there are any.
4222 * Don't do this if we are expanding wild cards (would eat
4223 * typeahead).
4224 * Don't do this when filtering and terminal is in cooked
4225 * mode, the shell command will handle the I/O. Avoids
4226 * that a typed password is echoed for ssh or gpg command.
4227 * Don't get characters when the child has already
4228 * finished (wait_pid == 0).
4229 * Don't read characters unless we didn't get output for a
4230 * while (noread_cnt > 4), avoids that ":r !ls" eats
4231 * typeahead.
4233 len = 0;
4234 if (!(options & SHELL_EXPAND)
4235 && ((options &
4236 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4237 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4238 # ifdef FEAT_GUI
4239 || gui.in_use
4240 # endif
4242 && wait_pid == 0
4243 && (ta_len > 0 || noread_cnt > 4))
4245 if (ta_len == 0)
4247 /* Get extra characters when we don't have any.
4248 * Reset the counter and timer. */
4249 noread_cnt = 0;
4250 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4251 gettimeofday(&start_tv, NULL);
4252 # endif
4253 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4255 if (ta_len > 0 || len > 0)
4258 * For pipes:
4259 * Check for CTRL-C: send interrupt signal to child.
4260 * Check for CTRL-D: EOF, close pipe to child.
4262 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4264 # ifdef SIGINT
4266 * Send SIGINT to the child's group or all
4267 * processes in our group.
4269 if (ta_buf[ta_len] == Ctrl_C
4270 || ta_buf[ta_len] == intr_char)
4272 # ifdef HAVE_SETSID
4273 kill(-pid, SIGINT);
4274 # else
4275 kill(0, SIGINT);
4276 # endif
4277 if (wpid > 0)
4278 kill(wpid, SIGINT);
4280 # endif
4281 if (pty_master_fd < 0 && toshell_fd >= 0
4282 && ta_buf[ta_len] == Ctrl_D)
4284 close(toshell_fd);
4285 toshell_fd = -1;
4289 /* replace K_BS by <BS> and K_DEL by <DEL> */
4290 for (i = ta_len; i < ta_len + len; ++i)
4292 if (ta_buf[i] == CSI && len - i > 2)
4294 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4295 if (c == K_DEL || c == K_KDEL || c == K_BS)
4297 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4298 (size_t)(len - i - 2));
4299 if (c == K_DEL || c == K_KDEL)
4300 ta_buf[i] = DEL;
4301 else
4302 ta_buf[i] = Ctrl_H;
4303 len -= 2;
4306 else if (ta_buf[i] == '\r')
4307 ta_buf[i] = '\n';
4308 # ifdef FEAT_MBYTE
4309 if (has_mbyte)
4310 i += (*mb_ptr2len_len)(ta_buf + i,
4311 ta_len + len - i) - 1;
4312 # endif
4316 * For pipes: echo the typed characters.
4317 * For a pty this does not seem to work.
4319 if (pty_master_fd < 0)
4321 for (i = ta_len; i < ta_len + len; ++i)
4323 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4324 msg_putchar(ta_buf[i]);
4325 # ifdef FEAT_MBYTE
4326 else if (has_mbyte)
4328 int l = (*mb_ptr2len)(ta_buf + i);
4330 msg_outtrans_len(ta_buf + i, l);
4331 i += l - 1;
4333 # endif
4334 else
4335 msg_outtrans_len(ta_buf + i, 1);
4337 windgoto(msg_row, msg_col);
4338 out_flush();
4341 ta_len += len;
4344 * Write the characters to the child, unless EOF has
4345 * been typed for pipes. Write one character at a
4346 * time, to avoid losing too much typeahead.
4347 * When writing buffer lines, drop the typed
4348 * characters (only check for CTRL-C).
4350 if (options & SHELL_WRITE)
4351 ta_len = 0;
4352 else if (toshell_fd >= 0)
4354 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4355 if (len > 0)
4357 ta_len -= len;
4358 mch_memmove(ta_buf, ta_buf + len, ta_len);
4364 if (got_int)
4366 /* CTRL-C sends a signal to the child, we ignore it
4367 * ourselves */
4368 # ifdef HAVE_SETSID
4369 kill(-pid, SIGINT);
4370 # else
4371 kill(0, SIGINT);
4372 # endif
4373 if (wpid > 0)
4374 kill(wpid, SIGINT);
4375 got_int = FALSE;
4379 * Check if the child has any characters to be printed.
4380 * Read them and write them to our window. Repeat this as
4381 * long as there is something to do, avoid the 10ms wait
4382 * for mch_inchar(), or sending typeahead characters to
4383 * the external process.
4384 * TODO: This should handle escape sequences, compatible
4385 * to some terminal (vt52?).
4387 ++noread_cnt;
4388 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4390 len = read(fromshell_fd, (char *)buffer
4391 # ifdef FEAT_MBYTE
4392 + buffer_off, (size_t)(BUFLEN - buffer_off)
4393 # else
4394 , (size_t)BUFLEN
4395 # endif
4397 if (len <= 0) /* end of file or error */
4398 goto finished;
4400 noread_cnt = 0;
4401 if (options & SHELL_READ)
4403 /* Do NUL -> NL translation, append NL separated
4404 * lines to the current buffer. */
4405 for (i = 0; i < len; ++i)
4407 if (buffer[i] == NL)
4408 append_ga_line(&ga);
4409 else if (buffer[i] == NUL)
4410 ga_append(&ga, NL);
4411 else
4412 ga_append(&ga, buffer[i]);
4415 # ifdef FEAT_MBYTE
4416 else if (has_mbyte)
4418 int l;
4420 len += buffer_off;
4421 buffer[len] = NUL;
4423 /* Check if the last character in buffer[] is
4424 * incomplete, keep these bytes for the next
4425 * round. */
4426 for (p = buffer; p < buffer + len; p += l)
4428 l = mb_cptr2len(p);
4429 if (l == 0)
4430 l = 1; /* NUL byte? */
4431 else if (MB_BYTE2LEN(*p) != l)
4432 break;
4434 if (p == buffer) /* no complete character */
4436 /* avoid getting stuck at an illegal byte */
4437 if (len >= 12)
4438 ++p;
4439 else
4441 buffer_off = len;
4442 continue;
4445 c = *p;
4446 *p = NUL;
4447 msg_puts(buffer);
4448 if (p < buffer + len)
4450 *p = c;
4451 buffer_off = (buffer + len) - p;
4452 mch_memmove(buffer, p, buffer_off);
4453 continue;
4455 buffer_off = 0;
4457 # endif /* FEAT_MBYTE */
4458 else
4460 buffer[len] = NUL;
4461 msg_puts(buffer);
4464 windgoto(msg_row, msg_col);
4465 cursor_on();
4466 out_flush();
4467 # if FEAT_GUI_MACVIM
4468 if (gui.in_use)
4469 gui_macvim_flush();
4470 # endif
4471 if (got_int)
4472 break;
4474 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4476 struct timeval now_tv;
4477 long msec;
4479 /* Avoid that we keep looping here without
4480 * checking for a CTRL-C for a long time. Don't
4481 * break out too often to avoid losing typeahead. */
4482 gettimeofday(&now_tv, NULL);
4483 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4484 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4485 if (msec > 2000)
4487 noread_cnt = 5;
4488 break;
4491 # endif
4494 /* If we already detected the child has finished break the
4495 * loop now. */
4496 if (wait_pid == pid)
4497 break;
4500 * Check if the child still exists, before checking for
4501 * typed characters (otherwise we would lose typeahead).
4503 # ifdef __NeXT__
4504 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
4505 # else
4506 wait_pid = waitpid(pid, &status, WNOHANG);
4507 # endif
4508 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4509 || (wait_pid == pid && WIFEXITED(status)))
4511 /* Don't break the loop yet, try reading more
4512 * characters from "fromshell_fd" first. When using
4513 * pipes there might still be something to read and
4514 * then we'll break the loop at the "break" above. */
4515 wait_pid = pid;
4517 else
4518 wait_pid = 0;
4520 finished:
4521 p_more = p_more_save;
4522 if (options & SHELL_READ)
4524 if (ga.ga_len > 0)
4526 append_ga_line(&ga);
4527 /* remember that the NL was missing */
4528 write_no_eol_lnum = curwin->w_cursor.lnum;
4530 else
4531 write_no_eol_lnum = 0;
4532 ga_clear(&ga);
4536 * Give all typeahead that wasn't used back to ui_inchar().
4538 if (ta_len)
4539 ui_inchar_undo(ta_buf, ta_len);
4540 State = old_State;
4541 if (toshell_fd >= 0)
4542 close(toshell_fd);
4543 close(fromshell_fd);
4547 * Wait until our child has exited.
4548 * Ignore wait() returning pids of other children and returning
4549 * because of some signal like SIGWINCH.
4550 * Don't wait if wait_pid was already set above, indicating the
4551 * child already exited.
4553 while (wait_pid != pid)
4555 # ifdef _THREAD_SAFE
4556 /* Ugly hack: when compiled with Python threads are probably
4557 * used, in which case wait() sometimes hangs for no obvious
4558 * reason. Use waitpid() instead and loop (like the GUI). */
4559 # ifdef __NeXT__
4560 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4561 # else
4562 wait_pid = waitpid(pid, &status, WNOHANG);
4563 # endif
4564 if (wait_pid == 0)
4566 /* Wait for 1/100 sec before trying again. */
4567 mch_delay(10L, TRUE);
4568 continue;
4570 # else
4571 wait_pid = wait(&status);
4572 # endif
4573 if (wait_pid <= 0
4574 # ifdef ECHILD
4575 && errno == ECHILD
4576 # endif
4578 break;
4581 /* Make sure the child that writes to the external program is
4582 * dead. */
4583 if (wpid > 0)
4584 kill(wpid, SIGKILL);
4587 * Set to raw mode right now, otherwise a CTRL-C after
4588 * catch_signals() will kill Vim.
4590 if (tmode == TMODE_RAW)
4591 settmode(TMODE_RAW);
4592 did_settmode = TRUE;
4593 set_signals();
4595 if (WIFEXITED(status))
4597 /* LINTED avoid "bitwise operation on signed value" */
4598 retval = WEXITSTATUS(status);
4599 if (retval && !emsg_silent)
4601 if (retval == EXEC_FAILED)
4603 MSG_PUTS(_("\nCannot execute shell "));
4604 msg_outtrans(p_sh);
4605 msg_putchar('\n');
4607 else if (!(options & SHELL_SILENT))
4609 MSG_PUTS(_("\nshell returned "));
4610 msg_outnum((long)retval);
4611 msg_putchar('\n');
4615 else
4616 MSG_PUTS(_("\nCommand terminated\n"));
4619 vim_free(argv);
4621 error:
4622 if (!did_settmode)
4623 if (tmode == TMODE_RAW)
4624 settmode(TMODE_RAW); /* set to raw mode */
4625 # ifdef FEAT_TITLE
4626 resettitle();
4627 # endif
4628 vim_free(newcmd);
4630 return retval;
4632 #endif /* USE_SYSTEM */
4636 * Check for CTRL-C typed by reading all available characters.
4637 * In cooked mode we should get SIGINT, no need to check.
4639 void
4640 mch_breakcheck()
4642 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4643 fill_input_buf(FALSE);
4647 * Wait "msec" msec until a character is available from the keyboard or from
4648 * inbuf[]. msec == -1 will block forever.
4649 * When a GUI is being used, this will never get called -- webb
4651 static int
4652 WaitForChar(msec)
4653 long msec;
4655 #ifdef FEAT_MOUSE_GPM
4656 int gpm_process_wanted;
4657 #endif
4658 #ifdef FEAT_XCLIPBOARD
4659 int rest;
4660 #endif
4661 int avail;
4663 if (input_available()) /* something in inbuf[] */
4664 return 1;
4666 #if defined(FEAT_MOUSE_DEC)
4667 /* May need to query the mouse position. */
4668 if (WantQueryMouse)
4670 WantQueryMouse = FALSE;
4671 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4673 #endif
4676 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4677 * events. This is a bit complicated, because they might both be defined.
4679 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4680 # ifdef FEAT_XCLIPBOARD
4681 rest = 0;
4682 if (do_xterm_trace())
4683 rest = msec;
4684 # endif
4687 # ifdef FEAT_XCLIPBOARD
4688 if (rest != 0)
4690 msec = XT_TRACE_DELAY;
4691 if (rest >= 0 && rest < XT_TRACE_DELAY)
4692 msec = rest;
4693 if (rest >= 0)
4694 rest -= msec;
4696 # endif
4697 # ifdef FEAT_MOUSE_GPM
4698 gpm_process_wanted = 0;
4699 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4700 # else
4701 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4702 # endif
4703 if (!avail)
4705 if (input_available())
4706 return 1;
4707 # ifdef FEAT_XCLIPBOARD
4708 if (rest == 0 || !do_xterm_trace())
4709 # endif
4710 break;
4713 while (FALSE
4714 # ifdef FEAT_MOUSE_GPM
4715 || (gpm_process_wanted && mch_gpm_process() == 0)
4716 # endif
4717 # ifdef FEAT_XCLIPBOARD
4718 || (!avail && rest != 0)
4719 # endif
4722 #else
4723 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4724 #endif
4725 return avail;
4729 * Wait "msec" msec until a character is available from file descriptor "fd".
4730 * Time == -1 will block forever.
4731 * When a GUI is being used, this will not be used for input -- webb
4732 * Returns also, when a request from Sniff is waiting -- toni.
4733 * Or when a Linux GPM mouse event is waiting.
4735 #if defined(__BEOS__)
4737 #else
4738 static int
4739 #endif
4740 RealWaitForChar(fd, msec, check_for_gpm)
4741 int fd;
4742 long msec;
4743 int *check_for_gpm UNUSED;
4745 int ret;
4746 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4747 static int busy = FALSE;
4749 /* May retry getting characters after an event was handled. */
4750 # define MAY_LOOP
4752 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4753 /* Remember at what time we started, so that we know how much longer we
4754 * should wait after being interrupted. */
4755 # define USE_START_TV
4756 struct timeval start_tv;
4758 if (msec > 0 && (
4759 # ifdef FEAT_XCLIPBOARD
4760 xterm_Shell != (Widget)0
4761 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4763 # endif
4764 # endif
4765 # ifdef USE_XSMP
4766 xsmp_icefd != -1
4767 # ifdef FEAT_MZSCHEME
4769 # endif
4770 # endif
4771 # ifdef FEAT_MZSCHEME
4772 (mzthreads_allowed() && p_mzq > 0)
4773 # endif
4775 gettimeofday(&start_tv, NULL);
4776 # endif
4778 /* Handle being called recursively. This may happen for the session
4779 * manager stuff, it may save the file, which does a breakcheck. */
4780 if (busy)
4781 return 0;
4782 #endif
4784 #ifdef MAY_LOOP
4785 for (;;)
4786 #endif
4788 #ifdef MAY_LOOP
4789 int finished = TRUE; /* default is to 'loop' just once */
4790 # ifdef FEAT_MZSCHEME
4791 int mzquantum_used = FALSE;
4792 # endif
4793 #endif
4794 #ifndef HAVE_SELECT
4795 struct pollfd fds[5];
4796 int nfd;
4797 # ifdef FEAT_XCLIPBOARD
4798 int xterm_idx = -1;
4799 # endif
4800 # ifdef FEAT_MOUSE_GPM
4801 int gpm_idx = -1;
4802 # endif
4803 # ifdef USE_XSMP
4804 int xsmp_idx = -1;
4805 # endif
4806 int towait = (int)msec;
4808 # ifdef FEAT_MZSCHEME
4809 mzvim_check_threads();
4810 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4812 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4813 mzquantum_used = TRUE;
4815 # endif
4816 fds[0].fd = fd;
4817 fds[0].events = POLLIN;
4818 nfd = 1;
4820 # ifdef FEAT_SNIFF
4821 # define SNIFF_IDX 1
4822 if (want_sniff_request)
4824 fds[SNIFF_IDX].fd = fd_from_sniff;
4825 fds[SNIFF_IDX].events = POLLIN;
4826 nfd++;
4828 # endif
4829 # ifdef FEAT_XCLIPBOARD
4830 if (xterm_Shell != (Widget)0)
4832 xterm_idx = nfd;
4833 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4834 fds[nfd].events = POLLIN;
4835 nfd++;
4837 # endif
4838 # ifdef FEAT_MOUSE_GPM
4839 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4841 gpm_idx = nfd;
4842 fds[nfd].fd = gpm_fd;
4843 fds[nfd].events = POLLIN;
4844 nfd++;
4846 # endif
4847 # ifdef USE_XSMP
4848 if (xsmp_icefd != -1)
4850 xsmp_idx = nfd;
4851 fds[nfd].fd = xsmp_icefd;
4852 fds[nfd].events = POLLIN;
4853 nfd++;
4855 # endif
4857 ret = poll(fds, nfd, towait);
4858 # ifdef FEAT_MZSCHEME
4859 if (ret == 0 && mzquantum_used)
4860 /* MzThreads scheduling is required and timeout occurred */
4861 finished = FALSE;
4862 # endif
4864 # ifdef FEAT_SNIFF
4865 if (ret < 0)
4866 sniff_disconnect(1);
4867 else if (want_sniff_request)
4869 if (fds[SNIFF_IDX].revents & POLLHUP)
4870 sniff_disconnect(1);
4871 if (fds[SNIFF_IDX].revents & POLLIN)
4872 sniff_request_waiting = 1;
4874 # endif
4875 # ifdef FEAT_XCLIPBOARD
4876 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4878 xterm_update(); /* Maybe we should hand out clipboard */
4879 if (--ret == 0 && !input_available())
4880 /* Try again */
4881 finished = FALSE;
4883 # endif
4884 # ifdef FEAT_MOUSE_GPM
4885 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4887 *check_for_gpm = 1;
4889 # endif
4890 # ifdef USE_XSMP
4891 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4893 if (fds[xsmp_idx].revents & POLLIN)
4895 busy = TRUE;
4896 xsmp_handle_requests();
4897 busy = FALSE;
4899 else if (fds[xsmp_idx].revents & POLLHUP)
4901 if (p_verbose > 0)
4902 verb_msg((char_u *)_("XSMP lost ICE connection"));
4903 xsmp_close();
4905 if (--ret == 0)
4906 finished = FALSE; /* Try again */
4908 # endif
4911 #else /* HAVE_SELECT */
4913 struct timeval tv;
4914 struct timeval *tvp;
4915 fd_set rfds, efds;
4916 int maxfd;
4917 long towait = msec;
4919 # ifdef FEAT_MZSCHEME
4920 mzvim_check_threads();
4921 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4923 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4924 mzquantum_used = TRUE;
4926 # endif
4927 # ifdef __EMX__
4928 /* don't check for incoming chars if not in raw mode, because select()
4929 * always returns TRUE then (in some version of emx.dll) */
4930 if (curr_tmode != TMODE_RAW)
4931 return 0;
4932 # endif
4934 if (towait >= 0)
4936 tv.tv_sec = towait / 1000;
4937 tv.tv_usec = (towait % 1000) * (1000000/1000);
4938 tvp = &tv;
4940 else
4941 tvp = NULL;
4944 * Select on ready for reading and exceptional condition (end of file).
4946 FD_ZERO(&rfds); /* calls bzero() on a sun */
4947 FD_ZERO(&efds);
4948 FD_SET(fd, &rfds);
4949 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4950 /* For QNX select() always returns 1 if this is set. Why? */
4951 FD_SET(fd, &efds);
4952 # endif
4953 maxfd = fd;
4955 # ifdef FEAT_SNIFF
4956 if (want_sniff_request)
4958 FD_SET(fd_from_sniff, &rfds);
4959 FD_SET(fd_from_sniff, &efds);
4960 if (maxfd < fd_from_sniff)
4961 maxfd = fd_from_sniff;
4963 # endif
4964 # ifdef FEAT_XCLIPBOARD
4965 if (xterm_Shell != (Widget)0)
4967 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4968 if (maxfd < ConnectionNumber(xterm_dpy))
4969 maxfd = ConnectionNumber(xterm_dpy);
4971 # endif
4972 # ifdef FEAT_MOUSE_GPM
4973 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4975 FD_SET(gpm_fd, &rfds);
4976 FD_SET(gpm_fd, &efds);
4977 if (maxfd < gpm_fd)
4978 maxfd = gpm_fd;
4980 # endif
4981 # ifdef USE_XSMP
4982 if (xsmp_icefd != -1)
4984 FD_SET(xsmp_icefd, &rfds);
4985 FD_SET(xsmp_icefd, &efds);
4986 if (maxfd < xsmp_icefd)
4987 maxfd = xsmp_icefd;
4989 # endif
4991 # ifdef OLD_VMS
4992 /* Old VMS as v6.2 and older have broken select(). It waits more than
4993 * required. Should not be used */
4994 ret = 0;
4995 # else
4996 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4997 # endif
4998 # ifdef __TANDEM
4999 if (ret == -1 && errno == ENOTSUP)
5001 FD_ZERO(&rfds);
5002 FD_ZERO(&efds);
5003 ret = 0;
5005 #endif
5006 # ifdef FEAT_MZSCHEME
5007 if (ret == 0 && mzquantum_used)
5008 /* loop if MzThreads must be scheduled and timeout occurred */
5009 finished = FALSE;
5010 # endif
5012 # ifdef FEAT_SNIFF
5013 if (ret < 0 )
5014 sniff_disconnect(1);
5015 else if (ret > 0 && want_sniff_request)
5017 if (FD_ISSET(fd_from_sniff, &efds))
5018 sniff_disconnect(1);
5019 if (FD_ISSET(fd_from_sniff, &rfds))
5020 sniff_request_waiting = 1;
5022 # endif
5023 # ifdef FEAT_XCLIPBOARD
5024 if (ret > 0 && xterm_Shell != (Widget)0
5025 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5027 xterm_update(); /* Maybe we should hand out clipboard */
5028 /* continue looping when we only got the X event and the input
5029 * buffer is empty */
5030 if (--ret == 0 && !input_available())
5032 /* Try again */
5033 finished = FALSE;
5036 # endif
5037 # ifdef FEAT_MOUSE_GPM
5038 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5040 if (FD_ISSET(gpm_fd, &efds))
5041 gpm_close();
5042 else if (FD_ISSET(gpm_fd, &rfds))
5043 *check_for_gpm = 1;
5045 # endif
5046 # ifdef USE_XSMP
5047 if (ret > 0 && xsmp_icefd != -1)
5049 if (FD_ISSET(xsmp_icefd, &efds))
5051 if (p_verbose > 0)
5052 verb_msg((char_u *)_("XSMP lost ICE connection"));
5053 xsmp_close();
5054 if (--ret == 0)
5055 finished = FALSE; /* keep going if event was only one */
5057 else if (FD_ISSET(xsmp_icefd, &rfds))
5059 busy = TRUE;
5060 xsmp_handle_requests();
5061 busy = FALSE;
5062 if (--ret == 0)
5063 finished = FALSE; /* keep going if event was only one */
5066 # endif
5068 #endif /* HAVE_SELECT */
5070 #ifdef MAY_LOOP
5071 if (finished || msec == 0)
5072 break;
5074 /* We're going to loop around again, find out for how long */
5075 if (msec > 0)
5077 # ifdef USE_START_TV
5078 struct timeval mtv;
5080 /* Compute remaining wait time. */
5081 gettimeofday(&mtv, NULL);
5082 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5083 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5084 # else
5085 /* Guess we got interrupted halfway. */
5086 msec = msec / 2;
5087 # endif
5088 if (msec <= 0)
5089 break; /* waited long enough */
5091 #endif
5094 return (ret > 0);
5097 #ifndef VMS
5099 #ifndef NO_EXPANDPATH
5101 * Expand a path into all matching files and/or directories. Handles "*",
5102 * "?", "[a-z]", "**", etc.
5103 * "path" has backslashes before chars that are not to be expanded.
5104 * Returns the number of matches found.
5107 mch_expandpath(gap, path, flags)
5108 garray_T *gap;
5109 char_u *path;
5110 int flags; /* EW_* flags */
5112 return unix_expandpath(gap, path, 0, flags, FALSE);
5114 #endif
5117 * mch_expand_wildcards() - this code does wild-card pattern matching using
5118 * the shell
5120 * return OK for success, FAIL for error (you may lose some memory) and put
5121 * an error message in *file.
5123 * num_pat is number of input patterns
5124 * pat is array of pointers to input patterns
5125 * num_file is pointer to number of matched file names
5126 * file is pointer to array of pointers to matched file names
5129 #ifndef SEEK_SET
5130 # define SEEK_SET 0
5131 #endif
5132 #ifndef SEEK_END
5133 # define SEEK_END 2
5134 #endif
5136 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5139 mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5140 int num_pat;
5141 char_u **pat;
5142 int *num_file;
5143 char_u ***file;
5144 int flags; /* EW_* flags */
5146 int i;
5147 size_t len;
5148 char_u *p;
5149 int dir;
5150 #ifdef __EMX__
5152 * This is the OS/2 implementation.
5154 # define EXPL_ALLOC_INC 16
5155 char_u **expl_files;
5156 size_t files_alloced, files_free;
5157 char_u *buf;
5158 int has_wildcard;
5160 *num_file = 0; /* default: no files found */
5161 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5162 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5163 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5164 if (*file == NULL)
5165 return FAIL;
5167 for (; num_pat > 0; num_pat--, pat++)
5169 expl_files = NULL;
5170 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5171 /* expand environment var or home dir */
5172 buf = expand_env_save(*pat);
5173 else
5174 buf = vim_strsave(*pat);
5175 expl_files = NULL;
5176 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
5177 if (has_wildcard) /* yes, so expand them */
5178 expl_files = (char_u **)_fnexplode(buf);
5181 * return value of buf if no wildcards left,
5182 * OR if no match AND EW_NOTFOUND is set.
5184 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5185 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5186 { /* simply save the current contents of *buf */
5187 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5188 if (expl_files != NULL)
5190 expl_files[0] = vim_strsave(buf);
5191 expl_files[1] = NULL;
5194 vim_free(buf);
5197 * Count number of names resulting from expansion,
5198 * At the same time add a backslash to the end of names that happen to
5199 * be directories, and replace slashes with backslashes.
5201 if (expl_files)
5203 for (i = 0; (p = expl_files[i]) != NULL; i++)
5205 dir = mch_isdir(p);
5206 /* If we don't want dirs and this is one, skip it */
5207 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5208 continue;
5210 /* Skip files that are not executable if we check for that. */
5211 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5212 continue;
5214 if (--files_free == 0)
5216 /* need more room in table of pointers */
5217 files_alloced += EXPL_ALLOC_INC;
5218 *file = (char_u **)vim_realloc(*file,
5219 sizeof(char_u **) * files_alloced);
5220 if (*file == NULL)
5222 EMSG(_(e_outofmem));
5223 *num_file = 0;
5224 return FAIL;
5226 files_free = EXPL_ALLOC_INC;
5228 slash_adjust(p);
5229 if (dir)
5231 /* For a directory we add a '/', unless it's already
5232 * there. */
5233 len = STRLEN(p);
5234 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5236 STRCPY((*file)[*num_file], p);
5237 if (!after_pathsep((*file)[*num_file],
5238 (*file)[*num_file] + len))
5240 (*file)[*num_file][len] = psepc;
5241 (*file)[*num_file][len + 1] = NUL;
5245 else
5247 (*file)[*num_file] = vim_strsave(p);
5251 * Error message already given by either alloc or vim_strsave.
5252 * Should return FAIL, but returning OK works also.
5254 if ((*file)[*num_file] == NULL)
5255 break;
5256 (*num_file)++;
5258 _fnexplodefree((char **)expl_files);
5261 return OK;
5263 #else /* __EMX__ */
5265 * This is the non-OS/2 implementation (really Unix).
5267 int j;
5268 char_u *tempname;
5269 char_u *command;
5270 FILE *fd;
5271 char_u *buffer;
5272 #define STYLE_ECHO 0 /* use "echo", the default */
5273 #define STYLE_GLOB 1 /* use "glob", for csh */
5274 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5275 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5276 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5277 * directly */
5278 int shell_style = STYLE_ECHO;
5279 int check_spaces;
5280 static int did_find_nul = FALSE;
5281 int ampersent = FALSE;
5282 /* vimglob() function to define for Posix shell */
5283 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
5285 *num_file = 0; /* default: no files found */
5286 *file = NULL;
5289 * If there are no wildcards, just copy the names to allocated memory.
5290 * Saves a lot of time, because we don't have to start a new shell.
5292 if (!have_wildcard(num_pat, pat))
5293 return save_patterns(num_pat, pat, num_file, file);
5295 # ifdef HAVE_SANDBOX
5296 /* Don't allow any shell command in the sandbox. */
5297 if (sandbox != 0 && check_secure())
5298 return FAIL;
5299 # endif
5302 * Don't allow the use of backticks in secure and restricted mode.
5304 if (secure || restricted)
5305 for (i = 0; i < num_pat; ++i)
5306 if (vim_strchr(pat[i], '`') != NULL
5307 && (check_restricted() || check_secure()))
5308 return FAIL;
5311 * get a name for the temp file
5313 if ((tempname = vim_tempname('o')) == NULL)
5315 EMSG(_(e_notmp));
5316 return FAIL;
5320 * Let the shell expand the patterns and write the result into the temp
5321 * file.
5322 * STYLE_BT: NL separated
5323 * If expanding `cmd` execute it directly.
5324 * STYLE_GLOB: NUL separated
5325 * If we use *csh, "glob" will work better than "echo".
5326 * STYLE_PRINT: NL or NUL separated
5327 * If we use *zsh, "print -N" will work better than "glob".
5328 * STYLE_VIMGLOB: NL separated
5329 * If we use *sh*, we define "vimglob()".
5330 * STYLE_ECHO: space separated.
5331 * A shell we don't know, stay safe and use "echo".
5333 if (num_pat == 1 && *pat[0] == '`'
5334 && (len = STRLEN(pat[0])) > 2
5335 && *(pat[0] + len - 1) == '`')
5336 shell_style = STYLE_BT;
5337 else if ((len = STRLEN(p_sh)) >= 3)
5339 if (STRCMP(p_sh + len - 3, "csh") == 0)
5340 shell_style = STYLE_GLOB;
5341 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5342 shell_style = STYLE_PRINT;
5344 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5345 "sh") != NULL)
5346 shell_style = STYLE_VIMGLOB;
5348 /* Compute the length of the command. We need 2 extra bytes: for the
5349 * optional '&' and for the NUL.
5350 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5351 len = STRLEN(tempname) + 29;
5352 if (shell_style == STYLE_VIMGLOB)
5353 len += STRLEN(sh_vimglob_func);
5355 for (i = 0; i < num_pat; ++i)
5357 /* Count the length of the patterns in the same way as they are put in
5358 * "command" below. */
5359 #ifdef USE_SYSTEM
5360 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
5361 #else
5362 ++len; /* add space */
5363 for (j = 0; pat[i][j] != NUL; ++j)
5365 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5366 ++len; /* may add a backslash */
5367 ++len;
5369 #endif
5371 command = alloc(len);
5372 if (command == NULL)
5374 /* out of memory */
5375 vim_free(tempname);
5376 return FAIL;
5380 * Build the shell command:
5381 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5382 * recognizes this).
5383 * - Add the shell command to print the expanded names.
5384 * - Add the temp file name.
5385 * - Add the file name patterns.
5387 if (shell_style == STYLE_BT)
5389 /* change `command; command& ` to (command; command ) */
5390 STRCPY(command, "(");
5391 STRCAT(command, pat[0] + 1); /* exclude first backtick */
5392 p = command + STRLEN(command) - 1;
5393 *p-- = ')'; /* remove last backtick */
5394 while (p > command && vim_iswhite(*p))
5395 --p;
5396 if (*p == '&') /* remove trailing '&' */
5398 ampersent = TRUE;
5399 *p = ' ';
5401 STRCAT(command, ">");
5403 else
5405 if (flags & EW_NOTFOUND)
5406 STRCPY(command, "set nonomatch; ");
5407 else
5408 STRCPY(command, "unset nonomatch; ");
5409 if (shell_style == STYLE_GLOB)
5410 STRCAT(command, "glob >");
5411 else if (shell_style == STYLE_PRINT)
5412 STRCAT(command, "print -N >");
5413 else if (shell_style == STYLE_VIMGLOB)
5414 STRCAT(command, sh_vimglob_func);
5415 else
5416 STRCAT(command, "echo >");
5419 STRCAT(command, tempname);
5421 if (shell_style != STYLE_BT)
5422 for (i = 0; i < num_pat; ++i)
5424 /* When using system() always add extra quotes, because the shell
5425 * is started twice. Otherwise put a backslash before special
5426 * characters, except inside ``. */
5427 #ifdef USE_SYSTEM
5428 STRCAT(command, " \"");
5429 STRCAT(command, pat[i]);
5430 STRCAT(command, "\"");
5431 #else
5432 int intick = FALSE;
5434 p = command + STRLEN(command);
5435 *p++ = ' ';
5436 for (j = 0; pat[i][j] != NUL; ++j)
5438 if (pat[i][j] == '`')
5439 intick = !intick;
5440 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5442 /* Remove a backslash, take char literally. But keep
5443 * backslash inside backticks, before a special character
5444 * and before a backtick. */
5445 if (intick
5446 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5447 || pat[i][j + 1] == '`')
5448 *p++ = '\\';
5449 ++j;
5451 else if (!intick && vim_strchr(SHELL_SPECIAL,
5452 pat[i][j]) != NULL)
5453 /* Put a backslash before a special character, but not
5454 * when inside ``. */
5455 *p++ = '\\';
5457 /* Copy one character. */
5458 *p++ = pat[i][j];
5460 *p = NUL;
5461 #endif
5463 if (flags & EW_SILENT)
5464 show_shell_mess = FALSE;
5465 if (ampersent)
5466 STRCAT(command, "&"); /* put the '&' after the redirection */
5469 * Using zsh -G: If a pattern has no matches, it is just deleted from
5470 * the argument list, otherwise zsh gives an error message and doesn't
5471 * expand any other pattern.
5473 if (shell_style == STYLE_PRINT)
5474 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5477 * If we use -f then shell variables set in .cshrc won't get expanded.
5478 * vi can do it, so we will too, but it is only necessary if there is a "$"
5479 * in one of the patterns, otherwise we can still use the fast option.
5481 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5482 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5485 * execute the shell command
5487 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5489 /* When running in the background, give it some time to create the temp
5490 * file, but don't wait for it to finish. */
5491 if (ampersent)
5492 mch_delay(10L, TRUE);
5494 extra_shell_arg = NULL; /* cleanup */
5495 show_shell_mess = TRUE;
5496 vim_free(command);
5498 if (i != 0) /* mch_call_shell() failed */
5500 mch_remove(tempname);
5501 vim_free(tempname);
5503 * With interactive completion, the error message is not printed.
5504 * However with USE_SYSTEM, I don't know how to turn off error messages
5505 * from the shell, so screen may still get messed up -- webb.
5507 #ifndef USE_SYSTEM
5508 if (!(flags & EW_SILENT))
5509 #endif
5511 redraw_later_clear(); /* probably messed up screen */
5512 msg_putchar('\n'); /* clear bottom line quickly */
5513 cmdline_row = Rows - 1; /* continue on last line */
5514 #ifdef USE_SYSTEM
5515 if (!(flags & EW_SILENT))
5516 #endif
5518 MSG(_(e_wildexpand));
5519 msg_start(); /* don't overwrite this message */
5522 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5523 * EW_NOTFOUND is given */
5524 if (shell_style == STYLE_BT)
5525 return FAIL;
5526 goto notfound;
5530 * read the names from the file into memory
5532 fd = fopen((char *)tempname, READBIN);
5533 if (fd == NULL)
5535 /* Something went wrong, perhaps a file name with a special char. */
5536 if (!(flags & EW_SILENT))
5538 MSG(_(e_wildexpand));
5539 msg_start(); /* don't overwrite this message */
5541 vim_free(tempname);
5542 goto notfound;
5544 fseek(fd, 0L, SEEK_END);
5545 len = ftell(fd); /* get size of temp file */
5546 fseek(fd, 0L, SEEK_SET);
5547 buffer = alloc(len + 1);
5548 if (buffer == NULL)
5550 /* out of memory */
5551 mch_remove(tempname);
5552 vim_free(tempname);
5553 fclose(fd);
5554 return FAIL;
5556 i = fread((char *)buffer, 1, len, fd);
5557 fclose(fd);
5558 mch_remove(tempname);
5559 if (i != (int)len)
5561 /* unexpected read error */
5562 EMSG2(_(e_notread), tempname);
5563 vim_free(tempname);
5564 vim_free(buffer);
5565 return FAIL;
5567 vim_free(tempname);
5569 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5570 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5571 p = buffer;
5572 for (i = 0; i < len; ++i)
5573 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5574 *p++ = buffer[i];
5575 len = p - buffer;
5576 # endif
5579 /* file names are separated with Space */
5580 if (shell_style == STYLE_ECHO)
5582 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5583 p = buffer;
5584 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5586 while (*p != ' ' && *p != '\n')
5587 ++p;
5588 p = skipwhite(p); /* skip to next entry */
5591 /* file names are separated with NL */
5592 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
5594 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5595 p = buffer;
5596 for (i = 0; *p != NUL; ++i) /* count number of entries */
5598 while (*p != '\n' && *p != NUL)
5599 ++p;
5600 if (*p != NUL)
5601 ++p;
5602 p = skipwhite(p); /* skip leading white space */
5605 /* file names are separated with NUL */
5606 else
5609 * Some versions of zsh use spaces instead of NULs to separate
5610 * results. Only do this when there is no NUL before the end of the
5611 * buffer, otherwise we would never be able to use file names with
5612 * embedded spaces when zsh does use NULs.
5613 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5614 * don't check for spaces again.
5616 check_spaces = FALSE;
5617 if (shell_style == STYLE_PRINT && !did_find_nul)
5619 /* If there is a NUL, set did_find_nul, else set check_spaces */
5620 if (len && (int)STRLEN(buffer) < (int)len - 1)
5621 did_find_nul = TRUE;
5622 else
5623 check_spaces = TRUE;
5627 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5628 * already is one, for STYLE_GLOB it needs to be added.
5630 if (len && buffer[len - 1] == NUL)
5631 --len;
5632 else
5633 buffer[len] = NUL;
5634 i = 0;
5635 for (p = buffer; p < buffer + len; ++p)
5636 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5638 ++i;
5639 *p = NUL;
5641 if (len)
5642 ++i; /* count last entry */
5644 if (i == 0)
5647 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5648 * /bin/sh will happily expand it to nothing rather than returning an
5649 * error; and hey, it's good to check anyway -- webb.
5651 vim_free(buffer);
5652 goto notfound;
5654 *num_file = i;
5655 *file = (char_u **)alloc(sizeof(char_u *) * i);
5656 if (*file == NULL)
5658 /* out of memory */
5659 vim_free(buffer);
5660 return FAIL;
5664 * Isolate the individual file names.
5666 p = buffer;
5667 for (i = 0; i < *num_file; ++i)
5669 (*file)[i] = p;
5670 /* Space or NL separates */
5671 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5672 || shell_style == STYLE_VIMGLOB)
5674 while (!(shell_style == STYLE_ECHO && *p == ' ')
5675 && *p != '\n' && *p != NUL)
5676 ++p;
5677 if (p == buffer + len) /* last entry */
5678 *p = NUL;
5679 else
5681 *p++ = NUL;
5682 p = skipwhite(p); /* skip to next entry */
5685 else /* NUL separates */
5687 while (*p && p < buffer + len) /* skip entry */
5688 ++p;
5689 ++p; /* skip NUL */
5694 * Move the file names to allocated memory.
5696 for (j = 0, i = 0; i < *num_file; ++i)
5698 /* Require the files to exist. Helps when using /bin/sh */
5699 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5700 continue;
5702 /* check if this entry should be included */
5703 dir = (mch_isdir((*file)[i]));
5704 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5705 continue;
5707 /* Skip files that are not executable if we check for that. */
5708 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5709 continue;
5711 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5712 if (p)
5714 STRCPY(p, (*file)[i]);
5715 if (dir)
5716 add_pathsep(p); /* add '/' to a directory name */
5717 (*file)[j++] = p;
5720 vim_free(buffer);
5721 *num_file = j;
5723 if (*num_file == 0) /* rejected all entries */
5725 vim_free(*file);
5726 *file = NULL;
5727 goto notfound;
5730 return OK;
5732 notfound:
5733 if (flags & EW_NOTFOUND)
5734 return save_patterns(num_pat, pat, num_file, file);
5735 return FAIL;
5737 #endif /* __EMX__ */
5740 #endif /* VMS */
5742 #ifndef __EMX__
5743 static int
5744 save_patterns(num_pat, pat, num_file, file)
5745 int num_pat;
5746 char_u **pat;
5747 int *num_file;
5748 char_u ***file;
5750 int i;
5751 char_u *s;
5753 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5754 if (*file == NULL)
5755 return FAIL;
5756 for (i = 0; i < num_pat; i++)
5758 s = vim_strsave(pat[i]);
5759 if (s != NULL)
5760 /* Be compatible with expand_filename(): halve the number of
5761 * backslashes. */
5762 backslash_halve(s);
5763 (*file)[i] = s;
5765 *num_file = num_pat;
5766 return OK;
5768 #endif
5772 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5773 * expand.
5776 mch_has_exp_wildcard(p)
5777 char_u *p;
5779 for ( ; *p; mb_ptr_adv(p))
5781 #ifndef OS2
5782 if (*p == '\\' && p[1] != NUL)
5783 ++p;
5784 else
5785 #endif
5786 if (vim_strchr((char_u *)
5787 #ifdef VMS
5788 "*?%"
5789 #else
5790 # ifdef OS2
5791 "*?"
5792 # else
5793 "*?[{'"
5794 # endif
5795 #endif
5796 , *p) != NULL)
5797 return TRUE;
5799 return FALSE;
5803 * Return TRUE if the string "p" contains a wildcard.
5804 * Don't recognize '~' at the end as a wildcard.
5807 mch_has_wildcard(p)
5808 char_u *p;
5810 for ( ; *p; mb_ptr_adv(p))
5812 #ifndef OS2
5813 if (*p == '\\' && p[1] != NUL)
5814 ++p;
5815 else
5816 #endif
5817 if (vim_strchr((char_u *)
5818 #ifdef VMS
5819 "*?%$"
5820 #else
5821 # ifdef OS2
5822 # ifdef VIM_BACKTICK
5823 "*?$`"
5824 # else
5825 "*?$"
5826 # endif
5827 # else
5828 "*?[{`'$"
5829 # endif
5830 #endif
5831 , *p) != NULL
5832 || (*p == '~' && p[1] != NUL))
5833 return TRUE;
5835 return FALSE;
5838 #ifndef __EMX__
5839 static int
5840 have_wildcard(num, file)
5841 int num;
5842 char_u **file;
5844 int i;
5846 for (i = 0; i < num; i++)
5847 if (mch_has_wildcard(file[i]))
5848 return 1;
5849 return 0;
5852 static int
5853 have_dollars(num, file)
5854 int num;
5855 char_u **file;
5857 int i;
5859 for (i = 0; i < num; i++)
5860 if (vim_strchr(file[i], '$') != NULL)
5861 return TRUE;
5862 return FALSE;
5864 #endif /* ifndef __EMX__ */
5866 #ifndef HAVE_RENAME
5868 * Scaled-down version of rename(), which is missing in Xenix.
5869 * This version can only move regular files and will fail if the
5870 * destination exists.
5873 mch_rename(src, dest)
5874 const char *src, *dest;
5876 struct stat st;
5878 if (stat(dest, &st) >= 0) /* fail if destination exists */
5879 return -1;
5880 if (link(src, dest) != 0) /* link file to new name */
5881 return -1;
5882 if (mch_remove(src) == 0) /* delete link to old name */
5883 return 0;
5884 return -1;
5886 #endif /* !HAVE_RENAME */
5888 #ifdef FEAT_MOUSE_GPM
5890 * Initializes connection with gpm (if it isn't already opened)
5891 * Return 1 if succeeded (or connection already opened), 0 if failed
5893 static int
5894 gpm_open()
5896 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5898 if (!gpm_flag)
5900 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5901 gpm_connect.defaultMask = ~GPM_HARD;
5902 /* Default handling for mouse move*/
5903 gpm_connect.minMod = 0; /* Handle any modifier keys */
5904 gpm_connect.maxMod = 0xffff;
5905 if (Gpm_Open(&gpm_connect, 0) > 0)
5907 /* gpm library tries to handling TSTP causes
5908 * problems. Anyways, we close connection to Gpm whenever
5909 * we are going to suspend or starting an external process
5910 * so we shouldn't have problem with this
5912 # ifdef SIGTSTP
5913 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5914 # endif
5915 return 1; /* succeed */
5917 if (gpm_fd == -2)
5918 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5919 return 0;
5921 return 1; /* already open */
5925 * Closes connection to gpm
5927 static void
5928 gpm_close()
5930 if (gpm_flag && gpm_fd >= 0) /* if Open */
5931 Gpm_Close();
5934 /* Reads gpm event and adds special keys to input buf. Returns length of
5935 * generated key sequence.
5936 * This function is made after gui_send_mouse_event
5938 static int
5939 mch_gpm_process()
5941 int button;
5942 static Gpm_Event gpm_event;
5943 char_u string[6];
5944 int_u vim_modifiers;
5945 int row,col;
5946 unsigned char buttons_mask;
5947 unsigned char gpm_modifiers;
5948 static unsigned char old_buttons = 0;
5950 Gpm_GetEvent(&gpm_event);
5952 #ifdef FEAT_GUI
5953 /* Don't put events in the input queue now. */
5954 if (hold_gui_events)
5955 return 0;
5956 #endif
5958 row = gpm_event.y - 1;
5959 col = gpm_event.x - 1;
5961 string[0] = ESC; /* Our termcode */
5962 string[1] = 'M';
5963 string[2] = 'G';
5964 switch (GPM_BARE_EVENTS(gpm_event.type))
5966 case GPM_DRAG:
5967 string[3] = MOUSE_DRAG;
5968 break;
5969 case GPM_DOWN:
5970 buttons_mask = gpm_event.buttons & ~old_buttons;
5971 old_buttons = gpm_event.buttons;
5972 switch (buttons_mask)
5974 case GPM_B_LEFT:
5975 button = MOUSE_LEFT;
5976 break;
5977 case GPM_B_MIDDLE:
5978 button = MOUSE_MIDDLE;
5979 break;
5980 case GPM_B_RIGHT:
5981 button = MOUSE_RIGHT;
5982 break;
5983 default:
5984 return 0;
5985 /*Don't know what to do. Can more than one button be
5986 * reported in one event? */
5988 string[3] = (char_u)(button | 0x20);
5989 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5990 break;
5991 case GPM_UP:
5992 string[3] = MOUSE_RELEASE;
5993 old_buttons &= ~gpm_event.buttons;
5994 break;
5995 default:
5996 return 0;
5998 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5999 gpm_modifiers = gpm_event.modifiers;
6000 vim_modifiers = 0x0;
6001 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6002 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6003 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6005 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6006 vim_modifiers |= MOUSE_SHIFT;
6008 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6009 vim_modifiers |= MOUSE_CTRL;
6010 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6011 vim_modifiers |= MOUSE_ALT;
6012 string[3] |= vim_modifiers;
6013 string[4] = (char_u)(col + ' ' + 1);
6014 string[5] = (char_u)(row + ' ' + 1);
6015 add_to_input_buf(string, 6);
6016 return 6;
6018 #endif /* FEAT_MOUSE_GPM */
6020 #ifdef FEAT_SYSMOUSE
6022 * Initialize connection with sysmouse.
6023 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6024 * output, any sysmouse output than will be processed via sig_sysmouse().
6025 * Return OK if succeeded, FAIL if failed.
6027 static int
6028 sysmouse_open()
6030 struct mouse_info mouse;
6032 mouse.operation = MOUSE_MODE;
6033 mouse.u.mode.mode = 0;
6034 mouse.u.mode.signal = SIGUSR2;
6035 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6037 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6038 mouse.operation = MOUSE_SHOW;
6039 ioctl(1, CONS_MOUSECTL, &mouse);
6040 return OK;
6042 return FAIL;
6046 * Stop processing SIGUSR2 signals, and also make sure that
6047 * virtual console do not send us any sysmouse related signal.
6049 static void
6050 sysmouse_close()
6052 struct mouse_info mouse;
6054 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6055 mouse.operation = MOUSE_MODE;
6056 mouse.u.mode.mode = 0;
6057 mouse.u.mode.signal = 0;
6058 ioctl(1, CONS_MOUSECTL, &mouse);
6062 * Gets info from sysmouse and adds special keys to input buf.
6064 static RETSIGTYPE
6065 sig_sysmouse SIGDEFARG(sigarg)
6067 struct mouse_info mouse;
6068 struct video_info video;
6069 char_u string[6];
6070 int row, col;
6071 int button;
6072 int buttons;
6073 static int oldbuttons = 0;
6075 #ifdef FEAT_GUI
6076 /* Don't put events in the input queue now. */
6077 if (hold_gui_events)
6078 return;
6079 #endif
6081 mouse.operation = MOUSE_GETINFO;
6082 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6083 && ioctl(1, FBIO_MODEINFO, &video) != -1
6084 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6085 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6087 row = mouse.u.data.y / video.vi_cheight;
6088 col = mouse.u.data.x / video.vi_cwidth;
6089 buttons = mouse.u.data.buttons;
6090 string[0] = ESC; /* Our termcode */
6091 string[1] = 'M';
6092 string[2] = 'S';
6093 if (oldbuttons == buttons && buttons != 0)
6095 button = MOUSE_DRAG;
6097 else
6099 switch (buttons)
6101 case 0:
6102 button = MOUSE_RELEASE;
6103 break;
6104 case 1:
6105 button = MOUSE_LEFT;
6106 break;
6107 case 2:
6108 button = MOUSE_MIDDLE;
6109 break;
6110 case 4:
6111 button = MOUSE_RIGHT;
6112 break;
6113 default:
6114 return;
6116 oldbuttons = buttons;
6118 string[3] = (char_u)(button);
6119 string[4] = (char_u)(col + ' ' + 1);
6120 string[5] = (char_u)(row + ' ' + 1);
6121 add_to_input_buf(string, 6);
6123 return;
6125 #endif /* FEAT_SYSMOUSE */
6127 #if defined(FEAT_LIBCALL) || defined(PROTO)
6128 typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6129 typedef char_u * (*INTPROCSTR)__ARGS((int));
6130 typedef int (*STRPROCINT)__ARGS((char_u *));
6131 typedef int (*INTPROCINT)__ARGS((int));
6134 * Call a DLL routine which takes either a string or int param
6135 * and returns an allocated string.
6138 mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6139 char_u *libname;
6140 char_u *funcname;
6141 char_u *argstring; /* NULL when using a argint */
6142 int argint;
6143 char_u **string_result;/* NULL when using number_result */
6144 int *number_result;
6146 # if defined(USE_DLOPEN)
6147 void *hinstLib;
6148 char *dlerr = NULL;
6149 # else
6150 shl_t hinstLib;
6151 # endif
6152 STRPROCSTR ProcAdd;
6153 INTPROCSTR ProcAddI;
6154 char_u *retval_str = NULL;
6155 int retval_int = 0;
6156 int success = FALSE;
6159 * Get a handle to the DLL module.
6161 # if defined(USE_DLOPEN)
6162 /* First clear any error, it's not cleared by the dlopen() call. */
6163 (void)dlerror();
6165 hinstLib = dlopen((char *)libname, RTLD_LAZY
6166 # ifdef RTLD_LOCAL
6167 | RTLD_LOCAL
6168 # endif
6170 if (hinstLib == NULL)
6172 /* "dlerr" must be used before dlclose() */
6173 dlerr = (char *)dlerror();
6174 if (dlerr != NULL)
6175 EMSG2(_("dlerror = \"%s\""), dlerr);
6177 # else
6178 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6179 # endif
6181 /* If the handle is valid, try to get the function address. */
6182 if (hinstLib != NULL)
6184 # ifdef HAVE_SETJMP_H
6186 * Catch a crash when calling the library function. For example when
6187 * using a number where a string pointer is expected.
6189 mch_startjmp();
6190 if (SETJMP(lc_jump_env) != 0)
6192 success = FALSE;
6193 # if defined(USE_DLOPEN)
6194 dlerr = NULL;
6195 # endif
6196 mch_didjmp();
6198 else
6199 # endif
6201 retval_str = NULL;
6202 retval_int = 0;
6204 if (argstring != NULL)
6206 # if defined(USE_DLOPEN)
6207 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
6208 dlerr = (char *)dlerror();
6209 # else
6210 if (shl_findsym(&hinstLib, (const char *)funcname,
6211 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6212 ProcAdd = NULL;
6213 # endif
6214 if ((success = (ProcAdd != NULL
6215 # if defined(USE_DLOPEN)
6216 && dlerr == NULL
6217 # endif
6220 if (string_result == NULL)
6221 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6222 else
6223 retval_str = (ProcAdd)(argstring);
6226 else
6228 # if defined(USE_DLOPEN)
6229 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
6230 dlerr = (char *)dlerror();
6231 # else
6232 if (shl_findsym(&hinstLib, (const char *)funcname,
6233 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6234 ProcAddI = NULL;
6235 # endif
6236 if ((success = (ProcAddI != NULL
6237 # if defined(USE_DLOPEN)
6238 && dlerr == NULL
6239 # endif
6242 if (string_result == NULL)
6243 retval_int = ((INTPROCINT)ProcAddI)(argint);
6244 else
6245 retval_str = (ProcAddI)(argint);
6249 /* Save the string before we free the library. */
6250 /* Assume that a "1" or "-1" result is an illegal pointer. */
6251 if (string_result == NULL)
6252 *number_result = retval_int;
6253 else if (retval_str != NULL
6254 && retval_str != (char_u *)1
6255 && retval_str != (char_u *)-1)
6256 *string_result = vim_strsave(retval_str);
6259 # ifdef HAVE_SETJMP_H
6260 mch_endjmp();
6261 # ifdef SIGHASARG
6262 if (lc_signal != 0)
6264 int i;
6266 /* try to find the name of this signal */
6267 for (i = 0; signal_info[i].sig != -1; i++)
6268 if (lc_signal == signal_info[i].sig)
6269 break;
6270 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6272 # endif
6273 # endif
6275 # if defined(USE_DLOPEN)
6276 /* "dlerr" must be used before dlclose() */
6277 if (dlerr != NULL)
6278 EMSG2(_("dlerror = \"%s\""), dlerr);
6280 /* Free the DLL module. */
6281 (void)dlclose(hinstLib);
6282 # else
6283 (void)shl_unload(hinstLib);
6284 # endif
6287 if (!success)
6289 EMSG2(_(e_libcall), funcname);
6290 return FAIL;
6293 return OK;
6295 #endif
6297 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6298 static int xterm_trace = -1; /* default: disabled */
6299 static int xterm_button;
6302 * Setup a dummy window for X selections in a terminal.
6304 void
6305 setup_term_clip()
6307 int z = 0;
6308 char *strp = "";
6309 Widget AppShell;
6311 if (!x_connect_to_server())
6312 return;
6314 open_app_context();
6315 if (app_context != NULL && xterm_Shell == (Widget)0)
6317 int (*oldhandler)();
6318 #if defined(HAVE_SETJMP_H)
6319 int (*oldIOhandler)();
6320 #endif
6321 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6322 struct timeval start_tv;
6324 if (p_verbose > 0)
6325 gettimeofday(&start_tv, NULL);
6326 # endif
6328 /* Ignore X errors while opening the display */
6329 oldhandler = XSetErrorHandler(x_error_check);
6331 #if defined(HAVE_SETJMP_H)
6332 /* Ignore X IO errors while opening the display */
6333 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6334 mch_startjmp();
6335 if (SETJMP(lc_jump_env) != 0)
6337 mch_didjmp();
6338 xterm_dpy = NULL;
6340 else
6341 #endif
6343 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6344 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6345 #if defined(HAVE_SETJMP_H)
6346 mch_endjmp();
6347 #endif
6350 #if defined(HAVE_SETJMP_H)
6351 /* Now handle X IO errors normally. */
6352 (void)XSetIOErrorHandler(oldIOhandler);
6353 #endif
6354 /* Now handle X errors normally. */
6355 (void)XSetErrorHandler(oldhandler);
6357 if (xterm_dpy == NULL)
6359 if (p_verbose > 0)
6360 verb_msg((char_u *)_("Opening the X display failed"));
6361 return;
6364 /* Catch terminating error of the X server connection. */
6365 (void)XSetIOErrorHandler(x_IOerror_handler);
6367 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6368 if (p_verbose > 0)
6370 verbose_enter();
6371 xopen_message(&start_tv);
6372 verbose_leave();
6374 # endif
6376 /* Create a Shell to make converters work. */
6377 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6378 applicationShellWidgetClass, xterm_dpy,
6379 NULL);
6380 if (AppShell == (Widget)0)
6381 return;
6382 xterm_Shell = XtVaCreatePopupShell("VIM",
6383 topLevelShellWidgetClass, AppShell,
6384 XtNmappedWhenManaged, 0,
6385 XtNwidth, 1,
6386 XtNheight, 1,
6387 NULL);
6388 if (xterm_Shell == (Widget)0)
6389 return;
6391 x11_setup_atoms(xterm_dpy);
6392 if (x11_display == NULL)
6393 x11_display = xterm_dpy;
6395 XtRealizeWidget(xterm_Shell);
6396 XSync(xterm_dpy, False);
6397 xterm_update();
6399 if (xterm_Shell != (Widget)0)
6401 clip_init(TRUE);
6402 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6403 x11_window = (Window)atol(strp);
6404 /* Check if $WINDOWID is valid. */
6405 if (test_x11_window(xterm_dpy) == FAIL)
6406 x11_window = 0;
6407 if (x11_window != 0)
6408 xterm_trace = 0;
6412 void
6413 start_xterm_trace(button)
6414 int button;
6416 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6417 return;
6418 xterm_trace = 1;
6419 xterm_button = button;
6420 do_xterm_trace();
6424 void
6425 stop_xterm_trace()
6427 if (xterm_trace < 0)
6428 return;
6429 xterm_trace = 0;
6433 * Query the xterm pointer and generate mouse termcodes if necessary
6434 * return TRUE if dragging is active, else FALSE
6436 static int
6437 do_xterm_trace()
6439 Window root, child;
6440 int root_x, root_y;
6441 int win_x, win_y;
6442 int row, col;
6443 int_u mask_return;
6444 char_u buf[50];
6445 char_u *strp;
6446 long got_hints;
6447 static char_u *mouse_code;
6448 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6449 static int prev_row = 0, prev_col = 0;
6450 static XSizeHints xterm_hints;
6452 if (xterm_trace <= 0)
6453 return FALSE;
6455 if (xterm_trace == 1)
6457 /* Get the hints just before tracking starts. The font size might
6458 * have changed recently. */
6459 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6460 || !(got_hints & PResizeInc)
6461 || xterm_hints.width_inc <= 1
6462 || xterm_hints.height_inc <= 1)
6464 xterm_trace = -1; /* Not enough data -- disable tracing */
6465 return FALSE;
6468 /* Rely on the same mouse code for the duration of this */
6469 mouse_code = find_termcode(mouse_name);
6470 prev_row = mouse_row;
6471 prev_row = mouse_col;
6472 xterm_trace = 2;
6474 /* Find the offset of the chars, there might be a scrollbar on the
6475 * left of the window and/or a menu on the top (eterm etc.) */
6476 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6477 &win_x, &win_y, &mask_return);
6478 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6479 - (xterm_hints.height_inc / 2);
6480 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6481 xterm_hints.y = 2;
6482 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6483 - (xterm_hints.width_inc / 2);
6484 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6485 xterm_hints.x = 2;
6486 return TRUE;
6488 if (mouse_code == NULL)
6490 xterm_trace = 0;
6491 return FALSE;
6494 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6495 &win_x, &win_y, &mask_return);
6497 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6498 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6499 if (row == prev_row && col == prev_col)
6500 return TRUE;
6502 STRCPY(buf, mouse_code);
6503 strp = buf + STRLEN(buf);
6504 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6505 *strp++ = (char_u)(col + ' ' + 1);
6506 *strp++ = (char_u)(row + ' ' + 1);
6507 *strp = 0;
6508 add_to_input_buf(buf, STRLEN(buf));
6510 prev_row = row;
6511 prev_col = col;
6512 return TRUE;
6515 # if defined(FEAT_GUI) || defined(PROTO)
6517 * Destroy the display, window and app_context. Required for GTK.
6519 void
6520 clear_xterm_clip()
6522 if (xterm_Shell != (Widget)0)
6524 XtDestroyWidget(xterm_Shell);
6525 xterm_Shell = (Widget)0;
6527 if (xterm_dpy != NULL)
6529 # if 0
6530 /* Lesstif and Solaris crash here, lose some memory */
6531 XtCloseDisplay(xterm_dpy);
6532 # endif
6533 if (x11_display == xterm_dpy)
6534 x11_display = NULL;
6535 xterm_dpy = NULL;
6537 # if 0
6538 if (app_context != (XtAppContext)NULL)
6540 /* Lesstif and Solaris crash here, lose some memory */
6541 XtDestroyApplicationContext(app_context);
6542 app_context = (XtAppContext)NULL;
6544 # endif
6546 # endif
6549 * Catch up with any queued X events. This may put keyboard input into the
6550 * input buffer, call resize call-backs, trigger timers etc. If there is
6551 * nothing in the X event queue (& no timers pending), then we return
6552 * immediately.
6554 static void
6555 xterm_update()
6557 XEvent event;
6559 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6561 XtAppNextEvent(app_context, &event);
6562 #ifdef FEAT_CLIENTSERVER
6564 XPropertyEvent *e = (XPropertyEvent *)&event;
6566 if (e->type == PropertyNotify && e->window == commWindow
6567 && e->atom == commProperty && e->state == PropertyNewValue)
6568 serverEventProc(xterm_dpy, &event);
6570 #endif
6571 XtDispatchEvent(&event);
6576 clip_xterm_own_selection(cbd)
6577 VimClipboard *cbd;
6579 if (xterm_Shell != (Widget)0)
6580 return clip_x11_own_selection(xterm_Shell, cbd);
6581 return FAIL;
6584 void
6585 clip_xterm_lose_selection(cbd)
6586 VimClipboard *cbd;
6588 if (xterm_Shell != (Widget)0)
6589 clip_x11_lose_selection(xterm_Shell, cbd);
6592 void
6593 clip_xterm_request_selection(cbd)
6594 VimClipboard *cbd;
6596 if (xterm_Shell != (Widget)0)
6597 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6600 void
6601 clip_xterm_set_selection(cbd)
6602 VimClipboard *cbd;
6604 clip_x11_set_selection(cbd);
6606 #endif
6609 #if defined(USE_XSMP) || defined(PROTO)
6611 * Code for X Session Management Protocol.
6613 static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6614 static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6615 static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6616 static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6617 static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6620 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6621 static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6624 * This is our chance to ask the user if they want to save,
6625 * or abort the logout
6627 static void
6628 xsmp_handle_interaction(smc_conn, client_data)
6629 SmcConn smc_conn;
6630 SmPointer client_data UNUSED;
6632 cmdmod_T save_cmdmod;
6633 int cancel_shutdown = False;
6635 save_cmdmod = cmdmod;
6636 cmdmod.confirm = TRUE;
6637 if (check_changed_any(FALSE))
6638 /* Mustn't logout */
6639 cancel_shutdown = True;
6640 cmdmod = save_cmdmod;
6641 setcursor(); /* position cursor */
6642 out_flush();
6644 /* Done interaction */
6645 SmcInteractDone(smc_conn, cancel_shutdown);
6647 /* Finish off
6648 * Only end save-yourself here if we're not cancelling shutdown;
6649 * we'll get a cancelled callback later in which we'll end it.
6650 * Hopefully get around glitchy SMs (like GNOME-1)
6652 if (!cancel_shutdown)
6654 xsmp.save_yourself = False;
6655 SmcSaveYourselfDone(smc_conn, True);
6658 # endif
6661 * Callback that starts save-yourself.
6663 static void
6664 xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6665 shutdown, interact_style, fast)
6666 SmcConn smc_conn;
6667 SmPointer client_data UNUSED;
6668 int save_type UNUSED;
6669 Bool shutdown;
6670 int interact_style UNUSED;
6671 Bool fast UNUSED;
6673 /* Handle already being in saveyourself */
6674 if (xsmp.save_yourself)
6675 SmcSaveYourselfDone(smc_conn, True);
6676 xsmp.save_yourself = True;
6677 xsmp.shutdown = shutdown;
6679 /* First up, preserve all files */
6680 out_flush();
6681 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6683 if (p_verbose > 0)
6684 verb_msg((char_u *)_("XSMP handling save-yourself request"));
6686 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6687 /* Now see if we can ask about unsaved files */
6688 if (shutdown && !fast && gui.in_use)
6689 /* Need to interact with user, but need SM's permission */
6690 SmcInteractRequest(smc_conn, SmDialogError,
6691 xsmp_handle_interaction, client_data);
6692 else
6693 # endif
6695 /* Can stop the cycle here */
6696 SmcSaveYourselfDone(smc_conn, True);
6697 xsmp.save_yourself = False;
6703 * Callback to warn us of imminent death.
6705 static void
6706 xsmp_die(smc_conn, client_data)
6707 SmcConn smc_conn UNUSED;
6708 SmPointer client_data UNUSED;
6710 xsmp_close();
6712 /* quit quickly leaving swapfiles for modified buffers behind */
6713 getout_preserve_modified(0);
6718 * Callback to tell us that save-yourself has completed.
6720 static void
6721 xsmp_save_complete(smc_conn, client_data)
6722 SmcConn smc_conn UNUSED;
6723 SmPointer client_data UNUSED;
6725 xsmp.save_yourself = False;
6730 * Callback to tell us that an instigated shutdown was cancelled
6731 * (maybe even by us)
6733 static void
6734 xsmp_shutdown_cancelled(smc_conn, client_data)
6735 SmcConn smc_conn;
6736 SmPointer client_data UNUSED;
6738 if (xsmp.save_yourself)
6739 SmcSaveYourselfDone(smc_conn, True);
6740 xsmp.save_yourself = False;
6741 xsmp.shutdown = False;
6746 * Callback to tell us that a new ICE connection has been established.
6748 static void
6749 xsmp_ice_connection(iceConn, clientData, opening, watchData)
6750 IceConn iceConn;
6751 IcePointer clientData UNUSED;
6752 Bool opening;
6753 IcePointer *watchData UNUSED;
6755 /* Intercept creation of ICE connection fd */
6756 if (opening)
6758 xsmp_icefd = IceConnectionNumber(iceConn);
6759 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6764 /* Handle any ICE processing that's required; return FAIL if SM lost */
6766 xsmp_handle_requests()
6768 Bool rep;
6770 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6771 == IceProcessMessagesIOError)
6773 /* Lost ICE */
6774 if (p_verbose > 0)
6775 verb_msg((char_u *)_("XSMP lost ICE connection"));
6776 xsmp_close();
6777 return FAIL;
6779 else
6780 return OK;
6783 static int dummy;
6785 /* Set up X Session Management Protocol */
6786 void
6787 xsmp_init(void)
6789 char errorstring[80];
6790 SmcCallbacks smcallbacks;
6791 #if 0
6792 SmPropValue smname;
6793 SmProp smnameprop;
6794 SmProp *smprops[1];
6795 #endif
6797 if (p_verbose > 0)
6798 verb_msg((char_u *)_("XSMP opening connection"));
6800 xsmp.save_yourself = xsmp.shutdown = False;
6802 /* Set up SM callbacks - must have all, even if they're not used */
6803 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6804 smcallbacks.save_yourself.client_data = NULL;
6805 smcallbacks.die.callback = xsmp_die;
6806 smcallbacks.die.client_data = NULL;
6807 smcallbacks.save_complete.callback = xsmp_save_complete;
6808 smcallbacks.save_complete.client_data = NULL;
6809 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6810 smcallbacks.shutdown_cancelled.client_data = NULL;
6812 /* Set up a watch on ICE connection creations. The "dummy" argument is
6813 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6814 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6816 if (p_verbose > 0)
6817 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
6818 return;
6821 /* Create an SM connection */
6822 xsmp.smcconn = SmcOpenConnection(
6823 NULL,
6824 NULL,
6825 SmProtoMajor,
6826 SmProtoMinor,
6827 SmcSaveYourselfProcMask | SmcDieProcMask
6828 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6829 &smcallbacks,
6830 NULL,
6831 &xsmp.clientid,
6832 sizeof(errorstring),
6833 errorstring);
6834 if (xsmp.smcconn == NULL)
6836 char errorreport[132];
6838 if (p_verbose > 0)
6840 vim_snprintf(errorreport, sizeof(errorreport),
6841 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6842 verb_msg((char_u *)errorreport);
6844 return;
6846 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6848 #if 0
6849 /* ID ourselves */
6850 smname.value = "vim";
6851 smname.length = 3;
6852 smnameprop.name = "SmProgram";
6853 smnameprop.type = "SmARRAY8";
6854 smnameprop.num_vals = 1;
6855 smnameprop.vals = &smname;
6857 smprops[0] = &smnameprop;
6858 SmcSetProperties(xsmp.smcconn, 1, smprops);
6859 #endif
6863 /* Shut down XSMP comms. */
6864 void
6865 xsmp_close()
6867 if (xsmp_icefd != -1)
6869 SmcCloseConnection(xsmp.smcconn, 0, NULL);
6870 if (xsmp.clientid != NULL)
6871 free(xsmp.clientid);
6872 xsmp.clientid = NULL;
6873 xsmp_icefd = -1;
6876 #endif /* USE_XSMP */
6879 #ifdef EBCDIC
6880 /* Translate character to its CTRL- value */
6881 char CtrlTable[] =
6883 /* 00 - 5E */
6884 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6885 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6886 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6887 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6888 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6889 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6890 /* ^ */ 0x1E,
6891 /* - */ 0x1F,
6892 /* 61 - 6C */
6893 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6894 /* _ */ 0x1F,
6895 /* 6E - 80 */
6896 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6897 /* a */ 0x01,
6898 /* b */ 0x02,
6899 /* c */ 0x03,
6900 /* d */ 0x37,
6901 /* e */ 0x2D,
6902 /* f */ 0x2E,
6903 /* g */ 0x2F,
6904 /* h */ 0x16,
6905 /* i */ 0x05,
6906 /* 8A - 90 */
6907 0, 0, 0, 0, 0, 0, 0,
6908 /* j */ 0x15,
6909 /* k */ 0x0B,
6910 /* l */ 0x0C,
6911 /* m */ 0x0D,
6912 /* n */ 0x0E,
6913 /* o */ 0x0F,
6914 /* p */ 0x10,
6915 /* q */ 0x11,
6916 /* r */ 0x12,
6917 /* 9A - A1 */
6918 0, 0, 0, 0, 0, 0, 0, 0,
6919 /* s */ 0x13,
6920 /* t */ 0x3C,
6921 /* u */ 0x3D,
6922 /* v */ 0x32,
6923 /* w */ 0x26,
6924 /* x */ 0x18,
6925 /* y */ 0x19,
6926 /* z */ 0x3F,
6927 /* AA - AC */
6928 0, 0, 0,
6929 /* [ */ 0x27,
6930 /* AE - BC */
6931 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6932 /* ] */ 0x1D,
6933 /* BE - C0 */ 0, 0, 0,
6934 /* A */ 0x01,
6935 /* B */ 0x02,
6936 /* C */ 0x03,
6937 /* D */ 0x37,
6938 /* E */ 0x2D,
6939 /* F */ 0x2E,
6940 /* G */ 0x2F,
6941 /* H */ 0x16,
6942 /* I */ 0x05,
6943 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6944 /* J */ 0x15,
6945 /* K */ 0x0B,
6946 /* L */ 0x0C,
6947 /* M */ 0x0D,
6948 /* N */ 0x0E,
6949 /* O */ 0x0F,
6950 /* P */ 0x10,
6951 /* Q */ 0x11,
6952 /* R */ 0x12,
6953 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6954 /* \ */ 0x1C,
6955 /* E1 */ 0,
6956 /* S */ 0x13,
6957 /* T */ 0x3C,
6958 /* U */ 0x3D,
6959 /* V */ 0x32,
6960 /* W */ 0x26,
6961 /* X */ 0x18,
6962 /* Y */ 0x19,
6963 /* Z */ 0x3F,
6964 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6965 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6968 char MetaCharTable[]=
6969 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6970 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6971 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6972 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6973 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6977 /* TODO: Use characters NOT numbers!!! */
6978 char CtrlCharTable[]=
6979 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6980 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6981 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6982 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6983 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6987 #endif