Dialogs are always displayed in the default run loop mode
[MacVim.git] / src / os_unix.c
blobe7bb60511ac69322341909acb6ef69ae901d31f7
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 #ifdef HAVE_FCNTL_H
39 # include <fcntl.h>
40 #endif
42 #include "os_unixx.h" /* unix includes for os_unix.c only */
44 #ifdef USE_XSMP
45 # include <X11/SM/SMlib.h>
46 #endif
48 #ifdef HAVE_SELINUX
49 # include <selinux/selinux.h>
50 static int selinux_enabled = -1;
51 #endif
54 * Use this prototype for select, some include files have a wrong prototype
56 #ifndef __TANDEM
57 # undef select
58 # ifdef __BEOS__
59 # define select beos_select
60 # endif
61 #endif
63 #ifdef __CYGWIN__
64 # ifndef WIN32
65 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
66 # endif
67 #endif
69 #if defined(HAVE_SELECT)
70 extern int select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *));
71 #endif
73 #ifdef FEAT_MOUSE_GPM
74 # include <gpm.h>
75 /* <linux/keyboard.h> contains defines conflicting with "keymap.h",
76 * I just copied relevant defines here. A cleaner solution would be to put gpm
77 * code into separate file and include there linux/keyboard.h
79 /* #include <linux/keyboard.h> */
80 # define KG_SHIFT 0
81 # define KG_CTRL 2
82 # define KG_ALT 3
83 # define KG_ALTGR 1
84 # define KG_SHIFTL 4
85 # define KG_SHIFTR 5
86 # define KG_CTRLL 6
87 # define KG_CTRLR 7
88 # define KG_CAPSSHIFT 8
90 static void gpm_close __ARGS((void));
91 static int gpm_open __ARGS((void));
92 static int mch_gpm_process __ARGS((void));
93 #endif
96 * end of autoconf section. To be extended...
99 /* Are the following #ifdefs still required? And why? Is that for X11? */
101 #if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
102 # ifdef SIGWINCH
103 # undef SIGWINCH
104 # endif
105 # ifdef TIOCGWINSZ
106 # undef TIOCGWINSZ
107 # endif
108 #endif
110 #if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
111 # define SIGWINCH SIGWINDOW
112 #endif
114 #ifdef FEAT_X11
115 # include <X11/Xlib.h>
116 # include <X11/Xutil.h>
117 # include <X11/Xatom.h>
118 # ifdef FEAT_XCLIPBOARD
119 # include <X11/Intrinsic.h>
120 # include <X11/Shell.h>
121 # include <X11/StringDefs.h>
122 static Widget xterm_Shell = (Widget)0;
123 static void xterm_update __ARGS((void));
124 # endif
126 # if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
127 Window x11_window = 0;
128 # endif
129 Display *x11_display = NULL;
131 # ifdef FEAT_TITLE
132 static int get_x11_windis __ARGS((void));
133 static void set_x11_title __ARGS((char_u *));
134 static void set_x11_icon __ARGS((char_u *));
135 # endif
136 #endif
138 #ifdef FEAT_TITLE
139 static int get_x11_title __ARGS((int));
140 static int get_x11_icon __ARGS((int));
142 static char_u *oldtitle = NULL;
143 static int did_set_title = FALSE;
144 static char_u *oldicon = NULL;
145 static int did_set_icon = FALSE;
146 #endif
148 static void may_core_dump __ARGS((void));
150 static int WaitForChar __ARGS((long));
151 #if defined(__BEOS__)
152 int RealWaitForChar __ARGS((int, long, int *));
153 #else
154 static int RealWaitForChar __ARGS((int, long, int *));
155 #endif
157 #ifdef FEAT_XCLIPBOARD
158 static int do_xterm_trace __ARGS((void));
159 # define XT_TRACE_DELAY 50 /* delay for xterm tracing */
160 #endif
162 static void handle_resize __ARGS((void));
164 #if defined(SIGWINCH)
165 static RETSIGTYPE sig_winch __ARGS(SIGPROTOARG);
166 #endif
167 #if defined(SIGINT)
168 static RETSIGTYPE catch_sigint __ARGS(SIGPROTOARG);
169 #endif
170 #if defined(SIGPWR)
171 static RETSIGTYPE catch_sigpwr __ARGS(SIGPROTOARG);
172 #endif
173 #if defined(SIGALRM) && defined(FEAT_X11) \
174 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
175 # define SET_SIG_ALARM
176 static RETSIGTYPE sig_alarm __ARGS(SIGPROTOARG);
177 static int sig_alarm_called;
178 #endif
179 static RETSIGTYPE deathtrap __ARGS(SIGPROTOARG);
181 static void catch_int_signal __ARGS((void));
182 static void set_signals __ARGS((void));
183 static void catch_signals __ARGS((RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()));
184 #ifndef __EMX__
185 static int have_wildcard __ARGS((int, char_u **));
186 static int have_dollars __ARGS((int, char_u **));
187 #endif
189 #ifndef __EMX__
190 static int save_patterns __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file));
191 #endif
193 #ifndef SIG_ERR
194 # define SIG_ERR ((RETSIGTYPE (*)())-1)
195 #endif
197 static int do_resize = FALSE;
198 #ifndef __EMX__
199 static char_u *extra_shell_arg = NULL;
200 static int show_shell_mess = TRUE;
201 #endif
202 static int deadly_signal = 0; /* The signal we caught */
203 static int in_mch_delay = FALSE; /* sleeping in mch_delay() */
205 static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
207 #ifdef USE_XSMP
208 typedef struct
210 SmcConn smcconn; /* The SM connection ID */
211 IceConn iceconn; /* The ICE connection ID */
212 char *clientid; /* The client ID for the current smc session */
213 Bool save_yourself; /* If we're in the middle of a save_yourself */
214 Bool shutdown; /* If we're in shutdown mode */
215 } xsmp_config_T;
217 static xsmp_config_T xsmp;
218 #endif
220 #ifdef SYS_SIGLIST_DECLARED
222 * I have seen
223 * extern char *_sys_siglist[NSIG];
224 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
225 * that describe the signals. That is nearly what we want here. But
226 * autoconf does only check for sys_siglist (without the underscore), I
227 * do not want to change everything today.... jw.
228 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
230 #endif
232 static struct signalinfo
234 int sig; /* Signal number, eg. SIGSEGV etc */
235 char *name; /* Signal name (not char_u!). */
236 char deadly; /* Catch as a deadly signal? */
237 } signal_info[] =
239 #ifdef SIGHUP
240 {SIGHUP, "HUP", TRUE},
241 #endif
242 #ifdef SIGQUIT
243 {SIGQUIT, "QUIT", TRUE},
244 #endif
245 #ifdef SIGILL
246 {SIGILL, "ILL", TRUE},
247 #endif
248 #ifdef SIGTRAP
249 {SIGTRAP, "TRAP", TRUE},
250 #endif
251 #ifdef SIGABRT
252 {SIGABRT, "ABRT", TRUE},
253 #endif
254 #ifdef SIGEMT
255 {SIGEMT, "EMT", TRUE},
256 #endif
257 #ifdef SIGFPE
258 {SIGFPE, "FPE", TRUE},
259 #endif
260 #ifdef SIGBUS
261 {SIGBUS, "BUS", TRUE},
262 #endif
263 #ifdef SIGSEGV
264 {SIGSEGV, "SEGV", TRUE},
265 #endif
266 #ifdef SIGSYS
267 {SIGSYS, "SYS", TRUE},
268 #endif
269 #ifdef SIGALRM
270 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
271 #endif
272 #ifdef SIGTERM
273 {SIGTERM, "TERM", TRUE},
274 #endif
275 #ifdef SIGVTALRM
276 {SIGVTALRM, "VTALRM", TRUE},
277 #endif
278 #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
279 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
280 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
281 {SIGPROF, "PROF", TRUE},
282 #endif
283 #ifdef SIGXCPU
284 {SIGXCPU, "XCPU", TRUE},
285 #endif
286 #ifdef SIGXFSZ
287 {SIGXFSZ, "XFSZ", TRUE},
288 #endif
289 #ifdef SIGUSR1
290 {SIGUSR1, "USR1", TRUE},
291 #endif
292 #ifdef SIGUSR2
293 {SIGUSR2, "USR2", TRUE},
294 #endif
295 #ifdef SIGINT
296 {SIGINT, "INT", FALSE},
297 #endif
298 #ifdef SIGWINCH
299 {SIGWINCH, "WINCH", FALSE},
300 #endif
301 #ifdef SIGTSTP
302 {SIGTSTP, "TSTP", FALSE},
303 #endif
304 #ifdef SIGPIPE
305 {SIGPIPE, "PIPE", FALSE},
306 #endif
307 {-1, "Unknown!", FALSE}
310 void
311 mch_write(s, len)
312 char_u *s;
313 int len;
315 write(1, (char *)s, len);
316 if (p_wd) /* Unix is too fast, slow down a bit more */
317 RealWaitForChar(read_cmd_fd, p_wd, NULL);
321 * mch_inchar(): low level input function.
322 * Get a characters from the keyboard.
323 * Return the number of characters that are available.
324 * If wtime == 0 do not wait for characters.
325 * If wtime == n wait a short time for characters.
326 * If wtime == -1 wait forever for characters.
329 mch_inchar(buf, maxlen, wtime, tb_change_cnt)
330 char_u *buf;
331 int maxlen;
332 long wtime; /* don't use "time", MIPS cannot handle it */
333 int tb_change_cnt;
335 int len;
337 /* Check if window changed size while we were busy, perhaps the ":set
338 * columns=99" command was used. */
339 while (do_resize)
340 handle_resize();
342 if (wtime >= 0)
344 while (WaitForChar(wtime) == 0) /* no character available */
346 if (!do_resize) /* return if not interrupted by resize */
347 return 0;
348 handle_resize();
351 else /* wtime == -1 */
354 * If there is no character available within 'updatetime' seconds
355 * flush all the swap files to disk.
356 * Also done when interrupted by SIGWINCH.
358 if (WaitForChar(p_ut) == 0)
360 #ifdef FEAT_AUTOCMD
361 if (trigger_cursorhold() && maxlen >= 3
362 && !typebuf_changed(tb_change_cnt))
364 buf[0] = K_SPECIAL;
365 buf[1] = KS_EXTRA;
366 buf[2] = (int)KE_CURSORHOLD;
367 return 3;
369 #endif
370 before_blocking();
374 for (;;) /* repeat until we got a character */
376 while (do_resize) /* window changed size */
377 handle_resize();
379 * we want to be interrupted by the winch signal
381 WaitForChar(-1L);
382 if (do_resize) /* interrupted by SIGWINCH signal */
383 continue;
385 /* If input was put directly in typeahead buffer bail out here. */
386 if (typebuf_changed(tb_change_cnt))
387 return 0;
390 * For some terminals we only get one character at a time.
391 * We want the get all available characters, so we could keep on
392 * trying until none is available
393 * For some other terminals this is quite slow, that's why we don't do
394 * it.
396 len = read_from_input_buf(buf, (long)maxlen);
397 if (len > 0)
399 #ifdef OS2
400 int i;
402 for (i = 0; i < len; i++)
403 if (buf[i] == 0)
404 buf[i] = K_NUL;
405 #endif
406 return len;
411 static void
412 handle_resize()
414 do_resize = FALSE;
415 shell_resized();
419 * return non-zero if a character is available
422 mch_char_avail()
424 return WaitForChar(0L);
427 #if defined(HAVE_TOTAL_MEM) || defined(PROTO)
428 # ifdef HAVE_SYS_RESOURCE_H
429 # include <sys/resource.h>
430 # endif
431 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
432 # include <sys/sysctl.h>
433 # endif
434 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
435 # include <sys/sysinfo.h>
436 # endif
439 * Return total amount of memory available in Kbyte.
440 * Doesn't change when memory has been allocated.
442 /* ARGSUSED */
443 long_u
444 mch_total_mem(special)
445 int special;
447 # ifdef __EMX__
448 return ulimit(3, 0L) >> 10; /* always 32MB? */
449 # else
450 long_u mem = 0;
451 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
453 # ifdef HAVE_SYSCTL
454 int mib[2], physmem;
455 size_t len;
457 /* BSD way of getting the amount of RAM available. */
458 mib[0] = CTL_HW;
459 mib[1] = HW_USERMEM;
460 len = sizeof(physmem);
461 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
462 mem = (long_u)physmem;
463 # endif
465 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
466 if (mem == 0)
468 struct sysinfo sinfo;
470 /* Linux way of getting amount of RAM available */
471 if (sysinfo(&sinfo) == 0)
473 # ifdef HAVE_SYSINFO_MEM_UNIT
474 /* avoid overflow as much as possible */
475 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
477 sinfo.mem_unit = sinfo.mem_unit >> 1;
478 --shiftright;
480 mem = sinfo.totalram * sinfo.mem_unit;
481 # else
482 mem = sinfo.totalram;
483 # endif
486 # endif
488 # ifdef HAVE_SYSCONF
489 if (mem == 0)
491 long pagesize, pagecount;
493 /* Solaris way of getting amount of RAM available */
494 pagesize = sysconf(_SC_PAGESIZE);
495 pagecount = sysconf(_SC_PHYS_PAGES);
496 if (pagesize > 0 && pagecount > 0)
498 /* avoid overflow as much as possible */
499 while (shiftright > 0 && (pagesize & 1) == 0)
501 pagesize = (long_u)pagesize >> 1;
502 --shiftright;
504 mem = (long_u)pagesize * pagecount;
507 # endif
509 /* Return the minimum of the physical memory and the user limit, because
510 * using more than the user limit may cause Vim to be terminated. */
511 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
513 struct rlimit rlp;
515 if (getrlimit(RLIMIT_DATA, &rlp) == 0
516 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
517 # ifdef RLIM_INFINITY
518 && rlp.rlim_cur != RLIM_INFINITY
519 # endif
520 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
523 mem = (long_u)rlp.rlim_cur;
524 shiftright = 10;
527 # endif
529 if (mem > 0)
530 return mem >> shiftright;
531 return (long_u)0x1fffff;
532 # endif
534 #endif
536 void
537 mch_delay(msec, ignoreinput)
538 long msec;
539 int ignoreinput;
541 int old_tmode;
542 #ifdef FEAT_MZSCHEME
543 long total = msec; /* remember original value */
544 #endif
546 if (ignoreinput)
548 /* Go to cooked mode without echo, to allow SIGINT interrupting us
549 * here. But we don't want QUIT to kill us (CTRL-\ used in a
550 * shell may produce SIGQUIT). */
551 in_mch_delay = TRUE;
552 old_tmode = curr_tmode;
553 if (curr_tmode == TMODE_RAW)
554 settmode(TMODE_SLEEP);
557 * Everybody sleeps in a different way...
558 * Prefer nanosleep(), some versions of usleep() can only sleep up to
559 * one second.
561 #ifdef FEAT_MZSCHEME
564 /* if total is large enough, wait by portions in p_mzq */
565 if (total > p_mzq)
566 msec = p_mzq;
567 else
568 msec = total;
569 total -= msec;
570 #endif
571 #ifdef HAVE_NANOSLEEP
573 struct timespec ts;
575 ts.tv_sec = msec / 1000;
576 ts.tv_nsec = (msec % 1000) * 1000000;
577 (void)nanosleep(&ts, NULL);
579 #else
580 # ifdef HAVE_USLEEP
581 while (msec >= 1000)
583 usleep((unsigned int)(999 * 1000));
584 msec -= 999;
586 usleep((unsigned int)(msec * 1000));
587 # else
588 # ifndef HAVE_SELECT
589 poll(NULL, 0, (int)msec);
590 # else
591 # ifdef __EMX__
592 _sleep2(msec);
593 # else
595 struct timeval tv;
597 tv.tv_sec = msec / 1000;
598 tv.tv_usec = (msec % 1000) * 1000;
600 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
601 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
603 select(0, NULL, NULL, NULL, &tv);
605 # endif /* __EMX__ */
606 # endif /* HAVE_SELECT */
607 # endif /* HAVE_NANOSLEEP */
608 #endif /* HAVE_USLEEP */
609 #ifdef FEAT_MZSCHEME
611 while (total > 0);
612 #endif
614 settmode(old_tmode);
615 in_mch_delay = FALSE;
617 else
618 WaitForChar(msec);
621 #if 0 /* disabled, no longer needed now that regmatch() is not recursive */
622 # if defined(HAVE_GETRLIMIT)
623 # define HAVE_STACK_LIMIT
624 # endif
625 #endif
627 #if defined(HAVE_STACK_LIMIT) \
628 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
629 # define HAVE_CHECK_STACK_GROWTH
631 * Support for checking for an almost-out-of-stack-space situation.
635 * Return a pointer to an item on the stack. Used to find out if the stack
636 * grows up or down.
638 static void check_stack_growth __ARGS((char *p));
639 static int stack_grows_downwards;
642 * Find out if the stack grows upwards or downwards.
643 * "p" points to a variable on the stack of the caller.
645 static void
646 check_stack_growth(p)
647 char *p;
649 int i;
651 stack_grows_downwards = (p > (char *)&i);
653 #endif
655 #if defined(HAVE_STACK_LIMIT) || defined(PROTO)
656 static char *stack_limit = NULL;
658 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
659 # include <pthread.h>
660 # include <pthread_np.h>
661 #endif
664 * Find out until how var the stack can grow without getting into trouble.
665 * Called when starting up and when switching to the signal stack in
666 * deathtrap().
668 static void
669 get_stack_limit()
671 struct rlimit rlp;
672 int i;
673 long lim;
675 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
676 * limit doesn't fit in a long (rlim_cur might be "long long"). */
677 if (getrlimit(RLIMIT_STACK, &rlp) == 0
678 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
679 # ifdef RLIM_INFINITY
680 && rlp.rlim_cur != RLIM_INFINITY
681 # endif
684 lim = (long)rlp.rlim_cur;
685 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
687 pthread_attr_t attr;
688 size_t size;
690 /* On FreeBSD the initial thread always has a fixed stack size, no
691 * matter what the limits are set to. Normally it's 1 Mbyte. */
692 pthread_attr_init(&attr);
693 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
695 pthread_attr_getstacksize(&attr, &size);
696 if (lim > (long)size)
697 lim = (long)size;
699 pthread_attr_destroy(&attr);
701 #endif
702 if (stack_grows_downwards)
704 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
705 if (stack_limit >= (char *)&i)
706 /* overflow, set to 1/16 of current stack position */
707 stack_limit = (char *)((long)&i / 16L);
709 else
711 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
712 if (stack_limit <= (char *)&i)
713 stack_limit = NULL; /* overflow */
719 * Return FAIL when running out of stack space.
720 * "p" must point to any variable local to the caller that's on the stack.
723 mch_stackcheck(p)
724 char *p;
726 if (stack_limit != NULL)
728 if (stack_grows_downwards)
730 if (p < stack_limit)
731 return FAIL;
733 else if (p > stack_limit)
734 return FAIL;
736 return OK;
738 #endif
740 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
742 * Support for using the signal stack.
743 * This helps when we run out of stack space, which causes a SIGSEGV. The
744 * signal handler then must run on another stack, since the normal stack is
745 * completely full.
748 #ifndef SIGSTKSZ
749 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
750 #endif
752 # ifdef HAVE_SIGALTSTACK
753 static stack_t sigstk; /* for sigaltstack() */
754 # else
755 static struct sigstack sigstk; /* for sigstack() */
756 # endif
758 static void init_signal_stack __ARGS((void));
759 static char *signal_stack;
761 static void
762 init_signal_stack()
764 if (signal_stack != NULL)
766 # ifdef HAVE_SIGALTSTACK
767 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
768 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
769 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
770 * "struct sigaltstack" needs to be declared. */
771 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
772 # endif
774 # ifdef HAVE_SS_BASE
775 sigstk.ss_base = signal_stack;
776 # else
777 sigstk.ss_sp = signal_stack;
778 # endif
779 sigstk.ss_size = SIGSTKSZ;
780 sigstk.ss_flags = 0;
781 (void)sigaltstack(&sigstk, NULL);
782 # else
783 sigstk.ss_sp = signal_stack;
784 if (stack_grows_downwards)
785 sigstk.ss_sp += SIGSTKSZ - 1;
786 sigstk.ss_onstack = 0;
787 (void)sigstack(&sigstk, NULL);
788 # endif
791 #endif
794 * We need correct potatotypes for a signal function, otherwise mean compilers
795 * will barf when the second argument to signal() is ``wrong''.
796 * Let me try it with a few tricky defines from my own osdef.h (jw).
798 #if defined(SIGWINCH)
799 /* ARGSUSED */
800 static RETSIGTYPE
801 sig_winch SIGDEFARG(sigarg)
803 /* this is not required on all systems, but it doesn't hurt anybody */
804 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
805 do_resize = TRUE;
806 SIGRETURN;
808 #endif
810 #if defined(SIGINT)
811 /* ARGSUSED */
812 static RETSIGTYPE
813 catch_sigint SIGDEFARG(sigarg)
815 /* this is not required on all systems, but it doesn't hurt anybody */
816 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
817 got_int = TRUE;
818 SIGRETURN;
820 #endif
822 #if defined(SIGPWR)
823 /* ARGSUSED */
824 static RETSIGTYPE
825 catch_sigpwr SIGDEFARG(sigarg)
827 /* this is not required on all systems, but it doesn't hurt anybody */
828 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
830 * I'm not sure we get the SIGPWR signal when the system is really going
831 * down or when the batteries are almost empty. Just preserve the swap
832 * files and don't exit, that can't do any harm.
834 ml_sync_all(FALSE, FALSE);
835 SIGRETURN;
837 #endif
839 #ifdef SET_SIG_ALARM
841 * signal function for alarm().
843 /* ARGSUSED */
844 static RETSIGTYPE
845 sig_alarm SIGDEFARG(sigarg)
847 /* doesn't do anything, just to break a system call */
848 sig_alarm_called = TRUE;
849 SIGRETURN;
851 #endif
853 #if (defined(HAVE_SETJMP_H) \
854 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
855 || defined(FEAT_LIBCALL))) \
856 || defined(PROTO)
858 * A simplistic version of setjmp() that only allows one level of using.
859 * Don't call twice before calling mch_endjmp()!.
860 * Usage:
861 * mch_startjmp();
862 * if (SETJMP(lc_jump_env) != 0)
864 * mch_didjmp();
865 * EMSG("crash!");
867 * else
869 * do_the_work;
870 * mch_endjmp();
872 * Note: Can't move SETJMP() here, because a function calling setjmp() must
873 * not return before the saved environment is used.
874 * Returns OK for normal return, FAIL when the protected code caused a
875 * problem and LONGJMP() was used.
877 void
878 mch_startjmp()
880 #ifdef SIGHASARG
881 lc_signal = 0;
882 #endif
883 lc_active = TRUE;
886 void
887 mch_endjmp()
889 lc_active = FALSE;
892 void
893 mch_didjmp()
895 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
896 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
897 * otherwise catching the signal only works once. */
898 init_signal_stack();
899 # endif
901 #endif
904 * This function handles deadly signals.
905 * It tries to preserve any swap file and exit properly.
906 * (partly from Elvis).
908 static RETSIGTYPE
909 deathtrap SIGDEFARG(sigarg)
911 static int entered = 0; /* count the number of times we got here.
912 Note: when memory has been corrupted
913 this may get an arbitrary value! */
914 #ifdef SIGHASARG
915 int i;
916 #endif
918 #if defined(HAVE_SETJMP_H)
920 * Catch a crash in protected code.
921 * Restores the environment saved in lc_jump_env, which looks like
922 * SETJMP() returns 1.
924 if (lc_active)
926 # if defined(SIGHASARG)
927 lc_signal = sigarg;
928 # endif
929 lc_active = FALSE; /* don't jump again */
930 LONGJMP(lc_jump_env, 1);
931 /* NOTREACHED */
933 #endif
935 #ifdef SIGHASARG
936 # ifdef SIGQUIT
937 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
938 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
939 * pressing CTRL-\, but we don't want Vim to exit then. */
940 if (in_mch_delay && sigarg == SIGQUIT)
941 SIGRETURN;
942 # endif
944 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
945 * here. This avoids that a non-reentrant function is interrupted, e.g.,
946 * free(). Calling free() again may then cause a crash. */
947 if (entered == 0
948 && (0
949 # ifdef SIGHUP
950 || sigarg == SIGHUP
951 # endif
952 # ifdef SIGQUIT
953 || sigarg == SIGQUIT
954 # endif
955 # ifdef SIGTERM
956 || sigarg == SIGTERM
957 # endif
958 # ifdef SIGPWR
959 || sigarg == SIGPWR
960 # endif
961 # ifdef SIGUSR1
962 || sigarg == SIGUSR1
963 # endif
964 # ifdef SIGUSR2
965 || sigarg == SIGUSR2
966 # endif
968 && !vim_handle_signal(sigarg))
969 SIGRETURN;
970 #endif
972 /* Remember how often we have been called. */
973 ++entered;
975 #ifdef FEAT_EVAL
976 /* Set the v:dying variable. */
977 set_vim_var_nr(VV_DYING, (long)entered);
978 #endif
980 #ifdef HAVE_STACK_LIMIT
981 /* Since we are now using the signal stack, need to reset the stack
982 * limit. Otherwise using a regexp will fail. */
983 get_stack_limit();
984 #endif
986 #if 0
987 /* This is for opening gdb the moment Vim crashes.
988 * You need to manually adjust the file name and Vim executable name.
989 * Suggested by SungHyun Nam. */
991 # define VI_GDB_FILE "/tmp/vimgdb"
992 # define VIM_NAME "/usr/bin/vim"
993 FILE *fp = fopen(VI_GDB_FILE, "w");
994 if (fp)
996 fprintf(fp,
997 "file %s\n"
998 "attach %d\n"
999 "set height 1000\n"
1000 "bt full\n"
1001 , VIM_NAME, getpid());
1002 fclose(fp);
1003 system("xterm -e gdb -x "VI_GDB_FILE);
1004 unlink(VI_GDB_FILE);
1007 #endif
1009 #ifdef SIGHASARG
1010 /* try to find the name of this signal */
1011 for (i = 0; signal_info[i].sig != -1; i++)
1012 if (sigarg == signal_info[i].sig)
1013 break;
1014 deadly_signal = sigarg;
1015 #endif
1017 full_screen = FALSE; /* don't write message to the GUI, it might be
1018 * part of the problem... */
1020 * If something goes wrong after entering here, we may get here again.
1021 * When this happens, give a message and try to exit nicely (resetting the
1022 * terminal mode, etc.)
1023 * When this happens twice, just exit, don't even try to give a message,
1024 * stack may be corrupt or something weird.
1025 * When this still happens again (or memory was corrupted in such a way
1026 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1028 if (entered >= 3)
1030 reset_signals(); /* don't catch any signals anymore */
1031 may_core_dump();
1032 if (entered >= 4)
1033 _exit(8);
1034 exit(7);
1036 if (entered == 2)
1038 OUT_STR(_("Vim: Double signal, exiting\n"));
1039 out_flush();
1040 getout(1);
1043 #ifdef SIGHASARG
1044 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1045 signal_info[i].name);
1046 #else
1047 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1048 #endif
1049 preserve_exit(); /* preserve files and exit */
1051 #ifdef NBDEBUG
1052 reset_signals();
1053 may_core_dump();
1054 abort();
1055 #endif
1057 SIGRETURN;
1060 #ifdef _REENTRANT
1062 * On Solaris with multi-threading, suspending might not work immediately.
1063 * Catch the SIGCONT signal, which will be used as an indication whether the
1064 * suspending has been done or not.
1066 static int sigcont_received;
1067 static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1070 * signal handler for SIGCONT
1072 /* ARGSUSED */
1073 static RETSIGTYPE
1074 sigcont_handler SIGDEFARG(sigarg)
1076 sigcont_received = TRUE;
1077 SIGRETURN;
1079 #endif
1082 * If the machine has job control, use it to suspend the program,
1083 * otherwise fake it by starting a new shell.
1085 void
1086 mch_suspend()
1088 /* BeOS does have SIGTSTP, but it doesn't work. */
1089 #if defined(SIGTSTP) && !defined(__BEOS__)
1090 out_flush(); /* needed to make cursor visible on some systems */
1091 settmode(TMODE_COOK);
1092 out_flush(); /* needed to disable mouse on some systems */
1094 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1095 /* Since we are going to sleep, we can't respond to requests for the X
1096 * selections. Lose them, otherwise other applications will hang. But
1097 * first copy the text to cut buffer 0. */
1098 if (clip_star.owned || clip_plus.owned)
1100 x11_export_final_selection();
1101 if (clip_star.owned)
1102 clip_lose_selection(&clip_star);
1103 if (clip_plus.owned)
1104 clip_lose_selection(&clip_plus);
1105 if (x11_display != NULL)
1106 XFlush(x11_display);
1108 # endif
1110 # ifdef _REENTRANT
1111 sigcont_received = FALSE;
1112 # endif
1113 kill(0, SIGTSTP); /* send ourselves a STOP signal */
1114 # ifdef _REENTRANT
1115 /* When we didn't suspend immediately in the kill(), do it now. Happens
1116 * on multi-threaded Solaris. */
1117 if (!sigcont_received)
1118 pause();
1119 # endif
1121 # ifdef FEAT_TITLE
1123 * Set oldtitle to NULL, so the current title is obtained again.
1125 vim_free(oldtitle);
1126 oldtitle = NULL;
1127 # endif
1128 settmode(TMODE_RAW);
1129 need_check_timestamps = TRUE;
1130 did_check_timestamps = FALSE;
1131 #else
1132 suspend_shell();
1133 #endif
1136 void
1137 mch_init()
1139 Columns = 80;
1140 Rows = 24;
1142 out_flush();
1143 set_signals();
1145 #ifdef MACOS_CONVERT
1146 mac_conv_init();
1147 #endif
1150 static void
1151 set_signals()
1153 #if defined(SIGWINCH)
1155 * WINDOW CHANGE signal is handled with sig_winch().
1157 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1158 #endif
1161 * We want the STOP signal to work, to make mch_suspend() work.
1162 * For "rvim" the STOP signal is ignored.
1164 #ifdef SIGTSTP
1165 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1166 #endif
1167 #ifdef _REENTRANT
1168 signal(SIGCONT, sigcont_handler);
1169 #endif
1172 * We want to ignore breaking of PIPEs.
1174 #ifdef SIGPIPE
1175 signal(SIGPIPE, SIG_IGN);
1176 #endif
1178 #ifdef SIGINT
1179 catch_int_signal();
1180 #endif
1183 * Ignore alarm signals (Perl's alarm() generates it).
1185 #ifdef SIGALRM
1186 signal(SIGALRM, SIG_IGN);
1187 #endif
1190 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1191 * work will be lost.
1193 #ifdef SIGPWR
1194 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1195 #endif
1198 * Arrange for other signals to gracefully shutdown Vim.
1200 catch_signals(deathtrap, SIG_ERR);
1202 #if defined(FEAT_GUI) && defined(SIGHUP)
1204 * When the GUI is running, ignore the hangup signal.
1206 if (gui.in_use)
1207 signal(SIGHUP, SIG_IGN);
1208 #endif
1211 #if defined(SIGINT) || defined(PROTO)
1213 * Catch CTRL-C (only works while in Cooked mode).
1215 static void
1216 catch_int_signal()
1218 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1220 #endif
1222 void
1223 reset_signals()
1225 catch_signals(SIG_DFL, SIG_DFL);
1226 #ifdef _REENTRANT
1227 /* SIGCONT isn't in the list, because its default action is ignore */
1228 signal(SIGCONT, SIG_DFL);
1229 #endif
1232 static void
1233 catch_signals(func_deadly, func_other)
1234 RETSIGTYPE (*func_deadly)();
1235 RETSIGTYPE (*func_other)();
1237 int i;
1239 for (i = 0; signal_info[i].sig != -1; i++)
1240 if (signal_info[i].deadly)
1242 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1243 struct sigaction sa;
1245 /* Setup to use the alternate stack for the signal function. */
1246 sa.sa_handler = func_deadly;
1247 sigemptyset(&sa.sa_mask);
1248 # if defined(__linux__) && defined(_REENTRANT)
1249 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1250 * thread handling in combination with using the alternate stack:
1251 * pthread library functions try to use the stack pointer to
1252 * identify the current thread, causing a SEGV signal, which
1253 * recursively calls deathtrap() and hangs. */
1254 sa.sa_flags = 0;
1255 # else
1256 sa.sa_flags = SA_ONSTACK;
1257 # endif
1258 sigaction(signal_info[i].sig, &sa, NULL);
1259 #else
1260 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1261 struct sigvec sv;
1263 /* Setup to use the alternate stack for the signal function. */
1264 sv.sv_handler = func_deadly;
1265 sv.sv_mask = 0;
1266 sv.sv_flags = SV_ONSTACK;
1267 sigvec(signal_info[i].sig, &sv, NULL);
1268 # else
1269 signal(signal_info[i].sig, func_deadly);
1270 # endif
1271 #endif
1273 else if (func_other != SIG_ERR)
1274 signal(signal_info[i].sig, func_other);
1278 * Handling of SIGHUP, SIGQUIT and SIGTERM:
1279 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1280 * return TRUE
1281 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1282 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1283 * signal
1284 * Returns TRUE when Vim should exit.
1287 vim_handle_signal(sig)
1288 int sig;
1290 static int got_signal = 0;
1291 static int blocked = TRUE;
1293 switch (sig)
1295 case SIGNAL_BLOCK: blocked = TRUE;
1296 break;
1298 case SIGNAL_UNBLOCK: blocked = FALSE;
1299 if (got_signal != 0)
1301 kill(getpid(), got_signal);
1302 got_signal = 0;
1304 break;
1306 default: if (!blocked)
1307 return TRUE; /* exit! */
1308 got_signal = sig;
1309 #ifdef SIGPWR
1310 if (sig != SIGPWR)
1311 #endif
1312 got_int = TRUE; /* break any loops */
1313 break;
1315 return FALSE;
1319 * Check_win checks whether we have an interactive stdout.
1321 /* ARGSUSED */
1323 mch_check_win(argc, argv)
1324 int argc;
1325 char **argv;
1327 #ifdef OS2
1329 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1330 * name, mostly it's just "vim" and found in the path, which is unusable.
1332 if (mch_isFullName(argv[0]))
1333 exe_name = vim_strsave((char_u *)argv[0]);
1334 #endif
1335 if (isatty(1))
1336 return OK;
1337 return FAIL;
1341 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1344 mch_input_isatty()
1346 if (isatty(read_cmd_fd))
1347 return TRUE;
1348 return FALSE;
1351 #ifdef FEAT_X11
1353 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1354 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1356 static void xopen_message __ARGS((struct timeval *tvp));
1359 * Give a message about the elapsed time for opening the X window.
1361 static void
1362 xopen_message(tvp)
1363 struct timeval *tvp; /* must contain start time */
1365 struct timeval end_tv;
1367 /* Compute elapsed time. */
1368 gettimeofday(&end_tv, NULL);
1369 smsg((char_u *)_("Opening the X display took %ld msec"),
1370 (end_tv.tv_sec - tvp->tv_sec) * 1000L
1371 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
1373 # endif
1374 #endif
1376 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1378 * A few functions shared by X11 title and clipboard code.
1380 static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1381 static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1382 static int x_connect_to_server __ARGS((void));
1383 static int test_x11_window __ARGS((Display *dpy));
1385 static int got_x_error = FALSE;
1388 * X Error handler, otherwise X just exits! (very rude) -- webb
1390 static int
1391 x_error_handler(dpy, error_event)
1392 Display *dpy;
1393 XErrorEvent *error_event;
1395 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
1396 STRCAT(IObuff, _("\nVim: Got X error\n"));
1398 /* We cannot print a message and continue, because no X calls are allowed
1399 * here (causes my system to hang). Silently continuing might be an
1400 * alternative... */
1401 preserve_exit(); /* preserve files and exit */
1403 return 0; /* NOTREACHED */
1407 * Another X Error handler, just used to check for errors.
1409 /* ARGSUSED */
1410 static int
1411 x_error_check(dpy, error_event)
1412 Display *dpy;
1413 XErrorEvent *error_event;
1415 got_x_error = TRUE;
1416 return 0;
1419 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1420 # if defined(HAVE_SETJMP_H)
1422 * An X IO Error handler, used to catch error while opening the display.
1424 static int x_IOerror_check __ARGS((Display *dpy));
1426 /* ARGSUSED */
1427 static int
1428 x_IOerror_check(dpy)
1429 Display *dpy;
1431 /* This function should not return, it causes exit(). Longjump instead. */
1432 LONGJMP(lc_jump_env, 1);
1433 /*NOTREACHED*/
1434 return 0;
1436 # endif
1439 * An X IO Error handler, used to catch terminal errors.
1441 static int x_IOerror_handler __ARGS((Display *dpy));
1443 /* ARGSUSED */
1444 static int
1445 x_IOerror_handler(dpy)
1446 Display *dpy;
1448 xterm_dpy = NULL;
1449 x11_window = 0;
1450 x11_display = NULL;
1451 xterm_Shell = (Widget)0;
1453 /* This function should not return, it causes exit(). Longjump instead. */
1454 LONGJMP(x_jump_env, 1);
1455 /*NOTREACHED*/
1456 return 0;
1458 #endif
1461 * Return TRUE when connection to the X server is desired.
1463 static int
1464 x_connect_to_server()
1466 regmatch_T regmatch;
1468 #if defined(FEAT_CLIENTSERVER)
1469 if (x_force_connect)
1470 return TRUE;
1471 #endif
1472 if (x_no_connect)
1473 return FALSE;
1475 /* Check for a match with "exclude:" from 'clipboard'. */
1476 if (clip_exclude_prog != NULL)
1478 regmatch.rm_ic = FALSE; /* Don't ignore case */
1479 regmatch.regprog = clip_exclude_prog;
1480 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1481 return FALSE;
1483 return TRUE;
1487 * Test if "dpy" and x11_window are valid by getting the window title.
1488 * I don't actually want it yet, so there may be a simpler call to use, but
1489 * this will cause the error handler x_error_check() to be called if anything
1490 * is wrong, such as the window pointer being invalid (as can happen when the
1491 * user changes his DISPLAY, but not his WINDOWID) -- webb
1493 static int
1494 test_x11_window(dpy)
1495 Display *dpy;
1497 int (*old_handler)();
1498 XTextProperty text_prop;
1500 old_handler = XSetErrorHandler(x_error_check);
1501 got_x_error = FALSE;
1502 if (XGetWMName(dpy, x11_window, &text_prop))
1503 XFree((void *)text_prop.value);
1504 XSync(dpy, False);
1505 (void)XSetErrorHandler(old_handler);
1507 if (p_verbose > 0 && got_x_error)
1508 verb_msg((char_u *)_("Testing the X display failed"));
1510 return (got_x_error ? FAIL : OK);
1512 #endif
1514 #ifdef FEAT_TITLE
1516 #ifdef FEAT_X11
1518 static int get_x11_thing __ARGS((int get_title, int test_only));
1521 * try to get x11 window and display
1523 * return FAIL for failure, OK otherwise
1525 static int
1526 get_x11_windis()
1528 char *winid;
1529 static int result = -1;
1530 #define XD_NONE 0 /* x11_display not set here */
1531 #define XD_HERE 1 /* x11_display opened here */
1532 #define XD_GUI 2 /* x11_display used from gui.dpy */
1533 #define XD_XTERM 3 /* x11_display used from xterm_dpy */
1534 static int x11_display_from = XD_NONE;
1535 static int did_set_error_handler = FALSE;
1537 if (!did_set_error_handler)
1539 /* X just exits if it finds an error otherwise! */
1540 (void)XSetErrorHandler(x_error_handler);
1541 did_set_error_handler = TRUE;
1544 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
1545 if (gui.in_use)
1548 * If the X11 display was opened here before, for the window where Vim
1549 * was started, close that one now to avoid a memory leak.
1551 if (x11_display_from == XD_HERE && x11_display != NULL)
1553 XCloseDisplay(x11_display);
1554 x11_display_from = XD_NONE;
1556 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1558 x11_display_from = XD_GUI;
1559 return OK;
1561 x11_display = NULL;
1562 return FAIL;
1564 else if (x11_display_from == XD_GUI)
1566 /* GUI must have stopped somehow, clear x11_display */
1567 x11_window = 0;
1568 x11_display = NULL;
1569 x11_display_from = XD_NONE;
1571 #endif
1573 /* When started with the "-X" argument, don't try connecting. */
1574 if (!x_connect_to_server())
1575 return FAIL;
1578 * If WINDOWID not set, should try another method to find out
1579 * what the current window number is. The only code I know for
1580 * this is very complicated.
1581 * We assume that zero is invalid for WINDOWID.
1583 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1584 x11_window = (Window)atol(winid);
1586 #ifdef FEAT_XCLIPBOARD
1587 if (xterm_dpy != NULL && x11_window != 0)
1589 /* We may have checked it already, but Gnome terminal can move us to
1590 * another window, so we need to check every time. */
1591 if (x11_display_from != XD_XTERM)
1594 * If the X11 display was opened here before, for the window where
1595 * Vim was started, close that one now to avoid a memory leak.
1597 if (x11_display_from == XD_HERE && x11_display != NULL)
1598 XCloseDisplay(x11_display);
1599 x11_display = xterm_dpy;
1600 x11_display_from = XD_XTERM;
1602 if (test_x11_window(x11_display) == FAIL)
1604 /* probably bad $WINDOWID */
1605 x11_window = 0;
1606 x11_display = NULL;
1607 x11_display_from = XD_NONE;
1608 return FAIL;
1610 return OK;
1612 #endif
1614 if (x11_window == 0 || x11_display == NULL)
1615 result = -1;
1617 if (result != -1) /* Have already been here and set this */
1618 return result; /* Don't do all these X calls again */
1620 if (x11_window != 0 && x11_display == NULL)
1622 #ifdef SET_SIG_ALARM
1623 RETSIGTYPE (*sig_save)();
1624 #endif
1625 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1626 struct timeval start_tv;
1628 if (p_verbose > 0)
1629 gettimeofday(&start_tv, NULL);
1630 #endif
1632 #ifdef SET_SIG_ALARM
1634 * Opening the Display may hang if the DISPLAY setting is wrong, or
1635 * the network connection is bad. Set an alarm timer to get out.
1637 sig_alarm_called = FALSE;
1638 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1639 (RETSIGTYPE (*)())sig_alarm);
1640 alarm(2);
1641 #endif
1642 x11_display = XOpenDisplay(NULL);
1644 #ifdef SET_SIG_ALARM
1645 alarm(0);
1646 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1647 if (p_verbose > 0 && sig_alarm_called)
1648 verb_msg((char_u *)_("Opening the X display timed out"));
1649 #endif
1650 if (x11_display != NULL)
1652 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1653 if (p_verbose > 0)
1655 verbose_enter();
1656 xopen_message(&start_tv);
1657 verbose_leave();
1659 # endif
1660 if (test_x11_window(x11_display) == FAIL)
1662 /* Maybe window id is bad */
1663 x11_window = 0;
1664 XCloseDisplay(x11_display);
1665 x11_display = NULL;
1667 else
1668 x11_display_from = XD_HERE;
1671 if (x11_window == 0 || x11_display == NULL)
1672 return (result = FAIL);
1673 return (result = OK);
1677 * Determine original x11 Window Title
1679 static int
1680 get_x11_title(test_only)
1681 int test_only;
1683 return get_x11_thing(TRUE, test_only);
1687 * Determine original x11 Window icon
1689 static int
1690 get_x11_icon(test_only)
1691 int test_only;
1693 int retval = FALSE;
1695 retval = get_x11_thing(FALSE, test_only);
1697 /* could not get old icon, use terminal name */
1698 if (oldicon == NULL && !test_only)
1700 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1701 oldicon = T_NAME + 8;
1702 else
1703 oldicon = T_NAME;
1706 return retval;
1709 static int
1710 get_x11_thing(get_title, test_only)
1711 int get_title; /* get title string */
1712 int test_only;
1714 XTextProperty text_prop;
1715 int retval = FALSE;
1716 Status status;
1718 if (get_x11_windis() == OK)
1720 /* Get window/icon name if any */
1721 if (get_title)
1722 status = XGetWMName(x11_display, x11_window, &text_prop);
1723 else
1724 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1727 * If terminal is xterm, then x11_window may be a child window of the
1728 * outer xterm window that actually contains the window/icon name, so
1729 * keep traversing up the tree until a window with a title/icon is
1730 * found.
1732 /* Previously this was only done for xterm and alikes. I don't see a
1733 * reason why it would fail for other terminal emulators.
1734 * if (term_is_xterm) */
1736 Window root;
1737 Window parent;
1738 Window win = x11_window;
1739 Window *children;
1740 unsigned int num_children;
1742 while (!status || text_prop.value == NULL)
1744 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1745 &num_children))
1746 break;
1747 if (children)
1748 XFree((void *)children);
1749 if (parent == root || parent == 0)
1750 break;
1752 win = parent;
1753 if (get_title)
1754 status = XGetWMName(x11_display, win, &text_prop);
1755 else
1756 status = XGetWMIconName(x11_display, win, &text_prop);
1759 if (status && text_prop.value != NULL)
1761 retval = TRUE;
1762 if (!test_only)
1764 #ifdef FEAT_XFONTSET
1765 if (text_prop.encoding == XA_STRING)
1767 #endif
1768 if (get_title)
1769 oldtitle = vim_strsave((char_u *)text_prop.value);
1770 else
1771 oldicon = vim_strsave((char_u *)text_prop.value);
1772 #ifdef FEAT_XFONTSET
1774 else
1776 char **cl;
1777 Status transform_status;
1778 int n = 0;
1780 transform_status = XmbTextPropertyToTextList(x11_display,
1781 &text_prop,
1782 &cl, &n);
1783 if (transform_status >= Success && n > 0 && cl[0])
1785 if (get_title)
1786 oldtitle = vim_strsave((char_u *) cl[0]);
1787 else
1788 oldicon = vim_strsave((char_u *) cl[0]);
1789 XFreeStringList(cl);
1791 else
1793 if (get_title)
1794 oldtitle = vim_strsave((char_u *)text_prop.value);
1795 else
1796 oldicon = vim_strsave((char_u *)text_prop.value);
1799 #endif
1801 XFree((void *)text_prop.value);
1804 return retval;
1807 /* Are Xutf8 functions available? Avoid error from old compilers. */
1808 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1809 # if X_HAVE_UTF8_STRING
1810 # define USE_UTF8_STRING
1811 # endif
1812 #endif
1815 * Set x11 Window Title
1817 * get_x11_windis() must be called before this and have returned OK
1819 static void
1820 set_x11_title(title)
1821 char_u *title;
1823 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1824 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1825 * supported everywhere and STRING doesn't work for multi-byte titles.
1827 #ifdef USE_UTF8_STRING
1828 if (enc_utf8)
1829 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1830 NULL, NULL, 0, NULL, NULL, NULL);
1831 else
1832 #endif
1834 #if XtSpecificationRelease >= 4
1835 # ifdef FEAT_XFONTSET
1836 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1837 NULL, NULL, 0, NULL, NULL, NULL);
1838 # else
1839 XTextProperty text_prop;
1840 char *c_title = (char *)title;
1842 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
1843 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
1844 XSetWMProperties(x11_display, x11_window, &text_prop,
1845 NULL, NULL, 0, NULL, NULL, NULL);
1846 # endif
1847 #else
1848 XStoreName(x11_display, x11_window, (char *)title);
1849 #endif
1851 XFlush(x11_display);
1855 * Set x11 Window icon
1857 * get_x11_windis() must be called before this and have returned OK
1859 static void
1860 set_x11_icon(icon)
1861 char_u *icon;
1863 /* See above for comments about using X*SetWMProperties(). */
1864 #ifdef USE_UTF8_STRING
1865 if (enc_utf8)
1866 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1867 NULL, 0, NULL, NULL, NULL);
1868 else
1869 #endif
1871 #if XtSpecificationRelease >= 4
1872 # ifdef FEAT_XFONTSET
1873 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1874 NULL, 0, NULL, NULL, NULL);
1875 # else
1876 XTextProperty text_prop;
1877 char *c_icon = (char *)icon;
1879 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
1880 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1881 NULL, 0, NULL, NULL, NULL);
1882 # endif
1883 #else
1884 XSetIconName(x11_display, x11_window, (char *)icon);
1885 #endif
1887 XFlush(x11_display);
1890 #else /* FEAT_X11 */
1892 /*ARGSUSED*/
1893 static int
1894 get_x11_title(test_only)
1895 int test_only;
1897 return FALSE;
1900 static int
1901 get_x11_icon(test_only)
1902 int test_only;
1904 if (!test_only)
1906 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1907 oldicon = T_NAME + 8;
1908 else
1909 oldicon = T_NAME;
1911 return FALSE;
1914 #endif /* FEAT_X11 */
1917 mch_can_restore_title()
1919 return get_x11_title(TRUE);
1923 mch_can_restore_icon()
1925 return get_x11_icon(TRUE);
1929 * Set the window title and icon.
1931 void
1932 mch_settitle(title, icon)
1933 char_u *title;
1934 char_u *icon;
1936 int type = 0;
1937 static int recursive = 0;
1939 if (T_NAME == NULL) /* no terminal name (yet) */
1940 return;
1941 if (title == NULL && icon == NULL) /* nothing to do */
1942 return;
1944 /* When one of the X11 functions causes a deadly signal, we get here again
1945 * recursively. Avoid hanging then (something is probably locked). */
1946 if (recursive)
1947 return;
1948 ++recursive;
1951 * if the window ID and the display is known, we may use X11 calls
1953 #ifdef FEAT_X11
1954 if (get_x11_windis() == OK)
1955 type = 1;
1956 #else
1957 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
1958 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
1959 if (gui.in_use)
1960 type = 1;
1961 # endif
1962 #endif
1965 * Note: if "t_TS" is set, title is set with escape sequence rather
1966 * than x11 calls, because the x11 calls don't always work
1968 if ((type || *T_TS != NUL) && title != NULL)
1970 if (oldtitle == NULL
1971 #ifdef FEAT_GUI
1972 && !gui.in_use
1973 #endif
1974 ) /* first call but not in GUI, save title */
1975 (void)get_x11_title(FALSE);
1977 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1978 term_settitle(title);
1979 #ifdef FEAT_X11
1980 else
1981 # ifdef FEAT_GUI_GTK
1982 if (!gui.in_use) /* don't do this if GTK+ is running */
1983 # endif
1984 set_x11_title(title); /* x11 */
1985 #endif
1986 #if defined(FEAT_GUI_GTK) \
1987 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
1988 || defined(FEAT_GUI_MACVIM)
1989 else
1990 gui_mch_settitle(title, icon);
1991 #endif
1992 did_set_title = TRUE;
1995 if ((type || *T_CIS != NUL) && icon != NULL)
1997 if (oldicon == NULL
1998 #ifdef FEAT_GUI
1999 && !gui.in_use
2000 #endif
2001 ) /* first call, save icon */
2002 get_x11_icon(FALSE);
2004 if (*T_CIS != NUL)
2006 out_str(T_CIS); /* set icon start */
2007 out_str_nf(icon);
2008 out_str(T_CIE); /* set icon end */
2009 out_flush();
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_icon(icon); /* x11 */
2017 #endif
2018 did_set_icon = TRUE;
2020 --recursive;
2024 * Restore the window/icon title.
2025 * "which" is one of:
2026 * 1 only restore title
2027 * 2 only restore icon
2028 * 3 restore title and icon
2030 void
2031 mch_restore_title(which)
2032 int which;
2034 /* only restore the title or icon when it has been set */
2035 mch_settitle(((which & 1) && did_set_title) ?
2036 (oldtitle ? oldtitle : p_titleold) : NULL,
2037 ((which & 2) && did_set_icon) ? oldicon : NULL);
2040 #endif /* FEAT_TITLE */
2043 * Return TRUE if "name" looks like some xterm name.
2044 * Seiichi Sato mentioned that "mlterm" works like xterm.
2047 vim_is_xterm(name)
2048 char_u *name;
2050 if (name == NULL)
2051 return FALSE;
2052 return (STRNICMP(name, "xterm", 5) == 0
2053 || STRNICMP(name, "nxterm", 6) == 0
2054 || STRNICMP(name, "kterm", 5) == 0
2055 || STRNICMP(name, "mlterm", 6) == 0
2056 || STRNICMP(name, "rxvt", 4) == 0
2057 || STRCMP(name, "builtin_xterm") == 0);
2060 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2062 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2063 * Return 1 for "xterm".
2064 * Return 2 for "xterm2".
2067 use_xterm_mouse()
2069 if (ttym_flags == TTYM_XTERM2)
2070 return 2;
2071 if (ttym_flags == TTYM_XTERM)
2072 return 1;
2073 return 0;
2075 #endif
2078 vim_is_iris(name)
2079 char_u *name;
2081 if (name == NULL)
2082 return FALSE;
2083 return (STRNICMP(name, "iris-ansi", 9) == 0
2084 || STRCMP(name, "builtin_iris-ansi") == 0);
2088 vim_is_vt300(name)
2089 char_u *name;
2091 if (name == NULL)
2092 return FALSE; /* actually all ANSI comp. terminals should be here */
2093 /* catch VT100 - VT5xx */
2094 return ((STRNICMP(name, "vt", 2) == 0
2095 && vim_strchr((char_u *)"12345", name[2]) != NULL)
2096 || STRCMP(name, "builtin_vt320") == 0);
2100 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2101 * This should include all windowed terminal emulators.
2104 vim_is_fastterm(name)
2105 char_u *name;
2107 if (name == NULL)
2108 return FALSE;
2109 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2110 return TRUE;
2111 return ( STRNICMP(name, "hpterm", 6) == 0
2112 || STRNICMP(name, "sun-cmd", 7) == 0
2113 || STRNICMP(name, "screen", 6) == 0
2114 || STRNICMP(name, "dtterm", 6) == 0);
2118 * Insert user name in s[len].
2119 * Return OK if a name found.
2122 mch_get_user_name(s, len)
2123 char_u *s;
2124 int len;
2126 #ifdef VMS
2127 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
2128 return OK;
2129 #else
2130 return mch_get_uname(getuid(), s, len);
2131 #endif
2135 * Insert user name for "uid" in s[len].
2136 * Return OK if a name found.
2139 mch_get_uname(uid, s, len)
2140 uid_t uid;
2141 char_u *s;
2142 int len;
2144 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2145 struct passwd *pw;
2147 if ((pw = getpwuid(uid)) != NULL
2148 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2150 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
2151 return OK;
2153 #endif
2154 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2155 return FAIL; /* a number is not a name */
2159 * Insert host name is s[len].
2162 #ifdef HAVE_SYS_UTSNAME_H
2163 void
2164 mch_get_host_name(s, len)
2165 char_u *s;
2166 int len;
2168 struct utsname vutsname;
2170 if (uname(&vutsname) < 0)
2171 *s = NUL;
2172 else
2173 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
2175 #else /* HAVE_SYS_UTSNAME_H */
2177 # ifdef HAVE_SYS_SYSTEMINFO_H
2178 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2179 # endif
2181 void
2182 mch_get_host_name(s, len)
2183 char_u *s;
2184 int len;
2186 # ifdef VAXC
2187 vaxc$gethostname((char *)s, len);
2188 # else
2189 gethostname((char *)s, len);
2190 # endif
2191 s[len - 1] = NUL; /* make sure it's terminated */
2193 #endif /* HAVE_SYS_UTSNAME_H */
2196 * return process ID
2198 long
2199 mch_get_pid()
2201 return (long)getpid();
2204 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2205 static char *strerror __ARGS((int));
2207 static char *
2208 strerror(err)
2209 int err;
2211 extern int sys_nerr;
2212 extern char *sys_errlist[];
2213 static char er[20];
2215 if (err > 0 && err < sys_nerr)
2216 return (sys_errlist[err]);
2217 sprintf(er, "Error %d", err);
2218 return er;
2220 #endif
2223 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2224 * Return OK for success, FAIL for failure.
2227 mch_dirname(buf, len)
2228 char_u *buf;
2229 int len;
2231 #if defined(USE_GETCWD)
2232 if (getcwd((char *)buf, len) == NULL)
2234 STRCPY(buf, strerror(errno));
2235 return FAIL;
2237 return OK;
2238 #else
2239 return (getwd((char *)buf) != NULL ? OK : FAIL);
2240 #endif
2243 #if defined(OS2) || defined(PROTO)
2245 * Replace all slashes by backslashes.
2246 * When 'shellslash' set do it the other way around.
2248 void
2249 slash_adjust(p)
2250 char_u *p;
2252 while (*p)
2254 if (*p == psepcN)
2255 *p = psepc;
2256 mb_ptr_adv(p);
2259 #endif
2262 * Get absolute file name into "buf[len]".
2264 * return FAIL for failure, OK for success
2267 mch_FullName(fname, buf, len, force)
2268 char_u *fname, *buf;
2269 int len;
2270 int force; /* also expand when already absolute path */
2272 int l;
2273 #ifdef OS2
2274 int only_drive; /* file name is only a drive letter */
2275 #endif
2276 #ifdef HAVE_FCHDIR
2277 int fd = -1;
2278 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
2279 #endif
2280 char_u olddir[MAXPATHL];
2281 char_u *p;
2282 int retval = OK;
2283 #ifdef __CYGWIN__
2284 char_u posix_fname[MAX_PATH];
2285 #endif
2288 #ifdef VMS
2289 fname = vms_fixfilename(fname);
2290 #endif
2292 #ifdef __CYGWIN__
2294 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2296 cygwin_conv_to_posix_path(fname, posix_fname);
2297 fname = posix_fname;
2298 #endif
2300 /* expand it if forced or not an absolute path */
2301 if (force || !mch_isFullName(fname))
2304 * If the file name has a path, change to that directory for a moment,
2305 * and then do the getwd() (and get back to where we were).
2306 * This will get the correct path name with "../" things.
2308 #ifdef OS2
2309 only_drive = 0;
2310 if (((p = vim_strrchr(fname, '/')) != NULL)
2311 || ((p = vim_strrchr(fname, '\\')) != NULL)
2312 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
2313 #else
2314 if ((p = vim_strrchr(fname, '/')) != NULL)
2315 #endif
2317 #ifdef HAVE_FCHDIR
2319 * Use fchdir() if possible, it's said to be faster and more
2320 * reliable. But on SunOS 4 it might not work. Check this by
2321 * doing a fchdir() right now.
2323 if (!dont_fchdir)
2325 fd = open(".", O_RDONLY | O_EXTRA, 0);
2326 if (fd >= 0 && fchdir(fd) < 0)
2328 close(fd);
2329 fd = -1;
2330 dont_fchdir = TRUE; /* don't try again */
2333 #endif
2335 /* Only change directory when we are sure we can return to where
2336 * we are now. After doing "su" chdir(".") might not work. */
2337 if (
2338 #ifdef HAVE_FCHDIR
2339 fd < 0 &&
2340 #endif
2341 (mch_dirname(olddir, MAXPATHL) == FAIL
2342 || mch_chdir((char *)olddir) != 0))
2344 p = NULL; /* can't get current dir: don't chdir */
2345 retval = FAIL;
2347 else
2349 #ifdef OS2
2351 * compensate for case where ':' from "D:" was the only
2352 * path separator detected in the file name; the _next_
2353 * character has to be removed, and then restored later.
2355 if (only_drive)
2356 p++;
2357 #endif
2358 /* The directory is copied into buf[], to be able to remove
2359 * the file name without changing it (could be a string in
2360 * read-only memory) */
2361 if (p - fname >= len)
2362 retval = FAIL;
2363 else
2365 vim_strncpy(buf, fname, p - fname);
2366 if (mch_chdir((char *)buf))
2367 retval = FAIL;
2368 else
2369 fname = p + 1;
2370 *buf = NUL;
2372 #ifdef OS2
2373 if (only_drive)
2375 p--;
2376 if (retval != FAIL)
2377 fname--;
2379 #endif
2382 if (mch_dirname(buf, len) == FAIL)
2384 retval = FAIL;
2385 *buf = NUL;
2387 if (p != NULL)
2389 #ifdef HAVE_FCHDIR
2390 if (fd >= 0)
2392 l = fchdir(fd);
2393 close(fd);
2395 else
2396 #endif
2397 l = mch_chdir((char *)olddir);
2398 if (l != 0)
2399 EMSG(_(e_prev_dir));
2402 l = STRLEN(buf);
2403 if (l >= len)
2404 retval = FAIL;
2405 #ifndef VMS
2406 else
2408 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2409 && STRCMP(fname, ".") != 0)
2410 STRCAT(buf, "/");
2412 #endif
2415 /* Catch file names which are too long. */
2416 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2417 return FAIL;
2419 /* Do not append ".", "/dir/." is equal to "/dir". */
2420 if (STRCMP(fname, ".") != 0)
2421 STRCAT(buf, fname);
2423 return OK;
2427 * Return TRUE if "fname" does not depend on the current directory.
2430 mch_isFullName(fname)
2431 char_u *fname;
2433 #ifdef __EMX__
2434 return _fnisabs(fname);
2435 #else
2436 # ifdef VMS
2437 return ( fname[0] == '/' || fname[0] == '.' ||
2438 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2439 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2440 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2441 # else
2442 return (*fname == '/' || *fname == '~');
2443 # endif
2444 #endif
2447 #if defined(USE_FNAME_CASE) || defined(PROTO)
2449 * Set the case of the file name, if it already exists. This will cause the
2450 * file name to remain exactly the same.
2451 * Only required for file systems where case is ignored and preserved.
2453 /*ARGSUSED*/
2454 void
2455 fname_case(name, len)
2456 char_u *name;
2457 int len; /* buffer size, only used when name gets longer */
2459 struct stat st;
2460 char_u *slash, *tail;
2461 DIR *dirp;
2462 struct dirent *dp;
2464 if (lstat((char *)name, &st) >= 0)
2466 /* Open the directory where the file is located. */
2467 slash = vim_strrchr(name, '/');
2468 if (slash == NULL)
2470 dirp = opendir(".");
2471 tail = name;
2473 else
2475 *slash = NUL;
2476 dirp = opendir((char *)name);
2477 *slash = '/';
2478 tail = slash + 1;
2481 if (dirp != NULL)
2483 while ((dp = readdir(dirp)) != NULL)
2485 /* Only accept names that differ in case and are the same byte
2486 * length. TODO: accept different length name. */
2487 if (STRICMP(tail, dp->d_name) == 0
2488 && STRLEN(tail) == STRLEN(dp->d_name))
2490 char_u newname[MAXPATHL + 1];
2491 struct stat st2;
2493 /* Verify the inode is equal. */
2494 vim_strncpy(newname, name, MAXPATHL);
2495 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2496 MAXPATHL - (tail - name));
2497 if (lstat((char *)newname, &st2) >= 0
2498 && st.st_ino == st2.st_ino
2499 && st.st_dev == st2.st_dev)
2501 STRCPY(tail, dp->d_name);
2502 break;
2507 closedir(dirp);
2511 #endif
2514 * Get file permissions for 'name'.
2515 * Returns -1 when it doesn't exist.
2517 long
2518 mch_getperm(name)
2519 char_u *name;
2521 struct stat statb;
2523 /* Keep the #ifdef outside of stat(), it may be a macro. */
2524 #ifdef VMS
2525 if (stat((char *)vms_fixfilename(name), &statb))
2526 #else
2527 if (stat((char *)name, &statb))
2528 #endif
2529 return -1;
2530 #ifdef __INTERIX
2531 /* The top bit makes the value negative, which means the file doesn't
2532 * exist. Remove the bit, we don't use it. */
2533 return statb.st_mode & ~S_ADDACE;
2534 #else
2535 return statb.st_mode;
2536 #endif
2540 * set file permission for 'name' to 'perm'
2542 * return FAIL for failure, OK otherwise
2545 mch_setperm(name, perm)
2546 char_u *name;
2547 long perm;
2549 return (chmod((char *)
2550 #ifdef VMS
2551 vms_fixfilename(name),
2552 #else
2553 name,
2554 #endif
2555 (mode_t)perm) == 0 ? OK : FAIL);
2558 #if defined(HAVE_ACL) || defined(PROTO)
2559 # ifdef HAVE_SYS_ACL_H
2560 # include <sys/acl.h>
2561 # endif
2562 # ifdef HAVE_SYS_ACCESS_H
2563 # include <sys/access.h>
2564 # endif
2566 # ifdef HAVE_SOLARIS_ACL
2567 typedef struct vim_acl_solaris_T {
2568 int acl_cnt;
2569 aclent_t *acl_entry;
2570 } vim_acl_solaris_T;
2571 # endif
2573 #if defined(HAVE_SELINUX) || defined(PROTO)
2575 * Copy security info from "from_file" to "to_file".
2577 void
2578 mch_copy_sec(from_file, to_file)
2579 char_u *from_file;
2580 char_u *to_file;
2582 if (from_file == NULL)
2583 return;
2585 if (selinux_enabled == -1)
2586 selinux_enabled = is_selinux_enabled();
2588 if (selinux_enabled > 0)
2590 security_context_t from_context = NULL;
2591 security_context_t to_context = NULL;
2593 if (getfilecon((char *)from_file, &from_context) < 0)
2595 /* If the filesystem doesn't support extended attributes,
2596 the original had no special security context and the
2597 target cannot have one either. */
2598 if (errno == EOPNOTSUPP)
2599 return;
2601 MSG_PUTS(_("\nCould not get security context for "));
2602 msg_outtrans(from_file);
2603 msg_putchar('\n');
2604 return;
2606 if (getfilecon((char *)to_file, &to_context) < 0)
2608 MSG_PUTS(_("\nCould not get security context for "));
2609 msg_outtrans(to_file);
2610 msg_putchar('\n');
2611 freecon (from_context);
2612 return ;
2614 if (strcmp(from_context, to_context) != 0)
2616 if (setfilecon((char *)to_file, from_context) < 0)
2618 MSG_PUTS(_("\nCould not set security context for "));
2619 msg_outtrans(to_file);
2620 msg_putchar('\n');
2623 freecon(to_context);
2624 freecon(from_context);
2627 #endif /* HAVE_SELINUX */
2630 * Return a pointer to the ACL of file "fname" in allocated memory.
2631 * Return NULL if the ACL is not available for whatever reason.
2633 vim_acl_T
2634 mch_get_acl(fname)
2635 char_u *fname;
2637 vim_acl_T ret = NULL;
2638 #ifdef HAVE_POSIX_ACL
2639 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2640 #else
2641 #ifdef HAVE_SOLARIS_ACL
2642 vim_acl_solaris_T *aclent;
2644 aclent = malloc(sizeof(vim_acl_solaris_T));
2645 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2647 free(aclent);
2648 return NULL;
2650 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2651 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2653 free(aclent->acl_entry);
2654 free(aclent);
2655 return NULL;
2657 ret = (vim_acl_T)aclent;
2658 #else
2659 #if defined(HAVE_AIX_ACL)
2660 int aclsize;
2661 struct acl *aclent;
2663 aclsize = sizeof(struct acl);
2664 aclent = malloc(aclsize);
2665 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2667 if (errno == ENOSPC)
2669 aclsize = aclent->acl_len;
2670 aclent = realloc(aclent, aclsize);
2671 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2673 free(aclent);
2674 return NULL;
2677 else
2679 free(aclent);
2680 return NULL;
2683 ret = (vim_acl_T)aclent;
2684 #endif /* HAVE_AIX_ACL */
2685 #endif /* HAVE_SOLARIS_ACL */
2686 #endif /* HAVE_POSIX_ACL */
2687 return ret;
2691 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2693 void
2694 mch_set_acl(fname, aclent)
2695 char_u *fname;
2696 vim_acl_T aclent;
2698 if (aclent == NULL)
2699 return;
2700 #ifdef HAVE_POSIX_ACL
2701 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2702 #else
2703 #ifdef HAVE_SOLARIS_ACL
2704 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2705 ((vim_acl_solaris_T *)aclent)->acl_entry);
2706 #else
2707 #ifdef HAVE_AIX_ACL
2708 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2709 #endif /* HAVE_AIX_ACL */
2710 #endif /* HAVE_SOLARIS_ACL */
2711 #endif /* HAVE_POSIX_ACL */
2714 void
2715 mch_free_acl(aclent)
2716 vim_acl_T aclent;
2718 if (aclent == NULL)
2719 return;
2720 #ifdef HAVE_POSIX_ACL
2721 acl_free((acl_t)aclent);
2722 #else
2723 #ifdef HAVE_SOLARIS_ACL
2724 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2725 free(aclent);
2726 #else
2727 #ifdef HAVE_AIX_ACL
2728 free(aclent);
2729 #endif /* HAVE_AIX_ACL */
2730 #endif /* HAVE_SOLARIS_ACL */
2731 #endif /* HAVE_POSIX_ACL */
2733 #endif
2736 * Set hidden flag for "name".
2738 /* ARGSUSED */
2739 void
2740 mch_hide(name)
2741 char_u *name;
2743 /* can't hide a file */
2747 * return TRUE if "name" is a directory
2748 * return FALSE if "name" is not a directory
2749 * return FALSE for error
2752 mch_isdir(name)
2753 char_u *name;
2755 struct stat statb;
2757 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2758 return FALSE;
2759 if (stat((char *)name, &statb))
2760 return FALSE;
2761 #ifdef _POSIX_SOURCE
2762 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2763 #else
2764 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2765 #endif
2768 static int executable_file __ARGS((char_u *name));
2771 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2773 static int
2774 executable_file(name)
2775 char_u *name;
2777 struct stat st;
2779 if (stat((char *)name, &st))
2780 return 0;
2781 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2785 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2786 * Return -1 if unknown.
2789 mch_can_exe(name)
2790 char_u *name;
2792 char_u *buf;
2793 char_u *p, *e;
2794 int retval;
2796 /* If it's an absolute or relative path don't need to use $PATH. */
2797 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2798 || (name[1] == '.' && name[2] == '/'))))
2799 return executable_file(name);
2801 p = (char_u *)getenv("PATH");
2802 if (p == NULL || *p == NUL)
2803 return -1;
2804 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2805 if (buf == NULL)
2806 return -1;
2809 * Walk through all entries in $PATH to check if "name" exists there and
2810 * is an executable file.
2812 for (;;)
2814 e = (char_u *)strchr((char *)p, ':');
2815 if (e == NULL)
2816 e = p + STRLEN(p);
2817 if (e - p <= 1) /* empty entry means current dir */
2818 STRCPY(buf, "./");
2819 else
2821 vim_strncpy(buf, p, e - p);
2822 add_pathsep(buf);
2824 STRCAT(buf, name);
2825 retval = executable_file(buf);
2826 if (retval == 1)
2827 break;
2829 if (*e != ':')
2830 break;
2831 p = e + 1;
2834 vim_free(buf);
2835 return retval;
2839 * Check what "name" is:
2840 * NODE_NORMAL: file or directory (or doesn't exist)
2841 * NODE_WRITABLE: writable device, socket, fifo, etc.
2842 * NODE_OTHER: non-writable things
2845 mch_nodetype(name)
2846 char_u *name;
2848 struct stat st;
2850 if (stat((char *)name, &st))
2851 return NODE_NORMAL;
2852 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2853 return NODE_NORMAL;
2854 #ifndef OS2
2855 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2856 return NODE_OTHER;
2857 #endif
2858 /* Everything else is writable? */
2859 return NODE_WRITABLE;
2862 void
2863 mch_early_init()
2865 #ifdef HAVE_CHECK_STACK_GROWTH
2866 int i;
2868 check_stack_growth((char *)&i);
2870 # ifdef HAVE_STACK_LIMIT
2871 get_stack_limit();
2872 # endif
2874 #endif
2877 * Setup an alternative stack for signals. Helps to catch signals when
2878 * running out of stack space.
2879 * Use of sigaltstack() is preferred, it's more portable.
2880 * Ignore any errors.
2882 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2883 signal_stack = malloc(SIGSTKSZ);
2884 init_signal_stack();
2885 #endif
2888 #if defined(EXITFREE) || defined(PROTO)
2889 void
2890 mch_free_mem()
2892 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2893 if (clip_star.owned)
2894 clip_lose_selection(&clip_star);
2895 if (clip_plus.owned)
2896 clip_lose_selection(&clip_plus);
2897 # endif
2898 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2899 if (xterm_Shell != (Widget)0)
2900 XtDestroyWidget(xterm_Shell);
2901 # ifndef LESSTIF_VERSION
2902 /* Lesstif crashes here, lose some memory */
2903 if (xterm_dpy != NULL)
2904 XtCloseDisplay(xterm_dpy);
2905 if (app_context != (XtAppContext)NULL)
2907 XtDestroyApplicationContext(app_context);
2908 # ifdef FEAT_X11
2909 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2910 # endif
2912 # endif
2913 # endif
2914 # ifdef FEAT_X11
2915 if (x11_display != NULL
2916 # ifdef FEAT_XCLIPBOARD
2917 && x11_display != xterm_dpy
2918 # endif
2920 XCloseDisplay(x11_display);
2921 # endif
2922 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2923 vim_free(signal_stack);
2924 signal_stack = NULL;
2925 # endif
2926 # ifdef FEAT_TITLE
2927 vim_free(oldtitle);
2928 vim_free(oldicon);
2929 # endif
2931 #endif
2933 static void exit_scroll __ARGS((void));
2936 * Output a newline when exiting.
2937 * Make sure the newline goes to the same stream as the text.
2939 static void
2940 exit_scroll()
2942 if (silent_mode)
2943 return;
2944 if (newline_on_exit || msg_didout)
2946 if (msg_use_printf())
2948 if (info_message)
2949 mch_msg("\n");
2950 else
2951 mch_errmsg("\r\n");
2953 else
2954 out_char('\n');
2956 else
2958 restore_cterm_colors(); /* get original colors back */
2959 msg_clr_eos_force(); /* clear the rest of the display */
2960 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2964 void
2965 mch_exit(r)
2966 int r;
2968 exiting = TRUE;
2970 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
2971 x11_export_final_selection();
2972 #endif
2974 #ifdef FEAT_GUI
2975 if (!gui.in_use)
2976 #endif
2978 settmode(TMODE_COOK);
2979 #ifdef FEAT_TITLE
2980 mch_restore_title(3); /* restore xterm title and icon name */
2981 #endif
2983 * When t_ti is not empty but it doesn't cause swapping terminal
2984 * pages, need to output a newline when msg_didout is set. But when
2985 * t_ti does swap pages it should not go to the shell page. Do this
2986 * before stoptermcap().
2988 if (swapping_screen() && !newline_on_exit)
2989 exit_scroll();
2991 /* Stop termcap: May need to check for T_CRV response, which
2992 * requires RAW mode. */
2993 stoptermcap();
2996 * A newline is only required after a message in the alternate screen.
2997 * This is set to TRUE by wait_return().
2999 if (!swapping_screen() || newline_on_exit)
3000 exit_scroll();
3002 /* Cursor may have been switched off without calling starttermcap()
3003 * when doing "vim -u vimrc" and vimrc contains ":q". */
3004 if (full_screen)
3005 cursor_on();
3007 out_flush();
3008 ml_close_all(TRUE); /* remove all memfiles */
3009 may_core_dump();
3010 #ifdef FEAT_GUI
3011 if (gui.in_use)
3012 gui_exit(r);
3013 #endif
3015 #ifdef MACOS_CONVERT
3016 mac_conv_cleanup();
3017 #endif
3019 #ifdef __QNX__
3020 /* A core dump won't be created if the signal handler
3021 * doesn't return, so we can't call exit() */
3022 if (deadly_signal != 0)
3023 return;
3024 #endif
3026 #ifdef FEAT_NETBEANS_INTG
3027 if (usingNetbeans)
3028 netbeans_send_disconnect();
3029 #endif
3031 #ifdef EXITFREE
3032 free_all_mem();
3033 #endif
3035 exit(r);
3038 static void
3039 may_core_dump()
3041 if (deadly_signal != 0)
3043 signal(deadly_signal, SIG_DFL);
3044 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3048 #ifndef VMS
3050 void
3051 mch_settmode(tmode)
3052 int tmode;
3054 static int first = TRUE;
3056 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3057 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3059 * for "new" tty systems
3061 # ifdef HAVE_TERMIOS_H
3062 static struct termios told;
3063 struct termios tnew;
3064 # else
3065 static struct termio told;
3066 struct termio tnew;
3067 # endif
3069 if (first)
3071 first = FALSE;
3072 # if defined(HAVE_TERMIOS_H)
3073 tcgetattr(read_cmd_fd, &told);
3074 # else
3075 ioctl(read_cmd_fd, TCGETA, &told);
3076 # endif
3079 tnew = told;
3080 if (tmode == TMODE_RAW)
3083 * ~ICRNL enables typing ^V^M
3085 tnew.c_iflag &= ~ICRNL;
3086 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3087 # if defined(IEXTEN) && !defined(__MINT__)
3088 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3089 /* but it breaks function keys on MINT */
3090 # endif
3092 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3093 tnew.c_oflag &= ~ONLCR;
3094 # endif
3095 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3096 tnew.c_cc[VTIME] = 0; /* don't wait */
3098 else if (tmode == TMODE_SLEEP)
3099 tnew.c_lflag &= ~(ECHO);
3101 # if defined(HAVE_TERMIOS_H)
3103 int n = 10;
3105 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3106 * few times. */
3107 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3108 && errno == EINTR && n > 0)
3109 --n;
3111 # else
3112 ioctl(read_cmd_fd, TCSETA, &tnew);
3113 # endif
3115 #else
3118 * for "old" tty systems
3120 # ifndef TIOCSETN
3121 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3122 # endif
3123 static struct sgttyb ttybold;
3124 struct sgttyb ttybnew;
3126 if (first)
3128 first = FALSE;
3129 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3132 ttybnew = ttybold;
3133 if (tmode == TMODE_RAW)
3135 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3136 ttybnew.sg_flags |= RAW;
3138 else if (tmode == TMODE_SLEEP)
3139 ttybnew.sg_flags &= ~(ECHO);
3140 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3141 #endif
3142 curr_tmode = tmode;
3146 * Try to get the code for "t_kb" from the stty setting
3148 * Even if termcap claims a backspace key, the user's setting *should*
3149 * prevail. stty knows more about reality than termcap does, and if
3150 * somebody's usual erase key is DEL (which, for most BSD users, it will
3151 * be), they're going to get really annoyed if their erase key starts
3152 * doing forward deletes for no reason. (Eric Fischer)
3154 void
3155 get_stty()
3157 char_u buf[2];
3158 char_u *p;
3160 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3161 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3162 /* for "new" tty systems */
3163 # ifdef HAVE_TERMIOS_H
3164 struct termios keys;
3165 # else
3166 struct termio keys;
3167 # endif
3169 # if defined(HAVE_TERMIOS_H)
3170 if (tcgetattr(read_cmd_fd, &keys) != -1)
3171 # else
3172 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3173 # endif
3175 buf[0] = keys.c_cc[VERASE];
3176 intr_char = keys.c_cc[VINTR];
3177 #else
3178 /* for "old" tty systems */
3179 struct sgttyb keys;
3181 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3183 buf[0] = keys.sg_erase;
3184 intr_char = keys.sg_kill;
3185 #endif
3186 buf[1] = NUL;
3187 add_termcode((char_u *)"kb", buf, FALSE);
3190 * If <BS> and <DEL> are now the same, redefine <DEL>.
3192 p = find_termcode((char_u *)"kD");
3193 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3194 do_fixdel(NULL);
3196 #if 0
3197 } /* to keep cindent happy */
3198 #endif
3201 #endif /* VMS */
3203 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3205 * Set mouse clicks on or off.
3207 void
3208 mch_setmouse(on)
3209 int on;
3211 static int ison = FALSE;
3212 int xterm_mouse_vers;
3214 if (on == ison) /* return quickly if nothing to do */
3215 return;
3217 xterm_mouse_vers = use_xterm_mouse();
3218 if (xterm_mouse_vers > 0)
3220 if (on) /* enable mouse events, use mouse tracking if available */
3221 out_str_nf((char_u *)
3222 (xterm_mouse_vers > 1
3223 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3224 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3225 else /* disable mouse events, could probably always send the same */
3226 out_str_nf((char_u *)
3227 (xterm_mouse_vers > 1
3228 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3229 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3230 ison = on;
3233 # ifdef FEAT_MOUSE_DEC
3234 else if (ttym_flags == TTYM_DEC)
3236 if (on) /* enable mouse events */
3237 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3238 else /* disable mouse events */
3239 out_str_nf((char_u *)"\033['z");
3240 ison = on;
3242 # endif
3244 # ifdef FEAT_MOUSE_GPM
3245 else
3247 if (on)
3249 if (gpm_open())
3250 ison = TRUE;
3252 else
3254 gpm_close();
3255 ison = FALSE;
3258 # endif
3260 # ifdef FEAT_MOUSE_JSB
3261 else
3263 if (on)
3265 /* D - Enable Mouse up/down messages
3266 * L - Enable Left Button Reporting
3267 * M - Enable Middle Button Reporting
3268 * R - Enable Right Button Reporting
3269 * K - Enable SHIFT and CTRL key Reporting
3270 * + - Enable Advanced messaging of mouse moves and up/down messages
3271 * Q - Quiet No Ack
3272 * # - Numeric value of mouse pointer required
3273 * 0 = Multiview 2000 cursor, used as standard
3274 * 1 = Windows Arrow
3275 * 2 = Windows I Beam
3276 * 3 = Windows Hour Glass
3277 * 4 = Windows Cross Hair
3278 * 5 = Windows UP Arrow
3280 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3281 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3282 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3283 #else
3284 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3285 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3286 #endif
3287 ison = TRUE;
3289 else
3291 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3292 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3293 ison = FALSE;
3296 # endif
3297 # ifdef FEAT_MOUSE_PTERM
3298 else
3300 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3301 if (on)
3302 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3303 else
3304 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3305 ison = on;
3307 # endif
3311 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3313 void
3314 check_mouse_termcode()
3316 # ifdef FEAT_MOUSE_XTERM
3317 if (use_xterm_mouse()
3318 # ifdef FEAT_GUI
3319 && !gui.in_use
3320 # endif
3323 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3324 ? IF_EB("\233M", CSI_STR "M")
3325 : IF_EB("\033[M", ESC_STR "[M")));
3326 if (*p_mouse != NUL)
3328 /* force mouse off and maybe on to send possibly new mouse
3329 * activation sequence to the xterm, with(out) drag tracing. */
3330 mch_setmouse(FALSE);
3331 setmouse();
3334 else
3335 del_mouse_termcode(KS_MOUSE);
3336 # endif
3338 # ifdef FEAT_MOUSE_GPM
3339 if (!use_xterm_mouse()
3340 # ifdef FEAT_GUI
3341 && !gui.in_use
3342 # endif
3344 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3345 # endif
3347 # ifdef FEAT_MOUSE_JSB
3348 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3349 if (!use_xterm_mouse()
3350 # ifdef FEAT_GUI
3351 && !gui.in_use
3352 # endif
3354 set_mouse_termcode(KS_JSBTERM_MOUSE,
3355 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3356 else
3357 del_mouse_termcode(KS_JSBTERM_MOUSE);
3358 # endif
3360 # ifdef FEAT_MOUSE_NET
3361 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3362 * define it in the GUI or when using an xterm. */
3363 if (!use_xterm_mouse()
3364 # ifdef FEAT_GUI
3365 && !gui.in_use
3366 # endif
3368 set_mouse_termcode(KS_NETTERM_MOUSE,
3369 (char_u *)IF_EB("\033}", ESC_STR "}"));
3370 else
3371 del_mouse_termcode(KS_NETTERM_MOUSE);
3372 # endif
3374 # ifdef FEAT_MOUSE_DEC
3375 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3376 if (!use_xterm_mouse()
3377 # ifdef FEAT_GUI
3378 && !gui.in_use
3379 # endif
3381 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3382 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
3383 else
3384 del_mouse_termcode(KS_DEC_MOUSE);
3385 # endif
3386 # ifdef FEAT_MOUSE_PTERM
3387 /* same as the dec mouse */
3388 if (!use_xterm_mouse()
3389 # ifdef FEAT_GUI
3390 && !gui.in_use
3391 # endif
3393 set_mouse_termcode(KS_PTERM_MOUSE,
3394 (char_u *) IF_EB("\033[", ESC_STR "["));
3395 else
3396 del_mouse_termcode(KS_PTERM_MOUSE);
3397 # endif
3399 #endif
3402 * set screen mode, always fails.
3404 /* ARGSUSED */
3406 mch_screenmode(arg)
3407 char_u *arg;
3409 EMSG(_(e_screenmode));
3410 return FAIL;
3413 #ifndef VMS
3416 * Try to get the current window size:
3417 * 1. with an ioctl(), most accurate method
3418 * 2. from the environment variables LINES and COLUMNS
3419 * 3. from the termcap
3420 * 4. keep using the old values
3421 * Return OK when size could be determined, FAIL otherwise.
3424 mch_get_shellsize()
3426 long rows = 0;
3427 long columns = 0;
3428 char_u *p;
3431 * For OS/2 use _scrsize().
3433 # ifdef __EMX__
3435 int s[2];
3437 _scrsize(s);
3438 columns = s[0];
3439 rows = s[1];
3441 # endif
3444 * 1. try using an ioctl. It is the most accurate method.
3446 * Try using TIOCGWINSZ first, some systems that have it also define
3447 * TIOCGSIZE but don't have a struct ttysize.
3449 # ifdef TIOCGWINSZ
3451 struct winsize ws;
3452 int fd = 1;
3454 /* When stdout is not a tty, use stdin for the ioctl(). */
3455 if (!isatty(fd) && isatty(read_cmd_fd))
3456 fd = read_cmd_fd;
3457 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3459 columns = ws.ws_col;
3460 rows = ws.ws_row;
3463 # else /* TIOCGWINSZ */
3464 # ifdef TIOCGSIZE
3466 struct ttysize ts;
3467 int fd = 1;
3469 /* When stdout is not a tty, use stdin for the ioctl(). */
3470 if (!isatty(fd) && isatty(read_cmd_fd))
3471 fd = read_cmd_fd;
3472 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3474 columns = ts.ts_cols;
3475 rows = ts.ts_lines;
3478 # endif /* TIOCGSIZE */
3479 # endif /* TIOCGWINSZ */
3482 * 2. get size from environment
3483 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3484 * the ioctl() values!
3486 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
3488 if ((p = (char_u *)getenv("LINES")))
3489 rows = atoi((char *)p);
3490 if ((p = (char_u *)getenv("COLUMNS")))
3491 columns = atoi((char *)p);
3494 #ifdef HAVE_TGETENT
3496 * 3. try reading "co" and "li" entries from termcap
3498 if (columns == 0 || rows == 0)
3499 getlinecol(&columns, &rows);
3500 #endif
3503 * 4. If everything fails, use the old values
3505 if (columns <= 0 || rows <= 0)
3506 return FAIL;
3508 Rows = rows;
3509 Columns = columns;
3510 return OK;
3514 * Try to set the window size to Rows and Columns.
3516 void
3517 mch_set_shellsize()
3519 if (*T_CWS)
3522 * NOTE: if you get an error here that term_set_winsize() is
3523 * undefined, check the output of configure. It could probably not
3524 * find a ncurses, termcap or termlib library.
3526 term_set_winsize((int)Rows, (int)Columns);
3527 out_flush();
3528 screen_start(); /* don't know where cursor is now */
3532 #endif /* VMS */
3535 * Rows and/or Columns has changed.
3537 void
3538 mch_new_shellsize()
3540 /* Nothing to do. */
3543 #ifndef USE_SYSTEM
3544 static void append_ga_line __ARGS((garray_T *gap));
3547 * Append the text in "gap" below the cursor line and clear "gap".
3549 static void
3550 append_ga_line(gap)
3551 garray_T *gap;
3553 /* Remove trailing CR. */
3554 if (gap->ga_len > 0
3555 && !curbuf->b_p_bin
3556 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3557 --gap->ga_len;
3558 ga_append(gap, NUL);
3559 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3560 gap->ga_len = 0;
3562 #endif
3565 mch_call_shell(cmd, options)
3566 char_u *cmd;
3567 int options; /* SHELL_*, see vim.h */
3569 #ifdef VMS
3570 char *ifn = NULL;
3571 char *ofn = NULL;
3572 #endif
3573 int tmode = cur_tmode;
3574 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3575 int x;
3576 # ifndef __EMX__
3577 char_u *newcmd; /* only needed for unix */
3578 # else
3580 * Set the preferred shell in the EMXSHELL environment variable (but
3581 * only if it is different from what is already in the environment).
3582 * Emx then takes care of whether to use "/c" or "-c" in an
3583 * intelligent way. Simply pass the whole thing to emx's system() call.
3584 * Emx also starts an interactive shell if system() is passed an empty
3585 * string.
3587 char_u *p, *old;
3589 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3591 /* should check HAVE_SETENV, but I know we don't have it. */
3592 p = alloc(10 + strlen(p_sh));
3593 if (p)
3595 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3596 putenv((char *)p); /* don't free the pointer! */
3599 # endif
3601 out_flush();
3603 if (options & SHELL_COOKED)
3604 settmode(TMODE_COOK); /* set to normal mode */
3606 # ifdef __EMX__
3607 if (cmd == NULL)
3608 x = system(""); /* this starts an interactive shell in emx */
3609 else
3610 x = system((char *)cmd);
3611 /* system() returns -1 when error occurs in starting shell */
3612 if (x == -1 && !emsg_silent)
3614 MSG_PUTS(_("\nCannot execute shell "));
3615 msg_outtrans(p_sh);
3616 msg_putchar('\n');
3618 # else /* not __EMX__ */
3619 if (cmd == NULL)
3620 x = system((char *)p_sh);
3621 else
3623 # ifdef VMS
3624 if (ofn = strchr((char *)cmd, '>'))
3625 *ofn++ = '\0';
3626 if (ifn = strchr((char *)cmd, '<'))
3628 char *p;
3630 *ifn++ = '\0';
3631 p = strchr(ifn,' '); /* chop off any trailing spaces */
3632 if (p)
3633 *p = '\0';
3635 if (ofn)
3636 x = vms_sys((char *)cmd, ofn, ifn);
3637 else
3638 x = system((char *)cmd);
3639 # else
3640 newcmd = lalloc(STRLEN(p_sh)
3641 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3642 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3643 if (newcmd == NULL)
3644 x = 0;
3645 else
3647 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3648 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3649 (char *)p_shcf,
3650 (char *)cmd);
3651 x = system((char *)newcmd);
3652 vim_free(newcmd);
3654 # endif
3656 # ifdef VMS
3657 x = vms_sys_status(x);
3658 # endif
3659 if (emsg_silent)
3661 else if (x == 127)
3662 MSG_PUTS(_("\nCannot execute shell sh\n"));
3663 # endif /* __EMX__ */
3664 else if (x && !(options & SHELL_SILENT))
3666 MSG_PUTS(_("\nshell returned "));
3667 msg_outnum((long)x);
3668 msg_putchar('\n');
3671 if (tmode == TMODE_RAW)
3672 settmode(TMODE_RAW); /* set to raw mode */
3673 # ifdef FEAT_TITLE
3674 resettitle();
3675 # endif
3676 return x;
3678 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3680 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3681 127, some shells use that already */
3683 char_u *newcmd = NULL;
3684 pid_t pid;
3685 pid_t wpid = 0;
3686 pid_t wait_pid = 0;
3687 # ifdef HAVE_UNION_WAIT
3688 union wait status;
3689 # else
3690 int status = -1;
3691 # endif
3692 int retval = -1;
3693 char **argv = NULL;
3694 int argc;
3695 int i;
3696 char_u *p;
3697 int inquote;
3698 int pty_master_fd = -1; /* for pty's */
3699 # ifdef FEAT_GUI
3700 int pty_slave_fd = -1;
3701 char *tty_name;
3702 # endif
3703 int fd_toshell[2]; /* for pipes */
3704 int fd_fromshell[2];
3705 int pipe_error = FALSE;
3706 # ifdef HAVE_SETENV
3707 char envbuf[50];
3708 # else
3709 static char envbuf_Rows[20];
3710 static char envbuf_Columns[20];
3711 # endif
3712 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
3714 out_flush();
3715 if (options & SHELL_COOKED)
3716 settmode(TMODE_COOK); /* set to normal mode */
3718 newcmd = vim_strsave(p_sh);
3719 if (newcmd == NULL) /* out of memory */
3720 goto error;
3723 * Do this loop twice:
3724 * 1: find number of arguments
3725 * 2: separate them and build argv[]
3727 for (i = 0; i < 2; ++i)
3729 p = newcmd;
3730 inquote = FALSE;
3731 argc = 0;
3732 for (;;)
3734 if (i == 1)
3735 argv[argc] = (char *)p;
3736 ++argc;
3737 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3739 if (*p == '"')
3740 inquote = !inquote;
3741 ++p;
3743 if (*p == NUL)
3744 break;
3745 if (i == 1)
3746 *p++ = NUL;
3747 p = skipwhite(p);
3749 if (argv == NULL)
3751 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3752 if (argv == NULL) /* out of memory */
3753 goto error;
3756 if (cmd != NULL)
3758 if (extra_shell_arg != NULL)
3759 argv[argc++] = (char *)extra_shell_arg;
3760 argv[argc++] = (char *)p_shcf;
3761 argv[argc++] = (char *)cmd;
3763 argv[argc] = NULL;
3766 * For the GUI, when writing the output into the buffer and when reading
3767 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3768 * of the executed command into the Vim window. Or use a pipe.
3770 if ((options & (SHELL_READ|SHELL_WRITE))
3771 # ifdef FEAT_GUI
3772 || (gui.in_use && show_shell_mess)
3773 # endif
3776 # ifdef FEAT_GUI
3778 * Try to open a master pty.
3779 * If this works, open the slave pty.
3780 * If the slave can't be opened, close the master pty.
3782 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
3784 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3785 if (pty_master_fd >= 0 && ((pty_slave_fd =
3786 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3788 close(pty_master_fd);
3789 pty_master_fd = -1;
3793 * If not opening a pty or it didn't work, try using pipes.
3795 if (pty_master_fd < 0)
3796 # endif
3798 pipe_error = (pipe(fd_toshell) < 0);
3799 if (!pipe_error) /* pipe create OK */
3801 pipe_error = (pipe(fd_fromshell) < 0);
3802 if (pipe_error) /* pipe create failed */
3804 close(fd_toshell[0]);
3805 close(fd_toshell[1]);
3808 if (pipe_error)
3810 MSG_PUTS(_("\nCannot create pipes\n"));
3811 out_flush();
3816 if (!pipe_error) /* pty or pipe opened or not used */
3818 # ifdef __BEOS__
3819 beos_cleanup_read_thread();
3820 # endif
3822 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3824 MSG_PUTS(_("\nCannot fork\n"));
3825 if ((options & (SHELL_READ|SHELL_WRITE))
3826 # ifdef FEAT_GUI
3827 || (gui.in_use && show_shell_mess)
3828 # endif
3831 # ifdef FEAT_GUI
3832 if (pty_master_fd >= 0) /* close the pseudo tty */
3834 close(pty_master_fd);
3835 close(pty_slave_fd);
3837 else /* close the pipes */
3838 # endif
3840 close(fd_toshell[0]);
3841 close(fd_toshell[1]);
3842 close(fd_fromshell[0]);
3843 close(fd_fromshell[1]);
3847 else if (pid == 0) /* child */
3849 reset_signals(); /* handle signals normally */
3851 if (!show_shell_mess || (options & SHELL_EXPAND))
3853 int fd;
3856 * Don't want to show any message from the shell. Can't just
3857 * close stdout and stderr though, because some systems will
3858 * break if you try to write to them after that, so we must
3859 * use dup() to replace them with something else -- webb
3860 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3861 * waiting for input.
3863 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3864 fclose(stdin);
3865 fclose(stdout);
3866 fclose(stderr);
3869 * If any of these open()'s and dup()'s fail, we just continue
3870 * anyway. It's not fatal, and on most systems it will make
3871 * no difference at all. On a few it will cause the execvp()
3872 * to exit with a non-zero status even when the completion
3873 * could be done, which is nothing too serious. If the open()
3874 * or dup() failed we'd just do the same thing ourselves
3875 * anyway -- webb
3877 if (fd >= 0)
3879 dup(fd); /* To replace stdin (file descriptor 0) */
3880 dup(fd); /* To replace stdout (file descriptor 1) */
3881 dup(fd); /* To replace stderr (file descriptor 2) */
3883 /* Don't need this now that we've duplicated it */
3884 close(fd);
3887 else if ((options & (SHELL_READ|SHELL_WRITE))
3888 # ifdef FEAT_GUI
3889 || gui.in_use
3890 # endif
3894 # ifdef HAVE_SETSID
3895 /* Create our own process group, so that the child and all its
3896 * children can be kill()ed. Don't do this when using pipes,
3897 * because stdin is not a tty, we would loose /dev/tty. */
3898 if (p_stmp)
3899 (void)setsid();
3900 # endif
3901 # ifdef FEAT_GUI
3902 if (pty_slave_fd >= 0)
3904 /* push stream discipline modules */
3905 if (options & SHELL_COOKED)
3906 SetupSlavePTY(pty_slave_fd);
3907 # if defined(TIOCSCTTY) && !defined(FEAT_GUI_MACVIM)
3908 /* Try to become controlling tty (probably doesn't work,
3909 * unless run by root) */
3910 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
3911 # endif
3913 # endif
3914 /* Simulate to have a dumb terminal (for now) */
3915 # ifdef HAVE_SETENV
3916 setenv("TERM", "dumb", 1);
3917 sprintf((char *)envbuf, "%ld", Rows);
3918 setenv("ROWS", (char *)envbuf, 1);
3919 sprintf((char *)envbuf, "%ld", Rows);
3920 setenv("LINES", (char *)envbuf, 1);
3921 sprintf((char *)envbuf, "%ld", Columns);
3922 setenv("COLUMNS", (char *)envbuf, 1);
3923 # else
3925 * Putenv does not copy the string, it has to remain valid.
3926 * Use a static array to avoid loosing allocated memory.
3928 putenv("TERM=dumb");
3929 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3930 putenv(envbuf_Rows);
3931 sprintf(envbuf_Rows, "LINES=%ld", Rows);
3932 putenv(envbuf_Rows);
3933 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
3934 putenv(envbuf_Columns);
3935 # endif
3938 * stderr is only redirected when using the GUI, so that a
3939 * program like gpg can still access the terminal to get a
3940 * passphrase using stderr.
3942 # ifdef FEAT_GUI
3943 if (pty_master_fd >= 0)
3945 close(pty_master_fd); /* close master side of pty */
3947 /* set up stdin/stdout/stderr for the child */
3948 close(0);
3949 dup(pty_slave_fd);
3950 close(1);
3951 dup(pty_slave_fd);
3952 if (gui.in_use)
3954 close(2);
3955 dup(pty_slave_fd);
3958 close(pty_slave_fd); /* has been dupped, close it now */
3960 else
3961 # endif
3963 /* set up stdin for the child */
3964 close(fd_toshell[1]);
3965 close(0);
3966 dup(fd_toshell[0]);
3967 close(fd_toshell[0]);
3969 /* set up stdout for the child */
3970 close(fd_fromshell[0]);
3971 close(1);
3972 dup(fd_fromshell[1]);
3973 close(fd_fromshell[1]);
3975 # ifdef FEAT_GUI
3976 if (gui.in_use)
3978 /* set up stderr for the child */
3979 close(2);
3980 dup(1);
3982 # endif
3987 * There is no type cast for the argv, because the type may be
3988 * different on different machines. This may cause a warning
3989 * message with strict compilers, don't worry about it.
3990 * Call _exit() instead of exit() to avoid closing the connection
3991 * to the X server (esp. with GTK, which uses atexit()).
3993 execvp(argv[0], argv);
3994 _exit(EXEC_FAILED); /* exec failed, return failure code */
3996 else /* parent */
3999 * While child is running, ignore terminating signals.
4000 * Do catch CTRL-C, so that "got_int" is set.
4002 catch_signals(SIG_IGN, SIG_ERR);
4003 catch_int_signal();
4006 * For the GUI we redirect stdin, stdout and stderr to our window.
4007 * This is also used to pipe stdin/stdout to/from the external
4008 * command.
4010 if ((options & (SHELL_READ|SHELL_WRITE))
4011 # ifdef FEAT_GUI
4012 || (gui.in_use && show_shell_mess)
4013 # endif
4016 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4017 char_u buffer[BUFLEN + 1];
4018 # ifdef FEAT_MBYTE
4019 int buffer_off = 0; /* valid bytes in buffer[] */
4020 # endif
4021 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4022 int ta_len = 0; /* valid bytes in ta_buf[] */
4023 int len;
4024 int p_more_save;
4025 int old_State;
4026 int c;
4027 int toshell_fd;
4028 int fromshell_fd;
4029 garray_T ga;
4030 int noread_cnt;
4032 # ifdef FEAT_GUI
4033 if (pty_master_fd >= 0)
4035 close(pty_slave_fd); /* close slave side of pty */
4036 fromshell_fd = pty_master_fd;
4037 toshell_fd = dup(pty_master_fd);
4039 else
4040 # endif
4042 close(fd_toshell[0]);
4043 close(fd_fromshell[1]);
4044 toshell_fd = fd_toshell[1];
4045 fromshell_fd = fd_fromshell[0];
4049 * Write to the child if there are typed characters.
4050 * Read from the child if there are characters available.
4051 * Repeat the reading a few times if more characters are
4052 * available. Need to check for typed keys now and then, but
4053 * not too often (delays when no chars are available).
4054 * This loop is quit if no characters can be read from the pty
4055 * (WaitForChar detected special condition), or there are no
4056 * characters available and the child has exited.
4057 * Only check if the child has exited when there is no more
4058 * output. The child may exit before all the output has
4059 * been printed.
4061 * Currently this busy loops!
4062 * This can probably dead-lock when the write blocks!
4064 p_more_save = p_more;
4065 p_more = FALSE;
4066 old_State = State;
4067 State = EXTERNCMD; /* don't redraw at window resize */
4069 if ((options & SHELL_WRITE) && toshell_fd >= 0)
4071 /* Fork a process that will write the lines to the
4072 * external program. */
4073 if ((wpid = fork()) == -1)
4075 MSG_PUTS(_("\nCannot fork\n"));
4077 else if (wpid == 0)
4079 linenr_T lnum = curbuf->b_op_start.lnum;
4080 int written = 0;
4081 char_u *lp = ml_get(lnum);
4082 char_u *s;
4083 size_t l;
4085 /* child */
4086 close(fromshell_fd);
4087 for (;;)
4089 l = STRLEN(lp + written);
4090 if (l == 0)
4091 len = 0;
4092 else if (lp[written] == NL)
4093 /* NL -> NUL translation */
4094 len = write(toshell_fd, "", (size_t)1);
4095 else
4097 s = vim_strchr(lp + written, NL);
4098 len = write(toshell_fd, (char *)lp + written,
4099 s == NULL ? l : s - (lp + written));
4101 if (len == l)
4103 /* Finished a line, add a NL, unless this line
4104 * should not have one. */
4105 if (lnum != curbuf->b_op_end.lnum
4106 || !curbuf->b_p_bin
4107 || (lnum != write_no_eol_lnum
4108 && (lnum !=
4109 curbuf->b_ml.ml_line_count
4110 || curbuf->b_p_eol)))
4111 write(toshell_fd, "\n", (size_t)1);
4112 ++lnum;
4113 if (lnum > curbuf->b_op_end.lnum)
4115 /* finished all the lines, close pipe */
4116 close(toshell_fd);
4117 toshell_fd = -1;
4118 break;
4120 lp = ml_get(lnum);
4121 written = 0;
4123 else if (len > 0)
4124 written += len;
4126 _exit(0);
4128 else
4130 close(toshell_fd);
4131 toshell_fd = -1;
4135 if (options & SHELL_READ)
4136 ga_init2(&ga, 1, BUFLEN);
4138 noread_cnt = 0;
4140 for (;;)
4143 * Check if keys have been typed, write them to the child
4144 * if there are any.
4145 * Don't do this if we are expanding wild cards (would eat
4146 * typeahead).
4147 * Don't do this when filtering and terminal is in cooked
4148 * mode, the shell command will handle the I/O. Avoids
4149 * that a typed password is echoed for ssh or gpg command.
4150 * Don't get characters when the child has already
4151 * finished (wait_pid == 0).
4152 * Don't get extra characters when we already have one.
4153 * Don't read characters unless we didn't get output for a
4154 * while, avoids that ":r !ls" eats typeahead.
4156 len = 0;
4157 if (!(options & SHELL_EXPAND)
4158 && ((options &
4159 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4160 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4161 #ifdef FEAT_GUI
4162 || gui.in_use
4163 #endif
4165 && wait_pid == 0
4166 && (ta_len > 0
4167 || (noread_cnt > 4
4168 && (len = ui_inchar(ta_buf,
4169 BUFLEN, 10L, 0)) > 0)))
4172 * For pipes:
4173 * Check for CTRL-C: send interrupt signal to child.
4174 * Check for CTRL-D: EOF, close pipe to child.
4176 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4178 # ifdef SIGINT
4180 * Send SIGINT to the child's group or all
4181 * processes in our group.
4183 if (ta_buf[ta_len] == Ctrl_C
4184 || ta_buf[ta_len] == intr_char)
4186 # ifdef HAVE_SETSID
4187 kill(-pid, SIGINT);
4188 # else
4189 kill(0, SIGINT);
4190 # endif
4191 if (wpid > 0)
4192 kill(wpid, SIGINT);
4194 # endif
4195 if (pty_master_fd < 0 && toshell_fd >= 0
4196 && ta_buf[ta_len] == Ctrl_D)
4198 close(toshell_fd);
4199 toshell_fd = -1;
4203 /* replace K_BS by <BS> and K_DEL by <DEL> */
4204 for (i = ta_len; i < ta_len + len; ++i)
4206 if (ta_buf[i] == CSI && len - i > 2)
4208 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4209 if (c == K_DEL || c == K_KDEL || c == K_BS)
4211 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4212 (size_t)(len - i - 2));
4213 if (c == K_DEL || c == K_KDEL)
4214 ta_buf[i] = DEL;
4215 else
4216 ta_buf[i] = Ctrl_H;
4217 len -= 2;
4220 else if (ta_buf[i] == '\r')
4221 ta_buf[i] = '\n';
4222 # ifdef FEAT_MBYTE
4223 if (has_mbyte)
4224 i += (*mb_ptr2len)(ta_buf + i) - 1;
4225 # endif
4229 * For pipes: echo the typed characters.
4230 * For a pty this does not seem to work.
4232 if (pty_master_fd < 0)
4234 for (i = ta_len; i < ta_len + len; ++i)
4236 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4237 msg_putchar(ta_buf[i]);
4238 # ifdef FEAT_MBYTE
4239 else if (has_mbyte)
4241 int l = (*mb_ptr2len)(ta_buf + i);
4243 msg_outtrans_len(ta_buf + i, l);
4244 i += l - 1;
4246 # endif
4247 else
4248 msg_outtrans_len(ta_buf + i, 1);
4250 windgoto(msg_row, msg_col);
4251 out_flush();
4254 ta_len += len;
4257 * Write the characters to the child, unless EOF has
4258 * been typed for pipes. Write one character at a
4259 * time, to avoid loosing too much typeahead.
4260 * When writing buffer lines, drop the typed
4261 * characters (only check for CTRL-C).
4263 if (options & SHELL_WRITE)
4264 ta_len = 0;
4265 else if (toshell_fd >= 0)
4267 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4268 if (len > 0)
4270 ta_len -= len;
4271 mch_memmove(ta_buf, ta_buf + len, ta_len);
4272 noread_cnt = 0;
4277 if (got_int)
4279 /* CTRL-C sends a signal to the child, we ignore it
4280 * ourselves */
4281 # ifdef HAVE_SETSID
4282 kill(-pid, SIGINT);
4283 # else
4284 kill(0, SIGINT);
4285 # endif
4286 if (wpid > 0)
4287 kill(wpid, SIGINT);
4288 got_int = FALSE;
4292 * Check if the child has any characters to be printed.
4293 * Read them and write them to our window. Repeat this as
4294 * long as there is something to do, avoid the 10ms wait
4295 * for mch_inchar(), or sending typeahead characters to
4296 * the external process.
4297 * TODO: This should handle escape sequences, compatible
4298 * to some terminal (vt52?).
4300 ++noread_cnt;
4301 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4303 len = read(fromshell_fd, (char *)buffer
4304 # ifdef FEAT_MBYTE
4305 + buffer_off, (size_t)(BUFLEN - buffer_off)
4306 # else
4307 , (size_t)BUFLEN
4308 # endif
4310 if (len <= 0) /* end of file or error */
4311 goto finished;
4313 noread_cnt = 0;
4314 if (options & SHELL_READ)
4316 /* Do NUL -> NL translation, append NL separated
4317 * lines to the current buffer. */
4318 for (i = 0; i < len; ++i)
4320 if (buffer[i] == NL)
4321 append_ga_line(&ga);
4322 else if (buffer[i] == NUL)
4323 ga_append(&ga, NL);
4324 else
4325 ga_append(&ga, buffer[i]);
4328 # ifdef FEAT_MBYTE
4329 else if (has_mbyte)
4331 int l;
4333 len += buffer_off;
4334 buffer[len] = NUL;
4336 /* Check if the last character in buffer[] is
4337 * incomplete, keep these bytes for the next
4338 * round. */
4339 for (p = buffer; p < buffer + len; p += l)
4341 l = mb_cptr2len(p);
4342 if (l == 0)
4343 l = 1; /* NUL byte? */
4344 else if (MB_BYTE2LEN(*p) != l)
4345 break;
4347 if (p == buffer) /* no complete character */
4349 /* avoid getting stuck at an illegal byte */
4350 if (len >= 12)
4351 ++p;
4352 else
4354 buffer_off = len;
4355 continue;
4358 c = *p;
4359 *p = NUL;
4360 msg_puts(buffer);
4361 if (p < buffer + len)
4363 *p = c;
4364 buffer_off = (buffer + len) - p;
4365 mch_memmove(buffer, p, buffer_off);
4366 continue;
4368 buffer_off = 0;
4370 # endif /* FEAT_MBYTE */
4371 else
4373 buffer[len] = NUL;
4374 msg_puts(buffer);
4377 windgoto(msg_row, msg_col);
4378 cursor_on();
4379 out_flush();
4380 if (got_int)
4381 break;
4384 /* If we already detected the child has finished break the
4385 * loop now. */
4386 if (wait_pid == pid)
4387 break;
4390 * Check if the child still exists, before checking for
4391 * typed characters (otherwise we would loose typeahead).
4393 # ifdef __NeXT__
4394 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
4395 # else
4396 wait_pid = waitpid(pid, &status, WNOHANG);
4397 # endif
4398 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4399 || (wait_pid == pid && WIFEXITED(status)))
4401 /* Don't break the loop yet, try reading more
4402 * characters from "fromshell_fd" first. When using
4403 * pipes there might still be something to read and
4404 * then we'll break the loop at the "break" above. */
4405 wait_pid = pid;
4407 else
4408 wait_pid = 0;
4410 finished:
4411 p_more = p_more_save;
4412 if (options & SHELL_READ)
4414 if (ga.ga_len > 0)
4416 append_ga_line(&ga);
4417 /* remember that the NL was missing */
4418 write_no_eol_lnum = curwin->w_cursor.lnum;
4420 else
4421 write_no_eol_lnum = 0;
4422 ga_clear(&ga);
4426 * Give all typeahead that wasn't used back to ui_inchar().
4428 if (ta_len)
4429 ui_inchar_undo(ta_buf, ta_len);
4430 State = old_State;
4431 if (toshell_fd >= 0)
4432 close(toshell_fd);
4433 close(fromshell_fd);
4437 * Wait until our child has exited.
4438 * Ignore wait() returning pids of other children and returning
4439 * because of some signal like SIGWINCH.
4440 * Don't wait if wait_pid was already set above, indicating the
4441 * child already exited.
4443 while (wait_pid != pid)
4445 # ifdef _THREAD_SAFE
4446 /* Ugly hack: when compiled with Python threads are probably
4447 * used, in which case wait() sometimes hangs for no obvious
4448 * reason. Use waitpid() instead and loop (like the GUI). */
4449 # ifdef __NeXT__
4450 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4451 # else
4452 wait_pid = waitpid(pid, &status, WNOHANG);
4453 # endif
4454 if (wait_pid == 0)
4456 /* Wait for 1/100 sec before trying again. */
4457 mch_delay(10L, TRUE);
4458 continue;
4460 # else
4461 wait_pid = wait(&status);
4462 # endif
4463 if (wait_pid <= 0
4464 # ifdef ECHILD
4465 && errno == ECHILD
4466 # endif
4468 break;
4471 /* Make sure the child that writes to the external program is
4472 * dead. */
4473 if (wpid > 0)
4474 kill(wpid, SIGKILL);
4477 * Set to raw mode right now, otherwise a CTRL-C after
4478 * catch_signals() will kill Vim.
4480 if (tmode == TMODE_RAW)
4481 settmode(TMODE_RAW);
4482 did_settmode = TRUE;
4483 set_signals();
4485 if (WIFEXITED(status))
4487 /* LINTED avoid "bitwise operation on signed value" */
4488 retval = WEXITSTATUS(status);
4489 if (retval && !emsg_silent)
4491 if (retval == EXEC_FAILED)
4493 MSG_PUTS(_("\nCannot execute shell "));
4494 msg_outtrans(p_sh);
4495 msg_putchar('\n');
4497 else if (!(options & SHELL_SILENT))
4499 MSG_PUTS(_("\nshell returned "));
4500 msg_outnum((long)retval);
4501 msg_putchar('\n');
4505 else
4506 MSG_PUTS(_("\nCommand terminated\n"));
4509 vim_free(argv);
4511 error:
4512 if (!did_settmode)
4513 if (tmode == TMODE_RAW)
4514 settmode(TMODE_RAW); /* set to raw mode */
4515 # ifdef FEAT_TITLE
4516 resettitle();
4517 # endif
4518 vim_free(newcmd);
4520 return retval;
4522 #endif /* USE_SYSTEM */
4526 * Check for CTRL-C typed by reading all available characters.
4527 * In cooked mode we should get SIGINT, no need to check.
4529 void
4530 mch_breakcheck()
4532 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4533 fill_input_buf(FALSE);
4537 * Wait "msec" msec until a character is available from the keyboard or from
4538 * inbuf[]. msec == -1 will block forever.
4539 * When a GUI is being used, this will never get called -- webb
4541 static int
4542 WaitForChar(msec)
4543 long msec;
4545 #ifdef FEAT_MOUSE_GPM
4546 int gpm_process_wanted;
4547 #endif
4548 #ifdef FEAT_XCLIPBOARD
4549 int rest;
4550 #endif
4551 int avail;
4553 if (input_available()) /* something in inbuf[] */
4554 return 1;
4556 #if defined(FEAT_MOUSE_DEC)
4557 /* May need to query the mouse position. */
4558 if (WantQueryMouse)
4560 WantQueryMouse = FALSE;
4561 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4563 #endif
4566 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4567 * events. This is a bit complicated, because they might both be defined.
4569 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4570 # ifdef FEAT_XCLIPBOARD
4571 rest = 0;
4572 if (do_xterm_trace())
4573 rest = msec;
4574 # endif
4577 # ifdef FEAT_XCLIPBOARD
4578 if (rest != 0)
4580 msec = XT_TRACE_DELAY;
4581 if (rest >= 0 && rest < XT_TRACE_DELAY)
4582 msec = rest;
4583 if (rest >= 0)
4584 rest -= msec;
4586 # endif
4587 # ifdef FEAT_MOUSE_GPM
4588 gpm_process_wanted = 0;
4589 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4590 # else
4591 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4592 # endif
4593 if (!avail)
4595 if (input_available())
4596 return 1;
4597 # ifdef FEAT_XCLIPBOARD
4598 if (rest == 0 || !do_xterm_trace())
4599 # endif
4600 break;
4603 while (FALSE
4604 # ifdef FEAT_MOUSE_GPM
4605 || (gpm_process_wanted && mch_gpm_process() == 0)
4606 # endif
4607 # ifdef FEAT_XCLIPBOARD
4608 || (!avail && rest != 0)
4609 # endif
4612 #else
4613 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4614 #endif
4615 return avail;
4619 * Wait "msec" msec until a character is available from file descriptor "fd".
4620 * Time == -1 will block forever.
4621 * When a GUI is being used, this will not be used for input -- webb
4622 * Returns also, when a request from Sniff is waiting -- toni.
4623 * Or when a Linux GPM mouse event is waiting.
4625 /* ARGSUSED */
4626 #if defined(__BEOS__)
4628 #else
4629 static int
4630 #endif
4631 RealWaitForChar(fd, msec, check_for_gpm)
4632 int fd;
4633 long msec;
4634 int *check_for_gpm;
4636 int ret;
4637 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4638 static int busy = FALSE;
4640 /* May retry getting characters after an event was handled. */
4641 # define MAY_LOOP
4643 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4644 /* Remember at what time we started, so that we know how much longer we
4645 * should wait after being interrupted. */
4646 # define USE_START_TV
4647 struct timeval start_tv;
4649 if (msec > 0 && (
4650 # ifdef FEAT_XCLIPBOARD
4651 xterm_Shell != (Widget)0
4652 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4654 # endif
4655 # endif
4656 # ifdef USE_XSMP
4657 xsmp_icefd != -1
4658 # ifdef FEAT_MZSCHEME
4660 # endif
4661 # endif
4662 # ifdef FEAT_MZSCHEME
4663 (mzthreads_allowed() && p_mzq > 0)
4664 # endif
4666 gettimeofday(&start_tv, NULL);
4667 # endif
4669 /* Handle being called recursively. This may happen for the session
4670 * manager stuff, it may save the file, which does a breakcheck. */
4671 if (busy)
4672 return 0;
4673 #endif
4675 #ifdef MAY_LOOP
4676 for (;;)
4677 #endif
4679 #ifdef MAY_LOOP
4680 int finished = TRUE; /* default is to 'loop' just once */
4681 # ifdef FEAT_MZSCHEME
4682 int mzquantum_used = FALSE;
4683 # endif
4684 #endif
4685 #ifndef HAVE_SELECT
4686 struct pollfd fds[5];
4687 int nfd;
4688 # ifdef FEAT_XCLIPBOARD
4689 int xterm_idx = -1;
4690 # endif
4691 # ifdef FEAT_MOUSE_GPM
4692 int gpm_idx = -1;
4693 # endif
4694 # ifdef USE_XSMP
4695 int xsmp_idx = -1;
4696 # endif
4697 int towait = (int)msec;
4699 # ifdef FEAT_MZSCHEME
4700 mzvim_check_threads();
4701 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4703 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4704 mzquantum_used = TRUE;
4706 # endif
4707 fds[0].fd = fd;
4708 fds[0].events = POLLIN;
4709 nfd = 1;
4711 # ifdef FEAT_SNIFF
4712 # define SNIFF_IDX 1
4713 if (want_sniff_request)
4715 fds[SNIFF_IDX].fd = fd_from_sniff;
4716 fds[SNIFF_IDX].events = POLLIN;
4717 nfd++;
4719 # endif
4720 # ifdef FEAT_XCLIPBOARD
4721 if (xterm_Shell != (Widget)0)
4723 xterm_idx = nfd;
4724 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4725 fds[nfd].events = POLLIN;
4726 nfd++;
4728 # endif
4729 # ifdef FEAT_MOUSE_GPM
4730 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4732 gpm_idx = nfd;
4733 fds[nfd].fd = gpm_fd;
4734 fds[nfd].events = POLLIN;
4735 nfd++;
4737 # endif
4738 # ifdef USE_XSMP
4739 if (xsmp_icefd != -1)
4741 xsmp_idx = nfd;
4742 fds[nfd].fd = xsmp_icefd;
4743 fds[nfd].events = POLLIN;
4744 nfd++;
4746 # endif
4748 ret = poll(fds, nfd, towait);
4749 # ifdef FEAT_MZSCHEME
4750 if (ret == 0 && mzquantum_used)
4751 /* MzThreads scheduling is required and timeout occurred */
4752 finished = FALSE;
4753 # endif
4755 # ifdef FEAT_SNIFF
4756 if (ret < 0)
4757 sniff_disconnect(1);
4758 else if (want_sniff_request)
4760 if (fds[SNIFF_IDX].revents & POLLHUP)
4761 sniff_disconnect(1);
4762 if (fds[SNIFF_IDX].revents & POLLIN)
4763 sniff_request_waiting = 1;
4765 # endif
4766 # ifdef FEAT_XCLIPBOARD
4767 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4769 xterm_update(); /* Maybe we should hand out clipboard */
4770 if (--ret == 0 && !input_available())
4771 /* Try again */
4772 finished = FALSE;
4774 # endif
4775 # ifdef FEAT_MOUSE_GPM
4776 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4778 *check_for_gpm = 1;
4780 # endif
4781 # ifdef USE_XSMP
4782 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4784 if (fds[xsmp_idx].revents & POLLIN)
4786 busy = TRUE;
4787 xsmp_handle_requests();
4788 busy = FALSE;
4790 else if (fds[xsmp_idx].revents & POLLHUP)
4792 if (p_verbose > 0)
4793 verb_msg((char_u *)_("XSMP lost ICE connection"));
4794 xsmp_close();
4796 if (--ret == 0)
4797 finished = FALSE; /* Try again */
4799 # endif
4802 #else /* HAVE_SELECT */
4804 struct timeval tv;
4805 struct timeval *tvp;
4806 fd_set rfds, efds;
4807 int maxfd;
4808 long towait = msec;
4810 # ifdef FEAT_MZSCHEME
4811 mzvim_check_threads();
4812 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4814 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4815 mzquantum_used = TRUE;
4817 # endif
4818 # ifdef __EMX__
4819 /* don't check for incoming chars if not in raw mode, because select()
4820 * always returns TRUE then (in some version of emx.dll) */
4821 if (curr_tmode != TMODE_RAW)
4822 return 0;
4823 # endif
4825 if (towait >= 0)
4827 tv.tv_sec = towait / 1000;
4828 tv.tv_usec = (towait % 1000) * (1000000/1000);
4829 tvp = &tv;
4831 else
4832 tvp = NULL;
4835 * Select on ready for reading and exceptional condition (end of file).
4837 FD_ZERO(&rfds); /* calls bzero() on a sun */
4838 FD_ZERO(&efds);
4839 FD_SET(fd, &rfds);
4840 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4841 /* For QNX select() always returns 1 if this is set. Why? */
4842 FD_SET(fd, &efds);
4843 # endif
4844 maxfd = fd;
4846 # ifdef FEAT_SNIFF
4847 if (want_sniff_request)
4849 FD_SET(fd_from_sniff, &rfds);
4850 FD_SET(fd_from_sniff, &efds);
4851 if (maxfd < fd_from_sniff)
4852 maxfd = fd_from_sniff;
4854 # endif
4855 # ifdef FEAT_XCLIPBOARD
4856 if (xterm_Shell != (Widget)0)
4858 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4859 if (maxfd < ConnectionNumber(xterm_dpy))
4860 maxfd = ConnectionNumber(xterm_dpy);
4862 # endif
4863 # ifdef FEAT_MOUSE_GPM
4864 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4866 FD_SET(gpm_fd, &rfds);
4867 FD_SET(gpm_fd, &efds);
4868 if (maxfd < gpm_fd)
4869 maxfd = gpm_fd;
4871 # endif
4872 # ifdef USE_XSMP
4873 if (xsmp_icefd != -1)
4875 FD_SET(xsmp_icefd, &rfds);
4876 FD_SET(xsmp_icefd, &efds);
4877 if (maxfd < xsmp_icefd)
4878 maxfd = xsmp_icefd;
4880 # endif
4882 # ifdef OLD_VMS
4883 /* Old VMS as v6.2 and older have broken select(). It waits more than
4884 * required. Should not be used */
4885 ret = 0;
4886 # else
4887 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4888 # endif
4889 # ifdef __TANDEM
4890 if (ret == -1 && errno == ENOTSUP)
4892 FD_ZERO(&rfds);
4893 FD_ZERO(&efds);
4894 ret = 0;
4896 #endif
4897 # ifdef FEAT_MZSCHEME
4898 if (ret == 0 && mzquantum_used)
4899 /* loop if MzThreads must be scheduled and timeout occurred */
4900 finished = FALSE;
4901 # endif
4903 # ifdef FEAT_SNIFF
4904 if (ret < 0 )
4905 sniff_disconnect(1);
4906 else if (ret > 0 && want_sniff_request)
4908 if (FD_ISSET(fd_from_sniff, &efds))
4909 sniff_disconnect(1);
4910 if (FD_ISSET(fd_from_sniff, &rfds))
4911 sniff_request_waiting = 1;
4913 # endif
4914 # ifdef FEAT_XCLIPBOARD
4915 if (ret > 0 && xterm_Shell != (Widget)0
4916 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
4918 xterm_update(); /* Maybe we should hand out clipboard */
4919 /* continue looping when we only got the X event and the input
4920 * buffer is empty */
4921 if (--ret == 0 && !input_available())
4923 /* Try again */
4924 finished = FALSE;
4927 # endif
4928 # ifdef FEAT_MOUSE_GPM
4929 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
4931 if (FD_ISSET(gpm_fd, &efds))
4932 gpm_close();
4933 else if (FD_ISSET(gpm_fd, &rfds))
4934 *check_for_gpm = 1;
4936 # endif
4937 # ifdef USE_XSMP
4938 if (ret > 0 && xsmp_icefd != -1)
4940 if (FD_ISSET(xsmp_icefd, &efds))
4942 if (p_verbose > 0)
4943 verb_msg((char_u *)_("XSMP lost ICE connection"));
4944 xsmp_close();
4945 if (--ret == 0)
4946 finished = FALSE; /* keep going if event was only one */
4948 else if (FD_ISSET(xsmp_icefd, &rfds))
4950 busy = TRUE;
4951 xsmp_handle_requests();
4952 busy = FALSE;
4953 if (--ret == 0)
4954 finished = FALSE; /* keep going if event was only one */
4957 # endif
4959 #endif /* HAVE_SELECT */
4961 #ifdef MAY_LOOP
4962 if (finished || msec == 0)
4963 break;
4965 /* We're going to loop around again, find out for how long */
4966 if (msec > 0)
4968 # ifdef USE_START_TV
4969 struct timeval mtv;
4971 /* Compute remaining wait time. */
4972 gettimeofday(&mtv, NULL);
4973 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
4974 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
4975 # else
4976 /* Guess we got interrupted halfway. */
4977 msec = msec / 2;
4978 # endif
4979 if (msec <= 0)
4980 break; /* waited long enough */
4982 #endif
4985 return (ret > 0);
4988 #ifndef VMS
4990 #ifndef NO_EXPANDPATH
4992 * Expand a path into all matching files and/or directories. Handles "*",
4993 * "?", "[a-z]", "**", etc.
4994 * "path" has backslashes before chars that are not to be expanded.
4995 * Returns the number of matches found.
4998 mch_expandpath(gap, path, flags)
4999 garray_T *gap;
5000 char_u *path;
5001 int flags; /* EW_* flags */
5003 return unix_expandpath(gap, path, 0, flags, FALSE);
5005 #endif
5008 * mch_expand_wildcards() - this code does wild-card pattern matching using
5009 * the shell
5011 * return OK for success, FAIL for error (you may lose some memory) and put
5012 * an error message in *file.
5014 * num_pat is number of input patterns
5015 * pat is array of pointers to input patterns
5016 * num_file is pointer to number of matched file names
5017 * file is pointer to array of pointers to matched file names
5020 #ifndef SEEK_SET
5021 # define SEEK_SET 0
5022 #endif
5023 #ifndef SEEK_END
5024 # define SEEK_END 2
5025 #endif
5027 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5029 /* ARGSUSED */
5031 mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5032 int num_pat;
5033 char_u **pat;
5034 int *num_file;
5035 char_u ***file;
5036 int flags; /* EW_* flags */
5038 int i;
5039 size_t len;
5040 char_u *p;
5041 int dir;
5042 #ifdef __EMX__
5044 * This is the OS/2 implementation.
5046 # define EXPL_ALLOC_INC 16
5047 char_u **expl_files;
5048 size_t files_alloced, files_free;
5049 char_u *buf;
5050 int has_wildcard;
5052 *num_file = 0; /* default: no files found */
5053 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5054 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5055 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5056 if (*file == NULL)
5057 return FAIL;
5059 for (; num_pat > 0; num_pat--, pat++)
5061 expl_files = NULL;
5062 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5063 /* expand environment var or home dir */
5064 buf = expand_env_save(*pat);
5065 else
5066 buf = vim_strsave(*pat);
5067 expl_files = NULL;
5068 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
5069 if (has_wildcard) /* yes, so expand them */
5070 expl_files = (char_u **)_fnexplode(buf);
5073 * return value of buf if no wildcards left,
5074 * OR if no match AND EW_NOTFOUND is set.
5076 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5077 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5078 { /* simply save the current contents of *buf */
5079 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5080 if (expl_files != NULL)
5082 expl_files[0] = vim_strsave(buf);
5083 expl_files[1] = NULL;
5086 vim_free(buf);
5089 * Count number of names resulting from expansion,
5090 * At the same time add a backslash to the end of names that happen to
5091 * be directories, and replace slashes with backslashes.
5093 if (expl_files)
5095 for (i = 0; (p = expl_files[i]) != NULL; i++)
5097 dir = mch_isdir(p);
5098 /* If we don't want dirs and this is one, skip it */
5099 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5100 continue;
5102 /* Skip files that are not executable if we check for that. */
5103 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5104 continue;
5106 if (--files_free == 0)
5108 /* need more room in table of pointers */
5109 files_alloced += EXPL_ALLOC_INC;
5110 *file = (char_u **)vim_realloc(*file,
5111 sizeof(char_u **) * files_alloced);
5112 if (*file == NULL)
5114 EMSG(_(e_outofmem));
5115 *num_file = 0;
5116 return FAIL;
5118 files_free = EXPL_ALLOC_INC;
5120 slash_adjust(p);
5121 if (dir)
5123 /* For a directory we add a '/', unless it's already
5124 * there. */
5125 len = STRLEN(p);
5126 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5128 STRCPY((*file)[*num_file], p);
5129 if (!after_pathsep((*file)[*num_file],
5130 (*file)[*num_file] + len))
5132 (*file)[*num_file][len] = psepc;
5133 (*file)[*num_file][len + 1] = NUL;
5137 else
5139 (*file)[*num_file] = vim_strsave(p);
5143 * Error message already given by either alloc or vim_strsave.
5144 * Should return FAIL, but returning OK works also.
5146 if ((*file)[*num_file] == NULL)
5147 break;
5148 (*num_file)++;
5150 _fnexplodefree((char **)expl_files);
5153 return OK;
5155 #else /* __EMX__ */
5157 * This is the non-OS/2 implementation (really Unix).
5159 int j;
5160 char_u *tempname;
5161 char_u *command;
5162 FILE *fd;
5163 char_u *buffer;
5164 #define STYLE_ECHO 0 /* use "echo", the default */
5165 #define STYLE_GLOB 1 /* use "glob", for csh */
5166 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5167 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5168 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5169 * directly */
5170 int shell_style = STYLE_ECHO;
5171 int check_spaces;
5172 static int did_find_nul = FALSE;
5173 int ampersent = FALSE;
5174 /* vimglob() function to define for Posix shell */
5175 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo -n \"$1\"; echo; shift; done }; vimglob >";
5177 *num_file = 0; /* default: no files found */
5178 *file = NULL;
5181 * If there are no wildcards, just copy the names to allocated memory.
5182 * Saves a lot of time, because we don't have to start a new shell.
5184 if (!have_wildcard(num_pat, pat))
5185 return save_patterns(num_pat, pat, num_file, file);
5187 # ifdef HAVE_SANDBOX
5188 /* Don't allow any shell command in the sandbox. */
5189 if (sandbox != 0 && check_secure())
5190 return FAIL;
5191 # endif
5194 * Don't allow the use of backticks in secure and restricted mode.
5196 if (secure || restricted)
5197 for (i = 0; i < num_pat; ++i)
5198 if (vim_strchr(pat[i], '`') != NULL
5199 && (check_restricted() || check_secure()))
5200 return FAIL;
5203 * get a name for the temp file
5205 if ((tempname = vim_tempname('o')) == NULL)
5207 EMSG(_(e_notmp));
5208 return FAIL;
5212 * Let the shell expand the patterns and write the result into the temp
5213 * file.
5214 * STYLE_BT: NL separated
5215 * If expanding `cmd` execute it directly.
5216 * STYLE_GLOB: NUL separated
5217 * If we use *csh, "glob" will work better than "echo".
5218 * STYLE_PRINT: NL or NUL separated
5219 * If we use *zsh, "print -N" will work better than "glob".
5220 * STYLE_VIMGLOB: NL separated
5221 * If we use *sh*, we define "vimglob()".
5222 * STYLE_ECHO: space separated.
5223 * A shell we don't know, stay safe and use "echo".
5225 if (num_pat == 1 && *pat[0] == '`'
5226 && (len = STRLEN(pat[0])) > 2
5227 && *(pat[0] + len - 1) == '`')
5228 shell_style = STYLE_BT;
5229 else if ((len = STRLEN(p_sh)) >= 3)
5231 if (STRCMP(p_sh + len - 3, "csh") == 0)
5232 shell_style = STYLE_GLOB;
5233 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5234 shell_style = STYLE_PRINT;
5236 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5237 "sh") != NULL)
5238 shell_style = STYLE_VIMGLOB;
5240 /* Compute the length of the command. We need 2 extra bytes: for the
5241 * optional '&' and for the NUL.
5242 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5243 len = STRLEN(tempname) + 29;
5244 if (shell_style == STYLE_VIMGLOB)
5245 len += STRLEN(sh_vimglob_func);
5247 for (i = 0; i < num_pat; ++i)
5249 /* Count the length of the patterns in the same way as they are put in
5250 * "command" below. */
5251 #ifdef USE_SYSTEM
5252 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
5253 #else
5254 ++len; /* add space */
5255 for (j = 0; pat[i][j] != NUL; ++j)
5257 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5258 ++len; /* may add a backslash */
5259 ++len;
5261 #endif
5263 command = alloc(len);
5264 if (command == NULL)
5266 /* out of memory */
5267 vim_free(tempname);
5268 return FAIL;
5272 * Build the shell command:
5273 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5274 * recognizes this).
5275 * - Add the shell command to print the expanded names.
5276 * - Add the temp file name.
5277 * - Add the file name patterns.
5279 if (shell_style == STYLE_BT)
5281 /* change `command; command& ` to (command; command ) */
5282 STRCPY(command, "(");
5283 STRCAT(command, pat[0] + 1); /* exclude first backtick */
5284 p = command + STRLEN(command) - 1;
5285 *p-- = ')'; /* remove last backtick */
5286 while (p > command && vim_iswhite(*p))
5287 --p;
5288 if (*p == '&') /* remove trailing '&' */
5290 ampersent = TRUE;
5291 *p = ' ';
5293 STRCAT(command, ">");
5295 else
5297 if (flags & EW_NOTFOUND)
5298 STRCPY(command, "set nonomatch; ");
5299 else
5300 STRCPY(command, "unset nonomatch; ");
5301 if (shell_style == STYLE_GLOB)
5302 STRCAT(command, "glob >");
5303 else if (shell_style == STYLE_PRINT)
5304 STRCAT(command, "print -N >");
5305 else if (shell_style == STYLE_VIMGLOB)
5306 STRCAT(command, sh_vimglob_func);
5307 else
5308 STRCAT(command, "echo >");
5311 STRCAT(command, tempname);
5313 if (shell_style != STYLE_BT)
5314 for (i = 0; i < num_pat; ++i)
5316 /* When using system() always add extra quotes, because the shell
5317 * is started twice. Otherwise put a backslash before special
5318 * characters, except inside ``. */
5319 #ifdef USE_SYSTEM
5320 STRCAT(command, " \"");
5321 STRCAT(command, pat[i]);
5322 STRCAT(command, "\"");
5323 #else
5324 int intick = FALSE;
5326 p = command + STRLEN(command);
5327 *p++ = ' ';
5328 for (j = 0; pat[i][j] != NUL; ++j)
5330 if (pat[i][j] == '`')
5331 intick = !intick;
5332 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5334 /* Remove a backslash, take char literally. But keep
5335 * backslash inside backticks, before a special character
5336 * and before a backtick. */
5337 if (intick
5338 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5339 || pat[i][j + 1] == '`')
5340 *p++ = '\\';
5341 ++j;
5343 else if (!intick && vim_strchr(SHELL_SPECIAL,
5344 pat[i][j]) != NULL)
5345 /* Put a backslash before a special character, but not
5346 * when inside ``. */
5347 *p++ = '\\';
5349 /* Copy one character. */
5350 *p++ = pat[i][j];
5352 *p = NUL;
5353 #endif
5355 if (flags & EW_SILENT)
5356 show_shell_mess = FALSE;
5357 if (ampersent)
5358 STRCAT(command, "&"); /* put the '&' after the redirection */
5361 * Using zsh -G: If a pattern has no matches, it is just deleted from
5362 * the argument list, otherwise zsh gives an error message and doesn't
5363 * expand any other pattern.
5365 if (shell_style == STYLE_PRINT)
5366 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5369 * If we use -f then shell variables set in .cshrc won't get expanded.
5370 * vi can do it, so we will too, but it is only necessary if there is a "$"
5371 * in one of the patterns, otherwise we can still use the fast option.
5373 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5374 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5377 * execute the shell command
5379 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5381 /* When running in the background, give it some time to create the temp
5382 * file, but don't wait for it to finish. */
5383 if (ampersent)
5384 mch_delay(10L, TRUE);
5386 extra_shell_arg = NULL; /* cleanup */
5387 show_shell_mess = TRUE;
5388 vim_free(command);
5390 if (i != 0) /* mch_call_shell() failed */
5392 mch_remove(tempname);
5393 vim_free(tempname);
5395 * With interactive completion, the error message is not printed.
5396 * However with USE_SYSTEM, I don't know how to turn off error messages
5397 * from the shell, so screen may still get messed up -- webb.
5399 #ifndef USE_SYSTEM
5400 if (!(flags & EW_SILENT))
5401 #endif
5403 redraw_later_clear(); /* probably messed up screen */
5404 msg_putchar('\n'); /* clear bottom line quickly */
5405 cmdline_row = Rows - 1; /* continue on last line */
5406 #ifdef USE_SYSTEM
5407 if (!(flags & EW_SILENT))
5408 #endif
5410 MSG(_(e_wildexpand));
5411 msg_start(); /* don't overwrite this message */
5414 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5415 * EW_NOTFOUND is given */
5416 if (shell_style == STYLE_BT)
5417 return FAIL;
5418 goto notfound;
5422 * read the names from the file into memory
5424 fd = fopen((char *)tempname, READBIN);
5425 if (fd == NULL)
5427 /* Something went wrong, perhaps a file name with a special char. */
5428 if (!(flags & EW_SILENT))
5430 MSG(_(e_wildexpand));
5431 msg_start(); /* don't overwrite this message */
5433 vim_free(tempname);
5434 goto notfound;
5436 fseek(fd, 0L, SEEK_END);
5437 len = ftell(fd); /* get size of temp file */
5438 fseek(fd, 0L, SEEK_SET);
5439 buffer = alloc(len + 1);
5440 if (buffer == NULL)
5442 /* out of memory */
5443 mch_remove(tempname);
5444 vim_free(tempname);
5445 fclose(fd);
5446 return FAIL;
5448 i = fread((char *)buffer, 1, len, fd);
5449 fclose(fd);
5450 mch_remove(tempname);
5451 if (i != len)
5453 /* unexpected read error */
5454 EMSG2(_(e_notread), tempname);
5455 vim_free(tempname);
5456 vim_free(buffer);
5457 return FAIL;
5459 vim_free(tempname);
5461 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5462 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5463 p = buffer;
5464 for (i = 0; i < len; ++i)
5465 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5466 *p++ = buffer[i];
5467 len = p - buffer;
5468 # endif
5471 /* file names are separated with Space */
5472 if (shell_style == STYLE_ECHO)
5474 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5475 p = buffer;
5476 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5478 while (*p != ' ' && *p != '\n')
5479 ++p;
5480 p = skipwhite(p); /* skip to next entry */
5483 /* file names are separated with NL */
5484 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
5486 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5487 p = buffer;
5488 for (i = 0; *p != NUL; ++i) /* count number of entries */
5490 while (*p != '\n' && *p != NUL)
5491 ++p;
5492 if (*p != NUL)
5493 ++p;
5494 p = skipwhite(p); /* skip leading white space */
5497 /* file names are separated with NUL */
5498 else
5501 * Some versions of zsh use spaces instead of NULs to separate
5502 * results. Only do this when there is no NUL before the end of the
5503 * buffer, otherwise we would never be able to use file names with
5504 * embedded spaces when zsh does use NULs.
5505 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5506 * don't check for spaces again.
5508 check_spaces = FALSE;
5509 if (shell_style == STYLE_PRINT && !did_find_nul)
5511 /* If there is a NUL, set did_find_nul, else set check_spaces */
5512 if (len && (int)STRLEN(buffer) < len - 1)
5513 did_find_nul = TRUE;
5514 else
5515 check_spaces = TRUE;
5519 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5520 * already is one, for STYLE_GLOB it needs to be added.
5522 if (len && buffer[len - 1] == NUL)
5523 --len;
5524 else
5525 buffer[len] = NUL;
5526 i = 0;
5527 for (p = buffer; p < buffer + len; ++p)
5528 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5530 ++i;
5531 *p = NUL;
5533 if (len)
5534 ++i; /* count last entry */
5536 if (i == 0)
5539 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5540 * /bin/sh will happily expand it to nothing rather than returning an
5541 * error; and hey, it's good to check anyway -- webb.
5543 vim_free(buffer);
5544 goto notfound;
5546 *num_file = i;
5547 *file = (char_u **)alloc(sizeof(char_u *) * i);
5548 if (*file == NULL)
5550 /* out of memory */
5551 vim_free(buffer);
5552 return FAIL;
5556 * Isolate the individual file names.
5558 p = buffer;
5559 for (i = 0; i < *num_file; ++i)
5561 (*file)[i] = p;
5562 /* Space or NL separates */
5563 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5564 || shell_style == STYLE_VIMGLOB)
5566 while (!(shell_style == STYLE_ECHO && *p == ' ')
5567 && *p != '\n' && *p != NUL)
5568 ++p;
5569 if (p == buffer + len) /* last entry */
5570 *p = NUL;
5571 else
5573 *p++ = NUL;
5574 p = skipwhite(p); /* skip to next entry */
5577 else /* NUL separates */
5579 while (*p && p < buffer + len) /* skip entry */
5580 ++p;
5581 ++p; /* skip NUL */
5586 * Move the file names to allocated memory.
5588 for (j = 0, i = 0; i < *num_file; ++i)
5590 /* Require the files to exist. Helps when using /bin/sh */
5591 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5592 continue;
5594 /* check if this entry should be included */
5595 dir = (mch_isdir((*file)[i]));
5596 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5597 continue;
5599 /* Skip files that are not executable if we check for that. */
5600 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5601 continue;
5603 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5604 if (p)
5606 STRCPY(p, (*file)[i]);
5607 if (dir)
5608 add_pathsep(p); /* add '/' to a directory name */
5609 (*file)[j++] = p;
5612 vim_free(buffer);
5613 *num_file = j;
5615 if (*num_file == 0) /* rejected all entries */
5617 vim_free(*file);
5618 *file = NULL;
5619 goto notfound;
5622 return OK;
5624 notfound:
5625 if (flags & EW_NOTFOUND)
5626 return save_patterns(num_pat, pat, num_file, file);
5627 return FAIL;
5629 #endif /* __EMX__ */
5632 #endif /* VMS */
5634 #ifndef __EMX__
5635 static int
5636 save_patterns(num_pat, pat, num_file, file)
5637 int num_pat;
5638 char_u **pat;
5639 int *num_file;
5640 char_u ***file;
5642 int i;
5643 char_u *s;
5645 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5646 if (*file == NULL)
5647 return FAIL;
5648 for (i = 0; i < num_pat; i++)
5650 s = vim_strsave(pat[i]);
5651 if (s != NULL)
5652 /* Be compatible with expand_filename(): halve the number of
5653 * backslashes. */
5654 backslash_halve(s);
5655 (*file)[i] = s;
5657 *num_file = num_pat;
5658 return OK;
5660 #endif
5664 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5665 * expand.
5668 mch_has_exp_wildcard(p)
5669 char_u *p;
5671 for ( ; *p; mb_ptr_adv(p))
5673 #ifndef OS2
5674 if (*p == '\\' && p[1] != NUL)
5675 ++p;
5676 else
5677 #endif
5678 if (vim_strchr((char_u *)
5679 #ifdef VMS
5680 "*?%"
5681 #else
5682 # ifdef OS2
5683 "*?"
5684 # else
5685 "*?[{'"
5686 # endif
5687 #endif
5688 , *p) != NULL)
5689 return TRUE;
5691 return FALSE;
5695 * Return TRUE if the string "p" contains a wildcard.
5696 * Don't recognize '~' at the end as a wildcard.
5699 mch_has_wildcard(p)
5700 char_u *p;
5702 for ( ; *p; mb_ptr_adv(p))
5704 #ifndef OS2
5705 if (*p == '\\' && p[1] != NUL)
5706 ++p;
5707 else
5708 #endif
5709 if (vim_strchr((char_u *)
5710 #ifdef VMS
5711 "*?%$"
5712 #else
5713 # ifdef OS2
5714 # ifdef VIM_BACKTICK
5715 "*?$`"
5716 # else
5717 "*?$"
5718 # endif
5719 # else
5720 "*?[{`'$"
5721 # endif
5722 #endif
5723 , *p) != NULL
5724 || (*p == '~' && p[1] != NUL))
5725 return TRUE;
5727 return FALSE;
5730 #ifndef __EMX__
5731 static int
5732 have_wildcard(num, file)
5733 int num;
5734 char_u **file;
5736 int i;
5738 for (i = 0; i < num; i++)
5739 if (mch_has_wildcard(file[i]))
5740 return 1;
5741 return 0;
5744 static int
5745 have_dollars(num, file)
5746 int num;
5747 char_u **file;
5749 int i;
5751 for (i = 0; i < num; i++)
5752 if (vim_strchr(file[i], '$') != NULL)
5753 return TRUE;
5754 return FALSE;
5756 #endif /* ifndef __EMX__ */
5758 #ifndef HAVE_RENAME
5760 * Scaled-down version of rename(), which is missing in Xenix.
5761 * This version can only move regular files and will fail if the
5762 * destination exists.
5765 mch_rename(src, dest)
5766 const char *src, *dest;
5768 struct stat st;
5770 if (stat(dest, &st) >= 0) /* fail if destination exists */
5771 return -1;
5772 if (link(src, dest) != 0) /* link file to new name */
5773 return -1;
5774 if (mch_remove(src) == 0) /* delete link to old name */
5775 return 0;
5776 return -1;
5778 #endif /* !HAVE_RENAME */
5780 #ifdef FEAT_MOUSE_GPM
5782 * Initializes connection with gpm (if it isn't already opened)
5783 * Return 1 if succeeded (or connection already opened), 0 if failed
5785 static int
5786 gpm_open()
5788 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5790 if (!gpm_flag)
5792 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5793 gpm_connect.defaultMask = ~GPM_HARD;
5794 /* Default handling for mouse move*/
5795 gpm_connect.minMod = 0; /* Handle any modifier keys */
5796 gpm_connect.maxMod = 0xffff;
5797 if (Gpm_Open(&gpm_connect, 0) > 0)
5799 /* gpm library tries to handling TSTP causes
5800 * problems. Anyways, we close connection to Gpm whenever
5801 * we are going to suspend or starting an external process
5802 * so we shouldn't have problem with this
5804 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5805 return 1; /* succeed */
5807 if (gpm_fd == -2)
5808 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5809 return 0;
5811 return 1; /* already open */
5815 * Closes connection to gpm
5816 * returns non-zero if connection successfully closed
5818 static void
5819 gpm_close()
5821 if (gpm_flag && gpm_fd >= 0) /* if Open */
5822 Gpm_Close();
5825 /* Reads gpm event and adds special keys to input buf. Returns length of
5826 * generated key sequence.
5827 * This function is made after gui_send_mouse_event
5829 static int
5830 mch_gpm_process()
5832 int button;
5833 static Gpm_Event gpm_event;
5834 char_u string[6];
5835 int_u vim_modifiers;
5836 int row,col;
5837 unsigned char buttons_mask;
5838 unsigned char gpm_modifiers;
5839 static unsigned char old_buttons = 0;
5841 Gpm_GetEvent(&gpm_event);
5843 #ifdef FEAT_GUI
5844 /* Don't put events in the input queue now. */
5845 if (hold_gui_events)
5846 return 0;
5847 #endif
5849 row = gpm_event.y - 1;
5850 col = gpm_event.x - 1;
5852 string[0] = ESC; /* Our termcode */
5853 string[1] = 'M';
5854 string[2] = 'G';
5855 switch (GPM_BARE_EVENTS(gpm_event.type))
5857 case GPM_DRAG:
5858 string[3] = MOUSE_DRAG;
5859 break;
5860 case GPM_DOWN:
5861 buttons_mask = gpm_event.buttons & ~old_buttons;
5862 old_buttons = gpm_event.buttons;
5863 switch (buttons_mask)
5865 case GPM_B_LEFT:
5866 button = MOUSE_LEFT;
5867 break;
5868 case GPM_B_MIDDLE:
5869 button = MOUSE_MIDDLE;
5870 break;
5871 case GPM_B_RIGHT:
5872 button = MOUSE_RIGHT;
5873 break;
5874 default:
5875 return 0;
5876 /*Don't know what to do. Can more than one button be
5877 * reported in one event? */
5879 string[3] = (char_u)(button | 0x20);
5880 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5881 break;
5882 case GPM_UP:
5883 string[3] = MOUSE_RELEASE;
5884 old_buttons &= ~gpm_event.buttons;
5885 break;
5886 default:
5887 return 0;
5889 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5890 gpm_modifiers = gpm_event.modifiers;
5891 vim_modifiers = 0x0;
5892 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5893 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5894 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5896 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
5897 vim_modifiers |= MOUSE_SHIFT;
5899 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
5900 vim_modifiers |= MOUSE_CTRL;
5901 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
5902 vim_modifiers |= MOUSE_ALT;
5903 string[3] |= vim_modifiers;
5904 string[4] = (char_u)(col + ' ' + 1);
5905 string[5] = (char_u)(row + ' ' + 1);
5906 add_to_input_buf(string, 6);
5907 return 6;
5909 #endif /* FEAT_MOUSE_GPM */
5911 #if defined(FEAT_LIBCALL) || defined(PROTO)
5912 typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
5913 typedef char_u * (*INTPROCSTR)__ARGS((int));
5914 typedef int (*STRPROCINT)__ARGS((char_u *));
5915 typedef int (*INTPROCINT)__ARGS((int));
5918 * Call a DLL routine which takes either a string or int param
5919 * and returns an allocated string.
5922 mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
5923 char_u *libname;
5924 char_u *funcname;
5925 char_u *argstring; /* NULL when using a argint */
5926 int argint;
5927 char_u **string_result;/* NULL when using number_result */
5928 int *number_result;
5930 # if defined(USE_DLOPEN)
5931 void *hinstLib;
5932 char *dlerr = NULL;
5933 # else
5934 shl_t hinstLib;
5935 # endif
5936 STRPROCSTR ProcAdd;
5937 INTPROCSTR ProcAddI;
5938 char_u *retval_str = NULL;
5939 int retval_int = 0;
5940 int success = FALSE;
5943 * Get a handle to the DLL module.
5945 # if defined(USE_DLOPEN)
5946 /* First clear any error, it's not cleared by the dlopen() call. */
5947 (void)dlerror();
5949 hinstLib = dlopen((char *)libname, RTLD_LAZY
5950 # ifdef RTLD_LOCAL
5951 | RTLD_LOCAL
5952 # endif
5954 if (hinstLib == NULL)
5956 /* "dlerr" must be used before dlclose() */
5957 dlerr = (char *)dlerror();
5958 if (dlerr != NULL)
5959 EMSG2(_("dlerror = \"%s\""), dlerr);
5961 # else
5962 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
5963 # endif
5965 /* If the handle is valid, try to get the function address. */
5966 if (hinstLib != NULL)
5968 # ifdef HAVE_SETJMP_H
5970 * Catch a crash when calling the library function. For example when
5971 * using a number where a string pointer is expected.
5973 mch_startjmp();
5974 if (SETJMP(lc_jump_env) != 0)
5976 success = FALSE;
5977 # if defined(USE_DLOPEN)
5978 dlerr = NULL;
5979 # endif
5980 mch_didjmp();
5982 else
5983 # endif
5985 retval_str = NULL;
5986 retval_int = 0;
5988 if (argstring != NULL)
5990 # if defined(USE_DLOPEN)
5991 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
5992 dlerr = (char *)dlerror();
5993 # else
5994 if (shl_findsym(&hinstLib, (const char *)funcname,
5995 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
5996 ProcAdd = NULL;
5997 # endif
5998 if ((success = (ProcAdd != NULL
5999 # if defined(USE_DLOPEN)
6000 && dlerr == NULL
6001 # endif
6004 if (string_result == NULL)
6005 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6006 else
6007 retval_str = (ProcAdd)(argstring);
6010 else
6012 # if defined(USE_DLOPEN)
6013 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
6014 dlerr = (char *)dlerror();
6015 # else
6016 if (shl_findsym(&hinstLib, (const char *)funcname,
6017 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6018 ProcAddI = NULL;
6019 # endif
6020 if ((success = (ProcAddI != NULL
6021 # if defined(USE_DLOPEN)
6022 && dlerr == NULL
6023 # endif
6026 if (string_result == NULL)
6027 retval_int = ((INTPROCINT)ProcAddI)(argint);
6028 else
6029 retval_str = (ProcAddI)(argint);
6033 /* Save the string before we free the library. */
6034 /* Assume that a "1" or "-1" result is an illegal pointer. */
6035 if (string_result == NULL)
6036 *number_result = retval_int;
6037 else if (retval_str != NULL
6038 && retval_str != (char_u *)1
6039 && retval_str != (char_u *)-1)
6040 *string_result = vim_strsave(retval_str);
6043 # ifdef HAVE_SETJMP_H
6044 mch_endjmp();
6045 # ifdef SIGHASARG
6046 if (lc_signal != 0)
6048 int i;
6050 /* try to find the name of this signal */
6051 for (i = 0; signal_info[i].sig != -1; i++)
6052 if (lc_signal == signal_info[i].sig)
6053 break;
6054 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6056 # endif
6057 # endif
6059 # if defined(USE_DLOPEN)
6060 /* "dlerr" must be used before dlclose() */
6061 if (dlerr != NULL)
6062 EMSG2(_("dlerror = \"%s\""), dlerr);
6064 /* Free the DLL module. */
6065 (void)dlclose(hinstLib);
6066 # else
6067 (void)shl_unload(hinstLib);
6068 # endif
6071 if (!success)
6073 EMSG2(_(e_libcall), funcname);
6074 return FAIL;
6077 return OK;
6079 #endif
6081 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6082 static int xterm_trace = -1; /* default: disabled */
6083 static int xterm_button;
6086 * Setup a dummy window for X selections in a terminal.
6088 void
6089 setup_term_clip()
6091 int z = 0;
6092 char *strp = "";
6093 Widget AppShell;
6095 if (!x_connect_to_server())
6096 return;
6098 open_app_context();
6099 if (app_context != NULL && xterm_Shell == (Widget)0)
6101 int (*oldhandler)();
6102 #if defined(HAVE_SETJMP_H)
6103 int (*oldIOhandler)();
6104 #endif
6105 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6106 struct timeval start_tv;
6108 if (p_verbose > 0)
6109 gettimeofday(&start_tv, NULL);
6110 # endif
6112 /* Ignore X errors while opening the display */
6113 oldhandler = XSetErrorHandler(x_error_check);
6115 #if defined(HAVE_SETJMP_H)
6116 /* Ignore X IO errors while opening the display */
6117 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6118 mch_startjmp();
6119 if (SETJMP(lc_jump_env) != 0)
6121 mch_didjmp();
6122 xterm_dpy = NULL;
6124 else
6125 #endif
6127 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6128 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6129 #if defined(HAVE_SETJMP_H)
6130 mch_endjmp();
6131 #endif
6134 #if defined(HAVE_SETJMP_H)
6135 /* Now handle X IO errors normally. */
6136 (void)XSetIOErrorHandler(oldIOhandler);
6137 #endif
6138 /* Now handle X errors normally. */
6139 (void)XSetErrorHandler(oldhandler);
6141 if (xterm_dpy == NULL)
6143 if (p_verbose > 0)
6144 verb_msg((char_u *)_("Opening the X display failed"));
6145 return;
6148 /* Catch terminating error of the X server connection. */
6149 (void)XSetIOErrorHandler(x_IOerror_handler);
6151 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6152 if (p_verbose > 0)
6154 verbose_enter();
6155 xopen_message(&start_tv);
6156 verbose_leave();
6158 # endif
6160 /* Create a Shell to make converters work. */
6161 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6162 applicationShellWidgetClass, xterm_dpy,
6163 NULL);
6164 if (AppShell == (Widget)0)
6165 return;
6166 xterm_Shell = XtVaCreatePopupShell("VIM",
6167 topLevelShellWidgetClass, AppShell,
6168 XtNmappedWhenManaged, 0,
6169 XtNwidth, 1,
6170 XtNheight, 1,
6171 NULL);
6172 if (xterm_Shell == (Widget)0)
6173 return;
6175 x11_setup_atoms(xterm_dpy);
6176 if (x11_display == NULL)
6177 x11_display = xterm_dpy;
6179 XtRealizeWidget(xterm_Shell);
6180 XSync(xterm_dpy, False);
6181 xterm_update();
6183 if (xterm_Shell != (Widget)0)
6185 clip_init(TRUE);
6186 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6187 x11_window = (Window)atol(strp);
6188 /* Check if $WINDOWID is valid. */
6189 if (test_x11_window(xterm_dpy) == FAIL)
6190 x11_window = 0;
6191 if (x11_window != 0)
6192 xterm_trace = 0;
6196 void
6197 start_xterm_trace(button)
6198 int button;
6200 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6201 return;
6202 xterm_trace = 1;
6203 xterm_button = button;
6204 do_xterm_trace();
6208 void
6209 stop_xterm_trace()
6211 if (xterm_trace < 0)
6212 return;
6213 xterm_trace = 0;
6217 * Query the xterm pointer and generate mouse termcodes if necessary
6218 * return TRUE if dragging is active, else FALSE
6220 static int
6221 do_xterm_trace()
6223 Window root, child;
6224 int root_x, root_y;
6225 int win_x, win_y;
6226 int row, col;
6227 int_u mask_return;
6228 char_u buf[50];
6229 char_u *strp;
6230 long got_hints;
6231 static char_u *mouse_code;
6232 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6233 static int prev_row = 0, prev_col = 0;
6234 static XSizeHints xterm_hints;
6236 if (xterm_trace <= 0)
6237 return FALSE;
6239 if (xterm_trace == 1)
6241 /* Get the hints just before tracking starts. The font size might
6242 * have changed recently. */
6243 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6244 || !(got_hints & PResizeInc)
6245 || xterm_hints.width_inc <= 1
6246 || xterm_hints.height_inc <= 1)
6248 xterm_trace = -1; /* Not enough data -- disable tracing */
6249 return FALSE;
6252 /* Rely on the same mouse code for the duration of this */
6253 mouse_code = find_termcode(mouse_name);
6254 prev_row = mouse_row;
6255 prev_row = mouse_col;
6256 xterm_trace = 2;
6258 /* Find the offset of the chars, there might be a scrollbar on the
6259 * left of the window and/or a menu on the top (eterm etc.) */
6260 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6261 &win_x, &win_y, &mask_return);
6262 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6263 - (xterm_hints.height_inc / 2);
6264 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6265 xterm_hints.y = 2;
6266 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6267 - (xterm_hints.width_inc / 2);
6268 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6269 xterm_hints.x = 2;
6270 return TRUE;
6272 if (mouse_code == NULL)
6274 xterm_trace = 0;
6275 return FALSE;
6278 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6279 &win_x, &win_y, &mask_return);
6281 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6282 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6283 if (row == prev_row && col == prev_col)
6284 return TRUE;
6286 STRCPY(buf, mouse_code);
6287 strp = buf + STRLEN(buf);
6288 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6289 *strp++ = (char_u)(col + ' ' + 1);
6290 *strp++ = (char_u)(row + ' ' + 1);
6291 *strp = 0;
6292 add_to_input_buf(buf, STRLEN(buf));
6294 prev_row = row;
6295 prev_col = col;
6296 return TRUE;
6299 # if defined(FEAT_GUI) || defined(PROTO)
6301 * Destroy the display, window and app_context. Required for GTK.
6303 void
6304 clear_xterm_clip()
6306 if (xterm_Shell != (Widget)0)
6308 XtDestroyWidget(xterm_Shell);
6309 xterm_Shell = (Widget)0;
6311 if (xterm_dpy != NULL)
6313 # if 0
6314 /* Lesstif and Solaris crash here, lose some memory */
6315 XtCloseDisplay(xterm_dpy);
6316 # endif
6317 if (x11_display == xterm_dpy)
6318 x11_display = NULL;
6319 xterm_dpy = NULL;
6321 # if 0
6322 if (app_context != (XtAppContext)NULL)
6324 /* Lesstif and Solaris crash here, lose some memory */
6325 XtDestroyApplicationContext(app_context);
6326 app_context = (XtAppContext)NULL;
6328 # endif
6330 # endif
6333 * Catch up with any queued X events. This may put keyboard input into the
6334 * input buffer, call resize call-backs, trigger timers etc. If there is
6335 * nothing in the X event queue (& no timers pending), then we return
6336 * immediately.
6338 static void
6339 xterm_update()
6341 XEvent event;
6343 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6345 XtAppNextEvent(app_context, &event);
6346 #ifdef FEAT_CLIENTSERVER
6348 XPropertyEvent *e = (XPropertyEvent *)&event;
6350 if (e->type == PropertyNotify && e->window == commWindow
6351 && e->atom == commProperty && e->state == PropertyNewValue)
6352 serverEventProc(xterm_dpy, &event);
6354 #endif
6355 XtDispatchEvent(&event);
6360 clip_xterm_own_selection(cbd)
6361 VimClipboard *cbd;
6363 if (xterm_Shell != (Widget)0)
6364 return clip_x11_own_selection(xterm_Shell, cbd);
6365 return FAIL;
6368 void
6369 clip_xterm_lose_selection(cbd)
6370 VimClipboard *cbd;
6372 if (xterm_Shell != (Widget)0)
6373 clip_x11_lose_selection(xterm_Shell, cbd);
6376 void
6377 clip_xterm_request_selection(cbd)
6378 VimClipboard *cbd;
6380 if (xterm_Shell != (Widget)0)
6381 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6384 void
6385 clip_xterm_set_selection(cbd)
6386 VimClipboard *cbd;
6388 clip_x11_set_selection(cbd);
6390 #endif
6393 #if defined(USE_XSMP) || defined(PROTO)
6395 * Code for X Session Management Protocol.
6397 static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6398 static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6399 static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6400 static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6401 static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6404 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6405 static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6408 * This is our chance to ask the user if they want to save,
6409 * or abort the logout
6411 /*ARGSUSED*/
6412 static void
6413 xsmp_handle_interaction(smc_conn, client_data)
6414 SmcConn smc_conn;
6415 SmPointer client_data;
6417 cmdmod_T save_cmdmod;
6418 int cancel_shutdown = False;
6420 save_cmdmod = cmdmod;
6421 cmdmod.confirm = TRUE;
6422 if (check_changed_any(FALSE))
6423 /* Mustn't logout */
6424 cancel_shutdown = True;
6425 cmdmod = save_cmdmod;
6426 setcursor(); /* position cursor */
6427 out_flush();
6429 /* Done interaction */
6430 SmcInteractDone(smc_conn, cancel_shutdown);
6432 /* Finish off
6433 * Only end save-yourself here if we're not cancelling shutdown;
6434 * we'll get a cancelled callback later in which we'll end it.
6435 * Hopefully get around glitchy SMs (like GNOME-1)
6437 if (!cancel_shutdown)
6439 xsmp.save_yourself = False;
6440 SmcSaveYourselfDone(smc_conn, True);
6443 # endif
6446 * Callback that starts save-yourself.
6448 /*ARGSUSED*/
6449 static void
6450 xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6451 shutdown, interact_style, fast)
6452 SmcConn smc_conn;
6453 SmPointer client_data;
6454 int save_type;
6455 Bool shutdown;
6456 int interact_style;
6457 Bool fast;
6459 /* Handle already being in saveyourself */
6460 if (xsmp.save_yourself)
6461 SmcSaveYourselfDone(smc_conn, True);
6462 xsmp.save_yourself = True;
6463 xsmp.shutdown = shutdown;
6465 /* First up, preserve all files */
6466 out_flush();
6467 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6469 if (p_verbose > 0)
6470 verb_msg((char_u *)_("XSMP handling save-yourself request"));
6472 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6473 /* Now see if we can ask about unsaved files */
6474 if (shutdown && !fast && gui.in_use)
6475 /* Need to interact with user, but need SM's permission */
6476 SmcInteractRequest(smc_conn, SmDialogError,
6477 xsmp_handle_interaction, client_data);
6478 else
6479 # endif
6481 /* Can stop the cycle here */
6482 SmcSaveYourselfDone(smc_conn, True);
6483 xsmp.save_yourself = False;
6489 * Callback to warn us of imminent death.
6491 /*ARGSUSED*/
6492 static void
6493 xsmp_die(smc_conn, client_data)
6494 SmcConn smc_conn;
6495 SmPointer client_data;
6497 xsmp_close();
6499 /* quit quickly leaving swapfiles for modified buffers behind */
6500 getout_preserve_modified(0);
6505 * Callback to tell us that save-yourself has completed.
6507 /*ARGSUSED*/
6508 static void
6509 xsmp_save_complete(smc_conn, client_data)
6510 SmcConn smc_conn;
6511 SmPointer client_data;
6513 xsmp.save_yourself = False;
6518 * Callback to tell us that an instigated shutdown was cancelled
6519 * (maybe even by us)
6521 /*ARGSUSED*/
6522 static void
6523 xsmp_shutdown_cancelled(smc_conn, client_data)
6524 SmcConn smc_conn;
6525 SmPointer client_data;
6527 if (xsmp.save_yourself)
6528 SmcSaveYourselfDone(smc_conn, True);
6529 xsmp.save_yourself = False;
6530 xsmp.shutdown = False;
6535 * Callback to tell us that a new ICE connection has been established.
6537 /*ARGSUSED*/
6538 static void
6539 xsmp_ice_connection(iceConn, clientData, opening, watchData)
6540 IceConn iceConn;
6541 IcePointer clientData;
6542 Bool opening;
6543 IcePointer *watchData;
6545 /* Intercept creation of ICE connection fd */
6546 if (opening)
6548 xsmp_icefd = IceConnectionNumber(iceConn);
6549 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6554 /* Handle any ICE processing that's required; return FAIL if SM lost */
6556 xsmp_handle_requests()
6558 Bool rep;
6560 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6561 == IceProcessMessagesIOError)
6563 /* Lost ICE */
6564 if (p_verbose > 0)
6565 verb_msg((char_u *)_("XSMP lost ICE connection"));
6566 xsmp_close();
6567 return FAIL;
6569 else
6570 return OK;
6573 static int dummy;
6575 /* Set up X Session Management Protocol */
6576 void
6577 xsmp_init(void)
6579 char errorstring[80];
6580 SmcCallbacks smcallbacks;
6581 #if 0
6582 SmPropValue smname;
6583 SmProp smnameprop;
6584 SmProp *smprops[1];
6585 #endif
6587 if (p_verbose > 0)
6588 verb_msg((char_u *)_("XSMP opening connection"));
6590 xsmp.save_yourself = xsmp.shutdown = False;
6592 /* Set up SM callbacks - must have all, even if they're not used */
6593 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6594 smcallbacks.save_yourself.client_data = NULL;
6595 smcallbacks.die.callback = xsmp_die;
6596 smcallbacks.die.client_data = NULL;
6597 smcallbacks.save_complete.callback = xsmp_save_complete;
6598 smcallbacks.save_complete.client_data = NULL;
6599 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6600 smcallbacks.shutdown_cancelled.client_data = NULL;
6602 /* Set up a watch on ICE connection creations. The "dummy" argument is
6603 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6604 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6606 if (p_verbose > 0)
6607 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
6608 return;
6611 /* Create an SM connection */
6612 xsmp.smcconn = SmcOpenConnection(
6613 NULL,
6614 NULL,
6615 SmProtoMajor,
6616 SmProtoMinor,
6617 SmcSaveYourselfProcMask | SmcDieProcMask
6618 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6619 &smcallbacks,
6620 NULL,
6621 &xsmp.clientid,
6622 sizeof(errorstring),
6623 errorstring);
6624 if (xsmp.smcconn == NULL)
6626 char errorreport[132];
6628 if (p_verbose > 0)
6630 vim_snprintf(errorreport, sizeof(errorreport),
6631 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6632 verb_msg((char_u *)errorreport);
6634 return;
6636 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6638 #if 0
6639 /* ID ourselves */
6640 smname.value = "vim";
6641 smname.length = 3;
6642 smnameprop.name = "SmProgram";
6643 smnameprop.type = "SmARRAY8";
6644 smnameprop.num_vals = 1;
6645 smnameprop.vals = &smname;
6647 smprops[0] = &smnameprop;
6648 SmcSetProperties(xsmp.smcconn, 1, smprops);
6649 #endif
6653 /* Shut down XSMP comms. */
6654 void
6655 xsmp_close()
6657 if (xsmp_icefd != -1)
6659 SmcCloseConnection(xsmp.smcconn, 0, NULL);
6660 vim_free(xsmp.clientid);
6661 xsmp.clientid = NULL;
6662 xsmp_icefd = -1;
6665 #endif /* USE_XSMP */
6668 #ifdef EBCDIC
6669 /* Translate character to its CTRL- value */
6670 char CtrlTable[] =
6672 /* 00 - 5E */
6673 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6674 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6675 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6676 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6677 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6678 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6679 /* ^ */ 0x1E,
6680 /* - */ 0x1F,
6681 /* 61 - 6C */
6682 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6683 /* _ */ 0x1F,
6684 /* 6E - 80 */
6685 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6686 /* a */ 0x01,
6687 /* b */ 0x02,
6688 /* c */ 0x03,
6689 /* d */ 0x37,
6690 /* e */ 0x2D,
6691 /* f */ 0x2E,
6692 /* g */ 0x2F,
6693 /* h */ 0x16,
6694 /* i */ 0x05,
6695 /* 8A - 90 */
6696 0, 0, 0, 0, 0, 0, 0,
6697 /* j */ 0x15,
6698 /* k */ 0x0B,
6699 /* l */ 0x0C,
6700 /* m */ 0x0D,
6701 /* n */ 0x0E,
6702 /* o */ 0x0F,
6703 /* p */ 0x10,
6704 /* q */ 0x11,
6705 /* r */ 0x12,
6706 /* 9A - A1 */
6707 0, 0, 0, 0, 0, 0, 0, 0,
6708 /* s */ 0x13,
6709 /* t */ 0x3C,
6710 /* u */ 0x3D,
6711 /* v */ 0x32,
6712 /* w */ 0x26,
6713 /* x */ 0x18,
6714 /* y */ 0x19,
6715 /* z */ 0x3F,
6716 /* AA - AC */
6717 0, 0, 0,
6718 /* [ */ 0x27,
6719 /* AE - BC */
6720 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6721 /* ] */ 0x1D,
6722 /* BE - C0 */ 0, 0, 0,
6723 /* A */ 0x01,
6724 /* B */ 0x02,
6725 /* C */ 0x03,
6726 /* D */ 0x37,
6727 /* E */ 0x2D,
6728 /* F */ 0x2E,
6729 /* G */ 0x2F,
6730 /* H */ 0x16,
6731 /* I */ 0x05,
6732 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6733 /* J */ 0x15,
6734 /* K */ 0x0B,
6735 /* L */ 0x0C,
6736 /* M */ 0x0D,
6737 /* N */ 0x0E,
6738 /* O */ 0x0F,
6739 /* P */ 0x10,
6740 /* Q */ 0x11,
6741 /* R */ 0x12,
6742 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6743 /* \ */ 0x1C,
6744 /* E1 */ 0,
6745 /* S */ 0x13,
6746 /* T */ 0x3C,
6747 /* U */ 0x3D,
6748 /* V */ 0x32,
6749 /* W */ 0x26,
6750 /* X */ 0x18,
6751 /* Y */ 0x19,
6752 /* Z */ 0x3F,
6753 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6754 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6757 char MetaCharTable[]=
6758 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6759 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6760 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6761 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6762 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6766 /* TODO: Use characters NOT numbers!!! */
6767 char CtrlCharTable[]=
6768 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6769 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6770 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6771 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6772 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6776 #endif