Merge branch 'vim'
[MacVim.git] / src / os_unix.c
blob89f63d8d14959ce5bb749cb3380ffd39bdee3e80
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;
2284 #ifdef VMS
2285 fname = vms_fixfilename(fname);
2286 #endif
2288 #ifdef __CYGWIN__
2290 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2292 cygwin_conv_to_posix_path(fname, fname);
2293 #endif
2295 /* expand it if forced or not an absolute path */
2296 if (force || !mch_isFullName(fname))
2299 * If the file name has a path, change to that directory for a moment,
2300 * and then do the getwd() (and get back to where we were).
2301 * This will get the correct path name with "../" things.
2303 #ifdef OS2
2304 only_drive = 0;
2305 if (((p = vim_strrchr(fname, '/')) != NULL)
2306 || ((p = vim_strrchr(fname, '\\')) != NULL)
2307 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
2308 #else
2309 if ((p = vim_strrchr(fname, '/')) != NULL)
2310 #endif
2312 #ifdef HAVE_FCHDIR
2314 * Use fchdir() if possible, it's said to be faster and more
2315 * reliable. But on SunOS 4 it might not work. Check this by
2316 * doing a fchdir() right now.
2318 if (!dont_fchdir)
2320 fd = open(".", O_RDONLY | O_EXTRA, 0);
2321 if (fd >= 0 && fchdir(fd) < 0)
2323 close(fd);
2324 fd = -1;
2325 dont_fchdir = TRUE; /* don't try again */
2328 #endif
2330 /* Only change directory when we are sure we can return to where
2331 * we are now. After doing "su" chdir(".") might not work. */
2332 if (
2333 #ifdef HAVE_FCHDIR
2334 fd < 0 &&
2335 #endif
2336 (mch_dirname(olddir, MAXPATHL) == FAIL
2337 || mch_chdir((char *)olddir) != 0))
2339 p = NULL; /* can't get current dir: don't chdir */
2340 retval = FAIL;
2342 else
2344 #ifdef OS2
2346 * compensate for case where ':' from "D:" was the only
2347 * path separator detected in the file name; the _next_
2348 * character has to be removed, and then restored later.
2350 if (only_drive)
2351 p++;
2352 #endif
2353 /* The directory is copied into buf[], to be able to remove
2354 * the file name without changing it (could be a string in
2355 * read-only memory) */
2356 if (p - fname >= len)
2357 retval = FAIL;
2358 else
2360 vim_strncpy(buf, fname, p - fname);
2361 if (mch_chdir((char *)buf))
2362 retval = FAIL;
2363 else
2364 fname = p + 1;
2365 *buf = NUL;
2367 #ifdef OS2
2368 if (only_drive)
2370 p--;
2371 if (retval != FAIL)
2372 fname--;
2374 #endif
2377 if (mch_dirname(buf, len) == FAIL)
2379 retval = FAIL;
2380 *buf = NUL;
2382 if (p != NULL)
2384 #ifdef HAVE_FCHDIR
2385 if (fd >= 0)
2387 l = fchdir(fd);
2388 close(fd);
2390 else
2391 #endif
2392 l = mch_chdir((char *)olddir);
2393 if (l != 0)
2394 EMSG(_(e_prev_dir));
2397 l = STRLEN(buf);
2398 if (l >= len)
2399 retval = FAIL;
2400 #ifndef VMS
2401 else
2403 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2404 && STRCMP(fname, ".") != 0)
2405 STRCAT(buf, "/");
2407 #endif
2410 /* Catch file names which are too long. */
2411 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2412 return FAIL;
2414 /* Do not append ".", "/dir/." is equal to "/dir". */
2415 if (STRCMP(fname, ".") != 0)
2416 STRCAT(buf, fname);
2418 return OK;
2422 * Return TRUE if "fname" does not depend on the current directory.
2425 mch_isFullName(fname)
2426 char_u *fname;
2428 #ifdef __EMX__
2429 return _fnisabs(fname);
2430 #else
2431 # ifdef VMS
2432 return ( fname[0] == '/' || fname[0] == '.' ||
2433 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2434 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2435 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2436 # else
2437 return (*fname == '/' || *fname == '~');
2438 # endif
2439 #endif
2442 #if defined(USE_FNAME_CASE) || defined(PROTO)
2444 * Set the case of the file name, if it already exists. This will cause the
2445 * file name to remain exactly the same.
2446 * Only required for file systems where case is ignored and preserved.
2448 /*ARGSUSED*/
2449 void
2450 fname_case(name, len)
2451 char_u *name;
2452 int len; /* buffer size, only used when name gets longer */
2454 struct stat st;
2455 char_u *slash, *tail;
2456 DIR *dirp;
2457 struct dirent *dp;
2459 if (lstat((char *)name, &st) >= 0)
2461 /* Open the directory where the file is located. */
2462 slash = vim_strrchr(name, '/');
2463 if (slash == NULL)
2465 dirp = opendir(".");
2466 tail = name;
2468 else
2470 *slash = NUL;
2471 dirp = opendir((char *)name);
2472 *slash = '/';
2473 tail = slash + 1;
2476 if (dirp != NULL)
2478 while ((dp = readdir(dirp)) != NULL)
2480 /* Only accept names that differ in case and are the same byte
2481 * length. TODO: accept different length name. */
2482 if (STRICMP(tail, dp->d_name) == 0
2483 && STRLEN(tail) == STRLEN(dp->d_name))
2485 char_u newname[MAXPATHL + 1];
2486 struct stat st2;
2488 /* Verify the inode is equal. */
2489 vim_strncpy(newname, name, MAXPATHL);
2490 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2491 MAXPATHL - (tail - name));
2492 if (lstat((char *)newname, &st2) >= 0
2493 && st.st_ino == st2.st_ino
2494 && st.st_dev == st2.st_dev)
2496 STRCPY(tail, dp->d_name);
2497 break;
2502 closedir(dirp);
2506 #endif
2509 * Get file permissions for 'name'.
2510 * Returns -1 when it doesn't exist.
2512 long
2513 mch_getperm(name)
2514 char_u *name;
2516 struct stat statb;
2518 /* Keep the #ifdef outside of stat(), it may be a macro. */
2519 #ifdef VMS
2520 if (stat((char *)vms_fixfilename(name), &statb))
2521 #else
2522 if (stat((char *)name, &statb))
2523 #endif
2524 return -1;
2525 #ifdef __INTERIX
2526 /* The top bit makes the value negative, which means the file doesn't
2527 * exist. Remove the bit, we don't use it. */
2528 return statb.st_mode & ~S_ADDACE;
2529 #else
2530 return statb.st_mode;
2531 #endif
2535 * set file permission for 'name' to 'perm'
2537 * return FAIL for failure, OK otherwise
2540 mch_setperm(name, perm)
2541 char_u *name;
2542 long perm;
2544 return (chmod((char *)
2545 #ifdef VMS
2546 vms_fixfilename(name),
2547 #else
2548 name,
2549 #endif
2550 (mode_t)perm) == 0 ? OK : FAIL);
2553 #if defined(HAVE_ACL) || defined(PROTO)
2554 # ifdef HAVE_SYS_ACL_H
2555 # include <sys/acl.h>
2556 # endif
2557 # ifdef HAVE_SYS_ACCESS_H
2558 # include <sys/access.h>
2559 # endif
2561 # ifdef HAVE_SOLARIS_ACL
2562 typedef struct vim_acl_solaris_T {
2563 int acl_cnt;
2564 aclent_t *acl_entry;
2565 } vim_acl_solaris_T;
2566 # endif
2568 #if defined(HAVE_SELINUX) || defined(PROTO)
2570 * Copy security info from "from_file" to "to_file".
2572 void
2573 mch_copy_sec(from_file, to_file)
2574 char_u *from_file;
2575 char_u *to_file;
2577 if (from_file == NULL)
2578 return;
2580 if (selinux_enabled == -1)
2581 selinux_enabled = is_selinux_enabled();
2583 if (selinux_enabled > 0)
2585 security_context_t from_context = NULL;
2586 security_context_t to_context = NULL;
2588 if (getfilecon((char *)from_file, &from_context) < 0)
2590 /* If the filesystem doesn't support extended attributes,
2591 the original had no special security context and the
2592 target cannot have one either. */
2593 if (errno == EOPNOTSUPP)
2594 return;
2596 MSG_PUTS(_("\nCould not get security context for "));
2597 msg_outtrans(from_file);
2598 msg_putchar('\n');
2599 return;
2601 if (getfilecon((char *)to_file, &to_context) < 0)
2603 MSG_PUTS(_("\nCould not get security context for "));
2604 msg_outtrans(to_file);
2605 msg_putchar('\n');
2606 freecon (from_context);
2607 return ;
2609 if (strcmp(from_context, to_context) != 0)
2611 if (setfilecon((char *)to_file, from_context) < 0)
2613 MSG_PUTS(_("\nCould not set security context for "));
2614 msg_outtrans(to_file);
2615 msg_putchar('\n');
2618 freecon(to_context);
2619 freecon(from_context);
2622 #endif /* HAVE_SELINUX */
2625 * Return a pointer to the ACL of file "fname" in allocated memory.
2626 * Return NULL if the ACL is not available for whatever reason.
2628 vim_acl_T
2629 mch_get_acl(fname)
2630 char_u *fname;
2632 vim_acl_T ret = NULL;
2633 #ifdef HAVE_POSIX_ACL
2634 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2635 #else
2636 #ifdef HAVE_SOLARIS_ACL
2637 vim_acl_solaris_T *aclent;
2639 aclent = malloc(sizeof(vim_acl_solaris_T));
2640 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2642 free(aclent);
2643 return NULL;
2645 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2646 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2648 free(aclent->acl_entry);
2649 free(aclent);
2650 return NULL;
2652 ret = (vim_acl_T)aclent;
2653 #else
2654 #if defined(HAVE_AIX_ACL)
2655 int aclsize;
2656 struct acl *aclent;
2658 aclsize = sizeof(struct acl);
2659 aclent = malloc(aclsize);
2660 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2662 if (errno == ENOSPC)
2664 aclsize = aclent->acl_len;
2665 aclent = realloc(aclent, aclsize);
2666 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2668 free(aclent);
2669 return NULL;
2672 else
2674 free(aclent);
2675 return NULL;
2678 ret = (vim_acl_T)aclent;
2679 #endif /* HAVE_AIX_ACL */
2680 #endif /* HAVE_SOLARIS_ACL */
2681 #endif /* HAVE_POSIX_ACL */
2682 return ret;
2686 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2688 void
2689 mch_set_acl(fname, aclent)
2690 char_u *fname;
2691 vim_acl_T aclent;
2693 if (aclent == NULL)
2694 return;
2695 #ifdef HAVE_POSIX_ACL
2696 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2697 #else
2698 #ifdef HAVE_SOLARIS_ACL
2699 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2700 ((vim_acl_solaris_T *)aclent)->acl_entry);
2701 #else
2702 #ifdef HAVE_AIX_ACL
2703 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2704 #endif /* HAVE_AIX_ACL */
2705 #endif /* HAVE_SOLARIS_ACL */
2706 #endif /* HAVE_POSIX_ACL */
2709 void
2710 mch_free_acl(aclent)
2711 vim_acl_T aclent;
2713 if (aclent == NULL)
2714 return;
2715 #ifdef HAVE_POSIX_ACL
2716 acl_free((acl_t)aclent);
2717 #else
2718 #ifdef HAVE_SOLARIS_ACL
2719 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2720 free(aclent);
2721 #else
2722 #ifdef HAVE_AIX_ACL
2723 free(aclent);
2724 #endif /* HAVE_AIX_ACL */
2725 #endif /* HAVE_SOLARIS_ACL */
2726 #endif /* HAVE_POSIX_ACL */
2728 #endif
2731 * Set hidden flag for "name".
2733 /* ARGSUSED */
2734 void
2735 mch_hide(name)
2736 char_u *name;
2738 /* can't hide a file */
2742 * return TRUE if "name" is a directory
2743 * return FALSE if "name" is not a directory
2744 * return FALSE for error
2747 mch_isdir(name)
2748 char_u *name;
2750 struct stat statb;
2752 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2753 return FALSE;
2754 if (stat((char *)name, &statb))
2755 return FALSE;
2756 #ifdef _POSIX_SOURCE
2757 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2758 #else
2759 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2760 #endif
2763 static int executable_file __ARGS((char_u *name));
2766 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2768 static int
2769 executable_file(name)
2770 char_u *name;
2772 struct stat st;
2774 if (stat((char *)name, &st))
2775 return 0;
2776 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2780 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2781 * Return -1 if unknown.
2784 mch_can_exe(name)
2785 char_u *name;
2787 char_u *buf;
2788 char_u *p, *e;
2789 int retval;
2791 /* If it's an absolute or relative path don't need to use $PATH. */
2792 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2793 || (name[1] == '.' && name[2] == '/'))))
2794 return executable_file(name);
2796 p = (char_u *)getenv("PATH");
2797 if (p == NULL || *p == NUL)
2798 return -1;
2799 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2800 if (buf == NULL)
2801 return -1;
2804 * Walk through all entries in $PATH to check if "name" exists there and
2805 * is an executable file.
2807 for (;;)
2809 e = (char_u *)strchr((char *)p, ':');
2810 if (e == NULL)
2811 e = p + STRLEN(p);
2812 if (e - p <= 1) /* empty entry means current dir */
2813 STRCPY(buf, "./");
2814 else
2816 vim_strncpy(buf, p, e - p);
2817 add_pathsep(buf);
2819 STRCAT(buf, name);
2820 retval = executable_file(buf);
2821 if (retval == 1)
2822 break;
2824 if (*e != ':')
2825 break;
2826 p = e + 1;
2829 vim_free(buf);
2830 return retval;
2834 * Check what "name" is:
2835 * NODE_NORMAL: file or directory (or doesn't exist)
2836 * NODE_WRITABLE: writable device, socket, fifo, etc.
2837 * NODE_OTHER: non-writable things
2840 mch_nodetype(name)
2841 char_u *name;
2843 struct stat st;
2845 if (stat((char *)name, &st))
2846 return NODE_NORMAL;
2847 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2848 return NODE_NORMAL;
2849 #ifndef OS2
2850 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2851 return NODE_OTHER;
2852 #endif
2853 /* Everything else is writable? */
2854 return NODE_WRITABLE;
2857 void
2858 mch_early_init()
2860 #ifdef HAVE_CHECK_STACK_GROWTH
2861 int i;
2863 check_stack_growth((char *)&i);
2865 # ifdef HAVE_STACK_LIMIT
2866 get_stack_limit();
2867 # endif
2869 #endif
2872 * Setup an alternative stack for signals. Helps to catch signals when
2873 * running out of stack space.
2874 * Use of sigaltstack() is preferred, it's more portable.
2875 * Ignore any errors.
2877 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2878 signal_stack = malloc(SIGSTKSZ);
2879 init_signal_stack();
2880 #endif
2883 #if defined(EXITFREE) || defined(PROTO)
2884 void
2885 mch_free_mem()
2887 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2888 if (clip_star.owned)
2889 clip_lose_selection(&clip_star);
2890 if (clip_plus.owned)
2891 clip_lose_selection(&clip_plus);
2892 # endif
2893 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2894 if (xterm_Shell != (Widget)0)
2895 XtDestroyWidget(xterm_Shell);
2896 # ifndef LESSTIF_VERSION
2897 /* Lesstif crashes here, lose some memory */
2898 if (xterm_dpy != NULL)
2899 XtCloseDisplay(xterm_dpy);
2900 if (app_context != (XtAppContext)NULL)
2902 XtDestroyApplicationContext(app_context);
2903 # ifdef FEAT_X11
2904 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2905 # endif
2907 # endif
2908 # endif
2909 # ifdef FEAT_X11
2910 if (x11_display != NULL
2911 # ifdef FEAT_XCLIPBOARD
2912 && x11_display != xterm_dpy
2913 # endif
2915 XCloseDisplay(x11_display);
2916 # endif
2917 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2918 vim_free(signal_stack);
2919 signal_stack = NULL;
2920 # endif
2921 # ifdef FEAT_TITLE
2922 vim_free(oldtitle);
2923 vim_free(oldicon);
2924 # endif
2926 #endif
2928 static void exit_scroll __ARGS((void));
2931 * Output a newline when exiting.
2932 * Make sure the newline goes to the same stream as the text.
2934 static void
2935 exit_scroll()
2937 if (silent_mode)
2938 return;
2939 if (newline_on_exit || msg_didout)
2941 if (msg_use_printf())
2943 if (info_message)
2944 mch_msg("\n");
2945 else
2946 mch_errmsg("\r\n");
2948 else
2949 out_char('\n');
2951 else
2953 restore_cterm_colors(); /* get original colors back */
2954 msg_clr_eos_force(); /* clear the rest of the display */
2955 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2959 void
2960 mch_exit(r)
2961 int r;
2963 exiting = TRUE;
2965 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
2966 x11_export_final_selection();
2967 #endif
2969 #ifdef FEAT_GUI
2970 if (!gui.in_use)
2971 #endif
2973 settmode(TMODE_COOK);
2974 #ifdef FEAT_TITLE
2975 mch_restore_title(3); /* restore xterm title and icon name */
2976 #endif
2978 * When t_ti is not empty but it doesn't cause swapping terminal
2979 * pages, need to output a newline when msg_didout is set. But when
2980 * t_ti does swap pages it should not go to the shell page. Do this
2981 * before stoptermcap().
2983 if (swapping_screen() && !newline_on_exit)
2984 exit_scroll();
2986 /* Stop termcap: May need to check for T_CRV response, which
2987 * requires RAW mode. */
2988 stoptermcap();
2991 * A newline is only required after a message in the alternate screen.
2992 * This is set to TRUE by wait_return().
2994 if (!swapping_screen() || newline_on_exit)
2995 exit_scroll();
2997 /* Cursor may have been switched off without calling starttermcap()
2998 * when doing "vim -u vimrc" and vimrc contains ":q". */
2999 if (full_screen)
3000 cursor_on();
3002 out_flush();
3003 ml_close_all(TRUE); /* remove all memfiles */
3004 may_core_dump();
3005 #ifdef FEAT_GUI
3006 if (gui.in_use)
3007 gui_exit(r);
3008 #endif
3010 #ifdef MACOS_CONVERT
3011 mac_conv_cleanup();
3012 #endif
3014 #ifdef __QNX__
3015 /* A core dump won't be created if the signal handler
3016 * doesn't return, so we can't call exit() */
3017 if (deadly_signal != 0)
3018 return;
3019 #endif
3021 #ifdef FEAT_NETBEANS_INTG
3022 if (usingNetbeans)
3023 netbeans_send_disconnect();
3024 #endif
3026 #ifdef EXITFREE
3027 free_all_mem();
3028 #endif
3030 exit(r);
3033 static void
3034 may_core_dump()
3036 if (deadly_signal != 0)
3038 signal(deadly_signal, SIG_DFL);
3039 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3043 #ifndef VMS
3045 void
3046 mch_settmode(tmode)
3047 int tmode;
3049 static int first = TRUE;
3051 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3052 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3054 * for "new" tty systems
3056 # ifdef HAVE_TERMIOS_H
3057 static struct termios told;
3058 struct termios tnew;
3059 # else
3060 static struct termio told;
3061 struct termio tnew;
3062 # endif
3064 if (first)
3066 first = FALSE;
3067 # if defined(HAVE_TERMIOS_H)
3068 tcgetattr(read_cmd_fd, &told);
3069 # else
3070 ioctl(read_cmd_fd, TCGETA, &told);
3071 # endif
3074 tnew = told;
3075 if (tmode == TMODE_RAW)
3078 * ~ICRNL enables typing ^V^M
3080 tnew.c_iflag &= ~ICRNL;
3081 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3082 # if defined(IEXTEN) && !defined(__MINT__)
3083 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3084 /* but it breaks function keys on MINT */
3085 # endif
3087 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3088 tnew.c_oflag &= ~ONLCR;
3089 # endif
3090 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3091 tnew.c_cc[VTIME] = 0; /* don't wait */
3093 else if (tmode == TMODE_SLEEP)
3094 tnew.c_lflag &= ~(ECHO);
3096 # if defined(HAVE_TERMIOS_H)
3098 int n = 10;
3100 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3101 * few times. */
3102 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3103 && errno == EINTR && n > 0)
3104 --n;
3106 # else
3107 ioctl(read_cmd_fd, TCSETA, &tnew);
3108 # endif
3110 #else
3113 * for "old" tty systems
3115 # ifndef TIOCSETN
3116 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3117 # endif
3118 static struct sgttyb ttybold;
3119 struct sgttyb ttybnew;
3121 if (first)
3123 first = FALSE;
3124 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3127 ttybnew = ttybold;
3128 if (tmode == TMODE_RAW)
3130 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3131 ttybnew.sg_flags |= RAW;
3133 else if (tmode == TMODE_SLEEP)
3134 ttybnew.sg_flags &= ~(ECHO);
3135 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3136 #endif
3137 curr_tmode = tmode;
3141 * Try to get the code for "t_kb" from the stty setting
3143 * Even if termcap claims a backspace key, the user's setting *should*
3144 * prevail. stty knows more about reality than termcap does, and if
3145 * somebody's usual erase key is DEL (which, for most BSD users, it will
3146 * be), they're going to get really annoyed if their erase key starts
3147 * doing forward deletes for no reason. (Eric Fischer)
3149 void
3150 get_stty()
3152 char_u buf[2];
3153 char_u *p;
3155 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3156 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3157 /* for "new" tty systems */
3158 # ifdef HAVE_TERMIOS_H
3159 struct termios keys;
3160 # else
3161 struct termio keys;
3162 # endif
3164 # if defined(HAVE_TERMIOS_H)
3165 if (tcgetattr(read_cmd_fd, &keys) != -1)
3166 # else
3167 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3168 # endif
3170 buf[0] = keys.c_cc[VERASE];
3171 intr_char = keys.c_cc[VINTR];
3172 #else
3173 /* for "old" tty systems */
3174 struct sgttyb keys;
3176 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3178 buf[0] = keys.sg_erase;
3179 intr_char = keys.sg_kill;
3180 #endif
3181 buf[1] = NUL;
3182 add_termcode((char_u *)"kb", buf, FALSE);
3185 * If <BS> and <DEL> are now the same, redefine <DEL>.
3187 p = find_termcode((char_u *)"kD");
3188 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3189 do_fixdel(NULL);
3191 #if 0
3192 } /* to keep cindent happy */
3193 #endif
3196 #endif /* VMS */
3198 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3200 * Set mouse clicks on or off.
3202 void
3203 mch_setmouse(on)
3204 int on;
3206 static int ison = FALSE;
3207 int xterm_mouse_vers;
3209 if (on == ison) /* return quickly if nothing to do */
3210 return;
3212 xterm_mouse_vers = use_xterm_mouse();
3213 if (xterm_mouse_vers > 0)
3215 if (on) /* enable mouse events, use mouse tracking if available */
3216 out_str_nf((char_u *)
3217 (xterm_mouse_vers > 1
3218 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3219 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3220 else /* disable mouse events, could probably always send the same */
3221 out_str_nf((char_u *)
3222 (xterm_mouse_vers > 1
3223 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3224 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3225 ison = on;
3228 # ifdef FEAT_MOUSE_DEC
3229 else if (ttym_flags == TTYM_DEC)
3231 if (on) /* enable mouse events */
3232 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3233 else /* disable mouse events */
3234 out_str_nf((char_u *)"\033['z");
3235 ison = on;
3237 # endif
3239 # ifdef FEAT_MOUSE_GPM
3240 else
3242 if (on)
3244 if (gpm_open())
3245 ison = TRUE;
3247 else
3249 gpm_close();
3250 ison = FALSE;
3253 # endif
3255 # ifdef FEAT_MOUSE_JSB
3256 else
3258 if (on)
3260 /* D - Enable Mouse up/down messages
3261 * L - Enable Left Button Reporting
3262 * M - Enable Middle Button Reporting
3263 * R - Enable Right Button Reporting
3264 * K - Enable SHIFT and CTRL key Reporting
3265 * + - Enable Advanced messaging of mouse moves and up/down messages
3266 * Q - Quiet No Ack
3267 * # - Numeric value of mouse pointer required
3268 * 0 = Multiview 2000 cursor, used as standard
3269 * 1 = Windows Arrow
3270 * 2 = Windows I Beam
3271 * 3 = Windows Hour Glass
3272 * 4 = Windows Cross Hair
3273 * 5 = Windows UP Arrow
3275 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3276 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3277 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3278 #else
3279 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3280 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3281 #endif
3282 ison = TRUE;
3284 else
3286 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3287 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3288 ison = FALSE;
3291 # endif
3292 # ifdef FEAT_MOUSE_PTERM
3293 else
3295 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3296 if (on)
3297 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3298 else
3299 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3300 ison = on;
3302 # endif
3306 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3308 void
3309 check_mouse_termcode()
3311 # ifdef FEAT_MOUSE_XTERM
3312 if (use_xterm_mouse()
3313 # ifdef FEAT_GUI
3314 && !gui.in_use
3315 # endif
3318 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3319 ? IF_EB("\233M", CSI_STR "M")
3320 : IF_EB("\033[M", ESC_STR "[M")));
3321 if (*p_mouse != NUL)
3323 /* force mouse off and maybe on to send possibly new mouse
3324 * activation sequence to the xterm, with(out) drag tracing. */
3325 mch_setmouse(FALSE);
3326 setmouse();
3329 else
3330 del_mouse_termcode(KS_MOUSE);
3331 # endif
3333 # ifdef FEAT_MOUSE_GPM
3334 if (!use_xterm_mouse()
3335 # ifdef FEAT_GUI
3336 && !gui.in_use
3337 # endif
3339 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3340 # endif
3342 # ifdef FEAT_MOUSE_JSB
3343 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3344 if (!use_xterm_mouse()
3345 # ifdef FEAT_GUI
3346 && !gui.in_use
3347 # endif
3349 set_mouse_termcode(KS_JSBTERM_MOUSE,
3350 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3351 else
3352 del_mouse_termcode(KS_JSBTERM_MOUSE);
3353 # endif
3355 # ifdef FEAT_MOUSE_NET
3356 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3357 * define it in the GUI or when using an xterm. */
3358 if (!use_xterm_mouse()
3359 # ifdef FEAT_GUI
3360 && !gui.in_use
3361 # endif
3363 set_mouse_termcode(KS_NETTERM_MOUSE,
3364 (char_u *)IF_EB("\033}", ESC_STR "}"));
3365 else
3366 del_mouse_termcode(KS_NETTERM_MOUSE);
3367 # endif
3369 # ifdef FEAT_MOUSE_DEC
3370 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3371 if (!use_xterm_mouse()
3372 # ifdef FEAT_GUI
3373 && !gui.in_use
3374 # endif
3376 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3377 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
3378 else
3379 del_mouse_termcode(KS_DEC_MOUSE);
3380 # endif
3381 # ifdef FEAT_MOUSE_PTERM
3382 /* same as the dec mouse */
3383 if (!use_xterm_mouse()
3384 # ifdef FEAT_GUI
3385 && !gui.in_use
3386 # endif
3388 set_mouse_termcode(KS_PTERM_MOUSE,
3389 (char_u *) IF_EB("\033[", ESC_STR "["));
3390 else
3391 del_mouse_termcode(KS_PTERM_MOUSE);
3392 # endif
3394 #endif
3397 * set screen mode, always fails.
3399 /* ARGSUSED */
3401 mch_screenmode(arg)
3402 char_u *arg;
3404 EMSG(_(e_screenmode));
3405 return FAIL;
3408 #ifndef VMS
3411 * Try to get the current window size:
3412 * 1. with an ioctl(), most accurate method
3413 * 2. from the environment variables LINES and COLUMNS
3414 * 3. from the termcap
3415 * 4. keep using the old values
3416 * Return OK when size could be determined, FAIL otherwise.
3419 mch_get_shellsize()
3421 long rows = 0;
3422 long columns = 0;
3423 char_u *p;
3426 * For OS/2 use _scrsize().
3428 # ifdef __EMX__
3430 int s[2];
3432 _scrsize(s);
3433 columns = s[0];
3434 rows = s[1];
3436 # endif
3439 * 1. try using an ioctl. It is the most accurate method.
3441 * Try using TIOCGWINSZ first, some systems that have it also define
3442 * TIOCGSIZE but don't have a struct ttysize.
3444 # ifdef TIOCGWINSZ
3446 struct winsize ws;
3447 int fd = 1;
3449 /* When stdout is not a tty, use stdin for the ioctl(). */
3450 if (!isatty(fd) && isatty(read_cmd_fd))
3451 fd = read_cmd_fd;
3452 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3454 columns = ws.ws_col;
3455 rows = ws.ws_row;
3458 # else /* TIOCGWINSZ */
3459 # ifdef TIOCGSIZE
3461 struct ttysize ts;
3462 int fd = 1;
3464 /* When stdout is not a tty, use stdin for the ioctl(). */
3465 if (!isatty(fd) && isatty(read_cmd_fd))
3466 fd = read_cmd_fd;
3467 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3469 columns = ts.ts_cols;
3470 rows = ts.ts_lines;
3473 # endif /* TIOCGSIZE */
3474 # endif /* TIOCGWINSZ */
3477 * 2. get size from environment
3478 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3479 * the ioctl() values!
3481 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
3483 if ((p = (char_u *)getenv("LINES")))
3484 rows = atoi((char *)p);
3485 if ((p = (char_u *)getenv("COLUMNS")))
3486 columns = atoi((char *)p);
3489 #ifdef HAVE_TGETENT
3491 * 3. try reading "co" and "li" entries from termcap
3493 if (columns == 0 || rows == 0)
3494 getlinecol(&columns, &rows);
3495 #endif
3498 * 4. If everything fails, use the old values
3500 if (columns <= 0 || rows <= 0)
3501 return FAIL;
3503 Rows = rows;
3504 Columns = columns;
3505 return OK;
3509 * Try to set the window size to Rows and Columns.
3511 void
3512 mch_set_shellsize()
3514 if (*T_CWS)
3517 * NOTE: if you get an error here that term_set_winsize() is
3518 * undefined, check the output of configure. It could probably not
3519 * find a ncurses, termcap or termlib library.
3521 term_set_winsize((int)Rows, (int)Columns);
3522 out_flush();
3523 screen_start(); /* don't know where cursor is now */
3527 #endif /* VMS */
3530 * Rows and/or Columns has changed.
3532 void
3533 mch_new_shellsize()
3535 /* Nothing to do. */
3538 #ifndef USE_SYSTEM
3539 static void append_ga_line __ARGS((garray_T *gap));
3542 * Append the text in "gap" below the cursor line and clear "gap".
3544 static void
3545 append_ga_line(gap)
3546 garray_T *gap;
3548 /* Remove trailing CR. */
3549 if (gap->ga_len > 0
3550 && !curbuf->b_p_bin
3551 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3552 --gap->ga_len;
3553 ga_append(gap, NUL);
3554 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3555 gap->ga_len = 0;
3557 #endif
3560 mch_call_shell(cmd, options)
3561 char_u *cmd;
3562 int options; /* SHELL_*, see vim.h */
3564 #ifdef VMS
3565 char *ifn = NULL;
3566 char *ofn = NULL;
3567 #endif
3568 int tmode = cur_tmode;
3569 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3570 int x;
3571 # ifndef __EMX__
3572 char_u *newcmd; /* only needed for unix */
3573 # else
3575 * Set the preferred shell in the EMXSHELL environment variable (but
3576 * only if it is different from what is already in the environment).
3577 * Emx then takes care of whether to use "/c" or "-c" in an
3578 * intelligent way. Simply pass the whole thing to emx's system() call.
3579 * Emx also starts an interactive shell if system() is passed an empty
3580 * string.
3582 char_u *p, *old;
3584 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3586 /* should check HAVE_SETENV, but I know we don't have it. */
3587 p = alloc(10 + strlen(p_sh));
3588 if (p)
3590 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3591 putenv((char *)p); /* don't free the pointer! */
3594 # endif
3596 out_flush();
3598 if (options & SHELL_COOKED)
3599 settmode(TMODE_COOK); /* set to normal mode */
3601 # ifdef __EMX__
3602 if (cmd == NULL)
3603 x = system(""); /* this starts an interactive shell in emx */
3604 else
3605 x = system((char *)cmd);
3606 /* system() returns -1 when error occurs in starting shell */
3607 if (x == -1 && !emsg_silent)
3609 MSG_PUTS(_("\nCannot execute shell "));
3610 msg_outtrans(p_sh);
3611 msg_putchar('\n');
3613 # else /* not __EMX__ */
3614 if (cmd == NULL)
3615 x = system((char *)p_sh);
3616 else
3618 # ifdef VMS
3619 if (ofn = strchr((char *)cmd, '>'))
3620 *ofn++ = '\0';
3621 if (ifn = strchr((char *)cmd, '<'))
3623 char *p;
3625 *ifn++ = '\0';
3626 p = strchr(ifn,' '); /* chop off any trailing spaces */
3627 if (p)
3628 *p = '\0';
3630 if (ofn)
3631 x = vms_sys((char *)cmd, ofn, ifn);
3632 else
3633 x = system((char *)cmd);
3634 # else
3635 newcmd = lalloc(STRLEN(p_sh)
3636 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3637 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3638 if (newcmd == NULL)
3639 x = 0;
3640 else
3642 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3643 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3644 (char *)p_shcf,
3645 (char *)cmd);
3646 x = system((char *)newcmd);
3647 vim_free(newcmd);
3649 # endif
3651 # ifdef VMS
3652 x = vms_sys_status(x);
3653 # endif
3654 if (emsg_silent)
3656 else if (x == 127)
3657 MSG_PUTS(_("\nCannot execute shell sh\n"));
3658 # endif /* __EMX__ */
3659 else if (x && !(options & SHELL_SILENT))
3661 MSG_PUTS(_("\nshell returned "));
3662 msg_outnum((long)x);
3663 msg_putchar('\n');
3666 if (tmode == TMODE_RAW)
3667 settmode(TMODE_RAW); /* set to raw mode */
3668 # ifdef FEAT_TITLE
3669 resettitle();
3670 # endif
3671 return x;
3673 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3675 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3676 127, some shells use that already */
3678 char_u *newcmd = NULL;
3679 pid_t pid;
3680 pid_t wpid = 0;
3681 pid_t wait_pid = 0;
3682 # ifdef HAVE_UNION_WAIT
3683 union wait status;
3684 # else
3685 int status = -1;
3686 # endif
3687 int retval = -1;
3688 char **argv = NULL;
3689 int argc;
3690 int i;
3691 char_u *p;
3692 int inquote;
3693 int pty_master_fd = -1; /* for pty's */
3694 # ifdef FEAT_GUI
3695 int pty_slave_fd = -1;
3696 char *tty_name;
3697 # endif
3698 int fd_toshell[2]; /* for pipes */
3699 int fd_fromshell[2];
3700 int pipe_error = FALSE;
3701 # ifdef HAVE_SETENV
3702 char envbuf[50];
3703 # else
3704 static char envbuf_Rows[20];
3705 static char envbuf_Columns[20];
3706 # endif
3707 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
3709 out_flush();
3710 if (options & SHELL_COOKED)
3711 settmode(TMODE_COOK); /* set to normal mode */
3713 newcmd = vim_strsave(p_sh);
3714 if (newcmd == NULL) /* out of memory */
3715 goto error;
3718 * Do this loop twice:
3719 * 1: find number of arguments
3720 * 2: separate them and build argv[]
3722 for (i = 0; i < 2; ++i)
3724 p = newcmd;
3725 inquote = FALSE;
3726 argc = 0;
3727 for (;;)
3729 if (i == 1)
3730 argv[argc] = (char *)p;
3731 ++argc;
3732 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3734 if (*p == '"')
3735 inquote = !inquote;
3736 ++p;
3738 if (*p == NUL)
3739 break;
3740 if (i == 1)
3741 *p++ = NUL;
3742 p = skipwhite(p);
3744 if (argv == NULL)
3746 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3747 if (argv == NULL) /* out of memory */
3748 goto error;
3751 if (cmd != NULL)
3753 if (extra_shell_arg != NULL)
3754 argv[argc++] = (char *)extra_shell_arg;
3755 argv[argc++] = (char *)p_shcf;
3756 argv[argc++] = (char *)cmd;
3758 argv[argc] = NULL;
3761 * For the GUI, when writing the output into the buffer and when reading
3762 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3763 * of the executed command into the Vim window. Or use a pipe.
3765 if ((options & (SHELL_READ|SHELL_WRITE))
3766 # ifdef FEAT_GUI
3767 || (gui.in_use && show_shell_mess)
3768 # endif
3771 # ifdef FEAT_GUI
3773 * Try to open a master pty.
3774 * If this works, open the slave pty.
3775 * If the slave can't be opened, close the master pty.
3777 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
3779 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3780 if (pty_master_fd >= 0 && ((pty_slave_fd =
3781 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3783 close(pty_master_fd);
3784 pty_master_fd = -1;
3788 * If not opening a pty or it didn't work, try using pipes.
3790 if (pty_master_fd < 0)
3791 # endif
3793 pipe_error = (pipe(fd_toshell) < 0);
3794 if (!pipe_error) /* pipe create OK */
3796 pipe_error = (pipe(fd_fromshell) < 0);
3797 if (pipe_error) /* pipe create failed */
3799 close(fd_toshell[0]);
3800 close(fd_toshell[1]);
3803 if (pipe_error)
3805 MSG_PUTS(_("\nCannot create pipes\n"));
3806 out_flush();
3811 if (!pipe_error) /* pty or pipe opened or not used */
3813 # ifdef __BEOS__
3814 beos_cleanup_read_thread();
3815 # endif
3817 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3819 MSG_PUTS(_("\nCannot fork\n"));
3820 if ((options & (SHELL_READ|SHELL_WRITE))
3821 # ifdef FEAT_GUI
3822 || (gui.in_use && show_shell_mess)
3823 # endif
3826 # ifdef FEAT_GUI
3827 if (pty_master_fd >= 0) /* close the pseudo tty */
3829 close(pty_master_fd);
3830 close(pty_slave_fd);
3832 else /* close the pipes */
3833 # endif
3835 close(fd_toshell[0]);
3836 close(fd_toshell[1]);
3837 close(fd_fromshell[0]);
3838 close(fd_fromshell[1]);
3842 else if (pid == 0) /* child */
3844 reset_signals(); /* handle signals normally */
3846 if (!show_shell_mess || (options & SHELL_EXPAND))
3848 int fd;
3851 * Don't want to show any message from the shell. Can't just
3852 * close stdout and stderr though, because some systems will
3853 * break if you try to write to them after that, so we must
3854 * use dup() to replace them with something else -- webb
3855 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3856 * waiting for input.
3858 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3859 fclose(stdin);
3860 fclose(stdout);
3861 fclose(stderr);
3864 * If any of these open()'s and dup()'s fail, we just continue
3865 * anyway. It's not fatal, and on most systems it will make
3866 * no difference at all. On a few it will cause the execvp()
3867 * to exit with a non-zero status even when the completion
3868 * could be done, which is nothing too serious. If the open()
3869 * or dup() failed we'd just do the same thing ourselves
3870 * anyway -- webb
3872 if (fd >= 0)
3874 dup(fd); /* To replace stdin (file descriptor 0) */
3875 dup(fd); /* To replace stdout (file descriptor 1) */
3876 dup(fd); /* To replace stderr (file descriptor 2) */
3878 /* Don't need this now that we've duplicated it */
3879 close(fd);
3882 else if ((options & (SHELL_READ|SHELL_WRITE))
3883 # ifdef FEAT_GUI
3884 || gui.in_use
3885 # endif
3889 # ifdef HAVE_SETSID
3890 /* Create our own process group, so that the child and all its
3891 * children can be kill()ed. Don't do this when using pipes,
3892 * because stdin is not a tty, we would loose /dev/tty. */
3893 if (p_stmp)
3894 (void)setsid();
3895 # endif
3896 # ifdef FEAT_GUI
3897 if (pty_slave_fd >= 0)
3899 /* push stream discipline modules */
3900 if (options & SHELL_COOKED)
3901 SetupSlavePTY(pty_slave_fd);
3902 # if defined(TIOCSCTTY) && !defined(FEAT_GUI_MACVIM)
3903 /* Try to become controlling tty (probably doesn't work,
3904 * unless run by root) */
3905 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
3906 # endif
3908 # endif
3909 /* Simulate to have a dumb terminal (for now) */
3910 # ifdef HAVE_SETENV
3911 setenv("TERM", "dumb", 1);
3912 sprintf((char *)envbuf, "%ld", Rows);
3913 setenv("ROWS", (char *)envbuf, 1);
3914 sprintf((char *)envbuf, "%ld", Rows);
3915 setenv("LINES", (char *)envbuf, 1);
3916 sprintf((char *)envbuf, "%ld", Columns);
3917 setenv("COLUMNS", (char *)envbuf, 1);
3918 # else
3920 * Putenv does not copy the string, it has to remain valid.
3921 * Use a static array to avoid loosing allocated memory.
3923 putenv("TERM=dumb");
3924 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3925 putenv(envbuf_Rows);
3926 sprintf(envbuf_Rows, "LINES=%ld", Rows);
3927 putenv(envbuf_Rows);
3928 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
3929 putenv(envbuf_Columns);
3930 # endif
3933 * stderr is only redirected when using the GUI, so that a
3934 * program like gpg can still access the terminal to get a
3935 * passphrase using stderr.
3937 # ifdef FEAT_GUI
3938 if (pty_master_fd >= 0)
3940 close(pty_master_fd); /* close master side of pty */
3942 /* set up stdin/stdout/stderr for the child */
3943 close(0);
3944 dup(pty_slave_fd);
3945 close(1);
3946 dup(pty_slave_fd);
3947 if (gui.in_use)
3949 close(2);
3950 dup(pty_slave_fd);
3953 close(pty_slave_fd); /* has been dupped, close it now */
3955 else
3956 # endif
3958 /* set up stdin for the child */
3959 close(fd_toshell[1]);
3960 close(0);
3961 dup(fd_toshell[0]);
3962 close(fd_toshell[0]);
3964 /* set up stdout for the child */
3965 close(fd_fromshell[0]);
3966 close(1);
3967 dup(fd_fromshell[1]);
3968 close(fd_fromshell[1]);
3970 # ifdef FEAT_GUI
3971 if (gui.in_use)
3973 /* set up stderr for the child */
3974 close(2);
3975 dup(1);
3977 # endif
3982 * There is no type cast for the argv, because the type may be
3983 * different on different machines. This may cause a warning
3984 * message with strict compilers, don't worry about it.
3985 * Call _exit() instead of exit() to avoid closing the connection
3986 * to the X server (esp. with GTK, which uses atexit()).
3988 execvp(argv[0], argv);
3989 _exit(EXEC_FAILED); /* exec failed, return failure code */
3991 else /* parent */
3994 * While child is running, ignore terminating signals.
3995 * Do catch CTRL-C, so that "got_int" is set.
3997 catch_signals(SIG_IGN, SIG_ERR);
3998 catch_int_signal();
4001 * For the GUI we redirect stdin, stdout and stderr to our window.
4002 * This is also used to pipe stdin/stdout to/from the external
4003 * command.
4005 if ((options & (SHELL_READ|SHELL_WRITE))
4006 # ifdef FEAT_GUI
4007 || (gui.in_use && show_shell_mess)
4008 # endif
4011 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4012 char_u buffer[BUFLEN + 1];
4013 # ifdef FEAT_MBYTE
4014 int buffer_off = 0; /* valid bytes in buffer[] */
4015 # endif
4016 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4017 int ta_len = 0; /* valid bytes in ta_buf[] */
4018 int len;
4019 int p_more_save;
4020 int old_State;
4021 int c;
4022 int toshell_fd;
4023 int fromshell_fd;
4024 garray_T ga;
4025 int noread_cnt;
4027 # ifdef FEAT_GUI
4028 if (pty_master_fd >= 0)
4030 close(pty_slave_fd); /* close slave side of pty */
4031 fromshell_fd = pty_master_fd;
4032 toshell_fd = dup(pty_master_fd);
4034 else
4035 # endif
4037 close(fd_toshell[0]);
4038 close(fd_fromshell[1]);
4039 toshell_fd = fd_toshell[1];
4040 fromshell_fd = fd_fromshell[0];
4044 * Write to the child if there are typed characters.
4045 * Read from the child if there are characters available.
4046 * Repeat the reading a few times if more characters are
4047 * available. Need to check for typed keys now and then, but
4048 * not too often (delays when no chars are available).
4049 * This loop is quit if no characters can be read from the pty
4050 * (WaitForChar detected special condition), or there are no
4051 * characters available and the child has exited.
4052 * Only check if the child has exited when there is no more
4053 * output. The child may exit before all the output has
4054 * been printed.
4056 * Currently this busy loops!
4057 * This can probably dead-lock when the write blocks!
4059 p_more_save = p_more;
4060 p_more = FALSE;
4061 old_State = State;
4062 State = EXTERNCMD; /* don't redraw at window resize */
4064 if ((options & SHELL_WRITE) && toshell_fd >= 0)
4066 /* Fork a process that will write the lines to the
4067 * external program. */
4068 if ((wpid = fork()) == -1)
4070 MSG_PUTS(_("\nCannot fork\n"));
4072 else if (wpid == 0)
4074 linenr_T lnum = curbuf->b_op_start.lnum;
4075 int written = 0;
4076 char_u *lp = ml_get(lnum);
4077 char_u *s;
4078 size_t l;
4080 /* child */
4081 close(fromshell_fd);
4082 for (;;)
4084 l = STRLEN(lp + written);
4085 if (l == 0)
4086 len = 0;
4087 else if (lp[written] == NL)
4088 /* NL -> NUL translation */
4089 len = write(toshell_fd, "", (size_t)1);
4090 else
4092 s = vim_strchr(lp + written, NL);
4093 len = write(toshell_fd, (char *)lp + written,
4094 s == NULL ? l : s - (lp + written));
4096 if (len == l)
4098 /* Finished a line, add a NL, unless this line
4099 * should not have one. */
4100 if (lnum != curbuf->b_op_end.lnum
4101 || !curbuf->b_p_bin
4102 || (lnum != write_no_eol_lnum
4103 && (lnum !=
4104 curbuf->b_ml.ml_line_count
4105 || curbuf->b_p_eol)))
4106 write(toshell_fd, "\n", (size_t)1);
4107 ++lnum;
4108 if (lnum > curbuf->b_op_end.lnum)
4110 /* finished all the lines, close pipe */
4111 close(toshell_fd);
4112 toshell_fd = -1;
4113 break;
4115 lp = ml_get(lnum);
4116 written = 0;
4118 else if (len > 0)
4119 written += len;
4121 _exit(0);
4123 else
4125 close(toshell_fd);
4126 toshell_fd = -1;
4130 if (options & SHELL_READ)
4131 ga_init2(&ga, 1, BUFLEN);
4133 noread_cnt = 0;
4135 for (;;)
4138 * Check if keys have been typed, write them to the child
4139 * if there are any.
4140 * Don't do this if we are expanding wild cards (would eat
4141 * typeahead).
4142 * Don't do this when filtering and terminal is in cooked
4143 * mode, the shell command will handle the I/O. Avoids
4144 * that a typed password is echoed for ssh or gpg command.
4145 * Don't get characters when the child has already
4146 * finished (wait_pid == 0).
4147 * Don't get extra characters when we already have one.
4148 * Don't read characters unless we didn't get output for a
4149 * while, avoids that ":r !ls" eats typeahead.
4151 len = 0;
4152 if (!(options & SHELL_EXPAND)
4153 && ((options &
4154 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4155 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4156 #ifdef FEAT_GUI
4157 || gui.in_use
4158 #endif
4160 && wait_pid == 0
4161 && (ta_len > 0
4162 || (noread_cnt > 4
4163 && (len = ui_inchar(ta_buf,
4164 BUFLEN, 10L, 0)) > 0)))
4167 * For pipes:
4168 * Check for CTRL-C: send interrupt signal to child.
4169 * Check for CTRL-D: EOF, close pipe to child.
4171 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4173 # ifdef SIGINT
4175 * Send SIGINT to the child's group or all
4176 * processes in our group.
4178 if (ta_buf[ta_len] == Ctrl_C
4179 || ta_buf[ta_len] == intr_char)
4181 # ifdef HAVE_SETSID
4182 kill(-pid, SIGINT);
4183 # else
4184 kill(0, SIGINT);
4185 # endif
4186 if (wpid > 0)
4187 kill(wpid, SIGINT);
4189 # endif
4190 if (pty_master_fd < 0 && toshell_fd >= 0
4191 && ta_buf[ta_len] == Ctrl_D)
4193 close(toshell_fd);
4194 toshell_fd = -1;
4198 /* replace K_BS by <BS> and K_DEL by <DEL> */
4199 for (i = ta_len; i < ta_len + len; ++i)
4201 if (ta_buf[i] == CSI && len - i > 2)
4203 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4204 if (c == K_DEL || c == K_KDEL || c == K_BS)
4206 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4207 (size_t)(len - i - 2));
4208 if (c == K_DEL || c == K_KDEL)
4209 ta_buf[i] = DEL;
4210 else
4211 ta_buf[i] = Ctrl_H;
4212 len -= 2;
4215 else if (ta_buf[i] == '\r')
4216 ta_buf[i] = '\n';
4217 # ifdef FEAT_MBYTE
4218 if (has_mbyte)
4219 i += (*mb_ptr2len)(ta_buf + i) - 1;
4220 # endif
4224 * For pipes: echo the typed characters.
4225 * For a pty this does not seem to work.
4227 if (pty_master_fd < 0)
4229 for (i = ta_len; i < ta_len + len; ++i)
4231 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4232 msg_putchar(ta_buf[i]);
4233 # ifdef FEAT_MBYTE
4234 else if (has_mbyte)
4236 int l = (*mb_ptr2len)(ta_buf + i);
4238 msg_outtrans_len(ta_buf + i, l);
4239 i += l - 1;
4241 # endif
4242 else
4243 msg_outtrans_len(ta_buf + i, 1);
4245 windgoto(msg_row, msg_col);
4246 out_flush();
4249 ta_len += len;
4252 * Write the characters to the child, unless EOF has
4253 * been typed for pipes. Write one character at a
4254 * time, to avoid loosing too much typeahead.
4255 * When writing buffer lines, drop the typed
4256 * characters (only check for CTRL-C).
4258 if (options & SHELL_WRITE)
4259 ta_len = 0;
4260 else if (toshell_fd >= 0)
4262 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4263 if (len > 0)
4265 ta_len -= len;
4266 mch_memmove(ta_buf, ta_buf + len, ta_len);
4267 noread_cnt = 0;
4272 if (got_int)
4274 /* CTRL-C sends a signal to the child, we ignore it
4275 * ourselves */
4276 # ifdef HAVE_SETSID
4277 kill(-pid, SIGINT);
4278 # else
4279 kill(0, SIGINT);
4280 # endif
4281 if (wpid > 0)
4282 kill(wpid, SIGINT);
4283 got_int = FALSE;
4287 * Check if the child has any characters to be printed.
4288 * Read them and write them to our window. Repeat this as
4289 * long as there is something to do, avoid the 10ms wait
4290 * for mch_inchar(), or sending typeahead characters to
4291 * the external process.
4292 * TODO: This should handle escape sequences, compatible
4293 * to some terminal (vt52?).
4295 ++noread_cnt;
4296 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4298 len = read(fromshell_fd, (char *)buffer
4299 # ifdef FEAT_MBYTE
4300 + buffer_off, (size_t)(BUFLEN - buffer_off)
4301 # else
4302 , (size_t)BUFLEN
4303 # endif
4305 if (len <= 0) /* end of file or error */
4306 goto finished;
4308 noread_cnt = 0;
4309 if (options & SHELL_READ)
4311 /* Do NUL -> NL translation, append NL separated
4312 * lines to the current buffer. */
4313 for (i = 0; i < len; ++i)
4315 if (buffer[i] == NL)
4316 append_ga_line(&ga);
4317 else if (buffer[i] == NUL)
4318 ga_append(&ga, NL);
4319 else
4320 ga_append(&ga, buffer[i]);
4323 # ifdef FEAT_MBYTE
4324 else if (has_mbyte)
4326 int l;
4328 len += buffer_off;
4329 buffer[len] = NUL;
4331 /* Check if the last character in buffer[] is
4332 * incomplete, keep these bytes for the next
4333 * round. */
4334 for (p = buffer; p < buffer + len; p += l)
4336 l = mb_cptr2len(p);
4337 if (l == 0)
4338 l = 1; /* NUL byte? */
4339 else if (MB_BYTE2LEN(*p) != l)
4340 break;
4342 if (p == buffer) /* no complete character */
4344 /* avoid getting stuck at an illegal byte */
4345 if (len >= 12)
4346 ++p;
4347 else
4349 buffer_off = len;
4350 continue;
4353 c = *p;
4354 *p = NUL;
4355 msg_puts(buffer);
4356 if (p < buffer + len)
4358 *p = c;
4359 buffer_off = (buffer + len) - p;
4360 mch_memmove(buffer, p, buffer_off);
4361 continue;
4363 buffer_off = 0;
4365 # endif /* FEAT_MBYTE */
4366 else
4368 buffer[len] = NUL;
4369 msg_puts(buffer);
4372 windgoto(msg_row, msg_col);
4373 cursor_on();
4374 out_flush();
4375 if (got_int)
4376 break;
4379 /* If we already detected the child has finished break the
4380 * loop now. */
4381 if (wait_pid == pid)
4382 break;
4385 * Check if the child still exists, before checking for
4386 * typed characters (otherwise we would loose typeahead).
4388 # ifdef __NeXT__
4389 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
4390 # else
4391 wait_pid = waitpid(pid, &status, WNOHANG);
4392 # endif
4393 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4394 || (wait_pid == pid && WIFEXITED(status)))
4396 /* Don't break the loop yet, try reading more
4397 * characters from "fromshell_fd" first. When using
4398 * pipes there might still be something to read and
4399 * then we'll break the loop at the "break" above. */
4400 wait_pid = pid;
4402 else
4403 wait_pid = 0;
4405 finished:
4406 p_more = p_more_save;
4407 if (options & SHELL_READ)
4409 if (ga.ga_len > 0)
4411 append_ga_line(&ga);
4412 /* remember that the NL was missing */
4413 write_no_eol_lnum = curwin->w_cursor.lnum;
4415 else
4416 write_no_eol_lnum = 0;
4417 ga_clear(&ga);
4421 * Give all typeahead that wasn't used back to ui_inchar().
4423 if (ta_len)
4424 ui_inchar_undo(ta_buf, ta_len);
4425 State = old_State;
4426 if (toshell_fd >= 0)
4427 close(toshell_fd);
4428 close(fromshell_fd);
4432 * Wait until our child has exited.
4433 * Ignore wait() returning pids of other children and returning
4434 * because of some signal like SIGWINCH.
4435 * Don't wait if wait_pid was already set above, indicating the
4436 * child already exited.
4438 while (wait_pid != pid)
4440 # ifdef _THREAD_SAFE
4441 /* Ugly hack: when compiled with Python threads are probably
4442 * used, in which case wait() sometimes hangs for no obvious
4443 * reason. Use waitpid() instead and loop (like the GUI). */
4444 # ifdef __NeXT__
4445 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4446 # else
4447 wait_pid = waitpid(pid, &status, WNOHANG);
4448 # endif
4449 if (wait_pid == 0)
4451 /* Wait for 1/100 sec before trying again. */
4452 mch_delay(10L, TRUE);
4453 continue;
4455 # else
4456 wait_pid = wait(&status);
4457 # endif
4458 if (wait_pid <= 0
4459 # ifdef ECHILD
4460 && errno == ECHILD
4461 # endif
4463 break;
4466 /* Make sure the child that writes to the external program is
4467 * dead. */
4468 if (wpid > 0)
4469 kill(wpid, SIGKILL);
4472 * Set to raw mode right now, otherwise a CTRL-C after
4473 * catch_signals() will kill Vim.
4475 if (tmode == TMODE_RAW)
4476 settmode(TMODE_RAW);
4477 did_settmode = TRUE;
4478 set_signals();
4480 if (WIFEXITED(status))
4482 /* LINTED avoid "bitwise operation on signed value" */
4483 retval = WEXITSTATUS(status);
4484 if (retval && !emsg_silent)
4486 if (retval == EXEC_FAILED)
4488 MSG_PUTS(_("\nCannot execute shell "));
4489 msg_outtrans(p_sh);
4490 msg_putchar('\n');
4492 else if (!(options & SHELL_SILENT))
4494 MSG_PUTS(_("\nshell returned "));
4495 msg_outnum((long)retval);
4496 msg_putchar('\n');
4500 else
4501 MSG_PUTS(_("\nCommand terminated\n"));
4504 vim_free(argv);
4506 error:
4507 if (!did_settmode)
4508 if (tmode == TMODE_RAW)
4509 settmode(TMODE_RAW); /* set to raw mode */
4510 # ifdef FEAT_TITLE
4511 resettitle();
4512 # endif
4513 vim_free(newcmd);
4515 return retval;
4517 #endif /* USE_SYSTEM */
4521 * Check for CTRL-C typed by reading all available characters.
4522 * In cooked mode we should get SIGINT, no need to check.
4524 void
4525 mch_breakcheck()
4527 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4528 fill_input_buf(FALSE);
4532 * Wait "msec" msec until a character is available from the keyboard or from
4533 * inbuf[]. msec == -1 will block forever.
4534 * When a GUI is being used, this will never get called -- webb
4536 static int
4537 WaitForChar(msec)
4538 long msec;
4540 #ifdef FEAT_MOUSE_GPM
4541 int gpm_process_wanted;
4542 #endif
4543 #ifdef FEAT_XCLIPBOARD
4544 int rest;
4545 #endif
4546 int avail;
4548 if (input_available()) /* something in inbuf[] */
4549 return 1;
4551 #if defined(FEAT_MOUSE_DEC)
4552 /* May need to query the mouse position. */
4553 if (WantQueryMouse)
4555 WantQueryMouse = FALSE;
4556 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4558 #endif
4561 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4562 * events. This is a bit complicated, because they might both be defined.
4564 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4565 # ifdef FEAT_XCLIPBOARD
4566 rest = 0;
4567 if (do_xterm_trace())
4568 rest = msec;
4569 # endif
4572 # ifdef FEAT_XCLIPBOARD
4573 if (rest != 0)
4575 msec = XT_TRACE_DELAY;
4576 if (rest >= 0 && rest < XT_TRACE_DELAY)
4577 msec = rest;
4578 if (rest >= 0)
4579 rest -= msec;
4581 # endif
4582 # ifdef FEAT_MOUSE_GPM
4583 gpm_process_wanted = 0;
4584 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4585 # else
4586 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4587 # endif
4588 if (!avail)
4590 if (input_available())
4591 return 1;
4592 # ifdef FEAT_XCLIPBOARD
4593 if (rest == 0 || !do_xterm_trace())
4594 # endif
4595 break;
4598 while (FALSE
4599 # ifdef FEAT_MOUSE_GPM
4600 || (gpm_process_wanted && mch_gpm_process() == 0)
4601 # endif
4602 # ifdef FEAT_XCLIPBOARD
4603 || (!avail && rest != 0)
4604 # endif
4607 #else
4608 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4609 #endif
4610 return avail;
4614 * Wait "msec" msec until a character is available from file descriptor "fd".
4615 * Time == -1 will block forever.
4616 * When a GUI is being used, this will not be used for input -- webb
4617 * Returns also, when a request from Sniff is waiting -- toni.
4618 * Or when a Linux GPM mouse event is waiting.
4620 /* ARGSUSED */
4621 #if defined(__BEOS__)
4623 #else
4624 static int
4625 #endif
4626 RealWaitForChar(fd, msec, check_for_gpm)
4627 int fd;
4628 long msec;
4629 int *check_for_gpm;
4631 int ret;
4632 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4633 static int busy = FALSE;
4635 /* May retry getting characters after an event was handled. */
4636 # define MAY_LOOP
4638 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4639 /* Remember at what time we started, so that we know how much longer we
4640 * should wait after being interrupted. */
4641 # define USE_START_TV
4642 struct timeval start_tv;
4644 if (msec > 0 && (
4645 # ifdef FEAT_XCLIPBOARD
4646 xterm_Shell != (Widget)0
4647 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4649 # endif
4650 # endif
4651 # ifdef USE_XSMP
4652 xsmp_icefd != -1
4653 # ifdef FEAT_MZSCHEME
4655 # endif
4656 # endif
4657 # ifdef FEAT_MZSCHEME
4658 (mzthreads_allowed() && p_mzq > 0)
4659 # endif
4661 gettimeofday(&start_tv, NULL);
4662 # endif
4664 /* Handle being called recursively. This may happen for the session
4665 * manager stuff, it may save the file, which does a breakcheck. */
4666 if (busy)
4667 return 0;
4668 #endif
4670 #ifdef MAY_LOOP
4671 for (;;)
4672 #endif
4674 #ifdef MAY_LOOP
4675 int finished = TRUE; /* default is to 'loop' just once */
4676 # ifdef FEAT_MZSCHEME
4677 int mzquantum_used = FALSE;
4678 # endif
4679 #endif
4680 #ifndef HAVE_SELECT
4681 struct pollfd fds[5];
4682 int nfd;
4683 # ifdef FEAT_XCLIPBOARD
4684 int xterm_idx = -1;
4685 # endif
4686 # ifdef FEAT_MOUSE_GPM
4687 int gpm_idx = -1;
4688 # endif
4689 # ifdef USE_XSMP
4690 int xsmp_idx = -1;
4691 # endif
4692 int towait = (int)msec;
4694 # ifdef FEAT_MZSCHEME
4695 mzvim_check_threads();
4696 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4698 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4699 mzquantum_used = TRUE;
4701 # endif
4702 fds[0].fd = fd;
4703 fds[0].events = POLLIN;
4704 nfd = 1;
4706 # ifdef FEAT_SNIFF
4707 # define SNIFF_IDX 1
4708 if (want_sniff_request)
4710 fds[SNIFF_IDX].fd = fd_from_sniff;
4711 fds[SNIFF_IDX].events = POLLIN;
4712 nfd++;
4714 # endif
4715 # ifdef FEAT_XCLIPBOARD
4716 if (xterm_Shell != (Widget)0)
4718 xterm_idx = nfd;
4719 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4720 fds[nfd].events = POLLIN;
4721 nfd++;
4723 # endif
4724 # ifdef FEAT_MOUSE_GPM
4725 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4727 gpm_idx = nfd;
4728 fds[nfd].fd = gpm_fd;
4729 fds[nfd].events = POLLIN;
4730 nfd++;
4732 # endif
4733 # ifdef USE_XSMP
4734 if (xsmp_icefd != -1)
4736 xsmp_idx = nfd;
4737 fds[nfd].fd = xsmp_icefd;
4738 fds[nfd].events = POLLIN;
4739 nfd++;
4741 # endif
4743 ret = poll(fds, nfd, towait);
4744 # ifdef FEAT_MZSCHEME
4745 if (ret == 0 && mzquantum_used)
4746 /* MzThreads scheduling is required and timeout occurred */
4747 finished = FALSE;
4748 # endif
4750 # ifdef FEAT_SNIFF
4751 if (ret < 0)
4752 sniff_disconnect(1);
4753 else if (want_sniff_request)
4755 if (fds[SNIFF_IDX].revents & POLLHUP)
4756 sniff_disconnect(1);
4757 if (fds[SNIFF_IDX].revents & POLLIN)
4758 sniff_request_waiting = 1;
4760 # endif
4761 # ifdef FEAT_XCLIPBOARD
4762 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4764 xterm_update(); /* Maybe we should hand out clipboard */
4765 if (--ret == 0 && !input_available())
4766 /* Try again */
4767 finished = FALSE;
4769 # endif
4770 # ifdef FEAT_MOUSE_GPM
4771 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4773 *check_for_gpm = 1;
4775 # endif
4776 # ifdef USE_XSMP
4777 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4779 if (fds[xsmp_idx].revents & POLLIN)
4781 busy = TRUE;
4782 xsmp_handle_requests();
4783 busy = FALSE;
4785 else if (fds[xsmp_idx].revents & POLLHUP)
4787 if (p_verbose > 0)
4788 verb_msg((char_u *)_("XSMP lost ICE connection"));
4789 xsmp_close();
4791 if (--ret == 0)
4792 finished = FALSE; /* Try again */
4794 # endif
4797 #else /* HAVE_SELECT */
4799 struct timeval tv;
4800 struct timeval *tvp;
4801 fd_set rfds, efds;
4802 int maxfd;
4803 long towait = msec;
4805 # ifdef FEAT_MZSCHEME
4806 mzvim_check_threads();
4807 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4809 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4810 mzquantum_used = TRUE;
4812 # endif
4813 # ifdef __EMX__
4814 /* don't check for incoming chars if not in raw mode, because select()
4815 * always returns TRUE then (in some version of emx.dll) */
4816 if (curr_tmode != TMODE_RAW)
4817 return 0;
4818 # endif
4820 if (towait >= 0)
4822 tv.tv_sec = towait / 1000;
4823 tv.tv_usec = (towait % 1000) * (1000000/1000);
4824 tvp = &tv;
4826 else
4827 tvp = NULL;
4830 * Select on ready for reading and exceptional condition (end of file).
4832 FD_ZERO(&rfds); /* calls bzero() on a sun */
4833 FD_ZERO(&efds);
4834 FD_SET(fd, &rfds);
4835 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4836 /* For QNX select() always returns 1 if this is set. Why? */
4837 FD_SET(fd, &efds);
4838 # endif
4839 maxfd = fd;
4841 # ifdef FEAT_SNIFF
4842 if (want_sniff_request)
4844 FD_SET(fd_from_sniff, &rfds);
4845 FD_SET(fd_from_sniff, &efds);
4846 if (maxfd < fd_from_sniff)
4847 maxfd = fd_from_sniff;
4849 # endif
4850 # ifdef FEAT_XCLIPBOARD
4851 if (xterm_Shell != (Widget)0)
4853 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4854 if (maxfd < ConnectionNumber(xterm_dpy))
4855 maxfd = ConnectionNumber(xterm_dpy);
4857 # endif
4858 # ifdef FEAT_MOUSE_GPM
4859 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4861 FD_SET(gpm_fd, &rfds);
4862 FD_SET(gpm_fd, &efds);
4863 if (maxfd < gpm_fd)
4864 maxfd = gpm_fd;
4866 # endif
4867 # ifdef USE_XSMP
4868 if (xsmp_icefd != -1)
4870 FD_SET(xsmp_icefd, &rfds);
4871 FD_SET(xsmp_icefd, &efds);
4872 if (maxfd < xsmp_icefd)
4873 maxfd = xsmp_icefd;
4875 # endif
4877 # ifdef OLD_VMS
4878 /* Old VMS as v6.2 and older have broken select(). It waits more than
4879 * required. Should not be used */
4880 ret = 0;
4881 # else
4882 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4883 # endif
4884 # ifdef __TANDEM
4885 if (ret == -1 && errno == ENOTSUP)
4887 FD_ZERO(&rfds);
4888 FD_ZERO(&efds);
4889 ret = 0;
4891 #endif
4892 # ifdef FEAT_MZSCHEME
4893 if (ret == 0 && mzquantum_used)
4894 /* loop if MzThreads must be scheduled and timeout occurred */
4895 finished = FALSE;
4896 # endif
4898 # ifdef FEAT_SNIFF
4899 if (ret < 0 )
4900 sniff_disconnect(1);
4901 else if (ret > 0 && want_sniff_request)
4903 if (FD_ISSET(fd_from_sniff, &efds))
4904 sniff_disconnect(1);
4905 if (FD_ISSET(fd_from_sniff, &rfds))
4906 sniff_request_waiting = 1;
4908 # endif
4909 # ifdef FEAT_XCLIPBOARD
4910 if (ret > 0 && xterm_Shell != (Widget)0
4911 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
4913 xterm_update(); /* Maybe we should hand out clipboard */
4914 /* continue looping when we only got the X event and the input
4915 * buffer is empty */
4916 if (--ret == 0 && !input_available())
4918 /* Try again */
4919 finished = FALSE;
4922 # endif
4923 # ifdef FEAT_MOUSE_GPM
4924 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
4926 if (FD_ISSET(gpm_fd, &efds))
4927 gpm_close();
4928 else if (FD_ISSET(gpm_fd, &rfds))
4929 *check_for_gpm = 1;
4931 # endif
4932 # ifdef USE_XSMP
4933 if (ret > 0 && xsmp_icefd != -1)
4935 if (FD_ISSET(xsmp_icefd, &efds))
4937 if (p_verbose > 0)
4938 verb_msg((char_u *)_("XSMP lost ICE connection"));
4939 xsmp_close();
4940 if (--ret == 0)
4941 finished = FALSE; /* keep going if event was only one */
4943 else if (FD_ISSET(xsmp_icefd, &rfds))
4945 busy = TRUE;
4946 xsmp_handle_requests();
4947 busy = FALSE;
4948 if (--ret == 0)
4949 finished = FALSE; /* keep going if event was only one */
4952 # endif
4954 #endif /* HAVE_SELECT */
4956 #ifdef MAY_LOOP
4957 if (finished || msec == 0)
4958 break;
4960 /* We're going to loop around again, find out for how long */
4961 if (msec > 0)
4963 # ifdef USE_START_TV
4964 struct timeval mtv;
4966 /* Compute remaining wait time. */
4967 gettimeofday(&mtv, NULL);
4968 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
4969 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
4970 # else
4971 /* Guess we got interrupted halfway. */
4972 msec = msec / 2;
4973 # endif
4974 if (msec <= 0)
4975 break; /* waited long enough */
4977 #endif
4980 return (ret > 0);
4983 #ifndef VMS
4985 #ifndef NO_EXPANDPATH
4987 * Expand a path into all matching files and/or directories. Handles "*",
4988 * "?", "[a-z]", "**", etc.
4989 * "path" has backslashes before chars that are not to be expanded.
4990 * Returns the number of matches found.
4993 mch_expandpath(gap, path, flags)
4994 garray_T *gap;
4995 char_u *path;
4996 int flags; /* EW_* flags */
4998 return unix_expandpath(gap, path, 0, flags, FALSE);
5000 #endif
5003 * mch_expand_wildcards() - this code does wild-card pattern matching using
5004 * the shell
5006 * return OK for success, FAIL for error (you may lose some memory) and put
5007 * an error message in *file.
5009 * num_pat is number of input patterns
5010 * pat is array of pointers to input patterns
5011 * num_file is pointer to number of matched file names
5012 * file is pointer to array of pointers to matched file names
5015 #ifndef SEEK_SET
5016 # define SEEK_SET 0
5017 #endif
5018 #ifndef SEEK_END
5019 # define SEEK_END 2
5020 #endif
5022 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5024 /* ARGSUSED */
5026 mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5027 int num_pat;
5028 char_u **pat;
5029 int *num_file;
5030 char_u ***file;
5031 int flags; /* EW_* flags */
5033 int i;
5034 size_t len;
5035 char_u *p;
5036 int dir;
5037 #ifdef __EMX__
5039 * This is the OS/2 implementation.
5041 # define EXPL_ALLOC_INC 16
5042 char_u **expl_files;
5043 size_t files_alloced, files_free;
5044 char_u *buf;
5045 int has_wildcard;
5047 *num_file = 0; /* default: no files found */
5048 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5049 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5050 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5051 if (*file == NULL)
5052 return FAIL;
5054 for (; num_pat > 0; num_pat--, pat++)
5056 expl_files = NULL;
5057 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5058 /* expand environment var or home dir */
5059 buf = expand_env_save(*pat);
5060 else
5061 buf = vim_strsave(*pat);
5062 expl_files = NULL;
5063 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
5064 if (has_wildcard) /* yes, so expand them */
5065 expl_files = (char_u **)_fnexplode(buf);
5068 * return value of buf if no wildcards left,
5069 * OR if no match AND EW_NOTFOUND is set.
5071 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5072 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5073 { /* simply save the current contents of *buf */
5074 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5075 if (expl_files != NULL)
5077 expl_files[0] = vim_strsave(buf);
5078 expl_files[1] = NULL;
5081 vim_free(buf);
5084 * Count number of names resulting from expansion,
5085 * At the same time add a backslash to the end of names that happen to
5086 * be directories, and replace slashes with backslashes.
5088 if (expl_files)
5090 for (i = 0; (p = expl_files[i]) != NULL; i++)
5092 dir = mch_isdir(p);
5093 /* If we don't want dirs and this is one, skip it */
5094 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5095 continue;
5097 /* Skip files that are not executable if we check for that. */
5098 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5099 continue;
5101 if (--files_free == 0)
5103 /* need more room in table of pointers */
5104 files_alloced += EXPL_ALLOC_INC;
5105 *file = (char_u **)vim_realloc(*file,
5106 sizeof(char_u **) * files_alloced);
5107 if (*file == NULL)
5109 EMSG(_(e_outofmem));
5110 *num_file = 0;
5111 return FAIL;
5113 files_free = EXPL_ALLOC_INC;
5115 slash_adjust(p);
5116 if (dir)
5118 /* For a directory we add a '/', unless it's already
5119 * there. */
5120 len = STRLEN(p);
5121 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5123 STRCPY((*file)[*num_file], p);
5124 if (!after_pathsep((*file)[*num_file],
5125 (*file)[*num_file] + len))
5127 (*file)[*num_file][len] = psepc;
5128 (*file)[*num_file][len + 1] = NUL;
5132 else
5134 (*file)[*num_file] = vim_strsave(p);
5138 * Error message already given by either alloc or vim_strsave.
5139 * Should return FAIL, but returning OK works also.
5141 if ((*file)[*num_file] == NULL)
5142 break;
5143 (*num_file)++;
5145 _fnexplodefree((char **)expl_files);
5148 return OK;
5150 #else /* __EMX__ */
5152 * This is the non-OS/2 implementation (really Unix).
5154 int j;
5155 char_u *tempname;
5156 char_u *command;
5157 FILE *fd;
5158 char_u *buffer;
5159 #define STYLE_ECHO 0 /* use "echo", the default */
5160 #define STYLE_GLOB 1 /* use "glob", for csh */
5161 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5162 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5163 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5164 * directly */
5165 int shell_style = STYLE_ECHO;
5166 int check_spaces;
5167 static int did_find_nul = FALSE;
5168 int ampersent = FALSE;
5169 /* vimglob() function to define for Posix shell */
5170 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo -n \"$1\"; echo; shift; done }; vimglob >";
5172 *num_file = 0; /* default: no files found */
5173 *file = NULL;
5176 * If there are no wildcards, just copy the names to allocated memory.
5177 * Saves a lot of time, because we don't have to start a new shell.
5179 if (!have_wildcard(num_pat, pat))
5180 return save_patterns(num_pat, pat, num_file, file);
5182 # ifdef HAVE_SANDBOX
5183 /* Don't allow any shell command in the sandbox. */
5184 if (sandbox != 0 && check_secure())
5185 return FAIL;
5186 # endif
5189 * Don't allow the use of backticks in secure and restricted mode.
5191 if (secure || restricted)
5192 for (i = 0; i < num_pat; ++i)
5193 if (vim_strchr(pat[i], '`') != NULL
5194 && (check_restricted() || check_secure()))
5195 return FAIL;
5198 * get a name for the temp file
5200 if ((tempname = vim_tempname('o')) == NULL)
5202 EMSG(_(e_notmp));
5203 return FAIL;
5207 * Let the shell expand the patterns and write the result into the temp
5208 * file.
5209 * STYLE_BT: NL separated
5210 * If expanding `cmd` execute it directly.
5211 * STYLE_GLOB: NUL separated
5212 * If we use *csh, "glob" will work better than "echo".
5213 * STYLE_PRINT: NL or NUL separated
5214 * If we use *zsh, "print -N" will work better than "glob".
5215 * STYLE_VIMGLOB: NL separated
5216 * If we use *sh*, we define "vimglob()".
5217 * STYLE_ECHO: space separated.
5218 * A shell we don't know, stay safe and use "echo".
5220 if (num_pat == 1 && *pat[0] == '`'
5221 && (len = STRLEN(pat[0])) > 2
5222 && *(pat[0] + len - 1) == '`')
5223 shell_style = STYLE_BT;
5224 else if ((len = STRLEN(p_sh)) >= 3)
5226 if (STRCMP(p_sh + len - 3, "csh") == 0)
5227 shell_style = STYLE_GLOB;
5228 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5229 shell_style = STYLE_PRINT;
5231 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5232 "sh") != NULL)
5233 shell_style = STYLE_VIMGLOB;
5235 /* Compute the length of the command. We need 2 extra bytes: for the
5236 * optional '&' and for the NUL.
5237 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5238 len = STRLEN(tempname) + 29;
5239 if (shell_style == STYLE_VIMGLOB)
5240 len += STRLEN(sh_vimglob_func);
5242 for (i = 0; i < num_pat; ++i)
5244 /* Count the length of the patterns in the same way as they are put in
5245 * "command" below. */
5246 #ifdef USE_SYSTEM
5247 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
5248 #else
5249 ++len; /* add space */
5250 for (j = 0; pat[i][j] != NUL; ++j)
5252 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5253 ++len; /* may add a backslash */
5254 ++len;
5256 #endif
5258 command = alloc(len);
5259 if (command == NULL)
5261 /* out of memory */
5262 vim_free(tempname);
5263 return FAIL;
5267 * Build the shell command:
5268 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5269 * recognizes this).
5270 * - Add the shell command to print the expanded names.
5271 * - Add the temp file name.
5272 * - Add the file name patterns.
5274 if (shell_style == STYLE_BT)
5276 /* change `command; command& ` to (command; command ) */
5277 STRCPY(command, "(");
5278 STRCAT(command, pat[0] + 1); /* exclude first backtick */
5279 p = command + STRLEN(command) - 1;
5280 *p-- = ')'; /* remove last backtick */
5281 while (p > command && vim_iswhite(*p))
5282 --p;
5283 if (*p == '&') /* remove trailing '&' */
5285 ampersent = TRUE;
5286 *p = ' ';
5288 STRCAT(command, ">");
5290 else
5292 if (flags & EW_NOTFOUND)
5293 STRCPY(command, "set nonomatch; ");
5294 else
5295 STRCPY(command, "unset nonomatch; ");
5296 if (shell_style == STYLE_GLOB)
5297 STRCAT(command, "glob >");
5298 else if (shell_style == STYLE_PRINT)
5299 STRCAT(command, "print -N >");
5300 else if (shell_style == STYLE_VIMGLOB)
5301 STRCAT(command, sh_vimglob_func);
5302 else
5303 STRCAT(command, "echo >");
5306 STRCAT(command, tempname);
5308 if (shell_style != STYLE_BT)
5309 for (i = 0; i < num_pat; ++i)
5311 /* When using system() always add extra quotes, because the shell
5312 * is started twice. Otherwise put a backslash before special
5313 * characters, except inside ``. */
5314 #ifdef USE_SYSTEM
5315 STRCAT(command, " \"");
5316 STRCAT(command, pat[i]);
5317 STRCAT(command, "\"");
5318 #else
5319 int intick = FALSE;
5321 p = command + STRLEN(command);
5322 *p++ = ' ';
5323 for (j = 0; pat[i][j] != NUL; ++j)
5325 if (pat[i][j] == '`')
5326 intick = !intick;
5327 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5329 /* Remove a backslash, take char literally. But keep
5330 * backslash inside backticks, before a special character
5331 * and before a backtick. */
5332 if (intick
5333 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5334 || pat[i][j + 1] == '`')
5335 *p++ = '\\';
5336 ++j;
5338 else if (!intick && vim_strchr(SHELL_SPECIAL,
5339 pat[i][j]) != NULL)
5340 /* Put a backslash before a special character, but not
5341 * when inside ``. */
5342 *p++ = '\\';
5344 /* Copy one character. */
5345 *p++ = pat[i][j];
5347 *p = NUL;
5348 #endif
5350 if (flags & EW_SILENT)
5351 show_shell_mess = FALSE;
5352 if (ampersent)
5353 STRCAT(command, "&"); /* put the '&' after the redirection */
5356 * Using zsh -G: If a pattern has no matches, it is just deleted from
5357 * the argument list, otherwise zsh gives an error message and doesn't
5358 * expand any other pattern.
5360 if (shell_style == STYLE_PRINT)
5361 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5364 * If we use -f then shell variables set in .cshrc won't get expanded.
5365 * vi can do it, so we will too, but it is only necessary if there is a "$"
5366 * in one of the patterns, otherwise we can still use the fast option.
5368 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5369 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5372 * execute the shell command
5374 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5376 /* When running in the background, give it some time to create the temp
5377 * file, but don't wait for it to finish. */
5378 if (ampersent)
5379 mch_delay(10L, TRUE);
5381 extra_shell_arg = NULL; /* cleanup */
5382 show_shell_mess = TRUE;
5383 vim_free(command);
5385 if (i != 0) /* mch_call_shell() failed */
5387 mch_remove(tempname);
5388 vim_free(tempname);
5390 * With interactive completion, the error message is not printed.
5391 * However with USE_SYSTEM, I don't know how to turn off error messages
5392 * from the shell, so screen may still get messed up -- webb.
5394 #ifndef USE_SYSTEM
5395 if (!(flags & EW_SILENT))
5396 #endif
5398 redraw_later_clear(); /* probably messed up screen */
5399 msg_putchar('\n'); /* clear bottom line quickly */
5400 cmdline_row = Rows - 1; /* continue on last line */
5401 #ifdef USE_SYSTEM
5402 if (!(flags & EW_SILENT))
5403 #endif
5405 MSG(_(e_wildexpand));
5406 msg_start(); /* don't overwrite this message */
5409 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5410 * EW_NOTFOUND is given */
5411 if (shell_style == STYLE_BT)
5412 return FAIL;
5413 goto notfound;
5417 * read the names from the file into memory
5419 fd = fopen((char *)tempname, READBIN);
5420 if (fd == NULL)
5422 /* Something went wrong, perhaps a file name with a special char. */
5423 if (!(flags & EW_SILENT))
5425 MSG(_(e_wildexpand));
5426 msg_start(); /* don't overwrite this message */
5428 vim_free(tempname);
5429 goto notfound;
5431 fseek(fd, 0L, SEEK_END);
5432 len = ftell(fd); /* get size of temp file */
5433 fseek(fd, 0L, SEEK_SET);
5434 buffer = alloc(len + 1);
5435 if (buffer == NULL)
5437 /* out of memory */
5438 mch_remove(tempname);
5439 vim_free(tempname);
5440 fclose(fd);
5441 return FAIL;
5443 i = fread((char *)buffer, 1, len, fd);
5444 fclose(fd);
5445 mch_remove(tempname);
5446 if (i != len)
5448 /* unexpected read error */
5449 EMSG2(_(e_notread), tempname);
5450 vim_free(tempname);
5451 vim_free(buffer);
5452 return FAIL;
5454 vim_free(tempname);
5456 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5457 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5458 p = buffer;
5459 for (i = 0; i < len; ++i)
5460 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5461 *p++ = buffer[i];
5462 len = p - buffer;
5463 # endif
5466 /* file names are separated with Space */
5467 if (shell_style == STYLE_ECHO)
5469 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5470 p = buffer;
5471 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5473 while (*p != ' ' && *p != '\n')
5474 ++p;
5475 p = skipwhite(p); /* skip to next entry */
5478 /* file names are separated with NL */
5479 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
5481 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5482 p = buffer;
5483 for (i = 0; *p != NUL; ++i) /* count number of entries */
5485 while (*p != '\n' && *p != NUL)
5486 ++p;
5487 if (*p != NUL)
5488 ++p;
5489 p = skipwhite(p); /* skip leading white space */
5492 /* file names are separated with NUL */
5493 else
5496 * Some versions of zsh use spaces instead of NULs to separate
5497 * results. Only do this when there is no NUL before the end of the
5498 * buffer, otherwise we would never be able to use file names with
5499 * embedded spaces when zsh does use NULs.
5500 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5501 * don't check for spaces again.
5503 check_spaces = FALSE;
5504 if (shell_style == STYLE_PRINT && !did_find_nul)
5506 /* If there is a NUL, set did_find_nul, else set check_spaces */
5507 if (len && (int)STRLEN(buffer) < len - 1)
5508 did_find_nul = TRUE;
5509 else
5510 check_spaces = TRUE;
5514 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5515 * already is one, for STYLE_GLOB it needs to be added.
5517 if (len && buffer[len - 1] == NUL)
5518 --len;
5519 else
5520 buffer[len] = NUL;
5521 i = 0;
5522 for (p = buffer; p < buffer + len; ++p)
5523 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5525 ++i;
5526 *p = NUL;
5528 if (len)
5529 ++i; /* count last entry */
5531 if (i == 0)
5534 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5535 * /bin/sh will happily expand it to nothing rather than returning an
5536 * error; and hey, it's good to check anyway -- webb.
5538 vim_free(buffer);
5539 goto notfound;
5541 *num_file = i;
5542 *file = (char_u **)alloc(sizeof(char_u *) * i);
5543 if (*file == NULL)
5545 /* out of memory */
5546 vim_free(buffer);
5547 return FAIL;
5551 * Isolate the individual file names.
5553 p = buffer;
5554 for (i = 0; i < *num_file; ++i)
5556 (*file)[i] = p;
5557 /* Space or NL separates */
5558 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5559 || shell_style == STYLE_VIMGLOB)
5561 while (!(shell_style == STYLE_ECHO && *p == ' ')
5562 && *p != '\n' && *p != NUL)
5563 ++p;
5564 if (p == buffer + len) /* last entry */
5565 *p = NUL;
5566 else
5568 *p++ = NUL;
5569 p = skipwhite(p); /* skip to next entry */
5572 else /* NUL separates */
5574 while (*p && p < buffer + len) /* skip entry */
5575 ++p;
5576 ++p; /* skip NUL */
5581 * Move the file names to allocated memory.
5583 for (j = 0, i = 0; i < *num_file; ++i)
5585 /* Require the files to exist. Helps when using /bin/sh */
5586 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5587 continue;
5589 /* check if this entry should be included */
5590 dir = (mch_isdir((*file)[i]));
5591 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5592 continue;
5594 /* Skip files that are not executable if we check for that. */
5595 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5596 continue;
5598 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5599 if (p)
5601 STRCPY(p, (*file)[i]);
5602 if (dir)
5603 add_pathsep(p); /* add '/' to a directory name */
5604 (*file)[j++] = p;
5607 vim_free(buffer);
5608 *num_file = j;
5610 if (*num_file == 0) /* rejected all entries */
5612 vim_free(*file);
5613 *file = NULL;
5614 goto notfound;
5617 return OK;
5619 notfound:
5620 if (flags & EW_NOTFOUND)
5621 return save_patterns(num_pat, pat, num_file, file);
5622 return FAIL;
5624 #endif /* __EMX__ */
5627 #endif /* VMS */
5629 #ifndef __EMX__
5630 static int
5631 save_patterns(num_pat, pat, num_file, file)
5632 int num_pat;
5633 char_u **pat;
5634 int *num_file;
5635 char_u ***file;
5637 int i;
5638 char_u *s;
5640 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5641 if (*file == NULL)
5642 return FAIL;
5643 for (i = 0; i < num_pat; i++)
5645 s = vim_strsave(pat[i]);
5646 if (s != NULL)
5647 /* Be compatible with expand_filename(): halve the number of
5648 * backslashes. */
5649 backslash_halve(s);
5650 (*file)[i] = s;
5652 *num_file = num_pat;
5653 return OK;
5655 #endif
5659 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5660 * expand.
5663 mch_has_exp_wildcard(p)
5664 char_u *p;
5666 for ( ; *p; mb_ptr_adv(p))
5668 #ifndef OS2
5669 if (*p == '\\' && p[1] != NUL)
5670 ++p;
5671 else
5672 #endif
5673 if (vim_strchr((char_u *)
5674 #ifdef VMS
5675 "*?%"
5676 #else
5677 # ifdef OS2
5678 "*?"
5679 # else
5680 "*?[{'"
5681 # endif
5682 #endif
5683 , *p) != NULL)
5684 return TRUE;
5686 return FALSE;
5690 * Return TRUE if the string "p" contains a wildcard.
5691 * Don't recognize '~' at the end as a wildcard.
5694 mch_has_wildcard(p)
5695 char_u *p;
5697 for ( ; *p; mb_ptr_adv(p))
5699 #ifndef OS2
5700 if (*p == '\\' && p[1] != NUL)
5701 ++p;
5702 else
5703 #endif
5704 if (vim_strchr((char_u *)
5705 #ifdef VMS
5706 "*?%$"
5707 #else
5708 # ifdef OS2
5709 # ifdef VIM_BACKTICK
5710 "*?$`"
5711 # else
5712 "*?$"
5713 # endif
5714 # else
5715 "*?[{`'$"
5716 # endif
5717 #endif
5718 , *p) != NULL
5719 || (*p == '~' && p[1] != NUL))
5720 return TRUE;
5722 return FALSE;
5725 #ifndef __EMX__
5726 static int
5727 have_wildcard(num, file)
5728 int num;
5729 char_u **file;
5731 int i;
5733 for (i = 0; i < num; i++)
5734 if (mch_has_wildcard(file[i]))
5735 return 1;
5736 return 0;
5739 static int
5740 have_dollars(num, file)
5741 int num;
5742 char_u **file;
5744 int i;
5746 for (i = 0; i < num; i++)
5747 if (vim_strchr(file[i], '$') != NULL)
5748 return TRUE;
5749 return FALSE;
5751 #endif /* ifndef __EMX__ */
5753 #ifndef HAVE_RENAME
5755 * Scaled-down version of rename(), which is missing in Xenix.
5756 * This version can only move regular files and will fail if the
5757 * destination exists.
5760 mch_rename(src, dest)
5761 const char *src, *dest;
5763 struct stat st;
5765 if (stat(dest, &st) >= 0) /* fail if destination exists */
5766 return -1;
5767 if (link(src, dest) != 0) /* link file to new name */
5768 return -1;
5769 if (mch_remove(src) == 0) /* delete link to old name */
5770 return 0;
5771 return -1;
5773 #endif /* !HAVE_RENAME */
5775 #ifdef FEAT_MOUSE_GPM
5777 * Initializes connection with gpm (if it isn't already opened)
5778 * Return 1 if succeeded (or connection already opened), 0 if failed
5780 static int
5781 gpm_open()
5783 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5785 if (!gpm_flag)
5787 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5788 gpm_connect.defaultMask = ~GPM_HARD;
5789 /* Default handling for mouse move*/
5790 gpm_connect.minMod = 0; /* Handle any modifier keys */
5791 gpm_connect.maxMod = 0xffff;
5792 if (Gpm_Open(&gpm_connect, 0) > 0)
5794 /* gpm library tries to handling TSTP causes
5795 * problems. Anyways, we close connection to Gpm whenever
5796 * we are going to suspend or starting an external process
5797 * so we shouldn't have problem with this
5799 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5800 return 1; /* succeed */
5802 if (gpm_fd == -2)
5803 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5804 return 0;
5806 return 1; /* already open */
5810 * Closes connection to gpm
5811 * returns non-zero if connection successfully closed
5813 static void
5814 gpm_close()
5816 if (gpm_flag && gpm_fd >= 0) /* if Open */
5817 Gpm_Close();
5820 /* Reads gpm event and adds special keys to input buf. Returns length of
5821 * generated key sequence.
5822 * This function is made after gui_send_mouse_event
5824 static int
5825 mch_gpm_process()
5827 int button;
5828 static Gpm_Event gpm_event;
5829 char_u string[6];
5830 int_u vim_modifiers;
5831 int row,col;
5832 unsigned char buttons_mask;
5833 unsigned char gpm_modifiers;
5834 static unsigned char old_buttons = 0;
5836 Gpm_GetEvent(&gpm_event);
5838 #ifdef FEAT_GUI
5839 /* Don't put events in the input queue now. */
5840 if (hold_gui_events)
5841 return 0;
5842 #endif
5844 row = gpm_event.y - 1;
5845 col = gpm_event.x - 1;
5847 string[0] = ESC; /* Our termcode */
5848 string[1] = 'M';
5849 string[2] = 'G';
5850 switch (GPM_BARE_EVENTS(gpm_event.type))
5852 case GPM_DRAG:
5853 string[3] = MOUSE_DRAG;
5854 break;
5855 case GPM_DOWN:
5856 buttons_mask = gpm_event.buttons & ~old_buttons;
5857 old_buttons = gpm_event.buttons;
5858 switch (buttons_mask)
5860 case GPM_B_LEFT:
5861 button = MOUSE_LEFT;
5862 break;
5863 case GPM_B_MIDDLE:
5864 button = MOUSE_MIDDLE;
5865 break;
5866 case GPM_B_RIGHT:
5867 button = MOUSE_RIGHT;
5868 break;
5869 default:
5870 return 0;
5871 /*Don't know what to do. Can more than one button be
5872 * reported in one event? */
5874 string[3] = (char_u)(button | 0x20);
5875 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5876 break;
5877 case GPM_UP:
5878 string[3] = MOUSE_RELEASE;
5879 old_buttons &= ~gpm_event.buttons;
5880 break;
5881 default:
5882 return 0;
5884 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5885 gpm_modifiers = gpm_event.modifiers;
5886 vim_modifiers = 0x0;
5887 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5888 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5889 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5891 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
5892 vim_modifiers |= MOUSE_SHIFT;
5894 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
5895 vim_modifiers |= MOUSE_CTRL;
5896 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
5897 vim_modifiers |= MOUSE_ALT;
5898 string[3] |= vim_modifiers;
5899 string[4] = (char_u)(col + ' ' + 1);
5900 string[5] = (char_u)(row + ' ' + 1);
5901 add_to_input_buf(string, 6);
5902 return 6;
5904 #endif /* FEAT_MOUSE_GPM */
5906 #if defined(FEAT_LIBCALL) || defined(PROTO)
5907 typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
5908 typedef char_u * (*INTPROCSTR)__ARGS((int));
5909 typedef int (*STRPROCINT)__ARGS((char_u *));
5910 typedef int (*INTPROCINT)__ARGS((int));
5913 * Call a DLL routine which takes either a string or int param
5914 * and returns an allocated string.
5917 mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
5918 char_u *libname;
5919 char_u *funcname;
5920 char_u *argstring; /* NULL when using a argint */
5921 int argint;
5922 char_u **string_result;/* NULL when using number_result */
5923 int *number_result;
5925 # if defined(USE_DLOPEN)
5926 void *hinstLib;
5927 char *dlerr = NULL;
5928 # else
5929 shl_t hinstLib;
5930 # endif
5931 STRPROCSTR ProcAdd;
5932 INTPROCSTR ProcAddI;
5933 char_u *retval_str = NULL;
5934 int retval_int = 0;
5935 int success = FALSE;
5938 * Get a handle to the DLL module.
5940 # if defined(USE_DLOPEN)
5941 /* First clear any error, it's not cleared by the dlopen() call. */
5942 (void)dlerror();
5944 hinstLib = dlopen((char *)libname, RTLD_LAZY
5945 # ifdef RTLD_LOCAL
5946 | RTLD_LOCAL
5947 # endif
5949 if (hinstLib == NULL)
5951 /* "dlerr" must be used before dlclose() */
5952 dlerr = (char *)dlerror();
5953 if (dlerr != NULL)
5954 EMSG2(_("dlerror = \"%s\""), dlerr);
5956 # else
5957 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
5958 # endif
5960 /* If the handle is valid, try to get the function address. */
5961 if (hinstLib != NULL)
5963 # ifdef HAVE_SETJMP_H
5965 * Catch a crash when calling the library function. For example when
5966 * using a number where a string pointer is expected.
5968 mch_startjmp();
5969 if (SETJMP(lc_jump_env) != 0)
5971 success = FALSE;
5972 # if defined(USE_DLOPEN)
5973 dlerr = NULL;
5974 # endif
5975 mch_didjmp();
5977 else
5978 # endif
5980 retval_str = NULL;
5981 retval_int = 0;
5983 if (argstring != NULL)
5985 # if defined(USE_DLOPEN)
5986 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
5987 dlerr = (char *)dlerror();
5988 # else
5989 if (shl_findsym(&hinstLib, (const char *)funcname,
5990 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
5991 ProcAdd = NULL;
5992 # endif
5993 if ((success = (ProcAdd != NULL
5994 # if defined(USE_DLOPEN)
5995 && dlerr == NULL
5996 # endif
5999 if (string_result == NULL)
6000 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6001 else
6002 retval_str = (ProcAdd)(argstring);
6005 else
6007 # if defined(USE_DLOPEN)
6008 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
6009 dlerr = (char *)dlerror();
6010 # else
6011 if (shl_findsym(&hinstLib, (const char *)funcname,
6012 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6013 ProcAddI = NULL;
6014 # endif
6015 if ((success = (ProcAddI != NULL
6016 # if defined(USE_DLOPEN)
6017 && dlerr == NULL
6018 # endif
6021 if (string_result == NULL)
6022 retval_int = ((INTPROCINT)ProcAddI)(argint);
6023 else
6024 retval_str = (ProcAddI)(argint);
6028 /* Save the string before we free the library. */
6029 /* Assume that a "1" or "-1" result is an illegal pointer. */
6030 if (string_result == NULL)
6031 *number_result = retval_int;
6032 else if (retval_str != NULL
6033 && retval_str != (char_u *)1
6034 && retval_str != (char_u *)-1)
6035 *string_result = vim_strsave(retval_str);
6038 # ifdef HAVE_SETJMP_H
6039 mch_endjmp();
6040 # ifdef SIGHASARG
6041 if (lc_signal != 0)
6043 int i;
6045 /* try to find the name of this signal */
6046 for (i = 0; signal_info[i].sig != -1; i++)
6047 if (lc_signal == signal_info[i].sig)
6048 break;
6049 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6051 # endif
6052 # endif
6054 # if defined(USE_DLOPEN)
6055 /* "dlerr" must be used before dlclose() */
6056 if (dlerr != NULL)
6057 EMSG2(_("dlerror = \"%s\""), dlerr);
6059 /* Free the DLL module. */
6060 (void)dlclose(hinstLib);
6061 # else
6062 (void)shl_unload(hinstLib);
6063 # endif
6066 if (!success)
6068 EMSG2(_(e_libcall), funcname);
6069 return FAIL;
6072 return OK;
6074 #endif
6076 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6077 static int xterm_trace = -1; /* default: disabled */
6078 static int xterm_button;
6081 * Setup a dummy window for X selections in a terminal.
6083 void
6084 setup_term_clip()
6086 int z = 0;
6087 char *strp = "";
6088 Widget AppShell;
6090 if (!x_connect_to_server())
6091 return;
6093 open_app_context();
6094 if (app_context != NULL && xterm_Shell == (Widget)0)
6096 int (*oldhandler)();
6097 #if defined(HAVE_SETJMP_H)
6098 int (*oldIOhandler)();
6099 #endif
6100 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6101 struct timeval start_tv;
6103 if (p_verbose > 0)
6104 gettimeofday(&start_tv, NULL);
6105 # endif
6107 /* Ignore X errors while opening the display */
6108 oldhandler = XSetErrorHandler(x_error_check);
6110 #if defined(HAVE_SETJMP_H)
6111 /* Ignore X IO errors while opening the display */
6112 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6113 mch_startjmp();
6114 if (SETJMP(lc_jump_env) != 0)
6116 mch_didjmp();
6117 xterm_dpy = NULL;
6119 else
6120 #endif
6122 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6123 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6124 #if defined(HAVE_SETJMP_H)
6125 mch_endjmp();
6126 #endif
6129 #if defined(HAVE_SETJMP_H)
6130 /* Now handle X IO errors normally. */
6131 (void)XSetIOErrorHandler(oldIOhandler);
6132 #endif
6133 /* Now handle X errors normally. */
6134 (void)XSetErrorHandler(oldhandler);
6136 if (xterm_dpy == NULL)
6138 if (p_verbose > 0)
6139 verb_msg((char_u *)_("Opening the X display failed"));
6140 return;
6143 /* Catch terminating error of the X server connection. */
6144 (void)XSetIOErrorHandler(x_IOerror_handler);
6146 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6147 if (p_verbose > 0)
6149 verbose_enter();
6150 xopen_message(&start_tv);
6151 verbose_leave();
6153 # endif
6155 /* Create a Shell to make converters work. */
6156 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6157 applicationShellWidgetClass, xterm_dpy,
6158 NULL);
6159 if (AppShell == (Widget)0)
6160 return;
6161 xterm_Shell = XtVaCreatePopupShell("VIM",
6162 topLevelShellWidgetClass, AppShell,
6163 XtNmappedWhenManaged, 0,
6164 XtNwidth, 1,
6165 XtNheight, 1,
6166 NULL);
6167 if (xterm_Shell == (Widget)0)
6168 return;
6170 x11_setup_atoms(xterm_dpy);
6171 if (x11_display == NULL)
6172 x11_display = xterm_dpy;
6174 XtRealizeWidget(xterm_Shell);
6175 XSync(xterm_dpy, False);
6176 xterm_update();
6178 if (xterm_Shell != (Widget)0)
6180 clip_init(TRUE);
6181 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6182 x11_window = (Window)atol(strp);
6183 /* Check if $WINDOWID is valid. */
6184 if (test_x11_window(xterm_dpy) == FAIL)
6185 x11_window = 0;
6186 if (x11_window != 0)
6187 xterm_trace = 0;
6191 void
6192 start_xterm_trace(button)
6193 int button;
6195 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6196 return;
6197 xterm_trace = 1;
6198 xterm_button = button;
6199 do_xterm_trace();
6203 void
6204 stop_xterm_trace()
6206 if (xterm_trace < 0)
6207 return;
6208 xterm_trace = 0;
6212 * Query the xterm pointer and generate mouse termcodes if necessary
6213 * return TRUE if dragging is active, else FALSE
6215 static int
6216 do_xterm_trace()
6218 Window root, child;
6219 int root_x, root_y;
6220 int win_x, win_y;
6221 int row, col;
6222 int_u mask_return;
6223 char_u buf[50];
6224 char_u *strp;
6225 long got_hints;
6226 static char_u *mouse_code;
6227 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6228 static int prev_row = 0, prev_col = 0;
6229 static XSizeHints xterm_hints;
6231 if (xterm_trace <= 0)
6232 return FALSE;
6234 if (xterm_trace == 1)
6236 /* Get the hints just before tracking starts. The font size might
6237 * have changed recently. */
6238 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6239 || !(got_hints & PResizeInc)
6240 || xterm_hints.width_inc <= 1
6241 || xterm_hints.height_inc <= 1)
6243 xterm_trace = -1; /* Not enough data -- disable tracing */
6244 return FALSE;
6247 /* Rely on the same mouse code for the duration of this */
6248 mouse_code = find_termcode(mouse_name);
6249 prev_row = mouse_row;
6250 prev_row = mouse_col;
6251 xterm_trace = 2;
6253 /* Find the offset of the chars, there might be a scrollbar on the
6254 * left of the window and/or a menu on the top (eterm etc.) */
6255 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6256 &win_x, &win_y, &mask_return);
6257 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6258 - (xterm_hints.height_inc / 2);
6259 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6260 xterm_hints.y = 2;
6261 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6262 - (xterm_hints.width_inc / 2);
6263 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6264 xterm_hints.x = 2;
6265 return TRUE;
6267 if (mouse_code == NULL)
6269 xterm_trace = 0;
6270 return FALSE;
6273 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6274 &win_x, &win_y, &mask_return);
6276 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6277 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6278 if (row == prev_row && col == prev_col)
6279 return TRUE;
6281 STRCPY(buf, mouse_code);
6282 strp = buf + STRLEN(buf);
6283 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6284 *strp++ = (char_u)(col + ' ' + 1);
6285 *strp++ = (char_u)(row + ' ' + 1);
6286 *strp = 0;
6287 add_to_input_buf(buf, STRLEN(buf));
6289 prev_row = row;
6290 prev_col = col;
6291 return TRUE;
6294 # if defined(FEAT_GUI) || defined(PROTO)
6296 * Destroy the display, window and app_context. Required for GTK.
6298 void
6299 clear_xterm_clip()
6301 if (xterm_Shell != (Widget)0)
6303 XtDestroyWidget(xterm_Shell);
6304 xterm_Shell = (Widget)0;
6306 if (xterm_dpy != NULL)
6308 # if 0
6309 /* Lesstif and Solaris crash here, lose some memory */
6310 XtCloseDisplay(xterm_dpy);
6311 # endif
6312 if (x11_display == xterm_dpy)
6313 x11_display = NULL;
6314 xterm_dpy = NULL;
6316 # if 0
6317 if (app_context != (XtAppContext)NULL)
6319 /* Lesstif and Solaris crash here, lose some memory */
6320 XtDestroyApplicationContext(app_context);
6321 app_context = (XtAppContext)NULL;
6323 # endif
6325 # endif
6328 * Catch up with any queued X events. This may put keyboard input into the
6329 * input buffer, call resize call-backs, trigger timers etc. If there is
6330 * nothing in the X event queue (& no timers pending), then we return
6331 * immediately.
6333 static void
6334 xterm_update()
6336 XEvent event;
6338 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6340 XtAppNextEvent(app_context, &event);
6341 #ifdef FEAT_CLIENTSERVER
6343 XPropertyEvent *e = (XPropertyEvent *)&event;
6345 if (e->type == PropertyNotify && e->window == commWindow
6346 && e->atom == commProperty && e->state == PropertyNewValue)
6347 serverEventProc(xterm_dpy, &event);
6349 #endif
6350 XtDispatchEvent(&event);
6355 clip_xterm_own_selection(cbd)
6356 VimClipboard *cbd;
6358 if (xterm_Shell != (Widget)0)
6359 return clip_x11_own_selection(xterm_Shell, cbd);
6360 return FAIL;
6363 void
6364 clip_xterm_lose_selection(cbd)
6365 VimClipboard *cbd;
6367 if (xterm_Shell != (Widget)0)
6368 clip_x11_lose_selection(xterm_Shell, cbd);
6371 void
6372 clip_xterm_request_selection(cbd)
6373 VimClipboard *cbd;
6375 if (xterm_Shell != (Widget)0)
6376 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6379 void
6380 clip_xterm_set_selection(cbd)
6381 VimClipboard *cbd;
6383 clip_x11_set_selection(cbd);
6385 #endif
6388 #if defined(USE_XSMP) || defined(PROTO)
6390 * Code for X Session Management Protocol.
6392 static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6393 static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6394 static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6395 static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6396 static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6399 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6400 static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6403 * This is our chance to ask the user if they want to save,
6404 * or abort the logout
6406 /*ARGSUSED*/
6407 static void
6408 xsmp_handle_interaction(smc_conn, client_data)
6409 SmcConn smc_conn;
6410 SmPointer client_data;
6412 cmdmod_T save_cmdmod;
6413 int cancel_shutdown = False;
6415 save_cmdmod = cmdmod;
6416 cmdmod.confirm = TRUE;
6417 if (check_changed_any(FALSE))
6418 /* Mustn't logout */
6419 cancel_shutdown = True;
6420 cmdmod = save_cmdmod;
6421 setcursor(); /* position cursor */
6422 out_flush();
6424 /* Done interaction */
6425 SmcInteractDone(smc_conn, cancel_shutdown);
6427 /* Finish off
6428 * Only end save-yourself here if we're not cancelling shutdown;
6429 * we'll get a cancelled callback later in which we'll end it.
6430 * Hopefully get around glitchy SMs (like GNOME-1)
6432 if (!cancel_shutdown)
6434 xsmp.save_yourself = False;
6435 SmcSaveYourselfDone(smc_conn, True);
6438 # endif
6441 * Callback that starts save-yourself.
6443 /*ARGSUSED*/
6444 static void
6445 xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6446 shutdown, interact_style, fast)
6447 SmcConn smc_conn;
6448 SmPointer client_data;
6449 int save_type;
6450 Bool shutdown;
6451 int interact_style;
6452 Bool fast;
6454 /* Handle already being in saveyourself */
6455 if (xsmp.save_yourself)
6456 SmcSaveYourselfDone(smc_conn, True);
6457 xsmp.save_yourself = True;
6458 xsmp.shutdown = shutdown;
6460 /* First up, preserve all files */
6461 out_flush();
6462 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6464 if (p_verbose > 0)
6465 verb_msg((char_u *)_("XSMP handling save-yourself request"));
6467 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6468 /* Now see if we can ask about unsaved files */
6469 if (shutdown && !fast && gui.in_use)
6470 /* Need to interact with user, but need SM's permission */
6471 SmcInteractRequest(smc_conn, SmDialogError,
6472 xsmp_handle_interaction, client_data);
6473 else
6474 # endif
6476 /* Can stop the cycle here */
6477 SmcSaveYourselfDone(smc_conn, True);
6478 xsmp.save_yourself = False;
6484 * Callback to warn us of imminent death.
6486 /*ARGSUSED*/
6487 static void
6488 xsmp_die(smc_conn, client_data)
6489 SmcConn smc_conn;
6490 SmPointer client_data;
6492 xsmp_close();
6494 /* quit quickly leaving swapfiles for modified buffers behind */
6495 getout_preserve_modified(0);
6500 * Callback to tell us that save-yourself has completed.
6502 /*ARGSUSED*/
6503 static void
6504 xsmp_save_complete(smc_conn, client_data)
6505 SmcConn smc_conn;
6506 SmPointer client_data;
6508 xsmp.save_yourself = False;
6513 * Callback to tell us that an instigated shutdown was cancelled
6514 * (maybe even by us)
6516 /*ARGSUSED*/
6517 static void
6518 xsmp_shutdown_cancelled(smc_conn, client_data)
6519 SmcConn smc_conn;
6520 SmPointer client_data;
6522 if (xsmp.save_yourself)
6523 SmcSaveYourselfDone(smc_conn, True);
6524 xsmp.save_yourself = False;
6525 xsmp.shutdown = False;
6530 * Callback to tell us that a new ICE connection has been established.
6532 /*ARGSUSED*/
6533 static void
6534 xsmp_ice_connection(iceConn, clientData, opening, watchData)
6535 IceConn iceConn;
6536 IcePointer clientData;
6537 Bool opening;
6538 IcePointer *watchData;
6540 /* Intercept creation of ICE connection fd */
6541 if (opening)
6543 xsmp_icefd = IceConnectionNumber(iceConn);
6544 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6549 /* Handle any ICE processing that's required; return FAIL if SM lost */
6551 xsmp_handle_requests()
6553 Bool rep;
6555 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6556 == IceProcessMessagesIOError)
6558 /* Lost ICE */
6559 if (p_verbose > 0)
6560 verb_msg((char_u *)_("XSMP lost ICE connection"));
6561 xsmp_close();
6562 return FAIL;
6564 else
6565 return OK;
6568 static int dummy;
6570 /* Set up X Session Management Protocol */
6571 void
6572 xsmp_init(void)
6574 char errorstring[80];
6575 SmcCallbacks smcallbacks;
6576 #if 0
6577 SmPropValue smname;
6578 SmProp smnameprop;
6579 SmProp *smprops[1];
6580 #endif
6582 if (p_verbose > 0)
6583 verb_msg((char_u *)_("XSMP opening connection"));
6585 xsmp.save_yourself = xsmp.shutdown = False;
6587 /* Set up SM callbacks - must have all, even if they're not used */
6588 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6589 smcallbacks.save_yourself.client_data = NULL;
6590 smcallbacks.die.callback = xsmp_die;
6591 smcallbacks.die.client_data = NULL;
6592 smcallbacks.save_complete.callback = xsmp_save_complete;
6593 smcallbacks.save_complete.client_data = NULL;
6594 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6595 smcallbacks.shutdown_cancelled.client_data = NULL;
6597 /* Set up a watch on ICE connection creations. The "dummy" argument is
6598 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6599 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6601 if (p_verbose > 0)
6602 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
6603 return;
6606 /* Create an SM connection */
6607 xsmp.smcconn = SmcOpenConnection(
6608 NULL,
6609 NULL,
6610 SmProtoMajor,
6611 SmProtoMinor,
6612 SmcSaveYourselfProcMask | SmcDieProcMask
6613 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6614 &smcallbacks,
6615 NULL,
6616 &xsmp.clientid,
6617 sizeof(errorstring),
6618 errorstring);
6619 if (xsmp.smcconn == NULL)
6621 char errorreport[132];
6623 if (p_verbose > 0)
6625 vim_snprintf(errorreport, sizeof(errorreport),
6626 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6627 verb_msg((char_u *)errorreport);
6629 return;
6631 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6633 #if 0
6634 /* ID ourselves */
6635 smname.value = "vim";
6636 smname.length = 3;
6637 smnameprop.name = "SmProgram";
6638 smnameprop.type = "SmARRAY8";
6639 smnameprop.num_vals = 1;
6640 smnameprop.vals = &smname;
6642 smprops[0] = &smnameprop;
6643 SmcSetProperties(xsmp.smcconn, 1, smprops);
6644 #endif
6648 /* Shut down XSMP comms. */
6649 void
6650 xsmp_close()
6652 if (xsmp_icefd != -1)
6654 SmcCloseConnection(xsmp.smcconn, 0, NULL);
6655 vim_free(xsmp.clientid);
6656 xsmp.clientid = NULL;
6657 xsmp_icefd = -1;
6660 #endif /* USE_XSMP */
6663 #ifdef EBCDIC
6664 /* Translate character to its CTRL- value */
6665 char CtrlTable[] =
6667 /* 00 - 5E */
6668 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6669 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6670 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6671 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6672 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6673 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6674 /* ^ */ 0x1E,
6675 /* - */ 0x1F,
6676 /* 61 - 6C */
6677 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6678 /* _ */ 0x1F,
6679 /* 6E - 80 */
6680 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6681 /* a */ 0x01,
6682 /* b */ 0x02,
6683 /* c */ 0x03,
6684 /* d */ 0x37,
6685 /* e */ 0x2D,
6686 /* f */ 0x2E,
6687 /* g */ 0x2F,
6688 /* h */ 0x16,
6689 /* i */ 0x05,
6690 /* 8A - 90 */
6691 0, 0, 0, 0, 0, 0, 0,
6692 /* j */ 0x15,
6693 /* k */ 0x0B,
6694 /* l */ 0x0C,
6695 /* m */ 0x0D,
6696 /* n */ 0x0E,
6697 /* o */ 0x0F,
6698 /* p */ 0x10,
6699 /* q */ 0x11,
6700 /* r */ 0x12,
6701 /* 9A - A1 */
6702 0, 0, 0, 0, 0, 0, 0, 0,
6703 /* s */ 0x13,
6704 /* t */ 0x3C,
6705 /* u */ 0x3D,
6706 /* v */ 0x32,
6707 /* w */ 0x26,
6708 /* x */ 0x18,
6709 /* y */ 0x19,
6710 /* z */ 0x3F,
6711 /* AA - AC */
6712 0, 0, 0,
6713 /* [ */ 0x27,
6714 /* AE - BC */
6715 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6716 /* ] */ 0x1D,
6717 /* BE - C0 */ 0, 0, 0,
6718 /* A */ 0x01,
6719 /* B */ 0x02,
6720 /* C */ 0x03,
6721 /* D */ 0x37,
6722 /* E */ 0x2D,
6723 /* F */ 0x2E,
6724 /* G */ 0x2F,
6725 /* H */ 0x16,
6726 /* I */ 0x05,
6727 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6728 /* J */ 0x15,
6729 /* K */ 0x0B,
6730 /* L */ 0x0C,
6731 /* M */ 0x0D,
6732 /* N */ 0x0E,
6733 /* O */ 0x0F,
6734 /* P */ 0x10,
6735 /* Q */ 0x11,
6736 /* R */ 0x12,
6737 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6738 /* \ */ 0x1C,
6739 /* E1 */ 0,
6740 /* S */ 0x13,
6741 /* T */ 0x3C,
6742 /* U */ 0x3D,
6743 /* V */ 0x32,
6744 /* W */ 0x26,
6745 /* X */ 0x18,
6746 /* Y */ 0x19,
6747 /* Z */ 0x3F,
6748 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6749 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6752 char MetaCharTable[]=
6753 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6754 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6755 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6756 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6757 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6761 /* TODO: Use characters NOT numbers!!! */
6762 char CtrlCharTable[]=
6763 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6764 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6765 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6766 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6767 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6771 #endif