Merged from the latest developing branch.
[MacVim/KaoriYa.git] / src / os_unix.c
blob72b17c488d08ecb6219fe5e6bb482530cc58b828
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) || defined(FEAT_GUI_GTK)
1976 if (gui.in_use)
1977 type = 1;
1978 # endif
1979 #endif
1982 * Note: if "t_TS" is set, title is set with escape sequence rather
1983 * than x11 calls, because the x11 calls don't always work
1985 if ((type || *T_TS != NUL) && title != NULL)
1987 if (oldtitle == NULL
1988 #ifdef FEAT_GUI
1989 && !gui.in_use
1990 #endif
1991 ) /* first call but not in GUI, save title */
1992 (void)get_x11_title(FALSE);
1994 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1995 term_settitle(title);
1996 #ifdef FEAT_X11
1997 else
1998 # ifdef FEAT_GUI_GTK
1999 if (!gui.in_use) /* don't do this if GTK+ is running */
2000 # endif
2001 set_x11_title(title); /* x11 */
2002 #endif
2003 #if defined(FEAT_GUI_GTK) \
2004 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2005 else
2006 gui_mch_settitle(title, icon);
2007 #endif
2008 did_set_title = TRUE;
2011 if ((type || *T_CIS != NUL) && icon != NULL)
2013 if (oldicon == NULL
2014 #ifdef FEAT_GUI
2015 && !gui.in_use
2016 #endif
2017 ) /* first call, save icon */
2018 get_x11_icon(FALSE);
2020 if (*T_CIS != NUL)
2022 out_str(T_CIS); /* set icon start */
2023 out_str_nf(icon);
2024 out_str(T_CIE); /* set icon end */
2025 out_flush();
2027 #ifdef FEAT_X11
2028 else
2029 # ifdef FEAT_GUI_GTK
2030 if (!gui.in_use) /* don't do this if GTK+ is running */
2031 # endif
2032 set_x11_icon(icon); /* x11 */
2033 #endif
2034 did_set_icon = TRUE;
2036 --recursive;
2040 * Restore the window/icon title.
2041 * "which" is one of:
2042 * 1 only restore title
2043 * 2 only restore icon
2044 * 3 restore title and icon
2046 void
2047 mch_restore_title(which)
2048 int which;
2050 /* only restore the title or icon when it has been set */
2051 mch_settitle(((which & 1) && did_set_title) ?
2052 (oldtitle ? oldtitle : p_titleold) : NULL,
2053 ((which & 2) && did_set_icon) ? oldicon : NULL);
2056 #endif /* FEAT_TITLE */
2059 * Return TRUE if "name" looks like some xterm name.
2060 * Seiichi Sato mentioned that "mlterm" works like xterm.
2063 vim_is_xterm(name)
2064 char_u *name;
2066 if (name == NULL)
2067 return FALSE;
2068 return (STRNICMP(name, "xterm", 5) == 0
2069 || STRNICMP(name, "nxterm", 6) == 0
2070 || STRNICMP(name, "kterm", 5) == 0
2071 || STRNICMP(name, "mlterm", 6) == 0
2072 || STRNICMP(name, "rxvt", 4) == 0
2073 || STRCMP(name, "builtin_xterm") == 0);
2076 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2078 * Return TRUE if "name" appears to be that of a terminal
2079 * known to support the xterm-style mouse protocol.
2080 * Relies on term_is_xterm having been set to its correct value.
2083 use_xterm_like_mouse(name)
2084 char_u *name;
2086 return (name != NULL
2087 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2089 #endif
2091 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2093 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2094 * Return 1 for "xterm".
2095 * Return 2 for "xterm2".
2098 use_xterm_mouse()
2100 if (ttym_flags == TTYM_XTERM2)
2101 return 2;
2102 if (ttym_flags == TTYM_XTERM)
2103 return 1;
2104 return 0;
2106 #endif
2109 vim_is_iris(name)
2110 char_u *name;
2112 if (name == NULL)
2113 return FALSE;
2114 return (STRNICMP(name, "iris-ansi", 9) == 0
2115 || STRCMP(name, "builtin_iris-ansi") == 0);
2119 vim_is_vt300(name)
2120 char_u *name;
2122 if (name == NULL)
2123 return FALSE; /* actually all ANSI comp. terminals should be here */
2124 /* catch VT100 - VT5xx */
2125 return ((STRNICMP(name, "vt", 2) == 0
2126 && vim_strchr((char_u *)"12345", name[2]) != NULL)
2127 || STRCMP(name, "builtin_vt320") == 0);
2131 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2132 * This should include all windowed terminal emulators.
2135 vim_is_fastterm(name)
2136 char_u *name;
2138 if (name == NULL)
2139 return FALSE;
2140 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2141 return TRUE;
2142 return ( STRNICMP(name, "hpterm", 6) == 0
2143 || STRNICMP(name, "sun-cmd", 7) == 0
2144 || STRNICMP(name, "screen", 6) == 0
2145 || STRNICMP(name, "dtterm", 6) == 0);
2149 * Insert user name in s[len].
2150 * Return OK if a name found.
2153 mch_get_user_name(s, len)
2154 char_u *s;
2155 int len;
2157 #ifdef VMS
2158 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
2159 return OK;
2160 #else
2161 return mch_get_uname(getuid(), s, len);
2162 #endif
2166 * Insert user name for "uid" in s[len].
2167 * Return OK if a name found.
2170 mch_get_uname(uid, s, len)
2171 uid_t uid;
2172 char_u *s;
2173 int len;
2175 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2176 struct passwd *pw;
2178 if ((pw = getpwuid(uid)) != NULL
2179 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2181 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
2182 return OK;
2184 #endif
2185 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2186 return FAIL; /* a number is not a name */
2190 * Insert host name is s[len].
2193 #ifdef HAVE_SYS_UTSNAME_H
2194 void
2195 mch_get_host_name(s, len)
2196 char_u *s;
2197 int len;
2199 struct utsname vutsname;
2201 if (uname(&vutsname) < 0)
2202 *s = NUL;
2203 else
2204 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
2206 #else /* HAVE_SYS_UTSNAME_H */
2208 # ifdef HAVE_SYS_SYSTEMINFO_H
2209 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2210 # endif
2212 void
2213 mch_get_host_name(s, len)
2214 char_u *s;
2215 int len;
2217 # ifdef VAXC
2218 vaxc$gethostname((char *)s, len);
2219 # else
2220 gethostname((char *)s, len);
2221 # endif
2222 s[len - 1] = NUL; /* make sure it's terminated */
2224 #endif /* HAVE_SYS_UTSNAME_H */
2227 * return process ID
2229 long
2230 mch_get_pid()
2232 return (long)getpid();
2235 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2236 static char *strerror __ARGS((int));
2238 static char *
2239 strerror(err)
2240 int err;
2242 extern int sys_nerr;
2243 extern char *sys_errlist[];
2244 static char er[20];
2246 if (err > 0 && err < sys_nerr)
2247 return (sys_errlist[err]);
2248 sprintf(er, "Error %d", err);
2249 return er;
2251 #endif
2254 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2255 * Return OK for success, FAIL for failure.
2258 mch_dirname(buf, len)
2259 char_u *buf;
2260 int len;
2262 #if defined(USE_GETCWD)
2263 if (getcwd((char *)buf, len) == NULL)
2265 STRCPY(buf, strerror(errno));
2266 return FAIL;
2268 return OK;
2269 #else
2270 return (getwd((char *)buf) != NULL ? OK : FAIL);
2271 #endif
2274 #if defined(OS2) || defined(PROTO)
2276 * Replace all slashes by backslashes.
2277 * When 'shellslash' set do it the other way around.
2279 void
2280 slash_adjust(p)
2281 char_u *p;
2283 while (*p)
2285 if (*p == psepcN)
2286 *p = psepc;
2287 mb_ptr_adv(p);
2290 #endif
2293 * Get absolute file name into "buf[len]".
2295 * return FAIL for failure, OK for success
2298 mch_FullName(fname, buf, len, force)
2299 char_u *fname, *buf;
2300 int len;
2301 int force; /* also expand when already absolute path */
2303 int l;
2304 #ifdef OS2
2305 int only_drive; /* file name is only a drive letter */
2306 #endif
2307 #ifdef HAVE_FCHDIR
2308 int fd = -1;
2309 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
2310 #endif
2311 char_u olddir[MAXPATHL];
2312 char_u *p;
2313 int retval = OK;
2314 #ifdef __CYGWIN__
2315 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2316 it's not always defined */
2317 #endif
2319 #ifdef VMS
2320 fname = vms_fixfilename(fname);
2321 #endif
2323 #ifdef __CYGWIN__
2325 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2327 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2328 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2329 # else
2330 cygwin_conv_to_posix_path(fname, posix_fname);
2331 # endif
2332 fname = posix_fname;
2333 #endif
2335 /* expand it if forced or not an absolute path */
2336 if (force || !mch_isFullName(fname))
2339 * If the file name has a path, change to that directory for a moment,
2340 * and then do the getwd() (and get back to where we were).
2341 * This will get the correct path name with "../" things.
2343 #ifdef OS2
2344 only_drive = 0;
2345 if (((p = vim_strrchr(fname, '/')) != NULL)
2346 || ((p = vim_strrchr(fname, '\\')) != NULL)
2347 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
2348 #else
2349 if ((p = vim_strrchr(fname, '/')) != NULL)
2350 #endif
2352 #ifdef HAVE_FCHDIR
2354 * Use fchdir() if possible, it's said to be faster and more
2355 * reliable. But on SunOS 4 it might not work. Check this by
2356 * doing a fchdir() right now.
2358 if (!dont_fchdir)
2360 fd = open(".", O_RDONLY | O_EXTRA, 0);
2361 if (fd >= 0 && fchdir(fd) < 0)
2363 close(fd);
2364 fd = -1;
2365 dont_fchdir = TRUE; /* don't try again */
2368 #endif
2370 /* Only change directory when we are sure we can return to where
2371 * we are now. After doing "su" chdir(".") might not work. */
2372 if (
2373 #ifdef HAVE_FCHDIR
2374 fd < 0 &&
2375 #endif
2376 (mch_dirname(olddir, MAXPATHL) == FAIL
2377 || mch_chdir((char *)olddir) != 0))
2379 p = NULL; /* can't get current dir: don't chdir */
2380 retval = FAIL;
2382 else
2384 #ifdef OS2
2386 * compensate for case where ':' from "D:" was the only
2387 * path separator detected in the file name; the _next_
2388 * character has to be removed, and then restored later.
2390 if (only_drive)
2391 p++;
2392 #endif
2393 /* The directory is copied into buf[], to be able to remove
2394 * the file name without changing it (could be a string in
2395 * read-only memory) */
2396 if (p - fname >= len)
2397 retval = FAIL;
2398 else
2400 vim_strncpy(buf, fname, p - fname);
2401 if (mch_chdir((char *)buf))
2402 retval = FAIL;
2403 else
2404 fname = p + 1;
2405 *buf = NUL;
2407 #ifdef OS2
2408 if (only_drive)
2410 p--;
2411 if (retval != FAIL)
2412 fname--;
2414 #endif
2417 if (mch_dirname(buf, len) == FAIL)
2419 retval = FAIL;
2420 *buf = NUL;
2422 if (p != NULL)
2424 #ifdef HAVE_FCHDIR
2425 if (fd >= 0)
2427 l = fchdir(fd);
2428 close(fd);
2430 else
2431 #endif
2432 l = mch_chdir((char *)olddir);
2433 if (l != 0)
2434 EMSG(_(e_prev_dir));
2437 l = STRLEN(buf);
2438 if (l >= len)
2439 retval = FAIL;
2440 #ifndef VMS
2441 else
2443 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2444 && STRCMP(fname, ".") != 0)
2445 STRCAT(buf, "/");
2447 #endif
2450 /* Catch file names which are too long. */
2451 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
2452 return FAIL;
2454 /* Do not append ".", "/dir/." is equal to "/dir". */
2455 if (STRCMP(fname, ".") != 0)
2456 STRCAT(buf, fname);
2458 return OK;
2462 * Return TRUE if "fname" does not depend on the current directory.
2465 mch_isFullName(fname)
2466 char_u *fname;
2468 #ifdef __EMX__
2469 return _fnisabs(fname);
2470 #else
2471 # ifdef VMS
2472 return ( fname[0] == '/' || fname[0] == '.' ||
2473 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2474 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2475 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2476 # else
2477 return (*fname == '/' || *fname == '~');
2478 # endif
2479 #endif
2482 #if defined(USE_FNAME_CASE) || defined(PROTO)
2484 * Set the case of the file name, if it already exists. This will cause the
2485 * file name to remain exactly the same.
2486 * Only required for file systems where case is ignored and preserved.
2488 void
2489 fname_case(name, len)
2490 char_u *name;
2491 int len UNUSED; /* buffer size, only used when name gets longer */
2493 struct stat st;
2494 char_u *slash, *tail;
2495 DIR *dirp;
2496 struct dirent *dp;
2498 if (lstat((char *)name, &st) >= 0)
2500 /* Open the directory where the file is located. */
2501 slash = vim_strrchr(name, '/');
2502 if (slash == NULL)
2504 dirp = opendir(".");
2505 tail = name;
2507 else
2509 *slash = NUL;
2510 dirp = opendir((char *)name);
2511 *slash = '/';
2512 tail = slash + 1;
2515 if (dirp != NULL)
2517 while ((dp = readdir(dirp)) != NULL)
2519 /* Only accept names that differ in case and are the same byte
2520 * length. TODO: accept different length name. */
2521 if (STRICMP(tail, dp->d_name) == 0
2522 && STRLEN(tail) == STRLEN(dp->d_name))
2524 char_u newname[MAXPATHL + 1];
2525 struct stat st2;
2527 /* Verify the inode is equal. */
2528 vim_strncpy(newname, name, MAXPATHL);
2529 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2530 MAXPATHL - (tail - name));
2531 if (lstat((char *)newname, &st2) >= 0
2532 && st.st_ino == st2.st_ino
2533 && st.st_dev == st2.st_dev)
2535 STRCPY(tail, dp->d_name);
2536 break;
2541 closedir(dirp);
2545 #endif
2548 * Get file permissions for 'name'.
2549 * Returns -1 when it doesn't exist.
2551 long
2552 mch_getperm(name)
2553 char_u *name;
2555 struct stat statb;
2557 /* Keep the #ifdef outside of stat(), it may be a macro. */
2558 #ifdef VMS
2559 if (stat((char *)vms_fixfilename(name), &statb))
2560 #else
2561 if (stat((char *)name, &statb))
2562 #endif
2563 return -1;
2564 #ifdef __INTERIX
2565 /* The top bit makes the value negative, which means the file doesn't
2566 * exist. Remove the bit, we don't use it. */
2567 return statb.st_mode & ~S_ADDACE;
2568 #else
2569 return statb.st_mode;
2570 #endif
2574 * set file permission for 'name' to 'perm'
2576 * return FAIL for failure, OK otherwise
2579 mch_setperm(name, perm)
2580 char_u *name;
2581 long perm;
2583 return (chmod((char *)
2584 #ifdef VMS
2585 vms_fixfilename(name),
2586 #else
2587 name,
2588 #endif
2589 (mode_t)perm) == 0 ? OK : FAIL);
2592 #if defined(HAVE_ACL) || defined(PROTO)
2593 # ifdef HAVE_SYS_ACL_H
2594 # include <sys/acl.h>
2595 # endif
2596 # ifdef HAVE_SYS_ACCESS_H
2597 # include <sys/access.h>
2598 # endif
2600 # ifdef HAVE_SOLARIS_ACL
2601 typedef struct vim_acl_solaris_T {
2602 int acl_cnt;
2603 aclent_t *acl_entry;
2604 } vim_acl_solaris_T;
2605 # endif
2607 #if defined(HAVE_SELINUX) || defined(PROTO)
2609 * Copy security info from "from_file" to "to_file".
2611 void
2612 mch_copy_sec(from_file, to_file)
2613 char_u *from_file;
2614 char_u *to_file;
2616 if (from_file == NULL)
2617 return;
2619 if (selinux_enabled == -1)
2620 selinux_enabled = is_selinux_enabled();
2622 if (selinux_enabled > 0)
2624 security_context_t from_context = NULL;
2625 security_context_t to_context = NULL;
2627 if (getfilecon((char *)from_file, &from_context) < 0)
2629 /* If the filesystem doesn't support extended attributes,
2630 the original had no special security context and the
2631 target cannot have one either. */
2632 if (errno == EOPNOTSUPP)
2633 return;
2635 MSG_PUTS(_("\nCould not get security context for "));
2636 msg_outtrans(from_file);
2637 msg_putchar('\n');
2638 return;
2640 if (getfilecon((char *)to_file, &to_context) < 0)
2642 MSG_PUTS(_("\nCould not get security context for "));
2643 msg_outtrans(to_file);
2644 msg_putchar('\n');
2645 freecon (from_context);
2646 return ;
2648 if (strcmp(from_context, to_context) != 0)
2650 if (setfilecon((char *)to_file, from_context) < 0)
2652 MSG_PUTS(_("\nCould not set security context for "));
2653 msg_outtrans(to_file);
2654 msg_putchar('\n');
2657 freecon(to_context);
2658 freecon(from_context);
2661 #endif /* HAVE_SELINUX */
2664 * Return a pointer to the ACL of file "fname" in allocated memory.
2665 * Return NULL if the ACL is not available for whatever reason.
2667 vim_acl_T
2668 mch_get_acl(fname)
2669 char_u *fname UNUSED;
2671 vim_acl_T ret = NULL;
2672 #ifdef HAVE_POSIX_ACL
2673 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2674 #else
2675 #ifdef HAVE_SOLARIS_ACL
2676 vim_acl_solaris_T *aclent;
2678 aclent = malloc(sizeof(vim_acl_solaris_T));
2679 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2681 free(aclent);
2682 return NULL;
2684 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2685 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2687 free(aclent->acl_entry);
2688 free(aclent);
2689 return NULL;
2691 ret = (vim_acl_T)aclent;
2692 #else
2693 #if defined(HAVE_AIX_ACL)
2694 int aclsize;
2695 struct acl *aclent;
2697 aclsize = sizeof(struct acl);
2698 aclent = malloc(aclsize);
2699 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2701 if (errno == ENOSPC)
2703 aclsize = aclent->acl_len;
2704 aclent = realloc(aclent, aclsize);
2705 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2707 free(aclent);
2708 return NULL;
2711 else
2713 free(aclent);
2714 return NULL;
2717 ret = (vim_acl_T)aclent;
2718 #endif /* HAVE_AIX_ACL */
2719 #endif /* HAVE_SOLARIS_ACL */
2720 #endif /* HAVE_POSIX_ACL */
2721 return ret;
2725 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2727 void
2728 mch_set_acl(fname, aclent)
2729 char_u *fname UNUSED;
2730 vim_acl_T aclent;
2732 if (aclent == NULL)
2733 return;
2734 #ifdef HAVE_POSIX_ACL
2735 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2736 #else
2737 #ifdef HAVE_SOLARIS_ACL
2738 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2739 ((vim_acl_solaris_T *)aclent)->acl_entry);
2740 #else
2741 #ifdef HAVE_AIX_ACL
2742 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2743 #endif /* HAVE_AIX_ACL */
2744 #endif /* HAVE_SOLARIS_ACL */
2745 #endif /* HAVE_POSIX_ACL */
2748 void
2749 mch_free_acl(aclent)
2750 vim_acl_T aclent;
2752 if (aclent == NULL)
2753 return;
2754 #ifdef HAVE_POSIX_ACL
2755 acl_free((acl_t)aclent);
2756 #else
2757 #ifdef HAVE_SOLARIS_ACL
2758 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2759 free(aclent);
2760 #else
2761 #ifdef HAVE_AIX_ACL
2762 free(aclent);
2763 #endif /* HAVE_AIX_ACL */
2764 #endif /* HAVE_SOLARIS_ACL */
2765 #endif /* HAVE_POSIX_ACL */
2767 #endif
2770 * Set hidden flag for "name".
2772 void
2773 mch_hide(name)
2774 char_u *name UNUSED;
2776 /* can't hide a file */
2780 * return TRUE if "name" is a directory
2781 * return FALSE if "name" is not a directory
2782 * return FALSE for error
2785 mch_isdir(name)
2786 char_u *name;
2788 struct stat statb;
2790 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2791 return FALSE;
2792 if (stat((char *)name, &statb))
2793 return FALSE;
2794 #ifdef _POSIX_SOURCE
2795 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2796 #else
2797 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2798 #endif
2801 static int executable_file __ARGS((char_u *name));
2804 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2806 static int
2807 executable_file(name)
2808 char_u *name;
2810 struct stat st;
2812 if (stat((char *)name, &st))
2813 return 0;
2814 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2818 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2819 * Return -1 if unknown.
2822 mch_can_exe(name)
2823 char_u *name;
2825 char_u *buf;
2826 char_u *p, *e;
2827 int retval;
2829 /* If it's an absolute or relative path don't need to use $PATH. */
2830 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2831 || (name[1] == '.' && name[2] == '/'))))
2832 return executable_file(name);
2834 p = (char_u *)getenv("PATH");
2835 if (p == NULL || *p == NUL)
2836 return -1;
2837 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2838 if (buf == NULL)
2839 return -1;
2842 * Walk through all entries in $PATH to check if "name" exists there and
2843 * is an executable file.
2845 for (;;)
2847 e = (char_u *)strchr((char *)p, ':');
2848 if (e == NULL)
2849 e = p + STRLEN(p);
2850 if (e - p <= 1) /* empty entry means current dir */
2851 STRCPY(buf, "./");
2852 else
2854 vim_strncpy(buf, p, e - p);
2855 add_pathsep(buf);
2857 STRCAT(buf, name);
2858 retval = executable_file(buf);
2859 if (retval == 1)
2860 break;
2862 if (*e != ':')
2863 break;
2864 p = e + 1;
2867 vim_free(buf);
2868 return retval;
2872 * Check what "name" is:
2873 * NODE_NORMAL: file or directory (or doesn't exist)
2874 * NODE_WRITABLE: writable device, socket, fifo, etc.
2875 * NODE_OTHER: non-writable things
2878 mch_nodetype(name)
2879 char_u *name;
2881 struct stat st;
2883 if (stat((char *)name, &st))
2884 return NODE_NORMAL;
2885 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2886 return NODE_NORMAL;
2887 #ifndef OS2
2888 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2889 return NODE_OTHER;
2890 #endif
2891 /* Everything else is writable? */
2892 return NODE_WRITABLE;
2895 void
2896 mch_early_init()
2898 #ifdef HAVE_CHECK_STACK_GROWTH
2899 int i;
2901 check_stack_growth((char *)&i);
2903 # ifdef HAVE_STACK_LIMIT
2904 get_stack_limit();
2905 # endif
2907 #endif
2910 * Setup an alternative stack for signals. Helps to catch signals when
2911 * running out of stack space.
2912 * Use of sigaltstack() is preferred, it's more portable.
2913 * Ignore any errors.
2915 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2916 signal_stack = (char *)alloc(SIGSTKSZ);
2917 init_signal_stack();
2918 #endif
2921 #if defined(EXITFREE) || defined(PROTO)
2922 void
2923 mch_free_mem()
2925 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2926 if (clip_star.owned)
2927 clip_lose_selection(&clip_star);
2928 if (clip_plus.owned)
2929 clip_lose_selection(&clip_plus);
2930 # endif
2931 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2932 if (xterm_Shell != (Widget)0)
2933 XtDestroyWidget(xterm_Shell);
2934 # ifndef LESSTIF_VERSION
2935 /* Lesstif crashes here, lose some memory */
2936 if (xterm_dpy != NULL)
2937 XtCloseDisplay(xterm_dpy);
2938 if (app_context != (XtAppContext)NULL)
2940 XtDestroyApplicationContext(app_context);
2941 # ifdef FEAT_X11
2942 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2943 # endif
2945 # endif
2946 # endif
2947 /* Don't close the display for GTK 1, it is done in exit(). */
2948 # if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
2949 if (x11_display != NULL
2950 # ifdef FEAT_XCLIPBOARD
2951 && x11_display != xterm_dpy
2952 # endif
2954 XCloseDisplay(x11_display);
2955 # endif
2956 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2957 vim_free(signal_stack);
2958 signal_stack = NULL;
2959 # endif
2960 # ifdef FEAT_TITLE
2961 vim_free(oldtitle);
2962 vim_free(oldicon);
2963 # endif
2965 #endif
2967 static void exit_scroll __ARGS((void));
2970 * Output a newline when exiting.
2971 * Make sure the newline goes to the same stream as the text.
2973 static void
2974 exit_scroll()
2976 if (silent_mode)
2977 return;
2978 if (newline_on_exit || msg_didout)
2980 if (msg_use_printf())
2982 if (info_message)
2983 mch_msg("\n");
2984 else
2985 mch_errmsg("\r\n");
2987 else
2988 out_char('\n');
2990 else
2992 restore_cterm_colors(); /* get original colors back */
2993 msg_clr_eos_force(); /* clear the rest of the display */
2994 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2998 void
2999 mch_exit(r)
3000 int r;
3002 exiting = TRUE;
3004 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3005 x11_export_final_selection();
3006 #endif
3008 #ifdef FEAT_GUI
3009 if (!gui.in_use)
3010 #endif
3012 settmode(TMODE_COOK);
3013 #ifdef FEAT_TITLE
3014 mch_restore_title(3); /* restore xterm title and icon name */
3015 #endif
3017 * When t_ti is not empty but it doesn't cause swapping terminal
3018 * pages, need to output a newline when msg_didout is set. But when
3019 * t_ti does swap pages it should not go to the shell page. Do this
3020 * before stoptermcap().
3022 if (swapping_screen() && !newline_on_exit)
3023 exit_scroll();
3025 /* Stop termcap: May need to check for T_CRV response, which
3026 * requires RAW mode. */
3027 stoptermcap();
3030 * A newline is only required after a message in the alternate screen.
3031 * This is set to TRUE by wait_return().
3033 if (!swapping_screen() || newline_on_exit)
3034 exit_scroll();
3036 /* Cursor may have been switched off without calling starttermcap()
3037 * when doing "vim -u vimrc" and vimrc contains ":q". */
3038 if (full_screen)
3039 cursor_on();
3041 out_flush();
3042 ml_close_all(TRUE); /* remove all memfiles */
3043 may_core_dump();
3044 #ifdef FEAT_GUI
3045 if (gui.in_use)
3046 gui_exit(r);
3047 #endif
3049 #ifdef MACOS_CONVERT
3050 mac_conv_cleanup();
3051 #endif
3053 #ifdef __QNX__
3054 /* A core dump won't be created if the signal handler
3055 * doesn't return, so we can't call exit() */
3056 if (deadly_signal != 0)
3057 return;
3058 #endif
3060 #ifdef FEAT_NETBEANS_INTG
3061 if (usingNetbeans)
3062 netbeans_send_disconnect();
3063 #endif
3065 #ifdef EXITFREE
3066 free_all_mem();
3067 #endif
3069 exit(r);
3072 static void
3073 may_core_dump()
3075 if (deadly_signal != 0)
3077 signal(deadly_signal, SIG_DFL);
3078 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3082 #ifndef VMS
3084 void
3085 mch_settmode(tmode)
3086 int tmode;
3088 static int first = TRUE;
3090 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3091 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3093 * for "new" tty systems
3095 # ifdef HAVE_TERMIOS_H
3096 static struct termios told;
3097 struct termios tnew;
3098 # else
3099 static struct termio told;
3100 struct termio tnew;
3101 # endif
3103 if (first)
3105 first = FALSE;
3106 # if defined(HAVE_TERMIOS_H)
3107 tcgetattr(read_cmd_fd, &told);
3108 # else
3109 ioctl(read_cmd_fd, TCGETA, &told);
3110 # endif
3113 tnew = told;
3114 if (tmode == TMODE_RAW)
3117 * ~ICRNL enables typing ^V^M
3119 tnew.c_iflag &= ~ICRNL;
3120 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3121 # if defined(IEXTEN) && !defined(__MINT__)
3122 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3123 /* but it breaks function keys on MINT */
3124 # endif
3126 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3127 tnew.c_oflag &= ~ONLCR;
3128 # endif
3129 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3130 tnew.c_cc[VTIME] = 0; /* don't wait */
3132 else if (tmode == TMODE_SLEEP)
3133 tnew.c_lflag &= ~(ECHO);
3135 # if defined(HAVE_TERMIOS_H)
3137 int n = 10;
3139 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3140 * few times. */
3141 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3142 && errno == EINTR && n > 0)
3143 --n;
3145 # else
3146 ioctl(read_cmd_fd, TCSETA, &tnew);
3147 # endif
3149 #else
3152 * for "old" tty systems
3154 # ifndef TIOCSETN
3155 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3156 # endif
3157 static struct sgttyb ttybold;
3158 struct sgttyb ttybnew;
3160 if (first)
3162 first = FALSE;
3163 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3166 ttybnew = ttybold;
3167 if (tmode == TMODE_RAW)
3169 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3170 ttybnew.sg_flags |= RAW;
3172 else if (tmode == TMODE_SLEEP)
3173 ttybnew.sg_flags &= ~(ECHO);
3174 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3175 #endif
3176 curr_tmode = tmode;
3180 * Try to get the code for "t_kb" from the stty setting
3182 * Even if termcap claims a backspace key, the user's setting *should*
3183 * prevail. stty knows more about reality than termcap does, and if
3184 * somebody's usual erase key is DEL (which, for most BSD users, it will
3185 * be), they're going to get really annoyed if their erase key starts
3186 * doing forward deletes for no reason. (Eric Fischer)
3188 void
3189 get_stty()
3191 char_u buf[2];
3192 char_u *p;
3194 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3195 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3196 /* for "new" tty systems */
3197 # ifdef HAVE_TERMIOS_H
3198 struct termios keys;
3199 # else
3200 struct termio keys;
3201 # endif
3203 # if defined(HAVE_TERMIOS_H)
3204 if (tcgetattr(read_cmd_fd, &keys) != -1)
3205 # else
3206 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3207 # endif
3209 buf[0] = keys.c_cc[VERASE];
3210 intr_char = keys.c_cc[VINTR];
3211 #else
3212 /* for "old" tty systems */
3213 struct sgttyb keys;
3215 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3217 buf[0] = keys.sg_erase;
3218 intr_char = keys.sg_kill;
3219 #endif
3220 buf[1] = NUL;
3221 add_termcode((char_u *)"kb", buf, FALSE);
3224 * If <BS> and <DEL> are now the same, redefine <DEL>.
3226 p = find_termcode((char_u *)"kD");
3227 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3228 do_fixdel(NULL);
3230 #if 0
3231 } /* to keep cindent happy */
3232 #endif
3235 #endif /* VMS */
3237 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3239 * Set mouse clicks on or off.
3241 void
3242 mch_setmouse(on)
3243 int on;
3245 static int ison = FALSE;
3246 int xterm_mouse_vers;
3248 if (on == ison) /* return quickly if nothing to do */
3249 return;
3251 xterm_mouse_vers = use_xterm_mouse();
3252 if (xterm_mouse_vers > 0)
3254 if (on) /* enable mouse events, use mouse tracking if available */
3255 out_str_nf((char_u *)
3256 (xterm_mouse_vers > 1
3257 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3258 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3259 else /* disable mouse events, could probably always send the same */
3260 out_str_nf((char_u *)
3261 (xterm_mouse_vers > 1
3262 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3263 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3264 ison = on;
3267 # ifdef FEAT_MOUSE_DEC
3268 else if (ttym_flags == TTYM_DEC)
3270 if (on) /* enable mouse events */
3271 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3272 else /* disable mouse events */
3273 out_str_nf((char_u *)"\033['z");
3274 ison = on;
3276 # endif
3278 # ifdef FEAT_MOUSE_GPM
3279 else
3281 if (on)
3283 if (gpm_open())
3284 ison = TRUE;
3286 else
3288 gpm_close();
3289 ison = FALSE;
3292 # endif
3294 # ifdef FEAT_SYSMOUSE
3295 else
3297 if (on)
3299 if (sysmouse_open() == OK)
3300 ison = TRUE;
3302 else
3304 sysmouse_close();
3305 ison = FALSE;
3308 # endif
3310 # ifdef FEAT_MOUSE_JSB
3311 else
3313 if (on)
3315 /* D - Enable Mouse up/down messages
3316 * L - Enable Left Button Reporting
3317 * M - Enable Middle Button Reporting
3318 * R - Enable Right Button Reporting
3319 * K - Enable SHIFT and CTRL key Reporting
3320 * + - Enable Advanced messaging of mouse moves and up/down messages
3321 * Q - Quiet No Ack
3322 * # - Numeric value of mouse pointer required
3323 * 0 = Multiview 2000 cursor, used as standard
3324 * 1 = Windows Arrow
3325 * 2 = Windows I Beam
3326 * 3 = Windows Hour Glass
3327 * 4 = Windows Cross Hair
3328 * 5 = Windows UP Arrow
3330 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3331 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3332 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3333 #else
3334 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3335 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3336 #endif
3337 ison = TRUE;
3339 else
3341 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3342 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3343 ison = FALSE;
3346 # endif
3347 # ifdef FEAT_MOUSE_PTERM
3348 else
3350 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3351 if (on)
3352 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3353 else
3354 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3355 ison = on;
3357 # endif
3361 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3363 void
3364 check_mouse_termcode()
3366 # ifdef FEAT_MOUSE_XTERM
3367 if (use_xterm_mouse()
3368 # ifdef FEAT_GUI
3369 && !gui.in_use
3370 # endif
3373 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3374 ? IF_EB("\233M", CSI_STR "M")
3375 : IF_EB("\033[M", ESC_STR "[M")));
3376 if (*p_mouse != NUL)
3378 /* force mouse off and maybe on to send possibly new mouse
3379 * activation sequence to the xterm, with(out) drag tracing. */
3380 mch_setmouse(FALSE);
3381 setmouse();
3384 else
3385 del_mouse_termcode(KS_MOUSE);
3386 # endif
3388 # ifdef FEAT_MOUSE_GPM
3389 if (!use_xterm_mouse()
3390 # ifdef FEAT_GUI
3391 && !gui.in_use
3392 # endif
3394 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3395 # endif
3397 # ifdef FEAT_SYSMOUSE
3398 if (!use_xterm_mouse()
3399 # ifdef FEAT_GUI
3400 && !gui.in_use
3401 # endif
3403 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3404 # endif
3406 # ifdef FEAT_MOUSE_JSB
3407 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3408 if (!use_xterm_mouse()
3409 # ifdef FEAT_GUI
3410 && !gui.in_use
3411 # endif
3413 set_mouse_termcode(KS_JSBTERM_MOUSE,
3414 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3415 else
3416 del_mouse_termcode(KS_JSBTERM_MOUSE);
3417 # endif
3419 # ifdef FEAT_MOUSE_NET
3420 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3421 * define it in the GUI or when using an xterm. */
3422 if (!use_xterm_mouse()
3423 # ifdef FEAT_GUI
3424 && !gui.in_use
3425 # endif
3427 set_mouse_termcode(KS_NETTERM_MOUSE,
3428 (char_u *)IF_EB("\033}", ESC_STR "}"));
3429 else
3430 del_mouse_termcode(KS_NETTERM_MOUSE);
3431 # endif
3433 # ifdef FEAT_MOUSE_DEC
3434 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3435 if (!use_xterm_mouse()
3436 # ifdef FEAT_GUI
3437 && !gui.in_use
3438 # endif
3440 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3441 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
3442 else
3443 del_mouse_termcode(KS_DEC_MOUSE);
3444 # endif
3445 # ifdef FEAT_MOUSE_PTERM
3446 /* same as the dec mouse */
3447 if (!use_xterm_mouse()
3448 # ifdef FEAT_GUI
3449 && !gui.in_use
3450 # endif
3452 set_mouse_termcode(KS_PTERM_MOUSE,
3453 (char_u *) IF_EB("\033[", ESC_STR "["));
3454 else
3455 del_mouse_termcode(KS_PTERM_MOUSE);
3456 # endif
3458 #endif
3461 * set screen mode, always fails.
3464 mch_screenmode(arg)
3465 char_u *arg UNUSED;
3467 EMSG(_(e_screenmode));
3468 return FAIL;
3471 #ifndef VMS
3474 * Try to get the current window size:
3475 * 1. with an ioctl(), most accurate method
3476 * 2. from the environment variables LINES and COLUMNS
3477 * 3. from the termcap
3478 * 4. keep using the old values
3479 * Return OK when size could be determined, FAIL otherwise.
3482 mch_get_shellsize()
3484 long rows = 0;
3485 long columns = 0;
3486 char_u *p;
3489 * For OS/2 use _scrsize().
3491 # ifdef __EMX__
3493 int s[2];
3495 _scrsize(s);
3496 columns = s[0];
3497 rows = s[1];
3499 # endif
3502 * 1. try using an ioctl. It is the most accurate method.
3504 * Try using TIOCGWINSZ first, some systems that have it also define
3505 * TIOCGSIZE but don't have a struct ttysize.
3507 # ifdef TIOCGWINSZ
3509 struct winsize ws;
3510 int fd = 1;
3512 /* When stdout is not a tty, use stdin for the ioctl(). */
3513 if (!isatty(fd) && isatty(read_cmd_fd))
3514 fd = read_cmd_fd;
3515 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3517 columns = ws.ws_col;
3518 rows = ws.ws_row;
3521 # else /* TIOCGWINSZ */
3522 # ifdef TIOCGSIZE
3524 struct ttysize ts;
3525 int fd = 1;
3527 /* When stdout is not a tty, use stdin for the ioctl(). */
3528 if (!isatty(fd) && isatty(read_cmd_fd))
3529 fd = read_cmd_fd;
3530 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3532 columns = ts.ts_cols;
3533 rows = ts.ts_lines;
3536 # endif /* TIOCGSIZE */
3537 # endif /* TIOCGWINSZ */
3540 * 2. get size from environment
3541 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3542 * the ioctl() values!
3544 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
3546 if ((p = (char_u *)getenv("LINES")))
3547 rows = atoi((char *)p);
3548 if ((p = (char_u *)getenv("COLUMNS")))
3549 columns = atoi((char *)p);
3552 #ifdef HAVE_TGETENT
3554 * 3. try reading "co" and "li" entries from termcap
3556 if (columns == 0 || rows == 0)
3557 getlinecol(&columns, &rows);
3558 #endif
3561 * 4. If everything fails, use the old values
3563 if (columns <= 0 || rows <= 0)
3564 return FAIL;
3566 Rows = rows;
3567 Columns = columns;
3568 return OK;
3572 * Try to set the window size to Rows and Columns.
3574 void
3575 mch_set_shellsize()
3577 if (*T_CWS)
3580 * NOTE: if you get an error here that term_set_winsize() is
3581 * undefined, check the output of configure. It could probably not
3582 * find a ncurses, termcap or termlib library.
3584 term_set_winsize((int)Rows, (int)Columns);
3585 out_flush();
3586 screen_start(); /* don't know where cursor is now */
3590 #endif /* VMS */
3593 * Rows and/or Columns has changed.
3595 void
3596 mch_new_shellsize()
3598 /* Nothing to do. */
3601 #ifndef USE_SYSTEM
3602 static void append_ga_line __ARGS((garray_T *gap));
3605 * Append the text in "gap" below the cursor line and clear "gap".
3607 static void
3608 append_ga_line(gap)
3609 garray_T *gap;
3611 /* Remove trailing CR. */
3612 if (gap->ga_len > 0
3613 && !curbuf->b_p_bin
3614 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3615 --gap->ga_len;
3616 ga_append(gap, NUL);
3617 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3618 gap->ga_len = 0;
3620 #endif
3623 mch_call_shell(cmd, options)
3624 char_u *cmd;
3625 int options; /* SHELL_*, see vim.h */
3627 #ifdef VMS
3628 char *ifn = NULL;
3629 char *ofn = NULL;
3630 #endif
3631 int tmode = cur_tmode;
3632 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3633 int x;
3634 # ifndef __EMX__
3635 char_u *newcmd; /* only needed for unix */
3636 # else
3638 * Set the preferred shell in the EMXSHELL environment variable (but
3639 * only if it is different from what is already in the environment).
3640 * Emx then takes care of whether to use "/c" or "-c" in an
3641 * intelligent way. Simply pass the whole thing to emx's system() call.
3642 * Emx also starts an interactive shell if system() is passed an empty
3643 * string.
3645 char_u *p, *old;
3647 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3649 /* should check HAVE_SETENV, but I know we don't have it. */
3650 p = alloc(10 + strlen(p_sh));
3651 if (p)
3653 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3654 putenv((char *)p); /* don't free the pointer! */
3657 # endif
3659 out_flush();
3661 if (options & SHELL_COOKED)
3662 settmode(TMODE_COOK); /* set to normal mode */
3664 # ifdef __EMX__
3665 if (cmd == NULL)
3666 x = system(""); /* this starts an interactive shell in emx */
3667 else
3668 x = system((char *)cmd);
3669 /* system() returns -1 when error occurs in starting shell */
3670 if (x == -1 && !emsg_silent)
3672 MSG_PUTS(_("\nCannot execute shell "));
3673 msg_outtrans(p_sh);
3674 msg_putchar('\n');
3676 # else /* not __EMX__ */
3677 if (cmd == NULL)
3678 x = system((char *)p_sh);
3679 else
3681 # ifdef VMS
3682 if (ofn = strchr((char *)cmd, '>'))
3683 *ofn++ = '\0';
3684 if (ifn = strchr((char *)cmd, '<'))
3686 char *p;
3688 *ifn++ = '\0';
3689 p = strchr(ifn,' '); /* chop off any trailing spaces */
3690 if (p)
3691 *p = '\0';
3693 if (ofn)
3694 x = vms_sys((char *)cmd, ofn, ifn);
3695 else
3696 x = system((char *)cmd);
3697 # else
3698 newcmd = lalloc(STRLEN(p_sh)
3699 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3700 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3701 if (newcmd == NULL)
3702 x = 0;
3703 else
3705 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3706 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3707 (char *)p_shcf,
3708 (char *)cmd);
3709 x = system((char *)newcmd);
3710 vim_free(newcmd);
3712 # endif
3714 # ifdef VMS
3715 x = vms_sys_status(x);
3716 # endif
3717 if (emsg_silent)
3719 else if (x == 127)
3720 MSG_PUTS(_("\nCannot execute shell sh\n"));
3721 # endif /* __EMX__ */
3722 else if (x && !(options & SHELL_SILENT))
3724 MSG_PUTS(_("\nshell returned "));
3725 msg_outnum((long)x);
3726 msg_putchar('\n');
3729 if (tmode == TMODE_RAW)
3730 settmode(TMODE_RAW); /* set to raw mode */
3731 # ifdef FEAT_TITLE
3732 resettitle();
3733 # endif
3734 return x;
3736 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3738 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3739 127, some shells use that already */
3741 char_u *newcmd = NULL;
3742 pid_t pid;
3743 pid_t wpid = 0;
3744 pid_t wait_pid = 0;
3745 # ifdef HAVE_UNION_WAIT
3746 union wait status;
3747 # else
3748 int status = -1;
3749 # endif
3750 int retval = -1;
3751 char **argv = NULL;
3752 int argc;
3753 int i;
3754 char_u *p;
3755 int inquote;
3756 int pty_master_fd = -1; /* for pty's */
3757 # ifdef FEAT_GUI
3758 int pty_slave_fd = -1;
3759 char *tty_name;
3760 # endif
3761 int fd_toshell[2]; /* for pipes */
3762 int fd_fromshell[2];
3763 int pipe_error = FALSE;
3764 # ifdef HAVE_SETENV
3765 char envbuf[50];
3766 # else
3767 static char envbuf_Rows[20];
3768 static char envbuf_Columns[20];
3769 # endif
3770 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
3772 out_flush();
3773 if (options & SHELL_COOKED)
3774 settmode(TMODE_COOK); /* set to normal mode */
3776 newcmd = vim_strsave(p_sh);
3777 if (newcmd == NULL) /* out of memory */
3778 goto error;
3781 * Do this loop twice:
3782 * 1: find number of arguments
3783 * 2: separate them and build argv[]
3785 for (i = 0; i < 2; ++i)
3787 p = newcmd;
3788 inquote = FALSE;
3789 argc = 0;
3790 for (;;)
3792 if (i == 1)
3793 argv[argc] = (char *)p;
3794 ++argc;
3795 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3797 if (*p == '"')
3798 inquote = !inquote;
3799 ++p;
3801 if (*p == NUL)
3802 break;
3803 if (i == 1)
3804 *p++ = NUL;
3805 p = skipwhite(p);
3807 if (argv == NULL)
3809 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3810 if (argv == NULL) /* out of memory */
3811 goto error;
3814 if (cmd != NULL)
3816 if (extra_shell_arg != NULL)
3817 argv[argc++] = (char *)extra_shell_arg;
3818 argv[argc++] = (char *)p_shcf;
3819 argv[argc++] = (char *)cmd;
3821 argv[argc] = NULL;
3824 * For the GUI, when writing the output into the buffer and when reading
3825 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3826 * of the executed command into the Vim window. Or use a pipe.
3828 if ((options & (SHELL_READ|SHELL_WRITE))
3829 # ifdef FEAT_GUI
3830 || (gui.in_use && show_shell_mess)
3831 # endif
3834 # ifdef FEAT_GUI
3836 * Try to open a master pty.
3837 * If this works, open the slave pty.
3838 * If the slave can't be opened, close the master pty.
3840 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
3842 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3843 if (pty_master_fd >= 0 && ((pty_slave_fd =
3844 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3846 close(pty_master_fd);
3847 pty_master_fd = -1;
3851 * If not opening a pty or it didn't work, try using pipes.
3853 if (pty_master_fd < 0)
3854 # endif
3856 pipe_error = (pipe(fd_toshell) < 0);
3857 if (!pipe_error) /* pipe create OK */
3859 pipe_error = (pipe(fd_fromshell) < 0);
3860 if (pipe_error) /* pipe create failed */
3862 close(fd_toshell[0]);
3863 close(fd_toshell[1]);
3866 if (pipe_error)
3868 MSG_PUTS(_("\nCannot create pipes\n"));
3869 out_flush();
3874 if (!pipe_error) /* pty or pipe opened or not used */
3876 # ifdef __BEOS__
3877 beos_cleanup_read_thread();
3878 # endif
3880 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3882 MSG_PUTS(_("\nCannot fork\n"));
3883 if ((options & (SHELL_READ|SHELL_WRITE))
3884 # ifdef FEAT_GUI
3885 || (gui.in_use && show_shell_mess)
3886 # endif
3889 # ifdef FEAT_GUI
3890 if (pty_master_fd >= 0) /* close the pseudo tty */
3892 close(pty_master_fd);
3893 close(pty_slave_fd);
3895 else /* close the pipes */
3896 # endif
3898 close(fd_toshell[0]);
3899 close(fd_toshell[1]);
3900 close(fd_fromshell[0]);
3901 close(fd_fromshell[1]);
3905 else if (pid == 0) /* child */
3907 reset_signals(); /* handle signals normally */
3909 if (!show_shell_mess || (options & SHELL_EXPAND))
3911 int fd;
3914 * Don't want to show any message from the shell. Can't just
3915 * close stdout and stderr though, because some systems will
3916 * break if you try to write to them after that, so we must
3917 * use dup() to replace them with something else -- webb
3918 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3919 * waiting for input.
3921 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3922 fclose(stdin);
3923 fclose(stdout);
3924 fclose(stderr);
3927 * If any of these open()'s and dup()'s fail, we just continue
3928 * anyway. It's not fatal, and on most systems it will make
3929 * no difference at all. On a few it will cause the execvp()
3930 * to exit with a non-zero status even when the completion
3931 * could be done, which is nothing too serious. If the open()
3932 * or dup() failed we'd just do the same thing ourselves
3933 * anyway -- webb
3935 if (fd >= 0)
3937 ignored = dup(fd); /* To replace stdin (fd 0) */
3938 ignored = dup(fd); /* To replace stdout (fd 1) */
3939 ignored = dup(fd); /* To replace stderr (fd 2) */
3941 /* Don't need this now that we've duplicated it */
3942 close(fd);
3945 else if ((options & (SHELL_READ|SHELL_WRITE))
3946 # ifdef FEAT_GUI
3947 || gui.in_use
3948 # endif
3952 # ifdef HAVE_SETSID
3953 /* Create our own process group, so that the child and all its
3954 * children can be kill()ed. Don't do this when using pipes,
3955 * because stdin is not a tty, we would lose /dev/tty. */
3956 if (p_stmp)
3958 (void)setsid();
3959 # if defined(SIGHUP)
3960 /* When doing "!xterm&" and 'shell' is bash: the shell
3961 * will exit and send SIGHUP to all processes in its
3962 * group, killing the just started process. Ignore SIGHUP
3963 * to avoid that. (suggested by Simon Schubert)
3965 signal(SIGHUP, SIG_IGN);
3966 # endif
3968 # endif
3969 # ifdef FEAT_GUI
3970 if (pty_slave_fd >= 0)
3972 /* push stream discipline modules */
3973 if (options & SHELL_COOKED)
3974 SetupSlavePTY(pty_slave_fd);
3975 # ifdef TIOCSCTTY
3976 /* Try to become controlling tty (probably doesn't work,
3977 * unless run by root) */
3978 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
3979 # endif
3981 # endif
3982 /* Simulate to have a dumb terminal (for now) */
3983 # ifdef HAVE_SETENV
3984 setenv("TERM", "dumb", 1);
3985 sprintf((char *)envbuf, "%ld", Rows);
3986 setenv("ROWS", (char *)envbuf, 1);
3987 sprintf((char *)envbuf, "%ld", Rows);
3988 setenv("LINES", (char *)envbuf, 1);
3989 sprintf((char *)envbuf, "%ld", Columns);
3990 setenv("COLUMNS", (char *)envbuf, 1);
3991 # else
3993 * Putenv does not copy the string, it has to remain valid.
3994 * Use a static array to avoid losing allocated memory.
3996 putenv("TERM=dumb");
3997 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3998 putenv(envbuf_Rows);
3999 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4000 putenv(envbuf_Rows);
4001 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4002 putenv(envbuf_Columns);
4003 # endif
4006 * stderr is only redirected when using the GUI, so that a
4007 * program like gpg can still access the terminal to get a
4008 * passphrase using stderr.
4010 # ifdef FEAT_GUI
4011 if (pty_master_fd >= 0)
4013 close(pty_master_fd); /* close master side of pty */
4015 /* set up stdin/stdout/stderr for the child */
4016 close(0);
4017 ignored = dup(pty_slave_fd);
4018 close(1);
4019 ignored = dup(pty_slave_fd);
4020 if (gui.in_use)
4022 close(2);
4023 ignored = dup(pty_slave_fd);
4026 close(pty_slave_fd); /* has been dupped, close it now */
4028 else
4029 # endif
4031 /* set up stdin for the child */
4032 close(fd_toshell[1]);
4033 close(0);
4034 ignored = dup(fd_toshell[0]);
4035 close(fd_toshell[0]);
4037 /* set up stdout for the child */
4038 close(fd_fromshell[0]);
4039 close(1);
4040 ignored = dup(fd_fromshell[1]);
4041 close(fd_fromshell[1]);
4043 # ifdef FEAT_GUI
4044 if (gui.in_use)
4046 /* set up stderr for the child */
4047 close(2);
4048 ignored = dup(1);
4050 # endif
4055 * There is no type cast for the argv, because the type may be
4056 * different on different machines. This may cause a warning
4057 * message with strict compilers, don't worry about it.
4058 * Call _exit() instead of exit() to avoid closing the connection
4059 * to the X server (esp. with GTK, which uses atexit()).
4061 execvp(argv[0], argv);
4062 _exit(EXEC_FAILED); /* exec failed, return failure code */
4064 else /* parent */
4067 * While child is running, ignore terminating signals.
4068 * Do catch CTRL-C, so that "got_int" is set.
4070 catch_signals(SIG_IGN, SIG_ERR);
4071 catch_int_signal();
4074 * For the GUI we redirect stdin, stdout and stderr to our window.
4075 * This is also used to pipe stdin/stdout to/from the external
4076 * command.
4078 if ((options & (SHELL_READ|SHELL_WRITE))
4079 # ifdef FEAT_GUI
4080 || (gui.in_use && show_shell_mess)
4081 # endif
4084 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4085 char_u buffer[BUFLEN + 1];
4086 # ifdef FEAT_MBYTE
4087 int buffer_off = 0; /* valid bytes in buffer[] */
4088 # endif
4089 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4090 int ta_len = 0; /* valid bytes in ta_buf[] */
4091 int len;
4092 int p_more_save;
4093 int old_State;
4094 int c;
4095 int toshell_fd;
4096 int fromshell_fd;
4097 garray_T ga;
4098 int noread_cnt;
4099 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4100 struct timeval start_tv;
4101 # endif
4103 # ifdef FEAT_GUI
4104 if (pty_master_fd >= 0)
4106 close(pty_slave_fd); /* close slave side of pty */
4107 fromshell_fd = pty_master_fd;
4108 toshell_fd = dup(pty_master_fd);
4110 else
4111 # endif
4113 close(fd_toshell[0]);
4114 close(fd_fromshell[1]);
4115 toshell_fd = fd_toshell[1];
4116 fromshell_fd = fd_fromshell[0];
4120 * Write to the child if there are typed characters.
4121 * Read from the child if there are characters available.
4122 * Repeat the reading a few times if more characters are
4123 * available. Need to check for typed keys now and then, but
4124 * not too often (delays when no chars are available).
4125 * This loop is quit if no characters can be read from the pty
4126 * (WaitForChar detected special condition), or there are no
4127 * characters available and the child has exited.
4128 * Only check if the child has exited when there is no more
4129 * output. The child may exit before all the output has
4130 * been printed.
4132 * Currently this busy loops!
4133 * This can probably dead-lock when the write blocks!
4135 p_more_save = p_more;
4136 p_more = FALSE;
4137 old_State = State;
4138 State = EXTERNCMD; /* don't redraw at window resize */
4140 if ((options & SHELL_WRITE) && toshell_fd >= 0)
4142 /* Fork a process that will write the lines to the
4143 * external program. */
4144 if ((wpid = fork()) == -1)
4146 MSG_PUTS(_("\nCannot fork\n"));
4148 else if (wpid == 0)
4150 linenr_T lnum = curbuf->b_op_start.lnum;
4151 int written = 0;
4152 char_u *lp = ml_get(lnum);
4153 char_u *s;
4154 size_t l;
4156 /* child */
4157 close(fromshell_fd);
4158 for (;;)
4160 l = STRLEN(lp + written);
4161 if (l == 0)
4162 len = 0;
4163 else if (lp[written] == NL)
4164 /* NL -> NUL translation */
4165 len = write(toshell_fd, "", (size_t)1);
4166 else
4168 s = vim_strchr(lp + written, NL);
4169 len = write(toshell_fd, (char *)lp + written,
4170 s == NULL ? l
4171 : (size_t)(s - (lp + written)));
4173 if (len == (int)l)
4175 /* Finished a line, add a NL, unless this line
4176 * should not have one. */
4177 if (lnum != curbuf->b_op_end.lnum
4178 || !curbuf->b_p_bin
4179 || (lnum != write_no_eol_lnum
4180 && (lnum !=
4181 curbuf->b_ml.ml_line_count
4182 || curbuf->b_p_eol)))
4183 ignored = write(toshell_fd, "\n",
4184 (size_t)1);
4185 ++lnum;
4186 if (lnum > curbuf->b_op_end.lnum)
4188 /* finished all the lines, close pipe */
4189 close(toshell_fd);
4190 toshell_fd = -1;
4191 break;
4193 lp = ml_get(lnum);
4194 written = 0;
4196 else if (len > 0)
4197 written += len;
4199 _exit(0);
4201 else
4203 close(toshell_fd);
4204 toshell_fd = -1;
4208 if (options & SHELL_READ)
4209 ga_init2(&ga, 1, BUFLEN);
4211 noread_cnt = 0;
4212 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4213 gettimeofday(&start_tv, NULL);
4214 # endif
4215 for (;;)
4218 * Check if keys have been typed, write them to the child
4219 * if there are any.
4220 * Don't do this if we are expanding wild cards (would eat
4221 * typeahead).
4222 * Don't do this when filtering and terminal is in cooked
4223 * mode, the shell command will handle the I/O. Avoids
4224 * that a typed password is echoed for ssh or gpg command.
4225 * Don't get characters when the child has already
4226 * finished (wait_pid == 0).
4227 * Don't read characters unless we didn't get output for a
4228 * while (noread_cnt > 4), avoids that ":r !ls" eats
4229 * typeahead.
4231 len = 0;
4232 if (!(options & SHELL_EXPAND)
4233 && ((options &
4234 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4235 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4236 # ifdef FEAT_GUI
4237 || gui.in_use
4238 # endif
4240 && wait_pid == 0
4241 && (ta_len > 0 || noread_cnt > 4))
4243 if (ta_len == 0)
4245 /* Get extra characters when we don't have any.
4246 * Reset the counter and timer. */
4247 noread_cnt = 0;
4248 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4249 gettimeofday(&start_tv, NULL);
4250 # endif
4251 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4253 if (ta_len > 0 || len > 0)
4256 * For pipes:
4257 * Check for CTRL-C: send interrupt signal to child.
4258 * Check for CTRL-D: EOF, close pipe to child.
4260 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4262 # ifdef SIGINT
4264 * Send SIGINT to the child's group or all
4265 * processes in our group.
4267 if (ta_buf[ta_len] == Ctrl_C
4268 || ta_buf[ta_len] == intr_char)
4270 # ifdef HAVE_SETSID
4271 kill(-pid, SIGINT);
4272 # else
4273 kill(0, SIGINT);
4274 # endif
4275 if (wpid > 0)
4276 kill(wpid, SIGINT);
4278 # endif
4279 if (pty_master_fd < 0 && toshell_fd >= 0
4280 && ta_buf[ta_len] == Ctrl_D)
4282 close(toshell_fd);
4283 toshell_fd = -1;
4287 /* replace K_BS by <BS> and K_DEL by <DEL> */
4288 for (i = ta_len; i < ta_len + len; ++i)
4290 if (ta_buf[i] == CSI && len - i > 2)
4292 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4293 if (c == K_DEL || c == K_KDEL || c == K_BS)
4295 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4296 (size_t)(len - i - 2));
4297 if (c == K_DEL || c == K_KDEL)
4298 ta_buf[i] = DEL;
4299 else
4300 ta_buf[i] = Ctrl_H;
4301 len -= 2;
4304 else if (ta_buf[i] == '\r')
4305 ta_buf[i] = '\n';
4306 # ifdef FEAT_MBYTE
4307 if (has_mbyte)
4308 i += (*mb_ptr2len)(ta_buf + i) - 1;
4309 # endif
4313 * For pipes: echo the typed characters.
4314 * For a pty this does not seem to work.
4316 if (pty_master_fd < 0)
4318 for (i = ta_len; i < ta_len + len; ++i)
4320 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4321 msg_putchar(ta_buf[i]);
4322 # ifdef FEAT_MBYTE
4323 else if (has_mbyte)
4325 int l = (*mb_ptr2len)(ta_buf + i);
4327 msg_outtrans_len(ta_buf + i, l);
4328 i += l - 1;
4330 # endif
4331 else
4332 msg_outtrans_len(ta_buf + i, 1);
4334 windgoto(msg_row, msg_col);
4335 out_flush();
4338 ta_len += len;
4341 * Write the characters to the child, unless EOF has
4342 * been typed for pipes. Write one character at a
4343 * time, to avoid losing too much typeahead.
4344 * When writing buffer lines, drop the typed
4345 * characters (only check for CTRL-C).
4347 if (options & SHELL_WRITE)
4348 ta_len = 0;
4349 else if (toshell_fd >= 0)
4351 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4352 if (len > 0)
4354 ta_len -= len;
4355 mch_memmove(ta_buf, ta_buf + len, ta_len);
4361 if (got_int)
4363 /* CTRL-C sends a signal to the child, we ignore it
4364 * ourselves */
4365 # ifdef HAVE_SETSID
4366 kill(-pid, SIGINT);
4367 # else
4368 kill(0, SIGINT);
4369 # endif
4370 if (wpid > 0)
4371 kill(wpid, SIGINT);
4372 got_int = FALSE;
4376 * Check if the child has any characters to be printed.
4377 * Read them and write them to our window. Repeat this as
4378 * long as there is something to do, avoid the 10ms wait
4379 * for mch_inchar(), or sending typeahead characters to
4380 * the external process.
4381 * TODO: This should handle escape sequences, compatible
4382 * to some terminal (vt52?).
4384 ++noread_cnt;
4385 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4387 len = read(fromshell_fd, (char *)buffer
4388 # ifdef FEAT_MBYTE
4389 + buffer_off, (size_t)(BUFLEN - buffer_off)
4390 # else
4391 , (size_t)BUFLEN
4392 # endif
4394 if (len <= 0) /* end of file or error */
4395 goto finished;
4397 noread_cnt = 0;
4398 if (options & SHELL_READ)
4400 /* Do NUL -> NL translation, append NL separated
4401 * lines to the current buffer. */
4402 for (i = 0; i < len; ++i)
4404 if (buffer[i] == NL)
4405 append_ga_line(&ga);
4406 else if (buffer[i] == NUL)
4407 ga_append(&ga, NL);
4408 else
4409 ga_append(&ga, buffer[i]);
4412 # ifdef FEAT_MBYTE
4413 else if (has_mbyte)
4415 int l;
4417 len += buffer_off;
4418 buffer[len] = NUL;
4420 /* Check if the last character in buffer[] is
4421 * incomplete, keep these bytes for the next
4422 * round. */
4423 for (p = buffer; p < buffer + len; p += l)
4425 l = mb_cptr2len(p);
4426 if (l == 0)
4427 l = 1; /* NUL byte? */
4428 else if (MB_BYTE2LEN(*p) != l)
4429 break;
4431 if (p == buffer) /* no complete character */
4433 /* avoid getting stuck at an illegal byte */
4434 if (len >= 12)
4435 ++p;
4436 else
4438 buffer_off = len;
4439 continue;
4442 c = *p;
4443 *p = NUL;
4444 msg_puts(buffer);
4445 if (p < buffer + len)
4447 *p = c;
4448 buffer_off = (buffer + len) - p;
4449 mch_memmove(buffer, p, buffer_off);
4450 continue;
4452 buffer_off = 0;
4454 # endif /* FEAT_MBYTE */
4455 else
4457 buffer[len] = NUL;
4458 msg_puts(buffer);
4461 windgoto(msg_row, msg_col);
4462 cursor_on();
4463 out_flush();
4464 if (got_int)
4465 break;
4467 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4469 struct timeval now_tv;
4470 long msec;
4472 /* Avoid that we keep looping here without
4473 * checking for a CTRL-C for a long time. Don't
4474 * break out too often to avoid losing typeahead. */
4475 gettimeofday(&now_tv, NULL);
4476 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4477 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4478 if (msec > 2000)
4480 noread_cnt = 5;
4481 break;
4484 # endif
4487 /* If we already detected the child has finished break the
4488 * loop now. */
4489 if (wait_pid == pid)
4490 break;
4493 * Check if the child still exists, before checking for
4494 * typed characters (otherwise we would lose typeahead).
4496 # ifdef __NeXT__
4497 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
4498 # else
4499 wait_pid = waitpid(pid, &status, WNOHANG);
4500 # endif
4501 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4502 || (wait_pid == pid && WIFEXITED(status)))
4504 /* Don't break the loop yet, try reading more
4505 * characters from "fromshell_fd" first. When using
4506 * pipes there might still be something to read and
4507 * then we'll break the loop at the "break" above. */
4508 wait_pid = pid;
4510 else
4511 wait_pid = 0;
4513 finished:
4514 p_more = p_more_save;
4515 if (options & SHELL_READ)
4517 if (ga.ga_len > 0)
4519 append_ga_line(&ga);
4520 /* remember that the NL was missing */
4521 write_no_eol_lnum = curwin->w_cursor.lnum;
4523 else
4524 write_no_eol_lnum = 0;
4525 ga_clear(&ga);
4529 * Give all typeahead that wasn't used back to ui_inchar().
4531 if (ta_len)
4532 ui_inchar_undo(ta_buf, ta_len);
4533 State = old_State;
4534 if (toshell_fd >= 0)
4535 close(toshell_fd);
4536 close(fromshell_fd);
4540 * Wait until our child has exited.
4541 * Ignore wait() returning pids of other children and returning
4542 * because of some signal like SIGWINCH.
4543 * Don't wait if wait_pid was already set above, indicating the
4544 * child already exited.
4546 while (wait_pid != pid)
4548 # ifdef _THREAD_SAFE
4549 /* Ugly hack: when compiled with Python threads are probably
4550 * used, in which case wait() sometimes hangs for no obvious
4551 * reason. Use waitpid() instead and loop (like the GUI). */
4552 # ifdef __NeXT__
4553 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4554 # else
4555 wait_pid = waitpid(pid, &status, WNOHANG);
4556 # endif
4557 if (wait_pid == 0)
4559 /* Wait for 1/100 sec before trying again. */
4560 mch_delay(10L, TRUE);
4561 continue;
4563 # else
4564 wait_pid = wait(&status);
4565 # endif
4566 if (wait_pid <= 0
4567 # ifdef ECHILD
4568 && errno == ECHILD
4569 # endif
4571 break;
4574 /* Make sure the child that writes to the external program is
4575 * dead. */
4576 if (wpid > 0)
4577 kill(wpid, SIGKILL);
4580 * Set to raw mode right now, otherwise a CTRL-C after
4581 * catch_signals() will kill Vim.
4583 if (tmode == TMODE_RAW)
4584 settmode(TMODE_RAW);
4585 did_settmode = TRUE;
4586 set_signals();
4588 if (WIFEXITED(status))
4590 /* LINTED avoid "bitwise operation on signed value" */
4591 retval = WEXITSTATUS(status);
4592 if (retval && !emsg_silent)
4594 if (retval == EXEC_FAILED)
4596 MSG_PUTS(_("\nCannot execute shell "));
4597 msg_outtrans(p_sh);
4598 msg_putchar('\n');
4600 else if (!(options & SHELL_SILENT))
4602 MSG_PUTS(_("\nshell returned "));
4603 msg_outnum((long)retval);
4604 msg_putchar('\n');
4608 else
4609 MSG_PUTS(_("\nCommand terminated\n"));
4612 vim_free(argv);
4614 error:
4615 if (!did_settmode)
4616 if (tmode == TMODE_RAW)
4617 settmode(TMODE_RAW); /* set to raw mode */
4618 # ifdef FEAT_TITLE
4619 resettitle();
4620 # endif
4621 vim_free(newcmd);
4623 return retval;
4625 #endif /* USE_SYSTEM */
4629 * Check for CTRL-C typed by reading all available characters.
4630 * In cooked mode we should get SIGINT, no need to check.
4632 void
4633 mch_breakcheck()
4635 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4636 fill_input_buf(FALSE);
4640 * Wait "msec" msec until a character is available from the keyboard or from
4641 * inbuf[]. msec == -1 will block forever.
4642 * When a GUI is being used, this will never get called -- webb
4644 static int
4645 WaitForChar(msec)
4646 long msec;
4648 #ifdef FEAT_MOUSE_GPM
4649 int gpm_process_wanted;
4650 #endif
4651 #ifdef FEAT_XCLIPBOARD
4652 int rest;
4653 #endif
4654 int avail;
4656 if (input_available()) /* something in inbuf[] */
4657 return 1;
4659 #if defined(FEAT_MOUSE_DEC)
4660 /* May need to query the mouse position. */
4661 if (WantQueryMouse)
4663 WantQueryMouse = FALSE;
4664 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4666 #endif
4669 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4670 * events. This is a bit complicated, because they might both be defined.
4672 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4673 # ifdef FEAT_XCLIPBOARD
4674 rest = 0;
4675 if (do_xterm_trace())
4676 rest = msec;
4677 # endif
4680 # ifdef FEAT_XCLIPBOARD
4681 if (rest != 0)
4683 msec = XT_TRACE_DELAY;
4684 if (rest >= 0 && rest < XT_TRACE_DELAY)
4685 msec = rest;
4686 if (rest >= 0)
4687 rest -= msec;
4689 # endif
4690 # ifdef FEAT_MOUSE_GPM
4691 gpm_process_wanted = 0;
4692 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4693 # else
4694 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4695 # endif
4696 if (!avail)
4698 if (input_available())
4699 return 1;
4700 # ifdef FEAT_XCLIPBOARD
4701 if (rest == 0 || !do_xterm_trace())
4702 # endif
4703 break;
4706 while (FALSE
4707 # ifdef FEAT_MOUSE_GPM
4708 || (gpm_process_wanted && mch_gpm_process() == 0)
4709 # endif
4710 # ifdef FEAT_XCLIPBOARD
4711 || (!avail && rest != 0)
4712 # endif
4715 #else
4716 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4717 #endif
4718 return avail;
4722 * Wait "msec" msec until a character is available from file descriptor "fd".
4723 * Time == -1 will block forever.
4724 * When a GUI is being used, this will not be used for input -- webb
4725 * Returns also, when a request from Sniff is waiting -- toni.
4726 * Or when a Linux GPM mouse event is waiting.
4728 #if defined(__BEOS__)
4730 #else
4731 static int
4732 #endif
4733 RealWaitForChar(fd, msec, check_for_gpm)
4734 int fd;
4735 long msec;
4736 int *check_for_gpm UNUSED;
4738 int ret;
4739 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4740 static int busy = FALSE;
4742 /* May retry getting characters after an event was handled. */
4743 # define MAY_LOOP
4745 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4746 /* Remember at what time we started, so that we know how much longer we
4747 * should wait after being interrupted. */
4748 # define USE_START_TV
4749 struct timeval start_tv;
4751 if (msec > 0 && (
4752 # ifdef FEAT_XCLIPBOARD
4753 xterm_Shell != (Widget)0
4754 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4756 # endif
4757 # endif
4758 # ifdef USE_XSMP
4759 xsmp_icefd != -1
4760 # ifdef FEAT_MZSCHEME
4762 # endif
4763 # endif
4764 # ifdef FEAT_MZSCHEME
4765 (mzthreads_allowed() && p_mzq > 0)
4766 # endif
4768 gettimeofday(&start_tv, NULL);
4769 # endif
4771 /* Handle being called recursively. This may happen for the session
4772 * manager stuff, it may save the file, which does a breakcheck. */
4773 if (busy)
4774 return 0;
4775 #endif
4777 #ifdef MAY_LOOP
4778 for (;;)
4779 #endif
4781 #ifdef MAY_LOOP
4782 int finished = TRUE; /* default is to 'loop' just once */
4783 # ifdef FEAT_MZSCHEME
4784 int mzquantum_used = FALSE;
4785 # endif
4786 #endif
4787 #ifndef HAVE_SELECT
4788 struct pollfd fds[5];
4789 int nfd;
4790 # ifdef FEAT_XCLIPBOARD
4791 int xterm_idx = -1;
4792 # endif
4793 # ifdef FEAT_MOUSE_GPM
4794 int gpm_idx = -1;
4795 # endif
4796 # ifdef USE_XSMP
4797 int xsmp_idx = -1;
4798 # endif
4799 int towait = (int)msec;
4801 # ifdef FEAT_MZSCHEME
4802 mzvim_check_threads();
4803 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4805 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4806 mzquantum_used = TRUE;
4808 # endif
4809 fds[0].fd = fd;
4810 fds[0].events = POLLIN;
4811 nfd = 1;
4813 # ifdef FEAT_SNIFF
4814 # define SNIFF_IDX 1
4815 if (want_sniff_request)
4817 fds[SNIFF_IDX].fd = fd_from_sniff;
4818 fds[SNIFF_IDX].events = POLLIN;
4819 nfd++;
4821 # endif
4822 # ifdef FEAT_XCLIPBOARD
4823 if (xterm_Shell != (Widget)0)
4825 xterm_idx = nfd;
4826 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4827 fds[nfd].events = POLLIN;
4828 nfd++;
4830 # endif
4831 # ifdef FEAT_MOUSE_GPM
4832 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4834 gpm_idx = nfd;
4835 fds[nfd].fd = gpm_fd;
4836 fds[nfd].events = POLLIN;
4837 nfd++;
4839 # endif
4840 # ifdef USE_XSMP
4841 if (xsmp_icefd != -1)
4843 xsmp_idx = nfd;
4844 fds[nfd].fd = xsmp_icefd;
4845 fds[nfd].events = POLLIN;
4846 nfd++;
4848 # endif
4850 ret = poll(fds, nfd, towait);
4851 # ifdef FEAT_MZSCHEME
4852 if (ret == 0 && mzquantum_used)
4853 /* MzThreads scheduling is required and timeout occurred */
4854 finished = FALSE;
4855 # endif
4857 # ifdef FEAT_SNIFF
4858 if (ret < 0)
4859 sniff_disconnect(1);
4860 else if (want_sniff_request)
4862 if (fds[SNIFF_IDX].revents & POLLHUP)
4863 sniff_disconnect(1);
4864 if (fds[SNIFF_IDX].revents & POLLIN)
4865 sniff_request_waiting = 1;
4867 # endif
4868 # ifdef FEAT_XCLIPBOARD
4869 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4871 xterm_update(); /* Maybe we should hand out clipboard */
4872 if (--ret == 0 && !input_available())
4873 /* Try again */
4874 finished = FALSE;
4876 # endif
4877 # ifdef FEAT_MOUSE_GPM
4878 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4880 *check_for_gpm = 1;
4882 # endif
4883 # ifdef USE_XSMP
4884 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4886 if (fds[xsmp_idx].revents & POLLIN)
4888 busy = TRUE;
4889 xsmp_handle_requests();
4890 busy = FALSE;
4892 else if (fds[xsmp_idx].revents & POLLHUP)
4894 if (p_verbose > 0)
4895 verb_msg((char_u *)_("XSMP lost ICE connection"));
4896 xsmp_close();
4898 if (--ret == 0)
4899 finished = FALSE; /* Try again */
4901 # endif
4904 #else /* HAVE_SELECT */
4906 struct timeval tv;
4907 struct timeval *tvp;
4908 fd_set rfds, efds;
4909 int maxfd;
4910 long towait = msec;
4912 # ifdef FEAT_MZSCHEME
4913 mzvim_check_threads();
4914 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4916 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4917 mzquantum_used = TRUE;
4919 # endif
4920 # ifdef __EMX__
4921 /* don't check for incoming chars if not in raw mode, because select()
4922 * always returns TRUE then (in some version of emx.dll) */
4923 if (curr_tmode != TMODE_RAW)
4924 return 0;
4925 # endif
4927 if (towait >= 0)
4929 tv.tv_sec = towait / 1000;
4930 tv.tv_usec = (towait % 1000) * (1000000/1000);
4931 tvp = &tv;
4933 else
4934 tvp = NULL;
4937 * Select on ready for reading and exceptional condition (end of file).
4939 FD_ZERO(&rfds); /* calls bzero() on a sun */
4940 FD_ZERO(&efds);
4941 FD_SET(fd, &rfds);
4942 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4943 /* For QNX select() always returns 1 if this is set. Why? */
4944 FD_SET(fd, &efds);
4945 # endif
4946 maxfd = fd;
4948 # ifdef FEAT_SNIFF
4949 if (want_sniff_request)
4951 FD_SET(fd_from_sniff, &rfds);
4952 FD_SET(fd_from_sniff, &efds);
4953 if (maxfd < fd_from_sniff)
4954 maxfd = fd_from_sniff;
4956 # endif
4957 # ifdef FEAT_XCLIPBOARD
4958 if (xterm_Shell != (Widget)0)
4960 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4961 if (maxfd < ConnectionNumber(xterm_dpy))
4962 maxfd = ConnectionNumber(xterm_dpy);
4964 # endif
4965 # ifdef FEAT_MOUSE_GPM
4966 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4968 FD_SET(gpm_fd, &rfds);
4969 FD_SET(gpm_fd, &efds);
4970 if (maxfd < gpm_fd)
4971 maxfd = gpm_fd;
4973 # endif
4974 # ifdef USE_XSMP
4975 if (xsmp_icefd != -1)
4977 FD_SET(xsmp_icefd, &rfds);
4978 FD_SET(xsmp_icefd, &efds);
4979 if (maxfd < xsmp_icefd)
4980 maxfd = xsmp_icefd;
4982 # endif
4984 # ifdef OLD_VMS
4985 /* Old VMS as v6.2 and older have broken select(). It waits more than
4986 * required. Should not be used */
4987 ret = 0;
4988 # else
4989 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4990 # endif
4991 # ifdef __TANDEM
4992 if (ret == -1 && errno == ENOTSUP)
4994 FD_ZERO(&rfds);
4995 FD_ZERO(&efds);
4996 ret = 0;
4998 #endif
4999 # ifdef FEAT_MZSCHEME
5000 if (ret == 0 && mzquantum_used)
5001 /* loop if MzThreads must be scheduled and timeout occurred */
5002 finished = FALSE;
5003 # endif
5005 # ifdef FEAT_SNIFF
5006 if (ret < 0 )
5007 sniff_disconnect(1);
5008 else if (ret > 0 && want_sniff_request)
5010 if (FD_ISSET(fd_from_sniff, &efds))
5011 sniff_disconnect(1);
5012 if (FD_ISSET(fd_from_sniff, &rfds))
5013 sniff_request_waiting = 1;
5015 # endif
5016 # ifdef FEAT_XCLIPBOARD
5017 if (ret > 0 && xterm_Shell != (Widget)0
5018 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5020 xterm_update(); /* Maybe we should hand out clipboard */
5021 /* continue looping when we only got the X event and the input
5022 * buffer is empty */
5023 if (--ret == 0 && !input_available())
5025 /* Try again */
5026 finished = FALSE;
5029 # endif
5030 # ifdef FEAT_MOUSE_GPM
5031 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5033 if (FD_ISSET(gpm_fd, &efds))
5034 gpm_close();
5035 else if (FD_ISSET(gpm_fd, &rfds))
5036 *check_for_gpm = 1;
5038 # endif
5039 # ifdef USE_XSMP
5040 if (ret > 0 && xsmp_icefd != -1)
5042 if (FD_ISSET(xsmp_icefd, &efds))
5044 if (p_verbose > 0)
5045 verb_msg((char_u *)_("XSMP lost ICE connection"));
5046 xsmp_close();
5047 if (--ret == 0)
5048 finished = FALSE; /* keep going if event was only one */
5050 else if (FD_ISSET(xsmp_icefd, &rfds))
5052 busy = TRUE;
5053 xsmp_handle_requests();
5054 busy = FALSE;
5055 if (--ret == 0)
5056 finished = FALSE; /* keep going if event was only one */
5059 # endif
5061 #endif /* HAVE_SELECT */
5063 #ifdef MAY_LOOP
5064 if (finished || msec == 0)
5065 break;
5067 /* We're going to loop around again, find out for how long */
5068 if (msec > 0)
5070 # ifdef USE_START_TV
5071 struct timeval mtv;
5073 /* Compute remaining wait time. */
5074 gettimeofday(&mtv, NULL);
5075 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5076 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5077 # else
5078 /* Guess we got interrupted halfway. */
5079 msec = msec / 2;
5080 # endif
5081 if (msec <= 0)
5082 break; /* waited long enough */
5084 #endif
5087 return (ret > 0);
5090 #ifndef VMS
5092 #ifndef NO_EXPANDPATH
5094 * Expand a path into all matching files and/or directories. Handles "*",
5095 * "?", "[a-z]", "**", etc.
5096 * "path" has backslashes before chars that are not to be expanded.
5097 * Returns the number of matches found.
5100 mch_expandpath(gap, path, flags)
5101 garray_T *gap;
5102 char_u *path;
5103 int flags; /* EW_* flags */
5105 return unix_expandpath(gap, path, 0, flags, FALSE);
5107 #endif
5110 * mch_expand_wildcards() - this code does wild-card pattern matching using
5111 * the shell
5113 * return OK for success, FAIL for error (you may lose some memory) and put
5114 * an error message in *file.
5116 * num_pat is number of input patterns
5117 * pat is array of pointers to input patterns
5118 * num_file is pointer to number of matched file names
5119 * file is pointer to array of pointers to matched file names
5122 #ifndef SEEK_SET
5123 # define SEEK_SET 0
5124 #endif
5125 #ifndef SEEK_END
5126 # define SEEK_END 2
5127 #endif
5129 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5132 mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5133 int num_pat;
5134 char_u **pat;
5135 int *num_file;
5136 char_u ***file;
5137 int flags; /* EW_* flags */
5139 int i;
5140 size_t len;
5141 char_u *p;
5142 int dir;
5143 #ifdef __EMX__
5145 * This is the OS/2 implementation.
5147 # define EXPL_ALLOC_INC 16
5148 char_u **expl_files;
5149 size_t files_alloced, files_free;
5150 char_u *buf;
5151 int has_wildcard;
5153 *num_file = 0; /* default: no files found */
5154 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5155 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5156 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5157 if (*file == NULL)
5158 return FAIL;
5160 for (; num_pat > 0; num_pat--, pat++)
5162 expl_files = NULL;
5163 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5164 /* expand environment var or home dir */
5165 buf = expand_env_save(*pat);
5166 else
5167 buf = vim_strsave(*pat);
5168 expl_files = NULL;
5169 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
5170 if (has_wildcard) /* yes, so expand them */
5171 expl_files = (char_u **)_fnexplode(buf);
5174 * return value of buf if no wildcards left,
5175 * OR if no match AND EW_NOTFOUND is set.
5177 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5178 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5179 { /* simply save the current contents of *buf */
5180 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5181 if (expl_files != NULL)
5183 expl_files[0] = vim_strsave(buf);
5184 expl_files[1] = NULL;
5187 vim_free(buf);
5190 * Count number of names resulting from expansion,
5191 * At the same time add a backslash to the end of names that happen to
5192 * be directories, and replace slashes with backslashes.
5194 if (expl_files)
5196 for (i = 0; (p = expl_files[i]) != NULL; i++)
5198 dir = mch_isdir(p);
5199 /* If we don't want dirs and this is one, skip it */
5200 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5201 continue;
5203 /* Skip files that are not executable if we check for that. */
5204 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5205 continue;
5207 if (--files_free == 0)
5209 /* need more room in table of pointers */
5210 files_alloced += EXPL_ALLOC_INC;
5211 *file = (char_u **)vim_realloc(*file,
5212 sizeof(char_u **) * files_alloced);
5213 if (*file == NULL)
5215 EMSG(_(e_outofmem));
5216 *num_file = 0;
5217 return FAIL;
5219 files_free = EXPL_ALLOC_INC;
5221 slash_adjust(p);
5222 if (dir)
5224 /* For a directory we add a '/', unless it's already
5225 * there. */
5226 len = STRLEN(p);
5227 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5229 STRCPY((*file)[*num_file], p);
5230 if (!after_pathsep((*file)[*num_file],
5231 (*file)[*num_file] + len))
5233 (*file)[*num_file][len] = psepc;
5234 (*file)[*num_file][len + 1] = NUL;
5238 else
5240 (*file)[*num_file] = vim_strsave(p);
5244 * Error message already given by either alloc or vim_strsave.
5245 * Should return FAIL, but returning OK works also.
5247 if ((*file)[*num_file] == NULL)
5248 break;
5249 (*num_file)++;
5251 _fnexplodefree((char **)expl_files);
5254 return OK;
5256 #else /* __EMX__ */
5258 * This is the non-OS/2 implementation (really Unix).
5260 int j;
5261 char_u *tempname;
5262 char_u *command;
5263 FILE *fd;
5264 char_u *buffer;
5265 #define STYLE_ECHO 0 /* use "echo", the default */
5266 #define STYLE_GLOB 1 /* use "glob", for csh */
5267 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5268 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5269 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5270 * directly */
5271 int shell_style = STYLE_ECHO;
5272 int check_spaces;
5273 static int did_find_nul = FALSE;
5274 int ampersent = FALSE;
5275 /* vimglob() function to define for Posix shell */
5276 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
5278 *num_file = 0; /* default: no files found */
5279 *file = NULL;
5282 * If there are no wildcards, just copy the names to allocated memory.
5283 * Saves a lot of time, because we don't have to start a new shell.
5285 if (!have_wildcard(num_pat, pat))
5286 return save_patterns(num_pat, pat, num_file, file);
5288 # ifdef HAVE_SANDBOX
5289 /* Don't allow any shell command in the sandbox. */
5290 if (sandbox != 0 && check_secure())
5291 return FAIL;
5292 # endif
5295 * Don't allow the use of backticks in secure and restricted mode.
5297 if (secure || restricted)
5298 for (i = 0; i < num_pat; ++i)
5299 if (vim_strchr(pat[i], '`') != NULL
5300 && (check_restricted() || check_secure()))
5301 return FAIL;
5304 * get a name for the temp file
5306 if ((tempname = vim_tempname('o')) == NULL)
5308 EMSG(_(e_notmp));
5309 return FAIL;
5313 * Let the shell expand the patterns and write the result into the temp
5314 * file.
5315 * STYLE_BT: NL separated
5316 * If expanding `cmd` execute it directly.
5317 * STYLE_GLOB: NUL separated
5318 * If we use *csh, "glob" will work better than "echo".
5319 * STYLE_PRINT: NL or NUL separated
5320 * If we use *zsh, "print -N" will work better than "glob".
5321 * STYLE_VIMGLOB: NL separated
5322 * If we use *sh*, we define "vimglob()".
5323 * STYLE_ECHO: space separated.
5324 * A shell we don't know, stay safe and use "echo".
5326 if (num_pat == 1 && *pat[0] == '`'
5327 && (len = STRLEN(pat[0])) > 2
5328 && *(pat[0] + len - 1) == '`')
5329 shell_style = STYLE_BT;
5330 else if ((len = STRLEN(p_sh)) >= 3)
5332 if (STRCMP(p_sh + len - 3, "csh") == 0)
5333 shell_style = STYLE_GLOB;
5334 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5335 shell_style = STYLE_PRINT;
5337 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5338 "sh") != NULL)
5339 shell_style = STYLE_VIMGLOB;
5341 /* Compute the length of the command. We need 2 extra bytes: for the
5342 * optional '&' and for the NUL.
5343 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5344 len = STRLEN(tempname) + 29;
5345 if (shell_style == STYLE_VIMGLOB)
5346 len += STRLEN(sh_vimglob_func);
5348 for (i = 0; i < num_pat; ++i)
5350 /* Count the length of the patterns in the same way as they are put in
5351 * "command" below. */
5352 #ifdef USE_SYSTEM
5353 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
5354 #else
5355 ++len; /* add space */
5356 for (j = 0; pat[i][j] != NUL; ++j)
5358 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5359 ++len; /* may add a backslash */
5360 ++len;
5362 #endif
5364 command = alloc(len);
5365 if (command == NULL)
5367 /* out of memory */
5368 vim_free(tempname);
5369 return FAIL;
5373 * Build the shell command:
5374 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5375 * recognizes this).
5376 * - Add the shell command to print the expanded names.
5377 * - Add the temp file name.
5378 * - Add the file name patterns.
5380 if (shell_style == STYLE_BT)
5382 /* change `command; command& ` to (command; command ) */
5383 STRCPY(command, "(");
5384 STRCAT(command, pat[0] + 1); /* exclude first backtick */
5385 p = command + STRLEN(command) - 1;
5386 *p-- = ')'; /* remove last backtick */
5387 while (p > command && vim_iswhite(*p))
5388 --p;
5389 if (*p == '&') /* remove trailing '&' */
5391 ampersent = TRUE;
5392 *p = ' ';
5394 STRCAT(command, ">");
5396 else
5398 if (flags & EW_NOTFOUND)
5399 STRCPY(command, "set nonomatch; ");
5400 else
5401 STRCPY(command, "unset nonomatch; ");
5402 if (shell_style == STYLE_GLOB)
5403 STRCAT(command, "glob >");
5404 else if (shell_style == STYLE_PRINT)
5405 STRCAT(command, "print -N >");
5406 else if (shell_style == STYLE_VIMGLOB)
5407 STRCAT(command, sh_vimglob_func);
5408 else
5409 STRCAT(command, "echo >");
5412 STRCAT(command, tempname);
5414 if (shell_style != STYLE_BT)
5415 for (i = 0; i < num_pat; ++i)
5417 /* When using system() always add extra quotes, because the shell
5418 * is started twice. Otherwise put a backslash before special
5419 * characters, except inside ``. */
5420 #ifdef USE_SYSTEM
5421 STRCAT(command, " \"");
5422 STRCAT(command, pat[i]);
5423 STRCAT(command, "\"");
5424 #else
5425 int intick = FALSE;
5427 p = command + STRLEN(command);
5428 *p++ = ' ';
5429 for (j = 0; pat[i][j] != NUL; ++j)
5431 if (pat[i][j] == '`')
5432 intick = !intick;
5433 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5435 /* Remove a backslash, take char literally. But keep
5436 * backslash inside backticks, before a special character
5437 * and before a backtick. */
5438 if (intick
5439 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5440 || pat[i][j + 1] == '`')
5441 *p++ = '\\';
5442 ++j;
5444 else if (!intick && vim_strchr(SHELL_SPECIAL,
5445 pat[i][j]) != NULL)
5446 /* Put a backslash before a special character, but not
5447 * when inside ``. */
5448 *p++ = '\\';
5450 /* Copy one character. */
5451 *p++ = pat[i][j];
5453 *p = NUL;
5454 #endif
5456 if (flags & EW_SILENT)
5457 show_shell_mess = FALSE;
5458 if (ampersent)
5459 STRCAT(command, "&"); /* put the '&' after the redirection */
5462 * Using zsh -G: If a pattern has no matches, it is just deleted from
5463 * the argument list, otherwise zsh gives an error message and doesn't
5464 * expand any other pattern.
5466 if (shell_style == STYLE_PRINT)
5467 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5470 * If we use -f then shell variables set in .cshrc won't get expanded.
5471 * vi can do it, so we will too, but it is only necessary if there is a "$"
5472 * in one of the patterns, otherwise we can still use the fast option.
5474 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5475 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5478 * execute the shell command
5480 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5482 /* When running in the background, give it some time to create the temp
5483 * file, but don't wait for it to finish. */
5484 if (ampersent)
5485 mch_delay(10L, TRUE);
5487 extra_shell_arg = NULL; /* cleanup */
5488 show_shell_mess = TRUE;
5489 vim_free(command);
5491 if (i != 0) /* mch_call_shell() failed */
5493 mch_remove(tempname);
5494 vim_free(tempname);
5496 * With interactive completion, the error message is not printed.
5497 * However with USE_SYSTEM, I don't know how to turn off error messages
5498 * from the shell, so screen may still get messed up -- webb.
5500 #ifndef USE_SYSTEM
5501 if (!(flags & EW_SILENT))
5502 #endif
5504 redraw_later_clear(); /* probably messed up screen */
5505 msg_putchar('\n'); /* clear bottom line quickly */
5506 cmdline_row = Rows - 1; /* continue on last line */
5507 #ifdef USE_SYSTEM
5508 if (!(flags & EW_SILENT))
5509 #endif
5511 MSG(_(e_wildexpand));
5512 msg_start(); /* don't overwrite this message */
5515 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5516 * EW_NOTFOUND is given */
5517 if (shell_style == STYLE_BT)
5518 return FAIL;
5519 goto notfound;
5523 * read the names from the file into memory
5525 fd = fopen((char *)tempname, READBIN);
5526 if (fd == NULL)
5528 /* Something went wrong, perhaps a file name with a special char. */
5529 if (!(flags & EW_SILENT))
5531 MSG(_(e_wildexpand));
5532 msg_start(); /* don't overwrite this message */
5534 vim_free(tempname);
5535 goto notfound;
5537 fseek(fd, 0L, SEEK_END);
5538 len = ftell(fd); /* get size of temp file */
5539 fseek(fd, 0L, SEEK_SET);
5540 buffer = alloc(len + 1);
5541 if (buffer == NULL)
5543 /* out of memory */
5544 mch_remove(tempname);
5545 vim_free(tempname);
5546 fclose(fd);
5547 return FAIL;
5549 i = fread((char *)buffer, 1, len, fd);
5550 fclose(fd);
5551 mch_remove(tempname);
5552 if (i != (int)len)
5554 /* unexpected read error */
5555 EMSG2(_(e_notread), tempname);
5556 vim_free(tempname);
5557 vim_free(buffer);
5558 return FAIL;
5560 vim_free(tempname);
5562 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5563 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5564 p = buffer;
5565 for (i = 0; i < len; ++i)
5566 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5567 *p++ = buffer[i];
5568 len = p - buffer;
5569 # endif
5572 /* file names are separated with Space */
5573 if (shell_style == STYLE_ECHO)
5575 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5576 p = buffer;
5577 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5579 while (*p != ' ' && *p != '\n')
5580 ++p;
5581 p = skipwhite(p); /* skip to next entry */
5584 /* file names are separated with NL */
5585 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
5587 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5588 p = buffer;
5589 for (i = 0; *p != NUL; ++i) /* count number of entries */
5591 while (*p != '\n' && *p != NUL)
5592 ++p;
5593 if (*p != NUL)
5594 ++p;
5595 p = skipwhite(p); /* skip leading white space */
5598 /* file names are separated with NUL */
5599 else
5602 * Some versions of zsh use spaces instead of NULs to separate
5603 * results. Only do this when there is no NUL before the end of the
5604 * buffer, otherwise we would never be able to use file names with
5605 * embedded spaces when zsh does use NULs.
5606 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5607 * don't check for spaces again.
5609 check_spaces = FALSE;
5610 if (shell_style == STYLE_PRINT && !did_find_nul)
5612 /* If there is a NUL, set did_find_nul, else set check_spaces */
5613 if (len && (int)STRLEN(buffer) < (int)len - 1)
5614 did_find_nul = TRUE;
5615 else
5616 check_spaces = TRUE;
5620 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5621 * already is one, for STYLE_GLOB it needs to be added.
5623 if (len && buffer[len - 1] == NUL)
5624 --len;
5625 else
5626 buffer[len] = NUL;
5627 i = 0;
5628 for (p = buffer; p < buffer + len; ++p)
5629 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5631 ++i;
5632 *p = NUL;
5634 if (len)
5635 ++i; /* count last entry */
5637 if (i == 0)
5640 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5641 * /bin/sh will happily expand it to nothing rather than returning an
5642 * error; and hey, it's good to check anyway -- webb.
5644 vim_free(buffer);
5645 goto notfound;
5647 *num_file = i;
5648 *file = (char_u **)alloc(sizeof(char_u *) * i);
5649 if (*file == NULL)
5651 /* out of memory */
5652 vim_free(buffer);
5653 return FAIL;
5657 * Isolate the individual file names.
5659 p = buffer;
5660 for (i = 0; i < *num_file; ++i)
5662 (*file)[i] = p;
5663 /* Space or NL separates */
5664 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5665 || shell_style == STYLE_VIMGLOB)
5667 while (!(shell_style == STYLE_ECHO && *p == ' ')
5668 && *p != '\n' && *p != NUL)
5669 ++p;
5670 if (p == buffer + len) /* last entry */
5671 *p = NUL;
5672 else
5674 *p++ = NUL;
5675 p = skipwhite(p); /* skip to next entry */
5678 else /* NUL separates */
5680 while (*p && p < buffer + len) /* skip entry */
5681 ++p;
5682 ++p; /* skip NUL */
5687 * Move the file names to allocated memory.
5689 for (j = 0, i = 0; i < *num_file; ++i)
5691 /* Require the files to exist. Helps when using /bin/sh */
5692 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5693 continue;
5695 /* check if this entry should be included */
5696 dir = (mch_isdir((*file)[i]));
5697 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5698 continue;
5700 /* Skip files that are not executable if we check for that. */
5701 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5702 continue;
5704 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5705 if (p)
5707 STRCPY(p, (*file)[i]);
5708 if (dir)
5709 add_pathsep(p); /* add '/' to a directory name */
5710 (*file)[j++] = p;
5713 vim_free(buffer);
5714 *num_file = j;
5716 if (*num_file == 0) /* rejected all entries */
5718 vim_free(*file);
5719 *file = NULL;
5720 goto notfound;
5723 return OK;
5725 notfound:
5726 if (flags & EW_NOTFOUND)
5727 return save_patterns(num_pat, pat, num_file, file);
5728 return FAIL;
5730 #endif /* __EMX__ */
5733 #endif /* VMS */
5735 #ifndef __EMX__
5736 static int
5737 save_patterns(num_pat, pat, num_file, file)
5738 int num_pat;
5739 char_u **pat;
5740 int *num_file;
5741 char_u ***file;
5743 int i;
5744 char_u *s;
5746 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5747 if (*file == NULL)
5748 return FAIL;
5749 for (i = 0; i < num_pat; i++)
5751 s = vim_strsave(pat[i]);
5752 if (s != NULL)
5753 /* Be compatible with expand_filename(): halve the number of
5754 * backslashes. */
5755 backslash_halve(s);
5756 (*file)[i] = s;
5758 *num_file = num_pat;
5759 return OK;
5761 #endif
5765 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5766 * expand.
5769 mch_has_exp_wildcard(p)
5770 char_u *p;
5772 for ( ; *p; mb_ptr_adv(p))
5774 #ifndef OS2
5775 if (*p == '\\' && p[1] != NUL)
5776 ++p;
5777 else
5778 #endif
5779 if (vim_strchr((char_u *)
5780 #ifdef VMS
5781 "*?%"
5782 #else
5783 # ifdef OS2
5784 "*?"
5785 # else
5786 "*?[{'"
5787 # endif
5788 #endif
5789 , *p) != NULL)
5790 return TRUE;
5792 return FALSE;
5796 * Return TRUE if the string "p" contains a wildcard.
5797 * Don't recognize '~' at the end as a wildcard.
5800 mch_has_wildcard(p)
5801 char_u *p;
5803 for ( ; *p; mb_ptr_adv(p))
5805 #ifndef OS2
5806 if (*p == '\\' && p[1] != NUL)
5807 ++p;
5808 else
5809 #endif
5810 if (vim_strchr((char_u *)
5811 #ifdef VMS
5812 "*?%$"
5813 #else
5814 # ifdef OS2
5815 # ifdef VIM_BACKTICK
5816 "*?$`"
5817 # else
5818 "*?$"
5819 # endif
5820 # else
5821 "*?[{`'$"
5822 # endif
5823 #endif
5824 , *p) != NULL
5825 || (*p == '~' && p[1] != NUL))
5826 return TRUE;
5828 return FALSE;
5831 #ifndef __EMX__
5832 static int
5833 have_wildcard(num, file)
5834 int num;
5835 char_u **file;
5837 int i;
5839 for (i = 0; i < num; i++)
5840 if (mch_has_wildcard(file[i]))
5841 return 1;
5842 return 0;
5845 static int
5846 have_dollars(num, file)
5847 int num;
5848 char_u **file;
5850 int i;
5852 for (i = 0; i < num; i++)
5853 if (vim_strchr(file[i], '$') != NULL)
5854 return TRUE;
5855 return FALSE;
5857 #endif /* ifndef __EMX__ */
5859 #ifndef HAVE_RENAME
5861 * Scaled-down version of rename(), which is missing in Xenix.
5862 * This version can only move regular files and will fail if the
5863 * destination exists.
5866 mch_rename(src, dest)
5867 const char *src, *dest;
5869 struct stat st;
5871 if (stat(dest, &st) >= 0) /* fail if destination exists */
5872 return -1;
5873 if (link(src, dest) != 0) /* link file to new name */
5874 return -1;
5875 if (mch_remove(src) == 0) /* delete link to old name */
5876 return 0;
5877 return -1;
5879 #endif /* !HAVE_RENAME */
5881 #ifdef FEAT_MOUSE_GPM
5883 * Initializes connection with gpm (if it isn't already opened)
5884 * Return 1 if succeeded (or connection already opened), 0 if failed
5886 static int
5887 gpm_open()
5889 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5891 if (!gpm_flag)
5893 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5894 gpm_connect.defaultMask = ~GPM_HARD;
5895 /* Default handling for mouse move*/
5896 gpm_connect.minMod = 0; /* Handle any modifier keys */
5897 gpm_connect.maxMod = 0xffff;
5898 if (Gpm_Open(&gpm_connect, 0) > 0)
5900 /* gpm library tries to handling TSTP causes
5901 * problems. Anyways, we close connection to Gpm whenever
5902 * we are going to suspend or starting an external process
5903 * so we shouldn't have problem with this
5905 # ifdef SIGTSTP
5906 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5907 # endif
5908 return 1; /* succeed */
5910 if (gpm_fd == -2)
5911 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5912 return 0;
5914 return 1; /* already open */
5918 * Closes connection to gpm
5920 static void
5921 gpm_close()
5923 if (gpm_flag && gpm_fd >= 0) /* if Open */
5924 Gpm_Close();
5927 /* Reads gpm event and adds special keys to input buf. Returns length of
5928 * generated key sequence.
5929 * This function is made after gui_send_mouse_event
5931 static int
5932 mch_gpm_process()
5934 int button;
5935 static Gpm_Event gpm_event;
5936 char_u string[6];
5937 int_u vim_modifiers;
5938 int row,col;
5939 unsigned char buttons_mask;
5940 unsigned char gpm_modifiers;
5941 static unsigned char old_buttons = 0;
5943 Gpm_GetEvent(&gpm_event);
5945 #ifdef FEAT_GUI
5946 /* Don't put events in the input queue now. */
5947 if (hold_gui_events)
5948 return 0;
5949 #endif
5951 row = gpm_event.y - 1;
5952 col = gpm_event.x - 1;
5954 string[0] = ESC; /* Our termcode */
5955 string[1] = 'M';
5956 string[2] = 'G';
5957 switch (GPM_BARE_EVENTS(gpm_event.type))
5959 case GPM_DRAG:
5960 string[3] = MOUSE_DRAG;
5961 break;
5962 case GPM_DOWN:
5963 buttons_mask = gpm_event.buttons & ~old_buttons;
5964 old_buttons = gpm_event.buttons;
5965 switch (buttons_mask)
5967 case GPM_B_LEFT:
5968 button = MOUSE_LEFT;
5969 break;
5970 case GPM_B_MIDDLE:
5971 button = MOUSE_MIDDLE;
5972 break;
5973 case GPM_B_RIGHT:
5974 button = MOUSE_RIGHT;
5975 break;
5976 default:
5977 return 0;
5978 /*Don't know what to do. Can more than one button be
5979 * reported in one event? */
5981 string[3] = (char_u)(button | 0x20);
5982 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5983 break;
5984 case GPM_UP:
5985 string[3] = MOUSE_RELEASE;
5986 old_buttons &= ~gpm_event.buttons;
5987 break;
5988 default:
5989 return 0;
5991 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5992 gpm_modifiers = gpm_event.modifiers;
5993 vim_modifiers = 0x0;
5994 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5995 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5996 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5998 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
5999 vim_modifiers |= MOUSE_SHIFT;
6001 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6002 vim_modifiers |= MOUSE_CTRL;
6003 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6004 vim_modifiers |= MOUSE_ALT;
6005 string[3] |= vim_modifiers;
6006 string[4] = (char_u)(col + ' ' + 1);
6007 string[5] = (char_u)(row + ' ' + 1);
6008 add_to_input_buf(string, 6);
6009 return 6;
6011 #endif /* FEAT_MOUSE_GPM */
6013 #ifdef FEAT_SYSMOUSE
6015 * Initialize connection with sysmouse.
6016 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6017 * output, any sysmouse output than will be processed via sig_sysmouse().
6018 * Return OK if succeeded, FAIL if failed.
6020 static int
6021 sysmouse_open()
6023 struct mouse_info mouse;
6025 mouse.operation = MOUSE_MODE;
6026 mouse.u.mode.mode = 0;
6027 mouse.u.mode.signal = SIGUSR2;
6028 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6030 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6031 mouse.operation = MOUSE_SHOW;
6032 ioctl(1, CONS_MOUSECTL, &mouse);
6033 return OK;
6035 return FAIL;
6039 * Stop processing SIGUSR2 signals, and also make sure that
6040 * virtual console do not send us any sysmouse related signal.
6042 static void
6043 sysmouse_close()
6045 struct mouse_info mouse;
6047 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6048 mouse.operation = MOUSE_MODE;
6049 mouse.u.mode.mode = 0;
6050 mouse.u.mode.signal = 0;
6051 ioctl(1, CONS_MOUSECTL, &mouse);
6055 * Gets info from sysmouse and adds special keys to input buf.
6057 static RETSIGTYPE
6058 sig_sysmouse SIGDEFARG(sigarg)
6060 struct mouse_info mouse;
6061 struct video_info video;
6062 char_u string[6];
6063 int row, col;
6064 int button;
6065 int buttons;
6066 static int oldbuttons = 0;
6068 #ifdef FEAT_GUI
6069 /* Don't put events in the input queue now. */
6070 if (hold_gui_events)
6071 return;
6072 #endif
6074 mouse.operation = MOUSE_GETINFO;
6075 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6076 && ioctl(1, FBIO_MODEINFO, &video) != -1
6077 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6078 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6080 row = mouse.u.data.y / video.vi_cheight;
6081 col = mouse.u.data.x / video.vi_cwidth;
6082 buttons = mouse.u.data.buttons;
6083 string[0] = ESC; /* Our termcode */
6084 string[1] = 'M';
6085 string[2] = 'S';
6086 if (oldbuttons == buttons && buttons != 0)
6088 button = MOUSE_DRAG;
6090 else
6092 switch (buttons)
6094 case 0:
6095 button = MOUSE_RELEASE;
6096 break;
6097 case 1:
6098 button = MOUSE_LEFT;
6099 break;
6100 case 2:
6101 button = MOUSE_MIDDLE;
6102 break;
6103 case 4:
6104 button = MOUSE_RIGHT;
6105 break;
6106 default:
6107 return;
6109 oldbuttons = buttons;
6111 string[3] = (char_u)(button);
6112 string[4] = (char_u)(col + ' ' + 1);
6113 string[5] = (char_u)(row + ' ' + 1);
6114 add_to_input_buf(string, 6);
6116 return;
6118 #endif /* FEAT_SYSMOUSE */
6120 #if defined(FEAT_LIBCALL) || defined(PROTO)
6121 typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6122 typedef char_u * (*INTPROCSTR)__ARGS((int));
6123 typedef int (*STRPROCINT)__ARGS((char_u *));
6124 typedef int (*INTPROCINT)__ARGS((int));
6127 * Call a DLL routine which takes either a string or int param
6128 * and returns an allocated string.
6131 mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6132 char_u *libname;
6133 char_u *funcname;
6134 char_u *argstring; /* NULL when using a argint */
6135 int argint;
6136 char_u **string_result;/* NULL when using number_result */
6137 int *number_result;
6139 # if defined(USE_DLOPEN)
6140 void *hinstLib;
6141 char *dlerr = NULL;
6142 # else
6143 shl_t hinstLib;
6144 # endif
6145 STRPROCSTR ProcAdd;
6146 INTPROCSTR ProcAddI;
6147 char_u *retval_str = NULL;
6148 int retval_int = 0;
6149 int success = FALSE;
6152 * Get a handle to the DLL module.
6154 # if defined(USE_DLOPEN)
6155 /* First clear any error, it's not cleared by the dlopen() call. */
6156 (void)dlerror();
6158 hinstLib = dlopen((char *)libname, RTLD_LAZY
6159 # ifdef RTLD_LOCAL
6160 | RTLD_LOCAL
6161 # endif
6163 if (hinstLib == NULL)
6165 /* "dlerr" must be used before dlclose() */
6166 dlerr = (char *)dlerror();
6167 if (dlerr != NULL)
6168 EMSG2(_("dlerror = \"%s\""), dlerr);
6170 # else
6171 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6172 # endif
6174 /* If the handle is valid, try to get the function address. */
6175 if (hinstLib != NULL)
6177 # ifdef HAVE_SETJMP_H
6179 * Catch a crash when calling the library function. For example when
6180 * using a number where a string pointer is expected.
6182 mch_startjmp();
6183 if (SETJMP(lc_jump_env) != 0)
6185 success = FALSE;
6186 # if defined(USE_DLOPEN)
6187 dlerr = NULL;
6188 # endif
6189 mch_didjmp();
6191 else
6192 # endif
6194 retval_str = NULL;
6195 retval_int = 0;
6197 if (argstring != NULL)
6199 # if defined(USE_DLOPEN)
6200 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
6201 dlerr = (char *)dlerror();
6202 # else
6203 if (shl_findsym(&hinstLib, (const char *)funcname,
6204 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6205 ProcAdd = NULL;
6206 # endif
6207 if ((success = (ProcAdd != NULL
6208 # if defined(USE_DLOPEN)
6209 && dlerr == NULL
6210 # endif
6213 if (string_result == NULL)
6214 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6215 else
6216 retval_str = (ProcAdd)(argstring);
6219 else
6221 # if defined(USE_DLOPEN)
6222 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
6223 dlerr = (char *)dlerror();
6224 # else
6225 if (shl_findsym(&hinstLib, (const char *)funcname,
6226 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6227 ProcAddI = NULL;
6228 # endif
6229 if ((success = (ProcAddI != NULL
6230 # if defined(USE_DLOPEN)
6231 && dlerr == NULL
6232 # endif
6235 if (string_result == NULL)
6236 retval_int = ((INTPROCINT)ProcAddI)(argint);
6237 else
6238 retval_str = (ProcAddI)(argint);
6242 /* Save the string before we free the library. */
6243 /* Assume that a "1" or "-1" result is an illegal pointer. */
6244 if (string_result == NULL)
6245 *number_result = retval_int;
6246 else if (retval_str != NULL
6247 && retval_str != (char_u *)1
6248 && retval_str != (char_u *)-1)
6249 *string_result = vim_strsave(retval_str);
6252 # ifdef HAVE_SETJMP_H
6253 mch_endjmp();
6254 # ifdef SIGHASARG
6255 if (lc_signal != 0)
6257 int i;
6259 /* try to find the name of this signal */
6260 for (i = 0; signal_info[i].sig != -1; i++)
6261 if (lc_signal == signal_info[i].sig)
6262 break;
6263 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6265 # endif
6266 # endif
6268 # if defined(USE_DLOPEN)
6269 /* "dlerr" must be used before dlclose() */
6270 if (dlerr != NULL)
6271 EMSG2(_("dlerror = \"%s\""), dlerr);
6273 /* Free the DLL module. */
6274 (void)dlclose(hinstLib);
6275 # else
6276 (void)shl_unload(hinstLib);
6277 # endif
6280 if (!success)
6282 EMSG2(_(e_libcall), funcname);
6283 return FAIL;
6286 return OK;
6288 #endif
6290 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6291 static int xterm_trace = -1; /* default: disabled */
6292 static int xterm_button;
6295 * Setup a dummy window for X selections in a terminal.
6297 void
6298 setup_term_clip()
6300 int z = 0;
6301 char *strp = "";
6302 Widget AppShell;
6304 if (!x_connect_to_server())
6305 return;
6307 open_app_context();
6308 if (app_context != NULL && xterm_Shell == (Widget)0)
6310 int (*oldhandler)();
6311 #if defined(HAVE_SETJMP_H)
6312 int (*oldIOhandler)();
6313 #endif
6314 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6315 struct timeval start_tv;
6317 if (p_verbose > 0)
6318 gettimeofday(&start_tv, NULL);
6319 # endif
6321 /* Ignore X errors while opening the display */
6322 oldhandler = XSetErrorHandler(x_error_check);
6324 #if defined(HAVE_SETJMP_H)
6325 /* Ignore X IO errors while opening the display */
6326 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6327 mch_startjmp();
6328 if (SETJMP(lc_jump_env) != 0)
6330 mch_didjmp();
6331 xterm_dpy = NULL;
6333 else
6334 #endif
6336 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6337 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6338 #if defined(HAVE_SETJMP_H)
6339 mch_endjmp();
6340 #endif
6343 #if defined(HAVE_SETJMP_H)
6344 /* Now handle X IO errors normally. */
6345 (void)XSetIOErrorHandler(oldIOhandler);
6346 #endif
6347 /* Now handle X errors normally. */
6348 (void)XSetErrorHandler(oldhandler);
6350 if (xterm_dpy == NULL)
6352 if (p_verbose > 0)
6353 verb_msg((char_u *)_("Opening the X display failed"));
6354 return;
6357 /* Catch terminating error of the X server connection. */
6358 (void)XSetIOErrorHandler(x_IOerror_handler);
6360 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6361 if (p_verbose > 0)
6363 verbose_enter();
6364 xopen_message(&start_tv);
6365 verbose_leave();
6367 # endif
6369 /* Create a Shell to make converters work. */
6370 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6371 applicationShellWidgetClass, xterm_dpy,
6372 NULL);
6373 if (AppShell == (Widget)0)
6374 return;
6375 xterm_Shell = XtVaCreatePopupShell("VIM",
6376 topLevelShellWidgetClass, AppShell,
6377 XtNmappedWhenManaged, 0,
6378 XtNwidth, 1,
6379 XtNheight, 1,
6380 NULL);
6381 if (xterm_Shell == (Widget)0)
6382 return;
6384 x11_setup_atoms(xterm_dpy);
6385 if (x11_display == NULL)
6386 x11_display = xterm_dpy;
6388 XtRealizeWidget(xterm_Shell);
6389 XSync(xterm_dpy, False);
6390 xterm_update();
6392 if (xterm_Shell != (Widget)0)
6394 clip_init(TRUE);
6395 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6396 x11_window = (Window)atol(strp);
6397 /* Check if $WINDOWID is valid. */
6398 if (test_x11_window(xterm_dpy) == FAIL)
6399 x11_window = 0;
6400 if (x11_window != 0)
6401 xterm_trace = 0;
6405 void
6406 start_xterm_trace(button)
6407 int button;
6409 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6410 return;
6411 xterm_trace = 1;
6412 xterm_button = button;
6413 do_xterm_trace();
6417 void
6418 stop_xterm_trace()
6420 if (xterm_trace < 0)
6421 return;
6422 xterm_trace = 0;
6426 * Query the xterm pointer and generate mouse termcodes if necessary
6427 * return TRUE if dragging is active, else FALSE
6429 static int
6430 do_xterm_trace()
6432 Window root, child;
6433 int root_x, root_y;
6434 int win_x, win_y;
6435 int row, col;
6436 int_u mask_return;
6437 char_u buf[50];
6438 char_u *strp;
6439 long got_hints;
6440 static char_u *mouse_code;
6441 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6442 static int prev_row = 0, prev_col = 0;
6443 static XSizeHints xterm_hints;
6445 if (xterm_trace <= 0)
6446 return FALSE;
6448 if (xterm_trace == 1)
6450 /* Get the hints just before tracking starts. The font size might
6451 * have changed recently. */
6452 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6453 || !(got_hints & PResizeInc)
6454 || xterm_hints.width_inc <= 1
6455 || xterm_hints.height_inc <= 1)
6457 xterm_trace = -1; /* Not enough data -- disable tracing */
6458 return FALSE;
6461 /* Rely on the same mouse code for the duration of this */
6462 mouse_code = find_termcode(mouse_name);
6463 prev_row = mouse_row;
6464 prev_row = mouse_col;
6465 xterm_trace = 2;
6467 /* Find the offset of the chars, there might be a scrollbar on the
6468 * left of the window and/or a menu on the top (eterm etc.) */
6469 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6470 &win_x, &win_y, &mask_return);
6471 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6472 - (xterm_hints.height_inc / 2);
6473 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6474 xterm_hints.y = 2;
6475 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6476 - (xterm_hints.width_inc / 2);
6477 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6478 xterm_hints.x = 2;
6479 return TRUE;
6481 if (mouse_code == NULL)
6483 xterm_trace = 0;
6484 return FALSE;
6487 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6488 &win_x, &win_y, &mask_return);
6490 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6491 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6492 if (row == prev_row && col == prev_col)
6493 return TRUE;
6495 STRCPY(buf, mouse_code);
6496 strp = buf + STRLEN(buf);
6497 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6498 *strp++ = (char_u)(col + ' ' + 1);
6499 *strp++ = (char_u)(row + ' ' + 1);
6500 *strp = 0;
6501 add_to_input_buf(buf, STRLEN(buf));
6503 prev_row = row;
6504 prev_col = col;
6505 return TRUE;
6508 # if defined(FEAT_GUI) || defined(PROTO)
6510 * Destroy the display, window and app_context. Required for GTK.
6512 void
6513 clear_xterm_clip()
6515 if (xterm_Shell != (Widget)0)
6517 XtDestroyWidget(xterm_Shell);
6518 xterm_Shell = (Widget)0;
6520 if (xterm_dpy != NULL)
6522 # if 0
6523 /* Lesstif and Solaris crash here, lose some memory */
6524 XtCloseDisplay(xterm_dpy);
6525 # endif
6526 if (x11_display == xterm_dpy)
6527 x11_display = NULL;
6528 xterm_dpy = NULL;
6530 # if 0
6531 if (app_context != (XtAppContext)NULL)
6533 /* Lesstif and Solaris crash here, lose some memory */
6534 XtDestroyApplicationContext(app_context);
6535 app_context = (XtAppContext)NULL;
6537 # endif
6539 # endif
6542 * Catch up with any queued X events. This may put keyboard input into the
6543 * input buffer, call resize call-backs, trigger timers etc. If there is
6544 * nothing in the X event queue (& no timers pending), then we return
6545 * immediately.
6547 static void
6548 xterm_update()
6550 XEvent event;
6552 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6554 XtAppNextEvent(app_context, &event);
6555 #ifdef FEAT_CLIENTSERVER
6557 XPropertyEvent *e = (XPropertyEvent *)&event;
6559 if (e->type == PropertyNotify && e->window == commWindow
6560 && e->atom == commProperty && e->state == PropertyNewValue)
6561 serverEventProc(xterm_dpy, &event);
6563 #endif
6564 XtDispatchEvent(&event);
6569 clip_xterm_own_selection(cbd)
6570 VimClipboard *cbd;
6572 if (xterm_Shell != (Widget)0)
6573 return clip_x11_own_selection(xterm_Shell, cbd);
6574 return FAIL;
6577 void
6578 clip_xterm_lose_selection(cbd)
6579 VimClipboard *cbd;
6581 if (xterm_Shell != (Widget)0)
6582 clip_x11_lose_selection(xterm_Shell, cbd);
6585 void
6586 clip_xterm_request_selection(cbd)
6587 VimClipboard *cbd;
6589 if (xterm_Shell != (Widget)0)
6590 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6593 void
6594 clip_xterm_set_selection(cbd)
6595 VimClipboard *cbd;
6597 clip_x11_set_selection(cbd);
6599 #endif
6602 #if defined(USE_XSMP) || defined(PROTO)
6604 * Code for X Session Management Protocol.
6606 static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6607 static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6608 static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6609 static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6610 static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6613 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6614 static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6617 * This is our chance to ask the user if they want to save,
6618 * or abort the logout
6620 static void
6621 xsmp_handle_interaction(smc_conn, client_data)
6622 SmcConn smc_conn;
6623 SmPointer client_data UNUSED;
6625 cmdmod_T save_cmdmod;
6626 int cancel_shutdown = False;
6628 save_cmdmod = cmdmod;
6629 cmdmod.confirm = TRUE;
6630 if (check_changed_any(FALSE))
6631 /* Mustn't logout */
6632 cancel_shutdown = True;
6633 cmdmod = save_cmdmod;
6634 setcursor(); /* position cursor */
6635 out_flush();
6637 /* Done interaction */
6638 SmcInteractDone(smc_conn, cancel_shutdown);
6640 /* Finish off
6641 * Only end save-yourself here if we're not cancelling shutdown;
6642 * we'll get a cancelled callback later in which we'll end it.
6643 * Hopefully get around glitchy SMs (like GNOME-1)
6645 if (!cancel_shutdown)
6647 xsmp.save_yourself = False;
6648 SmcSaveYourselfDone(smc_conn, True);
6651 # endif
6654 * Callback that starts save-yourself.
6656 static void
6657 xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6658 shutdown, interact_style, fast)
6659 SmcConn smc_conn;
6660 SmPointer client_data UNUSED;
6661 int save_type UNUSED;
6662 Bool shutdown;
6663 int interact_style UNUSED;
6664 Bool fast UNUSED;
6666 /* Handle already being in saveyourself */
6667 if (xsmp.save_yourself)
6668 SmcSaveYourselfDone(smc_conn, True);
6669 xsmp.save_yourself = True;
6670 xsmp.shutdown = shutdown;
6672 /* First up, preserve all files */
6673 out_flush();
6674 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6676 if (p_verbose > 0)
6677 verb_msg((char_u *)_("XSMP handling save-yourself request"));
6679 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6680 /* Now see if we can ask about unsaved files */
6681 if (shutdown && !fast && gui.in_use)
6682 /* Need to interact with user, but need SM's permission */
6683 SmcInteractRequest(smc_conn, SmDialogError,
6684 xsmp_handle_interaction, client_data);
6685 else
6686 # endif
6688 /* Can stop the cycle here */
6689 SmcSaveYourselfDone(smc_conn, True);
6690 xsmp.save_yourself = False;
6696 * Callback to warn us of imminent death.
6698 static void
6699 xsmp_die(smc_conn, client_data)
6700 SmcConn smc_conn UNUSED;
6701 SmPointer client_data UNUSED;
6703 xsmp_close();
6705 /* quit quickly leaving swapfiles for modified buffers behind */
6706 getout_preserve_modified(0);
6711 * Callback to tell us that save-yourself has completed.
6713 static void
6714 xsmp_save_complete(smc_conn, client_data)
6715 SmcConn smc_conn UNUSED;
6716 SmPointer client_data UNUSED;
6718 xsmp.save_yourself = False;
6723 * Callback to tell us that an instigated shutdown was cancelled
6724 * (maybe even by us)
6726 static void
6727 xsmp_shutdown_cancelled(smc_conn, client_data)
6728 SmcConn smc_conn;
6729 SmPointer client_data UNUSED;
6731 if (xsmp.save_yourself)
6732 SmcSaveYourselfDone(smc_conn, True);
6733 xsmp.save_yourself = False;
6734 xsmp.shutdown = False;
6739 * Callback to tell us that a new ICE connection has been established.
6741 static void
6742 xsmp_ice_connection(iceConn, clientData, opening, watchData)
6743 IceConn iceConn;
6744 IcePointer clientData UNUSED;
6745 Bool opening;
6746 IcePointer *watchData UNUSED;
6748 /* Intercept creation of ICE connection fd */
6749 if (opening)
6751 xsmp_icefd = IceConnectionNumber(iceConn);
6752 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6757 /* Handle any ICE processing that's required; return FAIL if SM lost */
6759 xsmp_handle_requests()
6761 Bool rep;
6763 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6764 == IceProcessMessagesIOError)
6766 /* Lost ICE */
6767 if (p_verbose > 0)
6768 verb_msg((char_u *)_("XSMP lost ICE connection"));
6769 xsmp_close();
6770 return FAIL;
6772 else
6773 return OK;
6776 static int dummy;
6778 /* Set up X Session Management Protocol */
6779 void
6780 xsmp_init(void)
6782 char errorstring[80];
6783 SmcCallbacks smcallbacks;
6784 #if 0
6785 SmPropValue smname;
6786 SmProp smnameprop;
6787 SmProp *smprops[1];
6788 #endif
6790 if (p_verbose > 0)
6791 verb_msg((char_u *)_("XSMP opening connection"));
6793 xsmp.save_yourself = xsmp.shutdown = False;
6795 /* Set up SM callbacks - must have all, even if they're not used */
6796 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6797 smcallbacks.save_yourself.client_data = NULL;
6798 smcallbacks.die.callback = xsmp_die;
6799 smcallbacks.die.client_data = NULL;
6800 smcallbacks.save_complete.callback = xsmp_save_complete;
6801 smcallbacks.save_complete.client_data = NULL;
6802 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6803 smcallbacks.shutdown_cancelled.client_data = NULL;
6805 /* Set up a watch on ICE connection creations. The "dummy" argument is
6806 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6807 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6809 if (p_verbose > 0)
6810 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
6811 return;
6814 /* Create an SM connection */
6815 xsmp.smcconn = SmcOpenConnection(
6816 NULL,
6817 NULL,
6818 SmProtoMajor,
6819 SmProtoMinor,
6820 SmcSaveYourselfProcMask | SmcDieProcMask
6821 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6822 &smcallbacks,
6823 NULL,
6824 &xsmp.clientid,
6825 sizeof(errorstring),
6826 errorstring);
6827 if (xsmp.smcconn == NULL)
6829 char errorreport[132];
6831 if (p_verbose > 0)
6833 vim_snprintf(errorreport, sizeof(errorreport),
6834 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6835 verb_msg((char_u *)errorreport);
6837 return;
6839 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6841 #if 0
6842 /* ID ourselves */
6843 smname.value = "vim";
6844 smname.length = 3;
6845 smnameprop.name = "SmProgram";
6846 smnameprop.type = "SmARRAY8";
6847 smnameprop.num_vals = 1;
6848 smnameprop.vals = &smname;
6850 smprops[0] = &smnameprop;
6851 SmcSetProperties(xsmp.smcconn, 1, smprops);
6852 #endif
6856 /* Shut down XSMP comms. */
6857 void
6858 xsmp_close()
6860 if (xsmp_icefd != -1)
6862 SmcCloseConnection(xsmp.smcconn, 0, NULL);
6863 if (xsmp.clientid != NULL)
6864 free(xsmp.clientid);
6865 xsmp.clientid = NULL;
6866 xsmp_icefd = -1;
6869 #endif /* USE_XSMP */
6872 #ifdef EBCDIC
6873 /* Translate character to its CTRL- value */
6874 char CtrlTable[] =
6876 /* 00 - 5E */
6877 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6878 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6881 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6882 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6883 /* ^ */ 0x1E,
6884 /* - */ 0x1F,
6885 /* 61 - 6C */
6886 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6887 /* _ */ 0x1F,
6888 /* 6E - 80 */
6889 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6890 /* a */ 0x01,
6891 /* b */ 0x02,
6892 /* c */ 0x03,
6893 /* d */ 0x37,
6894 /* e */ 0x2D,
6895 /* f */ 0x2E,
6896 /* g */ 0x2F,
6897 /* h */ 0x16,
6898 /* i */ 0x05,
6899 /* 8A - 90 */
6900 0, 0, 0, 0, 0, 0, 0,
6901 /* j */ 0x15,
6902 /* k */ 0x0B,
6903 /* l */ 0x0C,
6904 /* m */ 0x0D,
6905 /* n */ 0x0E,
6906 /* o */ 0x0F,
6907 /* p */ 0x10,
6908 /* q */ 0x11,
6909 /* r */ 0x12,
6910 /* 9A - A1 */
6911 0, 0, 0, 0, 0, 0, 0, 0,
6912 /* s */ 0x13,
6913 /* t */ 0x3C,
6914 /* u */ 0x3D,
6915 /* v */ 0x32,
6916 /* w */ 0x26,
6917 /* x */ 0x18,
6918 /* y */ 0x19,
6919 /* z */ 0x3F,
6920 /* AA - AC */
6921 0, 0, 0,
6922 /* [ */ 0x27,
6923 /* AE - BC */
6924 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6925 /* ] */ 0x1D,
6926 /* BE - C0 */ 0, 0, 0,
6927 /* A */ 0x01,
6928 /* B */ 0x02,
6929 /* C */ 0x03,
6930 /* D */ 0x37,
6931 /* E */ 0x2D,
6932 /* F */ 0x2E,
6933 /* G */ 0x2F,
6934 /* H */ 0x16,
6935 /* I */ 0x05,
6936 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6937 /* J */ 0x15,
6938 /* K */ 0x0B,
6939 /* L */ 0x0C,
6940 /* M */ 0x0D,
6941 /* N */ 0x0E,
6942 /* O */ 0x0F,
6943 /* P */ 0x10,
6944 /* Q */ 0x11,
6945 /* R */ 0x12,
6946 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6947 /* \ */ 0x1C,
6948 /* E1 */ 0,
6949 /* S */ 0x13,
6950 /* T */ 0x3C,
6951 /* U */ 0x3D,
6952 /* V */ 0x32,
6953 /* W */ 0x26,
6954 /* X */ 0x18,
6955 /* Y */ 0x19,
6956 /* Z */ 0x3F,
6957 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6958 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6961 char MetaCharTable[]=
6962 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6963 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6964 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6965 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6966 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6970 /* TODO: Use characters NOT numbers!!! */
6971 char CtrlCharTable[]=
6972 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6973 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6974 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6975 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6976 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6980 #endif