Add runtime update script
[MacVim.git] / src / os_unix.c
blob703b93231c0e0a08c6e125430e7bc020f9ddb26d
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 /* ARGSUSED */
458 long_u
459 mch_total_mem(special)
460 int special;
462 # ifdef __EMX__
463 return ulimit(3, 0L) >> 10; /* always 32MB? */
464 # else
465 long_u mem = 0;
466 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
468 # ifdef HAVE_SYSCTL
469 int mib[2], physmem;
470 size_t len;
472 /* BSD way of getting the amount of RAM available. */
473 mib[0] = CTL_HW;
474 mib[1] = HW_USERMEM;
475 len = sizeof(physmem);
476 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
477 mem = (long_u)physmem;
478 # endif
480 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
481 if (mem == 0)
483 struct sysinfo sinfo;
485 /* Linux way of getting amount of RAM available */
486 if (sysinfo(&sinfo) == 0)
488 # ifdef HAVE_SYSINFO_MEM_UNIT
489 /* avoid overflow as much as possible */
490 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
492 sinfo.mem_unit = sinfo.mem_unit >> 1;
493 --shiftright;
495 mem = sinfo.totalram * sinfo.mem_unit;
496 # else
497 mem = sinfo.totalram;
498 # endif
501 # endif
503 # ifdef HAVE_SYSCONF
504 if (mem == 0)
506 long pagesize, pagecount;
508 /* Solaris way of getting amount of RAM available */
509 pagesize = sysconf(_SC_PAGESIZE);
510 pagecount = sysconf(_SC_PHYS_PAGES);
511 if (pagesize > 0 && pagecount > 0)
513 /* avoid overflow as much as possible */
514 while (shiftright > 0 && (pagesize & 1) == 0)
516 pagesize = (long_u)pagesize >> 1;
517 --shiftright;
519 mem = (long_u)pagesize * pagecount;
522 # endif
524 /* Return the minimum of the physical memory and the user limit, because
525 * using more than the user limit may cause Vim to be terminated. */
526 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
528 struct rlimit rlp;
530 if (getrlimit(RLIMIT_DATA, &rlp) == 0
531 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
532 # ifdef RLIM_INFINITY
533 && rlp.rlim_cur != RLIM_INFINITY
534 # endif
535 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
538 mem = (long_u)rlp.rlim_cur;
539 shiftright = 10;
542 # endif
544 if (mem > 0)
545 return mem >> shiftright;
546 return (long_u)0x1fffff;
547 # endif
549 #endif
551 void
552 mch_delay(msec, ignoreinput)
553 long msec;
554 int ignoreinput;
556 int old_tmode;
557 #ifdef FEAT_MZSCHEME
558 long total = msec; /* remember original value */
559 #endif
561 if (ignoreinput)
563 /* Go to cooked mode without echo, to allow SIGINT interrupting us
564 * here. But we don't want QUIT to kill us (CTRL-\ used in a
565 * shell may produce SIGQUIT). */
566 in_mch_delay = TRUE;
567 old_tmode = curr_tmode;
568 if (curr_tmode == TMODE_RAW)
569 settmode(TMODE_SLEEP);
572 * Everybody sleeps in a different way...
573 * Prefer nanosleep(), some versions of usleep() can only sleep up to
574 * one second.
576 #ifdef FEAT_MZSCHEME
579 /* if total is large enough, wait by portions in p_mzq */
580 if (total > p_mzq)
581 msec = p_mzq;
582 else
583 msec = total;
584 total -= msec;
585 #endif
586 #ifdef HAVE_NANOSLEEP
588 struct timespec ts;
590 ts.tv_sec = msec / 1000;
591 ts.tv_nsec = (msec % 1000) * 1000000;
592 (void)nanosleep(&ts, NULL);
594 #else
595 # ifdef HAVE_USLEEP
596 while (msec >= 1000)
598 usleep((unsigned int)(999 * 1000));
599 msec -= 999;
601 usleep((unsigned int)(msec * 1000));
602 # else
603 # ifndef HAVE_SELECT
604 poll(NULL, 0, (int)msec);
605 # else
606 # ifdef __EMX__
607 _sleep2(msec);
608 # else
610 struct timeval tv;
612 tv.tv_sec = msec / 1000;
613 tv.tv_usec = (msec % 1000) * 1000;
615 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
616 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
618 select(0, NULL, NULL, NULL, &tv);
620 # endif /* __EMX__ */
621 # endif /* HAVE_SELECT */
622 # endif /* HAVE_NANOSLEEP */
623 #endif /* HAVE_USLEEP */
624 #ifdef FEAT_MZSCHEME
626 while (total > 0);
627 #endif
629 settmode(old_tmode);
630 in_mch_delay = FALSE;
632 else
633 WaitForChar(msec);
636 #if 0 /* disabled, no longer needed now that regmatch() is not recursive */
637 # if defined(HAVE_GETRLIMIT)
638 # define HAVE_STACK_LIMIT
639 # endif
640 #endif
642 #if defined(HAVE_STACK_LIMIT) \
643 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
644 # define HAVE_CHECK_STACK_GROWTH
646 * Support for checking for an almost-out-of-stack-space situation.
650 * Return a pointer to an item on the stack. Used to find out if the stack
651 * grows up or down.
653 static void check_stack_growth __ARGS((char *p));
654 static int stack_grows_downwards;
657 * Find out if the stack grows upwards or downwards.
658 * "p" points to a variable on the stack of the caller.
660 static void
661 check_stack_growth(p)
662 char *p;
664 int i;
666 stack_grows_downwards = (p > (char *)&i);
668 #endif
670 #if defined(HAVE_STACK_LIMIT) || defined(PROTO)
671 static char *stack_limit = NULL;
673 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
674 # include <pthread.h>
675 # include <pthread_np.h>
676 #endif
679 * Find out until how var the stack can grow without getting into trouble.
680 * Called when starting up and when switching to the signal stack in
681 * deathtrap().
683 static void
684 get_stack_limit()
686 struct rlimit rlp;
687 int i;
688 long lim;
690 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
691 * limit doesn't fit in a long (rlim_cur might be "long long"). */
692 if (getrlimit(RLIMIT_STACK, &rlp) == 0
693 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
694 # ifdef RLIM_INFINITY
695 && rlp.rlim_cur != RLIM_INFINITY
696 # endif
699 lim = (long)rlp.rlim_cur;
700 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
702 pthread_attr_t attr;
703 size_t size;
705 /* On FreeBSD the initial thread always has a fixed stack size, no
706 * matter what the limits are set to. Normally it's 1 Mbyte. */
707 pthread_attr_init(&attr);
708 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
710 pthread_attr_getstacksize(&attr, &size);
711 if (lim > (long)size)
712 lim = (long)size;
714 pthread_attr_destroy(&attr);
716 #endif
717 if (stack_grows_downwards)
719 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
720 if (stack_limit >= (char *)&i)
721 /* overflow, set to 1/16 of current stack position */
722 stack_limit = (char *)((long)&i / 16L);
724 else
726 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
727 if (stack_limit <= (char *)&i)
728 stack_limit = NULL; /* overflow */
734 * Return FAIL when running out of stack space.
735 * "p" must point to any variable local to the caller that's on the stack.
738 mch_stackcheck(p)
739 char *p;
741 if (stack_limit != NULL)
743 if (stack_grows_downwards)
745 if (p < stack_limit)
746 return FAIL;
748 else if (p > stack_limit)
749 return FAIL;
751 return OK;
753 #endif
755 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
757 * Support for using the signal stack.
758 * This helps when we run out of stack space, which causes a SIGSEGV. The
759 * signal handler then must run on another stack, since the normal stack is
760 * completely full.
763 #ifndef SIGSTKSZ
764 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
765 #endif
767 # ifdef HAVE_SIGALTSTACK
768 static stack_t sigstk; /* for sigaltstack() */
769 # else
770 static struct sigstack sigstk; /* for sigstack() */
771 # endif
773 static void init_signal_stack __ARGS((void));
774 static char *signal_stack;
776 static void
777 init_signal_stack()
779 if (signal_stack != NULL)
781 # ifdef HAVE_SIGALTSTACK
782 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
783 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
784 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
785 * "struct sigaltstack" needs to be declared. */
786 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
787 # endif
789 # ifdef HAVE_SS_BASE
790 sigstk.ss_base = signal_stack;
791 # else
792 sigstk.ss_sp = signal_stack;
793 # endif
794 sigstk.ss_size = SIGSTKSZ;
795 sigstk.ss_flags = 0;
796 (void)sigaltstack(&sigstk, NULL);
797 # else
798 sigstk.ss_sp = signal_stack;
799 if (stack_grows_downwards)
800 sigstk.ss_sp += SIGSTKSZ - 1;
801 sigstk.ss_onstack = 0;
802 (void)sigstack(&sigstk, NULL);
803 # endif
806 #endif
809 * We need correct prototypes for a signal function, otherwise mean compilers
810 * will barf when the second argument to signal() is ``wrong''.
811 * Let me try it with a few tricky defines from my own osdef.h (jw).
813 #if defined(SIGWINCH)
814 /* ARGSUSED */
815 static RETSIGTYPE
816 sig_winch SIGDEFARG(sigarg)
818 /* this is not required on all systems, but it doesn't hurt anybody */
819 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
820 do_resize = TRUE;
821 SIGRETURN;
823 #endif
825 #if defined(SIGINT)
826 /* ARGSUSED */
827 static RETSIGTYPE
828 catch_sigint SIGDEFARG(sigarg)
830 /* this is not required on all systems, but it doesn't hurt anybody */
831 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
832 got_int = TRUE;
833 SIGRETURN;
835 #endif
837 #if defined(SIGPWR)
838 /* ARGSUSED */
839 static RETSIGTYPE
840 catch_sigpwr SIGDEFARG(sigarg)
842 /* this is not required on all systems, but it doesn't hurt anybody */
843 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
845 * I'm not sure we get the SIGPWR signal when the system is really going
846 * down or when the batteries are almost empty. Just preserve the swap
847 * files and don't exit, that can't do any harm.
849 ml_sync_all(FALSE, FALSE);
850 SIGRETURN;
852 #endif
854 #ifdef SET_SIG_ALARM
856 * signal function for alarm().
858 /* ARGSUSED */
859 static RETSIGTYPE
860 sig_alarm SIGDEFARG(sigarg)
862 /* doesn't do anything, just to break a system call */
863 sig_alarm_called = TRUE;
864 SIGRETURN;
866 #endif
868 #if (defined(HAVE_SETJMP_H) \
869 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
870 || defined(FEAT_LIBCALL))) \
871 || defined(PROTO)
873 * A simplistic version of setjmp() that only allows one level of using.
874 * Don't call twice before calling mch_endjmp()!.
875 * Usage:
876 * mch_startjmp();
877 * if (SETJMP(lc_jump_env) != 0)
879 * mch_didjmp();
880 * EMSG("crash!");
882 * else
884 * do_the_work;
885 * mch_endjmp();
887 * Note: Can't move SETJMP() here, because a function calling setjmp() must
888 * not return before the saved environment is used.
889 * Returns OK for normal return, FAIL when the protected code caused a
890 * problem and LONGJMP() was used.
892 void
893 mch_startjmp()
895 #ifdef SIGHASARG
896 lc_signal = 0;
897 #endif
898 lc_active = TRUE;
901 void
902 mch_endjmp()
904 lc_active = FALSE;
907 void
908 mch_didjmp()
910 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
911 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
912 * otherwise catching the signal only works once. */
913 init_signal_stack();
914 # endif
916 #endif
919 * This function handles deadly signals.
920 * It tries to preserve any swap file and exit properly.
921 * (partly from Elvis).
923 static RETSIGTYPE
924 deathtrap SIGDEFARG(sigarg)
926 static int entered = 0; /* count the number of times we got here.
927 Note: when memory has been corrupted
928 this may get an arbitrary value! */
929 #ifdef SIGHASARG
930 int i;
931 #endif
933 #if defined(HAVE_SETJMP_H)
935 * Catch a crash in protected code.
936 * Restores the environment saved in lc_jump_env, which looks like
937 * SETJMP() returns 1.
939 if (lc_active)
941 # if defined(SIGHASARG)
942 lc_signal = sigarg;
943 # endif
944 lc_active = FALSE; /* don't jump again */
945 LONGJMP(lc_jump_env, 1);
946 /* NOTREACHED */
948 #endif
950 #ifdef SIGHASARG
951 # ifdef SIGQUIT
952 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
953 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
954 * pressing CTRL-\, but we don't want Vim to exit then. */
955 if (in_mch_delay && sigarg == SIGQUIT)
956 SIGRETURN;
957 # endif
959 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
960 * here. This avoids that a non-reentrant function is interrupted, e.g.,
961 * free(). Calling free() again may then cause a crash. */
962 if (entered == 0
963 && (0
964 # ifdef SIGHUP
965 || sigarg == SIGHUP
966 # endif
967 # ifdef SIGQUIT
968 || sigarg == SIGQUIT
969 # endif
970 # ifdef SIGTERM
971 || sigarg == SIGTERM
972 # endif
973 # ifdef SIGPWR
974 || sigarg == SIGPWR
975 # endif
976 # ifdef SIGUSR1
977 || sigarg == SIGUSR1
978 # endif
979 # ifdef SIGUSR2
980 || sigarg == SIGUSR2
981 # endif
983 && !vim_handle_signal(sigarg))
984 SIGRETURN;
985 #endif
987 /* Remember how often we have been called. */
988 ++entered;
990 #ifdef FEAT_EVAL
991 /* Set the v:dying variable. */
992 set_vim_var_nr(VV_DYING, (long)entered);
993 #endif
995 #ifdef HAVE_STACK_LIMIT
996 /* Since we are now using the signal stack, need to reset the stack
997 * limit. Otherwise using a regexp will fail. */
998 get_stack_limit();
999 #endif
1001 #if 0
1002 /* This is for opening gdb the moment Vim crashes.
1003 * You need to manually adjust the file name and Vim executable name.
1004 * Suggested by SungHyun Nam. */
1006 # define VI_GDB_FILE "/tmp/vimgdb"
1007 # define VIM_NAME "/usr/bin/vim"
1008 FILE *fp = fopen(VI_GDB_FILE, "w");
1009 if (fp)
1011 fprintf(fp,
1012 "file %s\n"
1013 "attach %d\n"
1014 "set height 1000\n"
1015 "bt full\n"
1016 , VIM_NAME, getpid());
1017 fclose(fp);
1018 system("xterm -e gdb -x "VI_GDB_FILE);
1019 unlink(VI_GDB_FILE);
1022 #endif
1024 #ifdef SIGHASARG
1025 /* try to find the name of this signal */
1026 for (i = 0; signal_info[i].sig != -1; i++)
1027 if (sigarg == signal_info[i].sig)
1028 break;
1029 deadly_signal = sigarg;
1030 #endif
1032 full_screen = FALSE; /* don't write message to the GUI, it might be
1033 * part of the problem... */
1035 * If something goes wrong after entering here, we may get here again.
1036 * When this happens, give a message and try to exit nicely (resetting the
1037 * terminal mode, etc.)
1038 * When this happens twice, just exit, don't even try to give a message,
1039 * stack may be corrupt or something weird.
1040 * When this still happens again (or memory was corrupted in such a way
1041 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1043 if (entered >= 3)
1045 reset_signals(); /* don't catch any signals anymore */
1046 may_core_dump();
1047 if (entered >= 4)
1048 _exit(8);
1049 exit(7);
1051 if (entered == 2)
1053 OUT_STR(_("Vim: Double signal, exiting\n"));
1054 out_flush();
1055 getout(1);
1058 #ifdef SIGHASARG
1059 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1060 signal_info[i].name);
1061 #else
1062 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1063 #endif
1064 preserve_exit(); /* preserve files and exit */
1066 #ifdef NBDEBUG
1067 reset_signals();
1068 may_core_dump();
1069 abort();
1070 #endif
1072 SIGRETURN;
1075 #if defined(_REENTRANT) && defined(SIGCONT)
1077 * On Solaris with multi-threading, suspending might not work immediately.
1078 * Catch the SIGCONT signal, which will be used as an indication whether the
1079 * suspending has been done or not.
1081 * On Linux, signal is not always handled immediately either.
1082 * See https://bugs.launchpad.net/bugs/291373
1084 * volatile because it is used in in signal handler sigcont_handler().
1086 static volatile int sigcont_received;
1087 static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1090 * signal handler for SIGCONT
1092 /* ARGSUSED */
1093 static RETSIGTYPE
1094 sigcont_handler SIGDEFARG(sigarg)
1096 sigcont_received = TRUE;
1097 SIGRETURN;
1099 #endif
1102 * If the machine has job control, use it to suspend the program,
1103 * otherwise fake it by starting a new shell.
1105 void
1106 mch_suspend()
1108 /* BeOS does have SIGTSTP, but it doesn't work. */
1109 #if defined(SIGTSTP) && !defined(__BEOS__)
1110 out_flush(); /* needed to make cursor visible on some systems */
1111 settmode(TMODE_COOK);
1112 out_flush(); /* needed to disable mouse on some systems */
1114 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1115 /* Since we are going to sleep, we can't respond to requests for the X
1116 * selections. Lose them, otherwise other applications will hang. But
1117 * first copy the text to cut buffer 0. */
1118 if (clip_star.owned || clip_plus.owned)
1120 x11_export_final_selection();
1121 if (clip_star.owned)
1122 clip_lose_selection(&clip_star);
1123 if (clip_plus.owned)
1124 clip_lose_selection(&clip_plus);
1125 if (x11_display != NULL)
1126 XFlush(x11_display);
1128 # endif
1130 # if defined(_REENTRANT) && defined(SIGCONT)
1131 sigcont_received = FALSE;
1132 # endif
1133 kill(0, SIGTSTP); /* send ourselves a STOP signal */
1134 # if defined(_REENTRANT) && defined(SIGCONT)
1136 * Wait for the SIGCONT signal to be handled. It generally happens
1137 * immediately, but somehow not all the time. Do not call pause()
1138 * because there would be race condition which would hang Vim if
1139 * signal happened in between the test of sigcont_received and the
1140 * call to pause(). If signal is not yet received, call sleep(0)
1141 * to just yield CPU. Signal should then be received. If somehow
1142 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1143 * further if signal is not received after 1+2+3+4 ms (not expected
1144 * to happen).
1147 long wait;
1148 for (wait = 0; !sigcont_received && wait <= 3L; wait++)
1149 /* Loop is not entered most of the time */
1150 mch_delay(wait, FALSE);
1152 # endif
1154 # ifdef FEAT_TITLE
1156 * Set oldtitle to NULL, so the current title is obtained again.
1158 vim_free(oldtitle);
1159 oldtitle = NULL;
1160 # endif
1161 settmode(TMODE_RAW);
1162 need_check_timestamps = TRUE;
1163 did_check_timestamps = FALSE;
1164 #else
1165 suspend_shell();
1166 #endif
1169 void
1170 mch_init()
1172 Columns = 80;
1173 Rows = 24;
1175 out_flush();
1176 set_signals();
1178 #ifdef MACOS_CONVERT
1179 mac_conv_init();
1180 #endif
1183 static void
1184 set_signals()
1186 #if defined(SIGWINCH)
1188 * WINDOW CHANGE signal is handled with sig_winch().
1190 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1191 #endif
1194 * We want the STOP signal to work, to make mch_suspend() work.
1195 * For "rvim" the STOP signal is ignored.
1197 #ifdef SIGTSTP
1198 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1199 #endif
1200 #if defined(_REENTRANT) && defined(SIGCONT)
1201 signal(SIGCONT, sigcont_handler);
1202 #endif
1205 * We want to ignore breaking of PIPEs.
1207 #ifdef SIGPIPE
1208 signal(SIGPIPE, SIG_IGN);
1209 #endif
1211 #ifdef SIGINT
1212 catch_int_signal();
1213 #endif
1216 * Ignore alarm signals (Perl's alarm() generates it).
1218 #ifdef SIGALRM
1219 signal(SIGALRM, SIG_IGN);
1220 #endif
1223 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1224 * work will be lost.
1226 #ifdef SIGPWR
1227 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1228 #endif
1231 * Arrange for other signals to gracefully shutdown Vim.
1233 catch_signals(deathtrap, SIG_ERR);
1235 #if defined(FEAT_GUI) && defined(SIGHUP)
1237 * When the GUI is running, ignore the hangup signal.
1239 if (gui.in_use)
1240 signal(SIGHUP, SIG_IGN);
1241 #endif
1244 #if defined(SIGINT) || defined(PROTO)
1246 * Catch CTRL-C (only works while in Cooked mode).
1248 static void
1249 catch_int_signal()
1251 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1253 #endif
1255 void
1256 reset_signals()
1258 catch_signals(SIG_DFL, SIG_DFL);
1259 #if defined(_REENTRANT) && defined(SIGCONT)
1260 /* SIGCONT isn't in the list, because its default action is ignore */
1261 signal(SIGCONT, SIG_DFL);
1262 #endif
1265 static void
1266 catch_signals(func_deadly, func_other)
1267 RETSIGTYPE (*func_deadly)();
1268 RETSIGTYPE (*func_other)();
1270 int i;
1272 for (i = 0; signal_info[i].sig != -1; i++)
1273 if (signal_info[i].deadly)
1275 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1276 struct sigaction sa;
1278 /* Setup to use the alternate stack for the signal function. */
1279 sa.sa_handler = func_deadly;
1280 sigemptyset(&sa.sa_mask);
1281 # if defined(__linux__) && defined(_REENTRANT)
1282 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1283 * thread handling in combination with using the alternate stack:
1284 * pthread library functions try to use the stack pointer to
1285 * identify the current thread, causing a SEGV signal, which
1286 * recursively calls deathtrap() and hangs. */
1287 sa.sa_flags = 0;
1288 # else
1289 sa.sa_flags = SA_ONSTACK;
1290 # endif
1291 sigaction(signal_info[i].sig, &sa, NULL);
1292 #else
1293 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1294 struct sigvec sv;
1296 /* Setup to use the alternate stack for the signal function. */
1297 sv.sv_handler = func_deadly;
1298 sv.sv_mask = 0;
1299 sv.sv_flags = SV_ONSTACK;
1300 sigvec(signal_info[i].sig, &sv, NULL);
1301 # else
1302 signal(signal_info[i].sig, func_deadly);
1303 # endif
1304 #endif
1306 else if (func_other != SIG_ERR)
1307 signal(signal_info[i].sig, func_other);
1311 * Handling of SIGHUP, SIGQUIT and SIGTERM:
1312 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1313 * return TRUE
1314 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1315 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1316 * signal
1317 * Returns TRUE when Vim should exit.
1320 vim_handle_signal(sig)
1321 int sig;
1323 static int got_signal = 0;
1324 static int blocked = TRUE;
1326 switch (sig)
1328 case SIGNAL_BLOCK: blocked = TRUE;
1329 break;
1331 case SIGNAL_UNBLOCK: blocked = FALSE;
1332 if (got_signal != 0)
1334 kill(getpid(), got_signal);
1335 got_signal = 0;
1337 break;
1339 default: if (!blocked)
1340 return TRUE; /* exit! */
1341 got_signal = sig;
1342 #ifdef SIGPWR
1343 if (sig != SIGPWR)
1344 #endif
1345 got_int = TRUE; /* break any loops */
1346 break;
1348 return FALSE;
1352 * Check_win checks whether we have an interactive stdout.
1354 /* ARGSUSED */
1356 mch_check_win(argc, argv)
1357 int argc;
1358 char **argv;
1360 #ifdef OS2
1362 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1363 * name, mostly it's just "vim" and found in the path, which is unusable.
1365 if (mch_isFullName(argv[0]))
1366 exe_name = vim_strsave((char_u *)argv[0]);
1367 #endif
1368 if (isatty(1))
1369 return OK;
1370 return FAIL;
1374 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1377 mch_input_isatty()
1379 if (isatty(read_cmd_fd))
1380 return TRUE;
1381 return FALSE;
1384 #ifdef FEAT_X11
1386 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1387 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1389 static void xopen_message __ARGS((struct timeval *tvp));
1392 * Give a message about the elapsed time for opening the X window.
1394 static void
1395 xopen_message(tvp)
1396 struct timeval *tvp; /* must contain start time */
1398 struct timeval end_tv;
1400 /* Compute elapsed time. */
1401 gettimeofday(&end_tv, NULL);
1402 smsg((char_u *)_("Opening the X display took %ld msec"),
1403 (end_tv.tv_sec - tvp->tv_sec) * 1000L
1404 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
1406 # endif
1407 #endif
1409 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1411 * A few functions shared by X11 title and clipboard code.
1413 static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1414 static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1415 static int x_connect_to_server __ARGS((void));
1416 static int test_x11_window __ARGS((Display *dpy));
1418 static int got_x_error = FALSE;
1421 * X Error handler, otherwise X just exits! (very rude) -- webb
1423 static int
1424 x_error_handler(dpy, error_event)
1425 Display *dpy;
1426 XErrorEvent *error_event;
1428 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
1429 STRCAT(IObuff, _("\nVim: Got X error\n"));
1431 /* We cannot print a message and continue, because no X calls are allowed
1432 * here (causes my system to hang). Silently continuing might be an
1433 * alternative... */
1434 preserve_exit(); /* preserve files and exit */
1436 return 0; /* NOTREACHED */
1440 * Another X Error handler, just used to check for errors.
1442 /* ARGSUSED */
1443 static int
1444 x_error_check(dpy, error_event)
1445 Display *dpy;
1446 XErrorEvent *error_event;
1448 got_x_error = TRUE;
1449 return 0;
1452 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1453 # if defined(HAVE_SETJMP_H)
1455 * An X IO Error handler, used to catch error while opening the display.
1457 static int x_IOerror_check __ARGS((Display *dpy));
1459 /* ARGSUSED */
1460 static int
1461 x_IOerror_check(dpy)
1462 Display *dpy;
1464 /* This function should not return, it causes exit(). Longjump instead. */
1465 LONGJMP(lc_jump_env, 1);
1466 /*NOTREACHED*/
1467 return 0;
1469 # endif
1472 * An X IO Error handler, used to catch terminal errors.
1474 static int x_IOerror_handler __ARGS((Display *dpy));
1476 /* ARGSUSED */
1477 static int
1478 x_IOerror_handler(dpy)
1479 Display *dpy;
1481 xterm_dpy = NULL;
1482 x11_window = 0;
1483 x11_display = NULL;
1484 xterm_Shell = (Widget)0;
1486 /* This function should not return, it causes exit(). Longjump instead. */
1487 LONGJMP(x_jump_env, 1);
1488 /*NOTREACHED*/
1489 return 0;
1491 #endif
1494 * Return TRUE when connection to the X server is desired.
1496 static int
1497 x_connect_to_server()
1499 regmatch_T regmatch;
1501 #if defined(FEAT_CLIENTSERVER)
1502 if (x_force_connect)
1503 return TRUE;
1504 #endif
1505 if (x_no_connect)
1506 return FALSE;
1508 /* Check for a match with "exclude:" from 'clipboard'. */
1509 if (clip_exclude_prog != NULL)
1511 regmatch.rm_ic = FALSE; /* Don't ignore case */
1512 regmatch.regprog = clip_exclude_prog;
1513 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1514 return FALSE;
1516 return TRUE;
1520 * Test if "dpy" and x11_window are valid by getting the window title.
1521 * I don't actually want it yet, so there may be a simpler call to use, but
1522 * this will cause the error handler x_error_check() to be called if anything
1523 * is wrong, such as the window pointer being invalid (as can happen when the
1524 * user changes his DISPLAY, but not his WINDOWID) -- webb
1526 static int
1527 test_x11_window(dpy)
1528 Display *dpy;
1530 int (*old_handler)();
1531 XTextProperty text_prop;
1533 old_handler = XSetErrorHandler(x_error_check);
1534 got_x_error = FALSE;
1535 if (XGetWMName(dpy, x11_window, &text_prop))
1536 XFree((void *)text_prop.value);
1537 XSync(dpy, False);
1538 (void)XSetErrorHandler(old_handler);
1540 if (p_verbose > 0 && got_x_error)
1541 verb_msg((char_u *)_("Testing the X display failed"));
1543 return (got_x_error ? FAIL : OK);
1545 #endif
1547 #ifdef FEAT_TITLE
1549 #ifdef FEAT_X11
1551 static int get_x11_thing __ARGS((int get_title, int test_only));
1554 * try to get x11 window and display
1556 * return FAIL for failure, OK otherwise
1558 static int
1559 get_x11_windis()
1561 char *winid;
1562 static int result = -1;
1563 #define XD_NONE 0 /* x11_display not set here */
1564 #define XD_HERE 1 /* x11_display opened here */
1565 #define XD_GUI 2 /* x11_display used from gui.dpy */
1566 #define XD_XTERM 3 /* x11_display used from xterm_dpy */
1567 static int x11_display_from = XD_NONE;
1568 static int did_set_error_handler = FALSE;
1570 if (!did_set_error_handler)
1572 /* X just exits if it finds an error otherwise! */
1573 (void)XSetErrorHandler(x_error_handler);
1574 did_set_error_handler = TRUE;
1577 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
1578 if (gui.in_use)
1581 * If the X11 display was opened here before, for the window where Vim
1582 * was started, close that one now to avoid a memory leak.
1584 if (x11_display_from == XD_HERE && x11_display != NULL)
1586 XCloseDisplay(x11_display);
1587 x11_display_from = XD_NONE;
1589 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1591 x11_display_from = XD_GUI;
1592 return OK;
1594 x11_display = NULL;
1595 return FAIL;
1597 else if (x11_display_from == XD_GUI)
1599 /* GUI must have stopped somehow, clear x11_display */
1600 x11_window = 0;
1601 x11_display = NULL;
1602 x11_display_from = XD_NONE;
1604 #endif
1606 /* When started with the "-X" argument, don't try connecting. */
1607 if (!x_connect_to_server())
1608 return FAIL;
1611 * If WINDOWID not set, should try another method to find out
1612 * what the current window number is. The only code I know for
1613 * this is very complicated.
1614 * We assume that zero is invalid for WINDOWID.
1616 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1617 x11_window = (Window)atol(winid);
1619 #ifdef FEAT_XCLIPBOARD
1620 if (xterm_dpy != NULL && x11_window != 0)
1622 /* We may have checked it already, but Gnome terminal can move us to
1623 * another window, so we need to check every time. */
1624 if (x11_display_from != XD_XTERM)
1627 * If the X11 display was opened here before, for the window where
1628 * Vim was started, close that one now to avoid a memory leak.
1630 if (x11_display_from == XD_HERE && x11_display != NULL)
1631 XCloseDisplay(x11_display);
1632 x11_display = xterm_dpy;
1633 x11_display_from = XD_XTERM;
1635 if (test_x11_window(x11_display) == FAIL)
1637 /* probably bad $WINDOWID */
1638 x11_window = 0;
1639 x11_display = NULL;
1640 x11_display_from = XD_NONE;
1641 return FAIL;
1643 return OK;
1645 #endif
1647 if (x11_window == 0 || x11_display == NULL)
1648 result = -1;
1650 if (result != -1) /* Have already been here and set this */
1651 return result; /* Don't do all these X calls again */
1653 if (x11_window != 0 && x11_display == NULL)
1655 #ifdef SET_SIG_ALARM
1656 RETSIGTYPE (*sig_save)();
1657 #endif
1658 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1659 struct timeval start_tv;
1661 if (p_verbose > 0)
1662 gettimeofday(&start_tv, NULL);
1663 #endif
1665 #ifdef SET_SIG_ALARM
1667 * Opening the Display may hang if the DISPLAY setting is wrong, or
1668 * the network connection is bad. Set an alarm timer to get out.
1670 sig_alarm_called = FALSE;
1671 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1672 (RETSIGTYPE (*)())sig_alarm);
1673 alarm(2);
1674 #endif
1675 x11_display = XOpenDisplay(NULL);
1677 #ifdef SET_SIG_ALARM
1678 alarm(0);
1679 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1680 if (p_verbose > 0 && sig_alarm_called)
1681 verb_msg((char_u *)_("Opening the X display timed out"));
1682 #endif
1683 if (x11_display != NULL)
1685 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1686 if (p_verbose > 0)
1688 verbose_enter();
1689 xopen_message(&start_tv);
1690 verbose_leave();
1692 # endif
1693 if (test_x11_window(x11_display) == FAIL)
1695 /* Maybe window id is bad */
1696 x11_window = 0;
1697 XCloseDisplay(x11_display);
1698 x11_display = NULL;
1700 else
1701 x11_display_from = XD_HERE;
1704 if (x11_window == 0 || x11_display == NULL)
1705 return (result = FAIL);
1706 return (result = OK);
1710 * Determine original x11 Window Title
1712 static int
1713 get_x11_title(test_only)
1714 int test_only;
1716 return get_x11_thing(TRUE, test_only);
1720 * Determine original x11 Window icon
1722 static int
1723 get_x11_icon(test_only)
1724 int test_only;
1726 int retval = FALSE;
1728 retval = get_x11_thing(FALSE, test_only);
1730 /* could not get old icon, use terminal name */
1731 if (oldicon == NULL && !test_only)
1733 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1734 oldicon = T_NAME + 8;
1735 else
1736 oldicon = T_NAME;
1739 return retval;
1742 static int
1743 get_x11_thing(get_title, test_only)
1744 int get_title; /* get title string */
1745 int test_only;
1747 XTextProperty text_prop;
1748 int retval = FALSE;
1749 Status status;
1751 if (get_x11_windis() == OK)
1753 /* Get window/icon name if any */
1754 if (get_title)
1755 status = XGetWMName(x11_display, x11_window, &text_prop);
1756 else
1757 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1760 * If terminal is xterm, then x11_window may be a child window of the
1761 * outer xterm window that actually contains the window/icon name, so
1762 * keep traversing up the tree until a window with a title/icon is
1763 * found.
1765 /* Previously this was only done for xterm and alikes. I don't see a
1766 * reason why it would fail for other terminal emulators.
1767 * if (term_is_xterm) */
1769 Window root;
1770 Window parent;
1771 Window win = x11_window;
1772 Window *children;
1773 unsigned int num_children;
1775 while (!status || text_prop.value == NULL)
1777 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1778 &num_children))
1779 break;
1780 if (children)
1781 XFree((void *)children);
1782 if (parent == root || parent == 0)
1783 break;
1785 win = parent;
1786 if (get_title)
1787 status = XGetWMName(x11_display, win, &text_prop);
1788 else
1789 status = XGetWMIconName(x11_display, win, &text_prop);
1792 if (status && text_prop.value != NULL)
1794 retval = TRUE;
1795 if (!test_only)
1797 #ifdef FEAT_XFONTSET
1798 if (text_prop.encoding == XA_STRING)
1800 #endif
1801 if (get_title)
1802 oldtitle = vim_strsave((char_u *)text_prop.value);
1803 else
1804 oldicon = vim_strsave((char_u *)text_prop.value);
1805 #ifdef FEAT_XFONTSET
1807 else
1809 char **cl;
1810 Status transform_status;
1811 int n = 0;
1813 transform_status = XmbTextPropertyToTextList(x11_display,
1814 &text_prop,
1815 &cl, &n);
1816 if (transform_status >= Success && n > 0 && cl[0])
1818 if (get_title)
1819 oldtitle = vim_strsave((char_u *) cl[0]);
1820 else
1821 oldicon = vim_strsave((char_u *) cl[0]);
1822 XFreeStringList(cl);
1824 else
1826 if (get_title)
1827 oldtitle = vim_strsave((char_u *)text_prop.value);
1828 else
1829 oldicon = vim_strsave((char_u *)text_prop.value);
1832 #endif
1834 XFree((void *)text_prop.value);
1837 return retval;
1840 /* Are Xutf8 functions available? Avoid error from old compilers. */
1841 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1842 # if X_HAVE_UTF8_STRING
1843 # define USE_UTF8_STRING
1844 # endif
1845 #endif
1848 * Set x11 Window Title
1850 * get_x11_windis() must be called before this and have returned OK
1852 static void
1853 set_x11_title(title)
1854 char_u *title;
1856 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1857 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1858 * supported everywhere and STRING doesn't work for multi-byte titles.
1860 #ifdef USE_UTF8_STRING
1861 if (enc_utf8)
1862 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1863 NULL, NULL, 0, NULL, NULL, NULL);
1864 else
1865 #endif
1867 #if XtSpecificationRelease >= 4
1868 # ifdef FEAT_XFONTSET
1869 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1870 NULL, NULL, 0, NULL, NULL, NULL);
1871 # else
1872 XTextProperty text_prop;
1873 char *c_title = (char *)title;
1875 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
1876 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
1877 XSetWMProperties(x11_display, x11_window, &text_prop,
1878 NULL, NULL, 0, NULL, NULL, NULL);
1879 # endif
1880 #else
1881 XStoreName(x11_display, x11_window, (char *)title);
1882 #endif
1884 XFlush(x11_display);
1888 * Set x11 Window icon
1890 * get_x11_windis() must be called before this and have returned OK
1892 static void
1893 set_x11_icon(icon)
1894 char_u *icon;
1896 /* See above for comments about using X*SetWMProperties(). */
1897 #ifdef USE_UTF8_STRING
1898 if (enc_utf8)
1899 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1900 NULL, 0, NULL, NULL, NULL);
1901 else
1902 #endif
1904 #if XtSpecificationRelease >= 4
1905 # ifdef FEAT_XFONTSET
1906 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1907 NULL, 0, NULL, NULL, NULL);
1908 # else
1909 XTextProperty text_prop;
1910 char *c_icon = (char *)icon;
1912 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
1913 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1914 NULL, 0, NULL, NULL, NULL);
1915 # endif
1916 #else
1917 XSetIconName(x11_display, x11_window, (char *)icon);
1918 #endif
1920 XFlush(x11_display);
1923 #else /* FEAT_X11 */
1925 /*ARGSUSED*/
1926 static int
1927 get_x11_title(test_only)
1928 int test_only;
1930 return FALSE;
1933 static int
1934 get_x11_icon(test_only)
1935 int test_only;
1937 if (!test_only)
1939 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1940 oldicon = T_NAME + 8;
1941 else
1942 oldicon = T_NAME;
1944 return FALSE;
1947 #endif /* FEAT_X11 */
1950 mch_can_restore_title()
1952 return get_x11_title(TRUE);
1956 mch_can_restore_icon()
1958 return get_x11_icon(TRUE);
1962 * Set the window title and icon.
1964 void
1965 mch_settitle(title, icon)
1966 char_u *title;
1967 char_u *icon;
1969 int type = 0;
1970 static int recursive = 0;
1972 if (T_NAME == NULL) /* no terminal name (yet) */
1973 return;
1974 if (title == NULL && icon == NULL) /* nothing to do */
1975 return;
1977 /* When one of the X11 functions causes a deadly signal, we get here again
1978 * recursively. Avoid hanging then (something is probably locked). */
1979 if (recursive)
1980 return;
1981 ++recursive;
1984 * if the window ID and the display is known, we may use X11 calls
1986 #ifdef FEAT_X11
1987 if (get_x11_windis() == OK)
1988 type = 1;
1989 #else
1990 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1991 if (gui.in_use)
1992 type = 1;
1993 # endif
1994 #endif
1997 * Note: if "t_TS" is set, title is set with escape sequence rather
1998 * than x11 calls, because the x11 calls don't always work
2000 if ((type || *T_TS != NUL) && title != NULL)
2002 if (oldtitle == NULL
2003 #ifdef FEAT_GUI
2004 && !gui.in_use
2005 #endif
2006 ) /* first call but not in GUI, save title */
2007 (void)get_x11_title(FALSE);
2009 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2010 term_settitle(title);
2011 #ifdef FEAT_X11
2012 else
2013 # ifdef FEAT_GUI_GTK
2014 if (!gui.in_use) /* don't do this if GTK+ is running */
2015 # endif
2016 set_x11_title(title); /* x11 */
2017 #endif
2018 #if defined(FEAT_GUI_GTK) \
2019 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2020 else
2021 gui_mch_settitle(title, icon);
2022 #endif
2023 did_set_title = TRUE;
2026 if ((type || *T_CIS != NUL) && icon != NULL)
2028 if (oldicon == NULL
2029 #ifdef FEAT_GUI
2030 && !gui.in_use
2031 #endif
2032 ) /* first call, save icon */
2033 get_x11_icon(FALSE);
2035 if (*T_CIS != NUL)
2037 out_str(T_CIS); /* set icon start */
2038 out_str_nf(icon);
2039 out_str(T_CIE); /* set icon end */
2040 out_flush();
2042 #ifdef FEAT_X11
2043 else
2044 # ifdef FEAT_GUI_GTK
2045 if (!gui.in_use) /* don't do this if GTK+ is running */
2046 # endif
2047 set_x11_icon(icon); /* x11 */
2048 #endif
2049 did_set_icon = TRUE;
2051 --recursive;
2055 * Restore the window/icon title.
2056 * "which" is one of:
2057 * 1 only restore title
2058 * 2 only restore icon
2059 * 3 restore title and icon
2061 void
2062 mch_restore_title(which)
2063 int which;
2065 /* only restore the title or icon when it has been set */
2066 mch_settitle(((which & 1) && did_set_title) ?
2067 (oldtitle ? oldtitle : p_titleold) : NULL,
2068 ((which & 2) && did_set_icon) ? oldicon : NULL);
2071 #endif /* FEAT_TITLE */
2074 * Return TRUE if "name" looks like some xterm name.
2075 * Seiichi Sato mentioned that "mlterm" works like xterm.
2078 vim_is_xterm(name)
2079 char_u *name;
2081 if (name == NULL)
2082 return FALSE;
2083 return (STRNICMP(name, "xterm", 5) == 0
2084 || STRNICMP(name, "nxterm", 6) == 0
2085 || STRNICMP(name, "kterm", 5) == 0
2086 || STRNICMP(name, "mlterm", 6) == 0
2087 || STRNICMP(name, "rxvt", 4) == 0
2088 || STRCMP(name, "builtin_xterm") == 0);
2091 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2093 * Return TRUE if "name" appears to be that of a terminal
2094 * known to support the xterm-style mouse protocol.
2095 * Relies on term_is_xterm having been set to its correct value.
2098 use_xterm_like_mouse(name)
2099 char_u *name;
2101 return (name != NULL
2102 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2104 #endif
2106 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2108 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2109 * Return 1 for "xterm".
2110 * Return 2 for "xterm2".
2113 use_xterm_mouse()
2115 if (ttym_flags == TTYM_XTERM2)
2116 return 2;
2117 if (ttym_flags == TTYM_XTERM)
2118 return 1;
2119 return 0;
2121 #endif
2124 vim_is_iris(name)
2125 char_u *name;
2127 if (name == NULL)
2128 return FALSE;
2129 return (STRNICMP(name, "iris-ansi", 9) == 0
2130 || STRCMP(name, "builtin_iris-ansi") == 0);
2134 vim_is_vt300(name)
2135 char_u *name;
2137 if (name == NULL)
2138 return FALSE; /* actually all ANSI comp. terminals should be here */
2139 /* catch VT100 - VT5xx */
2140 return ((STRNICMP(name, "vt", 2) == 0
2141 && vim_strchr((char_u *)"12345", name[2]) != NULL)
2142 || STRCMP(name, "builtin_vt320") == 0);
2146 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2147 * This should include all windowed terminal emulators.
2150 vim_is_fastterm(name)
2151 char_u *name;
2153 if (name == NULL)
2154 return FALSE;
2155 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2156 return TRUE;
2157 return ( STRNICMP(name, "hpterm", 6) == 0
2158 || STRNICMP(name, "sun-cmd", 7) == 0
2159 || STRNICMP(name, "screen", 6) == 0
2160 || STRNICMP(name, "dtterm", 6) == 0);
2164 * Insert user name in s[len].
2165 * Return OK if a name found.
2168 mch_get_user_name(s, len)
2169 char_u *s;
2170 int len;
2172 #ifdef VMS
2173 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
2174 return OK;
2175 #else
2176 return mch_get_uname(getuid(), s, len);
2177 #endif
2181 * Insert user name for "uid" in s[len].
2182 * Return OK if a name found.
2185 mch_get_uname(uid, s, len)
2186 uid_t uid;
2187 char_u *s;
2188 int len;
2190 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2191 struct passwd *pw;
2193 if ((pw = getpwuid(uid)) != NULL
2194 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2196 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
2197 return OK;
2199 #endif
2200 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2201 return FAIL; /* a number is not a name */
2205 * Insert host name is s[len].
2208 #ifdef HAVE_SYS_UTSNAME_H
2209 void
2210 mch_get_host_name(s, len)
2211 char_u *s;
2212 int len;
2214 struct utsname vutsname;
2216 if (uname(&vutsname) < 0)
2217 *s = NUL;
2218 else
2219 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
2221 #else /* HAVE_SYS_UTSNAME_H */
2223 # ifdef HAVE_SYS_SYSTEMINFO_H
2224 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2225 # endif
2227 void
2228 mch_get_host_name(s, len)
2229 char_u *s;
2230 int len;
2232 # ifdef VAXC
2233 vaxc$gethostname((char *)s, len);
2234 # else
2235 gethostname((char *)s, len);
2236 # endif
2237 s[len - 1] = NUL; /* make sure it's terminated */
2239 #endif /* HAVE_SYS_UTSNAME_H */
2242 * return process ID
2244 long
2245 mch_get_pid()
2247 return (long)getpid();
2250 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2251 static char *strerror __ARGS((int));
2253 static char *
2254 strerror(err)
2255 int err;
2257 extern int sys_nerr;
2258 extern char *sys_errlist[];
2259 static char er[20];
2261 if (err > 0 && err < sys_nerr)
2262 return (sys_errlist[err]);
2263 sprintf(er, "Error %d", err);
2264 return er;
2266 #endif
2269 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2270 * Return OK for success, FAIL for failure.
2273 mch_dirname(buf, len)
2274 char_u *buf;
2275 int len;
2277 #if defined(USE_GETCWD)
2278 if (getcwd((char *)buf, len) == NULL)
2280 STRCPY(buf, strerror(errno));
2281 return FAIL;
2283 return OK;
2284 #else
2285 return (getwd((char *)buf) != NULL ? OK : FAIL);
2286 #endif
2289 #if defined(OS2) || defined(PROTO)
2291 * Replace all slashes by backslashes.
2292 * When 'shellslash' set do it the other way around.
2294 void
2295 slash_adjust(p)
2296 char_u *p;
2298 while (*p)
2300 if (*p == psepcN)
2301 *p = psepc;
2302 mb_ptr_adv(p);
2305 #endif
2308 * Get absolute file name into "buf[len]".
2310 * return FAIL for failure, OK for success
2313 mch_FullName(fname, buf, len, force)
2314 char_u *fname, *buf;
2315 int len;
2316 int force; /* also expand when already absolute path */
2318 int l;
2319 #ifdef OS2
2320 int only_drive; /* file name is only a drive letter */
2321 #endif
2322 #ifdef HAVE_FCHDIR
2323 int fd = -1;
2324 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
2325 #endif
2326 char_u olddir[MAXPATHL];
2327 char_u *p;
2328 int retval = OK;
2329 #ifdef __CYGWIN__
2330 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2331 it's not always defined */
2332 #endif
2334 #ifdef VMS
2335 fname = vms_fixfilename(fname);
2336 #endif
2338 #ifdef __CYGWIN__
2340 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2342 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2343 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2344 # else
2345 cygwin_conv_to_posix_path(fname, posix_fname);
2346 # endif
2347 fname = posix_fname;
2348 #endif
2350 /* expand it if forced or not an absolute path */
2351 if (force || !mch_isFullName(fname))
2354 * If the file name has a path, change to that directory for a moment,
2355 * and then do the getwd() (and get back to where we were).
2356 * This will get the correct path name with "../" things.
2358 #ifdef OS2
2359 only_drive = 0;
2360 if (((p = vim_strrchr(fname, '/')) != NULL)
2361 || ((p = vim_strrchr(fname, '\\')) != NULL)
2362 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
2363 #else
2364 if ((p = vim_strrchr(fname, '/')) != NULL)
2365 #endif
2367 #ifdef HAVE_FCHDIR
2369 * Use fchdir() if possible, it's said to be faster and more
2370 * reliable. But on SunOS 4 it might not work. Check this by
2371 * doing a fchdir() right now.
2373 if (!dont_fchdir)
2375 fd = open(".", O_RDONLY | O_EXTRA, 0);
2376 if (fd >= 0 && fchdir(fd) < 0)
2378 close(fd);
2379 fd = -1;
2380 dont_fchdir = TRUE; /* don't try again */
2383 #endif
2385 /* Only change directory when we are sure we can return to where
2386 * we are now. After doing "su" chdir(".") might not work. */
2387 if (
2388 #ifdef HAVE_FCHDIR
2389 fd < 0 &&
2390 #endif
2391 (mch_dirname(olddir, MAXPATHL) == FAIL
2392 || mch_chdir((char *)olddir) != 0))
2394 p = NULL; /* can't get current dir: don't chdir */
2395 retval = FAIL;
2397 else
2399 #ifdef OS2
2401 * compensate for case where ':' from "D:" was the only
2402 * path separator detected in the file name; the _next_
2403 * character has to be removed, and then restored later.
2405 if (only_drive)
2406 p++;
2407 #endif
2408 /* The directory is copied into buf[], to be able to remove
2409 * the file name without changing it (could be a string in
2410 * read-only memory) */
2411 if (p - fname >= len)
2412 retval = FAIL;
2413 else
2415 vim_strncpy(buf, fname, p - fname);
2416 if (mch_chdir((char *)buf))
2417 retval = FAIL;
2418 else
2419 fname = p + 1;
2420 *buf = NUL;
2422 #ifdef OS2
2423 if (only_drive)
2425 p--;
2426 if (retval != FAIL)
2427 fname--;
2429 #endif
2432 if (mch_dirname(buf, len) == FAIL)
2434 retval = FAIL;
2435 *buf = NUL;
2437 if (p != NULL)
2439 #ifdef HAVE_FCHDIR
2440 if (fd >= 0)
2442 l = fchdir(fd);
2443 close(fd);
2445 else
2446 #endif
2447 l = mch_chdir((char *)olddir);
2448 if (l != 0)
2449 EMSG(_(e_prev_dir));
2452 l = STRLEN(buf);
2453 if (l >= len)
2454 retval = FAIL;
2455 #ifndef VMS
2456 else
2458 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2459 && STRCMP(fname, ".") != 0)
2460 STRCAT(buf, "/");
2462 #endif
2465 /* Catch file names which are too long. */
2466 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2467 return FAIL;
2469 /* Do not append ".", "/dir/." is equal to "/dir". */
2470 if (STRCMP(fname, ".") != 0)
2471 STRCAT(buf, fname);
2473 return OK;
2477 * Return TRUE if "fname" does not depend on the current directory.
2480 mch_isFullName(fname)
2481 char_u *fname;
2483 #ifdef __EMX__
2484 return _fnisabs(fname);
2485 #else
2486 # ifdef VMS
2487 return ( fname[0] == '/' || fname[0] == '.' ||
2488 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2489 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2490 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2491 # else
2492 return (*fname == '/' || *fname == '~');
2493 # endif
2494 #endif
2497 #if defined(USE_FNAME_CASE) || defined(PROTO)
2499 * Set the case of the file name, if it already exists. This will cause the
2500 * file name to remain exactly the same.
2501 * Only required for file systems where case is ignored and preserved.
2503 /*ARGSUSED*/
2504 void
2505 fname_case(name, len)
2506 char_u *name;
2507 int len; /* buffer size, only used when name gets longer */
2509 struct stat st;
2510 char_u *slash, *tail;
2511 DIR *dirp;
2512 struct dirent *dp;
2514 if (lstat((char *)name, &st) >= 0)
2516 /* Open the directory where the file is located. */
2517 slash = vim_strrchr(name, '/');
2518 if (slash == NULL)
2520 dirp = opendir(".");
2521 tail = name;
2523 else
2525 *slash = NUL;
2526 dirp = opendir((char *)name);
2527 *slash = '/';
2528 tail = slash + 1;
2531 if (dirp != NULL)
2533 while ((dp = readdir(dirp)) != NULL)
2535 /* Only accept names that differ in case and are the same byte
2536 * length. TODO: accept different length name. */
2537 if (STRICMP(tail, dp->d_name) == 0
2538 && STRLEN(tail) == STRLEN(dp->d_name))
2540 char_u newname[MAXPATHL + 1];
2541 struct stat st2;
2543 /* Verify the inode is equal. */
2544 vim_strncpy(newname, name, MAXPATHL);
2545 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2546 MAXPATHL - (tail - name));
2547 if (lstat((char *)newname, &st2) >= 0
2548 && st.st_ino == st2.st_ino
2549 && st.st_dev == st2.st_dev)
2551 STRCPY(tail, dp->d_name);
2552 break;
2557 closedir(dirp);
2561 #endif
2564 * Get file permissions for 'name'.
2565 * Returns -1 when it doesn't exist.
2567 long
2568 mch_getperm(name)
2569 char_u *name;
2571 struct stat statb;
2573 /* Keep the #ifdef outside of stat(), it may be a macro. */
2574 #ifdef VMS
2575 if (stat((char *)vms_fixfilename(name), &statb))
2576 #else
2577 if (stat((char *)name, &statb))
2578 #endif
2579 return -1;
2580 #ifdef __INTERIX
2581 /* The top bit makes the value negative, which means the file doesn't
2582 * exist. Remove the bit, we don't use it. */
2583 return statb.st_mode & ~S_ADDACE;
2584 #else
2585 return statb.st_mode;
2586 #endif
2590 * set file permission for 'name' to 'perm'
2592 * return FAIL for failure, OK otherwise
2595 mch_setperm(name, perm)
2596 char_u *name;
2597 long perm;
2599 return (chmod((char *)
2600 #ifdef VMS
2601 vms_fixfilename(name),
2602 #else
2603 name,
2604 #endif
2605 (mode_t)perm) == 0 ? OK : FAIL);
2608 #if defined(HAVE_ACL) || defined(PROTO)
2609 # ifdef HAVE_SYS_ACL_H
2610 # include <sys/acl.h>
2611 # endif
2612 # ifdef HAVE_SYS_ACCESS_H
2613 # include <sys/access.h>
2614 # endif
2616 # ifdef HAVE_SOLARIS_ACL
2617 typedef struct vim_acl_solaris_T {
2618 int acl_cnt;
2619 aclent_t *acl_entry;
2620 } vim_acl_solaris_T;
2621 # endif
2623 #if defined(HAVE_SELINUX) || defined(PROTO)
2625 * Copy security info from "from_file" to "to_file".
2627 void
2628 mch_copy_sec(from_file, to_file)
2629 char_u *from_file;
2630 char_u *to_file;
2632 if (from_file == NULL)
2633 return;
2635 if (selinux_enabled == -1)
2636 selinux_enabled = is_selinux_enabled();
2638 if (selinux_enabled > 0)
2640 security_context_t from_context = NULL;
2641 security_context_t to_context = NULL;
2643 if (getfilecon((char *)from_file, &from_context) < 0)
2645 /* If the filesystem doesn't support extended attributes,
2646 the original had no special security context and the
2647 target cannot have one either. */
2648 if (errno == EOPNOTSUPP)
2649 return;
2651 MSG_PUTS(_("\nCould not get security context for "));
2652 msg_outtrans(from_file);
2653 msg_putchar('\n');
2654 return;
2656 if (getfilecon((char *)to_file, &to_context) < 0)
2658 MSG_PUTS(_("\nCould not get security context for "));
2659 msg_outtrans(to_file);
2660 msg_putchar('\n');
2661 freecon (from_context);
2662 return ;
2664 if (strcmp(from_context, to_context) != 0)
2666 if (setfilecon((char *)to_file, from_context) < 0)
2668 MSG_PUTS(_("\nCould not set security context for "));
2669 msg_outtrans(to_file);
2670 msg_putchar('\n');
2673 freecon(to_context);
2674 freecon(from_context);
2677 #endif /* HAVE_SELINUX */
2680 * Return a pointer to the ACL of file "fname" in allocated memory.
2681 * Return NULL if the ACL is not available for whatever reason.
2683 vim_acl_T
2684 mch_get_acl(fname)
2685 char_u *fname;
2687 vim_acl_T ret = NULL;
2688 #ifdef HAVE_POSIX_ACL
2689 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2690 #else
2691 #ifdef HAVE_SOLARIS_ACL
2692 vim_acl_solaris_T *aclent;
2694 aclent = malloc(sizeof(vim_acl_solaris_T));
2695 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2697 free(aclent);
2698 return NULL;
2700 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2701 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2703 free(aclent->acl_entry);
2704 free(aclent);
2705 return NULL;
2707 ret = (vim_acl_T)aclent;
2708 #else
2709 #if defined(HAVE_AIX_ACL)
2710 int aclsize;
2711 struct acl *aclent;
2713 aclsize = sizeof(struct acl);
2714 aclent = malloc(aclsize);
2715 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2717 if (errno == ENOSPC)
2719 aclsize = aclent->acl_len;
2720 aclent = realloc(aclent, aclsize);
2721 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2723 free(aclent);
2724 return NULL;
2727 else
2729 free(aclent);
2730 return NULL;
2733 ret = (vim_acl_T)aclent;
2734 #endif /* HAVE_AIX_ACL */
2735 #endif /* HAVE_SOLARIS_ACL */
2736 #endif /* HAVE_POSIX_ACL */
2737 return ret;
2741 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2743 void
2744 mch_set_acl(fname, aclent)
2745 char_u *fname;
2746 vim_acl_T aclent;
2748 if (aclent == NULL)
2749 return;
2750 #ifdef HAVE_POSIX_ACL
2751 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2752 #else
2753 #ifdef HAVE_SOLARIS_ACL
2754 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2755 ((vim_acl_solaris_T *)aclent)->acl_entry);
2756 #else
2757 #ifdef HAVE_AIX_ACL
2758 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2759 #endif /* HAVE_AIX_ACL */
2760 #endif /* HAVE_SOLARIS_ACL */
2761 #endif /* HAVE_POSIX_ACL */
2764 void
2765 mch_free_acl(aclent)
2766 vim_acl_T aclent;
2768 if (aclent == NULL)
2769 return;
2770 #ifdef HAVE_POSIX_ACL
2771 acl_free((acl_t)aclent);
2772 #else
2773 #ifdef HAVE_SOLARIS_ACL
2774 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2775 free(aclent);
2776 #else
2777 #ifdef HAVE_AIX_ACL
2778 free(aclent);
2779 #endif /* HAVE_AIX_ACL */
2780 #endif /* HAVE_SOLARIS_ACL */
2781 #endif /* HAVE_POSIX_ACL */
2783 #endif
2786 * Set hidden flag for "name".
2788 /* ARGSUSED */
2789 void
2790 mch_hide(name)
2791 char_u *name;
2793 /* can't hide a file */
2797 * return TRUE if "name" is a directory
2798 * return FALSE if "name" is not a directory
2799 * return FALSE for error
2802 mch_isdir(name)
2803 char_u *name;
2805 struct stat statb;
2807 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2808 return FALSE;
2809 if (stat((char *)name, &statb))
2810 return FALSE;
2811 #ifdef _POSIX_SOURCE
2812 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2813 #else
2814 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2815 #endif
2818 static int executable_file __ARGS((char_u *name));
2821 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2823 static int
2824 executable_file(name)
2825 char_u *name;
2827 struct stat st;
2829 if (stat((char *)name, &st))
2830 return 0;
2831 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2835 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2836 * Return -1 if unknown.
2839 mch_can_exe(name)
2840 char_u *name;
2842 char_u *buf;
2843 char_u *p, *e;
2844 int retval;
2846 /* If it's an absolute or relative path don't need to use $PATH. */
2847 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2848 || (name[1] == '.' && name[2] == '/'))))
2849 return executable_file(name);
2851 p = (char_u *)getenv("PATH");
2852 if (p == NULL || *p == NUL)
2853 return -1;
2854 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2855 if (buf == NULL)
2856 return -1;
2859 * Walk through all entries in $PATH to check if "name" exists there and
2860 * is an executable file.
2862 for (;;)
2864 e = (char_u *)strchr((char *)p, ':');
2865 if (e == NULL)
2866 e = p + STRLEN(p);
2867 if (e - p <= 1) /* empty entry means current dir */
2868 STRCPY(buf, "./");
2869 else
2871 vim_strncpy(buf, p, e - p);
2872 add_pathsep(buf);
2874 STRCAT(buf, name);
2875 retval = executable_file(buf);
2876 if (retval == 1)
2877 break;
2879 if (*e != ':')
2880 break;
2881 p = e + 1;
2884 vim_free(buf);
2885 return retval;
2889 * Check what "name" is:
2890 * NODE_NORMAL: file or directory (or doesn't exist)
2891 * NODE_WRITABLE: writable device, socket, fifo, etc.
2892 * NODE_OTHER: non-writable things
2895 mch_nodetype(name)
2896 char_u *name;
2898 struct stat st;
2900 if (stat((char *)name, &st))
2901 return NODE_NORMAL;
2902 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2903 return NODE_NORMAL;
2904 #ifndef OS2
2905 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2906 return NODE_OTHER;
2907 #endif
2908 /* Everything else is writable? */
2909 return NODE_WRITABLE;
2912 void
2913 mch_early_init()
2915 #ifdef HAVE_CHECK_STACK_GROWTH
2916 int i;
2918 check_stack_growth((char *)&i);
2920 # ifdef HAVE_STACK_LIMIT
2921 get_stack_limit();
2922 # endif
2924 #endif
2927 * Setup an alternative stack for signals. Helps to catch signals when
2928 * running out of stack space.
2929 * Use of sigaltstack() is preferred, it's more portable.
2930 * Ignore any errors.
2932 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2933 signal_stack = (char *)alloc(SIGSTKSZ);
2934 init_signal_stack();
2935 #endif
2938 #if defined(EXITFREE) || defined(PROTO)
2939 void
2940 mch_free_mem()
2942 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2943 if (clip_star.owned)
2944 clip_lose_selection(&clip_star);
2945 if (clip_plus.owned)
2946 clip_lose_selection(&clip_plus);
2947 # endif
2948 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2949 if (xterm_Shell != (Widget)0)
2950 XtDestroyWidget(xterm_Shell);
2951 # ifndef LESSTIF_VERSION
2952 /* Lesstif crashes here, lose some memory */
2953 if (xterm_dpy != NULL)
2954 XtCloseDisplay(xterm_dpy);
2955 if (app_context != (XtAppContext)NULL)
2957 XtDestroyApplicationContext(app_context);
2958 # ifdef FEAT_X11
2959 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2960 # endif
2962 # endif
2963 # endif
2964 /* Don't close the display for GTK 1, it is done in exit(). */
2965 # if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
2966 if (x11_display != NULL
2967 # ifdef FEAT_XCLIPBOARD
2968 && x11_display != xterm_dpy
2969 # endif
2971 XCloseDisplay(x11_display);
2972 # endif
2973 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2974 vim_free(signal_stack);
2975 signal_stack = NULL;
2976 # endif
2977 # ifdef FEAT_TITLE
2978 vim_free(oldtitle);
2979 vim_free(oldicon);
2980 # endif
2982 #endif
2984 static void exit_scroll __ARGS((void));
2987 * Output a newline when exiting.
2988 * Make sure the newline goes to the same stream as the text.
2990 static void
2991 exit_scroll()
2993 if (silent_mode)
2994 return;
2995 if (newline_on_exit || msg_didout)
2997 if (msg_use_printf())
2999 if (info_message)
3000 mch_msg("\n");
3001 else
3002 mch_errmsg("\r\n");
3004 else
3005 out_char('\n');
3007 else
3009 restore_cterm_colors(); /* get original colors back */
3010 msg_clr_eos_force(); /* clear the rest of the display */
3011 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3015 void
3016 mch_exit(r)
3017 int r;
3019 exiting = TRUE;
3021 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3022 x11_export_final_selection();
3023 #endif
3025 #ifdef FEAT_GUI
3026 if (!gui.in_use)
3027 #endif
3029 settmode(TMODE_COOK);
3030 #ifdef FEAT_TITLE
3031 mch_restore_title(3); /* restore xterm title and icon name */
3032 #endif
3034 * When t_ti is not empty but it doesn't cause swapping terminal
3035 * pages, need to output a newline when msg_didout is set. But when
3036 * t_ti does swap pages it should not go to the shell page. Do this
3037 * before stoptermcap().
3039 if (swapping_screen() && !newline_on_exit)
3040 exit_scroll();
3042 /* Stop termcap: May need to check for T_CRV response, which
3043 * requires RAW mode. */
3044 stoptermcap();
3047 * A newline is only required after a message in the alternate screen.
3048 * This is set to TRUE by wait_return().
3050 if (!swapping_screen() || newline_on_exit)
3051 exit_scroll();
3053 /* Cursor may have been switched off without calling starttermcap()
3054 * when doing "vim -u vimrc" and vimrc contains ":q". */
3055 if (full_screen)
3056 cursor_on();
3058 out_flush();
3059 ml_close_all(TRUE); /* remove all memfiles */
3060 may_core_dump();
3061 #ifdef FEAT_GUI
3062 if (gui.in_use)
3063 gui_exit(r);
3064 #endif
3066 #ifdef MACOS_CONVERT
3067 mac_conv_cleanup();
3068 #endif
3070 #ifdef __QNX__
3071 /* A core dump won't be created if the signal handler
3072 * doesn't return, so we can't call exit() */
3073 if (deadly_signal != 0)
3074 return;
3075 #endif
3077 #ifdef FEAT_NETBEANS_INTG
3078 if (usingNetbeans)
3079 netbeans_send_disconnect();
3080 #endif
3082 #ifdef EXITFREE
3083 free_all_mem();
3084 #endif
3086 exit(r);
3089 static void
3090 may_core_dump()
3092 if (deadly_signal != 0)
3094 signal(deadly_signal, SIG_DFL);
3095 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3099 #ifndef VMS
3101 void
3102 mch_settmode(tmode)
3103 int tmode;
3105 static int first = TRUE;
3107 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3108 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3110 * for "new" tty systems
3112 # ifdef HAVE_TERMIOS_H
3113 static struct termios told;
3114 struct termios tnew;
3115 # else
3116 static struct termio told;
3117 struct termio tnew;
3118 # endif
3120 if (first)
3122 first = FALSE;
3123 # if defined(HAVE_TERMIOS_H)
3124 tcgetattr(read_cmd_fd, &told);
3125 # else
3126 ioctl(read_cmd_fd, TCGETA, &told);
3127 # endif
3130 tnew = told;
3131 if (tmode == TMODE_RAW)
3134 * ~ICRNL enables typing ^V^M
3136 tnew.c_iflag &= ~ICRNL;
3137 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3138 # if defined(IEXTEN) && !defined(__MINT__)
3139 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3140 /* but it breaks function keys on MINT */
3141 # endif
3143 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3144 tnew.c_oflag &= ~ONLCR;
3145 # endif
3146 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3147 tnew.c_cc[VTIME] = 0; /* don't wait */
3149 else if (tmode == TMODE_SLEEP)
3150 tnew.c_lflag &= ~(ECHO);
3152 # if defined(HAVE_TERMIOS_H)
3154 int n = 10;
3156 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3157 * few times. */
3158 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3159 && errno == EINTR && n > 0)
3160 --n;
3162 # else
3163 ioctl(read_cmd_fd, TCSETA, &tnew);
3164 # endif
3166 #else
3169 * for "old" tty systems
3171 # ifndef TIOCSETN
3172 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3173 # endif
3174 static struct sgttyb ttybold;
3175 struct sgttyb ttybnew;
3177 if (first)
3179 first = FALSE;
3180 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3183 ttybnew = ttybold;
3184 if (tmode == TMODE_RAW)
3186 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3187 ttybnew.sg_flags |= RAW;
3189 else if (tmode == TMODE_SLEEP)
3190 ttybnew.sg_flags &= ~(ECHO);
3191 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3192 #endif
3193 curr_tmode = tmode;
3197 * Try to get the code for "t_kb" from the stty setting
3199 * Even if termcap claims a backspace key, the user's setting *should*
3200 * prevail. stty knows more about reality than termcap does, and if
3201 * somebody's usual erase key is DEL (which, for most BSD users, it will
3202 * be), they're going to get really annoyed if their erase key starts
3203 * doing forward deletes for no reason. (Eric Fischer)
3205 void
3206 get_stty()
3208 char_u buf[2];
3209 char_u *p;
3211 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3212 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3213 /* for "new" tty systems */
3214 # ifdef HAVE_TERMIOS_H
3215 struct termios keys;
3216 # else
3217 struct termio keys;
3218 # endif
3220 # if defined(HAVE_TERMIOS_H)
3221 if (tcgetattr(read_cmd_fd, &keys) != -1)
3222 # else
3223 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3224 # endif
3226 buf[0] = keys.c_cc[VERASE];
3227 intr_char = keys.c_cc[VINTR];
3228 #else
3229 /* for "old" tty systems */
3230 struct sgttyb keys;
3232 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3234 buf[0] = keys.sg_erase;
3235 intr_char = keys.sg_kill;
3236 #endif
3237 buf[1] = NUL;
3238 add_termcode((char_u *)"kb", buf, FALSE);
3241 * If <BS> and <DEL> are now the same, redefine <DEL>.
3243 p = find_termcode((char_u *)"kD");
3244 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3245 do_fixdel(NULL);
3247 #if 0
3248 } /* to keep cindent happy */
3249 #endif
3252 #endif /* VMS */
3254 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3256 * Set mouse clicks on or off.
3258 void
3259 mch_setmouse(on)
3260 int on;
3262 static int ison = FALSE;
3263 int xterm_mouse_vers;
3265 if (on == ison) /* return quickly if nothing to do */
3266 return;
3268 xterm_mouse_vers = use_xterm_mouse();
3269 if (xterm_mouse_vers > 0)
3271 if (on) /* enable mouse events, use mouse tracking if available */
3272 out_str_nf((char_u *)
3273 (xterm_mouse_vers > 1
3274 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3275 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3276 else /* disable mouse events, could probably always send the same */
3277 out_str_nf((char_u *)
3278 (xterm_mouse_vers > 1
3279 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3280 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3281 ison = on;
3284 # ifdef FEAT_MOUSE_DEC
3285 else if (ttym_flags == TTYM_DEC)
3287 if (on) /* enable mouse events */
3288 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3289 else /* disable mouse events */
3290 out_str_nf((char_u *)"\033['z");
3291 ison = on;
3293 # endif
3295 # ifdef FEAT_MOUSE_GPM
3296 else
3298 if (on)
3300 if (gpm_open())
3301 ison = TRUE;
3303 else
3305 gpm_close();
3306 ison = FALSE;
3309 # endif
3311 # ifdef FEAT_SYSMOUSE
3312 else
3314 if (on)
3316 if (sysmouse_open() == OK)
3317 ison = TRUE;
3319 else
3321 sysmouse_close();
3322 ison = FALSE;
3325 # endif
3327 # ifdef FEAT_MOUSE_JSB
3328 else
3330 if (on)
3332 /* D - Enable Mouse up/down messages
3333 * L - Enable Left Button Reporting
3334 * M - Enable Middle Button Reporting
3335 * R - Enable Right Button Reporting
3336 * K - Enable SHIFT and CTRL key Reporting
3337 * + - Enable Advanced messaging of mouse moves and up/down messages
3338 * Q - Quiet No Ack
3339 * # - Numeric value of mouse pointer required
3340 * 0 = Multiview 2000 cursor, used as standard
3341 * 1 = Windows Arrow
3342 * 2 = Windows I Beam
3343 * 3 = Windows Hour Glass
3344 * 4 = Windows Cross Hair
3345 * 5 = Windows UP Arrow
3347 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3348 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3349 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3350 #else
3351 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3352 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3353 #endif
3354 ison = TRUE;
3356 else
3358 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3359 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3360 ison = FALSE;
3363 # endif
3364 # ifdef FEAT_MOUSE_PTERM
3365 else
3367 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3368 if (on)
3369 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3370 else
3371 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3372 ison = on;
3374 # endif
3378 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3380 void
3381 check_mouse_termcode()
3383 # ifdef FEAT_MOUSE_XTERM
3384 if (use_xterm_mouse()
3385 # ifdef FEAT_GUI
3386 && !gui.in_use
3387 # endif
3390 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3391 ? IF_EB("\233M", CSI_STR "M")
3392 : IF_EB("\033[M", ESC_STR "[M")));
3393 if (*p_mouse != NUL)
3395 /* force mouse off and maybe on to send possibly new mouse
3396 * activation sequence to the xterm, with(out) drag tracing. */
3397 mch_setmouse(FALSE);
3398 setmouse();
3401 else
3402 del_mouse_termcode(KS_MOUSE);
3403 # endif
3405 # ifdef FEAT_MOUSE_GPM
3406 if (!use_xterm_mouse()
3407 # ifdef FEAT_GUI
3408 && !gui.in_use
3409 # endif
3411 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3412 # endif
3414 # ifdef FEAT_SYSMOUSE
3415 if (!use_xterm_mouse()
3416 # ifdef FEAT_GUI
3417 && !gui.in_use
3418 # endif
3420 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3421 # endif
3423 # ifdef FEAT_MOUSE_JSB
3424 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3425 if (!use_xterm_mouse()
3426 # ifdef FEAT_GUI
3427 && !gui.in_use
3428 # endif
3430 set_mouse_termcode(KS_JSBTERM_MOUSE,
3431 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3432 else
3433 del_mouse_termcode(KS_JSBTERM_MOUSE);
3434 # endif
3436 # ifdef FEAT_MOUSE_NET
3437 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3438 * define it in the GUI or when using an xterm. */
3439 if (!use_xterm_mouse()
3440 # ifdef FEAT_GUI
3441 && !gui.in_use
3442 # endif
3444 set_mouse_termcode(KS_NETTERM_MOUSE,
3445 (char_u *)IF_EB("\033}", ESC_STR "}"));
3446 else
3447 del_mouse_termcode(KS_NETTERM_MOUSE);
3448 # endif
3450 # ifdef FEAT_MOUSE_DEC
3451 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3452 if (!use_xterm_mouse()
3453 # ifdef FEAT_GUI
3454 && !gui.in_use
3455 # endif
3457 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3458 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
3459 else
3460 del_mouse_termcode(KS_DEC_MOUSE);
3461 # endif
3462 # ifdef FEAT_MOUSE_PTERM
3463 /* same as the dec mouse */
3464 if (!use_xterm_mouse()
3465 # ifdef FEAT_GUI
3466 && !gui.in_use
3467 # endif
3469 set_mouse_termcode(KS_PTERM_MOUSE,
3470 (char_u *) IF_EB("\033[", ESC_STR "["));
3471 else
3472 del_mouse_termcode(KS_PTERM_MOUSE);
3473 # endif
3475 #endif
3478 * set screen mode, always fails.
3480 /* ARGSUSED */
3482 mch_screenmode(arg)
3483 char_u *arg;
3485 EMSG(_(e_screenmode));
3486 return FAIL;
3489 #ifndef VMS
3492 * Try to get the current window size:
3493 * 1. with an ioctl(), most accurate method
3494 * 2. from the environment variables LINES and COLUMNS
3495 * 3. from the termcap
3496 * 4. keep using the old values
3497 * Return OK when size could be determined, FAIL otherwise.
3500 mch_get_shellsize()
3502 long rows = 0;
3503 long columns = 0;
3504 char_u *p;
3507 * For OS/2 use _scrsize().
3509 # ifdef __EMX__
3511 int s[2];
3513 _scrsize(s);
3514 columns = s[0];
3515 rows = s[1];
3517 # endif
3520 * 1. try using an ioctl. It is the most accurate method.
3522 * Try using TIOCGWINSZ first, some systems that have it also define
3523 * TIOCGSIZE but don't have a struct ttysize.
3525 # ifdef TIOCGWINSZ
3527 struct winsize ws;
3528 int fd = 1;
3530 /* When stdout is not a tty, use stdin for the ioctl(). */
3531 if (!isatty(fd) && isatty(read_cmd_fd))
3532 fd = read_cmd_fd;
3533 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3535 columns = ws.ws_col;
3536 rows = ws.ws_row;
3539 # else /* TIOCGWINSZ */
3540 # ifdef TIOCGSIZE
3542 struct ttysize ts;
3543 int fd = 1;
3545 /* When stdout is not a tty, use stdin for the ioctl(). */
3546 if (!isatty(fd) && isatty(read_cmd_fd))
3547 fd = read_cmd_fd;
3548 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3550 columns = ts.ts_cols;
3551 rows = ts.ts_lines;
3554 # endif /* TIOCGSIZE */
3555 # endif /* TIOCGWINSZ */
3558 * 2. get size from environment
3559 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3560 * the ioctl() values!
3562 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
3564 if ((p = (char_u *)getenv("LINES")))
3565 rows = atoi((char *)p);
3566 if ((p = (char_u *)getenv("COLUMNS")))
3567 columns = atoi((char *)p);
3570 #ifdef HAVE_TGETENT
3572 * 3. try reading "co" and "li" entries from termcap
3574 if (columns == 0 || rows == 0)
3575 getlinecol(&columns, &rows);
3576 #endif
3579 * 4. If everything fails, use the old values
3581 if (columns <= 0 || rows <= 0)
3582 return FAIL;
3584 Rows = rows;
3585 Columns = columns;
3586 return OK;
3590 * Try to set the window size to Rows and Columns.
3592 void
3593 mch_set_shellsize()
3595 if (*T_CWS)
3598 * NOTE: if you get an error here that term_set_winsize() is
3599 * undefined, check the output of configure. It could probably not
3600 * find a ncurses, termcap or termlib library.
3602 term_set_winsize((int)Rows, (int)Columns);
3603 out_flush();
3604 screen_start(); /* don't know where cursor is now */
3608 #endif /* VMS */
3611 * Rows and/or Columns has changed.
3613 void
3614 mch_new_shellsize()
3616 /* Nothing to do. */
3619 #ifndef USE_SYSTEM
3620 static void append_ga_line __ARGS((garray_T *gap));
3623 * Append the text in "gap" below the cursor line and clear "gap".
3625 static void
3626 append_ga_line(gap)
3627 garray_T *gap;
3629 /* Remove trailing CR. */
3630 if (gap->ga_len > 0
3631 && !curbuf->b_p_bin
3632 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3633 --gap->ga_len;
3634 ga_append(gap, NUL);
3635 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3636 gap->ga_len = 0;
3638 #endif
3641 mch_call_shell(cmd, options)
3642 char_u *cmd;
3643 int options; /* SHELL_*, see vim.h */
3645 #ifdef VMS
3646 char *ifn = NULL;
3647 char *ofn = NULL;
3648 #endif
3649 int tmode = cur_tmode;
3650 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3651 int x;
3652 # ifndef __EMX__
3653 char_u *newcmd; /* only needed for unix */
3654 # else
3656 * Set the preferred shell in the EMXSHELL environment variable (but
3657 * only if it is different from what is already in the environment).
3658 * Emx then takes care of whether to use "/c" or "-c" in an
3659 * intelligent way. Simply pass the whole thing to emx's system() call.
3660 * Emx also starts an interactive shell if system() is passed an empty
3661 * string.
3663 char_u *p, *old;
3665 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3667 /* should check HAVE_SETENV, but I know we don't have it. */
3668 p = alloc(10 + strlen(p_sh));
3669 if (p)
3671 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3672 putenv((char *)p); /* don't free the pointer! */
3675 # endif
3677 out_flush();
3679 if (options & SHELL_COOKED)
3680 settmode(TMODE_COOK); /* set to normal mode */
3682 # ifdef __EMX__
3683 if (cmd == NULL)
3684 x = system(""); /* this starts an interactive shell in emx */
3685 else
3686 x = system((char *)cmd);
3687 /* system() returns -1 when error occurs in starting shell */
3688 if (x == -1 && !emsg_silent)
3690 MSG_PUTS(_("\nCannot execute shell "));
3691 msg_outtrans(p_sh);
3692 msg_putchar('\n');
3694 # else /* not __EMX__ */
3695 if (cmd == NULL)
3696 x = system((char *)p_sh);
3697 else
3699 # ifdef VMS
3700 if (ofn = strchr((char *)cmd, '>'))
3701 *ofn++ = '\0';
3702 if (ifn = strchr((char *)cmd, '<'))
3704 char *p;
3706 *ifn++ = '\0';
3707 p = strchr(ifn,' '); /* chop off any trailing spaces */
3708 if (p)
3709 *p = '\0';
3711 if (ofn)
3712 x = vms_sys((char *)cmd, ofn, ifn);
3713 else
3714 x = system((char *)cmd);
3715 # else
3716 newcmd = lalloc(STRLEN(p_sh)
3717 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3718 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3719 if (newcmd == NULL)
3720 x = 0;
3721 else
3723 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3724 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3725 (char *)p_shcf,
3726 (char *)cmd);
3727 x = system((char *)newcmd);
3728 vim_free(newcmd);
3730 # endif
3732 # ifdef VMS
3733 x = vms_sys_status(x);
3734 # endif
3735 if (emsg_silent)
3737 else if (x == 127)
3738 MSG_PUTS(_("\nCannot execute shell sh\n"));
3739 # endif /* __EMX__ */
3740 else if (x && !(options & SHELL_SILENT))
3742 MSG_PUTS(_("\nshell returned "));
3743 msg_outnum((long)x);
3744 msg_putchar('\n');
3747 if (tmode == TMODE_RAW)
3748 settmode(TMODE_RAW); /* set to raw mode */
3749 # ifdef FEAT_TITLE
3750 resettitle();
3751 # endif
3752 return x;
3754 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3756 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3757 127, some shells use that already */
3759 char_u *newcmd = NULL;
3760 pid_t pid;
3761 pid_t wpid = 0;
3762 pid_t wait_pid = 0;
3763 # ifdef HAVE_UNION_WAIT
3764 union wait status;
3765 # else
3766 int status = -1;
3767 # endif
3768 int retval = -1;
3769 char **argv = NULL;
3770 int argc;
3771 int i;
3772 char_u *p;
3773 int inquote;
3774 int pty_master_fd = -1; /* for pty's */
3775 # ifdef FEAT_GUI
3776 int pty_slave_fd = -1;
3777 char *tty_name;
3778 # endif
3779 int fd_toshell[2]; /* for pipes */
3780 int fd_fromshell[2];
3781 int pipe_error = FALSE;
3782 # ifdef HAVE_SETENV
3783 char envbuf[50];
3784 # else
3785 static char envbuf_Rows[20];
3786 static char envbuf_Columns[20];
3787 # endif
3788 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
3790 out_flush();
3791 if (options & SHELL_COOKED)
3792 settmode(TMODE_COOK); /* set to normal mode */
3794 newcmd = vim_strsave(p_sh);
3795 if (newcmd == NULL) /* out of memory */
3796 goto error;
3799 * Do this loop twice:
3800 * 1: find number of arguments
3801 * 2: separate them and build argv[]
3803 for (i = 0; i < 2; ++i)
3805 p = newcmd;
3806 inquote = FALSE;
3807 argc = 0;
3808 for (;;)
3810 if (i == 1)
3811 argv[argc] = (char *)p;
3812 ++argc;
3813 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3815 if (*p == '"')
3816 inquote = !inquote;
3817 ++p;
3819 if (*p == NUL)
3820 break;
3821 if (i == 1)
3822 *p++ = NUL;
3823 p = skipwhite(p);
3825 if (argv == NULL)
3827 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3828 if (argv == NULL) /* out of memory */
3829 goto error;
3832 if (cmd != NULL)
3834 if (extra_shell_arg != NULL)
3835 argv[argc++] = (char *)extra_shell_arg;
3836 argv[argc++] = (char *)p_shcf;
3837 argv[argc++] = (char *)cmd;
3839 argv[argc] = NULL;
3842 * For the GUI, when writing the output into the buffer and when reading
3843 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3844 * of the executed command into the Vim window. Or use a pipe.
3846 if ((options & (SHELL_READ|SHELL_WRITE))
3847 # ifdef FEAT_GUI
3848 || (gui.in_use && show_shell_mess)
3849 # endif
3852 # ifdef FEAT_GUI
3854 * Try to open a master pty.
3855 * If this works, open the slave pty.
3856 * If the slave can't be opened, close the master pty.
3858 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
3860 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3861 if (pty_master_fd >= 0 && ((pty_slave_fd =
3862 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3864 close(pty_master_fd);
3865 pty_master_fd = -1;
3869 * If not opening a pty or it didn't work, try using pipes.
3871 if (pty_master_fd < 0)
3872 # endif
3874 pipe_error = (pipe(fd_toshell) < 0);
3875 if (!pipe_error) /* pipe create OK */
3877 pipe_error = (pipe(fd_fromshell) < 0);
3878 if (pipe_error) /* pipe create failed */
3880 close(fd_toshell[0]);
3881 close(fd_toshell[1]);
3884 if (pipe_error)
3886 MSG_PUTS(_("\nCannot create pipes\n"));
3887 out_flush();
3892 if (!pipe_error) /* pty or pipe opened or not used */
3894 # ifdef __BEOS__
3895 beos_cleanup_read_thread();
3896 # endif
3898 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3900 MSG_PUTS(_("\nCannot fork\n"));
3901 if ((options & (SHELL_READ|SHELL_WRITE))
3902 # ifdef FEAT_GUI
3903 || (gui.in_use && show_shell_mess)
3904 # endif
3907 # ifdef FEAT_GUI
3908 if (pty_master_fd >= 0) /* close the pseudo tty */
3910 close(pty_master_fd);
3911 close(pty_slave_fd);
3913 else /* close the pipes */
3914 # endif
3916 close(fd_toshell[0]);
3917 close(fd_toshell[1]);
3918 close(fd_fromshell[0]);
3919 close(fd_fromshell[1]);
3923 else if (pid == 0) /* child */
3925 reset_signals(); /* handle signals normally */
3927 if (!show_shell_mess || (options & SHELL_EXPAND))
3929 int fd;
3932 * Don't want to show any message from the shell. Can't just
3933 * close stdout and stderr though, because some systems will
3934 * break if you try to write to them after that, so we must
3935 * use dup() to replace them with something else -- webb
3936 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3937 * waiting for input.
3939 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3940 fclose(stdin);
3941 fclose(stdout);
3942 fclose(stderr);
3945 * If any of these open()'s and dup()'s fail, we just continue
3946 * anyway. It's not fatal, and on most systems it will make
3947 * no difference at all. On a few it will cause the execvp()
3948 * to exit with a non-zero status even when the completion
3949 * could be done, which is nothing too serious. If the open()
3950 * or dup() failed we'd just do the same thing ourselves
3951 * anyway -- webb
3953 if (fd >= 0)
3955 ignored = dup(fd); /* To replace stdin (fd 0) */
3956 ignored = dup(fd); /* To replace stdout (fd 1) */
3957 ignored = dup(fd); /* To replace stderr (fd 2) */
3959 /* Don't need this now that we've duplicated it */
3960 close(fd);
3963 else if ((options & (SHELL_READ|SHELL_WRITE))
3964 # ifdef FEAT_GUI
3965 || gui.in_use
3966 # endif
3970 # ifdef HAVE_SETSID
3971 /* Create our own process group, so that the child and all its
3972 * children can be kill()ed. Don't do this when using pipes,
3973 * because stdin is not a tty, we would lose /dev/tty. */
3974 if (p_stmp)
3976 (void)setsid();
3977 # if defined(SIGHUP)
3978 /* When doing "!xterm&" and 'shell' is bash: the shell
3979 * will exit and send SIGHUP to all processes in its
3980 * group, killing the just started process. Ignore SIGHUP
3981 * to avoid that. (suggested by Simon Schubert)
3983 signal(SIGHUP, SIG_IGN);
3984 # endif
3986 # endif
3987 # ifdef FEAT_GUI
3988 if (pty_slave_fd >= 0)
3990 /* push stream discipline modules */
3991 if (options & SHELL_COOKED)
3992 SetupSlavePTY(pty_slave_fd);
3993 # ifdef TIOCSCTTY
3994 /* Try to become controlling tty (probably doesn't work,
3995 * unless run by root) */
3996 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
3997 # endif
3999 # endif
4000 /* Simulate to have a dumb terminal (for now) */
4001 # ifdef HAVE_SETENV
4002 setenv("TERM", "dumb", 1);
4003 sprintf((char *)envbuf, "%ld", Rows);
4004 setenv("ROWS", (char *)envbuf, 1);
4005 sprintf((char *)envbuf, "%ld", Rows);
4006 setenv("LINES", (char *)envbuf, 1);
4007 sprintf((char *)envbuf, "%ld", Columns);
4008 setenv("COLUMNS", (char *)envbuf, 1);
4009 # else
4011 * Putenv does not copy the string, it has to remain valid.
4012 * Use a static array to avoid losing allocated memory.
4014 putenv("TERM=dumb");
4015 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4016 putenv(envbuf_Rows);
4017 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4018 putenv(envbuf_Rows);
4019 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4020 putenv(envbuf_Columns);
4021 # endif
4024 * stderr is only redirected when using the GUI, so that a
4025 * program like gpg can still access the terminal to get a
4026 * passphrase using stderr.
4028 # ifdef FEAT_GUI
4029 if (pty_master_fd >= 0)
4031 close(pty_master_fd); /* close master side of pty */
4033 /* set up stdin/stdout/stderr for the child */
4034 close(0);
4035 ignored = dup(pty_slave_fd);
4036 close(1);
4037 ignored = dup(pty_slave_fd);
4038 if (gui.in_use)
4040 close(2);
4041 ignored = dup(pty_slave_fd);
4044 close(pty_slave_fd); /* has been dupped, close it now */
4046 else
4047 # endif
4049 /* set up stdin for the child */
4050 close(fd_toshell[1]);
4051 close(0);
4052 ignored = dup(fd_toshell[0]);
4053 close(fd_toshell[0]);
4055 /* set up stdout for the child */
4056 close(fd_fromshell[0]);
4057 close(1);
4058 ignored = dup(fd_fromshell[1]);
4059 close(fd_fromshell[1]);
4061 # ifdef FEAT_GUI
4062 if (gui.in_use)
4064 /* set up stderr for the child */
4065 close(2);
4066 ignored = dup(1);
4068 # endif
4073 * There is no type cast for the argv, because the type may be
4074 * different on different machines. This may cause a warning
4075 * message with strict compilers, don't worry about it.
4076 * Call _exit() instead of exit() to avoid closing the connection
4077 * to the X server (esp. with GTK, which uses atexit()).
4079 execvp(argv[0], argv);
4080 _exit(EXEC_FAILED); /* exec failed, return failure code */
4082 else /* parent */
4085 * While child is running, ignore terminating signals.
4086 * Do catch CTRL-C, so that "got_int" is set.
4088 catch_signals(SIG_IGN, SIG_ERR);
4089 catch_int_signal();
4092 * For the GUI we redirect stdin, stdout and stderr to our window.
4093 * This is also used to pipe stdin/stdout to/from the external
4094 * command.
4096 if ((options & (SHELL_READ|SHELL_WRITE))
4097 # ifdef FEAT_GUI
4098 || (gui.in_use && show_shell_mess)
4099 # endif
4102 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4103 char_u buffer[BUFLEN + 1];
4104 # ifdef FEAT_MBYTE
4105 int buffer_off = 0; /* valid bytes in buffer[] */
4106 # endif
4107 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4108 int ta_len = 0; /* valid bytes in ta_buf[] */
4109 int len;
4110 int p_more_save;
4111 int old_State;
4112 int c;
4113 int toshell_fd;
4114 int fromshell_fd;
4115 garray_T ga;
4116 int noread_cnt;
4117 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4118 struct timeval start_tv;
4119 # endif
4121 # ifdef FEAT_GUI
4122 if (pty_master_fd >= 0)
4124 close(pty_slave_fd); /* close slave side of pty */
4125 fromshell_fd = pty_master_fd;
4126 toshell_fd = dup(pty_master_fd);
4128 else
4129 # endif
4131 close(fd_toshell[0]);
4132 close(fd_fromshell[1]);
4133 toshell_fd = fd_toshell[1];
4134 fromshell_fd = fd_fromshell[0];
4138 * Write to the child if there are typed characters.
4139 * Read from the child if there are characters available.
4140 * Repeat the reading a few times if more characters are
4141 * available. Need to check for typed keys now and then, but
4142 * not too often (delays when no chars are available).
4143 * This loop is quit if no characters can be read from the pty
4144 * (WaitForChar detected special condition), or there are no
4145 * characters available and the child has exited.
4146 * Only check if the child has exited when there is no more
4147 * output. The child may exit before all the output has
4148 * been printed.
4150 * Currently this busy loops!
4151 * This can probably dead-lock when the write blocks!
4153 p_more_save = p_more;
4154 p_more = FALSE;
4155 old_State = State;
4156 State = EXTERNCMD; /* don't redraw at window resize */
4158 if ((options & SHELL_WRITE) && toshell_fd >= 0)
4160 /* Fork a process that will write the lines to the
4161 * external program. */
4162 if ((wpid = fork()) == -1)
4164 MSG_PUTS(_("\nCannot fork\n"));
4166 else if (wpid == 0)
4168 linenr_T lnum = curbuf->b_op_start.lnum;
4169 int written = 0;
4170 char_u *lp = ml_get(lnum);
4171 char_u *s;
4172 size_t l;
4174 /* child */
4175 close(fromshell_fd);
4176 for (;;)
4178 l = STRLEN(lp + written);
4179 if (l == 0)
4180 len = 0;
4181 else if (lp[written] == NL)
4182 /* NL -> NUL translation */
4183 len = write(toshell_fd, "", (size_t)1);
4184 else
4186 s = vim_strchr(lp + written, NL);
4187 len = write(toshell_fd, (char *)lp + written,
4188 s == NULL ? l : s - (lp + written));
4190 if (len == l)
4192 /* Finished a line, add a NL, unless this line
4193 * should not have one. */
4194 if (lnum != curbuf->b_op_end.lnum
4195 || !curbuf->b_p_bin
4196 || (lnum != write_no_eol_lnum
4197 && (lnum !=
4198 curbuf->b_ml.ml_line_count
4199 || curbuf->b_p_eol)))
4200 ignored = write(toshell_fd, "\n",
4201 (size_t)1);
4202 ++lnum;
4203 if (lnum > curbuf->b_op_end.lnum)
4205 /* finished all the lines, close pipe */
4206 close(toshell_fd);
4207 toshell_fd = -1;
4208 break;
4210 lp = ml_get(lnum);
4211 written = 0;
4213 else if (len > 0)
4214 written += len;
4216 _exit(0);
4218 else
4220 close(toshell_fd);
4221 toshell_fd = -1;
4225 if (options & SHELL_READ)
4226 ga_init2(&ga, 1, BUFLEN);
4228 noread_cnt = 0;
4229 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4230 gettimeofday(&start_tv, NULL);
4231 # endif
4232 for (;;)
4235 * Check if keys have been typed, write them to the child
4236 * if there are any.
4237 * Don't do this if we are expanding wild cards (would eat
4238 * typeahead).
4239 * Don't do this when filtering and terminal is in cooked
4240 * mode, the shell command will handle the I/O. Avoids
4241 * that a typed password is echoed for ssh or gpg command.
4242 * Don't get characters when the child has already
4243 * finished (wait_pid == 0).
4244 * Don't read characters unless we didn't get output for a
4245 * while (noread_cnt > 4), avoids that ":r !ls" eats
4246 * typeahead.
4248 len = 0;
4249 if (!(options & SHELL_EXPAND)
4250 && ((options &
4251 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4252 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4253 # ifdef FEAT_GUI
4254 || gui.in_use
4255 # endif
4257 && wait_pid == 0
4258 && (ta_len > 0 || noread_cnt > 4))
4260 if (ta_len == 0)
4262 /* Get extra characters when we don't have any.
4263 * Reset the counter and timer. */
4264 noread_cnt = 0;
4265 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4266 gettimeofday(&start_tv, NULL);
4267 # endif
4268 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4270 if (ta_len > 0 || len > 0)
4273 * For pipes:
4274 * Check for CTRL-C: send interrupt signal to child.
4275 * Check for CTRL-D: EOF, close pipe to child.
4277 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4279 # ifdef SIGINT
4281 * Send SIGINT to the child's group or all
4282 * processes in our group.
4284 if (ta_buf[ta_len] == Ctrl_C
4285 || ta_buf[ta_len] == intr_char)
4287 # ifdef HAVE_SETSID
4288 kill(-pid, SIGINT);
4289 # else
4290 kill(0, SIGINT);
4291 # endif
4292 if (wpid > 0)
4293 kill(wpid, SIGINT);
4295 # endif
4296 if (pty_master_fd < 0 && toshell_fd >= 0
4297 && ta_buf[ta_len] == Ctrl_D)
4299 close(toshell_fd);
4300 toshell_fd = -1;
4304 /* replace K_BS by <BS> and K_DEL by <DEL> */
4305 for (i = ta_len; i < ta_len + len; ++i)
4307 if (ta_buf[i] == CSI && len - i > 2)
4309 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4310 if (c == K_DEL || c == K_KDEL || c == K_BS)
4312 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4313 (size_t)(len - i - 2));
4314 if (c == K_DEL || c == K_KDEL)
4315 ta_buf[i] = DEL;
4316 else
4317 ta_buf[i] = Ctrl_H;
4318 len -= 2;
4321 else if (ta_buf[i] == '\r')
4322 ta_buf[i] = '\n';
4323 # ifdef FEAT_MBYTE
4324 if (has_mbyte)
4325 i += (*mb_ptr2len)(ta_buf + i) - 1;
4326 # endif
4330 * For pipes: echo the typed characters.
4331 * For a pty this does not seem to work.
4333 if (pty_master_fd < 0)
4335 for (i = ta_len; i < ta_len + len; ++i)
4337 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4338 msg_putchar(ta_buf[i]);
4339 # ifdef FEAT_MBYTE
4340 else if (has_mbyte)
4342 int l = (*mb_ptr2len)(ta_buf + i);
4344 msg_outtrans_len(ta_buf + i, l);
4345 i += l - 1;
4347 # endif
4348 else
4349 msg_outtrans_len(ta_buf + i, 1);
4351 windgoto(msg_row, msg_col);
4352 out_flush();
4355 ta_len += len;
4358 * Write the characters to the child, unless EOF has
4359 * been typed for pipes. Write one character at a
4360 * time, to avoid losing too much typeahead.
4361 * When writing buffer lines, drop the typed
4362 * characters (only check for CTRL-C).
4364 if (options & SHELL_WRITE)
4365 ta_len = 0;
4366 else if (toshell_fd >= 0)
4368 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4369 if (len > 0)
4371 ta_len -= len;
4372 mch_memmove(ta_buf, ta_buf + len, ta_len);
4378 if (got_int)
4380 /* CTRL-C sends a signal to the child, we ignore it
4381 * ourselves */
4382 # ifdef HAVE_SETSID
4383 kill(-pid, SIGINT);
4384 # else
4385 kill(0, SIGINT);
4386 # endif
4387 if (wpid > 0)
4388 kill(wpid, SIGINT);
4389 got_int = FALSE;
4393 * Check if the child has any characters to be printed.
4394 * Read them and write them to our window. Repeat this as
4395 * long as there is something to do, avoid the 10ms wait
4396 * for mch_inchar(), or sending typeahead characters to
4397 * the external process.
4398 * TODO: This should handle escape sequences, compatible
4399 * to some terminal (vt52?).
4401 ++noread_cnt;
4402 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4404 len = read(fromshell_fd, (char *)buffer
4405 # ifdef FEAT_MBYTE
4406 + buffer_off, (size_t)(BUFLEN - buffer_off)
4407 # else
4408 , (size_t)BUFLEN
4409 # endif
4411 if (len <= 0) /* end of file or error */
4412 goto finished;
4414 noread_cnt = 0;
4415 if (options & SHELL_READ)
4417 /* Do NUL -> NL translation, append NL separated
4418 * lines to the current buffer. */
4419 for (i = 0; i < len; ++i)
4421 if (buffer[i] == NL)
4422 append_ga_line(&ga);
4423 else if (buffer[i] == NUL)
4424 ga_append(&ga, NL);
4425 else
4426 ga_append(&ga, buffer[i]);
4429 # ifdef FEAT_MBYTE
4430 else if (has_mbyte)
4432 int l;
4434 len += buffer_off;
4435 buffer[len] = NUL;
4437 /* Check if the last character in buffer[] is
4438 * incomplete, keep these bytes for the next
4439 * round. */
4440 for (p = buffer; p < buffer + len; p += l)
4442 l = mb_cptr2len(p);
4443 if (l == 0)
4444 l = 1; /* NUL byte? */
4445 else if (MB_BYTE2LEN(*p) != l)
4446 break;
4448 if (p == buffer) /* no complete character */
4450 /* avoid getting stuck at an illegal byte */
4451 if (len >= 12)
4452 ++p;
4453 else
4455 buffer_off = len;
4456 continue;
4459 c = *p;
4460 *p = NUL;
4461 msg_puts(buffer);
4462 if (p < buffer + len)
4464 *p = c;
4465 buffer_off = (buffer + len) - p;
4466 mch_memmove(buffer, p, buffer_off);
4467 continue;
4469 buffer_off = 0;
4471 # endif /* FEAT_MBYTE */
4472 else
4474 buffer[len] = NUL;
4475 msg_puts(buffer);
4478 windgoto(msg_row, msg_col);
4479 cursor_on();
4480 out_flush();
4481 if (got_int)
4482 break;
4484 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4486 struct timeval now_tv;
4487 long msec;
4489 /* Avoid that we keep looping here without
4490 * checking for a CTRL-C for a long time. Don't
4491 * break out too often to avoid losing typeahead. */
4492 gettimeofday(&now_tv, NULL);
4493 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4494 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4495 if (msec > 2000)
4497 noread_cnt = 5;
4498 break;
4501 # endif
4504 /* If we already detected the child has finished break the
4505 * loop now. */
4506 if (wait_pid == pid)
4507 break;
4510 * Check if the child still exists, before checking for
4511 * typed characters (otherwise we would lose typeahead).
4513 # ifdef __NeXT__
4514 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
4515 # else
4516 wait_pid = waitpid(pid, &status, WNOHANG);
4517 # endif
4518 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4519 || (wait_pid == pid && WIFEXITED(status)))
4521 /* Don't break the loop yet, try reading more
4522 * characters from "fromshell_fd" first. When using
4523 * pipes there might still be something to read and
4524 * then we'll break the loop at the "break" above. */
4525 wait_pid = pid;
4527 else
4528 wait_pid = 0;
4530 finished:
4531 p_more = p_more_save;
4532 if (options & SHELL_READ)
4534 if (ga.ga_len > 0)
4536 append_ga_line(&ga);
4537 /* remember that the NL was missing */
4538 write_no_eol_lnum = curwin->w_cursor.lnum;
4540 else
4541 write_no_eol_lnum = 0;
4542 ga_clear(&ga);
4546 * Give all typeahead that wasn't used back to ui_inchar().
4548 if (ta_len)
4549 ui_inchar_undo(ta_buf, ta_len);
4550 State = old_State;
4551 if (toshell_fd >= 0)
4552 close(toshell_fd);
4553 close(fromshell_fd);
4557 * Wait until our child has exited.
4558 * Ignore wait() returning pids of other children and returning
4559 * because of some signal like SIGWINCH.
4560 * Don't wait if wait_pid was already set above, indicating the
4561 * child already exited.
4563 while (wait_pid != pid)
4565 # ifdef _THREAD_SAFE
4566 /* Ugly hack: when compiled with Python threads are probably
4567 * used, in which case wait() sometimes hangs for no obvious
4568 * reason. Use waitpid() instead and loop (like the GUI). */
4569 # ifdef __NeXT__
4570 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4571 # else
4572 wait_pid = waitpid(pid, &status, WNOHANG);
4573 # endif
4574 if (wait_pid == 0)
4576 /* Wait for 1/100 sec before trying again. */
4577 mch_delay(10L, TRUE);
4578 continue;
4580 # else
4581 wait_pid = wait(&status);
4582 # endif
4583 if (wait_pid <= 0
4584 # ifdef ECHILD
4585 && errno == ECHILD
4586 # endif
4588 break;
4591 /* Make sure the child that writes to the external program is
4592 * dead. */
4593 if (wpid > 0)
4594 kill(wpid, SIGKILL);
4597 * Set to raw mode right now, otherwise a CTRL-C after
4598 * catch_signals() will kill Vim.
4600 if (tmode == TMODE_RAW)
4601 settmode(TMODE_RAW);
4602 did_settmode = TRUE;
4603 set_signals();
4605 if (WIFEXITED(status))
4607 /* LINTED avoid "bitwise operation on signed value" */
4608 retval = WEXITSTATUS(status);
4609 if (retval && !emsg_silent)
4611 if (retval == EXEC_FAILED)
4613 MSG_PUTS(_("\nCannot execute shell "));
4614 msg_outtrans(p_sh);
4615 msg_putchar('\n');
4617 else if (!(options & SHELL_SILENT))
4619 MSG_PUTS(_("\nshell returned "));
4620 msg_outnum((long)retval);
4621 msg_putchar('\n');
4625 else
4626 MSG_PUTS(_("\nCommand terminated\n"));
4629 vim_free(argv);
4631 error:
4632 if (!did_settmode)
4633 if (tmode == TMODE_RAW)
4634 settmode(TMODE_RAW); /* set to raw mode */
4635 # ifdef FEAT_TITLE
4636 resettitle();
4637 # endif
4638 vim_free(newcmd);
4640 return retval;
4642 #endif /* USE_SYSTEM */
4646 * Check for CTRL-C typed by reading all available characters.
4647 * In cooked mode we should get SIGINT, no need to check.
4649 void
4650 mch_breakcheck()
4652 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4653 fill_input_buf(FALSE);
4657 * Wait "msec" msec until a character is available from the keyboard or from
4658 * inbuf[]. msec == -1 will block forever.
4659 * When a GUI is being used, this will never get called -- webb
4661 static int
4662 WaitForChar(msec)
4663 long msec;
4665 #ifdef FEAT_MOUSE_GPM
4666 int gpm_process_wanted;
4667 #endif
4668 #ifdef FEAT_XCLIPBOARD
4669 int rest;
4670 #endif
4671 int avail;
4673 if (input_available()) /* something in inbuf[] */
4674 return 1;
4676 #if defined(FEAT_MOUSE_DEC)
4677 /* May need to query the mouse position. */
4678 if (WantQueryMouse)
4680 WantQueryMouse = FALSE;
4681 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4683 #endif
4686 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4687 * events. This is a bit complicated, because they might both be defined.
4689 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4690 # ifdef FEAT_XCLIPBOARD
4691 rest = 0;
4692 if (do_xterm_trace())
4693 rest = msec;
4694 # endif
4697 # ifdef FEAT_XCLIPBOARD
4698 if (rest != 0)
4700 msec = XT_TRACE_DELAY;
4701 if (rest >= 0 && rest < XT_TRACE_DELAY)
4702 msec = rest;
4703 if (rest >= 0)
4704 rest -= msec;
4706 # endif
4707 # ifdef FEAT_MOUSE_GPM
4708 gpm_process_wanted = 0;
4709 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4710 # else
4711 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4712 # endif
4713 if (!avail)
4715 if (input_available())
4716 return 1;
4717 # ifdef FEAT_XCLIPBOARD
4718 if (rest == 0 || !do_xterm_trace())
4719 # endif
4720 break;
4723 while (FALSE
4724 # ifdef FEAT_MOUSE_GPM
4725 || (gpm_process_wanted && mch_gpm_process() == 0)
4726 # endif
4727 # ifdef FEAT_XCLIPBOARD
4728 || (!avail && rest != 0)
4729 # endif
4732 #else
4733 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4734 #endif
4735 return avail;
4739 * Wait "msec" msec until a character is available from file descriptor "fd".
4740 * Time == -1 will block forever.
4741 * When a GUI is being used, this will not be used for input -- webb
4742 * Returns also, when a request from Sniff is waiting -- toni.
4743 * Or when a Linux GPM mouse event is waiting.
4745 /* ARGSUSED */
4746 #if defined(__BEOS__)
4748 #else
4749 static int
4750 #endif
4751 RealWaitForChar(fd, msec, check_for_gpm)
4752 int fd;
4753 long msec;
4754 int *check_for_gpm;
4756 int ret;
4757 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4758 static int busy = FALSE;
4760 /* May retry getting characters after an event was handled. */
4761 # define MAY_LOOP
4763 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4764 /* Remember at what time we started, so that we know how much longer we
4765 * should wait after being interrupted. */
4766 # define USE_START_TV
4767 struct timeval start_tv;
4769 if (msec > 0 && (
4770 # ifdef FEAT_XCLIPBOARD
4771 xterm_Shell != (Widget)0
4772 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4774 # endif
4775 # endif
4776 # ifdef USE_XSMP
4777 xsmp_icefd != -1
4778 # ifdef FEAT_MZSCHEME
4780 # endif
4781 # endif
4782 # ifdef FEAT_MZSCHEME
4783 (mzthreads_allowed() && p_mzq > 0)
4784 # endif
4786 gettimeofday(&start_tv, NULL);
4787 # endif
4789 /* Handle being called recursively. This may happen for the session
4790 * manager stuff, it may save the file, which does a breakcheck. */
4791 if (busy)
4792 return 0;
4793 #endif
4795 #ifdef MAY_LOOP
4796 for (;;)
4797 #endif
4799 #ifdef MAY_LOOP
4800 int finished = TRUE; /* default is to 'loop' just once */
4801 # ifdef FEAT_MZSCHEME
4802 int mzquantum_used = FALSE;
4803 # endif
4804 #endif
4805 #ifndef HAVE_SELECT
4806 struct pollfd fds[5];
4807 int nfd;
4808 # ifdef FEAT_XCLIPBOARD
4809 int xterm_idx = -1;
4810 # endif
4811 # ifdef FEAT_MOUSE_GPM
4812 int gpm_idx = -1;
4813 # endif
4814 # ifdef USE_XSMP
4815 int xsmp_idx = -1;
4816 # endif
4817 int towait = (int)msec;
4819 # ifdef FEAT_MZSCHEME
4820 mzvim_check_threads();
4821 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4823 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4824 mzquantum_used = TRUE;
4826 # endif
4827 fds[0].fd = fd;
4828 fds[0].events = POLLIN;
4829 nfd = 1;
4831 # ifdef FEAT_SNIFF
4832 # define SNIFF_IDX 1
4833 if (want_sniff_request)
4835 fds[SNIFF_IDX].fd = fd_from_sniff;
4836 fds[SNIFF_IDX].events = POLLIN;
4837 nfd++;
4839 # endif
4840 # ifdef FEAT_XCLIPBOARD
4841 if (xterm_Shell != (Widget)0)
4843 xterm_idx = nfd;
4844 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4845 fds[nfd].events = POLLIN;
4846 nfd++;
4848 # endif
4849 # ifdef FEAT_MOUSE_GPM
4850 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4852 gpm_idx = nfd;
4853 fds[nfd].fd = gpm_fd;
4854 fds[nfd].events = POLLIN;
4855 nfd++;
4857 # endif
4858 # ifdef USE_XSMP
4859 if (xsmp_icefd != -1)
4861 xsmp_idx = nfd;
4862 fds[nfd].fd = xsmp_icefd;
4863 fds[nfd].events = POLLIN;
4864 nfd++;
4866 # endif
4868 ret = poll(fds, nfd, towait);
4869 # ifdef FEAT_MZSCHEME
4870 if (ret == 0 && mzquantum_used)
4871 /* MzThreads scheduling is required and timeout occurred */
4872 finished = FALSE;
4873 # endif
4875 # ifdef FEAT_SNIFF
4876 if (ret < 0)
4877 sniff_disconnect(1);
4878 else if (want_sniff_request)
4880 if (fds[SNIFF_IDX].revents & POLLHUP)
4881 sniff_disconnect(1);
4882 if (fds[SNIFF_IDX].revents & POLLIN)
4883 sniff_request_waiting = 1;
4885 # endif
4886 # ifdef FEAT_XCLIPBOARD
4887 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4889 xterm_update(); /* Maybe we should hand out clipboard */
4890 if (--ret == 0 && !input_available())
4891 /* Try again */
4892 finished = FALSE;
4894 # endif
4895 # ifdef FEAT_MOUSE_GPM
4896 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4898 *check_for_gpm = 1;
4900 # endif
4901 # ifdef USE_XSMP
4902 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4904 if (fds[xsmp_idx].revents & POLLIN)
4906 busy = TRUE;
4907 xsmp_handle_requests();
4908 busy = FALSE;
4910 else if (fds[xsmp_idx].revents & POLLHUP)
4912 if (p_verbose > 0)
4913 verb_msg((char_u *)_("XSMP lost ICE connection"));
4914 xsmp_close();
4916 if (--ret == 0)
4917 finished = FALSE; /* Try again */
4919 # endif
4922 #else /* HAVE_SELECT */
4924 struct timeval tv;
4925 struct timeval *tvp;
4926 fd_set rfds, efds;
4927 int maxfd;
4928 long towait = msec;
4930 # ifdef FEAT_MZSCHEME
4931 mzvim_check_threads();
4932 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4934 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4935 mzquantum_used = TRUE;
4937 # endif
4938 # ifdef __EMX__
4939 /* don't check for incoming chars if not in raw mode, because select()
4940 * always returns TRUE then (in some version of emx.dll) */
4941 if (curr_tmode != TMODE_RAW)
4942 return 0;
4943 # endif
4945 if (towait >= 0)
4947 tv.tv_sec = towait / 1000;
4948 tv.tv_usec = (towait % 1000) * (1000000/1000);
4949 tvp = &tv;
4951 else
4952 tvp = NULL;
4955 * Select on ready for reading and exceptional condition (end of file).
4957 FD_ZERO(&rfds); /* calls bzero() on a sun */
4958 FD_ZERO(&efds);
4959 FD_SET(fd, &rfds);
4960 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4961 /* For QNX select() always returns 1 if this is set. Why? */
4962 FD_SET(fd, &efds);
4963 # endif
4964 maxfd = fd;
4966 # ifdef FEAT_SNIFF
4967 if (want_sniff_request)
4969 FD_SET(fd_from_sniff, &rfds);
4970 FD_SET(fd_from_sniff, &efds);
4971 if (maxfd < fd_from_sniff)
4972 maxfd = fd_from_sniff;
4974 # endif
4975 # ifdef FEAT_XCLIPBOARD
4976 if (xterm_Shell != (Widget)0)
4978 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4979 if (maxfd < ConnectionNumber(xterm_dpy))
4980 maxfd = ConnectionNumber(xterm_dpy);
4982 # endif
4983 # ifdef FEAT_MOUSE_GPM
4984 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4986 FD_SET(gpm_fd, &rfds);
4987 FD_SET(gpm_fd, &efds);
4988 if (maxfd < gpm_fd)
4989 maxfd = gpm_fd;
4991 # endif
4992 # ifdef USE_XSMP
4993 if (xsmp_icefd != -1)
4995 FD_SET(xsmp_icefd, &rfds);
4996 FD_SET(xsmp_icefd, &efds);
4997 if (maxfd < xsmp_icefd)
4998 maxfd = xsmp_icefd;
5000 # endif
5002 # ifdef OLD_VMS
5003 /* Old VMS as v6.2 and older have broken select(). It waits more than
5004 * required. Should not be used */
5005 ret = 0;
5006 # else
5007 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
5008 # endif
5009 # ifdef __TANDEM
5010 if (ret == -1 && errno == ENOTSUP)
5012 FD_ZERO(&rfds);
5013 FD_ZERO(&efds);
5014 ret = 0;
5016 #endif
5017 # ifdef FEAT_MZSCHEME
5018 if (ret == 0 && mzquantum_used)
5019 /* loop if MzThreads must be scheduled and timeout occurred */
5020 finished = FALSE;
5021 # endif
5023 # ifdef FEAT_SNIFF
5024 if (ret < 0 )
5025 sniff_disconnect(1);
5026 else if (ret > 0 && want_sniff_request)
5028 if (FD_ISSET(fd_from_sniff, &efds))
5029 sniff_disconnect(1);
5030 if (FD_ISSET(fd_from_sniff, &rfds))
5031 sniff_request_waiting = 1;
5033 # endif
5034 # ifdef FEAT_XCLIPBOARD
5035 if (ret > 0 && xterm_Shell != (Widget)0
5036 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5038 xterm_update(); /* Maybe we should hand out clipboard */
5039 /* continue looping when we only got the X event and the input
5040 * buffer is empty */
5041 if (--ret == 0 && !input_available())
5043 /* Try again */
5044 finished = FALSE;
5047 # endif
5048 # ifdef FEAT_MOUSE_GPM
5049 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5051 if (FD_ISSET(gpm_fd, &efds))
5052 gpm_close();
5053 else if (FD_ISSET(gpm_fd, &rfds))
5054 *check_for_gpm = 1;
5056 # endif
5057 # ifdef USE_XSMP
5058 if (ret > 0 && xsmp_icefd != -1)
5060 if (FD_ISSET(xsmp_icefd, &efds))
5062 if (p_verbose > 0)
5063 verb_msg((char_u *)_("XSMP lost ICE connection"));
5064 xsmp_close();
5065 if (--ret == 0)
5066 finished = FALSE; /* keep going if event was only one */
5068 else if (FD_ISSET(xsmp_icefd, &rfds))
5070 busy = TRUE;
5071 xsmp_handle_requests();
5072 busy = FALSE;
5073 if (--ret == 0)
5074 finished = FALSE; /* keep going if event was only one */
5077 # endif
5079 #endif /* HAVE_SELECT */
5081 #ifdef MAY_LOOP
5082 if (finished || msec == 0)
5083 break;
5085 /* We're going to loop around again, find out for how long */
5086 if (msec > 0)
5088 # ifdef USE_START_TV
5089 struct timeval mtv;
5091 /* Compute remaining wait time. */
5092 gettimeofday(&mtv, NULL);
5093 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5094 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5095 # else
5096 /* Guess we got interrupted halfway. */
5097 msec = msec / 2;
5098 # endif
5099 if (msec <= 0)
5100 break; /* waited long enough */
5102 #endif
5105 return (ret > 0);
5108 #ifndef VMS
5110 #ifndef NO_EXPANDPATH
5112 * Expand a path into all matching files and/or directories. Handles "*",
5113 * "?", "[a-z]", "**", etc.
5114 * "path" has backslashes before chars that are not to be expanded.
5115 * Returns the number of matches found.
5118 mch_expandpath(gap, path, flags)
5119 garray_T *gap;
5120 char_u *path;
5121 int flags; /* EW_* flags */
5123 return unix_expandpath(gap, path, 0, flags, FALSE);
5125 #endif
5128 * mch_expand_wildcards() - this code does wild-card pattern matching using
5129 * the shell
5131 * return OK for success, FAIL for error (you may lose some memory) and put
5132 * an error message in *file.
5134 * num_pat is number of input patterns
5135 * pat is array of pointers to input patterns
5136 * num_file is pointer to number of matched file names
5137 * file is pointer to array of pointers to matched file names
5140 #ifndef SEEK_SET
5141 # define SEEK_SET 0
5142 #endif
5143 #ifndef SEEK_END
5144 # define SEEK_END 2
5145 #endif
5147 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5149 /* ARGSUSED */
5151 mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5152 int num_pat;
5153 char_u **pat;
5154 int *num_file;
5155 char_u ***file;
5156 int flags; /* EW_* flags */
5158 int i;
5159 size_t len;
5160 char_u *p;
5161 int dir;
5162 #ifdef __EMX__
5164 * This is the OS/2 implementation.
5166 # define EXPL_ALLOC_INC 16
5167 char_u **expl_files;
5168 size_t files_alloced, files_free;
5169 char_u *buf;
5170 int has_wildcard;
5172 *num_file = 0; /* default: no files found */
5173 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5174 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5175 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5176 if (*file == NULL)
5177 return FAIL;
5179 for (; num_pat > 0; num_pat--, pat++)
5181 expl_files = NULL;
5182 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5183 /* expand environment var or home dir */
5184 buf = expand_env_save(*pat);
5185 else
5186 buf = vim_strsave(*pat);
5187 expl_files = NULL;
5188 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
5189 if (has_wildcard) /* yes, so expand them */
5190 expl_files = (char_u **)_fnexplode(buf);
5193 * return value of buf if no wildcards left,
5194 * OR if no match AND EW_NOTFOUND is set.
5196 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5197 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5198 { /* simply save the current contents of *buf */
5199 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5200 if (expl_files != NULL)
5202 expl_files[0] = vim_strsave(buf);
5203 expl_files[1] = NULL;
5206 vim_free(buf);
5209 * Count number of names resulting from expansion,
5210 * At the same time add a backslash to the end of names that happen to
5211 * be directories, and replace slashes with backslashes.
5213 if (expl_files)
5215 for (i = 0; (p = expl_files[i]) != NULL; i++)
5217 dir = mch_isdir(p);
5218 /* If we don't want dirs and this is one, skip it */
5219 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5220 continue;
5222 /* Skip files that are not executable if we check for that. */
5223 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5224 continue;
5226 if (--files_free == 0)
5228 /* need more room in table of pointers */
5229 files_alloced += EXPL_ALLOC_INC;
5230 *file = (char_u **)vim_realloc(*file,
5231 sizeof(char_u **) * files_alloced);
5232 if (*file == NULL)
5234 EMSG(_(e_outofmem));
5235 *num_file = 0;
5236 return FAIL;
5238 files_free = EXPL_ALLOC_INC;
5240 slash_adjust(p);
5241 if (dir)
5243 /* For a directory we add a '/', unless it's already
5244 * there. */
5245 len = STRLEN(p);
5246 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5248 STRCPY((*file)[*num_file], p);
5249 if (!after_pathsep((*file)[*num_file],
5250 (*file)[*num_file] + len))
5252 (*file)[*num_file][len] = psepc;
5253 (*file)[*num_file][len + 1] = NUL;
5257 else
5259 (*file)[*num_file] = vim_strsave(p);
5263 * Error message already given by either alloc or vim_strsave.
5264 * Should return FAIL, but returning OK works also.
5266 if ((*file)[*num_file] == NULL)
5267 break;
5268 (*num_file)++;
5270 _fnexplodefree((char **)expl_files);
5273 return OK;
5275 #else /* __EMX__ */
5277 * This is the non-OS/2 implementation (really Unix).
5279 int j;
5280 char_u *tempname;
5281 char_u *command;
5282 FILE *fd;
5283 char_u *buffer;
5284 #define STYLE_ECHO 0 /* use "echo", the default */
5285 #define STYLE_GLOB 1 /* use "glob", for csh */
5286 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5287 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5288 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5289 * directly */
5290 int shell_style = STYLE_ECHO;
5291 int check_spaces;
5292 static int did_find_nul = FALSE;
5293 int ampersent = FALSE;
5294 /* vimglob() function to define for Posix shell */
5295 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
5297 *num_file = 0; /* default: no files found */
5298 *file = NULL;
5301 * If there are no wildcards, just copy the names to allocated memory.
5302 * Saves a lot of time, because we don't have to start a new shell.
5304 if (!have_wildcard(num_pat, pat))
5305 return save_patterns(num_pat, pat, num_file, file);
5307 # ifdef HAVE_SANDBOX
5308 /* Don't allow any shell command in the sandbox. */
5309 if (sandbox != 0 && check_secure())
5310 return FAIL;
5311 # endif
5314 * Don't allow the use of backticks in secure and restricted mode.
5316 if (secure || restricted)
5317 for (i = 0; i < num_pat; ++i)
5318 if (vim_strchr(pat[i], '`') != NULL
5319 && (check_restricted() || check_secure()))
5320 return FAIL;
5323 * get a name for the temp file
5325 if ((tempname = vim_tempname('o')) == NULL)
5327 EMSG(_(e_notmp));
5328 return FAIL;
5332 * Let the shell expand the patterns and write the result into the temp
5333 * file.
5334 * STYLE_BT: NL separated
5335 * If expanding `cmd` execute it directly.
5336 * STYLE_GLOB: NUL separated
5337 * If we use *csh, "glob" will work better than "echo".
5338 * STYLE_PRINT: NL or NUL separated
5339 * If we use *zsh, "print -N" will work better than "glob".
5340 * STYLE_VIMGLOB: NL separated
5341 * If we use *sh*, we define "vimglob()".
5342 * STYLE_ECHO: space separated.
5343 * A shell we don't know, stay safe and use "echo".
5345 if (num_pat == 1 && *pat[0] == '`'
5346 && (len = STRLEN(pat[0])) > 2
5347 && *(pat[0] + len - 1) == '`')
5348 shell_style = STYLE_BT;
5349 else if ((len = STRLEN(p_sh)) >= 3)
5351 if (STRCMP(p_sh + len - 3, "csh") == 0)
5352 shell_style = STYLE_GLOB;
5353 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5354 shell_style = STYLE_PRINT;
5356 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5357 "sh") != NULL)
5358 shell_style = STYLE_VIMGLOB;
5360 /* Compute the length of the command. We need 2 extra bytes: for the
5361 * optional '&' and for the NUL.
5362 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5363 len = STRLEN(tempname) + 29;
5364 if (shell_style == STYLE_VIMGLOB)
5365 len += STRLEN(sh_vimglob_func);
5367 for (i = 0; i < num_pat; ++i)
5369 /* Count the length of the patterns in the same way as they are put in
5370 * "command" below. */
5371 #ifdef USE_SYSTEM
5372 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
5373 #else
5374 ++len; /* add space */
5375 for (j = 0; pat[i][j] != NUL; ++j)
5377 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5378 ++len; /* may add a backslash */
5379 ++len;
5381 #endif
5383 command = alloc(len);
5384 if (command == NULL)
5386 /* out of memory */
5387 vim_free(tempname);
5388 return FAIL;
5392 * Build the shell command:
5393 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5394 * recognizes this).
5395 * - Add the shell command to print the expanded names.
5396 * - Add the temp file name.
5397 * - Add the file name patterns.
5399 if (shell_style == STYLE_BT)
5401 /* change `command; command& ` to (command; command ) */
5402 STRCPY(command, "(");
5403 STRCAT(command, pat[0] + 1); /* exclude first backtick */
5404 p = command + STRLEN(command) - 1;
5405 *p-- = ')'; /* remove last backtick */
5406 while (p > command && vim_iswhite(*p))
5407 --p;
5408 if (*p == '&') /* remove trailing '&' */
5410 ampersent = TRUE;
5411 *p = ' ';
5413 STRCAT(command, ">");
5415 else
5417 if (flags & EW_NOTFOUND)
5418 STRCPY(command, "set nonomatch; ");
5419 else
5420 STRCPY(command, "unset nonomatch; ");
5421 if (shell_style == STYLE_GLOB)
5422 STRCAT(command, "glob >");
5423 else if (shell_style == STYLE_PRINT)
5424 STRCAT(command, "print -N >");
5425 else if (shell_style == STYLE_VIMGLOB)
5426 STRCAT(command, sh_vimglob_func);
5427 else
5428 STRCAT(command, "echo >");
5431 STRCAT(command, tempname);
5433 if (shell_style != STYLE_BT)
5434 for (i = 0; i < num_pat; ++i)
5436 /* When using system() always add extra quotes, because the shell
5437 * is started twice. Otherwise put a backslash before special
5438 * characters, except inside ``. */
5439 #ifdef USE_SYSTEM
5440 STRCAT(command, " \"");
5441 STRCAT(command, pat[i]);
5442 STRCAT(command, "\"");
5443 #else
5444 int intick = FALSE;
5446 p = command + STRLEN(command);
5447 *p++ = ' ';
5448 for (j = 0; pat[i][j] != NUL; ++j)
5450 if (pat[i][j] == '`')
5451 intick = !intick;
5452 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5454 /* Remove a backslash, take char literally. But keep
5455 * backslash inside backticks, before a special character
5456 * and before a backtick. */
5457 if (intick
5458 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5459 || pat[i][j + 1] == '`')
5460 *p++ = '\\';
5461 ++j;
5463 else if (!intick && vim_strchr(SHELL_SPECIAL,
5464 pat[i][j]) != NULL)
5465 /* Put a backslash before a special character, but not
5466 * when inside ``. */
5467 *p++ = '\\';
5469 /* Copy one character. */
5470 *p++ = pat[i][j];
5472 *p = NUL;
5473 #endif
5475 if (flags & EW_SILENT)
5476 show_shell_mess = FALSE;
5477 if (ampersent)
5478 STRCAT(command, "&"); /* put the '&' after the redirection */
5481 * Using zsh -G: If a pattern has no matches, it is just deleted from
5482 * the argument list, otherwise zsh gives an error message and doesn't
5483 * expand any other pattern.
5485 if (shell_style == STYLE_PRINT)
5486 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5489 * If we use -f then shell variables set in .cshrc won't get expanded.
5490 * vi can do it, so we will too, but it is only necessary if there is a "$"
5491 * in one of the patterns, otherwise we can still use the fast option.
5493 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5494 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5497 * execute the shell command
5499 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5501 /* When running in the background, give it some time to create the temp
5502 * file, but don't wait for it to finish. */
5503 if (ampersent)
5504 mch_delay(10L, TRUE);
5506 extra_shell_arg = NULL; /* cleanup */
5507 show_shell_mess = TRUE;
5508 vim_free(command);
5510 if (i != 0) /* mch_call_shell() failed */
5512 mch_remove(tempname);
5513 vim_free(tempname);
5515 * With interactive completion, the error message is not printed.
5516 * However with USE_SYSTEM, I don't know how to turn off error messages
5517 * from the shell, so screen may still get messed up -- webb.
5519 #ifndef USE_SYSTEM
5520 if (!(flags & EW_SILENT))
5521 #endif
5523 redraw_later_clear(); /* probably messed up screen */
5524 msg_putchar('\n'); /* clear bottom line quickly */
5525 cmdline_row = Rows - 1; /* continue on last line */
5526 #ifdef USE_SYSTEM
5527 if (!(flags & EW_SILENT))
5528 #endif
5530 MSG(_(e_wildexpand));
5531 msg_start(); /* don't overwrite this message */
5534 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5535 * EW_NOTFOUND is given */
5536 if (shell_style == STYLE_BT)
5537 return FAIL;
5538 goto notfound;
5542 * read the names from the file into memory
5544 fd = fopen((char *)tempname, READBIN);
5545 if (fd == NULL)
5547 /* Something went wrong, perhaps a file name with a special char. */
5548 if (!(flags & EW_SILENT))
5550 MSG(_(e_wildexpand));
5551 msg_start(); /* don't overwrite this message */
5553 vim_free(tempname);
5554 goto notfound;
5556 fseek(fd, 0L, SEEK_END);
5557 len = ftell(fd); /* get size of temp file */
5558 fseek(fd, 0L, SEEK_SET);
5559 buffer = alloc(len + 1);
5560 if (buffer == NULL)
5562 /* out of memory */
5563 mch_remove(tempname);
5564 vim_free(tempname);
5565 fclose(fd);
5566 return FAIL;
5568 i = fread((char *)buffer, 1, len, fd);
5569 fclose(fd);
5570 mch_remove(tempname);
5571 if (i != len)
5573 /* unexpected read error */
5574 EMSG2(_(e_notread), tempname);
5575 vim_free(tempname);
5576 vim_free(buffer);
5577 return FAIL;
5579 vim_free(tempname);
5581 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5582 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5583 p = buffer;
5584 for (i = 0; i < len; ++i)
5585 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5586 *p++ = buffer[i];
5587 len = p - buffer;
5588 # endif
5591 /* file names are separated with Space */
5592 if (shell_style == STYLE_ECHO)
5594 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5595 p = buffer;
5596 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5598 while (*p != ' ' && *p != '\n')
5599 ++p;
5600 p = skipwhite(p); /* skip to next entry */
5603 /* file names are separated with NL */
5604 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
5606 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5607 p = buffer;
5608 for (i = 0; *p != NUL; ++i) /* count number of entries */
5610 while (*p != '\n' && *p != NUL)
5611 ++p;
5612 if (*p != NUL)
5613 ++p;
5614 p = skipwhite(p); /* skip leading white space */
5617 /* file names are separated with NUL */
5618 else
5621 * Some versions of zsh use spaces instead of NULs to separate
5622 * results. Only do this when there is no NUL before the end of the
5623 * buffer, otherwise we would never be able to use file names with
5624 * embedded spaces when zsh does use NULs.
5625 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5626 * don't check for spaces again.
5628 check_spaces = FALSE;
5629 if (shell_style == STYLE_PRINT && !did_find_nul)
5631 /* If there is a NUL, set did_find_nul, else set check_spaces */
5632 if (len && (int)STRLEN(buffer) < len - 1)
5633 did_find_nul = TRUE;
5634 else
5635 check_spaces = TRUE;
5639 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5640 * already is one, for STYLE_GLOB it needs to be added.
5642 if (len && buffer[len - 1] == NUL)
5643 --len;
5644 else
5645 buffer[len] = NUL;
5646 i = 0;
5647 for (p = buffer; p < buffer + len; ++p)
5648 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5650 ++i;
5651 *p = NUL;
5653 if (len)
5654 ++i; /* count last entry */
5656 if (i == 0)
5659 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5660 * /bin/sh will happily expand it to nothing rather than returning an
5661 * error; and hey, it's good to check anyway -- webb.
5663 vim_free(buffer);
5664 goto notfound;
5666 *num_file = i;
5667 *file = (char_u **)alloc(sizeof(char_u *) * i);
5668 if (*file == NULL)
5670 /* out of memory */
5671 vim_free(buffer);
5672 return FAIL;
5676 * Isolate the individual file names.
5678 p = buffer;
5679 for (i = 0; i < *num_file; ++i)
5681 (*file)[i] = p;
5682 /* Space or NL separates */
5683 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5684 || shell_style == STYLE_VIMGLOB)
5686 while (!(shell_style == STYLE_ECHO && *p == ' ')
5687 && *p != '\n' && *p != NUL)
5688 ++p;
5689 if (p == buffer + len) /* last entry */
5690 *p = NUL;
5691 else
5693 *p++ = NUL;
5694 p = skipwhite(p); /* skip to next entry */
5697 else /* NUL separates */
5699 while (*p && p < buffer + len) /* skip entry */
5700 ++p;
5701 ++p; /* skip NUL */
5706 * Move the file names to allocated memory.
5708 for (j = 0, i = 0; i < *num_file; ++i)
5710 /* Require the files to exist. Helps when using /bin/sh */
5711 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5712 continue;
5714 /* check if this entry should be included */
5715 dir = (mch_isdir((*file)[i]));
5716 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5717 continue;
5719 /* Skip files that are not executable if we check for that. */
5720 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5721 continue;
5723 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5724 if (p)
5726 STRCPY(p, (*file)[i]);
5727 if (dir)
5728 add_pathsep(p); /* add '/' to a directory name */
5729 (*file)[j++] = p;
5732 vim_free(buffer);
5733 *num_file = j;
5735 if (*num_file == 0) /* rejected all entries */
5737 vim_free(*file);
5738 *file = NULL;
5739 goto notfound;
5742 return OK;
5744 notfound:
5745 if (flags & EW_NOTFOUND)
5746 return save_patterns(num_pat, pat, num_file, file);
5747 return FAIL;
5749 #endif /* __EMX__ */
5752 #endif /* VMS */
5754 #ifndef __EMX__
5755 static int
5756 save_patterns(num_pat, pat, num_file, file)
5757 int num_pat;
5758 char_u **pat;
5759 int *num_file;
5760 char_u ***file;
5762 int i;
5763 char_u *s;
5765 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5766 if (*file == NULL)
5767 return FAIL;
5768 for (i = 0; i < num_pat; i++)
5770 s = vim_strsave(pat[i]);
5771 if (s != NULL)
5772 /* Be compatible with expand_filename(): halve the number of
5773 * backslashes. */
5774 backslash_halve(s);
5775 (*file)[i] = s;
5777 *num_file = num_pat;
5778 return OK;
5780 #endif
5784 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5785 * expand.
5788 mch_has_exp_wildcard(p)
5789 char_u *p;
5791 for ( ; *p; mb_ptr_adv(p))
5793 #ifndef OS2
5794 if (*p == '\\' && p[1] != NUL)
5795 ++p;
5796 else
5797 #endif
5798 if (vim_strchr((char_u *)
5799 #ifdef VMS
5800 "*?%"
5801 #else
5802 # ifdef OS2
5803 "*?"
5804 # else
5805 "*?[{'"
5806 # endif
5807 #endif
5808 , *p) != NULL)
5809 return TRUE;
5811 return FALSE;
5815 * Return TRUE if the string "p" contains a wildcard.
5816 * Don't recognize '~' at the end as a wildcard.
5819 mch_has_wildcard(p)
5820 char_u *p;
5822 for ( ; *p; mb_ptr_adv(p))
5824 #ifndef OS2
5825 if (*p == '\\' && p[1] != NUL)
5826 ++p;
5827 else
5828 #endif
5829 if (vim_strchr((char_u *)
5830 #ifdef VMS
5831 "*?%$"
5832 #else
5833 # ifdef OS2
5834 # ifdef VIM_BACKTICK
5835 "*?$`"
5836 # else
5837 "*?$"
5838 # endif
5839 # else
5840 "*?[{`'$"
5841 # endif
5842 #endif
5843 , *p) != NULL
5844 || (*p == '~' && p[1] != NUL))
5845 return TRUE;
5847 return FALSE;
5850 #ifndef __EMX__
5851 static int
5852 have_wildcard(num, file)
5853 int num;
5854 char_u **file;
5856 int i;
5858 for (i = 0; i < num; i++)
5859 if (mch_has_wildcard(file[i]))
5860 return 1;
5861 return 0;
5864 static int
5865 have_dollars(num, file)
5866 int num;
5867 char_u **file;
5869 int i;
5871 for (i = 0; i < num; i++)
5872 if (vim_strchr(file[i], '$') != NULL)
5873 return TRUE;
5874 return FALSE;
5876 #endif /* ifndef __EMX__ */
5878 #ifndef HAVE_RENAME
5880 * Scaled-down version of rename(), which is missing in Xenix.
5881 * This version can only move regular files and will fail if the
5882 * destination exists.
5885 mch_rename(src, dest)
5886 const char *src, *dest;
5888 struct stat st;
5890 if (stat(dest, &st) >= 0) /* fail if destination exists */
5891 return -1;
5892 if (link(src, dest) != 0) /* link file to new name */
5893 return -1;
5894 if (mch_remove(src) == 0) /* delete link to old name */
5895 return 0;
5896 return -1;
5898 #endif /* !HAVE_RENAME */
5900 #ifdef FEAT_MOUSE_GPM
5902 * Initializes connection with gpm (if it isn't already opened)
5903 * Return 1 if succeeded (or connection already opened), 0 if failed
5905 static int
5906 gpm_open()
5908 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5910 if (!gpm_flag)
5912 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5913 gpm_connect.defaultMask = ~GPM_HARD;
5914 /* Default handling for mouse move*/
5915 gpm_connect.minMod = 0; /* Handle any modifier keys */
5916 gpm_connect.maxMod = 0xffff;
5917 if (Gpm_Open(&gpm_connect, 0) > 0)
5919 /* gpm library tries to handling TSTP causes
5920 * problems. Anyways, we close connection to Gpm whenever
5921 * we are going to suspend or starting an external process
5922 * so we shouldn't have problem with this
5924 # ifdef SIGTSTP
5925 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5926 # endif
5927 return 1; /* succeed */
5929 if (gpm_fd == -2)
5930 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5931 return 0;
5933 return 1; /* already open */
5937 * Closes connection to gpm
5939 static void
5940 gpm_close()
5942 if (gpm_flag && gpm_fd >= 0) /* if Open */
5943 Gpm_Close();
5946 /* Reads gpm event and adds special keys to input buf. Returns length of
5947 * generated key sequence.
5948 * This function is made after gui_send_mouse_event
5950 static int
5951 mch_gpm_process()
5953 int button;
5954 static Gpm_Event gpm_event;
5955 char_u string[6];
5956 int_u vim_modifiers;
5957 int row,col;
5958 unsigned char buttons_mask;
5959 unsigned char gpm_modifiers;
5960 static unsigned char old_buttons = 0;
5962 Gpm_GetEvent(&gpm_event);
5964 #ifdef FEAT_GUI
5965 /* Don't put events in the input queue now. */
5966 if (hold_gui_events)
5967 return 0;
5968 #endif
5970 row = gpm_event.y - 1;
5971 col = gpm_event.x - 1;
5973 string[0] = ESC; /* Our termcode */
5974 string[1] = 'M';
5975 string[2] = 'G';
5976 switch (GPM_BARE_EVENTS(gpm_event.type))
5978 case GPM_DRAG:
5979 string[3] = MOUSE_DRAG;
5980 break;
5981 case GPM_DOWN:
5982 buttons_mask = gpm_event.buttons & ~old_buttons;
5983 old_buttons = gpm_event.buttons;
5984 switch (buttons_mask)
5986 case GPM_B_LEFT:
5987 button = MOUSE_LEFT;
5988 break;
5989 case GPM_B_MIDDLE:
5990 button = MOUSE_MIDDLE;
5991 break;
5992 case GPM_B_RIGHT:
5993 button = MOUSE_RIGHT;
5994 break;
5995 default:
5996 return 0;
5997 /*Don't know what to do. Can more than one button be
5998 * reported in one event? */
6000 string[3] = (char_u)(button | 0x20);
6001 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
6002 break;
6003 case GPM_UP:
6004 string[3] = MOUSE_RELEASE;
6005 old_buttons &= ~gpm_event.buttons;
6006 break;
6007 default:
6008 return 0;
6010 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6011 gpm_modifiers = gpm_event.modifiers;
6012 vim_modifiers = 0x0;
6013 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6014 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6015 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6017 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6018 vim_modifiers |= MOUSE_SHIFT;
6020 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6021 vim_modifiers |= MOUSE_CTRL;
6022 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6023 vim_modifiers |= MOUSE_ALT;
6024 string[3] |= vim_modifiers;
6025 string[4] = (char_u)(col + ' ' + 1);
6026 string[5] = (char_u)(row + ' ' + 1);
6027 add_to_input_buf(string, 6);
6028 return 6;
6030 #endif /* FEAT_MOUSE_GPM */
6032 #ifdef FEAT_SYSMOUSE
6034 * Initialize connection with sysmouse.
6035 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6036 * output, any sysmouse output than will be processed via sig_sysmouse().
6037 * Return OK if succeeded, FAIL if failed.
6039 static int
6040 sysmouse_open()
6042 struct mouse_info mouse;
6044 mouse.operation = MOUSE_MODE;
6045 mouse.u.mode.mode = 0;
6046 mouse.u.mode.signal = SIGUSR2;
6047 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6049 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6050 mouse.operation = MOUSE_SHOW;
6051 ioctl(1, CONS_MOUSECTL, &mouse);
6052 return OK;
6054 return FAIL;
6058 * Stop processing SIGUSR2 signals, and also make sure that
6059 * virtual console do not send us any sysmouse related signal.
6061 static void
6062 sysmouse_close()
6064 struct mouse_info mouse;
6066 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6067 mouse.operation = MOUSE_MODE;
6068 mouse.u.mode.mode = 0;
6069 mouse.u.mode.signal = 0;
6070 ioctl(1, CONS_MOUSECTL, &mouse);
6074 * Gets info from sysmouse and adds special keys to input buf.
6076 /* ARGSUSED */
6077 static RETSIGTYPE
6078 sig_sysmouse SIGDEFARG(sigarg)
6080 struct mouse_info mouse;
6081 struct video_info video;
6082 char_u string[6];
6083 int row, col;
6084 int button;
6085 int buttons;
6086 static int oldbuttons = 0;
6088 #ifdef FEAT_GUI
6089 /* Don't put events in the input queue now. */
6090 if (hold_gui_events)
6091 return;
6092 #endif
6094 mouse.operation = MOUSE_GETINFO;
6095 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6096 && ioctl(1, FBIO_MODEINFO, &video) != -1
6097 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6098 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6100 row = mouse.u.data.y / video.vi_cheight;
6101 col = mouse.u.data.x / video.vi_cwidth;
6102 buttons = mouse.u.data.buttons;
6103 string[0] = ESC; /* Our termcode */
6104 string[1] = 'M';
6105 string[2] = 'S';
6106 if (oldbuttons == buttons && buttons != 0)
6108 button = MOUSE_DRAG;
6110 else
6112 switch (buttons)
6114 case 0:
6115 button = MOUSE_RELEASE;
6116 break;
6117 case 1:
6118 button = MOUSE_LEFT;
6119 break;
6120 case 2:
6121 button = MOUSE_MIDDLE;
6122 break;
6123 case 4:
6124 button = MOUSE_RIGHT;
6125 break;
6126 default:
6127 return;
6129 oldbuttons = buttons;
6131 string[3] = (char_u)(button);
6132 string[4] = (char_u)(col + ' ' + 1);
6133 string[5] = (char_u)(row + ' ' + 1);
6134 add_to_input_buf(string, 6);
6136 return;
6138 #endif /* FEAT_SYSMOUSE */
6140 #if defined(FEAT_LIBCALL) || defined(PROTO)
6141 typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6142 typedef char_u * (*INTPROCSTR)__ARGS((int));
6143 typedef int (*STRPROCINT)__ARGS((char_u *));
6144 typedef int (*INTPROCINT)__ARGS((int));
6147 * Call a DLL routine which takes either a string or int param
6148 * and returns an allocated string.
6151 mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6152 char_u *libname;
6153 char_u *funcname;
6154 char_u *argstring; /* NULL when using a argint */
6155 int argint;
6156 char_u **string_result;/* NULL when using number_result */
6157 int *number_result;
6159 # if defined(USE_DLOPEN)
6160 void *hinstLib;
6161 char *dlerr = NULL;
6162 # else
6163 shl_t hinstLib;
6164 # endif
6165 STRPROCSTR ProcAdd;
6166 INTPROCSTR ProcAddI;
6167 char_u *retval_str = NULL;
6168 int retval_int = 0;
6169 int success = FALSE;
6172 * Get a handle to the DLL module.
6174 # if defined(USE_DLOPEN)
6175 /* First clear any error, it's not cleared by the dlopen() call. */
6176 (void)dlerror();
6178 hinstLib = dlopen((char *)libname, RTLD_LAZY
6179 # ifdef RTLD_LOCAL
6180 | RTLD_LOCAL
6181 # endif
6183 if (hinstLib == NULL)
6185 /* "dlerr" must be used before dlclose() */
6186 dlerr = (char *)dlerror();
6187 if (dlerr != NULL)
6188 EMSG2(_("dlerror = \"%s\""), dlerr);
6190 # else
6191 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6192 # endif
6194 /* If the handle is valid, try to get the function address. */
6195 if (hinstLib != NULL)
6197 # ifdef HAVE_SETJMP_H
6199 * Catch a crash when calling the library function. For example when
6200 * using a number where a string pointer is expected.
6202 mch_startjmp();
6203 if (SETJMP(lc_jump_env) != 0)
6205 success = FALSE;
6206 # if defined(USE_DLOPEN)
6207 dlerr = NULL;
6208 # endif
6209 mch_didjmp();
6211 else
6212 # endif
6214 retval_str = NULL;
6215 retval_int = 0;
6217 if (argstring != NULL)
6219 # if defined(USE_DLOPEN)
6220 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
6221 dlerr = (char *)dlerror();
6222 # else
6223 if (shl_findsym(&hinstLib, (const char *)funcname,
6224 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6225 ProcAdd = NULL;
6226 # endif
6227 if ((success = (ProcAdd != NULL
6228 # if defined(USE_DLOPEN)
6229 && dlerr == NULL
6230 # endif
6233 if (string_result == NULL)
6234 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6235 else
6236 retval_str = (ProcAdd)(argstring);
6239 else
6241 # if defined(USE_DLOPEN)
6242 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
6243 dlerr = (char *)dlerror();
6244 # else
6245 if (shl_findsym(&hinstLib, (const char *)funcname,
6246 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6247 ProcAddI = NULL;
6248 # endif
6249 if ((success = (ProcAddI != NULL
6250 # if defined(USE_DLOPEN)
6251 && dlerr == NULL
6252 # endif
6255 if (string_result == NULL)
6256 retval_int = ((INTPROCINT)ProcAddI)(argint);
6257 else
6258 retval_str = (ProcAddI)(argint);
6262 /* Save the string before we free the library. */
6263 /* Assume that a "1" or "-1" result is an illegal pointer. */
6264 if (string_result == NULL)
6265 *number_result = retval_int;
6266 else if (retval_str != NULL
6267 && retval_str != (char_u *)1
6268 && retval_str != (char_u *)-1)
6269 *string_result = vim_strsave(retval_str);
6272 # ifdef HAVE_SETJMP_H
6273 mch_endjmp();
6274 # ifdef SIGHASARG
6275 if (lc_signal != 0)
6277 int i;
6279 /* try to find the name of this signal */
6280 for (i = 0; signal_info[i].sig != -1; i++)
6281 if (lc_signal == signal_info[i].sig)
6282 break;
6283 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6285 # endif
6286 # endif
6288 # if defined(USE_DLOPEN)
6289 /* "dlerr" must be used before dlclose() */
6290 if (dlerr != NULL)
6291 EMSG2(_("dlerror = \"%s\""), dlerr);
6293 /* Free the DLL module. */
6294 (void)dlclose(hinstLib);
6295 # else
6296 (void)shl_unload(hinstLib);
6297 # endif
6300 if (!success)
6302 EMSG2(_(e_libcall), funcname);
6303 return FAIL;
6306 return OK;
6308 #endif
6310 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6311 static int xterm_trace = -1; /* default: disabled */
6312 static int xterm_button;
6315 * Setup a dummy window for X selections in a terminal.
6317 void
6318 setup_term_clip()
6320 int z = 0;
6321 char *strp = "";
6322 Widget AppShell;
6324 if (!x_connect_to_server())
6325 return;
6327 open_app_context();
6328 if (app_context != NULL && xterm_Shell == (Widget)0)
6330 int (*oldhandler)();
6331 #if defined(HAVE_SETJMP_H)
6332 int (*oldIOhandler)();
6333 #endif
6334 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6335 struct timeval start_tv;
6337 if (p_verbose > 0)
6338 gettimeofday(&start_tv, NULL);
6339 # endif
6341 /* Ignore X errors while opening the display */
6342 oldhandler = XSetErrorHandler(x_error_check);
6344 #if defined(HAVE_SETJMP_H)
6345 /* Ignore X IO errors while opening the display */
6346 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6347 mch_startjmp();
6348 if (SETJMP(lc_jump_env) != 0)
6350 mch_didjmp();
6351 xterm_dpy = NULL;
6353 else
6354 #endif
6356 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6357 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6358 #if defined(HAVE_SETJMP_H)
6359 mch_endjmp();
6360 #endif
6363 #if defined(HAVE_SETJMP_H)
6364 /* Now handle X IO errors normally. */
6365 (void)XSetIOErrorHandler(oldIOhandler);
6366 #endif
6367 /* Now handle X errors normally. */
6368 (void)XSetErrorHandler(oldhandler);
6370 if (xterm_dpy == NULL)
6372 if (p_verbose > 0)
6373 verb_msg((char_u *)_("Opening the X display failed"));
6374 return;
6377 /* Catch terminating error of the X server connection. */
6378 (void)XSetIOErrorHandler(x_IOerror_handler);
6380 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6381 if (p_verbose > 0)
6383 verbose_enter();
6384 xopen_message(&start_tv);
6385 verbose_leave();
6387 # endif
6389 /* Create a Shell to make converters work. */
6390 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6391 applicationShellWidgetClass, xterm_dpy,
6392 NULL);
6393 if (AppShell == (Widget)0)
6394 return;
6395 xterm_Shell = XtVaCreatePopupShell("VIM",
6396 topLevelShellWidgetClass, AppShell,
6397 XtNmappedWhenManaged, 0,
6398 XtNwidth, 1,
6399 XtNheight, 1,
6400 NULL);
6401 if (xterm_Shell == (Widget)0)
6402 return;
6404 x11_setup_atoms(xterm_dpy);
6405 if (x11_display == NULL)
6406 x11_display = xterm_dpy;
6408 XtRealizeWidget(xterm_Shell);
6409 XSync(xterm_dpy, False);
6410 xterm_update();
6412 if (xterm_Shell != (Widget)0)
6414 clip_init(TRUE);
6415 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6416 x11_window = (Window)atol(strp);
6417 /* Check if $WINDOWID is valid. */
6418 if (test_x11_window(xterm_dpy) == FAIL)
6419 x11_window = 0;
6420 if (x11_window != 0)
6421 xterm_trace = 0;
6425 void
6426 start_xterm_trace(button)
6427 int button;
6429 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6430 return;
6431 xterm_trace = 1;
6432 xterm_button = button;
6433 do_xterm_trace();
6437 void
6438 stop_xterm_trace()
6440 if (xterm_trace < 0)
6441 return;
6442 xterm_trace = 0;
6446 * Query the xterm pointer and generate mouse termcodes if necessary
6447 * return TRUE if dragging is active, else FALSE
6449 static int
6450 do_xterm_trace()
6452 Window root, child;
6453 int root_x, root_y;
6454 int win_x, win_y;
6455 int row, col;
6456 int_u mask_return;
6457 char_u buf[50];
6458 char_u *strp;
6459 long got_hints;
6460 static char_u *mouse_code;
6461 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6462 static int prev_row = 0, prev_col = 0;
6463 static XSizeHints xterm_hints;
6465 if (xterm_trace <= 0)
6466 return FALSE;
6468 if (xterm_trace == 1)
6470 /* Get the hints just before tracking starts. The font size might
6471 * have changed recently. */
6472 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6473 || !(got_hints & PResizeInc)
6474 || xterm_hints.width_inc <= 1
6475 || xterm_hints.height_inc <= 1)
6477 xterm_trace = -1; /* Not enough data -- disable tracing */
6478 return FALSE;
6481 /* Rely on the same mouse code for the duration of this */
6482 mouse_code = find_termcode(mouse_name);
6483 prev_row = mouse_row;
6484 prev_row = mouse_col;
6485 xterm_trace = 2;
6487 /* Find the offset of the chars, there might be a scrollbar on the
6488 * left of the window and/or a menu on the top (eterm etc.) */
6489 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6490 &win_x, &win_y, &mask_return);
6491 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6492 - (xterm_hints.height_inc / 2);
6493 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6494 xterm_hints.y = 2;
6495 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6496 - (xterm_hints.width_inc / 2);
6497 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6498 xterm_hints.x = 2;
6499 return TRUE;
6501 if (mouse_code == NULL)
6503 xterm_trace = 0;
6504 return FALSE;
6507 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6508 &win_x, &win_y, &mask_return);
6510 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6511 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6512 if (row == prev_row && col == prev_col)
6513 return TRUE;
6515 STRCPY(buf, mouse_code);
6516 strp = buf + STRLEN(buf);
6517 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6518 *strp++ = (char_u)(col + ' ' + 1);
6519 *strp++ = (char_u)(row + ' ' + 1);
6520 *strp = 0;
6521 add_to_input_buf(buf, STRLEN(buf));
6523 prev_row = row;
6524 prev_col = col;
6525 return TRUE;
6528 # if defined(FEAT_GUI) || defined(PROTO)
6530 * Destroy the display, window and app_context. Required for GTK.
6532 void
6533 clear_xterm_clip()
6535 if (xterm_Shell != (Widget)0)
6537 XtDestroyWidget(xterm_Shell);
6538 xterm_Shell = (Widget)0;
6540 if (xterm_dpy != NULL)
6542 # if 0
6543 /* Lesstif and Solaris crash here, lose some memory */
6544 XtCloseDisplay(xterm_dpy);
6545 # endif
6546 if (x11_display == xterm_dpy)
6547 x11_display = NULL;
6548 xterm_dpy = NULL;
6550 # if 0
6551 if (app_context != (XtAppContext)NULL)
6553 /* Lesstif and Solaris crash here, lose some memory */
6554 XtDestroyApplicationContext(app_context);
6555 app_context = (XtAppContext)NULL;
6557 # endif
6559 # endif
6562 * Catch up with any queued X events. This may put keyboard input into the
6563 * input buffer, call resize call-backs, trigger timers etc. If there is
6564 * nothing in the X event queue (& no timers pending), then we return
6565 * immediately.
6567 static void
6568 xterm_update()
6570 XEvent event;
6572 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6574 XtAppNextEvent(app_context, &event);
6575 #ifdef FEAT_CLIENTSERVER
6577 XPropertyEvent *e = (XPropertyEvent *)&event;
6579 if (e->type == PropertyNotify && e->window == commWindow
6580 && e->atom == commProperty && e->state == PropertyNewValue)
6581 serverEventProc(xterm_dpy, &event);
6583 #endif
6584 XtDispatchEvent(&event);
6589 clip_xterm_own_selection(cbd)
6590 VimClipboard *cbd;
6592 if (xterm_Shell != (Widget)0)
6593 return clip_x11_own_selection(xterm_Shell, cbd);
6594 return FAIL;
6597 void
6598 clip_xterm_lose_selection(cbd)
6599 VimClipboard *cbd;
6601 if (xterm_Shell != (Widget)0)
6602 clip_x11_lose_selection(xterm_Shell, cbd);
6605 void
6606 clip_xterm_request_selection(cbd)
6607 VimClipboard *cbd;
6609 if (xterm_Shell != (Widget)0)
6610 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6613 void
6614 clip_xterm_set_selection(cbd)
6615 VimClipboard *cbd;
6617 clip_x11_set_selection(cbd);
6619 #endif
6622 #if defined(USE_XSMP) || defined(PROTO)
6624 * Code for X Session Management Protocol.
6626 static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6627 static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6628 static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6629 static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6630 static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6633 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6634 static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6637 * This is our chance to ask the user if they want to save,
6638 * or abort the logout
6640 /*ARGSUSED*/
6641 static void
6642 xsmp_handle_interaction(smc_conn, client_data)
6643 SmcConn smc_conn;
6644 SmPointer client_data;
6646 cmdmod_T save_cmdmod;
6647 int cancel_shutdown = False;
6649 save_cmdmod = cmdmod;
6650 cmdmod.confirm = TRUE;
6651 if (check_changed_any(FALSE))
6652 /* Mustn't logout */
6653 cancel_shutdown = True;
6654 cmdmod = save_cmdmod;
6655 setcursor(); /* position cursor */
6656 out_flush();
6658 /* Done interaction */
6659 SmcInteractDone(smc_conn, cancel_shutdown);
6661 /* Finish off
6662 * Only end save-yourself here if we're not cancelling shutdown;
6663 * we'll get a cancelled callback later in which we'll end it.
6664 * Hopefully get around glitchy SMs (like GNOME-1)
6666 if (!cancel_shutdown)
6668 xsmp.save_yourself = False;
6669 SmcSaveYourselfDone(smc_conn, True);
6672 # endif
6675 * Callback that starts save-yourself.
6677 /*ARGSUSED*/
6678 static void
6679 xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6680 shutdown, interact_style, fast)
6681 SmcConn smc_conn;
6682 SmPointer client_data;
6683 int save_type;
6684 Bool shutdown;
6685 int interact_style;
6686 Bool fast;
6688 /* Handle already being in saveyourself */
6689 if (xsmp.save_yourself)
6690 SmcSaveYourselfDone(smc_conn, True);
6691 xsmp.save_yourself = True;
6692 xsmp.shutdown = shutdown;
6694 /* First up, preserve all files */
6695 out_flush();
6696 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6698 if (p_verbose > 0)
6699 verb_msg((char_u *)_("XSMP handling save-yourself request"));
6701 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6702 /* Now see if we can ask about unsaved files */
6703 if (shutdown && !fast && gui.in_use)
6704 /* Need to interact with user, but need SM's permission */
6705 SmcInteractRequest(smc_conn, SmDialogError,
6706 xsmp_handle_interaction, client_data);
6707 else
6708 # endif
6710 /* Can stop the cycle here */
6711 SmcSaveYourselfDone(smc_conn, True);
6712 xsmp.save_yourself = False;
6718 * Callback to warn us of imminent death.
6720 /*ARGSUSED*/
6721 static void
6722 xsmp_die(smc_conn, client_data)
6723 SmcConn smc_conn;
6724 SmPointer client_data;
6726 xsmp_close();
6728 /* quit quickly leaving swapfiles for modified buffers behind */
6729 getout_preserve_modified(0);
6734 * Callback to tell us that save-yourself has completed.
6736 /*ARGSUSED*/
6737 static void
6738 xsmp_save_complete(smc_conn, client_data)
6739 SmcConn smc_conn;
6740 SmPointer client_data;
6742 xsmp.save_yourself = False;
6747 * Callback to tell us that an instigated shutdown was cancelled
6748 * (maybe even by us)
6750 /*ARGSUSED*/
6751 static void
6752 xsmp_shutdown_cancelled(smc_conn, client_data)
6753 SmcConn smc_conn;
6754 SmPointer client_data;
6756 if (xsmp.save_yourself)
6757 SmcSaveYourselfDone(smc_conn, True);
6758 xsmp.save_yourself = False;
6759 xsmp.shutdown = False;
6764 * Callback to tell us that a new ICE connection has been established.
6766 /*ARGSUSED*/
6767 static void
6768 xsmp_ice_connection(iceConn, clientData, opening, watchData)
6769 IceConn iceConn;
6770 IcePointer clientData;
6771 Bool opening;
6772 IcePointer *watchData;
6774 /* Intercept creation of ICE connection fd */
6775 if (opening)
6777 xsmp_icefd = IceConnectionNumber(iceConn);
6778 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6783 /* Handle any ICE processing that's required; return FAIL if SM lost */
6785 xsmp_handle_requests()
6787 Bool rep;
6789 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6790 == IceProcessMessagesIOError)
6792 /* Lost ICE */
6793 if (p_verbose > 0)
6794 verb_msg((char_u *)_("XSMP lost ICE connection"));
6795 xsmp_close();
6796 return FAIL;
6798 else
6799 return OK;
6802 static int dummy;
6804 /* Set up X Session Management Protocol */
6805 void
6806 xsmp_init(void)
6808 char errorstring[80];
6809 SmcCallbacks smcallbacks;
6810 #if 0
6811 SmPropValue smname;
6812 SmProp smnameprop;
6813 SmProp *smprops[1];
6814 #endif
6816 if (p_verbose > 0)
6817 verb_msg((char_u *)_("XSMP opening connection"));
6819 xsmp.save_yourself = xsmp.shutdown = False;
6821 /* Set up SM callbacks - must have all, even if they're not used */
6822 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6823 smcallbacks.save_yourself.client_data = NULL;
6824 smcallbacks.die.callback = xsmp_die;
6825 smcallbacks.die.client_data = NULL;
6826 smcallbacks.save_complete.callback = xsmp_save_complete;
6827 smcallbacks.save_complete.client_data = NULL;
6828 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6829 smcallbacks.shutdown_cancelled.client_data = NULL;
6831 /* Set up a watch on ICE connection creations. The "dummy" argument is
6832 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6833 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6835 if (p_verbose > 0)
6836 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
6837 return;
6840 /* Create an SM connection */
6841 xsmp.smcconn = SmcOpenConnection(
6842 NULL,
6843 NULL,
6844 SmProtoMajor,
6845 SmProtoMinor,
6846 SmcSaveYourselfProcMask | SmcDieProcMask
6847 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6848 &smcallbacks,
6849 NULL,
6850 &xsmp.clientid,
6851 sizeof(errorstring),
6852 errorstring);
6853 if (xsmp.smcconn == NULL)
6855 char errorreport[132];
6857 if (p_verbose > 0)
6859 vim_snprintf(errorreport, sizeof(errorreport),
6860 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6861 verb_msg((char_u *)errorreport);
6863 return;
6865 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6867 #if 0
6868 /* ID ourselves */
6869 smname.value = "vim";
6870 smname.length = 3;
6871 smnameprop.name = "SmProgram";
6872 smnameprop.type = "SmARRAY8";
6873 smnameprop.num_vals = 1;
6874 smnameprop.vals = &smname;
6876 smprops[0] = &smnameprop;
6877 SmcSetProperties(xsmp.smcconn, 1, smprops);
6878 #endif
6882 /* Shut down XSMP comms. */
6883 void
6884 xsmp_close()
6886 if (xsmp_icefd != -1)
6888 SmcCloseConnection(xsmp.smcconn, 0, NULL);
6889 if (xsmp.clientid != NULL)
6890 free(xsmp.clientid);
6891 xsmp.clientid = NULL;
6892 xsmp_icefd = -1;
6895 #endif /* USE_XSMP */
6898 #ifdef EBCDIC
6899 /* Translate character to its CTRL- value */
6900 char CtrlTable[] =
6902 /* 00 - 5E */
6903 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6904 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6905 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6906 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6907 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6908 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6909 /* ^ */ 0x1E,
6910 /* - */ 0x1F,
6911 /* 61 - 6C */
6912 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6913 /* _ */ 0x1F,
6914 /* 6E - 80 */
6915 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6916 /* a */ 0x01,
6917 /* b */ 0x02,
6918 /* c */ 0x03,
6919 /* d */ 0x37,
6920 /* e */ 0x2D,
6921 /* f */ 0x2E,
6922 /* g */ 0x2F,
6923 /* h */ 0x16,
6924 /* i */ 0x05,
6925 /* 8A - 90 */
6926 0, 0, 0, 0, 0, 0, 0,
6927 /* j */ 0x15,
6928 /* k */ 0x0B,
6929 /* l */ 0x0C,
6930 /* m */ 0x0D,
6931 /* n */ 0x0E,
6932 /* o */ 0x0F,
6933 /* p */ 0x10,
6934 /* q */ 0x11,
6935 /* r */ 0x12,
6936 /* 9A - A1 */
6937 0, 0, 0, 0, 0, 0, 0, 0,
6938 /* s */ 0x13,
6939 /* t */ 0x3C,
6940 /* u */ 0x3D,
6941 /* v */ 0x32,
6942 /* w */ 0x26,
6943 /* x */ 0x18,
6944 /* y */ 0x19,
6945 /* z */ 0x3F,
6946 /* AA - AC */
6947 0, 0, 0,
6948 /* [ */ 0x27,
6949 /* AE - BC */
6950 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6951 /* ] */ 0x1D,
6952 /* BE - C0 */ 0, 0, 0,
6953 /* A */ 0x01,
6954 /* B */ 0x02,
6955 /* C */ 0x03,
6956 /* D */ 0x37,
6957 /* E */ 0x2D,
6958 /* F */ 0x2E,
6959 /* G */ 0x2F,
6960 /* H */ 0x16,
6961 /* I */ 0x05,
6962 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6963 /* J */ 0x15,
6964 /* K */ 0x0B,
6965 /* L */ 0x0C,
6966 /* M */ 0x0D,
6967 /* N */ 0x0E,
6968 /* O */ 0x0F,
6969 /* P */ 0x10,
6970 /* Q */ 0x11,
6971 /* R */ 0x12,
6972 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6973 /* \ */ 0x1C,
6974 /* E1 */ 0,
6975 /* S */ 0x13,
6976 /* T */ 0x3C,
6977 /* U */ 0x3D,
6978 /* V */ 0x32,
6979 /* W */ 0x26,
6980 /* X */ 0x18,
6981 /* Y */ 0x19,
6982 /* Z */ 0x3F,
6983 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6984 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6987 char MetaCharTable[]=
6988 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6989 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6990 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6991 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6992 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6996 /* TODO: Use characters NOT numbers!!! */
6997 char CtrlCharTable[]=
6998 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6999 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
7000 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
7001 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
7002 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
7006 #endif