blob: 703b93231c0e0a08c6e125430e7bc020f9ddb26d [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * OS/2 port by Paul Slootman
5 * VMS merge by Zoltan Arpadffy
6 *
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.
10 */
11
12/*
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.
16 *
17 * A lot of this file was originally written by Juergen Weigert and later
18 * changed beyond recognition.
19 */
20
21/*
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?
27 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000028#if !defined(__APPLE__) && !defined(__TANDEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +000029# define select select_declared_wrong
30#endif
31
32#include "vim.h"
33
Bram Moolenaar325b7a22004-07-05 15:58:32 +000034#ifdef FEAT_MZSCHEME
35# include "if_mzsch.h"
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "os_unixx.h" /* unix includes for os_unix.c only */
39
40#ifdef USE_XSMP
41# include <X11/SM/SMlib.h>
42#endif
43
Bram Moolenaar588ebeb2008-05-07 17:09:24 +000044#ifdef HAVE_SELINUX
45# include <selinux/selinux.h>
46static int selinux_enabled = -1;
47#endif
48
Bram Moolenaar071d4272004-06-13 20:20:40 +000049/*
50 * Use this prototype for select, some include files have a wrong prototype
51 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000052#ifndef __TANDEM
53# undef select
54# ifdef __BEOS__
55# define select beos_select
56# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
Bram Moolenaara2442432007-04-26 14:26:37 +000059#ifdef __CYGWIN__
60# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000061# include <cygwin/version.h>
62# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
63 * for cygwin_conv_path() */
Bram Moolenaara2442432007-04-26 14:26:37 +000064# endif
65#endif
66
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#if defined(HAVE_SELECT)
68extern int select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *));
69#endif
70
71#ifdef FEAT_MOUSE_GPM
72# include <gpm.h>
73/* <linux/keyboard.h> contains defines conflicting with "keymap.h",
74 * I just copied relevant defines here. A cleaner solution would be to put gpm
75 * code into separate file and include there linux/keyboard.h
76 */
77/* #include <linux/keyboard.h> */
78# define KG_SHIFT 0
79# define KG_CTRL 2
80# define KG_ALT 3
81# define KG_ALTGR 1
82# define KG_SHIFTL 4
83# define KG_SHIFTR 5
84# define KG_CTRLL 6
85# define KG_CTRLR 7
86# define KG_CAPSSHIFT 8
87
88static void gpm_close __ARGS((void));
89static int gpm_open __ARGS((void));
90static int mch_gpm_process __ARGS((void));
91#endif
92
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000093#ifdef FEAT_SYSMOUSE
94# include <sys/consio.h>
95# include <sys/fbio.h>
96
97static int sysmouse_open __ARGS((void));
98static void sysmouse_close __ARGS((void));
99static RETSIGTYPE sig_sysmouse __ARGS(SIGPROTOARG);
100#endif
101
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102/*
103 * end of autoconf section. To be extended...
104 */
105
106/* Are the following #ifdefs still required? And why? Is that for X11? */
107
108#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
109# ifdef SIGWINCH
110# undef SIGWINCH
111# endif
112# ifdef TIOCGWINSZ
113# undef TIOCGWINSZ
114# endif
115#endif
116
117#if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
118# define SIGWINCH SIGWINDOW
119#endif
120
121#ifdef FEAT_X11
122# include <X11/Xlib.h>
123# include <X11/Xutil.h>
124# include <X11/Xatom.h>
125# ifdef FEAT_XCLIPBOARD
126# include <X11/Intrinsic.h>
127# include <X11/Shell.h>
128# include <X11/StringDefs.h>
129static Widget xterm_Shell = (Widget)0;
130static void xterm_update __ARGS((void));
131# endif
132
133# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
134Window x11_window = 0;
135# endif
136Display *x11_display = NULL;
137
138# ifdef FEAT_TITLE
139static int get_x11_windis __ARGS((void));
140static void set_x11_title __ARGS((char_u *));
141static void set_x11_icon __ARGS((char_u *));
142# endif
143#endif
144
145#ifdef FEAT_TITLE
146static int get_x11_title __ARGS((int));
147static int get_x11_icon __ARGS((int));
148
149static char_u *oldtitle = NULL;
150static int did_set_title = FALSE;
151static char_u *oldicon = NULL;
152static int did_set_icon = FALSE;
153#endif
154
155static void may_core_dump __ARGS((void));
156
157static int WaitForChar __ARGS((long));
158#if defined(__BEOS__)
159int RealWaitForChar __ARGS((int, long, int *));
160#else
161static int RealWaitForChar __ARGS((int, long, int *));
162#endif
163
164#ifdef FEAT_XCLIPBOARD
165static int do_xterm_trace __ARGS((void));
Bram Moolenaarcf851ce2005-06-16 21:52:47 +0000166# define XT_TRACE_DELAY 50 /* delay for xterm tracing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167#endif
168
169static void handle_resize __ARGS((void));
170
171#if defined(SIGWINCH)
172static RETSIGTYPE sig_winch __ARGS(SIGPROTOARG);
173#endif
174#if defined(SIGINT)
175static RETSIGTYPE catch_sigint __ARGS(SIGPROTOARG);
176#endif
177#if defined(SIGPWR)
178static RETSIGTYPE catch_sigpwr __ARGS(SIGPROTOARG);
179#endif
180#if defined(SIGALRM) && defined(FEAT_X11) \
181 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
182# define SET_SIG_ALARM
183static RETSIGTYPE sig_alarm __ARGS(SIGPROTOARG);
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000184/* volatile because it is used in signal handler sig_alarm(). */
185static volatile int sig_alarm_called;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186#endif
187static RETSIGTYPE deathtrap __ARGS(SIGPROTOARG);
188
Bram Moolenaardf177f62005-02-22 08:39:57 +0000189static void catch_int_signal __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190static void set_signals __ARGS((void));
191static void catch_signals __ARGS((RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()));
192#ifndef __EMX__
193static int have_wildcard __ARGS((int, char_u **));
194static int have_dollars __ARGS((int, char_u **));
195#endif
196
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197#ifndef __EMX__
198static int save_patterns __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file));
199#endif
200
201#ifndef SIG_ERR
202# define SIG_ERR ((RETSIGTYPE (*)())-1)
203#endif
204
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000205/* volatile because it is used in signal handler sig_winch(). */
206static volatile int do_resize = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207#ifndef __EMX__
208static char_u *extra_shell_arg = NULL;
209static int show_shell_mess = TRUE;
210#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000211/* volatile because it is used in signal handler deathtrap(). */
212static volatile int deadly_signal = 0; /* The signal we caught */
213/* volatile because it is used in signal handler deathtrap(). */
214static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215
216static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
217
218#ifdef USE_XSMP
219typedef struct
220{
221 SmcConn smcconn; /* The SM connection ID */
222 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaare8208012008-06-20 09:59:25 +0000223 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 Bool save_yourself; /* If we're in the middle of a save_yourself */
225 Bool shutdown; /* If we're in shutdown mode */
226} xsmp_config_T;
227
228static xsmp_config_T xsmp;
229#endif
230
231#ifdef SYS_SIGLIST_DECLARED
232/*
233 * I have seen
234 * extern char *_sys_siglist[NSIG];
235 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
236 * that describe the signals. That is nearly what we want here. But
237 * autoconf does only check for sys_siglist (without the underscore), I
238 * do not want to change everything today.... jw.
239 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
240 */
241#endif
242
243static struct signalinfo
244{
245 int sig; /* Signal number, eg. SIGSEGV etc */
246 char *name; /* Signal name (not char_u!). */
247 char deadly; /* Catch as a deadly signal? */
248} signal_info[] =
249{
250#ifdef SIGHUP
251 {SIGHUP, "HUP", TRUE},
252#endif
253#ifdef SIGQUIT
254 {SIGQUIT, "QUIT", TRUE},
255#endif
256#ifdef SIGILL
257 {SIGILL, "ILL", TRUE},
258#endif
259#ifdef SIGTRAP
260 {SIGTRAP, "TRAP", TRUE},
261#endif
262#ifdef SIGABRT
263 {SIGABRT, "ABRT", TRUE},
264#endif
265#ifdef SIGEMT
266 {SIGEMT, "EMT", TRUE},
267#endif
268#ifdef SIGFPE
269 {SIGFPE, "FPE", TRUE},
270#endif
271#ifdef SIGBUS
272 {SIGBUS, "BUS", TRUE},
273#endif
274#ifdef SIGSEGV
275 {SIGSEGV, "SEGV", TRUE},
276#endif
277#ifdef SIGSYS
278 {SIGSYS, "SYS", TRUE},
279#endif
280#ifdef SIGALRM
281 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
282#endif
283#ifdef SIGTERM
284 {SIGTERM, "TERM", TRUE},
285#endif
286#ifdef SIGVTALRM
287 {SIGVTALRM, "VTALRM", TRUE},
288#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000289#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
290 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
291 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 {SIGPROF, "PROF", TRUE},
293#endif
294#ifdef SIGXCPU
295 {SIGXCPU, "XCPU", TRUE},
296#endif
297#ifdef SIGXFSZ
298 {SIGXFSZ, "XFSZ", TRUE},
299#endif
300#ifdef SIGUSR1
301 {SIGUSR1, "USR1", TRUE},
302#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000303#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
304 /* Used for sysmouse handling */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 {SIGUSR2, "USR2", TRUE},
306#endif
307#ifdef SIGINT
308 {SIGINT, "INT", FALSE},
309#endif
310#ifdef SIGWINCH
311 {SIGWINCH, "WINCH", FALSE},
312#endif
313#ifdef SIGTSTP
314 {SIGTSTP, "TSTP", FALSE},
315#endif
316#ifdef SIGPIPE
317 {SIGPIPE, "PIPE", FALSE},
318#endif
319 {-1, "Unknown!", FALSE}
320};
321
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000322/*
323 * Write s[len] to the screen.
324 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 void
326mch_write(s, len)
327 char_u *s;
328 int len;
329{
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000330 ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 if (p_wd) /* Unix is too fast, slow down a bit more */
332 RealWaitForChar(read_cmd_fd, p_wd, NULL);
333}
334
335/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000336 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 * Get a characters from the keyboard.
338 * Return the number of characters that are available.
339 * If wtime == 0 do not wait for characters.
340 * If wtime == n wait a short time for characters.
341 * If wtime == -1 wait forever for characters.
342 */
343 int
344mch_inchar(buf, maxlen, wtime, tb_change_cnt)
345 char_u *buf;
346 int maxlen;
347 long wtime; /* don't use "time", MIPS cannot handle it */
348 int tb_change_cnt;
349{
350 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351
352 /* Check if window changed size while we were busy, perhaps the ":set
353 * columns=99" command was used. */
354 while (do_resize)
355 handle_resize();
356
357 if (wtime >= 0)
358 {
359 while (WaitForChar(wtime) == 0) /* no character available */
360 {
361 if (!do_resize) /* return if not interrupted by resize */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 handle_resize();
364 }
365 }
366 else /* wtime == -1 */
367 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 /*
369 * If there is no character available within 'updatetime' seconds
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000370 * flush all the swap files to disk.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 * Also done when interrupted by SIGWINCH.
372 */
373 if (WaitForChar(p_ut) == 0)
374 {
375#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +0000376 if (trigger_cursorhold() && maxlen >= 3
377 && !typebuf_changed(tb_change_cnt))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 {
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000379 buf[0] = K_SPECIAL;
380 buf[1] = KS_EXTRA;
381 buf[2] = (int)KE_CURSORHOLD;
382 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384#endif
Bram Moolenaard4098f52005-06-27 22:37:13 +0000385 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 }
387 }
388
389 for (;;) /* repeat until we got a character */
390 {
391 while (do_resize) /* window changed size */
392 handle_resize();
393 /*
394 * we want to be interrupted by the winch signal
395 */
396 WaitForChar(-1L);
397 if (do_resize) /* interrupted by SIGWINCH signal */
398 continue;
399
400 /* If input was put directly in typeahead buffer bail out here. */
401 if (typebuf_changed(tb_change_cnt))
402 return 0;
403
404 /*
405 * For some terminals we only get one character at a time.
406 * We want the get all available characters, so we could keep on
407 * trying until none is available
408 * For some other terminals this is quite slow, that's why we don't do
409 * it.
410 */
411 len = read_from_input_buf(buf, (long)maxlen);
412 if (len > 0)
413 {
414#ifdef OS2
415 int i;
416
417 for (i = 0; i < len; i++)
418 if (buf[i] == 0)
419 buf[i] = K_NUL;
420#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 return len;
422 }
423 }
424}
425
426 static void
427handle_resize()
428{
429 do_resize = FALSE;
430 shell_resized();
431}
432
433/*
434 * return non-zero if a character is available
435 */
436 int
437mch_char_avail()
438{
439 return WaitForChar(0L);
440}
441
442#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
443# ifdef HAVE_SYS_RESOURCE_H
444# include <sys/resource.h>
445# endif
446# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
447# include <sys/sysctl.h>
448# endif
449# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
450# include <sys/sysinfo.h>
451# endif
452
453/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000454 * Return total amount of memory available in Kbyte.
455 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 */
457/* ARGSUSED */
458 long_u
459mch_total_mem(special)
460 int special;
461{
462# ifdef __EMX__
Bram Moolenaar914572a2007-05-01 11:37:47 +0000463 return ulimit(3, 0L) >> 10; /* always 32MB? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464# else
465 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000466 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
468# ifdef HAVE_SYSCTL
469 int mib[2], physmem;
470 size_t len;
471
472 /* BSD way of getting the amount of RAM available. */
473 mib[0] = CTL_HW;
474 mib[1] = HW_USERMEM;
475 len = sizeof(physmem);
476 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
477 mem = (long_u)physmem;
478# endif
479
480# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
481 if (mem == 0)
482 {
483 struct sysinfo sinfo;
484
485 /* Linux way of getting amount of RAM available */
486 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000487 {
488# ifdef HAVE_SYSINFO_MEM_UNIT
489 /* avoid overflow as much as possible */
490 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
491 {
492 sinfo.mem_unit = sinfo.mem_unit >> 1;
493 --shiftright;
494 }
495 mem = sinfo.totalram * sinfo.mem_unit;
496# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 mem = sinfo.totalram;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000498# endif
499 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 }
501# endif
502
503# ifdef HAVE_SYSCONF
504 if (mem == 0)
505 {
506 long pagesize, pagecount;
507
508 /* Solaris way of getting amount of RAM available */
509 pagesize = sysconf(_SC_PAGESIZE);
510 pagecount = sysconf(_SC_PHYS_PAGES);
511 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000512 {
513 /* avoid overflow as much as possible */
514 while (shiftright > 0 && (pagesize & 1) == 0)
515 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000516 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000517 --shiftright;
518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000520 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 }
522# endif
523
524 /* Return the minimum of the physical memory and the user limit, because
525 * using more than the user limit may cause Vim to be terminated. */
526# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
527 {
528 struct rlimit rlp;
529
530 if (getrlimit(RLIMIT_DATA, &rlp) == 0
531 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
532# ifdef RLIM_INFINITY
533 && rlp.rlim_cur != RLIM_INFINITY
534# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000535 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000537 {
538 mem = (long_u)rlp.rlim_cur;
539 shiftright = 10;
540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 }
542# endif
543
544 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000545 return mem >> shiftright;
546 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547# endif
548}
549#endif
550
551 void
552mch_delay(msec, ignoreinput)
553 long msec;
554 int ignoreinput;
555{
556 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000557#ifdef FEAT_MZSCHEME
558 long total = msec; /* remember original value */
559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560
561 if (ignoreinput)
562 {
563 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000564 * here. But we don't want QUIT to kill us (CTRL-\ used in a
565 * shell may produce SIGQUIT). */
566 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 old_tmode = curr_tmode;
568 if (curr_tmode == TMODE_RAW)
569 settmode(TMODE_SLEEP);
570
571 /*
572 * Everybody sleeps in a different way...
573 * Prefer nanosleep(), some versions of usleep() can only sleep up to
574 * one second.
575 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000576#ifdef FEAT_MZSCHEME
577 do
578 {
579 /* if total is large enough, wait by portions in p_mzq */
580 if (total > p_mzq)
581 msec = p_mzq;
582 else
583 msec = total;
584 total -= msec;
585#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586#ifdef HAVE_NANOSLEEP
587 {
588 struct timespec ts;
589
590 ts.tv_sec = msec / 1000;
591 ts.tv_nsec = (msec % 1000) * 1000000;
592 (void)nanosleep(&ts, NULL);
593 }
594#else
595# ifdef HAVE_USLEEP
596 while (msec >= 1000)
597 {
598 usleep((unsigned int)(999 * 1000));
599 msec -= 999;
600 }
601 usleep((unsigned int)(msec * 1000));
602# else
603# ifndef HAVE_SELECT
604 poll(NULL, 0, (int)msec);
605# else
606# ifdef __EMX__
607 _sleep2(msec);
608# else
609 {
610 struct timeval tv;
611
612 tv.tv_sec = msec / 1000;
613 tv.tv_usec = (msec % 1000) * 1000;
614 /*
615 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
616 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
617 */
618 select(0, NULL, NULL, NULL, &tv);
619 }
620# endif /* __EMX__ */
621# endif /* HAVE_SELECT */
622# endif /* HAVE_NANOSLEEP */
623#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000624#ifdef FEAT_MZSCHEME
625 }
626 while (total > 0);
627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628
629 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000630 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 }
632 else
633 WaitForChar(msec);
634}
635
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000636#if 0 /* disabled, no longer needed now that regmatch() is not recursive */
637# if defined(HAVE_GETRLIMIT)
638# define HAVE_STACK_LIMIT
639# endif
640#endif
641
642#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
644# define HAVE_CHECK_STACK_GROWTH
645/*
646 * Support for checking for an almost-out-of-stack-space situation.
647 */
648
649/*
650 * Return a pointer to an item on the stack. Used to find out if the stack
651 * grows up or down.
652 */
653static void check_stack_growth __ARGS((char *p));
654static int stack_grows_downwards;
655
656/*
657 * Find out if the stack grows upwards or downwards.
658 * "p" points to a variable on the stack of the caller.
659 */
660 static void
661check_stack_growth(p)
662 char *p;
663{
664 int i;
665
666 stack_grows_downwards = (p > (char *)&i);
667}
668#endif
669
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000670#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671static char *stack_limit = NULL;
672
673#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
674# include <pthread.h>
675# include <pthread_np.h>
676#endif
677
678/*
679 * Find out until how var the stack can grow without getting into trouble.
680 * Called when starting up and when switching to the signal stack in
681 * deathtrap().
682 */
683 static void
684get_stack_limit()
685{
686 struct rlimit rlp;
687 int i;
688 long lim;
689
690 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
691 * limit doesn't fit in a long (rlim_cur might be "long long"). */
692 if (getrlimit(RLIMIT_STACK, &rlp) == 0
693 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
694# ifdef RLIM_INFINITY
695 && rlp.rlim_cur != RLIM_INFINITY
696# endif
697 )
698 {
699 lim = (long)rlp.rlim_cur;
700#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
701 {
702 pthread_attr_t attr;
703 size_t size;
704
705 /* On FreeBSD the initial thread always has a fixed stack size, no
706 * matter what the limits are set to. Normally it's 1 Mbyte. */
707 pthread_attr_init(&attr);
708 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
709 {
710 pthread_attr_getstacksize(&attr, &size);
711 if (lim > (long)size)
712 lim = (long)size;
713 }
714 pthread_attr_destroy(&attr);
715 }
716#endif
717 if (stack_grows_downwards)
718 {
719 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
720 if (stack_limit >= (char *)&i)
721 /* overflow, set to 1/16 of current stack position */
722 stack_limit = (char *)((long)&i / 16L);
723 }
724 else
725 {
726 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
727 if (stack_limit <= (char *)&i)
728 stack_limit = NULL; /* overflow */
729 }
730 }
731}
732
733/*
734 * Return FAIL when running out of stack space.
735 * "p" must point to any variable local to the caller that's on the stack.
736 */
737 int
738mch_stackcheck(p)
739 char *p;
740{
741 if (stack_limit != NULL)
742 {
743 if (stack_grows_downwards)
744 {
745 if (p < stack_limit)
746 return FAIL;
747 }
748 else if (p > stack_limit)
749 return FAIL;
750 }
751 return OK;
752}
753#endif
754
755#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
756/*
757 * Support for using the signal stack.
758 * This helps when we run out of stack space, which causes a SIGSEGV. The
759 * signal handler then must run on another stack, since the normal stack is
760 * completely full.
761 */
762
763#ifndef SIGSTKSZ
764# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
765#endif
766
767# ifdef HAVE_SIGALTSTACK
768static stack_t sigstk; /* for sigaltstack() */
769# else
770static struct sigstack sigstk; /* for sigstack() */
771# endif
772
773static void init_signal_stack __ARGS((void));
774static char *signal_stack;
775
776 static void
777init_signal_stack()
778{
779 if (signal_stack != NULL)
780 {
781# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000782# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
783 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
785 * "struct sigaltstack" needs to be declared. */
786 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
787# endif
788
789# ifdef HAVE_SS_BASE
790 sigstk.ss_base = signal_stack;
791# else
792 sigstk.ss_sp = signal_stack;
793# endif
794 sigstk.ss_size = SIGSTKSZ;
795 sigstk.ss_flags = 0;
796 (void)sigaltstack(&sigstk, NULL);
797# else
798 sigstk.ss_sp = signal_stack;
799 if (stack_grows_downwards)
800 sigstk.ss_sp += SIGSTKSZ - 1;
801 sigstk.ss_onstack = 0;
802 (void)sigstack(&sigstk, NULL);
803# endif
804 }
805}
806#endif
807
808/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000809 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 * will barf when the second argument to signal() is ``wrong''.
811 * Let me try it with a few tricky defines from my own osdef.h (jw).
812 */
813#if defined(SIGWINCH)
814/* ARGSUSED */
815 static RETSIGTYPE
816sig_winch SIGDEFARG(sigarg)
817{
818 /* this is not required on all systems, but it doesn't hurt anybody */
819 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
820 do_resize = TRUE;
821 SIGRETURN;
822}
823#endif
824
825#if defined(SIGINT)
826/* ARGSUSED */
827 static RETSIGTYPE
828catch_sigint SIGDEFARG(sigarg)
829{
830 /* this is not required on all systems, but it doesn't hurt anybody */
831 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
832 got_int = TRUE;
833 SIGRETURN;
834}
835#endif
836
837#if defined(SIGPWR)
838/* ARGSUSED */
839 static RETSIGTYPE
840catch_sigpwr SIGDEFARG(sigarg)
841{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000842 /* this is not required on all systems, but it doesn't hurt anybody */
843 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 /*
845 * I'm not sure we get the SIGPWR signal when the system is really going
846 * down or when the batteries are almost empty. Just preserve the swap
847 * files and don't exit, that can't do any harm.
848 */
849 ml_sync_all(FALSE, FALSE);
850 SIGRETURN;
851}
852#endif
853
854#ifdef SET_SIG_ALARM
855/*
856 * signal function for alarm().
857 */
858/* ARGSUSED */
859 static RETSIGTYPE
860sig_alarm SIGDEFARG(sigarg)
861{
862 /* doesn't do anything, just to break a system call */
863 sig_alarm_called = TRUE;
864 SIGRETURN;
865}
866#endif
867
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000868#if (defined(HAVE_SETJMP_H) \
869 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
870 || defined(FEAT_LIBCALL))) \
871 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872/*
873 * A simplistic version of setjmp() that only allows one level of using.
874 * Don't call twice before calling mch_endjmp()!.
875 * Usage:
876 * mch_startjmp();
877 * if (SETJMP(lc_jump_env) != 0)
878 * {
879 * mch_didjmp();
880 * EMSG("crash!");
881 * }
882 * else
883 * {
884 * do_the_work;
885 * mch_endjmp();
886 * }
887 * Note: Can't move SETJMP() here, because a function calling setjmp() must
888 * not return before the saved environment is used.
889 * Returns OK for normal return, FAIL when the protected code caused a
890 * problem and LONGJMP() was used.
891 */
892 void
893mch_startjmp()
894{
895#ifdef SIGHASARG
896 lc_signal = 0;
897#endif
898 lc_active = TRUE;
899}
900
901 void
902mch_endjmp()
903{
904 lc_active = FALSE;
905}
906
907 void
908mch_didjmp()
909{
910# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
911 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
912 * otherwise catching the signal only works once. */
913 init_signal_stack();
914# endif
915}
916#endif
917
918/*
919 * This function handles deadly signals.
920 * It tries to preserve any swap file and exit properly.
921 * (partly from Elvis).
922 */
923 static RETSIGTYPE
924deathtrap SIGDEFARG(sigarg)
925{
926 static int entered = 0; /* count the number of times we got here.
927 Note: when memory has been corrupted
928 this may get an arbitrary value! */
929#ifdef SIGHASARG
930 int i;
931#endif
932
933#if defined(HAVE_SETJMP_H)
934 /*
935 * Catch a crash in protected code.
936 * Restores the environment saved in lc_jump_env, which looks like
937 * SETJMP() returns 1.
938 */
939 if (lc_active)
940 {
941# if defined(SIGHASARG)
942 lc_signal = sigarg;
943# endif
944 lc_active = FALSE; /* don't jump again */
945 LONGJMP(lc_jump_env, 1);
946 /* NOTREACHED */
947 }
948#endif
949
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000950#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000951# ifdef SIGQUIT
952 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
953 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
954 * pressing CTRL-\, but we don't want Vim to exit then. */
955 if (in_mch_delay && sigarg == SIGQUIT)
956 SIGRETURN;
957# endif
958
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000959 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
960 * here. This avoids that a non-reentrant function is interrupted, e.g.,
961 * free(). Calling free() again may then cause a crash. */
962 if (entered == 0
963 && (0
964# ifdef SIGHUP
965 || sigarg == SIGHUP
966# endif
967# ifdef SIGQUIT
968 || sigarg == SIGQUIT
969# endif
970# ifdef SIGTERM
971 || sigarg == SIGTERM
972# endif
973# ifdef SIGPWR
974 || sigarg == SIGPWR
975# endif
976# ifdef SIGUSR1
977 || sigarg == SIGUSR1
978# endif
979# ifdef SIGUSR2
980 || sigarg == SIGUSR2
981# endif
982 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +0000983 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000984 SIGRETURN;
985#endif
986
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 /* Remember how often we have been called. */
988 ++entered;
989
990#ifdef FEAT_EVAL
991 /* Set the v:dying variable. */
992 set_vim_var_nr(VV_DYING, (long)entered);
993#endif
994
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000995#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 /* Since we are now using the signal stack, need to reset the stack
997 * limit. Otherwise using a regexp will fail. */
998 get_stack_limit();
999#endif
1000
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001001#if 0
1002 /* This is for opening gdb the moment Vim crashes.
1003 * You need to manually adjust the file name and Vim executable name.
1004 * Suggested by SungHyun Nam. */
1005 {
1006# define VI_GDB_FILE "/tmp/vimgdb"
1007# define VIM_NAME "/usr/bin/vim"
1008 FILE *fp = fopen(VI_GDB_FILE, "w");
1009 if (fp)
1010 {
1011 fprintf(fp,
1012 "file %s\n"
1013 "attach %d\n"
1014 "set height 1000\n"
1015 "bt full\n"
1016 , VIM_NAME, getpid());
1017 fclose(fp);
1018 system("xterm -e gdb -x "VI_GDB_FILE);
1019 unlink(VI_GDB_FILE);
1020 }
1021 }
1022#endif
1023
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024#ifdef SIGHASARG
1025 /* try to find the name of this signal */
1026 for (i = 0; signal_info[i].sig != -1; i++)
1027 if (sigarg == signal_info[i].sig)
1028 break;
1029 deadly_signal = sigarg;
1030#endif
1031
1032 full_screen = FALSE; /* don't write message to the GUI, it might be
1033 * part of the problem... */
1034 /*
1035 * If something goes wrong after entering here, we may get here again.
1036 * When this happens, give a message and try to exit nicely (resetting the
1037 * terminal mode, etc.)
1038 * When this happens twice, just exit, don't even try to give a message,
1039 * stack may be corrupt or something weird.
1040 * When this still happens again (or memory was corrupted in such a way
1041 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1042 */
1043 if (entered >= 3)
1044 {
1045 reset_signals(); /* don't catch any signals anymore */
1046 may_core_dump();
1047 if (entered >= 4)
1048 _exit(8);
1049 exit(7);
1050 }
1051 if (entered == 2)
1052 {
1053 OUT_STR(_("Vim: Double signal, exiting\n"));
1054 out_flush();
1055 getout(1);
1056 }
1057
1058#ifdef SIGHASARG
1059 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1060 signal_info[i].name);
1061#else
1062 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1063#endif
1064 preserve_exit(); /* preserve files and exit */
1065
Bram Moolenaar009b2592004-10-24 19:18:58 +00001066#ifdef NBDEBUG
1067 reset_signals();
1068 may_core_dump();
1069 abort();
1070#endif
1071
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 SIGRETURN;
1073}
1074
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001075#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076/*
1077 * On Solaris with multi-threading, suspending might not work immediately.
1078 * Catch the SIGCONT signal, which will be used as an indication whether the
1079 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001080 *
1081 * On Linux, signal is not always handled immediately either.
1082 * See https://bugs.launchpad.net/bugs/291373
1083 *
1084 * volatile because it is used in in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001086static volatile int sigcont_received;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1088
1089/*
1090 * signal handler for SIGCONT
1091 */
1092/* ARGSUSED */
1093 static RETSIGTYPE
1094sigcont_handler SIGDEFARG(sigarg)
1095{
1096 sigcont_received = TRUE;
1097 SIGRETURN;
1098}
1099#endif
1100
1101/*
1102 * If the machine has job control, use it to suspend the program,
1103 * otherwise fake it by starting a new shell.
1104 */
1105 void
1106mch_suspend()
1107{
1108 /* BeOS does have SIGTSTP, but it doesn't work. */
1109#if defined(SIGTSTP) && !defined(__BEOS__)
1110 out_flush(); /* needed to make cursor visible on some systems */
1111 settmode(TMODE_COOK);
1112 out_flush(); /* needed to disable mouse on some systems */
1113
1114# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1115 /* Since we are going to sleep, we can't respond to requests for the X
1116 * selections. Lose them, otherwise other applications will hang. But
1117 * first copy the text to cut buffer 0. */
1118 if (clip_star.owned || clip_plus.owned)
1119 {
1120 x11_export_final_selection();
1121 if (clip_star.owned)
1122 clip_lose_selection(&clip_star);
1123 if (clip_plus.owned)
1124 clip_lose_selection(&clip_plus);
1125 if (x11_display != NULL)
1126 XFlush(x11_display);
1127 }
1128# endif
1129
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001130# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 sigcont_received = FALSE;
1132# endif
1133 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001134# if defined(_REENTRANT) && defined(SIGCONT)
1135 /*
1136 * Wait for the SIGCONT signal to be handled. It generally happens
1137 * immediately, but somehow not all the time. Do not call pause()
1138 * because there would be race condition which would hang Vim if
1139 * signal happened in between the test of sigcont_received and the
1140 * call to pause(). If signal is not yet received, call sleep(0)
1141 * to just yield CPU. Signal should then be received. If somehow
1142 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1143 * further if signal is not received after 1+2+3+4 ms (not expected
1144 * to happen).
1145 */
1146 {
1147 long wait;
1148 for (wait = 0; !sigcont_received && wait <= 3L; wait++)
1149 /* Loop is not entered most of the time */
1150 mch_delay(wait, FALSE);
1151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152# endif
1153
1154# ifdef FEAT_TITLE
1155 /*
1156 * Set oldtitle to NULL, so the current title is obtained again.
1157 */
1158 vim_free(oldtitle);
1159 oldtitle = NULL;
1160# endif
1161 settmode(TMODE_RAW);
1162 need_check_timestamps = TRUE;
1163 did_check_timestamps = FALSE;
1164#else
1165 suspend_shell();
1166#endif
1167}
1168
1169 void
1170mch_init()
1171{
1172 Columns = 80;
1173 Rows = 24;
1174
1175 out_flush();
1176 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001177
Bram Moolenaar56718732006-03-15 22:53:57 +00001178#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001179 mac_conv_init();
1180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181}
1182
1183 static void
1184set_signals()
1185{
1186#if defined(SIGWINCH)
1187 /*
1188 * WINDOW CHANGE signal is handled with sig_winch().
1189 */
1190 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1191#endif
1192
1193 /*
1194 * We want the STOP signal to work, to make mch_suspend() work.
1195 * For "rvim" the STOP signal is ignored.
1196 */
1197#ifdef SIGTSTP
1198 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1199#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001200#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 signal(SIGCONT, sigcont_handler);
1202#endif
1203
1204 /*
1205 * We want to ignore breaking of PIPEs.
1206 */
1207#ifdef SIGPIPE
1208 signal(SIGPIPE, SIG_IGN);
1209#endif
1210
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001212 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213#endif
1214
1215 /*
1216 * Ignore alarm signals (Perl's alarm() generates it).
1217 */
1218#ifdef SIGALRM
1219 signal(SIGALRM, SIG_IGN);
1220#endif
1221
1222 /*
1223 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1224 * work will be lost.
1225 */
1226#ifdef SIGPWR
1227 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1228#endif
1229
1230 /*
1231 * Arrange for other signals to gracefully shutdown Vim.
1232 */
1233 catch_signals(deathtrap, SIG_ERR);
1234
1235#if defined(FEAT_GUI) && defined(SIGHUP)
1236 /*
1237 * When the GUI is running, ignore the hangup signal.
1238 */
1239 if (gui.in_use)
1240 signal(SIGHUP, SIG_IGN);
1241#endif
1242}
1243
Bram Moolenaardf177f62005-02-22 08:39:57 +00001244#if defined(SIGINT) || defined(PROTO)
1245/*
1246 * Catch CTRL-C (only works while in Cooked mode).
1247 */
1248 static void
1249catch_int_signal()
1250{
1251 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1252}
1253#endif
1254
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 void
1256reset_signals()
1257{
1258 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001259#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 /* SIGCONT isn't in the list, because its default action is ignore */
1261 signal(SIGCONT, SIG_DFL);
1262#endif
1263}
1264
1265 static void
1266catch_signals(func_deadly, func_other)
1267 RETSIGTYPE (*func_deadly)();
1268 RETSIGTYPE (*func_other)();
1269{
1270 int i;
1271
1272 for (i = 0; signal_info[i].sig != -1; i++)
1273 if (signal_info[i].deadly)
1274 {
1275#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1276 struct sigaction sa;
1277
1278 /* Setup to use the alternate stack for the signal function. */
1279 sa.sa_handler = func_deadly;
1280 sigemptyset(&sa.sa_mask);
1281# if defined(__linux__) && defined(_REENTRANT)
1282 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1283 * thread handling in combination with using the alternate stack:
1284 * pthread library functions try to use the stack pointer to
1285 * identify the current thread, causing a SEGV signal, which
1286 * recursively calls deathtrap() and hangs. */
1287 sa.sa_flags = 0;
1288# else
1289 sa.sa_flags = SA_ONSTACK;
1290# endif
1291 sigaction(signal_info[i].sig, &sa, NULL);
1292#else
1293# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1294 struct sigvec sv;
1295
1296 /* Setup to use the alternate stack for the signal function. */
1297 sv.sv_handler = func_deadly;
1298 sv.sv_mask = 0;
1299 sv.sv_flags = SV_ONSTACK;
1300 sigvec(signal_info[i].sig, &sv, NULL);
1301# else
1302 signal(signal_info[i].sig, func_deadly);
1303# endif
1304#endif
1305 }
1306 else if (func_other != SIG_ERR)
1307 signal(signal_info[i].sig, func_other);
1308}
1309
1310/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001311 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001312 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1313 * return TRUE
1314 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1315 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1316 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001317 * Returns TRUE when Vim should exit.
1318 */
1319 int
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001320vim_handle_signal(sig)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001321 int sig;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001322{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001323 static int got_signal = 0;
1324 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001325
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001326 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001327 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001328 case SIGNAL_BLOCK: blocked = TRUE;
1329 break;
1330
1331 case SIGNAL_UNBLOCK: blocked = FALSE;
1332 if (got_signal != 0)
1333 {
1334 kill(getpid(), got_signal);
1335 got_signal = 0;
1336 }
1337 break;
1338
1339 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001340 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001341 got_signal = sig;
1342#ifdef SIGPWR
1343 if (sig != SIGPWR)
1344#endif
1345 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001346 break;
1347 }
1348 return FALSE;
1349}
1350
1351/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 * Check_win checks whether we have an interactive stdout.
1353 */
1354/* ARGSUSED */
1355 int
1356mch_check_win(argc, argv)
1357 int argc;
1358 char **argv;
1359{
1360#ifdef OS2
1361 /*
1362 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1363 * name, mostly it's just "vim" and found in the path, which is unusable.
1364 */
1365 if (mch_isFullName(argv[0]))
1366 exe_name = vim_strsave((char_u *)argv[0]);
1367#endif
1368 if (isatty(1))
1369 return OK;
1370 return FAIL;
1371}
1372
1373/*
1374 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1375 */
1376 int
1377mch_input_isatty()
1378{
1379 if (isatty(read_cmd_fd))
1380 return TRUE;
1381 return FALSE;
1382}
1383
1384#ifdef FEAT_X11
1385
1386# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1387 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1388
1389static void xopen_message __ARGS((struct timeval *tvp));
1390
1391/*
1392 * Give a message about the elapsed time for opening the X window.
1393 */
1394 static void
1395xopen_message(tvp)
1396 struct timeval *tvp; /* must contain start time */
1397{
1398 struct timeval end_tv;
1399
1400 /* Compute elapsed time. */
1401 gettimeofday(&end_tv, NULL);
1402 smsg((char_u *)_("Opening the X display took %ld msec"),
1403 (end_tv.tv_sec - tvp->tv_sec) * 1000L
Bram Moolenaar051b7822005-05-19 21:00:46 +00001404 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405}
1406# endif
1407#endif
1408
1409#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1410/*
1411 * A few functions shared by X11 title and clipboard code.
1412 */
1413static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1414static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1415static int x_connect_to_server __ARGS((void));
1416static int test_x11_window __ARGS((Display *dpy));
1417
1418static int got_x_error = FALSE;
1419
1420/*
1421 * X Error handler, otherwise X just exits! (very rude) -- webb
1422 */
1423 static int
1424x_error_handler(dpy, error_event)
1425 Display *dpy;
1426 XErrorEvent *error_event;
1427{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001428 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 STRCAT(IObuff, _("\nVim: Got X error\n"));
1430
1431 /* We cannot print a message and continue, because no X calls are allowed
1432 * here (causes my system to hang). Silently continuing might be an
1433 * alternative... */
1434 preserve_exit(); /* preserve files and exit */
1435
1436 return 0; /* NOTREACHED */
1437}
1438
1439/*
1440 * Another X Error handler, just used to check for errors.
1441 */
1442/* ARGSUSED */
1443 static int
1444x_error_check(dpy, error_event)
1445 Display *dpy;
1446 XErrorEvent *error_event;
1447{
1448 got_x_error = TRUE;
1449 return 0;
1450}
1451
1452#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1453# if defined(HAVE_SETJMP_H)
1454/*
1455 * An X IO Error handler, used to catch error while opening the display.
1456 */
1457static int x_IOerror_check __ARGS((Display *dpy));
1458
1459/* ARGSUSED */
1460 static int
1461x_IOerror_check(dpy)
1462 Display *dpy;
1463{
1464 /* This function should not return, it causes exit(). Longjump instead. */
1465 LONGJMP(lc_jump_env, 1);
1466 /*NOTREACHED*/
1467 return 0;
1468}
1469# endif
1470
1471/*
1472 * An X IO Error handler, used to catch terminal errors.
1473 */
1474static int x_IOerror_handler __ARGS((Display *dpy));
1475
1476/* ARGSUSED */
1477 static int
1478x_IOerror_handler(dpy)
1479 Display *dpy;
1480{
1481 xterm_dpy = NULL;
1482 x11_window = 0;
1483 x11_display = NULL;
1484 xterm_Shell = (Widget)0;
1485
1486 /* This function should not return, it causes exit(). Longjump instead. */
1487 LONGJMP(x_jump_env, 1);
1488 /*NOTREACHED*/
1489 return 0;
1490}
1491#endif
1492
1493/*
1494 * Return TRUE when connection to the X server is desired.
1495 */
1496 static int
1497x_connect_to_server()
1498{
1499 regmatch_T regmatch;
1500
1501#if defined(FEAT_CLIENTSERVER)
1502 if (x_force_connect)
1503 return TRUE;
1504#endif
1505 if (x_no_connect)
1506 return FALSE;
1507
1508 /* Check for a match with "exclude:" from 'clipboard'. */
1509 if (clip_exclude_prog != NULL)
1510 {
1511 regmatch.rm_ic = FALSE; /* Don't ignore case */
1512 regmatch.regprog = clip_exclude_prog;
1513 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1514 return FALSE;
1515 }
1516 return TRUE;
1517}
1518
1519/*
1520 * Test if "dpy" and x11_window are valid by getting the window title.
1521 * I don't actually want it yet, so there may be a simpler call to use, but
1522 * this will cause the error handler x_error_check() to be called if anything
1523 * is wrong, such as the window pointer being invalid (as can happen when the
1524 * user changes his DISPLAY, but not his WINDOWID) -- webb
1525 */
1526 static int
1527test_x11_window(dpy)
1528 Display *dpy;
1529{
1530 int (*old_handler)();
1531 XTextProperty text_prop;
1532
1533 old_handler = XSetErrorHandler(x_error_check);
1534 got_x_error = FALSE;
1535 if (XGetWMName(dpy, x11_window, &text_prop))
1536 XFree((void *)text_prop.value);
1537 XSync(dpy, False);
1538 (void)XSetErrorHandler(old_handler);
1539
1540 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001541 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542
1543 return (got_x_error ? FAIL : OK);
1544}
1545#endif
1546
1547#ifdef FEAT_TITLE
1548
1549#ifdef FEAT_X11
1550
1551static int get_x11_thing __ARGS((int get_title, int test_only));
1552
1553/*
1554 * try to get x11 window and display
1555 *
1556 * return FAIL for failure, OK otherwise
1557 */
1558 static int
1559get_x11_windis()
1560{
1561 char *winid;
1562 static int result = -1;
1563#define XD_NONE 0 /* x11_display not set here */
1564#define XD_HERE 1 /* x11_display opened here */
1565#define XD_GUI 2 /* x11_display used from gui.dpy */
1566#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1567 static int x11_display_from = XD_NONE;
1568 static int did_set_error_handler = FALSE;
1569
1570 if (!did_set_error_handler)
1571 {
1572 /* X just exits if it finds an error otherwise! */
1573 (void)XSetErrorHandler(x_error_handler);
1574 did_set_error_handler = TRUE;
1575 }
1576
Bram Moolenaar9372a112005-12-06 19:59:18 +00001577#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 if (gui.in_use)
1579 {
1580 /*
1581 * If the X11 display was opened here before, for the window where Vim
1582 * was started, close that one now to avoid a memory leak.
1583 */
1584 if (x11_display_from == XD_HERE && x11_display != NULL)
1585 {
1586 XCloseDisplay(x11_display);
1587 x11_display_from = XD_NONE;
1588 }
1589 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1590 {
1591 x11_display_from = XD_GUI;
1592 return OK;
1593 }
1594 x11_display = NULL;
1595 return FAIL;
1596 }
1597 else if (x11_display_from == XD_GUI)
1598 {
1599 /* GUI must have stopped somehow, clear x11_display */
1600 x11_window = 0;
1601 x11_display = NULL;
1602 x11_display_from = XD_NONE;
1603 }
1604#endif
1605
1606 /* When started with the "-X" argument, don't try connecting. */
1607 if (!x_connect_to_server())
1608 return FAIL;
1609
1610 /*
1611 * If WINDOWID not set, should try another method to find out
1612 * what the current window number is. The only code I know for
1613 * this is very complicated.
1614 * We assume that zero is invalid for WINDOWID.
1615 */
1616 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1617 x11_window = (Window)atol(winid);
1618
1619#ifdef FEAT_XCLIPBOARD
1620 if (xterm_dpy != NULL && x11_window != 0)
1621 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001622 /* We may have checked it already, but Gnome terminal can move us to
1623 * another window, so we need to check every time. */
1624 if (x11_display_from != XD_XTERM)
1625 {
1626 /*
1627 * If the X11 display was opened here before, for the window where
1628 * Vim was started, close that one now to avoid a memory leak.
1629 */
1630 if (x11_display_from == XD_HERE && x11_display != NULL)
1631 XCloseDisplay(x11_display);
1632 x11_display = xterm_dpy;
1633 x11_display_from = XD_XTERM;
1634 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 if (test_x11_window(x11_display) == FAIL)
1636 {
1637 /* probably bad $WINDOWID */
1638 x11_window = 0;
1639 x11_display = NULL;
1640 x11_display_from = XD_NONE;
1641 return FAIL;
1642 }
1643 return OK;
1644 }
1645#endif
1646
1647 if (x11_window == 0 || x11_display == NULL)
1648 result = -1;
1649
1650 if (result != -1) /* Have already been here and set this */
1651 return result; /* Don't do all these X calls again */
1652
1653 if (x11_window != 0 && x11_display == NULL)
1654 {
1655#ifdef SET_SIG_ALARM
1656 RETSIGTYPE (*sig_save)();
1657#endif
1658#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1659 struct timeval start_tv;
1660
1661 if (p_verbose > 0)
1662 gettimeofday(&start_tv, NULL);
1663#endif
1664
1665#ifdef SET_SIG_ALARM
1666 /*
1667 * Opening the Display may hang if the DISPLAY setting is wrong, or
1668 * the network connection is bad. Set an alarm timer to get out.
1669 */
1670 sig_alarm_called = FALSE;
1671 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1672 (RETSIGTYPE (*)())sig_alarm);
1673 alarm(2);
1674#endif
1675 x11_display = XOpenDisplay(NULL);
1676
1677#ifdef SET_SIG_ALARM
1678 alarm(0);
1679 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1680 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001681 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682#endif
1683 if (x11_display != NULL)
1684 {
1685# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1686 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001687 {
1688 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001690 verbose_leave();
1691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692# endif
1693 if (test_x11_window(x11_display) == FAIL)
1694 {
1695 /* Maybe window id is bad */
1696 x11_window = 0;
1697 XCloseDisplay(x11_display);
1698 x11_display = NULL;
1699 }
1700 else
1701 x11_display_from = XD_HERE;
1702 }
1703 }
1704 if (x11_window == 0 || x11_display == NULL)
1705 return (result = FAIL);
1706 return (result = OK);
1707}
1708
1709/*
1710 * Determine original x11 Window Title
1711 */
1712 static int
1713get_x11_title(test_only)
1714 int test_only;
1715{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001716 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717}
1718
1719/*
1720 * Determine original x11 Window icon
1721 */
1722 static int
1723get_x11_icon(test_only)
1724 int test_only;
1725{
1726 int retval = FALSE;
1727
1728 retval = get_x11_thing(FALSE, test_only);
1729
1730 /* could not get old icon, use terminal name */
1731 if (oldicon == NULL && !test_only)
1732 {
1733 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1734 oldicon = T_NAME + 8;
1735 else
1736 oldicon = T_NAME;
1737 }
1738
1739 return retval;
1740}
1741
1742 static int
1743get_x11_thing(get_title, test_only)
1744 int get_title; /* get title string */
1745 int test_only;
1746{
1747 XTextProperty text_prop;
1748 int retval = FALSE;
1749 Status status;
1750
1751 if (get_x11_windis() == OK)
1752 {
1753 /* Get window/icon name if any */
1754 if (get_title)
1755 status = XGetWMName(x11_display, x11_window, &text_prop);
1756 else
1757 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1758
1759 /*
1760 * If terminal is xterm, then x11_window may be a child window of the
1761 * outer xterm window that actually contains the window/icon name, so
1762 * keep traversing up the tree until a window with a title/icon is
1763 * found.
1764 */
1765 /* Previously this was only done for xterm and alikes. I don't see a
1766 * reason why it would fail for other terminal emulators.
1767 * if (term_is_xterm) */
1768 {
1769 Window root;
1770 Window parent;
1771 Window win = x11_window;
1772 Window *children;
1773 unsigned int num_children;
1774
1775 while (!status || text_prop.value == NULL)
1776 {
1777 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1778 &num_children))
1779 break;
1780 if (children)
1781 XFree((void *)children);
1782 if (parent == root || parent == 0)
1783 break;
1784
1785 win = parent;
1786 if (get_title)
1787 status = XGetWMName(x11_display, win, &text_prop);
1788 else
1789 status = XGetWMIconName(x11_display, win, &text_prop);
1790 }
1791 }
1792 if (status && text_prop.value != NULL)
1793 {
1794 retval = TRUE;
1795 if (!test_only)
1796 {
1797#ifdef FEAT_XFONTSET
1798 if (text_prop.encoding == XA_STRING)
1799 {
1800#endif
1801 if (get_title)
1802 oldtitle = vim_strsave((char_u *)text_prop.value);
1803 else
1804 oldicon = vim_strsave((char_u *)text_prop.value);
1805#ifdef FEAT_XFONTSET
1806 }
1807 else
1808 {
1809 char **cl;
1810 Status transform_status;
1811 int n = 0;
1812
1813 transform_status = XmbTextPropertyToTextList(x11_display,
1814 &text_prop,
1815 &cl, &n);
1816 if (transform_status >= Success && n > 0 && cl[0])
1817 {
1818 if (get_title)
1819 oldtitle = vim_strsave((char_u *) cl[0]);
1820 else
1821 oldicon = vim_strsave((char_u *) cl[0]);
1822 XFreeStringList(cl);
1823 }
1824 else
1825 {
1826 if (get_title)
1827 oldtitle = vim_strsave((char_u *)text_prop.value);
1828 else
1829 oldicon = vim_strsave((char_u *)text_prop.value);
1830 }
1831 }
1832#endif
1833 }
1834 XFree((void *)text_prop.value);
1835 }
1836 }
1837 return retval;
1838}
1839
1840/* Are Xutf8 functions available? Avoid error from old compilers. */
1841#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1842# if X_HAVE_UTF8_STRING
1843# define USE_UTF8_STRING
1844# endif
1845#endif
1846
1847/*
1848 * Set x11 Window Title
1849 *
1850 * get_x11_windis() must be called before this and have returned OK
1851 */
1852 static void
1853set_x11_title(title)
1854 char_u *title;
1855{
1856 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1857 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1858 * supported everywhere and STRING doesn't work for multi-byte titles.
1859 */
1860#ifdef USE_UTF8_STRING
1861 if (enc_utf8)
1862 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1863 NULL, NULL, 0, NULL, NULL, NULL);
1864 else
1865#endif
1866 {
1867#if XtSpecificationRelease >= 4
1868# ifdef FEAT_XFONTSET
1869 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1870 NULL, NULL, 0, NULL, NULL, NULL);
1871# else
1872 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001873 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874
1875 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001876 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 XSetWMProperties(x11_display, x11_window, &text_prop,
1878 NULL, NULL, 0, NULL, NULL, NULL);
1879# endif
1880#else
1881 XStoreName(x11_display, x11_window, (char *)title);
1882#endif
1883 }
1884 XFlush(x11_display);
1885}
1886
1887/*
1888 * Set x11 Window icon
1889 *
1890 * get_x11_windis() must be called before this and have returned OK
1891 */
1892 static void
1893set_x11_icon(icon)
1894 char_u *icon;
1895{
1896 /* See above for comments about using X*SetWMProperties(). */
1897#ifdef USE_UTF8_STRING
1898 if (enc_utf8)
1899 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1900 NULL, 0, NULL, NULL, NULL);
1901 else
1902#endif
1903 {
1904#if XtSpecificationRelease >= 4
1905# ifdef FEAT_XFONTSET
1906 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1907 NULL, 0, NULL, NULL, NULL);
1908# else
1909 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001910 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001912 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1914 NULL, 0, NULL, NULL, NULL);
1915# endif
1916#else
1917 XSetIconName(x11_display, x11_window, (char *)icon);
1918#endif
1919 }
1920 XFlush(x11_display);
1921}
1922
1923#else /* FEAT_X11 */
1924
1925/*ARGSUSED*/
1926 static int
1927get_x11_title(test_only)
1928 int test_only;
1929{
1930 return FALSE;
1931}
1932
1933 static int
1934get_x11_icon(test_only)
1935 int test_only;
1936{
1937 if (!test_only)
1938 {
1939 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1940 oldicon = T_NAME + 8;
1941 else
1942 oldicon = T_NAME;
1943 }
1944 return FALSE;
1945}
1946
1947#endif /* FEAT_X11 */
1948
1949 int
1950mch_can_restore_title()
1951{
1952 return get_x11_title(TRUE);
1953}
1954
1955 int
1956mch_can_restore_icon()
1957{
1958 return get_x11_icon(TRUE);
1959}
1960
1961/*
1962 * Set the window title and icon.
1963 */
1964 void
1965mch_settitle(title, icon)
1966 char_u *title;
1967 char_u *icon;
1968{
1969 int type = 0;
1970 static int recursive = 0;
1971
1972 if (T_NAME == NULL) /* no terminal name (yet) */
1973 return;
1974 if (title == NULL && icon == NULL) /* nothing to do */
1975 return;
1976
1977 /* When one of the X11 functions causes a deadly signal, we get here again
1978 * recursively. Avoid hanging then (something is probably locked). */
1979 if (recursive)
1980 return;
1981 ++recursive;
1982
1983 /*
1984 * if the window ID and the display is known, we may use X11 calls
1985 */
1986#ifdef FEAT_X11
1987 if (get_x11_windis() == OK)
1988 type = 1;
1989#else
1990# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1991 if (gui.in_use)
1992 type = 1;
1993# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994#endif
1995
1996 /*
1997 * Note: if "t_TS" is set, title is set with escape sequence rather
1998 * than x11 calls, because the x11 calls don't always work
1999 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if ((type || *T_TS != NUL) && title != NULL)
2001 {
2002 if (oldtitle == NULL
2003#ifdef FEAT_GUI
2004 && !gui.in_use
2005#endif
2006 ) /* first call but not in GUI, save title */
2007 (void)get_x11_title(FALSE);
2008
2009 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2010 term_settitle(title);
2011#ifdef FEAT_X11
2012 else
2013# ifdef FEAT_GUI_GTK
2014 if (!gui.in_use) /* don't do this if GTK+ is running */
2015# endif
2016 set_x11_title(title); /* x11 */
2017#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002018#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2020 else
2021 gui_mch_settitle(title, icon);
2022#endif
2023 did_set_title = TRUE;
2024 }
2025
2026 if ((type || *T_CIS != NUL) && icon != NULL)
2027 {
2028 if (oldicon == NULL
2029#ifdef FEAT_GUI
2030 && !gui.in_use
2031#endif
2032 ) /* first call, save icon */
2033 get_x11_icon(FALSE);
2034
2035 if (*T_CIS != NUL)
2036 {
2037 out_str(T_CIS); /* set icon start */
2038 out_str_nf(icon);
2039 out_str(T_CIE); /* set icon end */
2040 out_flush();
2041 }
2042#ifdef FEAT_X11
2043 else
2044# ifdef FEAT_GUI_GTK
2045 if (!gui.in_use) /* don't do this if GTK+ is running */
2046# endif
2047 set_x11_icon(icon); /* x11 */
2048#endif
2049 did_set_icon = TRUE;
2050 }
2051 --recursive;
2052}
2053
2054/*
2055 * Restore the window/icon title.
2056 * "which" is one of:
2057 * 1 only restore title
2058 * 2 only restore icon
2059 * 3 restore title and icon
2060 */
2061 void
2062mch_restore_title(which)
2063 int which;
2064{
2065 /* only restore the title or icon when it has been set */
2066 mch_settitle(((which & 1) && did_set_title) ?
2067 (oldtitle ? oldtitle : p_titleold) : NULL,
2068 ((which & 2) && did_set_icon) ? oldicon : NULL);
2069}
2070
2071#endif /* FEAT_TITLE */
2072
2073/*
2074 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002075 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 */
2077 int
2078vim_is_xterm(name)
2079 char_u *name;
2080{
2081 if (name == NULL)
2082 return FALSE;
2083 return (STRNICMP(name, "xterm", 5) == 0
2084 || STRNICMP(name, "nxterm", 6) == 0
2085 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002086 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 || STRNICMP(name, "rxvt", 4) == 0
2088 || STRCMP(name, "builtin_xterm") == 0);
2089}
2090
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002091#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2092/*
2093 * Return TRUE if "name" appears to be that of a terminal
2094 * known to support the xterm-style mouse protocol.
2095 * Relies on term_is_xterm having been set to its correct value.
2096 */
2097 int
2098use_xterm_like_mouse(name)
2099 char_u *name;
2100{
2101 return (name != NULL
2102 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2103}
2104#endif
2105
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2107/*
2108 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2109 * Return 1 for "xterm".
2110 * Return 2 for "xterm2".
2111 */
2112 int
2113use_xterm_mouse()
2114{
2115 if (ttym_flags == TTYM_XTERM2)
2116 return 2;
2117 if (ttym_flags == TTYM_XTERM)
2118 return 1;
2119 return 0;
2120}
2121#endif
2122
2123 int
2124vim_is_iris(name)
2125 char_u *name;
2126{
2127 if (name == NULL)
2128 return FALSE;
2129 return (STRNICMP(name, "iris-ansi", 9) == 0
2130 || STRCMP(name, "builtin_iris-ansi") == 0);
2131}
2132
2133 int
2134vim_is_vt300(name)
2135 char_u *name;
2136{
2137 if (name == NULL)
2138 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002139 /* catch VT100 - VT5xx */
2140 return ((STRNICMP(name, "vt", 2) == 0
2141 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 || STRCMP(name, "builtin_vt320") == 0);
2143}
2144
2145/*
2146 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2147 * This should include all windowed terminal emulators.
2148 */
2149 int
2150vim_is_fastterm(name)
2151 char_u *name;
2152{
2153 if (name == NULL)
2154 return FALSE;
2155 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2156 return TRUE;
2157 return ( STRNICMP(name, "hpterm", 6) == 0
2158 || STRNICMP(name, "sun-cmd", 7) == 0
2159 || STRNICMP(name, "screen", 6) == 0
2160 || STRNICMP(name, "dtterm", 6) == 0);
2161}
2162
2163/*
2164 * Insert user name in s[len].
2165 * Return OK if a name found.
2166 */
2167 int
2168mch_get_user_name(s, len)
2169 char_u *s;
2170 int len;
2171{
2172#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002173 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 return OK;
2175#else
2176 return mch_get_uname(getuid(), s, len);
2177#endif
2178}
2179
2180/*
2181 * Insert user name for "uid" in s[len].
2182 * Return OK if a name found.
2183 */
2184 int
2185mch_get_uname(uid, s, len)
2186 uid_t uid;
2187 char_u *s;
2188 int len;
2189{
2190#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2191 struct passwd *pw;
2192
2193 if ((pw = getpwuid(uid)) != NULL
2194 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2195 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002196 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 return OK;
2198 }
2199#endif
2200 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2201 return FAIL; /* a number is not a name */
2202}
2203
2204/*
2205 * Insert host name is s[len].
2206 */
2207
2208#ifdef HAVE_SYS_UTSNAME_H
2209 void
2210mch_get_host_name(s, len)
2211 char_u *s;
2212 int len;
2213{
2214 struct utsname vutsname;
2215
2216 if (uname(&vutsname) < 0)
2217 *s = NUL;
2218 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002219 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220}
2221#else /* HAVE_SYS_UTSNAME_H */
2222
2223# ifdef HAVE_SYS_SYSTEMINFO_H
2224# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2225# endif
2226
2227 void
2228mch_get_host_name(s, len)
2229 char_u *s;
2230 int len;
2231{
2232# ifdef VAXC
2233 vaxc$gethostname((char *)s, len);
2234# else
2235 gethostname((char *)s, len);
2236# endif
2237 s[len - 1] = NUL; /* make sure it's terminated */
2238}
2239#endif /* HAVE_SYS_UTSNAME_H */
2240
2241/*
2242 * return process ID
2243 */
2244 long
2245mch_get_pid()
2246{
2247 return (long)getpid();
2248}
2249
2250#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2251static char *strerror __ARGS((int));
2252
2253 static char *
2254strerror(err)
2255 int err;
2256{
2257 extern int sys_nerr;
2258 extern char *sys_errlist[];
2259 static char er[20];
2260
2261 if (err > 0 && err < sys_nerr)
2262 return (sys_errlist[err]);
2263 sprintf(er, "Error %d", err);
2264 return er;
2265}
2266#endif
2267
2268/*
2269 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2270 * Return OK for success, FAIL for failure.
2271 */
2272 int
2273mch_dirname(buf, len)
2274 char_u *buf;
2275 int len;
2276{
2277#if defined(USE_GETCWD)
2278 if (getcwd((char *)buf, len) == NULL)
2279 {
2280 STRCPY(buf, strerror(errno));
2281 return FAIL;
2282 }
2283 return OK;
2284#else
2285 return (getwd((char *)buf) != NULL ? OK : FAIL);
2286#endif
2287}
2288
2289#if defined(OS2) || defined(PROTO)
2290/*
2291 * Replace all slashes by backslashes.
2292 * When 'shellslash' set do it the other way around.
2293 */
2294 void
2295slash_adjust(p)
2296 char_u *p;
2297{
2298 while (*p)
2299 {
2300 if (*p == psepcN)
2301 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002302 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 }
2304}
2305#endif
2306
2307/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002308 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 *
2310 * return FAIL for failure, OK for success
2311 */
2312 int
2313mch_FullName(fname, buf, len, force)
2314 char_u *fname, *buf;
2315 int len;
2316 int force; /* also expand when already absolute path */
2317{
2318 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002319#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 int only_drive; /* file name is only a drive letter */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002321#endif
2322#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 int fd = -1;
2324 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002325#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 char_u olddir[MAXPATHL];
2327 char_u *p;
2328 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002329#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002330 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2331 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002332#endif
2333
Bram Moolenaar38323e42007-03-06 19:22:53 +00002334#ifdef VMS
2335 fname = vms_fixfilename(fname);
2336#endif
2337
Bram Moolenaara2442432007-04-26 14:26:37 +00002338#ifdef __CYGWIN__
2339 /*
2340 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2341 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002342# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2343 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2344# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002345 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002346# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002347 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002348#endif
2349
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 /* expand it if forced or not an absolute path */
2351 if (force || !mch_isFullName(fname))
2352 {
2353 /*
2354 * If the file name has a path, change to that directory for a moment,
2355 * and then do the getwd() (and get back to where we were).
2356 * This will get the correct path name with "../" things.
2357 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002358#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 only_drive = 0;
2360 if (((p = vim_strrchr(fname, '/')) != NULL)
2361 || ((p = vim_strrchr(fname, '\\')) != NULL)
2362 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
Bram Moolenaar38323e42007-03-06 19:22:53 +00002363#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 if ((p = vim_strrchr(fname, '/')) != NULL)
Bram Moolenaar38323e42007-03-06 19:22:53 +00002365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002367#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 /*
2369 * Use fchdir() if possible, it's said to be faster and more
2370 * reliable. But on SunOS 4 it might not work. Check this by
2371 * doing a fchdir() right now.
2372 */
2373 if (!dont_fchdir)
2374 {
2375 fd = open(".", O_RDONLY | O_EXTRA, 0);
2376 if (fd >= 0 && fchdir(fd) < 0)
2377 {
2378 close(fd);
2379 fd = -1;
2380 dont_fchdir = TRUE; /* don't try again */
2381 }
2382 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384
2385 /* Only change directory when we are sure we can return to where
2386 * we are now. After doing "su" chdir(".") might not work. */
2387 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002388#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002390#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 (mch_dirname(olddir, MAXPATHL) == FAIL
2392 || mch_chdir((char *)olddir) != 0))
2393 {
2394 p = NULL; /* can't get current dir: don't chdir */
2395 retval = FAIL;
2396 }
2397 else
2398 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002399#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 /*
2401 * compensate for case where ':' from "D:" was the only
2402 * path separator detected in the file name; the _next_
2403 * character has to be removed, and then restored later.
2404 */
2405 if (only_drive)
2406 p++;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002407#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 /* The directory is copied into buf[], to be able to remove
2409 * the file name without changing it (could be a string in
2410 * read-only memory) */
2411 if (p - fname >= len)
2412 retval = FAIL;
2413 else
2414 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002415 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 if (mch_chdir((char *)buf))
2417 retval = FAIL;
2418 else
2419 fname = p + 1;
2420 *buf = NUL;
2421 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002422#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 if (only_drive)
2424 {
2425 p--;
2426 if (retval != FAIL)
2427 fname--;
2428 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 }
2431 }
2432 if (mch_dirname(buf, len) == FAIL)
2433 {
2434 retval = FAIL;
2435 *buf = NUL;
2436 }
2437 if (p != NULL)
2438 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002439#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 if (fd >= 0)
2441 {
2442 l = fchdir(fd);
2443 close(fd);
2444 }
2445 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 l = mch_chdir((char *)olddir);
2448 if (l != 0)
2449 EMSG(_(e_prev_dir));
2450 }
2451
2452 l = STRLEN(buf);
2453 if (l >= len)
2454 retval = FAIL;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002455#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 else
2457 {
2458 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2459 && STRCMP(fname, ".") != 0)
2460 STRCAT(buf, "/");
2461 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 /* Catch file names which are too long. */
2466 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2467 return FAIL;
2468
2469 /* Do not append ".", "/dir/." is equal to "/dir". */
2470 if (STRCMP(fname, ".") != 0)
2471 STRCAT(buf, fname);
2472
2473 return OK;
2474}
2475
2476/*
2477 * Return TRUE if "fname" does not depend on the current directory.
2478 */
2479 int
2480mch_isFullName(fname)
2481 char_u *fname;
2482{
2483#ifdef __EMX__
2484 return _fnisabs(fname);
2485#else
2486# ifdef VMS
2487 return ( fname[0] == '/' || fname[0] == '.' ||
2488 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2489 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2490 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2491# else
2492 return (*fname == '/' || *fname == '~');
2493# endif
2494#endif
2495}
2496
Bram Moolenaar24552be2005-12-10 20:17:30 +00002497#if defined(USE_FNAME_CASE) || defined(PROTO)
2498/*
2499 * Set the case of the file name, if it already exists. This will cause the
2500 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002501 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002502 */
2503/*ARGSUSED*/
2504 void
2505fname_case(name, len)
2506 char_u *name;
2507 int len; /* buffer size, only used when name gets longer */
2508{
2509 struct stat st;
2510 char_u *slash, *tail;
2511 DIR *dirp;
2512 struct dirent *dp;
2513
2514 if (lstat((char *)name, &st) >= 0)
2515 {
2516 /* Open the directory where the file is located. */
2517 slash = vim_strrchr(name, '/');
2518 if (slash == NULL)
2519 {
2520 dirp = opendir(".");
2521 tail = name;
2522 }
2523 else
2524 {
2525 *slash = NUL;
2526 dirp = opendir((char *)name);
2527 *slash = '/';
2528 tail = slash + 1;
2529 }
2530
2531 if (dirp != NULL)
2532 {
2533 while ((dp = readdir(dirp)) != NULL)
2534 {
2535 /* Only accept names that differ in case and are the same byte
2536 * length. TODO: accept different length name. */
2537 if (STRICMP(tail, dp->d_name) == 0
2538 && STRLEN(tail) == STRLEN(dp->d_name))
2539 {
2540 char_u newname[MAXPATHL + 1];
2541 struct stat st2;
2542
2543 /* Verify the inode is equal. */
2544 vim_strncpy(newname, name, MAXPATHL);
2545 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2546 MAXPATHL - (tail - name));
2547 if (lstat((char *)newname, &st2) >= 0
2548 && st.st_ino == st2.st_ino
2549 && st.st_dev == st2.st_dev)
2550 {
2551 STRCPY(tail, dp->d_name);
2552 break;
2553 }
2554 }
2555 }
2556
2557 closedir(dirp);
2558 }
2559 }
2560}
2561#endif
2562
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563/*
2564 * Get file permissions for 'name'.
2565 * Returns -1 when it doesn't exist.
2566 */
2567 long
2568mch_getperm(name)
2569 char_u *name;
2570{
2571 struct stat statb;
2572
2573 /* Keep the #ifdef outside of stat(), it may be a macro. */
2574#ifdef VMS
2575 if (stat((char *)vms_fixfilename(name), &statb))
2576#else
2577 if (stat((char *)name, &statb))
2578#endif
2579 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002580#ifdef __INTERIX
2581 /* The top bit makes the value negative, which means the file doesn't
2582 * exist. Remove the bit, we don't use it. */
2583 return statb.st_mode & ~S_ADDACE;
2584#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587}
2588
2589/*
2590 * set file permission for 'name' to 'perm'
2591 *
2592 * return FAIL for failure, OK otherwise
2593 */
2594 int
2595mch_setperm(name, perm)
2596 char_u *name;
2597 long perm;
2598{
2599 return (chmod((char *)
2600#ifdef VMS
2601 vms_fixfilename(name),
2602#else
2603 name,
2604#endif
2605 (mode_t)perm) == 0 ? OK : FAIL);
2606}
2607
2608#if defined(HAVE_ACL) || defined(PROTO)
2609# ifdef HAVE_SYS_ACL_H
2610# include <sys/acl.h>
2611# endif
2612# ifdef HAVE_SYS_ACCESS_H
2613# include <sys/access.h>
2614# endif
2615
2616# ifdef HAVE_SOLARIS_ACL
2617typedef struct vim_acl_solaris_T {
2618 int acl_cnt;
2619 aclent_t *acl_entry;
2620} vim_acl_solaris_T;
2621# endif
2622
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002623#if defined(HAVE_SELINUX) || defined(PROTO)
2624/*
2625 * Copy security info from "from_file" to "to_file".
2626 */
2627 void
2628mch_copy_sec(from_file, to_file)
2629 char_u *from_file;
2630 char_u *to_file;
2631{
2632 if (from_file == NULL)
2633 return;
2634
2635 if (selinux_enabled == -1)
2636 selinux_enabled = is_selinux_enabled();
2637
2638 if (selinux_enabled > 0)
2639 {
2640 security_context_t from_context = NULL;
2641 security_context_t to_context = NULL;
2642
2643 if (getfilecon((char *)from_file, &from_context) < 0)
2644 {
2645 /* If the filesystem doesn't support extended attributes,
2646 the original had no special security context and the
2647 target cannot have one either. */
2648 if (errno == EOPNOTSUPP)
2649 return;
2650
2651 MSG_PUTS(_("\nCould not get security context for "));
2652 msg_outtrans(from_file);
2653 msg_putchar('\n');
2654 return;
2655 }
2656 if (getfilecon((char *)to_file, &to_context) < 0)
2657 {
2658 MSG_PUTS(_("\nCould not get security context for "));
2659 msg_outtrans(to_file);
2660 msg_putchar('\n');
2661 freecon (from_context);
2662 return ;
2663 }
2664 if (strcmp(from_context, to_context) != 0)
2665 {
2666 if (setfilecon((char *)to_file, from_context) < 0)
2667 {
2668 MSG_PUTS(_("\nCould not set security context for "));
2669 msg_outtrans(to_file);
2670 msg_putchar('\n');
2671 }
2672 }
2673 freecon(to_context);
2674 freecon(from_context);
2675 }
2676}
2677#endif /* HAVE_SELINUX */
2678
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679/*
2680 * Return a pointer to the ACL of file "fname" in allocated memory.
2681 * Return NULL if the ACL is not available for whatever reason.
2682 */
2683 vim_acl_T
2684mch_get_acl(fname)
2685 char_u *fname;
2686{
2687 vim_acl_T ret = NULL;
2688#ifdef HAVE_POSIX_ACL
2689 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2690#else
2691#ifdef HAVE_SOLARIS_ACL
2692 vim_acl_solaris_T *aclent;
2693
2694 aclent = malloc(sizeof(vim_acl_solaris_T));
2695 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2696 {
2697 free(aclent);
2698 return NULL;
2699 }
2700 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2701 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2702 {
2703 free(aclent->acl_entry);
2704 free(aclent);
2705 return NULL;
2706 }
2707 ret = (vim_acl_T)aclent;
2708#else
2709#if defined(HAVE_AIX_ACL)
2710 int aclsize;
2711 struct acl *aclent;
2712
2713 aclsize = sizeof(struct acl);
2714 aclent = malloc(aclsize);
2715 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2716 {
2717 if (errno == ENOSPC)
2718 {
2719 aclsize = aclent->acl_len;
2720 aclent = realloc(aclent, aclsize);
2721 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2722 {
2723 free(aclent);
2724 return NULL;
2725 }
2726 }
2727 else
2728 {
2729 free(aclent);
2730 return NULL;
2731 }
2732 }
2733 ret = (vim_acl_T)aclent;
2734#endif /* HAVE_AIX_ACL */
2735#endif /* HAVE_SOLARIS_ACL */
2736#endif /* HAVE_POSIX_ACL */
2737 return ret;
2738}
2739
2740/*
2741 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2742 */
2743 void
2744mch_set_acl(fname, aclent)
2745 char_u *fname;
2746 vim_acl_T aclent;
2747{
2748 if (aclent == NULL)
2749 return;
2750#ifdef HAVE_POSIX_ACL
2751 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2752#else
2753#ifdef HAVE_SOLARIS_ACL
2754 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2755 ((vim_acl_solaris_T *)aclent)->acl_entry);
2756#else
2757#ifdef HAVE_AIX_ACL
2758 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2759#endif /* HAVE_AIX_ACL */
2760#endif /* HAVE_SOLARIS_ACL */
2761#endif /* HAVE_POSIX_ACL */
2762}
2763
2764 void
2765mch_free_acl(aclent)
2766 vim_acl_T aclent;
2767{
2768 if (aclent == NULL)
2769 return;
2770#ifdef HAVE_POSIX_ACL
2771 acl_free((acl_t)aclent);
2772#else
2773#ifdef HAVE_SOLARIS_ACL
2774 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2775 free(aclent);
2776#else
2777#ifdef HAVE_AIX_ACL
2778 free(aclent);
2779#endif /* HAVE_AIX_ACL */
2780#endif /* HAVE_SOLARIS_ACL */
2781#endif /* HAVE_POSIX_ACL */
2782}
2783#endif
2784
2785/*
2786 * Set hidden flag for "name".
2787 */
2788/* ARGSUSED */
2789 void
2790mch_hide(name)
2791 char_u *name;
2792{
2793 /* can't hide a file */
2794}
2795
2796/*
2797 * return TRUE if "name" is a directory
2798 * return FALSE if "name" is not a directory
2799 * return FALSE for error
2800 */
2801 int
2802mch_isdir(name)
2803 char_u *name;
2804{
2805 struct stat statb;
2806
2807 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2808 return FALSE;
2809 if (stat((char *)name, &statb))
2810 return FALSE;
2811#ifdef _POSIX_SOURCE
2812 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2813#else
2814 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2815#endif
2816}
2817
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818static int executable_file __ARGS((char_u *name));
2819
2820/*
2821 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2822 */
2823 static int
2824executable_file(name)
2825 char_u *name;
2826{
2827 struct stat st;
2828
2829 if (stat((char *)name, &st))
2830 return 0;
2831 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2832}
2833
2834/*
2835 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2836 * Return -1 if unknown.
2837 */
2838 int
2839mch_can_exe(name)
2840 char_u *name;
2841{
2842 char_u *buf;
2843 char_u *p, *e;
2844 int retval;
2845
2846 /* If it's an absolute or relative path don't need to use $PATH. */
2847 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2848 || (name[1] == '.' && name[2] == '/'))))
2849 return executable_file(name);
2850
2851 p = (char_u *)getenv("PATH");
2852 if (p == NULL || *p == NUL)
2853 return -1;
2854 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2855 if (buf == NULL)
2856 return -1;
2857
2858 /*
2859 * Walk through all entries in $PATH to check if "name" exists there and
2860 * is an executable file.
2861 */
2862 for (;;)
2863 {
2864 e = (char_u *)strchr((char *)p, ':');
2865 if (e == NULL)
2866 e = p + STRLEN(p);
2867 if (e - p <= 1) /* empty entry means current dir */
2868 STRCPY(buf, "./");
2869 else
2870 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002871 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 add_pathsep(buf);
2873 }
2874 STRCAT(buf, name);
2875 retval = executable_file(buf);
2876 if (retval == 1)
2877 break;
2878
2879 if (*e != ':')
2880 break;
2881 p = e + 1;
2882 }
2883
2884 vim_free(buf);
2885 return retval;
2886}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887
2888/*
2889 * Check what "name" is:
2890 * NODE_NORMAL: file or directory (or doesn't exist)
2891 * NODE_WRITABLE: writable device, socket, fifo, etc.
2892 * NODE_OTHER: non-writable things
2893 */
2894 int
2895mch_nodetype(name)
2896 char_u *name;
2897{
2898 struct stat st;
2899
2900 if (stat((char *)name, &st))
2901 return NODE_NORMAL;
2902 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2903 return NODE_NORMAL;
2904#ifndef OS2
2905 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2906 return NODE_OTHER;
2907#endif
2908 /* Everything else is writable? */
2909 return NODE_WRITABLE;
2910}
2911
2912 void
2913mch_early_init()
2914{
2915#ifdef HAVE_CHECK_STACK_GROWTH
2916 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 check_stack_growth((char *)&i);
2919
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002920# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 get_stack_limit();
2922# endif
2923
2924#endif
2925
2926 /*
2927 * Setup an alternative stack for signals. Helps to catch signals when
2928 * running out of stack space.
2929 * Use of sigaltstack() is preferred, it's more portable.
2930 * Ignore any errors.
2931 */
2932#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00002933 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 init_signal_stack();
2935#endif
2936}
2937
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002938#if defined(EXITFREE) || defined(PROTO)
2939 void
2940mch_free_mem()
2941{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002942# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2943 if (clip_star.owned)
2944 clip_lose_selection(&clip_star);
2945 if (clip_plus.owned)
2946 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002947# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00002948# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002949 if (xterm_Shell != (Widget)0)
2950 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00002951# ifndef LESSTIF_VERSION
2952 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002953 if (xterm_dpy != NULL)
2954 XtCloseDisplay(xterm_dpy);
2955 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00002956 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002957 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00002958# ifdef FEAT_X11
2959 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2960# endif
2961 }
2962# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002963# endif
Bram Moolenaara8785102008-11-12 13:10:15 +00002964 /* Don't close the display for GTK 1, it is done in exit(). */
2965# if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
Bram Moolenaare8208012008-06-20 09:59:25 +00002966 if (x11_display != NULL
2967# ifdef FEAT_XCLIPBOARD
2968 && x11_display != xterm_dpy
2969# endif
2970 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002971 XCloseDisplay(x11_display);
2972# endif
2973# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2974 vim_free(signal_stack);
2975 signal_stack = NULL;
2976# endif
2977# ifdef FEAT_TITLE
2978 vim_free(oldtitle);
2979 vim_free(oldicon);
2980# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002981}
2982#endif
2983
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984static void exit_scroll __ARGS((void));
2985
2986/*
2987 * Output a newline when exiting.
2988 * Make sure the newline goes to the same stream as the text.
2989 */
2990 static void
2991exit_scroll()
2992{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002993 if (silent_mode)
2994 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 if (newline_on_exit || msg_didout)
2996 {
2997 if (msg_use_printf())
2998 {
2999 if (info_message)
3000 mch_msg("\n");
3001 else
3002 mch_errmsg("\r\n");
3003 }
3004 else
3005 out_char('\n');
3006 }
3007 else
3008 {
3009 restore_cterm_colors(); /* get original colors back */
3010 msg_clr_eos_force(); /* clear the rest of the display */
3011 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3012 }
3013}
3014
3015 void
3016mch_exit(r)
3017 int r;
3018{
3019 exiting = TRUE;
3020
3021#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3022 x11_export_final_selection();
3023#endif
3024
3025#ifdef FEAT_GUI
3026 if (!gui.in_use)
3027#endif
3028 {
3029 settmode(TMODE_COOK);
3030#ifdef FEAT_TITLE
3031 mch_restore_title(3); /* restore xterm title and icon name */
3032#endif
3033 /*
3034 * When t_ti is not empty but it doesn't cause swapping terminal
3035 * pages, need to output a newline when msg_didout is set. But when
3036 * t_ti does swap pages it should not go to the shell page. Do this
3037 * before stoptermcap().
3038 */
3039 if (swapping_screen() && !newline_on_exit)
3040 exit_scroll();
3041
3042 /* Stop termcap: May need to check for T_CRV response, which
3043 * requires RAW mode. */
3044 stoptermcap();
3045
3046 /*
3047 * A newline is only required after a message in the alternate screen.
3048 * This is set to TRUE by wait_return().
3049 */
3050 if (!swapping_screen() || newline_on_exit)
3051 exit_scroll();
3052
3053 /* Cursor may have been switched off without calling starttermcap()
3054 * when doing "vim -u vimrc" and vimrc contains ":q". */
3055 if (full_screen)
3056 cursor_on();
3057 }
3058 out_flush();
3059 ml_close_all(TRUE); /* remove all memfiles */
3060 may_core_dump();
3061#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 gui_exit(r);
3064#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003065
Bram Moolenaar56718732006-03-15 22:53:57 +00003066#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003067 mac_conv_cleanup();
3068#endif
3069
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070#ifdef __QNX__
3071 /* A core dump won't be created if the signal handler
3072 * doesn't return, so we can't call exit() */
3073 if (deadly_signal != 0)
3074 return;
3075#endif
3076
Bram Moolenaar009b2592004-10-24 19:18:58 +00003077#ifdef FEAT_NETBEANS_INTG
3078 if (usingNetbeans)
3079 netbeans_send_disconnect();
3080#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003081
3082#ifdef EXITFREE
3083 free_all_mem();
3084#endif
3085
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 exit(r);
3087}
3088
3089 static void
3090may_core_dump()
3091{
3092 if (deadly_signal != 0)
3093 {
3094 signal(deadly_signal, SIG_DFL);
3095 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3096 }
3097}
3098
3099#ifndef VMS
3100
3101 void
3102mch_settmode(tmode)
3103 int tmode;
3104{
3105 static int first = TRUE;
3106
3107 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3108#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3109 /*
3110 * for "new" tty systems
3111 */
3112# ifdef HAVE_TERMIOS_H
3113 static struct termios told;
3114 struct termios tnew;
3115# else
3116 static struct termio told;
3117 struct termio tnew;
3118# endif
3119
3120 if (first)
3121 {
3122 first = FALSE;
3123# if defined(HAVE_TERMIOS_H)
3124 tcgetattr(read_cmd_fd, &told);
3125# else
3126 ioctl(read_cmd_fd, TCGETA, &told);
3127# endif
3128 }
3129
3130 tnew = told;
3131 if (tmode == TMODE_RAW)
3132 {
3133 /*
3134 * ~ICRNL enables typing ^V^M
3135 */
3136 tnew.c_iflag &= ~ICRNL;
3137 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3138# if defined(IEXTEN) && !defined(__MINT__)
3139 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3140 /* but it breaks function keys on MINT */
3141# endif
3142 );
3143# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3144 tnew.c_oflag &= ~ONLCR;
3145# endif
3146 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3147 tnew.c_cc[VTIME] = 0; /* don't wait */
3148 }
3149 else if (tmode == TMODE_SLEEP)
3150 tnew.c_lflag &= ~(ECHO);
3151
3152# if defined(HAVE_TERMIOS_H)
3153 {
3154 int n = 10;
3155
3156 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3157 * few times. */
3158 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3159 && errno == EINTR && n > 0)
3160 --n;
3161 }
3162# else
3163 ioctl(read_cmd_fd, TCSETA, &tnew);
3164# endif
3165
3166#else
3167
3168 /*
3169 * for "old" tty systems
3170 */
3171# ifndef TIOCSETN
3172# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3173# endif
3174 static struct sgttyb ttybold;
3175 struct sgttyb ttybnew;
3176
3177 if (first)
3178 {
3179 first = FALSE;
3180 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3181 }
3182
3183 ttybnew = ttybold;
3184 if (tmode == TMODE_RAW)
3185 {
3186 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3187 ttybnew.sg_flags |= RAW;
3188 }
3189 else if (tmode == TMODE_SLEEP)
3190 ttybnew.sg_flags &= ~(ECHO);
3191 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3192#endif
3193 curr_tmode = tmode;
3194}
3195
3196/*
3197 * Try to get the code for "t_kb" from the stty setting
3198 *
3199 * Even if termcap claims a backspace key, the user's setting *should*
3200 * prevail. stty knows more about reality than termcap does, and if
3201 * somebody's usual erase key is DEL (which, for most BSD users, it will
3202 * be), they're going to get really annoyed if their erase key starts
3203 * doing forward deletes for no reason. (Eric Fischer)
3204 */
3205 void
3206get_stty()
3207{
3208 char_u buf[2];
3209 char_u *p;
3210
3211 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3212#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3213 /* for "new" tty systems */
3214# ifdef HAVE_TERMIOS_H
3215 struct termios keys;
3216# else
3217 struct termio keys;
3218# endif
3219
3220# if defined(HAVE_TERMIOS_H)
3221 if (tcgetattr(read_cmd_fd, &keys) != -1)
3222# else
3223 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3224# endif
3225 {
3226 buf[0] = keys.c_cc[VERASE];
3227 intr_char = keys.c_cc[VINTR];
3228#else
3229 /* for "old" tty systems */
3230 struct sgttyb keys;
3231
3232 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3233 {
3234 buf[0] = keys.sg_erase;
3235 intr_char = keys.sg_kill;
3236#endif
3237 buf[1] = NUL;
3238 add_termcode((char_u *)"kb", buf, FALSE);
3239
3240 /*
3241 * If <BS> and <DEL> are now the same, redefine <DEL>.
3242 */
3243 p = find_termcode((char_u *)"kD");
3244 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3245 do_fixdel(NULL);
3246 }
3247#if 0
3248 } /* to keep cindent happy */
3249#endif
3250}
3251
3252#endif /* VMS */
3253
3254#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3255/*
3256 * Set mouse clicks on or off.
3257 */
3258 void
3259mch_setmouse(on)
3260 int on;
3261{
3262 static int ison = FALSE;
3263 int xterm_mouse_vers;
3264
3265 if (on == ison) /* return quickly if nothing to do */
3266 return;
3267
3268 xterm_mouse_vers = use_xterm_mouse();
3269 if (xterm_mouse_vers > 0)
3270 {
3271 if (on) /* enable mouse events, use mouse tracking if available */
3272 out_str_nf((char_u *)
3273 (xterm_mouse_vers > 1
3274 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3275 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3276 else /* disable mouse events, could probably always send the same */
3277 out_str_nf((char_u *)
3278 (xterm_mouse_vers > 1
3279 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3280 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3281 ison = on;
3282 }
3283
3284# ifdef FEAT_MOUSE_DEC
3285 else if (ttym_flags == TTYM_DEC)
3286 {
3287 if (on) /* enable mouse events */
3288 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3289 else /* disable mouse events */
3290 out_str_nf((char_u *)"\033['z");
3291 ison = on;
3292 }
3293# endif
3294
3295# ifdef FEAT_MOUSE_GPM
3296 else
3297 {
3298 if (on)
3299 {
3300 if (gpm_open())
3301 ison = TRUE;
3302 }
3303 else
3304 {
3305 gpm_close();
3306 ison = FALSE;
3307 }
3308 }
3309# endif
3310
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003311# ifdef FEAT_SYSMOUSE
3312 else
3313 {
3314 if (on)
3315 {
3316 if (sysmouse_open() == OK)
3317 ison = TRUE;
3318 }
3319 else
3320 {
3321 sysmouse_close();
3322 ison = FALSE;
3323 }
3324 }
3325# endif
3326
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327# ifdef FEAT_MOUSE_JSB
3328 else
3329 {
3330 if (on)
3331 {
3332 /* D - Enable Mouse up/down messages
3333 * L - Enable Left Button Reporting
3334 * M - Enable Middle Button Reporting
3335 * R - Enable Right Button Reporting
3336 * K - Enable SHIFT and CTRL key Reporting
3337 * + - Enable Advanced messaging of mouse moves and up/down messages
3338 * Q - Quiet No Ack
3339 * # - Numeric value of mouse pointer required
3340 * 0 = Multiview 2000 cursor, used as standard
3341 * 1 = Windows Arrow
3342 * 2 = Windows I Beam
3343 * 3 = Windows Hour Glass
3344 * 4 = Windows Cross Hair
3345 * 5 = Windows UP Arrow
3346 */
3347#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3348 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3349 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3350#else
3351 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3352 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3353#endif
3354 ison = TRUE;
3355 }
3356 else
3357 {
3358 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3359 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3360 ison = FALSE;
3361 }
3362 }
3363# endif
3364# ifdef FEAT_MOUSE_PTERM
3365 else
3366 {
3367 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3368 if (on)
3369 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3370 else
3371 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3372 ison = on;
3373 }
3374# endif
3375}
3376
3377/*
3378 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3379 */
3380 void
3381check_mouse_termcode()
3382{
3383# ifdef FEAT_MOUSE_XTERM
3384 if (use_xterm_mouse()
3385# ifdef FEAT_GUI
3386 && !gui.in_use
3387# endif
3388 )
3389 {
3390 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003391 ? IF_EB("\233M", CSI_STR "M")
3392 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 if (*p_mouse != NUL)
3394 {
3395 /* force mouse off and maybe on to send possibly new mouse
3396 * activation sequence to the xterm, with(out) drag tracing. */
3397 mch_setmouse(FALSE);
3398 setmouse();
3399 }
3400 }
3401 else
3402 del_mouse_termcode(KS_MOUSE);
3403# endif
3404
3405# ifdef FEAT_MOUSE_GPM
3406 if (!use_xterm_mouse()
3407# ifdef FEAT_GUI
3408 && !gui.in_use
3409# endif
3410 )
3411 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3412# endif
3413
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003414# ifdef FEAT_SYSMOUSE
3415 if (!use_xterm_mouse()
3416# ifdef FEAT_GUI
3417 && !gui.in_use
3418# endif
3419 )
3420 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3421# endif
3422
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423# ifdef FEAT_MOUSE_JSB
3424 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3425 if (!use_xterm_mouse()
3426# ifdef FEAT_GUI
3427 && !gui.in_use
3428# endif
3429 )
3430 set_mouse_termcode(KS_JSBTERM_MOUSE,
3431 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3432 else
3433 del_mouse_termcode(KS_JSBTERM_MOUSE);
3434# endif
3435
3436# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003437 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 * define it in the GUI or when using an xterm. */
3439 if (!use_xterm_mouse()
3440# ifdef FEAT_GUI
3441 && !gui.in_use
3442# endif
3443 )
3444 set_mouse_termcode(KS_NETTERM_MOUSE,
3445 (char_u *)IF_EB("\033}", ESC_STR "}"));
3446 else
3447 del_mouse_termcode(KS_NETTERM_MOUSE);
3448# endif
3449
3450# ifdef FEAT_MOUSE_DEC
3451 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3452 if (!use_xterm_mouse()
3453# ifdef FEAT_GUI
3454 && !gui.in_use
3455# endif
3456 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003457 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3458 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 else
3460 del_mouse_termcode(KS_DEC_MOUSE);
3461# endif
3462# ifdef FEAT_MOUSE_PTERM
3463 /* same as the dec mouse */
3464 if (!use_xterm_mouse()
3465# ifdef FEAT_GUI
3466 && !gui.in_use
3467# endif
3468 )
3469 set_mouse_termcode(KS_PTERM_MOUSE,
3470 (char_u *) IF_EB("\033[", ESC_STR "["));
3471 else
3472 del_mouse_termcode(KS_PTERM_MOUSE);
3473# endif
3474}
3475#endif
3476
3477/*
3478 * set screen mode, always fails.
3479 */
3480/* ARGSUSED */
3481 int
3482mch_screenmode(arg)
3483 char_u *arg;
3484{
3485 EMSG(_(e_screenmode));
3486 return FAIL;
3487}
3488
3489#ifndef VMS
3490
3491/*
3492 * Try to get the current window size:
3493 * 1. with an ioctl(), most accurate method
3494 * 2. from the environment variables LINES and COLUMNS
3495 * 3. from the termcap
3496 * 4. keep using the old values
3497 * Return OK when size could be determined, FAIL otherwise.
3498 */
3499 int
3500mch_get_shellsize()
3501{
3502 long rows = 0;
3503 long columns = 0;
3504 char_u *p;
3505
3506 /*
3507 * For OS/2 use _scrsize().
3508 */
3509# ifdef __EMX__
3510 {
3511 int s[2];
3512
3513 _scrsize(s);
3514 columns = s[0];
3515 rows = s[1];
3516 }
3517# endif
3518
3519 /*
3520 * 1. try using an ioctl. It is the most accurate method.
3521 *
3522 * Try using TIOCGWINSZ first, some systems that have it also define
3523 * TIOCGSIZE but don't have a struct ttysize.
3524 */
3525# ifdef TIOCGWINSZ
3526 {
3527 struct winsize ws;
3528 int fd = 1;
3529
3530 /* When stdout is not a tty, use stdin for the ioctl(). */
3531 if (!isatty(fd) && isatty(read_cmd_fd))
3532 fd = read_cmd_fd;
3533 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3534 {
3535 columns = ws.ws_col;
3536 rows = ws.ws_row;
3537 }
3538 }
3539# else /* TIOCGWINSZ */
3540# ifdef TIOCGSIZE
3541 {
3542 struct ttysize ts;
3543 int fd = 1;
3544
3545 /* When stdout is not a tty, use stdin for the ioctl(). */
3546 if (!isatty(fd) && isatty(read_cmd_fd))
3547 fd = read_cmd_fd;
3548 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3549 {
3550 columns = ts.ts_cols;
3551 rows = ts.ts_lines;
3552 }
3553 }
3554# endif /* TIOCGSIZE */
3555# endif /* TIOCGWINSZ */
3556
3557 /*
3558 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003559 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3560 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003562 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 {
3564 if ((p = (char_u *)getenv("LINES")))
3565 rows = atoi((char *)p);
3566 if ((p = (char_u *)getenv("COLUMNS")))
3567 columns = atoi((char *)p);
3568 }
3569
3570#ifdef HAVE_TGETENT
3571 /*
3572 * 3. try reading "co" and "li" entries from termcap
3573 */
3574 if (columns == 0 || rows == 0)
3575 getlinecol(&columns, &rows);
3576#endif
3577
3578 /*
3579 * 4. If everything fails, use the old values
3580 */
3581 if (columns <= 0 || rows <= 0)
3582 return FAIL;
3583
3584 Rows = rows;
3585 Columns = columns;
3586 return OK;
3587}
3588
3589/*
3590 * Try to set the window size to Rows and Columns.
3591 */
3592 void
3593mch_set_shellsize()
3594{
3595 if (*T_CWS)
3596 {
3597 /*
3598 * NOTE: if you get an error here that term_set_winsize() is
3599 * undefined, check the output of configure. It could probably not
3600 * find a ncurses, termcap or termlib library.
3601 */
3602 term_set_winsize((int)Rows, (int)Columns);
3603 out_flush();
3604 screen_start(); /* don't know where cursor is now */
3605 }
3606}
3607
3608#endif /* VMS */
3609
3610/*
3611 * Rows and/or Columns has changed.
3612 */
3613 void
3614mch_new_shellsize()
3615{
3616 /* Nothing to do. */
3617}
3618
Bram Moolenaardf177f62005-02-22 08:39:57 +00003619#ifndef USE_SYSTEM
3620static void append_ga_line __ARGS((garray_T *gap));
3621
3622/*
3623 * Append the text in "gap" below the cursor line and clear "gap".
3624 */
3625 static void
3626append_ga_line(gap)
3627 garray_T *gap;
3628{
3629 /* Remove trailing CR. */
3630 if (gap->ga_len > 0
3631 && !curbuf->b_p_bin
3632 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3633 --gap->ga_len;
3634 ga_append(gap, NUL);
3635 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3636 gap->ga_len = 0;
3637}
3638#endif
3639
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 int
3641mch_call_shell(cmd, options)
3642 char_u *cmd;
3643 int options; /* SHELL_*, see vim.h */
3644{
3645#ifdef VMS
3646 char *ifn = NULL;
3647 char *ofn = NULL;
3648#endif
3649 int tmode = cur_tmode;
3650#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3651 int x;
3652# ifndef __EMX__
3653 char_u *newcmd; /* only needed for unix */
3654# else
3655 /*
3656 * Set the preferred shell in the EMXSHELL environment variable (but
3657 * only if it is different from what is already in the environment).
3658 * Emx then takes care of whether to use "/c" or "-c" in an
3659 * intelligent way. Simply pass the whole thing to emx's system() call.
3660 * Emx also starts an interactive shell if system() is passed an empty
3661 * string.
3662 */
3663 char_u *p, *old;
3664
3665 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3666 {
3667 /* should check HAVE_SETENV, but I know we don't have it. */
3668 p = alloc(10 + strlen(p_sh));
3669 if (p)
3670 {
3671 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3672 putenv((char *)p); /* don't free the pointer! */
3673 }
3674 }
3675# endif
3676
3677 out_flush();
3678
3679 if (options & SHELL_COOKED)
3680 settmode(TMODE_COOK); /* set to normal mode */
3681
3682# ifdef __EMX__
3683 if (cmd == NULL)
3684 x = system(""); /* this starts an interactive shell in emx */
3685 else
3686 x = system((char *)cmd);
3687 /* system() returns -1 when error occurs in starting shell */
3688 if (x == -1 && !emsg_silent)
3689 {
3690 MSG_PUTS(_("\nCannot execute shell "));
3691 msg_outtrans(p_sh);
3692 msg_putchar('\n');
3693 }
3694# else /* not __EMX__ */
3695 if (cmd == NULL)
3696 x = system((char *)p_sh);
3697 else
3698 {
3699# ifdef VMS
3700 if (ofn = strchr((char *)cmd, '>'))
3701 *ofn++ = '\0';
3702 if (ifn = strchr((char *)cmd, '<'))
3703 {
3704 char *p;
3705
3706 *ifn++ = '\0';
3707 p = strchr(ifn,' '); /* chop off any trailing spaces */
3708 if (p)
3709 *p = '\0';
3710 }
3711 if (ofn)
3712 x = vms_sys((char *)cmd, ofn, ifn);
3713 else
3714 x = system((char *)cmd);
3715# else
3716 newcmd = lalloc(STRLEN(p_sh)
3717 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3718 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3719 if (newcmd == NULL)
3720 x = 0;
3721 else
3722 {
3723 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3724 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3725 (char *)p_shcf,
3726 (char *)cmd);
3727 x = system((char *)newcmd);
3728 vim_free(newcmd);
3729 }
3730# endif
3731 }
3732# ifdef VMS
3733 x = vms_sys_status(x);
3734# endif
3735 if (emsg_silent)
3736 ;
3737 else if (x == 127)
3738 MSG_PUTS(_("\nCannot execute shell sh\n"));
3739# endif /* __EMX__ */
3740 else if (x && !(options & SHELL_SILENT))
3741 {
3742 MSG_PUTS(_("\nshell returned "));
3743 msg_outnum((long)x);
3744 msg_putchar('\n');
3745 }
3746
3747 if (tmode == TMODE_RAW)
3748 settmode(TMODE_RAW); /* set to raw mode */
3749# ifdef FEAT_TITLE
3750 resettitle();
3751# endif
3752 return x;
3753
3754#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3755
Bram Moolenaardf177f62005-02-22 08:39:57 +00003756# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3757 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758
3759 char_u *newcmd = NULL;
3760 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003761 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 pid_t wait_pid = 0;
3763# ifdef HAVE_UNION_WAIT
3764 union wait status;
3765# else
3766 int status = -1;
3767# endif
3768 int retval = -1;
3769 char **argv = NULL;
3770 int argc;
3771 int i;
3772 char_u *p;
3773 int inquote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003775# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 int pty_slave_fd = -1;
3777 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003778# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003779 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 int fd_fromshell[2];
3781 int pipe_error = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003782# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 char envbuf[50];
Bram Moolenaardf177f62005-02-22 08:39:57 +00003784# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 static char envbuf_Rows[20];
3786 static char envbuf_Columns[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003788 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789
3790 out_flush();
3791 if (options & SHELL_COOKED)
3792 settmode(TMODE_COOK); /* set to normal mode */
3793
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 newcmd = vim_strsave(p_sh);
3795 if (newcmd == NULL) /* out of memory */
3796 goto error;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003797
3798 /*
3799 * Do this loop twice:
3800 * 1: find number of arguments
3801 * 2: separate them and build argv[]
3802 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 for (i = 0; i < 2; ++i)
3804 {
3805 p = newcmd;
3806 inquote = FALSE;
3807 argc = 0;
3808 for (;;)
3809 {
3810 if (i == 1)
3811 argv[argc] = (char *)p;
3812 ++argc;
3813 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3814 {
3815 if (*p == '"')
3816 inquote = !inquote;
3817 ++p;
3818 }
3819 if (*p == NUL)
3820 break;
3821 if (i == 1)
3822 *p++ = NUL;
3823 p = skipwhite(p);
3824 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003825 if (argv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 {
3827 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3828 if (argv == NULL) /* out of memory */
3829 goto error;
3830 }
3831 }
3832 if (cmd != NULL)
3833 {
3834 if (extra_shell_arg != NULL)
3835 argv[argc++] = (char *)extra_shell_arg;
3836 argv[argc++] = (char *)p_shcf;
3837 argv[argc++] = (char *)cmd;
3838 }
3839 argv[argc] = NULL;
3840
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003842 * For the GUI, when writing the output into the buffer and when reading
3843 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3844 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003846 if ((options & (SHELL_READ|SHELL_WRITE))
3847# ifdef FEAT_GUI
3848 || (gui.in_use && show_shell_mess)
3849# endif
3850 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003852# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 /*
3854 * Try to open a master pty.
3855 * If this works, open the slave pty.
3856 * If the slave can't be opened, close the master pty.
3857 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003858 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 {
3860 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3861 if (pty_master_fd >= 0 && ((pty_slave_fd =
3862 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3863 {
3864 close(pty_master_fd);
3865 pty_master_fd = -1;
3866 }
3867 }
3868 /*
3869 * If not opening a pty or it didn't work, try using pipes.
3870 */
3871 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003872# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 {
3874 pipe_error = (pipe(fd_toshell) < 0);
3875 if (!pipe_error) /* pipe create OK */
3876 {
3877 pipe_error = (pipe(fd_fromshell) < 0);
3878 if (pipe_error) /* pipe create failed */
3879 {
3880 close(fd_toshell[0]);
3881 close(fd_toshell[1]);
3882 }
3883 }
3884 if (pipe_error)
3885 {
3886 MSG_PUTS(_("\nCannot create pipes\n"));
3887 out_flush();
3888 }
3889 }
3890 }
3891
3892 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 {
3894# ifdef __BEOS__
3895 beos_cleanup_read_thread();
3896# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003897
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3899 {
3900 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00003901 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003903 || (gui.in_use && show_shell_mess)
3904# endif
3905 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003907# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 if (pty_master_fd >= 0) /* close the pseudo tty */
3909 {
3910 close(pty_master_fd);
3911 close(pty_slave_fd);
3912 }
3913 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003914# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 {
3916 close(fd_toshell[0]);
3917 close(fd_toshell[1]);
3918 close(fd_fromshell[0]);
3919 close(fd_fromshell[1]);
3920 }
3921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 }
3923 else if (pid == 0) /* child */
3924 {
3925 reset_signals(); /* handle signals normally */
3926
3927 if (!show_shell_mess || (options & SHELL_EXPAND))
3928 {
3929 int fd;
3930
3931 /*
3932 * Don't want to show any message from the shell. Can't just
3933 * close stdout and stderr though, because some systems will
3934 * break if you try to write to them after that, so we must
3935 * use dup() to replace them with something else -- webb
3936 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3937 * waiting for input.
3938 */
3939 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3940 fclose(stdin);
3941 fclose(stdout);
3942 fclose(stderr);
3943
3944 /*
3945 * If any of these open()'s and dup()'s fail, we just continue
3946 * anyway. It's not fatal, and on most systems it will make
3947 * no difference at all. On a few it will cause the execvp()
3948 * to exit with a non-zero status even when the completion
3949 * could be done, which is nothing too serious. If the open()
3950 * or dup() failed we'd just do the same thing ourselves
3951 * anyway -- webb
3952 */
3953 if (fd >= 0)
3954 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003955 ignored = dup(fd); /* To replace stdin (fd 0) */
3956 ignored = dup(fd); /* To replace stdout (fd 1) */
3957 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958
3959 /* Don't need this now that we've duplicated it */
3960 close(fd);
3961 }
3962 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003963 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003965 || gui.in_use
3966# endif
3967 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 {
3969
Bram Moolenaardf177f62005-02-22 08:39:57 +00003970# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003971 /* Create our own process group, so that the child and all its
3972 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003973 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003974 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00003975 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003976 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00003977# if defined(SIGHUP)
3978 /* When doing "!xterm&" and 'shell' is bash: the shell
3979 * will exit and send SIGHUP to all processes in its
3980 * group, killing the just started process. Ignore SIGHUP
3981 * to avoid that. (suggested by Simon Schubert)
3982 */
3983 signal(SIGHUP, SIG_IGN);
3984# endif
3985 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003986# endif
3987# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003988 if (pty_slave_fd >= 0)
3989 {
3990 /* push stream discipline modules */
3991 if (options & SHELL_COOKED)
3992 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003994 /* Try to become controlling tty (probably doesn't work,
3995 * unless run by root) */
3996 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003998 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 /* Simulate to have a dumb terminal (for now) */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004001# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 setenv("TERM", "dumb", 1);
4003 sprintf((char *)envbuf, "%ld", Rows);
4004 setenv("ROWS", (char *)envbuf, 1);
4005 sprintf((char *)envbuf, "%ld", Rows);
4006 setenv("LINES", (char *)envbuf, 1);
4007 sprintf((char *)envbuf, "%ld", Columns);
4008 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004009# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 /*
4011 * Putenv does not copy the string, it has to remain valid.
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004012 * Use a static array to avoid losing allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 */
4014 putenv("TERM=dumb");
4015 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4016 putenv(envbuf_Rows);
4017 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4018 putenv(envbuf_Rows);
4019 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4020 putenv(envbuf_Columns);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004021# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022
Bram Moolenaara5792f52005-11-23 21:25:05 +00004023 /*
4024 * stderr is only redirected when using the GUI, so that a
4025 * program like gpg can still access the terminal to get a
4026 * passphrase using stderr.
4027 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004028# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 if (pty_master_fd >= 0)
4030 {
4031 close(pty_master_fd); /* close master side of pty */
4032
4033 /* set up stdin/stdout/stderr for the child */
4034 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004035 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004037 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004038 if (gui.in_use)
4039 {
4040 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004041 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043
4044 close(pty_slave_fd); /* has been dupped, close it now */
4045 }
4046 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004047# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 {
4049 /* set up stdin for the child */
4050 close(fd_toshell[1]);
4051 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004052 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 close(fd_toshell[0]);
4054
4055 /* set up stdout for the child */
4056 close(fd_fromshell[0]);
4057 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004058 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 close(fd_fromshell[1]);
4060
Bram Moolenaara5792f52005-11-23 21:25:05 +00004061# ifdef FEAT_GUI
4062 if (gui.in_use)
4063 {
4064 /* set up stderr for the child */
4065 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004066 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004067 }
4068# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 }
4070 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004071
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 /*
4073 * There is no type cast for the argv, because the type may be
4074 * different on different machines. This may cause a warning
4075 * message with strict compilers, don't worry about it.
4076 * Call _exit() instead of exit() to avoid closing the connection
4077 * to the X server (esp. with GTK, which uses atexit()).
4078 */
4079 execvp(argv[0], argv);
4080 _exit(EXEC_FAILED); /* exec failed, return failure code */
4081 }
4082 else /* parent */
4083 {
4084 /*
4085 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004086 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 */
4088 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004089 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090
4091 /*
4092 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004093 * This is also used to pipe stdin/stdout to/from the external
4094 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004096 if ((options & (SHELL_READ|SHELL_WRITE))
4097# ifdef FEAT_GUI
4098 || (gui.in_use && show_shell_mess)
4099# endif
4100 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004102# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004104# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004106# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4108 int ta_len = 0; /* valid bytes in ta_buf[] */
4109 int len;
4110 int p_more_save;
4111 int old_State;
4112 int c;
4113 int toshell_fd;
4114 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004115 garray_T ga;
4116 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004117# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4118 struct timeval start_tv;
4119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120
Bram Moolenaardf177f62005-02-22 08:39:57 +00004121# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 if (pty_master_fd >= 0)
4123 {
4124 close(pty_slave_fd); /* close slave side of pty */
4125 fromshell_fd = pty_master_fd;
4126 toshell_fd = dup(pty_master_fd);
4127 }
4128 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004129# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 {
4131 close(fd_toshell[0]);
4132 close(fd_fromshell[1]);
4133 toshell_fd = fd_toshell[1];
4134 fromshell_fd = fd_fromshell[0];
4135 }
4136
4137 /*
4138 * Write to the child if there are typed characters.
4139 * Read from the child if there are characters available.
4140 * Repeat the reading a few times if more characters are
4141 * available. Need to check for typed keys now and then, but
4142 * not too often (delays when no chars are available).
4143 * This loop is quit if no characters can be read from the pty
4144 * (WaitForChar detected special condition), or there are no
4145 * characters available and the child has exited.
4146 * Only check if the child has exited when there is no more
4147 * output. The child may exit before all the output has
4148 * been printed.
4149 *
4150 * Currently this busy loops!
4151 * This can probably dead-lock when the write blocks!
4152 */
4153 p_more_save = p_more;
4154 p_more = FALSE;
4155 old_State = State;
4156 State = EXTERNCMD; /* don't redraw at window resize */
4157
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004158 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004159 {
4160 /* Fork a process that will write the lines to the
4161 * external program. */
4162 if ((wpid = fork()) == -1)
4163 {
4164 MSG_PUTS(_("\nCannot fork\n"));
4165 }
4166 else if (wpid == 0)
4167 {
4168 linenr_T lnum = curbuf->b_op_start.lnum;
4169 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004170 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004171 char_u *s;
4172 size_t l;
4173
4174 /* child */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004175 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004176 for (;;)
4177 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004178 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004179 if (l == 0)
4180 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004181 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004182 /* NL -> NUL translation */
4183 len = write(toshell_fd, "", (size_t)1);
4184 else
4185 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004186 s = vim_strchr(lp + written, NL);
4187 len = write(toshell_fd, (char *)lp + written,
4188 s == NULL ? l : s - (lp + written));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004189 }
4190 if (len == l)
4191 {
4192 /* Finished a line, add a NL, unless this line
4193 * should not have one. */
4194 if (lnum != curbuf->b_op_end.lnum
4195 || !curbuf->b_p_bin
4196 || (lnum != write_no_eol_lnum
4197 && (lnum !=
4198 curbuf->b_ml.ml_line_count
4199 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004200 ignored = write(toshell_fd, "\n",
4201 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004202 ++lnum;
4203 if (lnum > curbuf->b_op_end.lnum)
4204 {
4205 /* finished all the lines, close pipe */
4206 close(toshell_fd);
4207 toshell_fd = -1;
4208 break;
4209 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004210 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004211 written = 0;
4212 }
4213 else if (len > 0)
4214 written += len;
4215 }
4216 _exit(0);
4217 }
4218 else
4219 {
4220 close(toshell_fd);
4221 toshell_fd = -1;
4222 }
4223 }
4224
4225 if (options & SHELL_READ)
4226 ga_init2(&ga, 1, BUFLEN);
4227
4228 noread_cnt = 0;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004229# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4230 gettimeofday(&start_tv, NULL);
4231# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 for (;;)
4233 {
4234 /*
4235 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004236 * if there are any.
4237 * Don't do this if we are expanding wild cards (would eat
4238 * typeahead).
4239 * Don't do this when filtering and terminal is in cooked
4240 * mode, the shell command will handle the I/O. Avoids
4241 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004242 * Don't get characters when the child has already
4243 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004244 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004245 * while (noread_cnt > 4), avoids that ":r !ls" eats
4246 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 */
4248 len = 0;
4249 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004250 && ((options &
4251 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4252 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004253# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004254 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004255# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004256 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004257 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004258 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004260 if (ta_len == 0)
4261 {
4262 /* Get extra characters when we don't have any.
4263 * Reset the counter and timer. */
4264 noread_cnt = 0;
4265# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4266 gettimeofday(&start_tv, NULL);
4267# endif
4268 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4269 }
4270 if (ta_len > 0 || len > 0)
4271 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 /*
4273 * For pipes:
4274 * Check for CTRL-C: send interrupt signal to child.
4275 * Check for CTRL-D: EOF, close pipe to child.
4276 */
4277 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4278 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004279# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 /*
4281 * Send SIGINT to the child's group or all
4282 * processes in our group.
4283 */
4284 if (ta_buf[ta_len] == Ctrl_C
4285 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004286 {
4287# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004289# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004292 if (wpid > 0)
4293 kill(wpid, SIGINT);
4294 }
4295# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 if (pty_master_fd < 0 && toshell_fd >= 0
4297 && ta_buf[ta_len] == Ctrl_D)
4298 {
4299 close(toshell_fd);
4300 toshell_fd = -1;
4301 }
4302 }
4303
4304 /* replace K_BS by <BS> and K_DEL by <DEL> */
4305 for (i = ta_len; i < ta_len + len; ++i)
4306 {
4307 if (ta_buf[i] == CSI && len - i > 2)
4308 {
4309 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4310 if (c == K_DEL || c == K_KDEL || c == K_BS)
4311 {
4312 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4313 (size_t)(len - i - 2));
4314 if (c == K_DEL || c == K_KDEL)
4315 ta_buf[i] = DEL;
4316 else
4317 ta_buf[i] = Ctrl_H;
4318 len -= 2;
4319 }
4320 }
4321 else if (ta_buf[i] == '\r')
4322 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004323# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004325 i += (*mb_ptr2len)(ta_buf + i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004326# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 }
4328
4329 /*
4330 * For pipes: echo the typed characters.
4331 * For a pty this does not seem to work.
4332 */
4333 if (pty_master_fd < 0)
4334 {
4335 for (i = ta_len; i < ta_len + len; ++i)
4336 {
4337 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4338 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004339# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 else if (has_mbyte)
4341 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004342 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343
4344 msg_outtrans_len(ta_buf + i, l);
4345 i += l - 1;
4346 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004347# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 else
4349 msg_outtrans_len(ta_buf + i, 1);
4350 }
4351 windgoto(msg_row, msg_col);
4352 out_flush();
4353 }
4354
4355 ta_len += len;
4356
4357 /*
4358 * Write the characters to the child, unless EOF has
4359 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004360 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004361 * When writing buffer lines, drop the typed
4362 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004364 if (options & SHELL_WRITE)
4365 ta_len = 0;
4366 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 {
4368 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4369 if (len > 0)
4370 {
4371 ta_len -= len;
4372 mch_memmove(ta_buf, ta_buf + len, ta_len);
4373 }
4374 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 }
4377
Bram Moolenaardf177f62005-02-22 08:39:57 +00004378 if (got_int)
4379 {
4380 /* CTRL-C sends a signal to the child, we ignore it
4381 * ourselves */
4382# ifdef HAVE_SETSID
4383 kill(-pid, SIGINT);
4384# else
4385 kill(0, SIGINT);
4386# endif
4387 if (wpid > 0)
4388 kill(wpid, SIGINT);
4389 got_int = FALSE;
4390 }
4391
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 /*
4393 * Check if the child has any characters to be printed.
4394 * Read them and write them to our window. Repeat this as
4395 * long as there is something to do, avoid the 10ms wait
4396 * for mch_inchar(), or sending typeahead characters to
4397 * the external process.
4398 * TODO: This should handle escape sequences, compatible
4399 * to some terminal (vt52?).
4400 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004401 ++noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4403 {
4404 len = read(fromshell_fd, (char *)buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004405# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004407# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004409# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 );
4411 if (len <= 0) /* end of file or error */
4412 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004413
4414 noread_cnt = 0;
4415 if (options & SHELL_READ)
4416 {
4417 /* Do NUL -> NL translation, append NL separated
4418 * lines to the current buffer. */
4419 for (i = 0; i < len; ++i)
4420 {
4421 if (buffer[i] == NL)
4422 append_ga_line(&ga);
4423 else if (buffer[i] == NUL)
4424 ga_append(&ga, NL);
4425 else
4426 ga_append(&ga, buffer[i]);
4427 }
4428 }
4429# ifdef FEAT_MBYTE
4430 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 {
4432 int l;
4433
Bram Moolenaardf177f62005-02-22 08:39:57 +00004434 len += buffer_off;
4435 buffer[len] = NUL;
4436
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 /* Check if the last character in buffer[] is
4438 * incomplete, keep these bytes for the next
4439 * round. */
4440 for (p = buffer; p < buffer + len; p += l)
4441 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004442 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if (l == 0)
4444 l = 1; /* NUL byte? */
4445 else if (MB_BYTE2LEN(*p) != l)
4446 break;
4447 }
4448 if (p == buffer) /* no complete character */
4449 {
4450 /* avoid getting stuck at an illegal byte */
4451 if (len >= 12)
4452 ++p;
4453 else
4454 {
4455 buffer_off = len;
4456 continue;
4457 }
4458 }
4459 c = *p;
4460 *p = NUL;
4461 msg_puts(buffer);
4462 if (p < buffer + len)
4463 {
4464 *p = c;
4465 buffer_off = (buffer + len) - p;
4466 mch_memmove(buffer, p, buffer_off);
4467 continue;
4468 }
4469 buffer_off = 0;
4470 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004471# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 {
4474 buffer[len] = NUL;
4475 msg_puts(buffer);
4476 }
4477
4478 windgoto(msg_row, msg_col);
4479 cursor_on();
4480 out_flush();
4481 if (got_int)
4482 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004483
4484# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4485 {
4486 struct timeval now_tv;
4487 long msec;
4488
4489 /* Avoid that we keep looping here without
4490 * checking for a CTRL-C for a long time. Don't
4491 * break out too often to avoid losing typeahead. */
4492 gettimeofday(&now_tv, NULL);
4493 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4494 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4495 if (msec > 2000)
4496 {
4497 noread_cnt = 5;
4498 break;
4499 }
4500 }
4501# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 }
4503
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004504 /* If we already detected the child has finished break the
4505 * loop now. */
4506 if (wait_pid == pid)
4507 break;
4508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 /*
4510 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004511 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004513# ifdef __NeXT__
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004515# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004517# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4519 || (wait_pid == pid && WIFEXITED(status)))
4520 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004521 /* Don't break the loop yet, try reading more
4522 * characters from "fromshell_fd" first. When using
4523 * pipes there might still be something to read and
4524 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004527 else
4528 wait_pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 }
4530finished:
4531 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004532 if (options & SHELL_READ)
4533 {
4534 if (ga.ga_len > 0)
4535 {
4536 append_ga_line(&ga);
4537 /* remember that the NL was missing */
4538 write_no_eol_lnum = curwin->w_cursor.lnum;
4539 }
4540 else
4541 write_no_eol_lnum = 0;
4542 ga_clear(&ga);
4543 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 /*
4546 * Give all typeahead that wasn't used back to ui_inchar().
4547 */
4548 if (ta_len)
4549 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 State = old_State;
4551 if (toshell_fd >= 0)
4552 close(toshell_fd);
4553 close(fromshell_fd);
4554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555
4556 /*
4557 * Wait until our child has exited.
4558 * Ignore wait() returning pids of other children and returning
4559 * because of some signal like SIGWINCH.
4560 * Don't wait if wait_pid was already set above, indicating the
4561 * child already exited.
4562 */
4563 while (wait_pid != pid)
4564 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004565# ifdef _THREAD_SAFE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 /* Ugly hack: when compiled with Python threads are probably
4567 * used, in which case wait() sometimes hangs for no obvious
4568 * reason. Use waitpid() instead and loop (like the GUI). */
4569# ifdef __NeXT__
4570 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4571# else
4572 wait_pid = waitpid(pid, &status, WNOHANG);
4573# endif
4574 if (wait_pid == 0)
4575 {
4576 /* Wait for 1/100 sec before trying again. */
4577 mch_delay(10L, TRUE);
4578 continue;
4579 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004580# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 wait_pid = wait(&status);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004582# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 if (wait_pid <= 0
4584# ifdef ECHILD
4585 && errno == ECHILD
4586# endif
4587 )
4588 break;
4589 }
4590
Bram Moolenaardf177f62005-02-22 08:39:57 +00004591 /* Make sure the child that writes to the external program is
4592 * dead. */
4593 if (wpid > 0)
4594 kill(wpid, SIGKILL);
4595
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 /*
4597 * Set to raw mode right now, otherwise a CTRL-C after
4598 * catch_signals() will kill Vim.
4599 */
4600 if (tmode == TMODE_RAW)
4601 settmode(TMODE_RAW);
4602 did_settmode = TRUE;
4603 set_signals();
4604
4605 if (WIFEXITED(status))
4606 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00004607 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 retval = WEXITSTATUS(status);
4609 if (retval && !emsg_silent)
4610 {
4611 if (retval == EXEC_FAILED)
4612 {
4613 MSG_PUTS(_("\nCannot execute shell "));
4614 msg_outtrans(p_sh);
4615 msg_putchar('\n');
4616 }
4617 else if (!(options & SHELL_SILENT))
4618 {
4619 MSG_PUTS(_("\nshell returned "));
4620 msg_outnum((long)retval);
4621 msg_putchar('\n');
4622 }
4623 }
4624 }
4625 else
4626 MSG_PUTS(_("\nCommand terminated\n"));
4627 }
4628 }
4629 vim_free(argv);
4630
4631error:
4632 if (!did_settmode)
4633 if (tmode == TMODE_RAW)
4634 settmode(TMODE_RAW); /* set to raw mode */
4635# ifdef FEAT_TITLE
4636 resettitle();
4637# endif
4638 vim_free(newcmd);
4639
4640 return retval;
4641
4642#endif /* USE_SYSTEM */
4643}
4644
4645/*
4646 * Check for CTRL-C typed by reading all available characters.
4647 * In cooked mode we should get SIGINT, no need to check.
4648 */
4649 void
4650mch_breakcheck()
4651{
4652 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4653 fill_input_buf(FALSE);
4654}
4655
4656/*
4657 * Wait "msec" msec until a character is available from the keyboard or from
4658 * inbuf[]. msec == -1 will block forever.
4659 * When a GUI is being used, this will never get called -- webb
4660 */
4661 static int
4662WaitForChar(msec)
4663 long msec;
4664{
4665#ifdef FEAT_MOUSE_GPM
4666 int gpm_process_wanted;
4667#endif
4668#ifdef FEAT_XCLIPBOARD
4669 int rest;
4670#endif
4671 int avail;
4672
4673 if (input_available()) /* something in inbuf[] */
4674 return 1;
4675
4676#if defined(FEAT_MOUSE_DEC)
4677 /* May need to query the mouse position. */
4678 if (WantQueryMouse)
4679 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004680 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4682 }
4683#endif
4684
4685 /*
4686 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4687 * events. This is a bit complicated, because they might both be defined.
4688 */
4689#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4690# ifdef FEAT_XCLIPBOARD
4691 rest = 0;
4692 if (do_xterm_trace())
4693 rest = msec;
4694# endif
4695 do
4696 {
4697# ifdef FEAT_XCLIPBOARD
4698 if (rest != 0)
4699 {
4700 msec = XT_TRACE_DELAY;
4701 if (rest >= 0 && rest < XT_TRACE_DELAY)
4702 msec = rest;
4703 if (rest >= 0)
4704 rest -= msec;
4705 }
4706# endif
4707# ifdef FEAT_MOUSE_GPM
4708 gpm_process_wanted = 0;
4709 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4710# else
4711 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4712# endif
4713 if (!avail)
4714 {
4715 if (input_available())
4716 return 1;
4717# ifdef FEAT_XCLIPBOARD
4718 if (rest == 0 || !do_xterm_trace())
4719# endif
4720 break;
4721 }
4722 }
4723 while (FALSE
4724# ifdef FEAT_MOUSE_GPM
4725 || (gpm_process_wanted && mch_gpm_process() == 0)
4726# endif
4727# ifdef FEAT_XCLIPBOARD
4728 || (!avail && rest != 0)
4729# endif
4730 );
4731
4732#else
4733 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4734#endif
4735 return avail;
4736}
4737
4738/*
4739 * Wait "msec" msec until a character is available from file descriptor "fd".
4740 * Time == -1 will block forever.
4741 * When a GUI is being used, this will not be used for input -- webb
4742 * Returns also, when a request from Sniff is waiting -- toni.
4743 * Or when a Linux GPM mouse event is waiting.
4744 */
4745/* ARGSUSED */
4746#if defined(__BEOS__)
4747 int
4748#else
4749 static int
4750#endif
4751RealWaitForChar(fd, msec, check_for_gpm)
4752 int fd;
4753 long msec;
4754 int *check_for_gpm;
4755{
4756 int ret;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004757#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 static int busy = FALSE;
4759
4760 /* May retry getting characters after an event was handled. */
4761# define MAY_LOOP
4762
4763# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4764 /* Remember at what time we started, so that we know how much longer we
4765 * should wait after being interrupted. */
4766# define USE_START_TV
4767 struct timeval start_tv;
4768
4769 if (msec > 0 && (
4770# ifdef FEAT_XCLIPBOARD
4771 xterm_Shell != (Widget)0
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004772# if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 ||
4774# endif
4775# endif
4776# ifdef USE_XSMP
4777 xsmp_icefd != -1
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004778# ifdef FEAT_MZSCHEME
4779 ||
4780# endif
4781# endif
4782# ifdef FEAT_MZSCHEME
4783 (mzthreads_allowed() && p_mzq > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784# endif
4785 ))
4786 gettimeofday(&start_tv, NULL);
4787# endif
4788
4789 /* Handle being called recursively. This may happen for the session
4790 * manager stuff, it may save the file, which does a breakcheck. */
4791 if (busy)
4792 return 0;
4793#endif
4794
4795#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004796 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797#endif
4798 {
4799#ifdef MAY_LOOP
4800 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004801# ifdef FEAT_MZSCHEME
4802 int mzquantum_used = FALSE;
4803# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804#endif
4805#ifndef HAVE_SELECT
4806 struct pollfd fds[5];
4807 int nfd;
4808# ifdef FEAT_XCLIPBOARD
4809 int xterm_idx = -1;
4810# endif
4811# ifdef FEAT_MOUSE_GPM
4812 int gpm_idx = -1;
4813# endif
4814# ifdef USE_XSMP
4815 int xsmp_idx = -1;
4816# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004817 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004819# ifdef FEAT_MZSCHEME
4820 mzvim_check_threads();
4821 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4822 {
4823 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4824 mzquantum_used = TRUE;
4825 }
4826# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 fds[0].fd = fd;
4828 fds[0].events = POLLIN;
4829 nfd = 1;
4830
4831# ifdef FEAT_SNIFF
4832# define SNIFF_IDX 1
4833 if (want_sniff_request)
4834 {
4835 fds[SNIFF_IDX].fd = fd_from_sniff;
4836 fds[SNIFF_IDX].events = POLLIN;
4837 nfd++;
4838 }
4839# endif
4840# ifdef FEAT_XCLIPBOARD
4841 if (xterm_Shell != (Widget)0)
4842 {
4843 xterm_idx = nfd;
4844 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4845 fds[nfd].events = POLLIN;
4846 nfd++;
4847 }
4848# endif
4849# ifdef FEAT_MOUSE_GPM
4850 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4851 {
4852 gpm_idx = nfd;
4853 fds[nfd].fd = gpm_fd;
4854 fds[nfd].events = POLLIN;
4855 nfd++;
4856 }
4857# endif
4858# ifdef USE_XSMP
4859 if (xsmp_icefd != -1)
4860 {
4861 xsmp_idx = nfd;
4862 fds[nfd].fd = xsmp_icefd;
4863 fds[nfd].events = POLLIN;
4864 nfd++;
4865 }
4866# endif
4867
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004868 ret = poll(fds, nfd, towait);
4869# ifdef FEAT_MZSCHEME
4870 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004871 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004872 finished = FALSE;
4873# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
4875# ifdef FEAT_SNIFF
4876 if (ret < 0)
4877 sniff_disconnect(1);
4878 else if (want_sniff_request)
4879 {
4880 if (fds[SNIFF_IDX].revents & POLLHUP)
4881 sniff_disconnect(1);
4882 if (fds[SNIFF_IDX].revents & POLLIN)
4883 sniff_request_waiting = 1;
4884 }
4885# endif
4886# ifdef FEAT_XCLIPBOARD
4887 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4888 {
4889 xterm_update(); /* Maybe we should hand out clipboard */
4890 if (--ret == 0 && !input_available())
4891 /* Try again */
4892 finished = FALSE;
4893 }
4894# endif
4895# ifdef FEAT_MOUSE_GPM
4896 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4897 {
4898 *check_for_gpm = 1;
4899 }
4900# endif
4901# ifdef USE_XSMP
4902 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4903 {
4904 if (fds[xsmp_idx].revents & POLLIN)
4905 {
4906 busy = TRUE;
4907 xsmp_handle_requests();
4908 busy = FALSE;
4909 }
4910 else if (fds[xsmp_idx].revents & POLLHUP)
4911 {
4912 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004913 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 xsmp_close();
4915 }
4916 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004917 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 }
4919# endif
4920
4921
4922#else /* HAVE_SELECT */
4923
4924 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004925 struct timeval *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 fd_set rfds, efds;
4927 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004928 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004930# ifdef FEAT_MZSCHEME
4931 mzvim_check_threads();
4932 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4933 {
4934 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4935 mzquantum_used = TRUE;
4936 }
4937# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938# ifdef __EMX__
4939 /* don't check for incoming chars if not in raw mode, because select()
4940 * always returns TRUE then (in some version of emx.dll) */
4941 if (curr_tmode != TMODE_RAW)
4942 return 0;
4943# endif
4944
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004945 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004947 tv.tv_sec = towait / 1000;
4948 tv.tv_usec = (towait % 1000) * (1000000/1000);
4949 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004951 else
4952 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953
4954 /*
4955 * Select on ready for reading and exceptional condition (end of file).
4956 */
4957 FD_ZERO(&rfds); /* calls bzero() on a sun */
4958 FD_ZERO(&efds);
4959 FD_SET(fd, &rfds);
4960# if !defined(__QNX__) && !defined(__CYGWIN32__)
4961 /* For QNX select() always returns 1 if this is set. Why? */
4962 FD_SET(fd, &efds);
4963# endif
4964 maxfd = fd;
4965
4966# ifdef FEAT_SNIFF
4967 if (want_sniff_request)
4968 {
4969 FD_SET(fd_from_sniff, &rfds);
4970 FD_SET(fd_from_sniff, &efds);
4971 if (maxfd < fd_from_sniff)
4972 maxfd = fd_from_sniff;
4973 }
4974# endif
4975# ifdef FEAT_XCLIPBOARD
4976 if (xterm_Shell != (Widget)0)
4977 {
4978 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4979 if (maxfd < ConnectionNumber(xterm_dpy))
4980 maxfd = ConnectionNumber(xterm_dpy);
4981 }
4982# endif
4983# ifdef FEAT_MOUSE_GPM
4984 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4985 {
4986 FD_SET(gpm_fd, &rfds);
4987 FD_SET(gpm_fd, &efds);
4988 if (maxfd < gpm_fd)
4989 maxfd = gpm_fd;
4990 }
4991# endif
4992# ifdef USE_XSMP
4993 if (xsmp_icefd != -1)
4994 {
4995 FD_SET(xsmp_icefd, &rfds);
4996 FD_SET(xsmp_icefd, &efds);
4997 if (maxfd < xsmp_icefd)
4998 maxfd = xsmp_icefd;
4999 }
5000# endif
5001
5002# ifdef OLD_VMS
5003 /* Old VMS as v6.2 and older have broken select(). It waits more than
5004 * required. Should not be used */
5005 ret = 0;
5006# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005007 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
5008# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00005009# ifdef __TANDEM
5010 if (ret == -1 && errno == ENOTSUP)
5011 {
5012 FD_ZERO(&rfds);
5013 FD_ZERO(&efds);
5014 ret = 0;
5015 }
5016#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005017# ifdef FEAT_MZSCHEME
5018 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005019 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005020 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021# endif
5022
5023# ifdef FEAT_SNIFF
5024 if (ret < 0 )
5025 sniff_disconnect(1);
5026 else if (ret > 0 && want_sniff_request)
5027 {
5028 if (FD_ISSET(fd_from_sniff, &efds))
5029 sniff_disconnect(1);
5030 if (FD_ISSET(fd_from_sniff, &rfds))
5031 sniff_request_waiting = 1;
5032 }
5033# endif
5034# ifdef FEAT_XCLIPBOARD
5035 if (ret > 0 && xterm_Shell != (Widget)0
5036 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5037 {
5038 xterm_update(); /* Maybe we should hand out clipboard */
5039 /* continue looping when we only got the X event and the input
5040 * buffer is empty */
5041 if (--ret == 0 && !input_available())
5042 {
5043 /* Try again */
5044 finished = FALSE;
5045 }
5046 }
5047# endif
5048# ifdef FEAT_MOUSE_GPM
5049 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5050 {
5051 if (FD_ISSET(gpm_fd, &efds))
5052 gpm_close();
5053 else if (FD_ISSET(gpm_fd, &rfds))
5054 *check_for_gpm = 1;
5055 }
5056# endif
5057# ifdef USE_XSMP
5058 if (ret > 0 && xsmp_icefd != -1)
5059 {
5060 if (FD_ISSET(xsmp_icefd, &efds))
5061 {
5062 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005063 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 xsmp_close();
5065 if (--ret == 0)
5066 finished = FALSE; /* keep going if event was only one */
5067 }
5068 else if (FD_ISSET(xsmp_icefd, &rfds))
5069 {
5070 busy = TRUE;
5071 xsmp_handle_requests();
5072 busy = FALSE;
5073 if (--ret == 0)
5074 finished = FALSE; /* keep going if event was only one */
5075 }
5076 }
5077# endif
5078
5079#endif /* HAVE_SELECT */
5080
5081#ifdef MAY_LOOP
5082 if (finished || msec == 0)
5083 break;
5084
5085 /* We're going to loop around again, find out for how long */
5086 if (msec > 0)
5087 {
5088# ifdef USE_START_TV
5089 struct timeval mtv;
5090
5091 /* Compute remaining wait time. */
5092 gettimeofday(&mtv, NULL);
5093 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5094 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5095# else
5096 /* Guess we got interrupted halfway. */
5097 msec = msec / 2;
5098# endif
5099 if (msec <= 0)
5100 break; /* waited long enough */
5101 }
5102#endif
5103 }
5104
5105 return (ret > 0);
5106}
5107
5108#ifndef VMS
5109
5110#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005112 * Expand a path into all matching files and/or directories. Handles "*",
5113 * "?", "[a-z]", "**", etc.
5114 * "path" has backslashes before chars that are not to be expanded.
5115 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 */
5117 int
5118mch_expandpath(gap, path, flags)
5119 garray_T *gap;
5120 char_u *path;
5121 int flags; /* EW_* flags */
5122{
Bram Moolenaar02743632005-07-25 20:42:36 +00005123 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124}
5125#endif
5126
5127/*
5128 * mch_expand_wildcards() - this code does wild-card pattern matching using
5129 * the shell
5130 *
5131 * return OK for success, FAIL for error (you may lose some memory) and put
5132 * an error message in *file.
5133 *
5134 * num_pat is number of input patterns
5135 * pat is array of pointers to input patterns
5136 * num_file is pointer to number of matched file names
5137 * file is pointer to array of pointers to matched file names
5138 */
5139
5140#ifndef SEEK_SET
5141# define SEEK_SET 0
5142#endif
5143#ifndef SEEK_END
5144# define SEEK_END 2
5145#endif
5146
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005147#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005148
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149/* ARGSUSED */
5150 int
5151mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5152 int num_pat;
5153 char_u **pat;
5154 int *num_file;
5155 char_u ***file;
5156 int flags; /* EW_* flags */
5157{
5158 int i;
5159 size_t len;
5160 char_u *p;
5161 int dir;
5162#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005163 /*
5164 * This is the OS/2 implementation.
5165 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166# define EXPL_ALLOC_INC 16
5167 char_u **expl_files;
5168 size_t files_alloced, files_free;
5169 char_u *buf;
5170 int has_wildcard;
5171
5172 *num_file = 0; /* default: no files found */
5173 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5174 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5175 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5176 if (*file == NULL)
5177 return FAIL;
5178
5179 for (; num_pat > 0; num_pat--, pat++)
5180 {
5181 expl_files = NULL;
5182 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5183 /* expand environment var or home dir */
5184 buf = expand_env_save(*pat);
5185 else
5186 buf = vim_strsave(*pat);
5187 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005188 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 if (has_wildcard) /* yes, so expand them */
5190 expl_files = (char_u **)_fnexplode(buf);
5191
5192 /*
5193 * return value of buf if no wildcards left,
5194 * OR if no match AND EW_NOTFOUND is set.
5195 */
5196 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5197 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5198 { /* simply save the current contents of *buf */
5199 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5200 if (expl_files != NULL)
5201 {
5202 expl_files[0] = vim_strsave(buf);
5203 expl_files[1] = NULL;
5204 }
5205 }
5206 vim_free(buf);
5207
5208 /*
5209 * Count number of names resulting from expansion,
5210 * At the same time add a backslash to the end of names that happen to
5211 * be directories, and replace slashes with backslashes.
5212 */
5213 if (expl_files)
5214 {
5215 for (i = 0; (p = expl_files[i]) != NULL; i++)
5216 {
5217 dir = mch_isdir(p);
5218 /* If we don't want dirs and this is one, skip it */
5219 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5220 continue;
5221
Bram Moolenaara2031822006-03-07 22:29:51 +00005222 /* Skip files that are not executable if we check for that. */
5223 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5224 continue;
5225
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 if (--files_free == 0)
5227 {
5228 /* need more room in table of pointers */
5229 files_alloced += EXPL_ALLOC_INC;
5230 *file = (char_u **)vim_realloc(*file,
5231 sizeof(char_u **) * files_alloced);
5232 if (*file == NULL)
5233 {
5234 EMSG(_(e_outofmem));
5235 *num_file = 0;
5236 return FAIL;
5237 }
5238 files_free = EXPL_ALLOC_INC;
5239 }
5240 slash_adjust(p);
5241 if (dir)
5242 {
5243 /* For a directory we add a '/', unless it's already
5244 * there. */
5245 len = STRLEN(p);
5246 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5247 {
5248 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00005249 if (!after_pathsep((*file)[*num_file],
5250 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 {
5252 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005253 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 }
5255 }
5256 }
5257 else
5258 {
5259 (*file)[*num_file] = vim_strsave(p);
5260 }
5261
5262 /*
5263 * Error message already given by either alloc or vim_strsave.
5264 * Should return FAIL, but returning OK works also.
5265 */
5266 if ((*file)[*num_file] == NULL)
5267 break;
5268 (*num_file)++;
5269 }
5270 _fnexplodefree((char **)expl_files);
5271 }
5272 }
5273 return OK;
5274
5275#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005276 /*
5277 * This is the non-OS/2 implementation (really Unix).
5278 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 int j;
5280 char_u *tempname;
5281 char_u *command;
5282 FILE *fd;
5283 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005284#define STYLE_ECHO 0 /* use "echo", the default */
5285#define STYLE_GLOB 1 /* use "glob", for csh */
5286#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5287#define STYLE_PRINT 3 /* use "print -N", for zsh */
5288#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5289 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 int shell_style = STYLE_ECHO;
5291 int check_spaces;
5292 static int did_find_nul = FALSE;
5293 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005294 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005295 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296
5297 *num_file = 0; /* default: no files found */
5298 *file = NULL;
5299
5300 /*
5301 * If there are no wildcards, just copy the names to allocated memory.
5302 * Saves a lot of time, because we don't have to start a new shell.
5303 */
5304 if (!have_wildcard(num_pat, pat))
5305 return save_patterns(num_pat, pat, num_file, file);
5306
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005307# ifdef HAVE_SANDBOX
5308 /* Don't allow any shell command in the sandbox. */
5309 if (sandbox != 0 && check_secure())
5310 return FAIL;
5311# endif
5312
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 /*
5314 * Don't allow the use of backticks in secure and restricted mode.
5315 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005316 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 for (i = 0; i < num_pat; ++i)
5318 if (vim_strchr(pat[i], '`') != NULL
5319 && (check_restricted() || check_secure()))
5320 return FAIL;
5321
5322 /*
5323 * get a name for the temp file
5324 */
5325 if ((tempname = vim_tempname('o')) == NULL)
5326 {
5327 EMSG(_(e_notmp));
5328 return FAIL;
5329 }
5330
5331 /*
5332 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00005333 * file.
5334 * STYLE_BT: NL separated
5335 * If expanding `cmd` execute it directly.
5336 * STYLE_GLOB: NUL separated
5337 * If we use *csh, "glob" will work better than "echo".
5338 * STYLE_PRINT: NL or NUL separated
5339 * If we use *zsh, "print -N" will work better than "glob".
5340 * STYLE_VIMGLOB: NL separated
5341 * If we use *sh*, we define "vimglob()".
5342 * STYLE_ECHO: space separated.
5343 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 */
5345 if (num_pat == 1 && *pat[0] == '`'
5346 && (len = STRLEN(pat[0])) > 2
5347 && *(pat[0] + len - 1) == '`')
5348 shell_style = STYLE_BT;
5349 else if ((len = STRLEN(p_sh)) >= 3)
5350 {
5351 if (STRCMP(p_sh + len - 3, "csh") == 0)
5352 shell_style = STYLE_GLOB;
5353 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5354 shell_style = STYLE_PRINT;
5355 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005356 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5357 "sh") != NULL)
5358 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359
Bram Moolenaarc7247912008-01-13 12:54:11 +00005360 /* Compute the length of the command. We need 2 extra bytes: for the
5361 * optional '&' and for the NUL.
5362 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005364 if (shell_style == STYLE_VIMGLOB)
5365 len += STRLEN(sh_vimglob_func);
5366
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005367 for (i = 0; i < num_pat; ++i)
5368 {
5369 /* Count the length of the patterns in the same way as they are put in
5370 * "command" below. */
5371#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005373#else
5374 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00005375 for (j = 0; pat[i][j] != NUL; ++j)
5376 {
5377 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5378 ++len; /* may add a backslash */
5379 ++len;
5380 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005381#endif
5382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 command = alloc(len);
5384 if (command == NULL)
5385 {
5386 /* out of memory */
5387 vim_free(tempname);
5388 return FAIL;
5389 }
5390
5391 /*
5392 * Build the shell command:
5393 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5394 * recognizes this).
5395 * - Add the shell command to print the expanded names.
5396 * - Add the temp file name.
5397 * - Add the file name patterns.
5398 */
5399 if (shell_style == STYLE_BT)
5400 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00005401 /* change `command; command& ` to (command; command ) */
5402 STRCPY(command, "(");
5403 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005405 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 while (p > command && vim_iswhite(*p))
5407 --p;
5408 if (*p == '&') /* remove trailing '&' */
5409 {
5410 ampersent = TRUE;
5411 *p = ' ';
5412 }
5413 STRCAT(command, ">");
5414 }
5415 else
5416 {
5417 if (flags & EW_NOTFOUND)
5418 STRCPY(command, "set nonomatch; ");
5419 else
5420 STRCPY(command, "unset nonomatch; ");
5421 if (shell_style == STYLE_GLOB)
5422 STRCAT(command, "glob >");
5423 else if (shell_style == STYLE_PRINT)
5424 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00005425 else if (shell_style == STYLE_VIMGLOB)
5426 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 else
5428 STRCAT(command, "echo >");
5429 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005430
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00005432
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 if (shell_style != STYLE_BT)
5434 for (i = 0; i < num_pat; ++i)
5435 {
5436 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00005437 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005438 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439#ifdef USE_SYSTEM
5440 STRCAT(command, " \"");
5441 STRCAT(command, pat[i]);
5442 STRCAT(command, "\"");
5443#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00005444 int intick = FALSE;
5445
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 p = command + STRLEN(command);
5447 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00005448 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005449 {
5450 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00005451 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005452 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5453 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005454 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00005455 * backslash inside backticks, before a special character
5456 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005457 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00005458 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5459 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005460 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005461 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005462 }
5463 else if (!intick && vim_strchr(SHELL_SPECIAL,
Bram Moolenaar582fd852005-03-28 20:58:01 +00005464 pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00005465 /* Put a backslash before a special character, but not
5466 * when inside ``. */
5467 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005468
5469 /* Copy one character. */
5470 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00005471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 *p = NUL;
5473#endif
5474 }
5475 if (flags & EW_SILENT)
5476 show_shell_mess = FALSE;
5477 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00005478 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479
5480 /*
5481 * Using zsh -G: If a pattern has no matches, it is just deleted from
5482 * the argument list, otherwise zsh gives an error message and doesn't
5483 * expand any other pattern.
5484 */
5485 if (shell_style == STYLE_PRINT)
5486 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5487
5488 /*
5489 * If we use -f then shell variables set in .cshrc won't get expanded.
5490 * vi can do it, so we will too, but it is only necessary if there is a "$"
5491 * in one of the patterns, otherwise we can still use the fast option.
5492 */
5493 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5494 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5495
5496 /*
5497 * execute the shell command
5498 */
5499 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5500
5501 /* When running in the background, give it some time to create the temp
5502 * file, but don't wait for it to finish. */
5503 if (ampersent)
5504 mch_delay(10L, TRUE);
5505
5506 extra_shell_arg = NULL; /* cleanup */
5507 show_shell_mess = TRUE;
5508 vim_free(command);
5509
Bram Moolenaarc7247912008-01-13 12:54:11 +00005510 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 {
5512 mch_remove(tempname);
5513 vim_free(tempname);
5514 /*
5515 * With interactive completion, the error message is not printed.
5516 * However with USE_SYSTEM, I don't know how to turn off error messages
5517 * from the shell, so screen may still get messed up -- webb.
5518 */
5519#ifndef USE_SYSTEM
5520 if (!(flags & EW_SILENT))
5521#endif
5522 {
5523 redraw_later_clear(); /* probably messed up screen */
5524 msg_putchar('\n'); /* clear bottom line quickly */
5525 cmdline_row = Rows - 1; /* continue on last line */
5526#ifdef USE_SYSTEM
5527 if (!(flags & EW_SILENT))
5528#endif
5529 {
5530 MSG(_(e_wildexpand));
5531 msg_start(); /* don't overwrite this message */
5532 }
5533 }
5534 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5535 * EW_NOTFOUND is given */
5536 if (shell_style == STYLE_BT)
5537 return FAIL;
5538 goto notfound;
5539 }
5540
5541 /*
5542 * read the names from the file into memory
5543 */
5544 fd = fopen((char *)tempname, READBIN);
5545 if (fd == NULL)
5546 {
5547 /* Something went wrong, perhaps a file name with a special char. */
5548 if (!(flags & EW_SILENT))
5549 {
5550 MSG(_(e_wildexpand));
5551 msg_start(); /* don't overwrite this message */
5552 }
5553 vim_free(tempname);
5554 goto notfound;
5555 }
5556 fseek(fd, 0L, SEEK_END);
5557 len = ftell(fd); /* get size of temp file */
5558 fseek(fd, 0L, SEEK_SET);
5559 buffer = alloc(len + 1);
5560 if (buffer == NULL)
5561 {
5562 /* out of memory */
5563 mch_remove(tempname);
5564 vim_free(tempname);
5565 fclose(fd);
5566 return FAIL;
5567 }
5568 i = fread((char *)buffer, 1, len, fd);
5569 fclose(fd);
5570 mch_remove(tempname);
5571 if (i != len)
5572 {
5573 /* unexpected read error */
5574 EMSG2(_(e_notread), tempname);
5575 vim_free(tempname);
5576 vim_free(buffer);
5577 return FAIL;
5578 }
5579 vim_free(tempname);
5580
Bram Moolenaarc7247912008-01-13 12:54:11 +00005581# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5583 p = buffer;
5584 for (i = 0; i < len; ++i)
5585 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5586 *p++ = buffer[i];
5587 len = p - buffer;
5588# endif
5589
5590
5591 /* file names are separated with Space */
5592 if (shell_style == STYLE_ECHO)
5593 {
5594 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5595 p = buffer;
5596 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5597 {
5598 while (*p != ' ' && *p != '\n')
5599 ++p;
5600 p = skipwhite(p); /* skip to next entry */
5601 }
5602 }
5603 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005604 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 {
5606 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5607 p = buffer;
5608 for (i = 0; *p != NUL; ++i) /* count number of entries */
5609 {
5610 while (*p != '\n' && *p != NUL)
5611 ++p;
5612 if (*p != NUL)
5613 ++p;
5614 p = skipwhite(p); /* skip leading white space */
5615 }
5616 }
5617 /* file names are separated with NUL */
5618 else
5619 {
5620 /*
5621 * Some versions of zsh use spaces instead of NULs to separate
5622 * results. Only do this when there is no NUL before the end of the
5623 * buffer, otherwise we would never be able to use file names with
5624 * embedded spaces when zsh does use NULs.
5625 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5626 * don't check for spaces again.
5627 */
5628 check_spaces = FALSE;
5629 if (shell_style == STYLE_PRINT && !did_find_nul)
5630 {
5631 /* If there is a NUL, set did_find_nul, else set check_spaces */
5632 if (len && (int)STRLEN(buffer) < len - 1)
5633 did_find_nul = TRUE;
5634 else
5635 check_spaces = TRUE;
5636 }
5637
5638 /*
5639 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5640 * already is one, for STYLE_GLOB it needs to be added.
5641 */
5642 if (len && buffer[len - 1] == NUL)
5643 --len;
5644 else
5645 buffer[len] = NUL;
5646 i = 0;
5647 for (p = buffer; p < buffer + len; ++p)
5648 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5649 {
5650 ++i;
5651 *p = NUL;
5652 }
5653 if (len)
5654 ++i; /* count last entry */
5655 }
5656 if (i == 0)
5657 {
5658 /*
5659 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5660 * /bin/sh will happily expand it to nothing rather than returning an
5661 * error; and hey, it's good to check anyway -- webb.
5662 */
5663 vim_free(buffer);
5664 goto notfound;
5665 }
5666 *num_file = i;
5667 *file = (char_u **)alloc(sizeof(char_u *) * i);
5668 if (*file == NULL)
5669 {
5670 /* out of memory */
5671 vim_free(buffer);
5672 return FAIL;
5673 }
5674
5675 /*
5676 * Isolate the individual file names.
5677 */
5678 p = buffer;
5679 for (i = 0; i < *num_file; ++i)
5680 {
5681 (*file)[i] = p;
5682 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005683 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5684 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00005686 while (!(shell_style == STYLE_ECHO && *p == ' ')
5687 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 ++p;
5689 if (p == buffer + len) /* last entry */
5690 *p = NUL;
5691 else
5692 {
5693 *p++ = NUL;
5694 p = skipwhite(p); /* skip to next entry */
5695 }
5696 }
5697 else /* NUL separates */
5698 {
5699 while (*p && p < buffer + len) /* skip entry */
5700 ++p;
5701 ++p; /* skip NUL */
5702 }
5703 }
5704
5705 /*
5706 * Move the file names to allocated memory.
5707 */
5708 for (j = 0, i = 0; i < *num_file; ++i)
5709 {
5710 /* Require the files to exist. Helps when using /bin/sh */
5711 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5712 continue;
5713
5714 /* check if this entry should be included */
5715 dir = (mch_isdir((*file)[i]));
5716 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5717 continue;
5718
Bram Moolenaara2031822006-03-07 22:29:51 +00005719 /* Skip files that are not executable if we check for that. */
5720 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5721 continue;
5722
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5724 if (p)
5725 {
5726 STRCPY(p, (*file)[i]);
5727 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00005728 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 (*file)[j++] = p;
5730 }
5731 }
5732 vim_free(buffer);
5733 *num_file = j;
5734
5735 if (*num_file == 0) /* rejected all entries */
5736 {
5737 vim_free(*file);
5738 *file = NULL;
5739 goto notfound;
5740 }
5741
5742 return OK;
5743
5744notfound:
5745 if (flags & EW_NOTFOUND)
5746 return save_patterns(num_pat, pat, num_file, file);
5747 return FAIL;
5748
5749#endif /* __EMX__ */
5750}
5751
5752#endif /* VMS */
5753
5754#ifndef __EMX__
5755 static int
5756save_patterns(num_pat, pat, num_file, file)
5757 int num_pat;
5758 char_u **pat;
5759 int *num_file;
5760 char_u ***file;
5761{
5762 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005763 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764
5765 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5766 if (*file == NULL)
5767 return FAIL;
5768 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00005769 {
5770 s = vim_strsave(pat[i]);
5771 if (s != NULL)
5772 /* Be compatible with expand_filename(): halve the number of
5773 * backslashes. */
5774 backslash_halve(s);
5775 (*file)[i] = s;
5776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 *num_file = num_pat;
5778 return OK;
5779}
5780#endif
5781
5782
5783/*
5784 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5785 * expand.
5786 */
5787 int
5788mch_has_exp_wildcard(p)
5789 char_u *p;
5790{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005791 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 {
5793#ifndef OS2
5794 if (*p == '\\' && p[1] != NUL)
5795 ++p;
5796 else
5797#endif
5798 if (vim_strchr((char_u *)
5799#ifdef VMS
5800 "*?%"
5801#else
5802# ifdef OS2
5803 "*?"
5804# else
5805 "*?[{'"
5806# endif
5807#endif
5808 , *p) != NULL)
5809 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 }
5811 return FALSE;
5812}
5813
5814/*
5815 * Return TRUE if the string "p" contains a wildcard.
5816 * Don't recognize '~' at the end as a wildcard.
5817 */
5818 int
5819mch_has_wildcard(p)
5820 char_u *p;
5821{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005822 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 {
5824#ifndef OS2
5825 if (*p == '\\' && p[1] != NUL)
5826 ++p;
5827 else
5828#endif
5829 if (vim_strchr((char_u *)
5830#ifdef VMS
5831 "*?%$"
5832#else
5833# ifdef OS2
5834# ifdef VIM_BACKTICK
5835 "*?$`"
5836# else
5837 "*?$"
5838# endif
5839# else
5840 "*?[{`'$"
5841# endif
5842#endif
5843 , *p) != NULL
5844 || (*p == '~' && p[1] != NUL))
5845 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 }
5847 return FALSE;
5848}
5849
5850#ifndef __EMX__
5851 static int
5852have_wildcard(num, file)
5853 int num;
5854 char_u **file;
5855{
5856 int i;
5857
5858 for (i = 0; i < num; i++)
5859 if (mch_has_wildcard(file[i]))
5860 return 1;
5861 return 0;
5862}
5863
5864 static int
5865have_dollars(num, file)
5866 int num;
5867 char_u **file;
5868{
5869 int i;
5870
5871 for (i = 0; i < num; i++)
5872 if (vim_strchr(file[i], '$') != NULL)
5873 return TRUE;
5874 return FALSE;
5875}
5876#endif /* ifndef __EMX__ */
5877
5878#ifndef HAVE_RENAME
5879/*
5880 * Scaled-down version of rename(), which is missing in Xenix.
5881 * This version can only move regular files and will fail if the
5882 * destination exists.
5883 */
5884 int
5885mch_rename(src, dest)
5886 const char *src, *dest;
5887{
5888 struct stat st;
5889
5890 if (stat(dest, &st) >= 0) /* fail if destination exists */
5891 return -1;
5892 if (link(src, dest) != 0) /* link file to new name */
5893 return -1;
5894 if (mch_remove(src) == 0) /* delete link to old name */
5895 return 0;
5896 return -1;
5897}
5898#endif /* !HAVE_RENAME */
5899
5900#ifdef FEAT_MOUSE_GPM
5901/*
5902 * Initializes connection with gpm (if it isn't already opened)
5903 * Return 1 if succeeded (or connection already opened), 0 if failed
5904 */
5905 static int
5906gpm_open()
5907{
5908 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5909
5910 if (!gpm_flag)
5911 {
5912 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5913 gpm_connect.defaultMask = ~GPM_HARD;
5914 /* Default handling for mouse move*/
5915 gpm_connect.minMod = 0; /* Handle any modifier keys */
5916 gpm_connect.maxMod = 0xffff;
5917 if (Gpm_Open(&gpm_connect, 0) > 0)
5918 {
5919 /* gpm library tries to handling TSTP causes
5920 * problems. Anyways, we close connection to Gpm whenever
5921 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005922 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00005924# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00005926# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 return 1; /* succeed */
5928 }
5929 if (gpm_fd == -2)
5930 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5931 return 0;
5932 }
5933 return 1; /* already open */
5934}
5935
5936/*
5937 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 */
5939 static void
5940gpm_close()
5941{
5942 if (gpm_flag && gpm_fd >= 0) /* if Open */
5943 Gpm_Close();
5944}
5945
5946/* Reads gpm event and adds special keys to input buf. Returns length of
5947 * generated key sequence.
5948 * This function is made after gui_send_mouse_event
5949 */
5950 static int
5951mch_gpm_process()
5952{
5953 int button;
5954 static Gpm_Event gpm_event;
5955 char_u string[6];
5956 int_u vim_modifiers;
5957 int row,col;
5958 unsigned char buttons_mask;
5959 unsigned char gpm_modifiers;
5960 static unsigned char old_buttons = 0;
5961
5962 Gpm_GetEvent(&gpm_event);
5963
5964#ifdef FEAT_GUI
5965 /* Don't put events in the input queue now. */
5966 if (hold_gui_events)
5967 return 0;
5968#endif
5969
5970 row = gpm_event.y - 1;
5971 col = gpm_event.x - 1;
5972
5973 string[0] = ESC; /* Our termcode */
5974 string[1] = 'M';
5975 string[2] = 'G';
5976 switch (GPM_BARE_EVENTS(gpm_event.type))
5977 {
5978 case GPM_DRAG:
5979 string[3] = MOUSE_DRAG;
5980 break;
5981 case GPM_DOWN:
5982 buttons_mask = gpm_event.buttons & ~old_buttons;
5983 old_buttons = gpm_event.buttons;
5984 switch (buttons_mask)
5985 {
5986 case GPM_B_LEFT:
5987 button = MOUSE_LEFT;
5988 break;
5989 case GPM_B_MIDDLE:
5990 button = MOUSE_MIDDLE;
5991 break;
5992 case GPM_B_RIGHT:
5993 button = MOUSE_RIGHT;
5994 break;
5995 default:
5996 return 0;
5997 /*Don't know what to do. Can more than one button be
5998 * reported in one event? */
5999 }
6000 string[3] = (char_u)(button | 0x20);
6001 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
6002 break;
6003 case GPM_UP:
6004 string[3] = MOUSE_RELEASE;
6005 old_buttons &= ~gpm_event.buttons;
6006 break;
6007 default:
6008 return 0;
6009 }
6010 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6011 gpm_modifiers = gpm_event.modifiers;
6012 vim_modifiers = 0x0;
6013 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6014 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6015 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6016 */
6017 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6018 vim_modifiers |= MOUSE_SHIFT;
6019
6020 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6021 vim_modifiers |= MOUSE_CTRL;
6022 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6023 vim_modifiers |= MOUSE_ALT;
6024 string[3] |= vim_modifiers;
6025 string[4] = (char_u)(col + ' ' + 1);
6026 string[5] = (char_u)(row + ' ' + 1);
6027 add_to_input_buf(string, 6);
6028 return 6;
6029}
6030#endif /* FEAT_MOUSE_GPM */
6031
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006032#ifdef FEAT_SYSMOUSE
6033/*
6034 * Initialize connection with sysmouse.
6035 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6036 * output, any sysmouse output than will be processed via sig_sysmouse().
6037 * Return OK if succeeded, FAIL if failed.
6038 */
6039 static int
6040sysmouse_open()
6041{
6042 struct mouse_info mouse;
6043
6044 mouse.operation = MOUSE_MODE;
6045 mouse.u.mode.mode = 0;
6046 mouse.u.mode.signal = SIGUSR2;
6047 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6048 {
6049 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6050 mouse.operation = MOUSE_SHOW;
6051 ioctl(1, CONS_MOUSECTL, &mouse);
6052 return OK;
6053 }
6054 return FAIL;
6055}
6056
6057/*
6058 * Stop processing SIGUSR2 signals, and also make sure that
6059 * virtual console do not send us any sysmouse related signal.
6060 */
6061 static void
6062sysmouse_close()
6063{
6064 struct mouse_info mouse;
6065
6066 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6067 mouse.operation = MOUSE_MODE;
6068 mouse.u.mode.mode = 0;
6069 mouse.u.mode.signal = 0;
6070 ioctl(1, CONS_MOUSECTL, &mouse);
6071}
6072
6073/*
6074 * Gets info from sysmouse and adds special keys to input buf.
6075 */
6076/* ARGSUSED */
6077 static RETSIGTYPE
6078sig_sysmouse SIGDEFARG(sigarg)
6079{
6080 struct mouse_info mouse;
6081 struct video_info video;
6082 char_u string[6];
6083 int row, col;
6084 int button;
6085 int buttons;
6086 static int oldbuttons = 0;
6087
6088#ifdef FEAT_GUI
6089 /* Don't put events in the input queue now. */
6090 if (hold_gui_events)
6091 return;
6092#endif
6093
6094 mouse.operation = MOUSE_GETINFO;
6095 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6096 && ioctl(1, FBIO_MODEINFO, &video) != -1
6097 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6098 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6099 {
6100 row = mouse.u.data.y / video.vi_cheight;
6101 col = mouse.u.data.x / video.vi_cwidth;
6102 buttons = mouse.u.data.buttons;
6103 string[0] = ESC; /* Our termcode */
6104 string[1] = 'M';
6105 string[2] = 'S';
6106 if (oldbuttons == buttons && buttons != 0)
6107 {
6108 button = MOUSE_DRAG;
6109 }
6110 else
6111 {
6112 switch (buttons)
6113 {
6114 case 0:
6115 button = MOUSE_RELEASE;
6116 break;
6117 case 1:
6118 button = MOUSE_LEFT;
6119 break;
6120 case 2:
6121 button = MOUSE_MIDDLE;
6122 break;
6123 case 4:
6124 button = MOUSE_RIGHT;
6125 break;
6126 default:
6127 return;
6128 }
6129 oldbuttons = buttons;
6130 }
6131 string[3] = (char_u)(button);
6132 string[4] = (char_u)(col + ' ' + 1);
6133 string[5] = (char_u)(row + ' ' + 1);
6134 add_to_input_buf(string, 6);
6135 }
6136 return;
6137}
6138#endif /* FEAT_SYSMOUSE */
6139
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140#if defined(FEAT_LIBCALL) || defined(PROTO)
6141typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6142typedef char_u * (*INTPROCSTR)__ARGS((int));
6143typedef int (*STRPROCINT)__ARGS((char_u *));
6144typedef int (*INTPROCINT)__ARGS((int));
6145
6146/*
6147 * Call a DLL routine which takes either a string or int param
6148 * and returns an allocated string.
6149 */
6150 int
6151mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6152 char_u *libname;
6153 char_u *funcname;
6154 char_u *argstring; /* NULL when using a argint */
6155 int argint;
6156 char_u **string_result;/* NULL when using number_result */
6157 int *number_result;
6158{
6159# if defined(USE_DLOPEN)
6160 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006161 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162# else
6163 shl_t hinstLib;
6164# endif
6165 STRPROCSTR ProcAdd;
6166 INTPROCSTR ProcAddI;
6167 char_u *retval_str = NULL;
6168 int retval_int = 0;
6169 int success = FALSE;
6170
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006171 /*
6172 * Get a handle to the DLL module.
6173 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006175 /* First clear any error, it's not cleared by the dlopen() call. */
6176 (void)dlerror();
6177
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 hinstLib = dlopen((char *)libname, RTLD_LAZY
6179# ifdef RTLD_LOCAL
6180 | RTLD_LOCAL
6181# endif
6182 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006183 if (hinstLib == NULL)
6184 {
6185 /* "dlerr" must be used before dlclose() */
6186 dlerr = (char *)dlerror();
6187 if (dlerr != NULL)
6188 EMSG2(_("dlerror = \"%s\""), dlerr);
6189 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190# else
6191 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6192# endif
6193
6194 /* If the handle is valid, try to get the function address. */
6195 if (hinstLib != NULL)
6196 {
6197# ifdef HAVE_SETJMP_H
6198 /*
6199 * Catch a crash when calling the library function. For example when
6200 * using a number where a string pointer is expected.
6201 */
6202 mch_startjmp();
6203 if (SETJMP(lc_jump_env) != 0)
6204 {
6205 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006206# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006207 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006208# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 mch_didjmp();
6210 }
6211 else
6212# endif
6213 {
6214 retval_str = NULL;
6215 retval_int = 0;
6216
6217 if (argstring != NULL)
6218 {
6219# if defined(USE_DLOPEN)
6220 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006221 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222# else
6223 if (shl_findsym(&hinstLib, (const char *)funcname,
6224 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6225 ProcAdd = NULL;
6226# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006227 if ((success = (ProcAdd != NULL
6228# if defined(USE_DLOPEN)
6229 && dlerr == NULL
6230# endif
6231 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 {
6233 if (string_result == NULL)
6234 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6235 else
6236 retval_str = (ProcAdd)(argstring);
6237 }
6238 }
6239 else
6240 {
6241# if defined(USE_DLOPEN)
6242 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006243 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244# else
6245 if (shl_findsym(&hinstLib, (const char *)funcname,
6246 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6247 ProcAddI = NULL;
6248# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006249 if ((success = (ProcAddI != NULL
6250# if defined(USE_DLOPEN)
6251 && dlerr == NULL
6252# endif
6253 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 {
6255 if (string_result == NULL)
6256 retval_int = ((INTPROCINT)ProcAddI)(argint);
6257 else
6258 retval_str = (ProcAddI)(argint);
6259 }
6260 }
6261
6262 /* Save the string before we free the library. */
6263 /* Assume that a "1" or "-1" result is an illegal pointer. */
6264 if (string_result == NULL)
6265 *number_result = retval_int;
6266 else if (retval_str != NULL
6267 && retval_str != (char_u *)1
6268 && retval_str != (char_u *)-1)
6269 *string_result = vim_strsave(retval_str);
6270 }
6271
6272# ifdef HAVE_SETJMP_H
6273 mch_endjmp();
6274# ifdef SIGHASARG
6275 if (lc_signal != 0)
6276 {
6277 int i;
6278
6279 /* try to find the name of this signal */
6280 for (i = 0; signal_info[i].sig != -1; i++)
6281 if (lc_signal == signal_info[i].sig)
6282 break;
6283 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6284 }
6285# endif
6286# endif
6287
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006289 /* "dlerr" must be used before dlclose() */
6290 if (dlerr != NULL)
6291 EMSG2(_("dlerror = \"%s\""), dlerr);
6292
6293 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 (void)dlclose(hinstLib);
6295# else
6296 (void)shl_unload(hinstLib);
6297# endif
6298 }
6299
6300 if (!success)
6301 {
6302 EMSG2(_(e_libcall), funcname);
6303 return FAIL;
6304 }
6305
6306 return OK;
6307}
6308#endif
6309
6310#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6311static int xterm_trace = -1; /* default: disabled */
6312static int xterm_button;
6313
6314/*
6315 * Setup a dummy window for X selections in a terminal.
6316 */
6317 void
6318setup_term_clip()
6319{
6320 int z = 0;
6321 char *strp = "";
6322 Widget AppShell;
6323
6324 if (!x_connect_to_server())
6325 return;
6326
6327 open_app_context();
6328 if (app_context != NULL && xterm_Shell == (Widget)0)
6329 {
6330 int (*oldhandler)();
6331#if defined(HAVE_SETJMP_H)
6332 int (*oldIOhandler)();
6333#endif
6334# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6335 struct timeval start_tv;
6336
6337 if (p_verbose > 0)
6338 gettimeofday(&start_tv, NULL);
6339# endif
6340
6341 /* Ignore X errors while opening the display */
6342 oldhandler = XSetErrorHandler(x_error_check);
6343
6344#if defined(HAVE_SETJMP_H)
6345 /* Ignore X IO errors while opening the display */
6346 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6347 mch_startjmp();
6348 if (SETJMP(lc_jump_env) != 0)
6349 {
6350 mch_didjmp();
6351 xterm_dpy = NULL;
6352 }
6353 else
6354#endif
6355 {
6356 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6357 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6358#if defined(HAVE_SETJMP_H)
6359 mch_endjmp();
6360#endif
6361 }
6362
6363#if defined(HAVE_SETJMP_H)
6364 /* Now handle X IO errors normally. */
6365 (void)XSetIOErrorHandler(oldIOhandler);
6366#endif
6367 /* Now handle X errors normally. */
6368 (void)XSetErrorHandler(oldhandler);
6369
6370 if (xterm_dpy == NULL)
6371 {
6372 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006373 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 return;
6375 }
6376
6377 /* Catch terminating error of the X server connection. */
6378 (void)XSetIOErrorHandler(x_IOerror_handler);
6379
6380# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6381 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006382 {
6383 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006385 verbose_leave();
6386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387# endif
6388
6389 /* Create a Shell to make converters work. */
6390 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6391 applicationShellWidgetClass, xterm_dpy,
6392 NULL);
6393 if (AppShell == (Widget)0)
6394 return;
6395 xterm_Shell = XtVaCreatePopupShell("VIM",
6396 topLevelShellWidgetClass, AppShell,
6397 XtNmappedWhenManaged, 0,
6398 XtNwidth, 1,
6399 XtNheight, 1,
6400 NULL);
6401 if (xterm_Shell == (Widget)0)
6402 return;
6403
6404 x11_setup_atoms(xterm_dpy);
6405 if (x11_display == NULL)
6406 x11_display = xterm_dpy;
6407
6408 XtRealizeWidget(xterm_Shell);
6409 XSync(xterm_dpy, False);
6410 xterm_update();
6411 }
6412 if (xterm_Shell != (Widget)0)
6413 {
6414 clip_init(TRUE);
6415 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6416 x11_window = (Window)atol(strp);
6417 /* Check if $WINDOWID is valid. */
6418 if (test_x11_window(xterm_dpy) == FAIL)
6419 x11_window = 0;
6420 if (x11_window != 0)
6421 xterm_trace = 0;
6422 }
6423}
6424
6425 void
6426start_xterm_trace(button)
6427 int button;
6428{
6429 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6430 return;
6431 xterm_trace = 1;
6432 xterm_button = button;
6433 do_xterm_trace();
6434}
6435
6436
6437 void
6438stop_xterm_trace()
6439{
6440 if (xterm_trace < 0)
6441 return;
6442 xterm_trace = 0;
6443}
6444
6445/*
6446 * Query the xterm pointer and generate mouse termcodes if necessary
6447 * return TRUE if dragging is active, else FALSE
6448 */
6449 static int
6450do_xterm_trace()
6451{
6452 Window root, child;
6453 int root_x, root_y;
6454 int win_x, win_y;
6455 int row, col;
6456 int_u mask_return;
6457 char_u buf[50];
6458 char_u *strp;
6459 long got_hints;
6460 static char_u *mouse_code;
6461 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6462 static int prev_row = 0, prev_col = 0;
6463 static XSizeHints xterm_hints;
6464
6465 if (xterm_trace <= 0)
6466 return FALSE;
6467
6468 if (xterm_trace == 1)
6469 {
6470 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00006471 * have changed recently. */
6472 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6473 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 || xterm_hints.width_inc <= 1
6475 || xterm_hints.height_inc <= 1)
6476 {
6477 xterm_trace = -1; /* Not enough data -- disable tracing */
6478 return FALSE;
6479 }
6480
6481 /* Rely on the same mouse code for the duration of this */
6482 mouse_code = find_termcode(mouse_name);
6483 prev_row = mouse_row;
6484 prev_row = mouse_col;
6485 xterm_trace = 2;
6486
6487 /* Find the offset of the chars, there might be a scrollbar on the
6488 * left of the window and/or a menu on the top (eterm etc.) */
6489 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6490 &win_x, &win_y, &mask_return);
6491 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6492 - (xterm_hints.height_inc / 2);
6493 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6494 xterm_hints.y = 2;
6495 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6496 - (xterm_hints.width_inc / 2);
6497 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6498 xterm_hints.x = 2;
6499 return TRUE;
6500 }
6501 if (mouse_code == NULL)
6502 {
6503 xterm_trace = 0;
6504 return FALSE;
6505 }
6506
6507 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6508 &win_x, &win_y, &mask_return);
6509
6510 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6511 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6512 if (row == prev_row && col == prev_col)
6513 return TRUE;
6514
6515 STRCPY(buf, mouse_code);
6516 strp = buf + STRLEN(buf);
6517 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6518 *strp++ = (char_u)(col + ' ' + 1);
6519 *strp++ = (char_u)(row + ' ' + 1);
6520 *strp = 0;
6521 add_to_input_buf(buf, STRLEN(buf));
6522
6523 prev_row = row;
6524 prev_col = col;
6525 return TRUE;
6526}
6527
6528# if defined(FEAT_GUI) || defined(PROTO)
6529/*
6530 * Destroy the display, window and app_context. Required for GTK.
6531 */
6532 void
6533clear_xterm_clip()
6534{
6535 if (xterm_Shell != (Widget)0)
6536 {
6537 XtDestroyWidget(xterm_Shell);
6538 xterm_Shell = (Widget)0;
6539 }
6540 if (xterm_dpy != NULL)
6541 {
Bram Moolenaare8208012008-06-20 09:59:25 +00006542# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 /* Lesstif and Solaris crash here, lose some memory */
6544 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00006545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546 if (x11_display == xterm_dpy)
6547 x11_display = NULL;
6548 xterm_dpy = NULL;
6549 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006550# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551 if (app_context != (XtAppContext)NULL)
6552 {
6553 /* Lesstif and Solaris crash here, lose some memory */
6554 XtDestroyApplicationContext(app_context);
6555 app_context = (XtAppContext)NULL;
6556 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006557# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558}
6559# endif
6560
6561/*
6562 * Catch up with any queued X events. This may put keyboard input into the
6563 * input buffer, call resize call-backs, trigger timers etc. If there is
6564 * nothing in the X event queue (& no timers pending), then we return
6565 * immediately.
6566 */
6567 static void
6568xterm_update()
6569{
6570 XEvent event;
6571
6572 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6573 {
6574 XtAppNextEvent(app_context, &event);
6575#ifdef FEAT_CLIENTSERVER
6576 {
6577 XPropertyEvent *e = (XPropertyEvent *)&event;
6578
6579 if (e->type == PropertyNotify && e->window == commWindow
6580 && e->atom == commProperty && e->state == PropertyNewValue)
6581 serverEventProc(xterm_dpy, &event);
6582 }
6583#endif
6584 XtDispatchEvent(&event);
6585 }
6586}
6587
6588 int
6589clip_xterm_own_selection(cbd)
6590 VimClipboard *cbd;
6591{
6592 if (xterm_Shell != (Widget)0)
6593 return clip_x11_own_selection(xterm_Shell, cbd);
6594 return FAIL;
6595}
6596
6597 void
6598clip_xterm_lose_selection(cbd)
6599 VimClipboard *cbd;
6600{
6601 if (xterm_Shell != (Widget)0)
6602 clip_x11_lose_selection(xterm_Shell, cbd);
6603}
6604
6605 void
6606clip_xterm_request_selection(cbd)
6607 VimClipboard *cbd;
6608{
6609 if (xterm_Shell != (Widget)0)
6610 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6611}
6612
6613 void
6614clip_xterm_set_selection(cbd)
6615 VimClipboard *cbd;
6616{
6617 clip_x11_set_selection(cbd);
6618}
6619#endif
6620
6621
6622#if defined(USE_XSMP) || defined(PROTO)
6623/*
6624 * Code for X Session Management Protocol.
6625 */
6626static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6627static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6628static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6629static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6630static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6631
6632
6633# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6634static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6635
6636/*
6637 * This is our chance to ask the user if they want to save,
6638 * or abort the logout
6639 */
6640/*ARGSUSED*/
6641 static void
6642xsmp_handle_interaction(smc_conn, client_data)
6643 SmcConn smc_conn;
6644 SmPointer client_data;
6645{
6646 cmdmod_T save_cmdmod;
6647 int cancel_shutdown = False;
6648
6649 save_cmdmod = cmdmod;
6650 cmdmod.confirm = TRUE;
6651 if (check_changed_any(FALSE))
6652 /* Mustn't logout */
6653 cancel_shutdown = True;
6654 cmdmod = save_cmdmod;
6655 setcursor(); /* position cursor */
6656 out_flush();
6657
6658 /* Done interaction */
6659 SmcInteractDone(smc_conn, cancel_shutdown);
6660
6661 /* Finish off
6662 * Only end save-yourself here if we're not cancelling shutdown;
6663 * we'll get a cancelled callback later in which we'll end it.
6664 * Hopefully get around glitchy SMs (like GNOME-1)
6665 */
6666 if (!cancel_shutdown)
6667 {
6668 xsmp.save_yourself = False;
6669 SmcSaveYourselfDone(smc_conn, True);
6670 }
6671}
6672# endif
6673
6674/*
6675 * Callback that starts save-yourself.
6676 */
6677/*ARGSUSED*/
6678 static void
6679xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6680 shutdown, interact_style, fast)
6681 SmcConn smc_conn;
6682 SmPointer client_data;
6683 int save_type;
6684 Bool shutdown;
6685 int interact_style;
6686 Bool fast;
6687{
6688 /* Handle already being in saveyourself */
6689 if (xsmp.save_yourself)
6690 SmcSaveYourselfDone(smc_conn, True);
6691 xsmp.save_yourself = True;
6692 xsmp.shutdown = shutdown;
6693
6694 /* First up, preserve all files */
6695 out_flush();
6696 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6697
6698 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006699 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006700
6701# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6702 /* Now see if we can ask about unsaved files */
6703 if (shutdown && !fast && gui.in_use)
6704 /* Need to interact with user, but need SM's permission */
6705 SmcInteractRequest(smc_conn, SmDialogError,
6706 xsmp_handle_interaction, client_data);
6707 else
6708# endif
6709 {
6710 /* Can stop the cycle here */
6711 SmcSaveYourselfDone(smc_conn, True);
6712 xsmp.save_yourself = False;
6713 }
6714}
6715
6716
6717/*
6718 * Callback to warn us of imminent death.
6719 */
6720/*ARGSUSED*/
6721 static void
6722xsmp_die(smc_conn, client_data)
6723 SmcConn smc_conn;
6724 SmPointer client_data;
6725{
6726 xsmp_close();
6727
6728 /* quit quickly leaving swapfiles for modified buffers behind */
6729 getout_preserve_modified(0);
6730}
6731
6732
6733/*
6734 * Callback to tell us that save-yourself has completed.
6735 */
6736/*ARGSUSED*/
6737 static void
6738xsmp_save_complete(smc_conn, client_data)
6739 SmcConn smc_conn;
6740 SmPointer client_data;
6741{
6742 xsmp.save_yourself = False;
6743}
6744
6745
6746/*
6747 * Callback to tell us that an instigated shutdown was cancelled
6748 * (maybe even by us)
6749 */
6750/*ARGSUSED*/
6751 static void
6752xsmp_shutdown_cancelled(smc_conn, client_data)
6753 SmcConn smc_conn;
6754 SmPointer client_data;
6755{
6756 if (xsmp.save_yourself)
6757 SmcSaveYourselfDone(smc_conn, True);
6758 xsmp.save_yourself = False;
6759 xsmp.shutdown = False;
6760}
6761
6762
6763/*
6764 * Callback to tell us that a new ICE connection has been established.
6765 */
6766/*ARGSUSED*/
6767 static void
6768xsmp_ice_connection(iceConn, clientData, opening, watchData)
6769 IceConn iceConn;
6770 IcePointer clientData;
6771 Bool opening;
6772 IcePointer *watchData;
6773{
6774 /* Intercept creation of ICE connection fd */
6775 if (opening)
6776 {
6777 xsmp_icefd = IceConnectionNumber(iceConn);
6778 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6779 }
6780}
6781
6782
6783/* Handle any ICE processing that's required; return FAIL if SM lost */
6784 int
6785xsmp_handle_requests()
6786{
6787 Bool rep;
6788
6789 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6790 == IceProcessMessagesIOError)
6791 {
6792 /* Lost ICE */
6793 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006794 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795 xsmp_close();
6796 return FAIL;
6797 }
6798 else
6799 return OK;
6800}
6801
6802static int dummy;
6803
6804/* Set up X Session Management Protocol */
6805 void
6806xsmp_init(void)
6807{
6808 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809 SmcCallbacks smcallbacks;
6810#if 0
6811 SmPropValue smname;
6812 SmProp smnameprop;
6813 SmProp *smprops[1];
6814#endif
6815
6816 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006817 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818
6819 xsmp.save_yourself = xsmp.shutdown = False;
6820
6821 /* Set up SM callbacks - must have all, even if they're not used */
6822 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6823 smcallbacks.save_yourself.client_data = NULL;
6824 smcallbacks.die.callback = xsmp_die;
6825 smcallbacks.die.client_data = NULL;
6826 smcallbacks.save_complete.callback = xsmp_save_complete;
6827 smcallbacks.save_complete.client_data = NULL;
6828 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6829 smcallbacks.shutdown_cancelled.client_data = NULL;
6830
6831 /* Set up a watch on ICE connection creations. The "dummy" argument is
6832 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6833 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6834 {
6835 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006836 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 return;
6838 }
6839
6840 /* Create an SM connection */
6841 xsmp.smcconn = SmcOpenConnection(
6842 NULL,
6843 NULL,
6844 SmProtoMajor,
6845 SmProtoMinor,
6846 SmcSaveYourselfProcMask | SmcDieProcMask
6847 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6848 &smcallbacks,
6849 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00006850 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851 sizeof(errorstring),
6852 errorstring);
6853 if (xsmp.smcconn == NULL)
6854 {
6855 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00006856
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006858 {
6859 vim_snprintf(errorreport, sizeof(errorreport),
6860 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6861 verb_msg((char_u *)errorreport);
6862 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 return;
6864 }
6865 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6866
6867#if 0
6868 /* ID ourselves */
6869 smname.value = "vim";
6870 smname.length = 3;
6871 smnameprop.name = "SmProgram";
6872 smnameprop.type = "SmARRAY8";
6873 smnameprop.num_vals = 1;
6874 smnameprop.vals = &smname;
6875
6876 smprops[0] = &smnameprop;
6877 SmcSetProperties(xsmp.smcconn, 1, smprops);
6878#endif
6879}
6880
6881
6882/* Shut down XSMP comms. */
6883 void
6884xsmp_close()
6885{
6886 if (xsmp_icefd != -1)
6887 {
6888 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00006889 if (xsmp.clientid != NULL)
6890 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00006891 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892 xsmp_icefd = -1;
6893 }
6894}
6895#endif /* USE_XSMP */
6896
6897
6898#ifdef EBCDIC
6899/* Translate character to its CTRL- value */
6900char CtrlTable[] =
6901{
6902/* 00 - 5E */
6903 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6904 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6905 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6906 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6907 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6908 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6909/* ^ */ 0x1E,
6910/* - */ 0x1F,
6911/* 61 - 6C */
6912 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6913/* _ */ 0x1F,
6914/* 6E - 80 */
6915 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6916/* a */ 0x01,
6917/* b */ 0x02,
6918/* c */ 0x03,
6919/* d */ 0x37,
6920/* e */ 0x2D,
6921/* f */ 0x2E,
6922/* g */ 0x2F,
6923/* h */ 0x16,
6924/* i */ 0x05,
6925/* 8A - 90 */
6926 0, 0, 0, 0, 0, 0, 0,
6927/* j */ 0x15,
6928/* k */ 0x0B,
6929/* l */ 0x0C,
6930/* m */ 0x0D,
6931/* n */ 0x0E,
6932/* o */ 0x0F,
6933/* p */ 0x10,
6934/* q */ 0x11,
6935/* r */ 0x12,
6936/* 9A - A1 */
6937 0, 0, 0, 0, 0, 0, 0, 0,
6938/* s */ 0x13,
6939/* t */ 0x3C,
6940/* u */ 0x3D,
6941/* v */ 0x32,
6942/* w */ 0x26,
6943/* x */ 0x18,
6944/* y */ 0x19,
6945/* z */ 0x3F,
6946/* AA - AC */
6947 0, 0, 0,
6948/* [ */ 0x27,
6949/* AE - BC */
6950 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6951/* ] */ 0x1D,
6952/* BE - C0 */ 0, 0, 0,
6953/* A */ 0x01,
6954/* B */ 0x02,
6955/* C */ 0x03,
6956/* D */ 0x37,
6957/* E */ 0x2D,
6958/* F */ 0x2E,
6959/* G */ 0x2F,
6960/* H */ 0x16,
6961/* I */ 0x05,
6962/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6963/* J */ 0x15,
6964/* K */ 0x0B,
6965/* L */ 0x0C,
6966/* M */ 0x0D,
6967/* N */ 0x0E,
6968/* O */ 0x0F,
6969/* P */ 0x10,
6970/* Q */ 0x11,
6971/* R */ 0x12,
6972/* DA - DF */ 0, 0, 0, 0, 0, 0,
6973/* \ */ 0x1C,
6974/* E1 */ 0,
6975/* S */ 0x13,
6976/* T */ 0x3C,
6977/* U */ 0x3D,
6978/* V */ 0x32,
6979/* W */ 0x26,
6980/* X */ 0x18,
6981/* Y */ 0x19,
6982/* Z */ 0x3F,
6983/* EA - FF*/ 0, 0, 0, 0, 0, 0,
6984 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6985};
6986
6987char MetaCharTable[]=
6988{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6989 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6990 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6991 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6992 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6993};
6994
6995
6996/* TODO: Use characters NOT numbers!!! */
6997char CtrlCharTable[]=
6998{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6999 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
7000 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
7001 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
7002 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
7003};
7004
7005
7006#endif