blob: 591b49c91210e7428902e9b010d81c23e5dca73f [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
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000202# define SIG_ERR ((RETSIGTYPE (*)())-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203#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
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000444# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445# 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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457 long_u
458mch_total_mem(special)
Bram Moolenaar78a15312009-05-15 19:33:18 +0000459 int special UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460{
461# ifdef __EMX__
Bram Moolenaar914572a2007-05-01 11:37:47 +0000462 return ulimit(3, 0L) >> 10; /* always 32MB? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463# else
464 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000465 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466
467# ifdef HAVE_SYSCTL
468 int mib[2], physmem;
469 size_t len;
470
471 /* BSD way of getting the amount of RAM available. */
472 mib[0] = CTL_HW;
473 mib[1] = HW_USERMEM;
474 len = sizeof(physmem);
475 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
476 mem = (long_u)physmem;
477# endif
478
479# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
480 if (mem == 0)
481 {
482 struct sysinfo sinfo;
483
484 /* Linux way of getting amount of RAM available */
485 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000486 {
487# ifdef HAVE_SYSINFO_MEM_UNIT
488 /* avoid overflow as much as possible */
489 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
490 {
491 sinfo.mem_unit = sinfo.mem_unit >> 1;
492 --shiftright;
493 }
494 mem = sinfo.totalram * sinfo.mem_unit;
495# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 mem = sinfo.totalram;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000497# endif
498 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 }
500# endif
501
502# ifdef HAVE_SYSCONF
503 if (mem == 0)
504 {
505 long pagesize, pagecount;
506
507 /* Solaris way of getting amount of RAM available */
508 pagesize = sysconf(_SC_PAGESIZE);
509 pagecount = sysconf(_SC_PHYS_PAGES);
510 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000511 {
512 /* avoid overflow as much as possible */
513 while (shiftright > 0 && (pagesize & 1) == 0)
514 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000515 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000516 --shiftright;
517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000519 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 }
521# endif
522
523 /* Return the minimum of the physical memory and the user limit, because
524 * using more than the user limit may cause Vim to be terminated. */
525# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
526 {
527 struct rlimit rlp;
528
529 if (getrlimit(RLIMIT_DATA, &rlp) == 0
530 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
531# ifdef RLIM_INFINITY
532 && rlp.rlim_cur != RLIM_INFINITY
533# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000534 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000536 {
537 mem = (long_u)rlp.rlim_cur;
538 shiftright = 10;
539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 }
541# endif
542
543 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000544 return mem >> shiftright;
545 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546# endif
547}
548#endif
549
550 void
551mch_delay(msec, ignoreinput)
552 long msec;
553 int ignoreinput;
554{
555 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000556#ifdef FEAT_MZSCHEME
557 long total = msec; /* remember original value */
558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559
560 if (ignoreinput)
561 {
562 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000563 * here. But we don't want QUIT to kill us (CTRL-\ used in a
564 * shell may produce SIGQUIT). */
565 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 old_tmode = curr_tmode;
567 if (curr_tmode == TMODE_RAW)
568 settmode(TMODE_SLEEP);
569
570 /*
571 * Everybody sleeps in a different way...
572 * Prefer nanosleep(), some versions of usleep() can only sleep up to
573 * one second.
574 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000575#ifdef FEAT_MZSCHEME
576 do
577 {
578 /* if total is large enough, wait by portions in p_mzq */
579 if (total > p_mzq)
580 msec = p_mzq;
581 else
582 msec = total;
583 total -= msec;
584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585#ifdef HAVE_NANOSLEEP
586 {
587 struct timespec ts;
588
589 ts.tv_sec = msec / 1000;
590 ts.tv_nsec = (msec % 1000) * 1000000;
591 (void)nanosleep(&ts, NULL);
592 }
593#else
594# ifdef HAVE_USLEEP
595 while (msec >= 1000)
596 {
597 usleep((unsigned int)(999 * 1000));
598 msec -= 999;
599 }
600 usleep((unsigned int)(msec * 1000));
601# else
602# ifndef HAVE_SELECT
603 poll(NULL, 0, (int)msec);
604# else
605# ifdef __EMX__
606 _sleep2(msec);
607# else
608 {
609 struct timeval tv;
610
611 tv.tv_sec = msec / 1000;
612 tv.tv_usec = (msec % 1000) * 1000;
613 /*
614 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
615 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
616 */
617 select(0, NULL, NULL, NULL, &tv);
618 }
619# endif /* __EMX__ */
620# endif /* HAVE_SELECT */
621# endif /* HAVE_NANOSLEEP */
622#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000623#ifdef FEAT_MZSCHEME
624 }
625 while (total > 0);
626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627
628 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000629 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 }
631 else
632 WaitForChar(msec);
633}
634
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000635#if 0 /* disabled, no longer needed now that regmatch() is not recursive */
636# if defined(HAVE_GETRLIMIT)
637# define HAVE_STACK_LIMIT
638# endif
639#endif
640
641#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
643# define HAVE_CHECK_STACK_GROWTH
644/*
645 * Support for checking for an almost-out-of-stack-space situation.
646 */
647
648/*
649 * Return a pointer to an item on the stack. Used to find out if the stack
650 * grows up or down.
651 */
652static void check_stack_growth __ARGS((char *p));
653static int stack_grows_downwards;
654
655/*
656 * Find out if the stack grows upwards or downwards.
657 * "p" points to a variable on the stack of the caller.
658 */
659 static void
660check_stack_growth(p)
661 char *p;
662{
663 int i;
664
665 stack_grows_downwards = (p > (char *)&i);
666}
667#endif
668
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000669#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670static char *stack_limit = NULL;
671
672#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
673# include <pthread.h>
674# include <pthread_np.h>
675#endif
676
677/*
678 * Find out until how var the stack can grow without getting into trouble.
679 * Called when starting up and when switching to the signal stack in
680 * deathtrap().
681 */
682 static void
683get_stack_limit()
684{
685 struct rlimit rlp;
686 int i;
687 long lim;
688
689 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
690 * limit doesn't fit in a long (rlim_cur might be "long long"). */
691 if (getrlimit(RLIMIT_STACK, &rlp) == 0
692 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
693# ifdef RLIM_INFINITY
694 && rlp.rlim_cur != RLIM_INFINITY
695# endif
696 )
697 {
698 lim = (long)rlp.rlim_cur;
699#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
700 {
701 pthread_attr_t attr;
702 size_t size;
703
704 /* On FreeBSD the initial thread always has a fixed stack size, no
705 * matter what the limits are set to. Normally it's 1 Mbyte. */
706 pthread_attr_init(&attr);
707 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
708 {
709 pthread_attr_getstacksize(&attr, &size);
710 if (lim > (long)size)
711 lim = (long)size;
712 }
713 pthread_attr_destroy(&attr);
714 }
715#endif
716 if (stack_grows_downwards)
717 {
718 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
719 if (stack_limit >= (char *)&i)
720 /* overflow, set to 1/16 of current stack position */
721 stack_limit = (char *)((long)&i / 16L);
722 }
723 else
724 {
725 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
726 if (stack_limit <= (char *)&i)
727 stack_limit = NULL; /* overflow */
728 }
729 }
730}
731
732/*
733 * Return FAIL when running out of stack space.
734 * "p" must point to any variable local to the caller that's on the stack.
735 */
736 int
737mch_stackcheck(p)
738 char *p;
739{
740 if (stack_limit != NULL)
741 {
742 if (stack_grows_downwards)
743 {
744 if (p < stack_limit)
745 return FAIL;
746 }
747 else if (p > stack_limit)
748 return FAIL;
749 }
750 return OK;
751}
752#endif
753
754#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
755/*
756 * Support for using the signal stack.
757 * This helps when we run out of stack space, which causes a SIGSEGV. The
758 * signal handler then must run on another stack, since the normal stack is
759 * completely full.
760 */
761
762#ifndef SIGSTKSZ
763# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
764#endif
765
766# ifdef HAVE_SIGALTSTACK
767static stack_t sigstk; /* for sigaltstack() */
768# else
769static struct sigstack sigstk; /* for sigstack() */
770# endif
771
772static void init_signal_stack __ARGS((void));
773static char *signal_stack;
774
775 static void
776init_signal_stack()
777{
778 if (signal_stack != NULL)
779 {
780# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000781# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
782 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
784 * "struct sigaltstack" needs to be declared. */
785 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
786# endif
787
788# ifdef HAVE_SS_BASE
789 sigstk.ss_base = signal_stack;
790# else
791 sigstk.ss_sp = signal_stack;
792# endif
793 sigstk.ss_size = SIGSTKSZ;
794 sigstk.ss_flags = 0;
795 (void)sigaltstack(&sigstk, NULL);
796# else
797 sigstk.ss_sp = signal_stack;
798 if (stack_grows_downwards)
799 sigstk.ss_sp += SIGSTKSZ - 1;
800 sigstk.ss_onstack = 0;
801 (void)sigstack(&sigstk, NULL);
802# endif
803 }
804}
805#endif
806
807/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000808 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 * will barf when the second argument to signal() is ``wrong''.
810 * Let me try it with a few tricky defines from my own osdef.h (jw).
811 */
812#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 static RETSIGTYPE
814sig_winch SIGDEFARG(sigarg)
815{
816 /* this is not required on all systems, but it doesn't hurt anybody */
817 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
818 do_resize = TRUE;
819 SIGRETURN;
820}
821#endif
822
823#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 static RETSIGTYPE
825catch_sigint SIGDEFARG(sigarg)
826{
827 /* this is not required on all systems, but it doesn't hurt anybody */
828 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
829 got_int = TRUE;
830 SIGRETURN;
831}
832#endif
833
834#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 static RETSIGTYPE
836catch_sigpwr SIGDEFARG(sigarg)
837{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000838 /* this is not required on all systems, but it doesn't hurt anybody */
839 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 /*
841 * I'm not sure we get the SIGPWR signal when the system is really going
842 * down or when the batteries are almost empty. Just preserve the swap
843 * files and don't exit, that can't do any harm.
844 */
845 ml_sync_all(FALSE, FALSE);
846 SIGRETURN;
847}
848#endif
849
850#ifdef SET_SIG_ALARM
851/*
852 * signal function for alarm().
853 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 static RETSIGTYPE
855sig_alarm SIGDEFARG(sigarg)
856{
857 /* doesn't do anything, just to break a system call */
858 sig_alarm_called = TRUE;
859 SIGRETURN;
860}
861#endif
862
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000863#if (defined(HAVE_SETJMP_H) \
864 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
865 || defined(FEAT_LIBCALL))) \
866 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867/*
868 * A simplistic version of setjmp() that only allows one level of using.
869 * Don't call twice before calling mch_endjmp()!.
870 * Usage:
871 * mch_startjmp();
872 * if (SETJMP(lc_jump_env) != 0)
873 * {
874 * mch_didjmp();
875 * EMSG("crash!");
876 * }
877 * else
878 * {
879 * do_the_work;
880 * mch_endjmp();
881 * }
882 * Note: Can't move SETJMP() here, because a function calling setjmp() must
883 * not return before the saved environment is used.
884 * Returns OK for normal return, FAIL when the protected code caused a
885 * problem and LONGJMP() was used.
886 */
887 void
888mch_startjmp()
889{
890#ifdef SIGHASARG
891 lc_signal = 0;
892#endif
893 lc_active = TRUE;
894}
895
896 void
897mch_endjmp()
898{
899 lc_active = FALSE;
900}
901
902 void
903mch_didjmp()
904{
905# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
906 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
907 * otherwise catching the signal only works once. */
908 init_signal_stack();
909# endif
910}
911#endif
912
913/*
914 * This function handles deadly signals.
915 * It tries to preserve any swap file and exit properly.
916 * (partly from Elvis).
917 */
918 static RETSIGTYPE
919deathtrap SIGDEFARG(sigarg)
920{
921 static int entered = 0; /* count the number of times we got here.
922 Note: when memory has been corrupted
923 this may get an arbitrary value! */
924#ifdef SIGHASARG
925 int i;
926#endif
927
928#if defined(HAVE_SETJMP_H)
929 /*
930 * Catch a crash in protected code.
931 * Restores the environment saved in lc_jump_env, which looks like
932 * SETJMP() returns 1.
933 */
934 if (lc_active)
935 {
936# if defined(SIGHASARG)
937 lc_signal = sigarg;
938# endif
939 lc_active = FALSE; /* don't jump again */
940 LONGJMP(lc_jump_env, 1);
941 /* NOTREACHED */
942 }
943#endif
944
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000945#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000946# ifdef SIGQUIT
947 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
948 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
949 * pressing CTRL-\, but we don't want Vim to exit then. */
950 if (in_mch_delay && sigarg == SIGQUIT)
951 SIGRETURN;
952# endif
953
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000954 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
955 * here. This avoids that a non-reentrant function is interrupted, e.g.,
956 * free(). Calling free() again may then cause a crash. */
957 if (entered == 0
958 && (0
959# ifdef SIGHUP
960 || sigarg == SIGHUP
961# endif
962# ifdef SIGQUIT
963 || sigarg == SIGQUIT
964# endif
965# ifdef SIGTERM
966 || sigarg == SIGTERM
967# endif
968# ifdef SIGPWR
969 || sigarg == SIGPWR
970# endif
971# ifdef SIGUSR1
972 || sigarg == SIGUSR1
973# endif
974# ifdef SIGUSR2
975 || sigarg == SIGUSR2
976# endif
977 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +0000978 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000979 SIGRETURN;
980#endif
981
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 /* Remember how often we have been called. */
983 ++entered;
984
985#ifdef FEAT_EVAL
986 /* Set the v:dying variable. */
987 set_vim_var_nr(VV_DYING, (long)entered);
988#endif
989
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000990#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 /* Since we are now using the signal stack, need to reset the stack
992 * limit. Otherwise using a regexp will fail. */
993 get_stack_limit();
994#endif
995
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000996#if 0
997 /* This is for opening gdb the moment Vim crashes.
998 * You need to manually adjust the file name and Vim executable name.
999 * Suggested by SungHyun Nam. */
1000 {
1001# define VI_GDB_FILE "/tmp/vimgdb"
1002# define VIM_NAME "/usr/bin/vim"
1003 FILE *fp = fopen(VI_GDB_FILE, "w");
1004 if (fp)
1005 {
1006 fprintf(fp,
1007 "file %s\n"
1008 "attach %d\n"
1009 "set height 1000\n"
1010 "bt full\n"
1011 , VIM_NAME, getpid());
1012 fclose(fp);
1013 system("xterm -e gdb -x "VI_GDB_FILE);
1014 unlink(VI_GDB_FILE);
1015 }
1016 }
1017#endif
1018
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019#ifdef SIGHASARG
1020 /* try to find the name of this signal */
1021 for (i = 0; signal_info[i].sig != -1; i++)
1022 if (sigarg == signal_info[i].sig)
1023 break;
1024 deadly_signal = sigarg;
1025#endif
1026
1027 full_screen = FALSE; /* don't write message to the GUI, it might be
1028 * part of the problem... */
1029 /*
1030 * If something goes wrong after entering here, we may get here again.
1031 * When this happens, give a message and try to exit nicely (resetting the
1032 * terminal mode, etc.)
1033 * When this happens twice, just exit, don't even try to give a message,
1034 * stack may be corrupt or something weird.
1035 * When this still happens again (or memory was corrupted in such a way
1036 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1037 */
1038 if (entered >= 3)
1039 {
1040 reset_signals(); /* don't catch any signals anymore */
1041 may_core_dump();
1042 if (entered >= 4)
1043 _exit(8);
1044 exit(7);
1045 }
1046 if (entered == 2)
1047 {
1048 OUT_STR(_("Vim: Double signal, exiting\n"));
1049 out_flush();
1050 getout(1);
1051 }
1052
1053#ifdef SIGHASARG
1054 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1055 signal_info[i].name);
1056#else
1057 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1058#endif
1059 preserve_exit(); /* preserve files and exit */
1060
Bram Moolenaar009b2592004-10-24 19:18:58 +00001061#ifdef NBDEBUG
1062 reset_signals();
1063 may_core_dump();
1064 abort();
1065#endif
1066
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 SIGRETURN;
1068}
1069
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001070#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071/*
1072 * On Solaris with multi-threading, suspending might not work immediately.
1073 * Catch the SIGCONT signal, which will be used as an indication whether the
1074 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001075 *
1076 * On Linux, signal is not always handled immediately either.
1077 * See https://bugs.launchpad.net/bugs/291373
1078 *
1079 * volatile because it is used in in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001081static volatile int sigcont_received;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1083
1084/*
1085 * signal handler for SIGCONT
1086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 static RETSIGTYPE
1088sigcont_handler SIGDEFARG(sigarg)
1089{
1090 sigcont_received = TRUE;
1091 SIGRETURN;
1092}
1093#endif
1094
1095/*
1096 * If the machine has job control, use it to suspend the program,
1097 * otherwise fake it by starting a new shell.
1098 */
1099 void
1100mch_suspend()
1101{
1102 /* BeOS does have SIGTSTP, but it doesn't work. */
1103#if defined(SIGTSTP) && !defined(__BEOS__)
1104 out_flush(); /* needed to make cursor visible on some systems */
1105 settmode(TMODE_COOK);
1106 out_flush(); /* needed to disable mouse on some systems */
1107
1108# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1109 /* Since we are going to sleep, we can't respond to requests for the X
1110 * selections. Lose them, otherwise other applications will hang. But
1111 * first copy the text to cut buffer 0. */
1112 if (clip_star.owned || clip_plus.owned)
1113 {
1114 x11_export_final_selection();
1115 if (clip_star.owned)
1116 clip_lose_selection(&clip_star);
1117 if (clip_plus.owned)
1118 clip_lose_selection(&clip_plus);
1119 if (x11_display != NULL)
1120 XFlush(x11_display);
1121 }
1122# endif
1123
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001124# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 sigcont_received = FALSE;
1126# endif
1127 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001128# if defined(_REENTRANT) && defined(SIGCONT)
1129 /*
1130 * Wait for the SIGCONT signal to be handled. It generally happens
1131 * immediately, but somehow not all the time. Do not call pause()
1132 * because there would be race condition which would hang Vim if
1133 * signal happened in between the test of sigcont_received and the
1134 * call to pause(). If signal is not yet received, call sleep(0)
1135 * to just yield CPU. Signal should then be received. If somehow
1136 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1137 * further if signal is not received after 1+2+3+4 ms (not expected
1138 * to happen).
1139 */
1140 {
1141 long wait;
1142 for (wait = 0; !sigcont_received && wait <= 3L; wait++)
1143 /* Loop is not entered most of the time */
1144 mch_delay(wait, FALSE);
1145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146# endif
1147
1148# ifdef FEAT_TITLE
1149 /*
1150 * Set oldtitle to NULL, so the current title is obtained again.
1151 */
1152 vim_free(oldtitle);
1153 oldtitle = NULL;
1154# endif
1155 settmode(TMODE_RAW);
1156 need_check_timestamps = TRUE;
1157 did_check_timestamps = FALSE;
1158#else
1159 suspend_shell();
1160#endif
1161}
1162
1163 void
1164mch_init()
1165{
1166 Columns = 80;
1167 Rows = 24;
1168
1169 out_flush();
1170 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001171
Bram Moolenaar56718732006-03-15 22:53:57 +00001172#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001173 mac_conv_init();
1174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175}
1176
1177 static void
1178set_signals()
1179{
1180#if defined(SIGWINCH)
1181 /*
1182 * WINDOW CHANGE signal is handled with sig_winch().
1183 */
1184 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1185#endif
1186
1187 /*
1188 * We want the STOP signal to work, to make mch_suspend() work.
1189 * For "rvim" the STOP signal is ignored.
1190 */
1191#ifdef SIGTSTP
1192 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1193#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001194#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 signal(SIGCONT, sigcont_handler);
1196#endif
1197
1198 /*
1199 * We want to ignore breaking of PIPEs.
1200 */
1201#ifdef SIGPIPE
1202 signal(SIGPIPE, SIG_IGN);
1203#endif
1204
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001206 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207#endif
1208
1209 /*
1210 * Ignore alarm signals (Perl's alarm() generates it).
1211 */
1212#ifdef SIGALRM
1213 signal(SIGALRM, SIG_IGN);
1214#endif
1215
1216 /*
1217 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1218 * work will be lost.
1219 */
1220#ifdef SIGPWR
1221 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1222#endif
1223
1224 /*
1225 * Arrange for other signals to gracefully shutdown Vim.
1226 */
1227 catch_signals(deathtrap, SIG_ERR);
1228
1229#if defined(FEAT_GUI) && defined(SIGHUP)
1230 /*
1231 * When the GUI is running, ignore the hangup signal.
1232 */
1233 if (gui.in_use)
1234 signal(SIGHUP, SIG_IGN);
1235#endif
1236}
1237
Bram Moolenaardf177f62005-02-22 08:39:57 +00001238#if defined(SIGINT) || defined(PROTO)
1239/*
1240 * Catch CTRL-C (only works while in Cooked mode).
1241 */
1242 static void
1243catch_int_signal()
1244{
1245 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1246}
1247#endif
1248
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 void
1250reset_signals()
1251{
1252 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001253#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 /* SIGCONT isn't in the list, because its default action is ignore */
1255 signal(SIGCONT, SIG_DFL);
1256#endif
1257}
1258
1259 static void
1260catch_signals(func_deadly, func_other)
1261 RETSIGTYPE (*func_deadly)();
1262 RETSIGTYPE (*func_other)();
1263{
1264 int i;
1265
1266 for (i = 0; signal_info[i].sig != -1; i++)
1267 if (signal_info[i].deadly)
1268 {
1269#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1270 struct sigaction sa;
1271
1272 /* Setup to use the alternate stack for the signal function. */
1273 sa.sa_handler = func_deadly;
1274 sigemptyset(&sa.sa_mask);
1275# if defined(__linux__) && defined(_REENTRANT)
1276 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1277 * thread handling in combination with using the alternate stack:
1278 * pthread library functions try to use the stack pointer to
1279 * identify the current thread, causing a SEGV signal, which
1280 * recursively calls deathtrap() and hangs. */
1281 sa.sa_flags = 0;
1282# else
1283 sa.sa_flags = SA_ONSTACK;
1284# endif
1285 sigaction(signal_info[i].sig, &sa, NULL);
1286#else
1287# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1288 struct sigvec sv;
1289
1290 /* Setup to use the alternate stack for the signal function. */
1291 sv.sv_handler = func_deadly;
1292 sv.sv_mask = 0;
1293 sv.sv_flags = SV_ONSTACK;
1294 sigvec(signal_info[i].sig, &sv, NULL);
1295# else
1296 signal(signal_info[i].sig, func_deadly);
1297# endif
1298#endif
1299 }
1300 else if (func_other != SIG_ERR)
1301 signal(signal_info[i].sig, func_other);
1302}
1303
1304/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001305 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001306 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1307 * return TRUE
1308 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1309 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1310 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001311 * Returns TRUE when Vim should exit.
1312 */
1313 int
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001314vim_handle_signal(sig)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001315 int sig;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001316{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001317 static int got_signal = 0;
1318 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001319
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001320 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001321 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001322 case SIGNAL_BLOCK: blocked = TRUE;
1323 break;
1324
1325 case SIGNAL_UNBLOCK: blocked = FALSE;
1326 if (got_signal != 0)
1327 {
1328 kill(getpid(), got_signal);
1329 got_signal = 0;
1330 }
1331 break;
1332
1333 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001334 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001335 got_signal = sig;
1336#ifdef SIGPWR
1337 if (sig != SIGPWR)
1338#endif
1339 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001340 break;
1341 }
1342 return FALSE;
1343}
1344
1345/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 * Check_win checks whether we have an interactive stdout.
1347 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 int
1349mch_check_win(argc, argv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001350 int argc UNUSED;
1351 char **argv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352{
1353#ifdef OS2
1354 /*
1355 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1356 * name, mostly it's just "vim" and found in the path, which is unusable.
1357 */
1358 if (mch_isFullName(argv[0]))
1359 exe_name = vim_strsave((char_u *)argv[0]);
1360#endif
1361 if (isatty(1))
1362 return OK;
1363 return FAIL;
1364}
1365
1366/*
1367 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1368 */
1369 int
1370mch_input_isatty()
1371{
1372 if (isatty(read_cmd_fd))
1373 return TRUE;
1374 return FALSE;
1375}
1376
1377#ifdef FEAT_X11
1378
1379# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1380 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1381
1382static void xopen_message __ARGS((struct timeval *tvp));
1383
1384/*
1385 * Give a message about the elapsed time for opening the X window.
1386 */
1387 static void
1388xopen_message(tvp)
1389 struct timeval *tvp; /* must contain start time */
1390{
1391 struct timeval end_tv;
1392
1393 /* Compute elapsed time. */
1394 gettimeofday(&end_tv, NULL);
1395 smsg((char_u *)_("Opening the X display took %ld msec"),
1396 (end_tv.tv_sec - tvp->tv_sec) * 1000L
Bram Moolenaar051b7822005-05-19 21:00:46 +00001397 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398}
1399# endif
1400#endif
1401
1402#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1403/*
1404 * A few functions shared by X11 title and clipboard code.
1405 */
1406static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1407static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1408static int x_connect_to_server __ARGS((void));
1409static int test_x11_window __ARGS((Display *dpy));
1410
1411static int got_x_error = FALSE;
1412
1413/*
1414 * X Error handler, otherwise X just exits! (very rude) -- webb
1415 */
1416 static int
1417x_error_handler(dpy, error_event)
1418 Display *dpy;
1419 XErrorEvent *error_event;
1420{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001421 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 STRCAT(IObuff, _("\nVim: Got X error\n"));
1423
1424 /* We cannot print a message and continue, because no X calls are allowed
1425 * here (causes my system to hang). Silently continuing might be an
1426 * alternative... */
1427 preserve_exit(); /* preserve files and exit */
1428
1429 return 0; /* NOTREACHED */
1430}
1431
1432/*
1433 * Another X Error handler, just used to check for errors.
1434 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 static int
1436x_error_check(dpy, error_event)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001437 Display *dpy UNUSED;
1438 XErrorEvent *error_event UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439{
1440 got_x_error = TRUE;
1441 return 0;
1442}
1443
1444#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1445# if defined(HAVE_SETJMP_H)
1446/*
1447 * An X IO Error handler, used to catch error while opening the display.
1448 */
1449static int x_IOerror_check __ARGS((Display *dpy));
1450
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 static int
1452x_IOerror_check(dpy)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001453 Display *dpy UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454{
1455 /* This function should not return, it causes exit(). Longjump instead. */
1456 LONGJMP(lc_jump_env, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457}
1458# endif
1459
1460/*
1461 * An X IO Error handler, used to catch terminal errors.
1462 */
1463static int x_IOerror_handler __ARGS((Display *dpy));
1464
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 static int
1466x_IOerror_handler(dpy)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001467 Display *dpy UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468{
1469 xterm_dpy = NULL;
1470 x11_window = 0;
1471 x11_display = NULL;
1472 xterm_Shell = (Widget)0;
1473
1474 /* This function should not return, it causes exit(). Longjump instead. */
1475 LONGJMP(x_jump_env, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476}
1477#endif
1478
1479/*
1480 * Return TRUE when connection to the X server is desired.
1481 */
1482 static int
1483x_connect_to_server()
1484{
1485 regmatch_T regmatch;
1486
1487#if defined(FEAT_CLIENTSERVER)
1488 if (x_force_connect)
1489 return TRUE;
1490#endif
1491 if (x_no_connect)
1492 return FALSE;
1493
1494 /* Check for a match with "exclude:" from 'clipboard'. */
1495 if (clip_exclude_prog != NULL)
1496 {
1497 regmatch.rm_ic = FALSE; /* Don't ignore case */
1498 regmatch.regprog = clip_exclude_prog;
1499 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1500 return FALSE;
1501 }
1502 return TRUE;
1503}
1504
1505/*
1506 * Test if "dpy" and x11_window are valid by getting the window title.
1507 * I don't actually want it yet, so there may be a simpler call to use, but
1508 * this will cause the error handler x_error_check() to be called if anything
1509 * is wrong, such as the window pointer being invalid (as can happen when the
1510 * user changes his DISPLAY, but not his WINDOWID) -- webb
1511 */
1512 static int
1513test_x11_window(dpy)
1514 Display *dpy;
1515{
1516 int (*old_handler)();
1517 XTextProperty text_prop;
1518
1519 old_handler = XSetErrorHandler(x_error_check);
1520 got_x_error = FALSE;
1521 if (XGetWMName(dpy, x11_window, &text_prop))
1522 XFree((void *)text_prop.value);
1523 XSync(dpy, False);
1524 (void)XSetErrorHandler(old_handler);
1525
1526 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001527 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528
1529 return (got_x_error ? FAIL : OK);
1530}
1531#endif
1532
1533#ifdef FEAT_TITLE
1534
1535#ifdef FEAT_X11
1536
1537static int get_x11_thing __ARGS((int get_title, int test_only));
1538
1539/*
1540 * try to get x11 window and display
1541 *
1542 * return FAIL for failure, OK otherwise
1543 */
1544 static int
1545get_x11_windis()
1546{
1547 char *winid;
1548 static int result = -1;
1549#define XD_NONE 0 /* x11_display not set here */
1550#define XD_HERE 1 /* x11_display opened here */
1551#define XD_GUI 2 /* x11_display used from gui.dpy */
1552#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1553 static int x11_display_from = XD_NONE;
1554 static int did_set_error_handler = FALSE;
1555
1556 if (!did_set_error_handler)
1557 {
1558 /* X just exits if it finds an error otherwise! */
1559 (void)XSetErrorHandler(x_error_handler);
1560 did_set_error_handler = TRUE;
1561 }
1562
Bram Moolenaar9372a112005-12-06 19:59:18 +00001563#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 if (gui.in_use)
1565 {
1566 /*
1567 * If the X11 display was opened here before, for the window where Vim
1568 * was started, close that one now to avoid a memory leak.
1569 */
1570 if (x11_display_from == XD_HERE && x11_display != NULL)
1571 {
1572 XCloseDisplay(x11_display);
1573 x11_display_from = XD_NONE;
1574 }
1575 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1576 {
1577 x11_display_from = XD_GUI;
1578 return OK;
1579 }
1580 x11_display = NULL;
1581 return FAIL;
1582 }
1583 else if (x11_display_from == XD_GUI)
1584 {
1585 /* GUI must have stopped somehow, clear x11_display */
1586 x11_window = 0;
1587 x11_display = NULL;
1588 x11_display_from = XD_NONE;
1589 }
1590#endif
1591
1592 /* When started with the "-X" argument, don't try connecting. */
1593 if (!x_connect_to_server())
1594 return FAIL;
1595
1596 /*
1597 * If WINDOWID not set, should try another method to find out
1598 * what the current window number is. The only code I know for
1599 * this is very complicated.
1600 * We assume that zero is invalid for WINDOWID.
1601 */
1602 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1603 x11_window = (Window)atol(winid);
1604
1605#ifdef FEAT_XCLIPBOARD
1606 if (xterm_dpy != NULL && x11_window != 0)
1607 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001608 /* We may have checked it already, but Gnome terminal can move us to
1609 * another window, so we need to check every time. */
1610 if (x11_display_from != XD_XTERM)
1611 {
1612 /*
1613 * If the X11 display was opened here before, for the window where
1614 * Vim was started, close that one now to avoid a memory leak.
1615 */
1616 if (x11_display_from == XD_HERE && x11_display != NULL)
1617 XCloseDisplay(x11_display);
1618 x11_display = xterm_dpy;
1619 x11_display_from = XD_XTERM;
1620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 if (test_x11_window(x11_display) == FAIL)
1622 {
1623 /* probably bad $WINDOWID */
1624 x11_window = 0;
1625 x11_display = NULL;
1626 x11_display_from = XD_NONE;
1627 return FAIL;
1628 }
1629 return OK;
1630 }
1631#endif
1632
1633 if (x11_window == 0 || x11_display == NULL)
1634 result = -1;
1635
1636 if (result != -1) /* Have already been here and set this */
1637 return result; /* Don't do all these X calls again */
1638
1639 if (x11_window != 0 && x11_display == NULL)
1640 {
1641#ifdef SET_SIG_ALARM
1642 RETSIGTYPE (*sig_save)();
1643#endif
1644#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1645 struct timeval start_tv;
1646
1647 if (p_verbose > 0)
1648 gettimeofday(&start_tv, NULL);
1649#endif
1650
1651#ifdef SET_SIG_ALARM
1652 /*
1653 * Opening the Display may hang if the DISPLAY setting is wrong, or
1654 * the network connection is bad. Set an alarm timer to get out.
1655 */
1656 sig_alarm_called = FALSE;
1657 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1658 (RETSIGTYPE (*)())sig_alarm);
1659 alarm(2);
1660#endif
1661 x11_display = XOpenDisplay(NULL);
1662
1663#ifdef SET_SIG_ALARM
1664 alarm(0);
1665 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1666 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001667 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668#endif
1669 if (x11_display != NULL)
1670 {
1671# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1672 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001673 {
1674 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001676 verbose_leave();
1677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678# endif
1679 if (test_x11_window(x11_display) == FAIL)
1680 {
1681 /* Maybe window id is bad */
1682 x11_window = 0;
1683 XCloseDisplay(x11_display);
1684 x11_display = NULL;
1685 }
1686 else
1687 x11_display_from = XD_HERE;
1688 }
1689 }
1690 if (x11_window == 0 || x11_display == NULL)
1691 return (result = FAIL);
1692 return (result = OK);
1693}
1694
1695/*
1696 * Determine original x11 Window Title
1697 */
1698 static int
1699get_x11_title(test_only)
1700 int test_only;
1701{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001702 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703}
1704
1705/*
1706 * Determine original x11 Window icon
1707 */
1708 static int
1709get_x11_icon(test_only)
1710 int test_only;
1711{
1712 int retval = FALSE;
1713
1714 retval = get_x11_thing(FALSE, test_only);
1715
1716 /* could not get old icon, use terminal name */
1717 if (oldicon == NULL && !test_only)
1718 {
1719 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1720 oldicon = T_NAME + 8;
1721 else
1722 oldicon = T_NAME;
1723 }
1724
1725 return retval;
1726}
1727
1728 static int
1729get_x11_thing(get_title, test_only)
1730 int get_title; /* get title string */
1731 int test_only;
1732{
1733 XTextProperty text_prop;
1734 int retval = FALSE;
1735 Status status;
1736
1737 if (get_x11_windis() == OK)
1738 {
1739 /* Get window/icon name if any */
1740 if (get_title)
1741 status = XGetWMName(x11_display, x11_window, &text_prop);
1742 else
1743 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1744
1745 /*
1746 * If terminal is xterm, then x11_window may be a child window of the
1747 * outer xterm window that actually contains the window/icon name, so
1748 * keep traversing up the tree until a window with a title/icon is
1749 * found.
1750 */
1751 /* Previously this was only done for xterm and alikes. I don't see a
1752 * reason why it would fail for other terminal emulators.
1753 * if (term_is_xterm) */
1754 {
1755 Window root;
1756 Window parent;
1757 Window win = x11_window;
1758 Window *children;
1759 unsigned int num_children;
1760
1761 while (!status || text_prop.value == NULL)
1762 {
1763 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1764 &num_children))
1765 break;
1766 if (children)
1767 XFree((void *)children);
1768 if (parent == root || parent == 0)
1769 break;
1770
1771 win = parent;
1772 if (get_title)
1773 status = XGetWMName(x11_display, win, &text_prop);
1774 else
1775 status = XGetWMIconName(x11_display, win, &text_prop);
1776 }
1777 }
1778 if (status && text_prop.value != NULL)
1779 {
1780 retval = TRUE;
1781 if (!test_only)
1782 {
1783#ifdef FEAT_XFONTSET
1784 if (text_prop.encoding == XA_STRING)
1785 {
1786#endif
1787 if (get_title)
1788 oldtitle = vim_strsave((char_u *)text_prop.value);
1789 else
1790 oldicon = vim_strsave((char_u *)text_prop.value);
1791#ifdef FEAT_XFONTSET
1792 }
1793 else
1794 {
1795 char **cl;
1796 Status transform_status;
1797 int n = 0;
1798
1799 transform_status = XmbTextPropertyToTextList(x11_display,
1800 &text_prop,
1801 &cl, &n);
1802 if (transform_status >= Success && n > 0 && cl[0])
1803 {
1804 if (get_title)
1805 oldtitle = vim_strsave((char_u *) cl[0]);
1806 else
1807 oldicon = vim_strsave((char_u *) cl[0]);
1808 XFreeStringList(cl);
1809 }
1810 else
1811 {
1812 if (get_title)
1813 oldtitle = vim_strsave((char_u *)text_prop.value);
1814 else
1815 oldicon = vim_strsave((char_u *)text_prop.value);
1816 }
1817 }
1818#endif
1819 }
1820 XFree((void *)text_prop.value);
1821 }
1822 }
1823 return retval;
1824}
1825
1826/* Are Xutf8 functions available? Avoid error from old compilers. */
1827#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1828# if X_HAVE_UTF8_STRING
1829# define USE_UTF8_STRING
1830# endif
1831#endif
1832
1833/*
1834 * Set x11 Window Title
1835 *
1836 * get_x11_windis() must be called before this and have returned OK
1837 */
1838 static void
1839set_x11_title(title)
1840 char_u *title;
1841{
1842 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1843 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1844 * supported everywhere and STRING doesn't work for multi-byte titles.
1845 */
1846#ifdef USE_UTF8_STRING
1847 if (enc_utf8)
1848 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1849 NULL, NULL, 0, NULL, NULL, NULL);
1850 else
1851#endif
1852 {
1853#if XtSpecificationRelease >= 4
1854# ifdef FEAT_XFONTSET
1855 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1856 NULL, NULL, 0, NULL, NULL, NULL);
1857# else
1858 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001859 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860
1861 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001862 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 XSetWMProperties(x11_display, x11_window, &text_prop,
1864 NULL, NULL, 0, NULL, NULL, NULL);
1865# endif
1866#else
1867 XStoreName(x11_display, x11_window, (char *)title);
1868#endif
1869 }
1870 XFlush(x11_display);
1871}
1872
1873/*
1874 * Set x11 Window icon
1875 *
1876 * get_x11_windis() must be called before this and have returned OK
1877 */
1878 static void
1879set_x11_icon(icon)
1880 char_u *icon;
1881{
1882 /* See above for comments about using X*SetWMProperties(). */
1883#ifdef USE_UTF8_STRING
1884 if (enc_utf8)
1885 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1886 NULL, 0, NULL, NULL, NULL);
1887 else
1888#endif
1889 {
1890#if XtSpecificationRelease >= 4
1891# ifdef FEAT_XFONTSET
1892 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1893 NULL, 0, NULL, NULL, NULL);
1894# else
1895 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001896 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001898 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1900 NULL, 0, NULL, NULL, NULL);
1901# endif
1902#else
1903 XSetIconName(x11_display, x11_window, (char *)icon);
1904#endif
1905 }
1906 XFlush(x11_display);
1907}
1908
1909#else /* FEAT_X11 */
1910
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 static int
1912get_x11_title(test_only)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001913 int test_only UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914{
1915 return FALSE;
1916}
1917
1918 static int
1919get_x11_icon(test_only)
1920 int test_only;
1921{
1922 if (!test_only)
1923 {
1924 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1925 oldicon = T_NAME + 8;
1926 else
1927 oldicon = T_NAME;
1928 }
1929 return FALSE;
1930}
1931
1932#endif /* FEAT_X11 */
1933
1934 int
1935mch_can_restore_title()
1936{
1937 return get_x11_title(TRUE);
1938}
1939
1940 int
1941mch_can_restore_icon()
1942{
1943 return get_x11_icon(TRUE);
1944}
1945
1946/*
1947 * Set the window title and icon.
1948 */
1949 void
1950mch_settitle(title, icon)
1951 char_u *title;
1952 char_u *icon;
1953{
1954 int type = 0;
1955 static int recursive = 0;
1956
1957 if (T_NAME == NULL) /* no terminal name (yet) */
1958 return;
1959 if (title == NULL && icon == NULL) /* nothing to do */
1960 return;
1961
1962 /* When one of the X11 functions causes a deadly signal, we get here again
1963 * recursively. Avoid hanging then (something is probably locked). */
1964 if (recursive)
1965 return;
1966 ++recursive;
1967
1968 /*
1969 * if the window ID and the display is known, we may use X11 calls
1970 */
1971#ifdef FEAT_X11
1972 if (get_x11_windis() == OK)
1973 type = 1;
1974#else
1975# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1976 if (gui.in_use)
1977 type = 1;
1978# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979#endif
1980
1981 /*
1982 * Note: if "t_TS" is set, title is set with escape sequence rather
1983 * than x11 calls, because the x11 calls don't always work
1984 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 if ((type || *T_TS != NUL) && title != NULL)
1986 {
1987 if (oldtitle == NULL
1988#ifdef FEAT_GUI
1989 && !gui.in_use
1990#endif
1991 ) /* first call but not in GUI, save title */
1992 (void)get_x11_title(FALSE);
1993
1994 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1995 term_settitle(title);
1996#ifdef FEAT_X11
1997 else
1998# ifdef FEAT_GUI_GTK
1999 if (!gui.in_use) /* don't do this if GTK+ is running */
2000# endif
2001 set_x11_title(title); /* x11 */
2002#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002003#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2005 else
2006 gui_mch_settitle(title, icon);
2007#endif
2008 did_set_title = TRUE;
2009 }
2010
2011 if ((type || *T_CIS != NUL) && icon != NULL)
2012 {
2013 if (oldicon == NULL
2014#ifdef FEAT_GUI
2015 && !gui.in_use
2016#endif
2017 ) /* first call, save icon */
2018 get_x11_icon(FALSE);
2019
2020 if (*T_CIS != NUL)
2021 {
2022 out_str(T_CIS); /* set icon start */
2023 out_str_nf(icon);
2024 out_str(T_CIE); /* set icon end */
2025 out_flush();
2026 }
2027#ifdef FEAT_X11
2028 else
2029# ifdef FEAT_GUI_GTK
2030 if (!gui.in_use) /* don't do this if GTK+ is running */
2031# endif
2032 set_x11_icon(icon); /* x11 */
2033#endif
2034 did_set_icon = TRUE;
2035 }
2036 --recursive;
2037}
2038
2039/*
2040 * Restore the window/icon title.
2041 * "which" is one of:
2042 * 1 only restore title
2043 * 2 only restore icon
2044 * 3 restore title and icon
2045 */
2046 void
2047mch_restore_title(which)
2048 int which;
2049{
2050 /* only restore the title or icon when it has been set */
2051 mch_settitle(((which & 1) && did_set_title) ?
2052 (oldtitle ? oldtitle : p_titleold) : NULL,
2053 ((which & 2) && did_set_icon) ? oldicon : NULL);
2054}
2055
2056#endif /* FEAT_TITLE */
2057
2058/*
2059 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002060 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 */
2062 int
2063vim_is_xterm(name)
2064 char_u *name;
2065{
2066 if (name == NULL)
2067 return FALSE;
2068 return (STRNICMP(name, "xterm", 5) == 0
2069 || STRNICMP(name, "nxterm", 6) == 0
2070 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002071 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 || STRNICMP(name, "rxvt", 4) == 0
2073 || STRCMP(name, "builtin_xterm") == 0);
2074}
2075
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002076#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2077/*
2078 * Return TRUE if "name" appears to be that of a terminal
2079 * known to support the xterm-style mouse protocol.
2080 * Relies on term_is_xterm having been set to its correct value.
2081 */
2082 int
2083use_xterm_like_mouse(name)
2084 char_u *name;
2085{
2086 return (name != NULL
2087 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2088}
2089#endif
2090
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2092/*
2093 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2094 * Return 1 for "xterm".
2095 * Return 2 for "xterm2".
2096 */
2097 int
2098use_xterm_mouse()
2099{
2100 if (ttym_flags == TTYM_XTERM2)
2101 return 2;
2102 if (ttym_flags == TTYM_XTERM)
2103 return 1;
2104 return 0;
2105}
2106#endif
2107
2108 int
2109vim_is_iris(name)
2110 char_u *name;
2111{
2112 if (name == NULL)
2113 return FALSE;
2114 return (STRNICMP(name, "iris-ansi", 9) == 0
2115 || STRCMP(name, "builtin_iris-ansi") == 0);
2116}
2117
2118 int
2119vim_is_vt300(name)
2120 char_u *name;
2121{
2122 if (name == NULL)
2123 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002124 /* catch VT100 - VT5xx */
2125 return ((STRNICMP(name, "vt", 2) == 0
2126 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 || STRCMP(name, "builtin_vt320") == 0);
2128}
2129
2130/*
2131 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2132 * This should include all windowed terminal emulators.
2133 */
2134 int
2135vim_is_fastterm(name)
2136 char_u *name;
2137{
2138 if (name == NULL)
2139 return FALSE;
2140 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2141 return TRUE;
2142 return ( STRNICMP(name, "hpterm", 6) == 0
2143 || STRNICMP(name, "sun-cmd", 7) == 0
2144 || STRNICMP(name, "screen", 6) == 0
2145 || STRNICMP(name, "dtterm", 6) == 0);
2146}
2147
2148/*
2149 * Insert user name in s[len].
2150 * Return OK if a name found.
2151 */
2152 int
2153mch_get_user_name(s, len)
2154 char_u *s;
2155 int len;
2156{
2157#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002158 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 return OK;
2160#else
2161 return mch_get_uname(getuid(), s, len);
2162#endif
2163}
2164
2165/*
2166 * Insert user name for "uid" in s[len].
2167 * Return OK if a name found.
2168 */
2169 int
2170mch_get_uname(uid, s, len)
2171 uid_t uid;
2172 char_u *s;
2173 int len;
2174{
2175#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2176 struct passwd *pw;
2177
2178 if ((pw = getpwuid(uid)) != NULL
2179 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2180 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002181 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 return OK;
2183 }
2184#endif
2185 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2186 return FAIL; /* a number is not a name */
2187}
2188
2189/*
2190 * Insert host name is s[len].
2191 */
2192
2193#ifdef HAVE_SYS_UTSNAME_H
2194 void
2195mch_get_host_name(s, len)
2196 char_u *s;
2197 int len;
2198{
2199 struct utsname vutsname;
2200
2201 if (uname(&vutsname) < 0)
2202 *s = NUL;
2203 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002204 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205}
2206#else /* HAVE_SYS_UTSNAME_H */
2207
2208# ifdef HAVE_SYS_SYSTEMINFO_H
2209# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2210# endif
2211
2212 void
2213mch_get_host_name(s, len)
2214 char_u *s;
2215 int len;
2216{
2217# ifdef VAXC
2218 vaxc$gethostname((char *)s, len);
2219# else
2220 gethostname((char *)s, len);
2221# endif
2222 s[len - 1] = NUL; /* make sure it's terminated */
2223}
2224#endif /* HAVE_SYS_UTSNAME_H */
2225
2226/*
2227 * return process ID
2228 */
2229 long
2230mch_get_pid()
2231{
2232 return (long)getpid();
2233}
2234
2235#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2236static char *strerror __ARGS((int));
2237
2238 static char *
2239strerror(err)
2240 int err;
2241{
2242 extern int sys_nerr;
2243 extern char *sys_errlist[];
2244 static char er[20];
2245
2246 if (err > 0 && err < sys_nerr)
2247 return (sys_errlist[err]);
2248 sprintf(er, "Error %d", err);
2249 return er;
2250}
2251#endif
2252
2253/*
2254 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2255 * Return OK for success, FAIL for failure.
2256 */
2257 int
2258mch_dirname(buf, len)
2259 char_u *buf;
2260 int len;
2261{
2262#if defined(USE_GETCWD)
2263 if (getcwd((char *)buf, len) == NULL)
2264 {
2265 STRCPY(buf, strerror(errno));
2266 return FAIL;
2267 }
2268 return OK;
2269#else
2270 return (getwd((char *)buf) != NULL ? OK : FAIL);
2271#endif
2272}
2273
2274#if defined(OS2) || defined(PROTO)
2275/*
2276 * Replace all slashes by backslashes.
2277 * When 'shellslash' set do it the other way around.
2278 */
2279 void
2280slash_adjust(p)
2281 char_u *p;
2282{
2283 while (*p)
2284 {
2285 if (*p == psepcN)
2286 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002287 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 }
2289}
2290#endif
2291
2292/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002293 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 *
2295 * return FAIL for failure, OK for success
2296 */
2297 int
2298mch_FullName(fname, buf, len, force)
2299 char_u *fname, *buf;
2300 int len;
2301 int force; /* also expand when already absolute path */
2302{
2303 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002304#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 int only_drive; /* file name is only a drive letter */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002306#endif
2307#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 int fd = -1;
2309 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002310#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 char_u olddir[MAXPATHL];
2312 char_u *p;
2313 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002314#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002315 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2316 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002317#endif
2318
Bram Moolenaar38323e42007-03-06 19:22:53 +00002319#ifdef VMS
2320 fname = vms_fixfilename(fname);
2321#endif
2322
Bram Moolenaara2442432007-04-26 14:26:37 +00002323#ifdef __CYGWIN__
2324 /*
2325 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2326 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002327# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2328 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2329# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002330 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002331# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002332 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002333#endif
2334
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 /* expand it if forced or not an absolute path */
2336 if (force || !mch_isFullName(fname))
2337 {
2338 /*
2339 * If the file name has a path, change to that directory for a moment,
2340 * and then do the getwd() (and get back to where we were).
2341 * This will get the correct path name with "../" things.
2342 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002343#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 only_drive = 0;
2345 if (((p = vim_strrchr(fname, '/')) != NULL)
2346 || ((p = vim_strrchr(fname, '\\')) != NULL)
2347 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
Bram Moolenaar38323e42007-03-06 19:22:53 +00002348#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 if ((p = vim_strrchr(fname, '/')) != NULL)
Bram Moolenaar38323e42007-03-06 19:22:53 +00002350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002352#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 /*
2354 * Use fchdir() if possible, it's said to be faster and more
2355 * reliable. But on SunOS 4 it might not work. Check this by
2356 * doing a fchdir() right now.
2357 */
2358 if (!dont_fchdir)
2359 {
2360 fd = open(".", O_RDONLY | O_EXTRA, 0);
2361 if (fd >= 0 && fchdir(fd) < 0)
2362 {
2363 close(fd);
2364 fd = -1;
2365 dont_fchdir = TRUE; /* don't try again */
2366 }
2367 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369
2370 /* Only change directory when we are sure we can return to where
2371 * we are now. After doing "su" chdir(".") might not work. */
2372 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002373#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002375#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 (mch_dirname(olddir, MAXPATHL) == FAIL
2377 || mch_chdir((char *)olddir) != 0))
2378 {
2379 p = NULL; /* can't get current dir: don't chdir */
2380 retval = FAIL;
2381 }
2382 else
2383 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002384#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 /*
2386 * compensate for case where ':' from "D:" was the only
2387 * path separator detected in the file name; the _next_
2388 * character has to be removed, and then restored later.
2389 */
2390 if (only_drive)
2391 p++;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 /* The directory is copied into buf[], to be able to remove
2394 * the file name without changing it (could be a string in
2395 * read-only memory) */
2396 if (p - fname >= len)
2397 retval = FAIL;
2398 else
2399 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002400 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 if (mch_chdir((char *)buf))
2402 retval = FAIL;
2403 else
2404 fname = p + 1;
2405 *buf = NUL;
2406 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002407#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 if (only_drive)
2409 {
2410 p--;
2411 if (retval != FAIL)
2412 fname--;
2413 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 }
2416 }
2417 if (mch_dirname(buf, len) == FAIL)
2418 {
2419 retval = FAIL;
2420 *buf = NUL;
2421 }
2422 if (p != NULL)
2423 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002424#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 if (fd >= 0)
2426 {
2427 l = fchdir(fd);
2428 close(fd);
2429 }
2430 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002431#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 l = mch_chdir((char *)olddir);
2433 if (l != 0)
2434 EMSG(_(e_prev_dir));
2435 }
2436
2437 l = STRLEN(buf);
2438 if (l >= len)
2439 retval = FAIL;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002440#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 else
2442 {
2443 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2444 && STRCMP(fname, ".") != 0)
2445 STRCAT(buf, "/");
2446 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002449
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002451 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 return FAIL;
2453
2454 /* Do not append ".", "/dir/." is equal to "/dir". */
2455 if (STRCMP(fname, ".") != 0)
2456 STRCAT(buf, fname);
2457
2458 return OK;
2459}
2460
2461/*
2462 * Return TRUE if "fname" does not depend on the current directory.
2463 */
2464 int
2465mch_isFullName(fname)
2466 char_u *fname;
2467{
2468#ifdef __EMX__
2469 return _fnisabs(fname);
2470#else
2471# ifdef VMS
2472 return ( fname[0] == '/' || fname[0] == '.' ||
2473 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2474 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2475 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2476# else
2477 return (*fname == '/' || *fname == '~');
2478# endif
2479#endif
2480}
2481
Bram Moolenaar24552be2005-12-10 20:17:30 +00002482#if defined(USE_FNAME_CASE) || defined(PROTO)
2483/*
2484 * Set the case of the file name, if it already exists. This will cause the
2485 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002486 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002487 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002488 void
2489fname_case(name, len)
2490 char_u *name;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002491 int len UNUSED; /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002492{
2493 struct stat st;
2494 char_u *slash, *tail;
2495 DIR *dirp;
2496 struct dirent *dp;
2497
2498 if (lstat((char *)name, &st) >= 0)
2499 {
2500 /* Open the directory where the file is located. */
2501 slash = vim_strrchr(name, '/');
2502 if (slash == NULL)
2503 {
2504 dirp = opendir(".");
2505 tail = name;
2506 }
2507 else
2508 {
2509 *slash = NUL;
2510 dirp = opendir((char *)name);
2511 *slash = '/';
2512 tail = slash + 1;
2513 }
2514
2515 if (dirp != NULL)
2516 {
2517 while ((dp = readdir(dirp)) != NULL)
2518 {
2519 /* Only accept names that differ in case and are the same byte
2520 * length. TODO: accept different length name. */
2521 if (STRICMP(tail, dp->d_name) == 0
2522 && STRLEN(tail) == STRLEN(dp->d_name))
2523 {
2524 char_u newname[MAXPATHL + 1];
2525 struct stat st2;
2526
2527 /* Verify the inode is equal. */
2528 vim_strncpy(newname, name, MAXPATHL);
2529 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2530 MAXPATHL - (tail - name));
2531 if (lstat((char *)newname, &st2) >= 0
2532 && st.st_ino == st2.st_ino
2533 && st.st_dev == st2.st_dev)
2534 {
2535 STRCPY(tail, dp->d_name);
2536 break;
2537 }
2538 }
2539 }
2540
2541 closedir(dirp);
2542 }
2543 }
2544}
2545#endif
2546
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547/*
2548 * Get file permissions for 'name'.
2549 * Returns -1 when it doesn't exist.
2550 */
2551 long
2552mch_getperm(name)
2553 char_u *name;
2554{
2555 struct stat statb;
2556
2557 /* Keep the #ifdef outside of stat(), it may be a macro. */
2558#ifdef VMS
2559 if (stat((char *)vms_fixfilename(name), &statb))
2560#else
2561 if (stat((char *)name, &statb))
2562#endif
2563 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002564#ifdef __INTERIX
2565 /* The top bit makes the value negative, which means the file doesn't
2566 * exist. Remove the bit, we don't use it. */
2567 return statb.st_mode & ~S_ADDACE;
2568#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571}
2572
2573/*
2574 * set file permission for 'name' to 'perm'
2575 *
2576 * return FAIL for failure, OK otherwise
2577 */
2578 int
2579mch_setperm(name, perm)
2580 char_u *name;
2581 long perm;
2582{
2583 return (chmod((char *)
2584#ifdef VMS
2585 vms_fixfilename(name),
2586#else
2587 name,
2588#endif
2589 (mode_t)perm) == 0 ? OK : FAIL);
2590}
2591
2592#if defined(HAVE_ACL) || defined(PROTO)
2593# ifdef HAVE_SYS_ACL_H
2594# include <sys/acl.h>
2595# endif
2596# ifdef HAVE_SYS_ACCESS_H
2597# include <sys/access.h>
2598# endif
2599
2600# ifdef HAVE_SOLARIS_ACL
2601typedef struct vim_acl_solaris_T {
2602 int acl_cnt;
2603 aclent_t *acl_entry;
2604} vim_acl_solaris_T;
2605# endif
2606
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002607#if defined(HAVE_SELINUX) || defined(PROTO)
2608/*
2609 * Copy security info from "from_file" to "to_file".
2610 */
2611 void
2612mch_copy_sec(from_file, to_file)
2613 char_u *from_file;
2614 char_u *to_file;
2615{
2616 if (from_file == NULL)
2617 return;
2618
2619 if (selinux_enabled == -1)
2620 selinux_enabled = is_selinux_enabled();
2621
2622 if (selinux_enabled > 0)
2623 {
2624 security_context_t from_context = NULL;
2625 security_context_t to_context = NULL;
2626
2627 if (getfilecon((char *)from_file, &from_context) < 0)
2628 {
2629 /* If the filesystem doesn't support extended attributes,
2630 the original had no special security context and the
2631 target cannot have one either. */
2632 if (errno == EOPNOTSUPP)
2633 return;
2634
2635 MSG_PUTS(_("\nCould not get security context for "));
2636 msg_outtrans(from_file);
2637 msg_putchar('\n');
2638 return;
2639 }
2640 if (getfilecon((char *)to_file, &to_context) < 0)
2641 {
2642 MSG_PUTS(_("\nCould not get security context for "));
2643 msg_outtrans(to_file);
2644 msg_putchar('\n');
2645 freecon (from_context);
2646 return ;
2647 }
2648 if (strcmp(from_context, to_context) != 0)
2649 {
2650 if (setfilecon((char *)to_file, from_context) < 0)
2651 {
2652 MSG_PUTS(_("\nCould not set security context for "));
2653 msg_outtrans(to_file);
2654 msg_putchar('\n');
2655 }
2656 }
2657 freecon(to_context);
2658 freecon(from_context);
2659 }
2660}
2661#endif /* HAVE_SELINUX */
2662
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663/*
2664 * Return a pointer to the ACL of file "fname" in allocated memory.
2665 * Return NULL if the ACL is not available for whatever reason.
2666 */
2667 vim_acl_T
2668mch_get_acl(fname)
Bram Moolenaar78a15312009-05-15 19:33:18 +00002669 char_u *fname UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670{
2671 vim_acl_T ret = NULL;
2672#ifdef HAVE_POSIX_ACL
2673 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2674#else
2675#ifdef HAVE_SOLARIS_ACL
2676 vim_acl_solaris_T *aclent;
2677
2678 aclent = malloc(sizeof(vim_acl_solaris_T));
2679 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2680 {
2681 free(aclent);
2682 return NULL;
2683 }
2684 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2685 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2686 {
2687 free(aclent->acl_entry);
2688 free(aclent);
2689 return NULL;
2690 }
2691 ret = (vim_acl_T)aclent;
2692#else
2693#if defined(HAVE_AIX_ACL)
2694 int aclsize;
2695 struct acl *aclent;
2696
2697 aclsize = sizeof(struct acl);
2698 aclent = malloc(aclsize);
2699 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2700 {
2701 if (errno == ENOSPC)
2702 {
2703 aclsize = aclent->acl_len;
2704 aclent = realloc(aclent, aclsize);
2705 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2706 {
2707 free(aclent);
2708 return NULL;
2709 }
2710 }
2711 else
2712 {
2713 free(aclent);
2714 return NULL;
2715 }
2716 }
2717 ret = (vim_acl_T)aclent;
2718#endif /* HAVE_AIX_ACL */
2719#endif /* HAVE_SOLARIS_ACL */
2720#endif /* HAVE_POSIX_ACL */
2721 return ret;
2722}
2723
2724/*
2725 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2726 */
2727 void
2728mch_set_acl(fname, aclent)
Bram Moolenaar78a15312009-05-15 19:33:18 +00002729 char_u *fname UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 vim_acl_T aclent;
2731{
2732 if (aclent == NULL)
2733 return;
2734#ifdef HAVE_POSIX_ACL
2735 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2736#else
2737#ifdef HAVE_SOLARIS_ACL
2738 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2739 ((vim_acl_solaris_T *)aclent)->acl_entry);
2740#else
2741#ifdef HAVE_AIX_ACL
2742 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2743#endif /* HAVE_AIX_ACL */
2744#endif /* HAVE_SOLARIS_ACL */
2745#endif /* HAVE_POSIX_ACL */
2746}
2747
2748 void
2749mch_free_acl(aclent)
2750 vim_acl_T aclent;
2751{
2752 if (aclent == NULL)
2753 return;
2754#ifdef HAVE_POSIX_ACL
2755 acl_free((acl_t)aclent);
2756#else
2757#ifdef HAVE_SOLARIS_ACL
2758 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2759 free(aclent);
2760#else
2761#ifdef HAVE_AIX_ACL
2762 free(aclent);
2763#endif /* HAVE_AIX_ACL */
2764#endif /* HAVE_SOLARIS_ACL */
2765#endif /* HAVE_POSIX_ACL */
2766}
2767#endif
2768
2769/*
2770 * Set hidden flag for "name".
2771 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 void
2773mch_hide(name)
Bram Moolenaar78a15312009-05-15 19:33:18 +00002774 char_u *name UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775{
2776 /* can't hide a file */
2777}
2778
2779/*
2780 * return TRUE if "name" is a directory
2781 * return FALSE if "name" is not a directory
2782 * return FALSE for error
2783 */
2784 int
2785mch_isdir(name)
2786 char_u *name;
2787{
2788 struct stat statb;
2789
2790 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2791 return FALSE;
2792 if (stat((char *)name, &statb))
2793 return FALSE;
2794#ifdef _POSIX_SOURCE
2795 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2796#else
2797 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2798#endif
2799}
2800
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801static int executable_file __ARGS((char_u *name));
2802
2803/*
2804 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2805 */
2806 static int
2807executable_file(name)
2808 char_u *name;
2809{
2810 struct stat st;
2811
2812 if (stat((char *)name, &st))
2813 return 0;
2814 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2815}
2816
2817/*
2818 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2819 * Return -1 if unknown.
2820 */
2821 int
2822mch_can_exe(name)
2823 char_u *name;
2824{
2825 char_u *buf;
2826 char_u *p, *e;
2827 int retval;
2828
2829 /* If it's an absolute or relative path don't need to use $PATH. */
2830 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2831 || (name[1] == '.' && name[2] == '/'))))
2832 return executable_file(name);
2833
2834 p = (char_u *)getenv("PATH");
2835 if (p == NULL || *p == NUL)
2836 return -1;
2837 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2838 if (buf == NULL)
2839 return -1;
2840
2841 /*
2842 * Walk through all entries in $PATH to check if "name" exists there and
2843 * is an executable file.
2844 */
2845 for (;;)
2846 {
2847 e = (char_u *)strchr((char *)p, ':');
2848 if (e == NULL)
2849 e = p + STRLEN(p);
2850 if (e - p <= 1) /* empty entry means current dir */
2851 STRCPY(buf, "./");
2852 else
2853 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002854 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 add_pathsep(buf);
2856 }
2857 STRCAT(buf, name);
2858 retval = executable_file(buf);
2859 if (retval == 1)
2860 break;
2861
2862 if (*e != ':')
2863 break;
2864 p = e + 1;
2865 }
2866
2867 vim_free(buf);
2868 return retval;
2869}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870
2871/*
2872 * Check what "name" is:
2873 * NODE_NORMAL: file or directory (or doesn't exist)
2874 * NODE_WRITABLE: writable device, socket, fifo, etc.
2875 * NODE_OTHER: non-writable things
2876 */
2877 int
2878mch_nodetype(name)
2879 char_u *name;
2880{
2881 struct stat st;
2882
2883 if (stat((char *)name, &st))
2884 return NODE_NORMAL;
2885 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2886 return NODE_NORMAL;
2887#ifndef OS2
2888 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2889 return NODE_OTHER;
2890#endif
2891 /* Everything else is writable? */
2892 return NODE_WRITABLE;
2893}
2894
2895 void
2896mch_early_init()
2897{
2898#ifdef HAVE_CHECK_STACK_GROWTH
2899 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 check_stack_growth((char *)&i);
2902
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002903# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 get_stack_limit();
2905# endif
2906
2907#endif
2908
2909 /*
2910 * Setup an alternative stack for signals. Helps to catch signals when
2911 * running out of stack space.
2912 * Use of sigaltstack() is preferred, it's more portable.
2913 * Ignore any errors.
2914 */
2915#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00002916 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 init_signal_stack();
2918#endif
2919}
2920
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002921#if defined(EXITFREE) || defined(PROTO)
2922 void
2923mch_free_mem()
2924{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002925# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2926 if (clip_star.owned)
2927 clip_lose_selection(&clip_star);
2928 if (clip_plus.owned)
2929 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002930# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00002931# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002932 if (xterm_Shell != (Widget)0)
2933 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00002934# ifndef LESSTIF_VERSION
2935 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002936 if (xterm_dpy != NULL)
2937 XtCloseDisplay(xterm_dpy);
2938 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00002939 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002940 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00002941# ifdef FEAT_X11
2942 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2943# endif
2944 }
2945# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002946# endif
Bram Moolenaara8785102008-11-12 13:10:15 +00002947 /* Don't close the display for GTK 1, it is done in exit(). */
2948# if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
Bram Moolenaare8208012008-06-20 09:59:25 +00002949 if (x11_display != NULL
2950# ifdef FEAT_XCLIPBOARD
2951 && x11_display != xterm_dpy
2952# endif
2953 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002954 XCloseDisplay(x11_display);
2955# endif
2956# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2957 vim_free(signal_stack);
2958 signal_stack = NULL;
2959# endif
2960# ifdef FEAT_TITLE
2961 vim_free(oldtitle);
2962 vim_free(oldicon);
2963# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002964}
2965#endif
2966
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967static void exit_scroll __ARGS((void));
2968
2969/*
2970 * Output a newline when exiting.
2971 * Make sure the newline goes to the same stream as the text.
2972 */
2973 static void
2974exit_scroll()
2975{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002976 if (silent_mode)
2977 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 if (newline_on_exit || msg_didout)
2979 {
2980 if (msg_use_printf())
2981 {
2982 if (info_message)
2983 mch_msg("\n");
2984 else
2985 mch_errmsg("\r\n");
2986 }
2987 else
2988 out_char('\n');
2989 }
2990 else
2991 {
2992 restore_cterm_colors(); /* get original colors back */
2993 msg_clr_eos_force(); /* clear the rest of the display */
2994 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2995 }
2996}
2997
2998 void
2999mch_exit(r)
3000 int r;
3001{
3002 exiting = TRUE;
3003
3004#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3005 x11_export_final_selection();
3006#endif
3007
3008#ifdef FEAT_GUI
3009 if (!gui.in_use)
3010#endif
3011 {
3012 settmode(TMODE_COOK);
3013#ifdef FEAT_TITLE
3014 mch_restore_title(3); /* restore xterm title and icon name */
3015#endif
3016 /*
3017 * When t_ti is not empty but it doesn't cause swapping terminal
3018 * pages, need to output a newline when msg_didout is set. But when
3019 * t_ti does swap pages it should not go to the shell page. Do this
3020 * before stoptermcap().
3021 */
3022 if (swapping_screen() && !newline_on_exit)
3023 exit_scroll();
3024
3025 /* Stop termcap: May need to check for T_CRV response, which
3026 * requires RAW mode. */
3027 stoptermcap();
3028
3029 /*
3030 * A newline is only required after a message in the alternate screen.
3031 * This is set to TRUE by wait_return().
3032 */
3033 if (!swapping_screen() || newline_on_exit)
3034 exit_scroll();
3035
3036 /* Cursor may have been switched off without calling starttermcap()
3037 * when doing "vim -u vimrc" and vimrc contains ":q". */
3038 if (full_screen)
3039 cursor_on();
3040 }
3041 out_flush();
3042 ml_close_all(TRUE); /* remove all memfiles */
3043 may_core_dump();
3044#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 gui_exit(r);
3047#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003048
Bram Moolenaar56718732006-03-15 22:53:57 +00003049#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003050 mac_conv_cleanup();
3051#endif
3052
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053#ifdef __QNX__
3054 /* A core dump won't be created if the signal handler
3055 * doesn't return, so we can't call exit() */
3056 if (deadly_signal != 0)
3057 return;
3058#endif
3059
Bram Moolenaar009b2592004-10-24 19:18:58 +00003060#ifdef FEAT_NETBEANS_INTG
3061 if (usingNetbeans)
3062 netbeans_send_disconnect();
3063#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003064
3065#ifdef EXITFREE
3066 free_all_mem();
3067#endif
3068
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 exit(r);
3070}
3071
3072 static void
3073may_core_dump()
3074{
3075 if (deadly_signal != 0)
3076 {
3077 signal(deadly_signal, SIG_DFL);
3078 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3079 }
3080}
3081
3082#ifndef VMS
3083
3084 void
3085mch_settmode(tmode)
3086 int tmode;
3087{
3088 static int first = TRUE;
3089
3090 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3091#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3092 /*
3093 * for "new" tty systems
3094 */
3095# ifdef HAVE_TERMIOS_H
3096 static struct termios told;
3097 struct termios tnew;
3098# else
3099 static struct termio told;
3100 struct termio tnew;
3101# endif
3102
3103 if (first)
3104 {
3105 first = FALSE;
3106# if defined(HAVE_TERMIOS_H)
3107 tcgetattr(read_cmd_fd, &told);
3108# else
3109 ioctl(read_cmd_fd, TCGETA, &told);
3110# endif
3111 }
3112
3113 tnew = told;
3114 if (tmode == TMODE_RAW)
3115 {
3116 /*
3117 * ~ICRNL enables typing ^V^M
3118 */
3119 tnew.c_iflag &= ~ICRNL;
3120 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3121# if defined(IEXTEN) && !defined(__MINT__)
3122 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3123 /* but it breaks function keys on MINT */
3124# endif
3125 );
3126# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3127 tnew.c_oflag &= ~ONLCR;
3128# endif
3129 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3130 tnew.c_cc[VTIME] = 0; /* don't wait */
3131 }
3132 else if (tmode == TMODE_SLEEP)
3133 tnew.c_lflag &= ~(ECHO);
3134
3135# if defined(HAVE_TERMIOS_H)
3136 {
3137 int n = 10;
3138
3139 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3140 * few times. */
3141 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3142 && errno == EINTR && n > 0)
3143 --n;
3144 }
3145# else
3146 ioctl(read_cmd_fd, TCSETA, &tnew);
3147# endif
3148
3149#else
3150
3151 /*
3152 * for "old" tty systems
3153 */
3154# ifndef TIOCSETN
3155# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3156# endif
3157 static struct sgttyb ttybold;
3158 struct sgttyb ttybnew;
3159
3160 if (first)
3161 {
3162 first = FALSE;
3163 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3164 }
3165
3166 ttybnew = ttybold;
3167 if (tmode == TMODE_RAW)
3168 {
3169 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3170 ttybnew.sg_flags |= RAW;
3171 }
3172 else if (tmode == TMODE_SLEEP)
3173 ttybnew.sg_flags &= ~(ECHO);
3174 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3175#endif
3176 curr_tmode = tmode;
3177}
3178
3179/*
3180 * Try to get the code for "t_kb" from the stty setting
3181 *
3182 * Even if termcap claims a backspace key, the user's setting *should*
3183 * prevail. stty knows more about reality than termcap does, and if
3184 * somebody's usual erase key is DEL (which, for most BSD users, it will
3185 * be), they're going to get really annoyed if their erase key starts
3186 * doing forward deletes for no reason. (Eric Fischer)
3187 */
3188 void
3189get_stty()
3190{
3191 char_u buf[2];
3192 char_u *p;
3193
3194 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3195#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3196 /* for "new" tty systems */
3197# ifdef HAVE_TERMIOS_H
3198 struct termios keys;
3199# else
3200 struct termio keys;
3201# endif
3202
3203# if defined(HAVE_TERMIOS_H)
3204 if (tcgetattr(read_cmd_fd, &keys) != -1)
3205# else
3206 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3207# endif
3208 {
3209 buf[0] = keys.c_cc[VERASE];
3210 intr_char = keys.c_cc[VINTR];
3211#else
3212 /* for "old" tty systems */
3213 struct sgttyb keys;
3214
3215 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3216 {
3217 buf[0] = keys.sg_erase;
3218 intr_char = keys.sg_kill;
3219#endif
3220 buf[1] = NUL;
3221 add_termcode((char_u *)"kb", buf, FALSE);
3222
3223 /*
3224 * If <BS> and <DEL> are now the same, redefine <DEL>.
3225 */
3226 p = find_termcode((char_u *)"kD");
3227 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3228 do_fixdel(NULL);
3229 }
3230#if 0
3231 } /* to keep cindent happy */
3232#endif
3233}
3234
3235#endif /* VMS */
3236
3237#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3238/*
3239 * Set mouse clicks on or off.
3240 */
3241 void
3242mch_setmouse(on)
3243 int on;
3244{
3245 static int ison = FALSE;
3246 int xterm_mouse_vers;
3247
3248 if (on == ison) /* return quickly if nothing to do */
3249 return;
3250
3251 xterm_mouse_vers = use_xterm_mouse();
3252 if (xterm_mouse_vers > 0)
3253 {
3254 if (on) /* enable mouse events, use mouse tracking if available */
3255 out_str_nf((char_u *)
3256 (xterm_mouse_vers > 1
3257 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3258 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3259 else /* disable mouse events, could probably always send the same */
3260 out_str_nf((char_u *)
3261 (xterm_mouse_vers > 1
3262 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3263 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3264 ison = on;
3265 }
3266
3267# ifdef FEAT_MOUSE_DEC
3268 else if (ttym_flags == TTYM_DEC)
3269 {
3270 if (on) /* enable mouse events */
3271 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3272 else /* disable mouse events */
3273 out_str_nf((char_u *)"\033['z");
3274 ison = on;
3275 }
3276# endif
3277
3278# ifdef FEAT_MOUSE_GPM
3279 else
3280 {
3281 if (on)
3282 {
3283 if (gpm_open())
3284 ison = TRUE;
3285 }
3286 else
3287 {
3288 gpm_close();
3289 ison = FALSE;
3290 }
3291 }
3292# endif
3293
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003294# ifdef FEAT_SYSMOUSE
3295 else
3296 {
3297 if (on)
3298 {
3299 if (sysmouse_open() == OK)
3300 ison = TRUE;
3301 }
3302 else
3303 {
3304 sysmouse_close();
3305 ison = FALSE;
3306 }
3307 }
3308# endif
3309
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310# ifdef FEAT_MOUSE_JSB
3311 else
3312 {
3313 if (on)
3314 {
3315 /* D - Enable Mouse up/down messages
3316 * L - Enable Left Button Reporting
3317 * M - Enable Middle Button Reporting
3318 * R - Enable Right Button Reporting
3319 * K - Enable SHIFT and CTRL key Reporting
3320 * + - Enable Advanced messaging of mouse moves and up/down messages
3321 * Q - Quiet No Ack
3322 * # - Numeric value of mouse pointer required
3323 * 0 = Multiview 2000 cursor, used as standard
3324 * 1 = Windows Arrow
3325 * 2 = Windows I Beam
3326 * 3 = Windows Hour Glass
3327 * 4 = Windows Cross Hair
3328 * 5 = Windows UP Arrow
3329 */
3330#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3331 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3332 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3333#else
3334 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3335 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3336#endif
3337 ison = TRUE;
3338 }
3339 else
3340 {
3341 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3342 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3343 ison = FALSE;
3344 }
3345 }
3346# endif
3347# ifdef FEAT_MOUSE_PTERM
3348 else
3349 {
3350 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3351 if (on)
3352 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3353 else
3354 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3355 ison = on;
3356 }
3357# endif
3358}
3359
3360/*
3361 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3362 */
3363 void
3364check_mouse_termcode()
3365{
3366# ifdef FEAT_MOUSE_XTERM
3367 if (use_xterm_mouse()
3368# ifdef FEAT_GUI
3369 && !gui.in_use
3370# endif
3371 )
3372 {
3373 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003374 ? IF_EB("\233M", CSI_STR "M")
3375 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 if (*p_mouse != NUL)
3377 {
3378 /* force mouse off and maybe on to send possibly new mouse
3379 * activation sequence to the xterm, with(out) drag tracing. */
3380 mch_setmouse(FALSE);
3381 setmouse();
3382 }
3383 }
3384 else
3385 del_mouse_termcode(KS_MOUSE);
3386# endif
3387
3388# ifdef FEAT_MOUSE_GPM
3389 if (!use_xterm_mouse()
3390# ifdef FEAT_GUI
3391 && !gui.in_use
3392# endif
3393 )
3394 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3395# endif
3396
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003397# ifdef FEAT_SYSMOUSE
3398 if (!use_xterm_mouse()
3399# ifdef FEAT_GUI
3400 && !gui.in_use
3401# endif
3402 )
3403 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3404# endif
3405
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406# ifdef FEAT_MOUSE_JSB
3407 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3408 if (!use_xterm_mouse()
3409# ifdef FEAT_GUI
3410 && !gui.in_use
3411# endif
3412 )
3413 set_mouse_termcode(KS_JSBTERM_MOUSE,
3414 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3415 else
3416 del_mouse_termcode(KS_JSBTERM_MOUSE);
3417# endif
3418
3419# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003420 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 * define it in the GUI or when using an xterm. */
3422 if (!use_xterm_mouse()
3423# ifdef FEAT_GUI
3424 && !gui.in_use
3425# endif
3426 )
3427 set_mouse_termcode(KS_NETTERM_MOUSE,
3428 (char_u *)IF_EB("\033}", ESC_STR "}"));
3429 else
3430 del_mouse_termcode(KS_NETTERM_MOUSE);
3431# endif
3432
3433# ifdef FEAT_MOUSE_DEC
3434 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3435 if (!use_xterm_mouse()
3436# ifdef FEAT_GUI
3437 && !gui.in_use
3438# endif
3439 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003440 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3441 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 else
3443 del_mouse_termcode(KS_DEC_MOUSE);
3444# endif
3445# ifdef FEAT_MOUSE_PTERM
3446 /* same as the dec mouse */
3447 if (!use_xterm_mouse()
3448# ifdef FEAT_GUI
3449 && !gui.in_use
3450# endif
3451 )
3452 set_mouse_termcode(KS_PTERM_MOUSE,
3453 (char_u *) IF_EB("\033[", ESC_STR "["));
3454 else
3455 del_mouse_termcode(KS_PTERM_MOUSE);
3456# endif
3457}
3458#endif
3459
3460/*
3461 * set screen mode, always fails.
3462 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 int
3464mch_screenmode(arg)
Bram Moolenaar78a15312009-05-15 19:33:18 +00003465 char_u *arg UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466{
3467 EMSG(_(e_screenmode));
3468 return FAIL;
3469}
3470
3471#ifndef VMS
3472
3473/*
3474 * Try to get the current window size:
3475 * 1. with an ioctl(), most accurate method
3476 * 2. from the environment variables LINES and COLUMNS
3477 * 3. from the termcap
3478 * 4. keep using the old values
3479 * Return OK when size could be determined, FAIL otherwise.
3480 */
3481 int
3482mch_get_shellsize()
3483{
3484 long rows = 0;
3485 long columns = 0;
3486 char_u *p;
3487
3488 /*
3489 * For OS/2 use _scrsize().
3490 */
3491# ifdef __EMX__
3492 {
3493 int s[2];
3494
3495 _scrsize(s);
3496 columns = s[0];
3497 rows = s[1];
3498 }
3499# endif
3500
3501 /*
3502 * 1. try using an ioctl. It is the most accurate method.
3503 *
3504 * Try using TIOCGWINSZ first, some systems that have it also define
3505 * TIOCGSIZE but don't have a struct ttysize.
3506 */
3507# ifdef TIOCGWINSZ
3508 {
3509 struct winsize ws;
3510 int fd = 1;
3511
3512 /* When stdout is not a tty, use stdin for the ioctl(). */
3513 if (!isatty(fd) && isatty(read_cmd_fd))
3514 fd = read_cmd_fd;
3515 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3516 {
3517 columns = ws.ws_col;
3518 rows = ws.ws_row;
3519 }
3520 }
3521# else /* TIOCGWINSZ */
3522# ifdef TIOCGSIZE
3523 {
3524 struct ttysize ts;
3525 int fd = 1;
3526
3527 /* When stdout is not a tty, use stdin for the ioctl(). */
3528 if (!isatty(fd) && isatty(read_cmd_fd))
3529 fd = read_cmd_fd;
3530 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3531 {
3532 columns = ts.ts_cols;
3533 rows = ts.ts_lines;
3534 }
3535 }
3536# endif /* TIOCGSIZE */
3537# endif /* TIOCGWINSZ */
3538
3539 /*
3540 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003541 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3542 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003544 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 {
3546 if ((p = (char_u *)getenv("LINES")))
3547 rows = atoi((char *)p);
3548 if ((p = (char_u *)getenv("COLUMNS")))
3549 columns = atoi((char *)p);
3550 }
3551
3552#ifdef HAVE_TGETENT
3553 /*
3554 * 3. try reading "co" and "li" entries from termcap
3555 */
3556 if (columns == 0 || rows == 0)
3557 getlinecol(&columns, &rows);
3558#endif
3559
3560 /*
3561 * 4. If everything fails, use the old values
3562 */
3563 if (columns <= 0 || rows <= 0)
3564 return FAIL;
3565
3566 Rows = rows;
3567 Columns = columns;
3568 return OK;
3569}
3570
3571/*
3572 * Try to set the window size to Rows and Columns.
3573 */
3574 void
3575mch_set_shellsize()
3576{
3577 if (*T_CWS)
3578 {
3579 /*
3580 * NOTE: if you get an error here that term_set_winsize() is
3581 * undefined, check the output of configure. It could probably not
3582 * find a ncurses, termcap or termlib library.
3583 */
3584 term_set_winsize((int)Rows, (int)Columns);
3585 out_flush();
3586 screen_start(); /* don't know where cursor is now */
3587 }
3588}
3589
3590#endif /* VMS */
3591
3592/*
3593 * Rows and/or Columns has changed.
3594 */
3595 void
3596mch_new_shellsize()
3597{
3598 /* Nothing to do. */
3599}
3600
Bram Moolenaardf177f62005-02-22 08:39:57 +00003601#ifndef USE_SYSTEM
3602static void append_ga_line __ARGS((garray_T *gap));
3603
3604/*
3605 * Append the text in "gap" below the cursor line and clear "gap".
3606 */
3607 static void
3608append_ga_line(gap)
3609 garray_T *gap;
3610{
3611 /* Remove trailing CR. */
3612 if (gap->ga_len > 0
3613 && !curbuf->b_p_bin
3614 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3615 --gap->ga_len;
3616 ga_append(gap, NUL);
3617 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3618 gap->ga_len = 0;
3619}
3620#endif
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 int
3623mch_call_shell(cmd, options)
3624 char_u *cmd;
3625 int options; /* SHELL_*, see vim.h */
3626{
3627#ifdef VMS
3628 char *ifn = NULL;
3629 char *ofn = NULL;
3630#endif
3631 int tmode = cur_tmode;
3632#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3633 int x;
3634# ifndef __EMX__
3635 char_u *newcmd; /* only needed for unix */
3636# else
3637 /*
3638 * Set the preferred shell in the EMXSHELL environment variable (but
3639 * only if it is different from what is already in the environment).
3640 * Emx then takes care of whether to use "/c" or "-c" in an
3641 * intelligent way. Simply pass the whole thing to emx's system() call.
3642 * Emx also starts an interactive shell if system() is passed an empty
3643 * string.
3644 */
3645 char_u *p, *old;
3646
3647 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3648 {
3649 /* should check HAVE_SETENV, but I know we don't have it. */
3650 p = alloc(10 + strlen(p_sh));
3651 if (p)
3652 {
3653 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3654 putenv((char *)p); /* don't free the pointer! */
3655 }
3656 }
3657# endif
3658
3659 out_flush();
3660
3661 if (options & SHELL_COOKED)
3662 settmode(TMODE_COOK); /* set to normal mode */
3663
3664# ifdef __EMX__
3665 if (cmd == NULL)
3666 x = system(""); /* this starts an interactive shell in emx */
3667 else
3668 x = system((char *)cmd);
3669 /* system() returns -1 when error occurs in starting shell */
3670 if (x == -1 && !emsg_silent)
3671 {
3672 MSG_PUTS(_("\nCannot execute shell "));
3673 msg_outtrans(p_sh);
3674 msg_putchar('\n');
3675 }
3676# else /* not __EMX__ */
3677 if (cmd == NULL)
3678 x = system((char *)p_sh);
3679 else
3680 {
3681# ifdef VMS
3682 if (ofn = strchr((char *)cmd, '>'))
3683 *ofn++ = '\0';
3684 if (ifn = strchr((char *)cmd, '<'))
3685 {
3686 char *p;
3687
3688 *ifn++ = '\0';
3689 p = strchr(ifn,' '); /* chop off any trailing spaces */
3690 if (p)
3691 *p = '\0';
3692 }
3693 if (ofn)
3694 x = vms_sys((char *)cmd, ofn, ifn);
3695 else
3696 x = system((char *)cmd);
3697# else
3698 newcmd = lalloc(STRLEN(p_sh)
3699 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3700 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3701 if (newcmd == NULL)
3702 x = 0;
3703 else
3704 {
3705 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3706 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3707 (char *)p_shcf,
3708 (char *)cmd);
3709 x = system((char *)newcmd);
3710 vim_free(newcmd);
3711 }
3712# endif
3713 }
3714# ifdef VMS
3715 x = vms_sys_status(x);
3716# endif
3717 if (emsg_silent)
3718 ;
3719 else if (x == 127)
3720 MSG_PUTS(_("\nCannot execute shell sh\n"));
3721# endif /* __EMX__ */
3722 else if (x && !(options & SHELL_SILENT))
3723 {
3724 MSG_PUTS(_("\nshell returned "));
3725 msg_outnum((long)x);
3726 msg_putchar('\n');
3727 }
3728
3729 if (tmode == TMODE_RAW)
3730 settmode(TMODE_RAW); /* set to raw mode */
3731# ifdef FEAT_TITLE
3732 resettitle();
3733# endif
3734 return x;
3735
3736#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3737
Bram Moolenaardf177f62005-02-22 08:39:57 +00003738# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3739 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740
3741 char_u *newcmd = NULL;
3742 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003743 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 pid_t wait_pid = 0;
3745# ifdef HAVE_UNION_WAIT
3746 union wait status;
3747# else
3748 int status = -1;
3749# endif
3750 int retval = -1;
3751 char **argv = NULL;
3752 int argc;
3753 int i;
3754 char_u *p;
3755 int inquote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003757# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 int pty_slave_fd = -1;
3759 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003760# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003761 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 int fd_fromshell[2];
3763 int pipe_error = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003764# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 char envbuf[50];
Bram Moolenaardf177f62005-02-22 08:39:57 +00003766# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 static char envbuf_Rows[20];
3768 static char envbuf_Columns[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003770 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771
3772 out_flush();
3773 if (options & SHELL_COOKED)
3774 settmode(TMODE_COOK); /* set to normal mode */
3775
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 newcmd = vim_strsave(p_sh);
3777 if (newcmd == NULL) /* out of memory */
3778 goto error;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003779
3780 /*
3781 * Do this loop twice:
3782 * 1: find number of arguments
3783 * 2: separate them and build argv[]
3784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 for (i = 0; i < 2; ++i)
3786 {
3787 p = newcmd;
3788 inquote = FALSE;
3789 argc = 0;
3790 for (;;)
3791 {
3792 if (i == 1)
3793 argv[argc] = (char *)p;
3794 ++argc;
3795 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3796 {
3797 if (*p == '"')
3798 inquote = !inquote;
3799 ++p;
3800 }
3801 if (*p == NUL)
3802 break;
3803 if (i == 1)
3804 *p++ = NUL;
3805 p = skipwhite(p);
3806 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003807 if (argv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 {
3809 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3810 if (argv == NULL) /* out of memory */
3811 goto error;
3812 }
3813 }
3814 if (cmd != NULL)
3815 {
3816 if (extra_shell_arg != NULL)
3817 argv[argc++] = (char *)extra_shell_arg;
3818 argv[argc++] = (char *)p_shcf;
3819 argv[argc++] = (char *)cmd;
3820 }
3821 argv[argc] = NULL;
3822
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003824 * For the GUI, when writing the output into the buffer and when reading
3825 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3826 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003828 if ((options & (SHELL_READ|SHELL_WRITE))
3829# ifdef FEAT_GUI
3830 || (gui.in_use && show_shell_mess)
3831# endif
3832 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003834# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 /*
3836 * Try to open a master pty.
3837 * If this works, open the slave pty.
3838 * If the slave can't be opened, close the master pty.
3839 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003840 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 {
3842 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3843 if (pty_master_fd >= 0 && ((pty_slave_fd =
3844 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3845 {
3846 close(pty_master_fd);
3847 pty_master_fd = -1;
3848 }
3849 }
3850 /*
3851 * If not opening a pty or it didn't work, try using pipes.
3852 */
3853 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003854# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 {
3856 pipe_error = (pipe(fd_toshell) < 0);
3857 if (!pipe_error) /* pipe create OK */
3858 {
3859 pipe_error = (pipe(fd_fromshell) < 0);
3860 if (pipe_error) /* pipe create failed */
3861 {
3862 close(fd_toshell[0]);
3863 close(fd_toshell[1]);
3864 }
3865 }
3866 if (pipe_error)
3867 {
3868 MSG_PUTS(_("\nCannot create pipes\n"));
3869 out_flush();
3870 }
3871 }
3872 }
3873
3874 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 {
3876# ifdef __BEOS__
3877 beos_cleanup_read_thread();
3878# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003879
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3881 {
3882 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00003883 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003885 || (gui.in_use && show_shell_mess)
3886# endif
3887 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003889# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 if (pty_master_fd >= 0) /* close the pseudo tty */
3891 {
3892 close(pty_master_fd);
3893 close(pty_slave_fd);
3894 }
3895 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003896# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 {
3898 close(fd_toshell[0]);
3899 close(fd_toshell[1]);
3900 close(fd_fromshell[0]);
3901 close(fd_fromshell[1]);
3902 }
3903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 }
3905 else if (pid == 0) /* child */
3906 {
3907 reset_signals(); /* handle signals normally */
3908
3909 if (!show_shell_mess || (options & SHELL_EXPAND))
3910 {
3911 int fd;
3912
3913 /*
3914 * Don't want to show any message from the shell. Can't just
3915 * close stdout and stderr though, because some systems will
3916 * break if you try to write to them after that, so we must
3917 * use dup() to replace them with something else -- webb
3918 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3919 * waiting for input.
3920 */
3921 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3922 fclose(stdin);
3923 fclose(stdout);
3924 fclose(stderr);
3925
3926 /*
3927 * If any of these open()'s and dup()'s fail, we just continue
3928 * anyway. It's not fatal, and on most systems it will make
3929 * no difference at all. On a few it will cause the execvp()
3930 * to exit with a non-zero status even when the completion
3931 * could be done, which is nothing too serious. If the open()
3932 * or dup() failed we'd just do the same thing ourselves
3933 * anyway -- webb
3934 */
3935 if (fd >= 0)
3936 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003937 ignored = dup(fd); /* To replace stdin (fd 0) */
3938 ignored = dup(fd); /* To replace stdout (fd 1) */
3939 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940
3941 /* Don't need this now that we've duplicated it */
3942 close(fd);
3943 }
3944 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003945 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003947 || gui.in_use
3948# endif
3949 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 {
3951
Bram Moolenaardf177f62005-02-22 08:39:57 +00003952# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003953 /* Create our own process group, so that the child and all its
3954 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003955 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003956 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00003957 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003958 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00003959# if defined(SIGHUP)
3960 /* When doing "!xterm&" and 'shell' is bash: the shell
3961 * will exit and send SIGHUP to all processes in its
3962 * group, killing the just started process. Ignore SIGHUP
3963 * to avoid that. (suggested by Simon Schubert)
3964 */
3965 signal(SIGHUP, SIG_IGN);
3966# endif
3967 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003968# endif
3969# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003970 if (pty_slave_fd >= 0)
3971 {
3972 /* push stream discipline modules */
3973 if (options & SHELL_COOKED)
3974 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003976 /* Try to become controlling tty (probably doesn't work,
3977 * unless run by root) */
3978 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003980 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003981# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 /* Simulate to have a dumb terminal (for now) */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003983# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 setenv("TERM", "dumb", 1);
3985 sprintf((char *)envbuf, "%ld", Rows);
3986 setenv("ROWS", (char *)envbuf, 1);
3987 sprintf((char *)envbuf, "%ld", Rows);
3988 setenv("LINES", (char *)envbuf, 1);
3989 sprintf((char *)envbuf, "%ld", Columns);
3990 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003991# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 /*
3993 * Putenv does not copy the string, it has to remain valid.
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003994 * Use a static array to avoid losing allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 */
3996 putenv("TERM=dumb");
3997 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3998 putenv(envbuf_Rows);
3999 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4000 putenv(envbuf_Rows);
4001 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4002 putenv(envbuf_Columns);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004003# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004
Bram Moolenaara5792f52005-11-23 21:25:05 +00004005 /*
4006 * stderr is only redirected when using the GUI, so that a
4007 * program like gpg can still access the terminal to get a
4008 * passphrase using stderr.
4009 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004010# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 if (pty_master_fd >= 0)
4012 {
4013 close(pty_master_fd); /* close master side of pty */
4014
4015 /* set up stdin/stdout/stderr for the child */
4016 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004017 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004019 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004020 if (gui.in_use)
4021 {
4022 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004023 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025
4026 close(pty_slave_fd); /* has been dupped, close it now */
4027 }
4028 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004029# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 {
4031 /* set up stdin for the child */
4032 close(fd_toshell[1]);
4033 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004034 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 close(fd_toshell[0]);
4036
4037 /* set up stdout for the child */
4038 close(fd_fromshell[0]);
4039 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004040 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 close(fd_fromshell[1]);
4042
Bram Moolenaara5792f52005-11-23 21:25:05 +00004043# ifdef FEAT_GUI
4044 if (gui.in_use)
4045 {
4046 /* set up stderr for the child */
4047 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004048 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004049 }
4050# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 }
4052 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004053
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 /*
4055 * There is no type cast for the argv, because the type may be
4056 * different on different machines. This may cause a warning
4057 * message with strict compilers, don't worry about it.
4058 * Call _exit() instead of exit() to avoid closing the connection
4059 * to the X server (esp. with GTK, which uses atexit()).
4060 */
4061 execvp(argv[0], argv);
4062 _exit(EXEC_FAILED); /* exec failed, return failure code */
4063 }
4064 else /* parent */
4065 {
4066 /*
4067 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004068 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 */
4070 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004071 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072
4073 /*
4074 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004075 * This is also used to pipe stdin/stdout to/from the external
4076 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004078 if ((options & (SHELL_READ|SHELL_WRITE))
4079# ifdef FEAT_GUI
4080 || (gui.in_use && show_shell_mess)
4081# endif
4082 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004084# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004086# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4090 int ta_len = 0; /* valid bytes in ta_buf[] */
4091 int len;
4092 int p_more_save;
4093 int old_State;
4094 int c;
4095 int toshell_fd;
4096 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004097 garray_T ga;
4098 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004099# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4100 struct timeval start_tv;
4101# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102
Bram Moolenaardf177f62005-02-22 08:39:57 +00004103# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 if (pty_master_fd >= 0)
4105 {
4106 close(pty_slave_fd); /* close slave side of pty */
4107 fromshell_fd = pty_master_fd;
4108 toshell_fd = dup(pty_master_fd);
4109 }
4110 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004111# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 {
4113 close(fd_toshell[0]);
4114 close(fd_fromshell[1]);
4115 toshell_fd = fd_toshell[1];
4116 fromshell_fd = fd_fromshell[0];
4117 }
4118
4119 /*
4120 * Write to the child if there are typed characters.
4121 * Read from the child if there are characters available.
4122 * Repeat the reading a few times if more characters are
4123 * available. Need to check for typed keys now and then, but
4124 * not too often (delays when no chars are available).
4125 * This loop is quit if no characters can be read from the pty
4126 * (WaitForChar detected special condition), or there are no
4127 * characters available and the child has exited.
4128 * Only check if the child has exited when there is no more
4129 * output. The child may exit before all the output has
4130 * been printed.
4131 *
4132 * Currently this busy loops!
4133 * This can probably dead-lock when the write blocks!
4134 */
4135 p_more_save = p_more;
4136 p_more = FALSE;
4137 old_State = State;
4138 State = EXTERNCMD; /* don't redraw at window resize */
4139
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004140 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004141 {
4142 /* Fork a process that will write the lines to the
4143 * external program. */
4144 if ((wpid = fork()) == -1)
4145 {
4146 MSG_PUTS(_("\nCannot fork\n"));
4147 }
4148 else if (wpid == 0)
4149 {
4150 linenr_T lnum = curbuf->b_op_start.lnum;
4151 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004152 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004153 char_u *s;
4154 size_t l;
4155
4156 /* child */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004157 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004158 for (;;)
4159 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004160 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004161 if (l == 0)
4162 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004163 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004164 /* NL -> NUL translation */
4165 len = write(toshell_fd, "", (size_t)1);
4166 else
4167 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004168 s = vim_strchr(lp + written, NL);
4169 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004170 s == NULL ? l
4171 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004172 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004173 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004174 {
4175 /* Finished a line, add a NL, unless this line
4176 * should not have one. */
4177 if (lnum != curbuf->b_op_end.lnum
4178 || !curbuf->b_p_bin
4179 || (lnum != write_no_eol_lnum
4180 && (lnum !=
4181 curbuf->b_ml.ml_line_count
4182 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004183 ignored = write(toshell_fd, "\n",
4184 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004185 ++lnum;
4186 if (lnum > curbuf->b_op_end.lnum)
4187 {
4188 /* finished all the lines, close pipe */
4189 close(toshell_fd);
4190 toshell_fd = -1;
4191 break;
4192 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004193 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004194 written = 0;
4195 }
4196 else if (len > 0)
4197 written += len;
4198 }
4199 _exit(0);
4200 }
4201 else
4202 {
4203 close(toshell_fd);
4204 toshell_fd = -1;
4205 }
4206 }
4207
4208 if (options & SHELL_READ)
4209 ga_init2(&ga, 1, BUFLEN);
4210
4211 noread_cnt = 0;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004212# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4213 gettimeofday(&start_tv, NULL);
4214# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 for (;;)
4216 {
4217 /*
4218 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004219 * if there are any.
4220 * Don't do this if we are expanding wild cards (would eat
4221 * typeahead).
4222 * Don't do this when filtering and terminal is in cooked
4223 * mode, the shell command will handle the I/O. Avoids
4224 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004225 * Don't get characters when the child has already
4226 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004227 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004228 * while (noread_cnt > 4), avoids that ":r !ls" eats
4229 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 */
4231 len = 0;
4232 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004233 && ((options &
4234 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4235 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004236# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004237 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004238# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004239 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004240 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004241 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004243 if (ta_len == 0)
4244 {
4245 /* Get extra characters when we don't have any.
4246 * Reset the counter and timer. */
4247 noread_cnt = 0;
4248# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4249 gettimeofday(&start_tv, NULL);
4250# endif
4251 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4252 }
4253 if (ta_len > 0 || len > 0)
4254 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 /*
4256 * For pipes:
4257 * Check for CTRL-C: send interrupt signal to child.
4258 * Check for CTRL-D: EOF, close pipe to child.
4259 */
4260 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4261 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004262# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 /*
4264 * Send SIGINT to the child's group or all
4265 * processes in our group.
4266 */
4267 if (ta_buf[ta_len] == Ctrl_C
4268 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004269 {
4270# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004272# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004275 if (wpid > 0)
4276 kill(wpid, SIGINT);
4277 }
4278# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 if (pty_master_fd < 0 && toshell_fd >= 0
4280 && ta_buf[ta_len] == Ctrl_D)
4281 {
4282 close(toshell_fd);
4283 toshell_fd = -1;
4284 }
4285 }
4286
4287 /* replace K_BS by <BS> and K_DEL by <DEL> */
4288 for (i = ta_len; i < ta_len + len; ++i)
4289 {
4290 if (ta_buf[i] == CSI && len - i > 2)
4291 {
4292 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4293 if (c == K_DEL || c == K_KDEL || c == K_BS)
4294 {
4295 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4296 (size_t)(len - i - 2));
4297 if (c == K_DEL || c == K_KDEL)
4298 ta_buf[i] = DEL;
4299 else
4300 ta_buf[i] = Ctrl_H;
4301 len -= 2;
4302 }
4303 }
4304 else if (ta_buf[i] == '\r')
4305 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004306# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004308 i += (*mb_ptr2len_len)(ta_buf + i,
4309 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004310# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 }
4312
4313 /*
4314 * For pipes: echo the typed characters.
4315 * For a pty this does not seem to work.
4316 */
4317 if (pty_master_fd < 0)
4318 {
4319 for (i = ta_len; i < ta_len + len; ++i)
4320 {
4321 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4322 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004323# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 else if (has_mbyte)
4325 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004326 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327
4328 msg_outtrans_len(ta_buf + i, l);
4329 i += l - 1;
4330 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004331# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 else
4333 msg_outtrans_len(ta_buf + i, 1);
4334 }
4335 windgoto(msg_row, msg_col);
4336 out_flush();
4337 }
4338
4339 ta_len += len;
4340
4341 /*
4342 * Write the characters to the child, unless EOF has
4343 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004344 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004345 * When writing buffer lines, drop the typed
4346 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004348 if (options & SHELL_WRITE)
4349 ta_len = 0;
4350 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 {
4352 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4353 if (len > 0)
4354 {
4355 ta_len -= len;
4356 mch_memmove(ta_buf, ta_buf + len, ta_len);
4357 }
4358 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004359 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 }
4361
Bram Moolenaardf177f62005-02-22 08:39:57 +00004362 if (got_int)
4363 {
4364 /* CTRL-C sends a signal to the child, we ignore it
4365 * ourselves */
4366# ifdef HAVE_SETSID
4367 kill(-pid, SIGINT);
4368# else
4369 kill(0, SIGINT);
4370# endif
4371 if (wpid > 0)
4372 kill(wpid, SIGINT);
4373 got_int = FALSE;
4374 }
4375
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 /*
4377 * Check if the child has any characters to be printed.
4378 * Read them and write them to our window. Repeat this as
4379 * long as there is something to do, avoid the 10ms wait
4380 * for mch_inchar(), or sending typeahead characters to
4381 * the external process.
4382 * TODO: This should handle escape sequences, compatible
4383 * to some terminal (vt52?).
4384 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004385 ++noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4387 {
4388 len = read(fromshell_fd, (char *)buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004389# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004391# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004393# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 );
4395 if (len <= 0) /* end of file or error */
4396 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004397
4398 noread_cnt = 0;
4399 if (options & SHELL_READ)
4400 {
4401 /* Do NUL -> NL translation, append NL separated
4402 * lines to the current buffer. */
4403 for (i = 0; i < len; ++i)
4404 {
4405 if (buffer[i] == NL)
4406 append_ga_line(&ga);
4407 else if (buffer[i] == NUL)
4408 ga_append(&ga, NL);
4409 else
4410 ga_append(&ga, buffer[i]);
4411 }
4412 }
4413# ifdef FEAT_MBYTE
4414 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 {
4416 int l;
4417
Bram Moolenaardf177f62005-02-22 08:39:57 +00004418 len += buffer_off;
4419 buffer[len] = NUL;
4420
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 /* Check if the last character in buffer[] is
4422 * incomplete, keep these bytes for the next
4423 * round. */
4424 for (p = buffer; p < buffer + len; p += l)
4425 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004426 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 if (l == 0)
4428 l = 1; /* NUL byte? */
4429 else if (MB_BYTE2LEN(*p) != l)
4430 break;
4431 }
4432 if (p == buffer) /* no complete character */
4433 {
4434 /* avoid getting stuck at an illegal byte */
4435 if (len >= 12)
4436 ++p;
4437 else
4438 {
4439 buffer_off = len;
4440 continue;
4441 }
4442 }
4443 c = *p;
4444 *p = NUL;
4445 msg_puts(buffer);
4446 if (p < buffer + len)
4447 {
4448 *p = c;
4449 buffer_off = (buffer + len) - p;
4450 mch_memmove(buffer, p, buffer_off);
4451 continue;
4452 }
4453 buffer_off = 0;
4454 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004455# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 {
4458 buffer[len] = NUL;
4459 msg_puts(buffer);
4460 }
4461
4462 windgoto(msg_row, msg_col);
4463 cursor_on();
4464 out_flush();
4465 if (got_int)
4466 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004467
4468# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4469 {
4470 struct timeval now_tv;
4471 long msec;
4472
4473 /* Avoid that we keep looping here without
4474 * checking for a CTRL-C for a long time. Don't
4475 * break out too often to avoid losing typeahead. */
4476 gettimeofday(&now_tv, NULL);
4477 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4478 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4479 if (msec > 2000)
4480 {
4481 noread_cnt = 5;
4482 break;
4483 }
4484 }
4485# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 }
4487
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004488 /* If we already detected the child has finished break the
4489 * loop now. */
4490 if (wait_pid == pid)
4491 break;
4492
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 /*
4494 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004495 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004497# ifdef __NeXT__
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004499# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004501# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4503 || (wait_pid == pid && WIFEXITED(status)))
4504 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004505 /* Don't break the loop yet, try reading more
4506 * characters from "fromshell_fd" first. When using
4507 * pipes there might still be something to read and
4508 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004511 else
4512 wait_pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 }
4514finished:
4515 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004516 if (options & SHELL_READ)
4517 {
4518 if (ga.ga_len > 0)
4519 {
4520 append_ga_line(&ga);
4521 /* remember that the NL was missing */
4522 write_no_eol_lnum = curwin->w_cursor.lnum;
4523 }
4524 else
4525 write_no_eol_lnum = 0;
4526 ga_clear(&ga);
4527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 /*
4530 * Give all typeahead that wasn't used back to ui_inchar().
4531 */
4532 if (ta_len)
4533 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 State = old_State;
4535 if (toshell_fd >= 0)
4536 close(toshell_fd);
4537 close(fromshell_fd);
4538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
4540 /*
4541 * Wait until our child has exited.
4542 * Ignore wait() returning pids of other children and returning
4543 * because of some signal like SIGWINCH.
4544 * Don't wait if wait_pid was already set above, indicating the
4545 * child already exited.
4546 */
4547 while (wait_pid != pid)
4548 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004549# ifdef _THREAD_SAFE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 /* Ugly hack: when compiled with Python threads are probably
4551 * used, in which case wait() sometimes hangs for no obvious
4552 * reason. Use waitpid() instead and loop (like the GUI). */
4553# ifdef __NeXT__
4554 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4555# else
4556 wait_pid = waitpid(pid, &status, WNOHANG);
4557# endif
4558 if (wait_pid == 0)
4559 {
4560 /* Wait for 1/100 sec before trying again. */
4561 mch_delay(10L, TRUE);
4562 continue;
4563 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004564# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 wait_pid = wait(&status);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004566# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 if (wait_pid <= 0
4568# ifdef ECHILD
4569 && errno == ECHILD
4570# endif
4571 )
4572 break;
4573 }
4574
Bram Moolenaardf177f62005-02-22 08:39:57 +00004575 /* Make sure the child that writes to the external program is
4576 * dead. */
4577 if (wpid > 0)
4578 kill(wpid, SIGKILL);
4579
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 /*
4581 * Set to raw mode right now, otherwise a CTRL-C after
4582 * catch_signals() will kill Vim.
4583 */
4584 if (tmode == TMODE_RAW)
4585 settmode(TMODE_RAW);
4586 did_settmode = TRUE;
4587 set_signals();
4588
4589 if (WIFEXITED(status))
4590 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00004591 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 retval = WEXITSTATUS(status);
4593 if (retval && !emsg_silent)
4594 {
4595 if (retval == EXEC_FAILED)
4596 {
4597 MSG_PUTS(_("\nCannot execute shell "));
4598 msg_outtrans(p_sh);
4599 msg_putchar('\n');
4600 }
4601 else if (!(options & SHELL_SILENT))
4602 {
4603 MSG_PUTS(_("\nshell returned "));
4604 msg_outnum((long)retval);
4605 msg_putchar('\n');
4606 }
4607 }
4608 }
4609 else
4610 MSG_PUTS(_("\nCommand terminated\n"));
4611 }
4612 }
4613 vim_free(argv);
4614
4615error:
4616 if (!did_settmode)
4617 if (tmode == TMODE_RAW)
4618 settmode(TMODE_RAW); /* set to raw mode */
4619# ifdef FEAT_TITLE
4620 resettitle();
4621# endif
4622 vim_free(newcmd);
4623
4624 return retval;
4625
4626#endif /* USE_SYSTEM */
4627}
4628
4629/*
4630 * Check for CTRL-C typed by reading all available characters.
4631 * In cooked mode we should get SIGINT, no need to check.
4632 */
4633 void
4634mch_breakcheck()
4635{
4636 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4637 fill_input_buf(FALSE);
4638}
4639
4640/*
4641 * Wait "msec" msec until a character is available from the keyboard or from
4642 * inbuf[]. msec == -1 will block forever.
4643 * When a GUI is being used, this will never get called -- webb
4644 */
4645 static int
4646WaitForChar(msec)
4647 long msec;
4648{
4649#ifdef FEAT_MOUSE_GPM
4650 int gpm_process_wanted;
4651#endif
4652#ifdef FEAT_XCLIPBOARD
4653 int rest;
4654#endif
4655 int avail;
4656
4657 if (input_available()) /* something in inbuf[] */
4658 return 1;
4659
4660#if defined(FEAT_MOUSE_DEC)
4661 /* May need to query the mouse position. */
4662 if (WantQueryMouse)
4663 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004664 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4666 }
4667#endif
4668
4669 /*
4670 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4671 * events. This is a bit complicated, because they might both be defined.
4672 */
4673#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4674# ifdef FEAT_XCLIPBOARD
4675 rest = 0;
4676 if (do_xterm_trace())
4677 rest = msec;
4678# endif
4679 do
4680 {
4681# ifdef FEAT_XCLIPBOARD
4682 if (rest != 0)
4683 {
4684 msec = XT_TRACE_DELAY;
4685 if (rest >= 0 && rest < XT_TRACE_DELAY)
4686 msec = rest;
4687 if (rest >= 0)
4688 rest -= msec;
4689 }
4690# endif
4691# ifdef FEAT_MOUSE_GPM
4692 gpm_process_wanted = 0;
4693 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4694# else
4695 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4696# endif
4697 if (!avail)
4698 {
4699 if (input_available())
4700 return 1;
4701# ifdef FEAT_XCLIPBOARD
4702 if (rest == 0 || !do_xterm_trace())
4703# endif
4704 break;
4705 }
4706 }
4707 while (FALSE
4708# ifdef FEAT_MOUSE_GPM
4709 || (gpm_process_wanted && mch_gpm_process() == 0)
4710# endif
4711# ifdef FEAT_XCLIPBOARD
4712 || (!avail && rest != 0)
4713# endif
4714 );
4715
4716#else
4717 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4718#endif
4719 return avail;
4720}
4721
4722/*
4723 * Wait "msec" msec until a character is available from file descriptor "fd".
4724 * Time == -1 will block forever.
4725 * When a GUI is being used, this will not be used for input -- webb
4726 * Returns also, when a request from Sniff is waiting -- toni.
4727 * Or when a Linux GPM mouse event is waiting.
4728 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729#if defined(__BEOS__)
4730 int
4731#else
4732 static int
4733#endif
4734RealWaitForChar(fd, msec, check_for_gpm)
4735 int fd;
4736 long msec;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004737 int *check_for_gpm UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738{
4739 int ret;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004740#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 static int busy = FALSE;
4742
4743 /* May retry getting characters after an event was handled. */
4744# define MAY_LOOP
4745
4746# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4747 /* Remember at what time we started, so that we know how much longer we
4748 * should wait after being interrupted. */
4749# define USE_START_TV
4750 struct timeval start_tv;
4751
4752 if (msec > 0 && (
4753# ifdef FEAT_XCLIPBOARD
4754 xterm_Shell != (Widget)0
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004755# if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 ||
4757# endif
4758# endif
4759# ifdef USE_XSMP
4760 xsmp_icefd != -1
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004761# ifdef FEAT_MZSCHEME
4762 ||
4763# endif
4764# endif
4765# ifdef FEAT_MZSCHEME
4766 (mzthreads_allowed() && p_mzq > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767# endif
4768 ))
4769 gettimeofday(&start_tv, NULL);
4770# endif
4771
4772 /* Handle being called recursively. This may happen for the session
4773 * manager stuff, it may save the file, which does a breakcheck. */
4774 if (busy)
4775 return 0;
4776#endif
4777
4778#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004779 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780#endif
4781 {
4782#ifdef MAY_LOOP
4783 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004784# ifdef FEAT_MZSCHEME
4785 int mzquantum_used = FALSE;
4786# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787#endif
4788#ifndef HAVE_SELECT
4789 struct pollfd fds[5];
4790 int nfd;
4791# ifdef FEAT_XCLIPBOARD
4792 int xterm_idx = -1;
4793# endif
4794# ifdef FEAT_MOUSE_GPM
4795 int gpm_idx = -1;
4796# endif
4797# ifdef USE_XSMP
4798 int xsmp_idx = -1;
4799# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004800 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004802# ifdef FEAT_MZSCHEME
4803 mzvim_check_threads();
4804 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4805 {
4806 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4807 mzquantum_used = TRUE;
4808 }
4809# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 fds[0].fd = fd;
4811 fds[0].events = POLLIN;
4812 nfd = 1;
4813
4814# ifdef FEAT_SNIFF
4815# define SNIFF_IDX 1
4816 if (want_sniff_request)
4817 {
4818 fds[SNIFF_IDX].fd = fd_from_sniff;
4819 fds[SNIFF_IDX].events = POLLIN;
4820 nfd++;
4821 }
4822# endif
4823# ifdef FEAT_XCLIPBOARD
4824 if (xterm_Shell != (Widget)0)
4825 {
4826 xterm_idx = nfd;
4827 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4828 fds[nfd].events = POLLIN;
4829 nfd++;
4830 }
4831# endif
4832# ifdef FEAT_MOUSE_GPM
4833 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4834 {
4835 gpm_idx = nfd;
4836 fds[nfd].fd = gpm_fd;
4837 fds[nfd].events = POLLIN;
4838 nfd++;
4839 }
4840# endif
4841# ifdef USE_XSMP
4842 if (xsmp_icefd != -1)
4843 {
4844 xsmp_idx = nfd;
4845 fds[nfd].fd = xsmp_icefd;
4846 fds[nfd].events = POLLIN;
4847 nfd++;
4848 }
4849# endif
4850
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004851 ret = poll(fds, nfd, towait);
4852# ifdef FEAT_MZSCHEME
4853 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004854 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004855 finished = FALSE;
4856# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857
4858# ifdef FEAT_SNIFF
4859 if (ret < 0)
4860 sniff_disconnect(1);
4861 else if (want_sniff_request)
4862 {
4863 if (fds[SNIFF_IDX].revents & POLLHUP)
4864 sniff_disconnect(1);
4865 if (fds[SNIFF_IDX].revents & POLLIN)
4866 sniff_request_waiting = 1;
4867 }
4868# endif
4869# ifdef FEAT_XCLIPBOARD
4870 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4871 {
4872 xterm_update(); /* Maybe we should hand out clipboard */
4873 if (--ret == 0 && !input_available())
4874 /* Try again */
4875 finished = FALSE;
4876 }
4877# endif
4878# ifdef FEAT_MOUSE_GPM
4879 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4880 {
4881 *check_for_gpm = 1;
4882 }
4883# endif
4884# ifdef USE_XSMP
4885 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4886 {
4887 if (fds[xsmp_idx].revents & POLLIN)
4888 {
4889 busy = TRUE;
4890 xsmp_handle_requests();
4891 busy = FALSE;
4892 }
4893 else if (fds[xsmp_idx].revents & POLLHUP)
4894 {
4895 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004896 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 xsmp_close();
4898 }
4899 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004900 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 }
4902# endif
4903
4904
4905#else /* HAVE_SELECT */
4906
4907 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004908 struct timeval *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 fd_set rfds, efds;
4910 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004911 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004913# ifdef FEAT_MZSCHEME
4914 mzvim_check_threads();
4915 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4916 {
4917 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4918 mzquantum_used = TRUE;
4919 }
4920# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921# ifdef __EMX__
4922 /* don't check for incoming chars if not in raw mode, because select()
4923 * always returns TRUE then (in some version of emx.dll) */
4924 if (curr_tmode != TMODE_RAW)
4925 return 0;
4926# endif
4927
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004928 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004930 tv.tv_sec = towait / 1000;
4931 tv.tv_usec = (towait % 1000) * (1000000/1000);
4932 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004934 else
4935 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936
4937 /*
4938 * Select on ready for reading and exceptional condition (end of file).
4939 */
4940 FD_ZERO(&rfds); /* calls bzero() on a sun */
4941 FD_ZERO(&efds);
4942 FD_SET(fd, &rfds);
4943# if !defined(__QNX__) && !defined(__CYGWIN32__)
4944 /* For QNX select() always returns 1 if this is set. Why? */
4945 FD_SET(fd, &efds);
4946# endif
4947 maxfd = fd;
4948
4949# ifdef FEAT_SNIFF
4950 if (want_sniff_request)
4951 {
4952 FD_SET(fd_from_sniff, &rfds);
4953 FD_SET(fd_from_sniff, &efds);
4954 if (maxfd < fd_from_sniff)
4955 maxfd = fd_from_sniff;
4956 }
4957# endif
4958# ifdef FEAT_XCLIPBOARD
4959 if (xterm_Shell != (Widget)0)
4960 {
4961 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4962 if (maxfd < ConnectionNumber(xterm_dpy))
4963 maxfd = ConnectionNumber(xterm_dpy);
4964 }
4965# endif
4966# ifdef FEAT_MOUSE_GPM
4967 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4968 {
4969 FD_SET(gpm_fd, &rfds);
4970 FD_SET(gpm_fd, &efds);
4971 if (maxfd < gpm_fd)
4972 maxfd = gpm_fd;
4973 }
4974# endif
4975# ifdef USE_XSMP
4976 if (xsmp_icefd != -1)
4977 {
4978 FD_SET(xsmp_icefd, &rfds);
4979 FD_SET(xsmp_icefd, &efds);
4980 if (maxfd < xsmp_icefd)
4981 maxfd = xsmp_icefd;
4982 }
4983# endif
4984
4985# ifdef OLD_VMS
4986 /* Old VMS as v6.2 and older have broken select(). It waits more than
4987 * required. Should not be used */
4988 ret = 0;
4989# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004990 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4991# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00004992# ifdef __TANDEM
4993 if (ret == -1 && errno == ENOTSUP)
4994 {
4995 FD_ZERO(&rfds);
4996 FD_ZERO(&efds);
4997 ret = 0;
4998 }
4999#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005000# ifdef FEAT_MZSCHEME
5001 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005002 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005003 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004# endif
5005
5006# ifdef FEAT_SNIFF
5007 if (ret < 0 )
5008 sniff_disconnect(1);
5009 else if (ret > 0 && want_sniff_request)
5010 {
5011 if (FD_ISSET(fd_from_sniff, &efds))
5012 sniff_disconnect(1);
5013 if (FD_ISSET(fd_from_sniff, &rfds))
5014 sniff_request_waiting = 1;
5015 }
5016# endif
5017# ifdef FEAT_XCLIPBOARD
5018 if (ret > 0 && xterm_Shell != (Widget)0
5019 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5020 {
5021 xterm_update(); /* Maybe we should hand out clipboard */
5022 /* continue looping when we only got the X event and the input
5023 * buffer is empty */
5024 if (--ret == 0 && !input_available())
5025 {
5026 /* Try again */
5027 finished = FALSE;
5028 }
5029 }
5030# endif
5031# ifdef FEAT_MOUSE_GPM
5032 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5033 {
5034 if (FD_ISSET(gpm_fd, &efds))
5035 gpm_close();
5036 else if (FD_ISSET(gpm_fd, &rfds))
5037 *check_for_gpm = 1;
5038 }
5039# endif
5040# ifdef USE_XSMP
5041 if (ret > 0 && xsmp_icefd != -1)
5042 {
5043 if (FD_ISSET(xsmp_icefd, &efds))
5044 {
5045 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005046 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 xsmp_close();
5048 if (--ret == 0)
5049 finished = FALSE; /* keep going if event was only one */
5050 }
5051 else if (FD_ISSET(xsmp_icefd, &rfds))
5052 {
5053 busy = TRUE;
5054 xsmp_handle_requests();
5055 busy = FALSE;
5056 if (--ret == 0)
5057 finished = FALSE; /* keep going if event was only one */
5058 }
5059 }
5060# endif
5061
5062#endif /* HAVE_SELECT */
5063
5064#ifdef MAY_LOOP
5065 if (finished || msec == 0)
5066 break;
5067
5068 /* We're going to loop around again, find out for how long */
5069 if (msec > 0)
5070 {
5071# ifdef USE_START_TV
5072 struct timeval mtv;
5073
5074 /* Compute remaining wait time. */
5075 gettimeofday(&mtv, NULL);
5076 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5077 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5078# else
5079 /* Guess we got interrupted halfway. */
5080 msec = msec / 2;
5081# endif
5082 if (msec <= 0)
5083 break; /* waited long enough */
5084 }
5085#endif
5086 }
5087
5088 return (ret > 0);
5089}
5090
5091#ifndef VMS
5092
5093#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005095 * Expand a path into all matching files and/or directories. Handles "*",
5096 * "?", "[a-z]", "**", etc.
5097 * "path" has backslashes before chars that are not to be expanded.
5098 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 */
5100 int
5101mch_expandpath(gap, path, flags)
5102 garray_T *gap;
5103 char_u *path;
5104 int flags; /* EW_* flags */
5105{
Bram Moolenaar02743632005-07-25 20:42:36 +00005106 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107}
5108#endif
5109
5110/*
5111 * mch_expand_wildcards() - this code does wild-card pattern matching using
5112 * the shell
5113 *
5114 * return OK for success, FAIL for error (you may lose some memory) and put
5115 * an error message in *file.
5116 *
5117 * num_pat is number of input patterns
5118 * pat is array of pointers to input patterns
5119 * num_file is pointer to number of matched file names
5120 * file is pointer to array of pointers to matched file names
5121 */
5122
5123#ifndef SEEK_SET
5124# define SEEK_SET 0
5125#endif
5126#ifndef SEEK_END
5127# define SEEK_END 2
5128#endif
5129
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005130#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005131
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 int
5133mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5134 int num_pat;
5135 char_u **pat;
5136 int *num_file;
5137 char_u ***file;
5138 int flags; /* EW_* flags */
5139{
5140 int i;
5141 size_t len;
5142 char_u *p;
5143 int dir;
5144#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005145 /*
5146 * This is the OS/2 implementation.
5147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148# define EXPL_ALLOC_INC 16
5149 char_u **expl_files;
5150 size_t files_alloced, files_free;
5151 char_u *buf;
5152 int has_wildcard;
5153
5154 *num_file = 0; /* default: no files found */
5155 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5156 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5157 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5158 if (*file == NULL)
5159 return FAIL;
5160
5161 for (; num_pat > 0; num_pat--, pat++)
5162 {
5163 expl_files = NULL;
5164 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5165 /* expand environment var or home dir */
5166 buf = expand_env_save(*pat);
5167 else
5168 buf = vim_strsave(*pat);
5169 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005170 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 if (has_wildcard) /* yes, so expand them */
5172 expl_files = (char_u **)_fnexplode(buf);
5173
5174 /*
5175 * return value of buf if no wildcards left,
5176 * OR if no match AND EW_NOTFOUND is set.
5177 */
5178 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5179 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5180 { /* simply save the current contents of *buf */
5181 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5182 if (expl_files != NULL)
5183 {
5184 expl_files[0] = vim_strsave(buf);
5185 expl_files[1] = NULL;
5186 }
5187 }
5188 vim_free(buf);
5189
5190 /*
5191 * Count number of names resulting from expansion,
5192 * At the same time add a backslash to the end of names that happen to
5193 * be directories, and replace slashes with backslashes.
5194 */
5195 if (expl_files)
5196 {
5197 for (i = 0; (p = expl_files[i]) != NULL; i++)
5198 {
5199 dir = mch_isdir(p);
5200 /* If we don't want dirs and this is one, skip it */
5201 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5202 continue;
5203
Bram Moolenaara2031822006-03-07 22:29:51 +00005204 /* Skip files that are not executable if we check for that. */
5205 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5206 continue;
5207
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 if (--files_free == 0)
5209 {
5210 /* need more room in table of pointers */
5211 files_alloced += EXPL_ALLOC_INC;
5212 *file = (char_u **)vim_realloc(*file,
5213 sizeof(char_u **) * files_alloced);
5214 if (*file == NULL)
5215 {
5216 EMSG(_(e_outofmem));
5217 *num_file = 0;
5218 return FAIL;
5219 }
5220 files_free = EXPL_ALLOC_INC;
5221 }
5222 slash_adjust(p);
5223 if (dir)
5224 {
5225 /* For a directory we add a '/', unless it's already
5226 * there. */
5227 len = STRLEN(p);
5228 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5229 {
5230 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00005231 if (!after_pathsep((*file)[*num_file],
5232 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 {
5234 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005235 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 }
5237 }
5238 }
5239 else
5240 {
5241 (*file)[*num_file] = vim_strsave(p);
5242 }
5243
5244 /*
5245 * Error message already given by either alloc or vim_strsave.
5246 * Should return FAIL, but returning OK works also.
5247 */
5248 if ((*file)[*num_file] == NULL)
5249 break;
5250 (*num_file)++;
5251 }
5252 _fnexplodefree((char **)expl_files);
5253 }
5254 }
5255 return OK;
5256
5257#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005258 /*
5259 * This is the non-OS/2 implementation (really Unix).
5260 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 int j;
5262 char_u *tempname;
5263 char_u *command;
5264 FILE *fd;
5265 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005266#define STYLE_ECHO 0 /* use "echo", the default */
5267#define STYLE_GLOB 1 /* use "glob", for csh */
5268#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5269#define STYLE_PRINT 3 /* use "print -N", for zsh */
5270#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5271 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 int shell_style = STYLE_ECHO;
5273 int check_spaces;
5274 static int did_find_nul = FALSE;
5275 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005276 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005277 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278
5279 *num_file = 0; /* default: no files found */
5280 *file = NULL;
5281
5282 /*
5283 * If there are no wildcards, just copy the names to allocated memory.
5284 * Saves a lot of time, because we don't have to start a new shell.
5285 */
5286 if (!have_wildcard(num_pat, pat))
5287 return save_patterns(num_pat, pat, num_file, file);
5288
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005289# ifdef HAVE_SANDBOX
5290 /* Don't allow any shell command in the sandbox. */
5291 if (sandbox != 0 && check_secure())
5292 return FAIL;
5293# endif
5294
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 /*
5296 * Don't allow the use of backticks in secure and restricted mode.
5297 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005298 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 for (i = 0; i < num_pat; ++i)
5300 if (vim_strchr(pat[i], '`') != NULL
5301 && (check_restricted() || check_secure()))
5302 return FAIL;
5303
5304 /*
5305 * get a name for the temp file
5306 */
5307 if ((tempname = vim_tempname('o')) == NULL)
5308 {
5309 EMSG(_(e_notmp));
5310 return FAIL;
5311 }
5312
5313 /*
5314 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00005315 * file.
5316 * STYLE_BT: NL separated
5317 * If expanding `cmd` execute it directly.
5318 * STYLE_GLOB: NUL separated
5319 * If we use *csh, "glob" will work better than "echo".
5320 * STYLE_PRINT: NL or NUL separated
5321 * If we use *zsh, "print -N" will work better than "glob".
5322 * STYLE_VIMGLOB: NL separated
5323 * If we use *sh*, we define "vimglob()".
5324 * STYLE_ECHO: space separated.
5325 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 */
5327 if (num_pat == 1 && *pat[0] == '`'
5328 && (len = STRLEN(pat[0])) > 2
5329 && *(pat[0] + len - 1) == '`')
5330 shell_style = STYLE_BT;
5331 else if ((len = STRLEN(p_sh)) >= 3)
5332 {
5333 if (STRCMP(p_sh + len - 3, "csh") == 0)
5334 shell_style = STYLE_GLOB;
5335 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5336 shell_style = STYLE_PRINT;
5337 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005338 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5339 "sh") != NULL)
5340 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341
Bram Moolenaarc7247912008-01-13 12:54:11 +00005342 /* Compute the length of the command. We need 2 extra bytes: for the
5343 * optional '&' and for the NUL.
5344 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005346 if (shell_style == STYLE_VIMGLOB)
5347 len += STRLEN(sh_vimglob_func);
5348
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005349 for (i = 0; i < num_pat; ++i)
5350 {
5351 /* Count the length of the patterns in the same way as they are put in
5352 * "command" below. */
5353#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005355#else
5356 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00005357 for (j = 0; pat[i][j] != NUL; ++j)
5358 {
5359 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5360 ++len; /* may add a backslash */
5361 ++len;
5362 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005363#endif
5364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 command = alloc(len);
5366 if (command == NULL)
5367 {
5368 /* out of memory */
5369 vim_free(tempname);
5370 return FAIL;
5371 }
5372
5373 /*
5374 * Build the shell command:
5375 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5376 * recognizes this).
5377 * - Add the shell command to print the expanded names.
5378 * - Add the temp file name.
5379 * - Add the file name patterns.
5380 */
5381 if (shell_style == STYLE_BT)
5382 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00005383 /* change `command; command& ` to (command; command ) */
5384 STRCPY(command, "(");
5385 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005387 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 while (p > command && vim_iswhite(*p))
5389 --p;
5390 if (*p == '&') /* remove trailing '&' */
5391 {
5392 ampersent = TRUE;
5393 *p = ' ';
5394 }
5395 STRCAT(command, ">");
5396 }
5397 else
5398 {
5399 if (flags & EW_NOTFOUND)
5400 STRCPY(command, "set nonomatch; ");
5401 else
5402 STRCPY(command, "unset nonomatch; ");
5403 if (shell_style == STYLE_GLOB)
5404 STRCAT(command, "glob >");
5405 else if (shell_style == STYLE_PRINT)
5406 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00005407 else if (shell_style == STYLE_VIMGLOB)
5408 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 else
5410 STRCAT(command, "echo >");
5411 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005412
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00005414
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 if (shell_style != STYLE_BT)
5416 for (i = 0; i < num_pat; ++i)
5417 {
5418 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00005419 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005420 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421#ifdef USE_SYSTEM
5422 STRCAT(command, " \"");
5423 STRCAT(command, pat[i]);
5424 STRCAT(command, "\"");
5425#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00005426 int intick = FALSE;
5427
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 p = command + STRLEN(command);
5429 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00005430 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005431 {
5432 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00005433 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005434 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5435 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005436 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00005437 * backslash inside backticks, before a special character
5438 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005439 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00005440 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5441 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005442 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005443 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005444 }
5445 else if (!intick && vim_strchr(SHELL_SPECIAL,
Bram Moolenaar582fd852005-03-28 20:58:01 +00005446 pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00005447 /* Put a backslash before a special character, but not
5448 * when inside ``. */
5449 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005450
5451 /* Copy one character. */
5452 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00005453 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 *p = NUL;
5455#endif
5456 }
5457 if (flags & EW_SILENT)
5458 show_shell_mess = FALSE;
5459 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00005460 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461
5462 /*
5463 * Using zsh -G: If a pattern has no matches, it is just deleted from
5464 * the argument list, otherwise zsh gives an error message and doesn't
5465 * expand any other pattern.
5466 */
5467 if (shell_style == STYLE_PRINT)
5468 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5469
5470 /*
5471 * If we use -f then shell variables set in .cshrc won't get expanded.
5472 * vi can do it, so we will too, but it is only necessary if there is a "$"
5473 * in one of the patterns, otherwise we can still use the fast option.
5474 */
5475 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5476 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5477
5478 /*
5479 * execute the shell command
5480 */
5481 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5482
5483 /* When running in the background, give it some time to create the temp
5484 * file, but don't wait for it to finish. */
5485 if (ampersent)
5486 mch_delay(10L, TRUE);
5487
5488 extra_shell_arg = NULL; /* cleanup */
5489 show_shell_mess = TRUE;
5490 vim_free(command);
5491
Bram Moolenaarc7247912008-01-13 12:54:11 +00005492 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 {
5494 mch_remove(tempname);
5495 vim_free(tempname);
5496 /*
5497 * With interactive completion, the error message is not printed.
5498 * However with USE_SYSTEM, I don't know how to turn off error messages
5499 * from the shell, so screen may still get messed up -- webb.
5500 */
5501#ifndef USE_SYSTEM
5502 if (!(flags & EW_SILENT))
5503#endif
5504 {
5505 redraw_later_clear(); /* probably messed up screen */
5506 msg_putchar('\n'); /* clear bottom line quickly */
5507 cmdline_row = Rows - 1; /* continue on last line */
5508#ifdef USE_SYSTEM
5509 if (!(flags & EW_SILENT))
5510#endif
5511 {
5512 MSG(_(e_wildexpand));
5513 msg_start(); /* don't overwrite this message */
5514 }
5515 }
5516 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5517 * EW_NOTFOUND is given */
5518 if (shell_style == STYLE_BT)
5519 return FAIL;
5520 goto notfound;
5521 }
5522
5523 /*
5524 * read the names from the file into memory
5525 */
5526 fd = fopen((char *)tempname, READBIN);
5527 if (fd == NULL)
5528 {
5529 /* Something went wrong, perhaps a file name with a special char. */
5530 if (!(flags & EW_SILENT))
5531 {
5532 MSG(_(e_wildexpand));
5533 msg_start(); /* don't overwrite this message */
5534 }
5535 vim_free(tempname);
5536 goto notfound;
5537 }
5538 fseek(fd, 0L, SEEK_END);
5539 len = ftell(fd); /* get size of temp file */
5540 fseek(fd, 0L, SEEK_SET);
5541 buffer = alloc(len + 1);
5542 if (buffer == NULL)
5543 {
5544 /* out of memory */
5545 mch_remove(tempname);
5546 vim_free(tempname);
5547 fclose(fd);
5548 return FAIL;
5549 }
5550 i = fread((char *)buffer, 1, len, fd);
5551 fclose(fd);
5552 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00005553 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 {
5555 /* unexpected read error */
5556 EMSG2(_(e_notread), tempname);
5557 vim_free(tempname);
5558 vim_free(buffer);
5559 return FAIL;
5560 }
5561 vim_free(tempname);
5562
Bram Moolenaarc7247912008-01-13 12:54:11 +00005563# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5565 p = buffer;
5566 for (i = 0; i < len; ++i)
5567 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5568 *p++ = buffer[i];
5569 len = p - buffer;
5570# endif
5571
5572
5573 /* file names are separated with Space */
5574 if (shell_style == STYLE_ECHO)
5575 {
5576 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5577 p = buffer;
5578 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5579 {
5580 while (*p != ' ' && *p != '\n')
5581 ++p;
5582 p = skipwhite(p); /* skip to next entry */
5583 }
5584 }
5585 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005586 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 {
5588 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5589 p = buffer;
5590 for (i = 0; *p != NUL; ++i) /* count number of entries */
5591 {
5592 while (*p != '\n' && *p != NUL)
5593 ++p;
5594 if (*p != NUL)
5595 ++p;
5596 p = skipwhite(p); /* skip leading white space */
5597 }
5598 }
5599 /* file names are separated with NUL */
5600 else
5601 {
5602 /*
5603 * Some versions of zsh use spaces instead of NULs to separate
5604 * results. Only do this when there is no NUL before the end of the
5605 * buffer, otherwise we would never be able to use file names with
5606 * embedded spaces when zsh does use NULs.
5607 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5608 * don't check for spaces again.
5609 */
5610 check_spaces = FALSE;
5611 if (shell_style == STYLE_PRINT && !did_find_nul)
5612 {
5613 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaar78a15312009-05-15 19:33:18 +00005614 if (len && (int)STRLEN(buffer) < (int)len - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 did_find_nul = TRUE;
5616 else
5617 check_spaces = TRUE;
5618 }
5619
5620 /*
5621 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5622 * already is one, for STYLE_GLOB it needs to be added.
5623 */
5624 if (len && buffer[len - 1] == NUL)
5625 --len;
5626 else
5627 buffer[len] = NUL;
5628 i = 0;
5629 for (p = buffer; p < buffer + len; ++p)
5630 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5631 {
5632 ++i;
5633 *p = NUL;
5634 }
5635 if (len)
5636 ++i; /* count last entry */
5637 }
5638 if (i == 0)
5639 {
5640 /*
5641 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5642 * /bin/sh will happily expand it to nothing rather than returning an
5643 * error; and hey, it's good to check anyway -- webb.
5644 */
5645 vim_free(buffer);
5646 goto notfound;
5647 }
5648 *num_file = i;
5649 *file = (char_u **)alloc(sizeof(char_u *) * i);
5650 if (*file == NULL)
5651 {
5652 /* out of memory */
5653 vim_free(buffer);
5654 return FAIL;
5655 }
5656
5657 /*
5658 * Isolate the individual file names.
5659 */
5660 p = buffer;
5661 for (i = 0; i < *num_file; ++i)
5662 {
5663 (*file)[i] = p;
5664 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005665 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5666 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00005668 while (!(shell_style == STYLE_ECHO && *p == ' ')
5669 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 ++p;
5671 if (p == buffer + len) /* last entry */
5672 *p = NUL;
5673 else
5674 {
5675 *p++ = NUL;
5676 p = skipwhite(p); /* skip to next entry */
5677 }
5678 }
5679 else /* NUL separates */
5680 {
5681 while (*p && p < buffer + len) /* skip entry */
5682 ++p;
5683 ++p; /* skip NUL */
5684 }
5685 }
5686
5687 /*
5688 * Move the file names to allocated memory.
5689 */
5690 for (j = 0, i = 0; i < *num_file; ++i)
5691 {
5692 /* Require the files to exist. Helps when using /bin/sh */
5693 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5694 continue;
5695
5696 /* check if this entry should be included */
5697 dir = (mch_isdir((*file)[i]));
5698 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5699 continue;
5700
Bram Moolenaara2031822006-03-07 22:29:51 +00005701 /* Skip files that are not executable if we check for that. */
5702 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5703 continue;
5704
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5706 if (p)
5707 {
5708 STRCPY(p, (*file)[i]);
5709 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00005710 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 (*file)[j++] = p;
5712 }
5713 }
5714 vim_free(buffer);
5715 *num_file = j;
5716
5717 if (*num_file == 0) /* rejected all entries */
5718 {
5719 vim_free(*file);
5720 *file = NULL;
5721 goto notfound;
5722 }
5723
5724 return OK;
5725
5726notfound:
5727 if (flags & EW_NOTFOUND)
5728 return save_patterns(num_pat, pat, num_file, file);
5729 return FAIL;
5730
5731#endif /* __EMX__ */
5732}
5733
5734#endif /* VMS */
5735
5736#ifndef __EMX__
5737 static int
5738save_patterns(num_pat, pat, num_file, file)
5739 int num_pat;
5740 char_u **pat;
5741 int *num_file;
5742 char_u ***file;
5743{
5744 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005745 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746
5747 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5748 if (*file == NULL)
5749 return FAIL;
5750 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00005751 {
5752 s = vim_strsave(pat[i]);
5753 if (s != NULL)
5754 /* Be compatible with expand_filename(): halve the number of
5755 * backslashes. */
5756 backslash_halve(s);
5757 (*file)[i] = s;
5758 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 *num_file = num_pat;
5760 return OK;
5761}
5762#endif
5763
5764
5765/*
5766 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5767 * expand.
5768 */
5769 int
5770mch_has_exp_wildcard(p)
5771 char_u *p;
5772{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005773 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 {
5775#ifndef OS2
5776 if (*p == '\\' && p[1] != NUL)
5777 ++p;
5778 else
5779#endif
5780 if (vim_strchr((char_u *)
5781#ifdef VMS
5782 "*?%"
5783#else
5784# ifdef OS2
5785 "*?"
5786# else
5787 "*?[{'"
5788# endif
5789#endif
5790 , *p) != NULL)
5791 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 }
5793 return FALSE;
5794}
5795
5796/*
5797 * Return TRUE if the string "p" contains a wildcard.
5798 * Don't recognize '~' at the end as a wildcard.
5799 */
5800 int
5801mch_has_wildcard(p)
5802 char_u *p;
5803{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005804 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 {
5806#ifndef OS2
5807 if (*p == '\\' && p[1] != NUL)
5808 ++p;
5809 else
5810#endif
5811 if (vim_strchr((char_u *)
5812#ifdef VMS
5813 "*?%$"
5814#else
5815# ifdef OS2
5816# ifdef VIM_BACKTICK
5817 "*?$`"
5818# else
5819 "*?$"
5820# endif
5821# else
5822 "*?[{`'$"
5823# endif
5824#endif
5825 , *p) != NULL
5826 || (*p == '~' && p[1] != NUL))
5827 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 }
5829 return FALSE;
5830}
5831
5832#ifndef __EMX__
5833 static int
5834have_wildcard(num, file)
5835 int num;
5836 char_u **file;
5837{
5838 int i;
5839
5840 for (i = 0; i < num; i++)
5841 if (mch_has_wildcard(file[i]))
5842 return 1;
5843 return 0;
5844}
5845
5846 static int
5847have_dollars(num, file)
5848 int num;
5849 char_u **file;
5850{
5851 int i;
5852
5853 for (i = 0; i < num; i++)
5854 if (vim_strchr(file[i], '$') != NULL)
5855 return TRUE;
5856 return FALSE;
5857}
5858#endif /* ifndef __EMX__ */
5859
5860#ifndef HAVE_RENAME
5861/*
5862 * Scaled-down version of rename(), which is missing in Xenix.
5863 * This version can only move regular files and will fail if the
5864 * destination exists.
5865 */
5866 int
5867mch_rename(src, dest)
5868 const char *src, *dest;
5869{
5870 struct stat st;
5871
5872 if (stat(dest, &st) >= 0) /* fail if destination exists */
5873 return -1;
5874 if (link(src, dest) != 0) /* link file to new name */
5875 return -1;
5876 if (mch_remove(src) == 0) /* delete link to old name */
5877 return 0;
5878 return -1;
5879}
5880#endif /* !HAVE_RENAME */
5881
5882#ifdef FEAT_MOUSE_GPM
5883/*
5884 * Initializes connection with gpm (if it isn't already opened)
5885 * Return 1 if succeeded (or connection already opened), 0 if failed
5886 */
5887 static int
5888gpm_open()
5889{
5890 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5891
5892 if (!gpm_flag)
5893 {
5894 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5895 gpm_connect.defaultMask = ~GPM_HARD;
5896 /* Default handling for mouse move*/
5897 gpm_connect.minMod = 0; /* Handle any modifier keys */
5898 gpm_connect.maxMod = 0xffff;
5899 if (Gpm_Open(&gpm_connect, 0) > 0)
5900 {
5901 /* gpm library tries to handling TSTP causes
5902 * problems. Anyways, we close connection to Gpm whenever
5903 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005904 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00005906# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00005908# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 return 1; /* succeed */
5910 }
5911 if (gpm_fd == -2)
5912 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5913 return 0;
5914 }
5915 return 1; /* already open */
5916}
5917
5918/*
5919 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 */
5921 static void
5922gpm_close()
5923{
5924 if (gpm_flag && gpm_fd >= 0) /* if Open */
5925 Gpm_Close();
5926}
5927
5928/* Reads gpm event and adds special keys to input buf. Returns length of
5929 * generated key sequence.
5930 * This function is made after gui_send_mouse_event
5931 */
5932 static int
5933mch_gpm_process()
5934{
5935 int button;
5936 static Gpm_Event gpm_event;
5937 char_u string[6];
5938 int_u vim_modifiers;
5939 int row,col;
5940 unsigned char buttons_mask;
5941 unsigned char gpm_modifiers;
5942 static unsigned char old_buttons = 0;
5943
5944 Gpm_GetEvent(&gpm_event);
5945
5946#ifdef FEAT_GUI
5947 /* Don't put events in the input queue now. */
5948 if (hold_gui_events)
5949 return 0;
5950#endif
5951
5952 row = gpm_event.y - 1;
5953 col = gpm_event.x - 1;
5954
5955 string[0] = ESC; /* Our termcode */
5956 string[1] = 'M';
5957 string[2] = 'G';
5958 switch (GPM_BARE_EVENTS(gpm_event.type))
5959 {
5960 case GPM_DRAG:
5961 string[3] = MOUSE_DRAG;
5962 break;
5963 case GPM_DOWN:
5964 buttons_mask = gpm_event.buttons & ~old_buttons;
5965 old_buttons = gpm_event.buttons;
5966 switch (buttons_mask)
5967 {
5968 case GPM_B_LEFT:
5969 button = MOUSE_LEFT;
5970 break;
5971 case GPM_B_MIDDLE:
5972 button = MOUSE_MIDDLE;
5973 break;
5974 case GPM_B_RIGHT:
5975 button = MOUSE_RIGHT;
5976 break;
5977 default:
5978 return 0;
5979 /*Don't know what to do. Can more than one button be
5980 * reported in one event? */
5981 }
5982 string[3] = (char_u)(button | 0x20);
5983 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5984 break;
5985 case GPM_UP:
5986 string[3] = MOUSE_RELEASE;
5987 old_buttons &= ~gpm_event.buttons;
5988 break;
5989 default:
5990 return 0;
5991 }
5992 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5993 gpm_modifiers = gpm_event.modifiers;
5994 vim_modifiers = 0x0;
5995 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5996 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5997 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5998 */
5999 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6000 vim_modifiers |= MOUSE_SHIFT;
6001
6002 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6003 vim_modifiers |= MOUSE_CTRL;
6004 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6005 vim_modifiers |= MOUSE_ALT;
6006 string[3] |= vim_modifiers;
6007 string[4] = (char_u)(col + ' ' + 1);
6008 string[5] = (char_u)(row + ' ' + 1);
6009 add_to_input_buf(string, 6);
6010 return 6;
6011}
6012#endif /* FEAT_MOUSE_GPM */
6013
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006014#ifdef FEAT_SYSMOUSE
6015/*
6016 * Initialize connection with sysmouse.
6017 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6018 * output, any sysmouse output than will be processed via sig_sysmouse().
6019 * Return OK if succeeded, FAIL if failed.
6020 */
6021 static int
6022sysmouse_open()
6023{
6024 struct mouse_info mouse;
6025
6026 mouse.operation = MOUSE_MODE;
6027 mouse.u.mode.mode = 0;
6028 mouse.u.mode.signal = SIGUSR2;
6029 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6030 {
6031 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6032 mouse.operation = MOUSE_SHOW;
6033 ioctl(1, CONS_MOUSECTL, &mouse);
6034 return OK;
6035 }
6036 return FAIL;
6037}
6038
6039/*
6040 * Stop processing SIGUSR2 signals, and also make sure that
6041 * virtual console do not send us any sysmouse related signal.
6042 */
6043 static void
6044sysmouse_close()
6045{
6046 struct mouse_info mouse;
6047
6048 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6049 mouse.operation = MOUSE_MODE;
6050 mouse.u.mode.mode = 0;
6051 mouse.u.mode.signal = 0;
6052 ioctl(1, CONS_MOUSECTL, &mouse);
6053}
6054
6055/*
6056 * Gets info from sysmouse and adds special keys to input buf.
6057 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006058 static RETSIGTYPE
6059sig_sysmouse SIGDEFARG(sigarg)
6060{
6061 struct mouse_info mouse;
6062 struct video_info video;
6063 char_u string[6];
6064 int row, col;
6065 int button;
6066 int buttons;
6067 static int oldbuttons = 0;
6068
6069#ifdef FEAT_GUI
6070 /* Don't put events in the input queue now. */
6071 if (hold_gui_events)
6072 return;
6073#endif
6074
6075 mouse.operation = MOUSE_GETINFO;
6076 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6077 && ioctl(1, FBIO_MODEINFO, &video) != -1
6078 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6079 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6080 {
6081 row = mouse.u.data.y / video.vi_cheight;
6082 col = mouse.u.data.x / video.vi_cwidth;
6083 buttons = mouse.u.data.buttons;
6084 string[0] = ESC; /* Our termcode */
6085 string[1] = 'M';
6086 string[2] = 'S';
6087 if (oldbuttons == buttons && buttons != 0)
6088 {
6089 button = MOUSE_DRAG;
6090 }
6091 else
6092 {
6093 switch (buttons)
6094 {
6095 case 0:
6096 button = MOUSE_RELEASE;
6097 break;
6098 case 1:
6099 button = MOUSE_LEFT;
6100 break;
6101 case 2:
6102 button = MOUSE_MIDDLE;
6103 break;
6104 case 4:
6105 button = MOUSE_RIGHT;
6106 break;
6107 default:
6108 return;
6109 }
6110 oldbuttons = buttons;
6111 }
6112 string[3] = (char_u)(button);
6113 string[4] = (char_u)(col + ' ' + 1);
6114 string[5] = (char_u)(row + ' ' + 1);
6115 add_to_input_buf(string, 6);
6116 }
6117 return;
6118}
6119#endif /* FEAT_SYSMOUSE */
6120
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121#if defined(FEAT_LIBCALL) || defined(PROTO)
6122typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6123typedef char_u * (*INTPROCSTR)__ARGS((int));
6124typedef int (*STRPROCINT)__ARGS((char_u *));
6125typedef int (*INTPROCINT)__ARGS((int));
6126
6127/*
6128 * Call a DLL routine which takes either a string or int param
6129 * and returns an allocated string.
6130 */
6131 int
6132mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6133 char_u *libname;
6134 char_u *funcname;
6135 char_u *argstring; /* NULL when using a argint */
6136 int argint;
6137 char_u **string_result;/* NULL when using number_result */
6138 int *number_result;
6139{
6140# if defined(USE_DLOPEN)
6141 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006142 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143# else
6144 shl_t hinstLib;
6145# endif
6146 STRPROCSTR ProcAdd;
6147 INTPROCSTR ProcAddI;
6148 char_u *retval_str = NULL;
6149 int retval_int = 0;
6150 int success = FALSE;
6151
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006152 /*
6153 * Get a handle to the DLL module.
6154 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006156 /* First clear any error, it's not cleared by the dlopen() call. */
6157 (void)dlerror();
6158
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 hinstLib = dlopen((char *)libname, RTLD_LAZY
6160# ifdef RTLD_LOCAL
6161 | RTLD_LOCAL
6162# endif
6163 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006164 if (hinstLib == NULL)
6165 {
6166 /* "dlerr" must be used before dlclose() */
6167 dlerr = (char *)dlerror();
6168 if (dlerr != NULL)
6169 EMSG2(_("dlerror = \"%s\""), dlerr);
6170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171# else
6172 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6173# endif
6174
6175 /* If the handle is valid, try to get the function address. */
6176 if (hinstLib != NULL)
6177 {
6178# ifdef HAVE_SETJMP_H
6179 /*
6180 * Catch a crash when calling the library function. For example when
6181 * using a number where a string pointer is expected.
6182 */
6183 mch_startjmp();
6184 if (SETJMP(lc_jump_env) != 0)
6185 {
6186 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006187# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006188 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006189# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 mch_didjmp();
6191 }
6192 else
6193# endif
6194 {
6195 retval_str = NULL;
6196 retval_int = 0;
6197
6198 if (argstring != NULL)
6199 {
6200# if defined(USE_DLOPEN)
6201 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006202 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203# else
6204 if (shl_findsym(&hinstLib, (const char *)funcname,
6205 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6206 ProcAdd = NULL;
6207# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006208 if ((success = (ProcAdd != NULL
6209# if defined(USE_DLOPEN)
6210 && dlerr == NULL
6211# endif
6212 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 {
6214 if (string_result == NULL)
6215 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6216 else
6217 retval_str = (ProcAdd)(argstring);
6218 }
6219 }
6220 else
6221 {
6222# if defined(USE_DLOPEN)
6223 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006224 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225# else
6226 if (shl_findsym(&hinstLib, (const char *)funcname,
6227 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6228 ProcAddI = NULL;
6229# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006230 if ((success = (ProcAddI != NULL
6231# if defined(USE_DLOPEN)
6232 && dlerr == NULL
6233# endif
6234 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235 {
6236 if (string_result == NULL)
6237 retval_int = ((INTPROCINT)ProcAddI)(argint);
6238 else
6239 retval_str = (ProcAddI)(argint);
6240 }
6241 }
6242
6243 /* Save the string before we free the library. */
6244 /* Assume that a "1" or "-1" result is an illegal pointer. */
6245 if (string_result == NULL)
6246 *number_result = retval_int;
6247 else if (retval_str != NULL
6248 && retval_str != (char_u *)1
6249 && retval_str != (char_u *)-1)
6250 *string_result = vim_strsave(retval_str);
6251 }
6252
6253# ifdef HAVE_SETJMP_H
6254 mch_endjmp();
6255# ifdef SIGHASARG
6256 if (lc_signal != 0)
6257 {
6258 int i;
6259
6260 /* try to find the name of this signal */
6261 for (i = 0; signal_info[i].sig != -1; i++)
6262 if (lc_signal == signal_info[i].sig)
6263 break;
6264 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6265 }
6266# endif
6267# endif
6268
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006270 /* "dlerr" must be used before dlclose() */
6271 if (dlerr != NULL)
6272 EMSG2(_("dlerror = \"%s\""), dlerr);
6273
6274 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 (void)dlclose(hinstLib);
6276# else
6277 (void)shl_unload(hinstLib);
6278# endif
6279 }
6280
6281 if (!success)
6282 {
6283 EMSG2(_(e_libcall), funcname);
6284 return FAIL;
6285 }
6286
6287 return OK;
6288}
6289#endif
6290
6291#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6292static int xterm_trace = -1; /* default: disabled */
6293static int xterm_button;
6294
6295/*
6296 * Setup a dummy window for X selections in a terminal.
6297 */
6298 void
6299setup_term_clip()
6300{
6301 int z = 0;
6302 char *strp = "";
6303 Widget AppShell;
6304
6305 if (!x_connect_to_server())
6306 return;
6307
6308 open_app_context();
6309 if (app_context != NULL && xterm_Shell == (Widget)0)
6310 {
6311 int (*oldhandler)();
6312#if defined(HAVE_SETJMP_H)
6313 int (*oldIOhandler)();
6314#endif
6315# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6316 struct timeval start_tv;
6317
6318 if (p_verbose > 0)
6319 gettimeofday(&start_tv, NULL);
6320# endif
6321
6322 /* Ignore X errors while opening the display */
6323 oldhandler = XSetErrorHandler(x_error_check);
6324
6325#if defined(HAVE_SETJMP_H)
6326 /* Ignore X IO errors while opening the display */
6327 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6328 mch_startjmp();
6329 if (SETJMP(lc_jump_env) != 0)
6330 {
6331 mch_didjmp();
6332 xterm_dpy = NULL;
6333 }
6334 else
6335#endif
6336 {
6337 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6338 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6339#if defined(HAVE_SETJMP_H)
6340 mch_endjmp();
6341#endif
6342 }
6343
6344#if defined(HAVE_SETJMP_H)
6345 /* Now handle X IO errors normally. */
6346 (void)XSetIOErrorHandler(oldIOhandler);
6347#endif
6348 /* Now handle X errors normally. */
6349 (void)XSetErrorHandler(oldhandler);
6350
6351 if (xterm_dpy == NULL)
6352 {
6353 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006354 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 return;
6356 }
6357
6358 /* Catch terminating error of the X server connection. */
6359 (void)XSetIOErrorHandler(x_IOerror_handler);
6360
6361# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6362 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006363 {
6364 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006366 verbose_leave();
6367 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368# endif
6369
6370 /* Create a Shell to make converters work. */
6371 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6372 applicationShellWidgetClass, xterm_dpy,
6373 NULL);
6374 if (AppShell == (Widget)0)
6375 return;
6376 xterm_Shell = XtVaCreatePopupShell("VIM",
6377 topLevelShellWidgetClass, AppShell,
6378 XtNmappedWhenManaged, 0,
6379 XtNwidth, 1,
6380 XtNheight, 1,
6381 NULL);
6382 if (xterm_Shell == (Widget)0)
6383 return;
6384
6385 x11_setup_atoms(xterm_dpy);
6386 if (x11_display == NULL)
6387 x11_display = xterm_dpy;
6388
6389 XtRealizeWidget(xterm_Shell);
6390 XSync(xterm_dpy, False);
6391 xterm_update();
6392 }
6393 if (xterm_Shell != (Widget)0)
6394 {
6395 clip_init(TRUE);
6396 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6397 x11_window = (Window)atol(strp);
6398 /* Check if $WINDOWID is valid. */
6399 if (test_x11_window(xterm_dpy) == FAIL)
6400 x11_window = 0;
6401 if (x11_window != 0)
6402 xterm_trace = 0;
6403 }
6404}
6405
6406 void
6407start_xterm_trace(button)
6408 int button;
6409{
6410 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6411 return;
6412 xterm_trace = 1;
6413 xterm_button = button;
6414 do_xterm_trace();
6415}
6416
6417
6418 void
6419stop_xterm_trace()
6420{
6421 if (xterm_trace < 0)
6422 return;
6423 xterm_trace = 0;
6424}
6425
6426/*
6427 * Query the xterm pointer and generate mouse termcodes if necessary
6428 * return TRUE if dragging is active, else FALSE
6429 */
6430 static int
6431do_xterm_trace()
6432{
6433 Window root, child;
6434 int root_x, root_y;
6435 int win_x, win_y;
6436 int row, col;
6437 int_u mask_return;
6438 char_u buf[50];
6439 char_u *strp;
6440 long got_hints;
6441 static char_u *mouse_code;
6442 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6443 static int prev_row = 0, prev_col = 0;
6444 static XSizeHints xterm_hints;
6445
6446 if (xterm_trace <= 0)
6447 return FALSE;
6448
6449 if (xterm_trace == 1)
6450 {
6451 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00006452 * have changed recently. */
6453 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6454 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 || xterm_hints.width_inc <= 1
6456 || xterm_hints.height_inc <= 1)
6457 {
6458 xterm_trace = -1; /* Not enough data -- disable tracing */
6459 return FALSE;
6460 }
6461
6462 /* Rely on the same mouse code for the duration of this */
6463 mouse_code = find_termcode(mouse_name);
6464 prev_row = mouse_row;
6465 prev_row = mouse_col;
6466 xterm_trace = 2;
6467
6468 /* Find the offset of the chars, there might be a scrollbar on the
6469 * left of the window and/or a menu on the top (eterm etc.) */
6470 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6471 &win_x, &win_y, &mask_return);
6472 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6473 - (xterm_hints.height_inc / 2);
6474 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6475 xterm_hints.y = 2;
6476 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6477 - (xterm_hints.width_inc / 2);
6478 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6479 xterm_hints.x = 2;
6480 return TRUE;
6481 }
6482 if (mouse_code == NULL)
6483 {
6484 xterm_trace = 0;
6485 return FALSE;
6486 }
6487
6488 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6489 &win_x, &win_y, &mask_return);
6490
6491 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6492 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6493 if (row == prev_row && col == prev_col)
6494 return TRUE;
6495
6496 STRCPY(buf, mouse_code);
6497 strp = buf + STRLEN(buf);
6498 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6499 *strp++ = (char_u)(col + ' ' + 1);
6500 *strp++ = (char_u)(row + ' ' + 1);
6501 *strp = 0;
6502 add_to_input_buf(buf, STRLEN(buf));
6503
6504 prev_row = row;
6505 prev_col = col;
6506 return TRUE;
6507}
6508
6509# if defined(FEAT_GUI) || defined(PROTO)
6510/*
6511 * Destroy the display, window and app_context. Required for GTK.
6512 */
6513 void
6514clear_xterm_clip()
6515{
6516 if (xterm_Shell != (Widget)0)
6517 {
6518 XtDestroyWidget(xterm_Shell);
6519 xterm_Shell = (Widget)0;
6520 }
6521 if (xterm_dpy != NULL)
6522 {
Bram Moolenaare8208012008-06-20 09:59:25 +00006523# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524 /* Lesstif and Solaris crash here, lose some memory */
6525 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00006526# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 if (x11_display == xterm_dpy)
6528 x11_display = NULL;
6529 xterm_dpy = NULL;
6530 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006531# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 if (app_context != (XtAppContext)NULL)
6533 {
6534 /* Lesstif and Solaris crash here, lose some memory */
6535 XtDestroyApplicationContext(app_context);
6536 app_context = (XtAppContext)NULL;
6537 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006538# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539}
6540# endif
6541
6542/*
6543 * Catch up with any queued X events. This may put keyboard input into the
6544 * input buffer, call resize call-backs, trigger timers etc. If there is
6545 * nothing in the X event queue (& no timers pending), then we return
6546 * immediately.
6547 */
6548 static void
6549xterm_update()
6550{
6551 XEvent event;
6552
6553 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6554 {
6555 XtAppNextEvent(app_context, &event);
6556#ifdef FEAT_CLIENTSERVER
6557 {
6558 XPropertyEvent *e = (XPropertyEvent *)&event;
6559
6560 if (e->type == PropertyNotify && e->window == commWindow
6561 && e->atom == commProperty && e->state == PropertyNewValue)
6562 serverEventProc(xterm_dpy, &event);
6563 }
6564#endif
6565 XtDispatchEvent(&event);
6566 }
6567}
6568
6569 int
6570clip_xterm_own_selection(cbd)
6571 VimClipboard *cbd;
6572{
6573 if (xterm_Shell != (Widget)0)
6574 return clip_x11_own_selection(xterm_Shell, cbd);
6575 return FAIL;
6576}
6577
6578 void
6579clip_xterm_lose_selection(cbd)
6580 VimClipboard *cbd;
6581{
6582 if (xterm_Shell != (Widget)0)
6583 clip_x11_lose_selection(xterm_Shell, cbd);
6584}
6585
6586 void
6587clip_xterm_request_selection(cbd)
6588 VimClipboard *cbd;
6589{
6590 if (xterm_Shell != (Widget)0)
6591 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6592}
6593
6594 void
6595clip_xterm_set_selection(cbd)
6596 VimClipboard *cbd;
6597{
6598 clip_x11_set_selection(cbd);
6599}
6600#endif
6601
6602
6603#if defined(USE_XSMP) || defined(PROTO)
6604/*
6605 * Code for X Session Management Protocol.
6606 */
6607static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6608static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6609static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6610static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6611static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6612
6613
6614# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6615static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6616
6617/*
6618 * This is our chance to ask the user if they want to save,
6619 * or abort the logout
6620 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 static void
6622xsmp_handle_interaction(smc_conn, client_data)
6623 SmcConn smc_conn;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006624 SmPointer client_data UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625{
6626 cmdmod_T save_cmdmod;
6627 int cancel_shutdown = False;
6628
6629 save_cmdmod = cmdmod;
6630 cmdmod.confirm = TRUE;
6631 if (check_changed_any(FALSE))
6632 /* Mustn't logout */
6633 cancel_shutdown = True;
6634 cmdmod = save_cmdmod;
6635 setcursor(); /* position cursor */
6636 out_flush();
6637
6638 /* Done interaction */
6639 SmcInteractDone(smc_conn, cancel_shutdown);
6640
6641 /* Finish off
6642 * Only end save-yourself here if we're not cancelling shutdown;
6643 * we'll get a cancelled callback later in which we'll end it.
6644 * Hopefully get around glitchy SMs (like GNOME-1)
6645 */
6646 if (!cancel_shutdown)
6647 {
6648 xsmp.save_yourself = False;
6649 SmcSaveYourselfDone(smc_conn, True);
6650 }
6651}
6652# endif
6653
6654/*
6655 * Callback that starts save-yourself.
6656 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 static void
6658xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6659 shutdown, interact_style, fast)
6660 SmcConn smc_conn;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006661 SmPointer client_data UNUSED;
6662 int save_type UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 Bool shutdown;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006664 int interact_style UNUSED;
6665 Bool fast UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666{
6667 /* Handle already being in saveyourself */
6668 if (xsmp.save_yourself)
6669 SmcSaveYourselfDone(smc_conn, True);
6670 xsmp.save_yourself = True;
6671 xsmp.shutdown = shutdown;
6672
6673 /* First up, preserve all files */
6674 out_flush();
6675 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6676
6677 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006678 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679
6680# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6681 /* Now see if we can ask about unsaved files */
6682 if (shutdown && !fast && gui.in_use)
6683 /* Need to interact with user, but need SM's permission */
6684 SmcInteractRequest(smc_conn, SmDialogError,
6685 xsmp_handle_interaction, client_data);
6686 else
6687# endif
6688 {
6689 /* Can stop the cycle here */
6690 SmcSaveYourselfDone(smc_conn, True);
6691 xsmp.save_yourself = False;
6692 }
6693}
6694
6695
6696/*
6697 * Callback to warn us of imminent death.
6698 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 static void
6700xsmp_die(smc_conn, client_data)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006701 SmcConn smc_conn UNUSED;
6702 SmPointer client_data UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703{
6704 xsmp_close();
6705
6706 /* quit quickly leaving swapfiles for modified buffers behind */
6707 getout_preserve_modified(0);
6708}
6709
6710
6711/*
6712 * Callback to tell us that save-yourself has completed.
6713 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 static void
6715xsmp_save_complete(smc_conn, client_data)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006716 SmcConn smc_conn UNUSED;
6717 SmPointer client_data UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718{
6719 xsmp.save_yourself = False;
6720}
6721
6722
6723/*
6724 * Callback to tell us that an instigated shutdown was cancelled
6725 * (maybe even by us)
6726 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 static void
6728xsmp_shutdown_cancelled(smc_conn, client_data)
6729 SmcConn smc_conn;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006730 SmPointer client_data UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731{
6732 if (xsmp.save_yourself)
6733 SmcSaveYourselfDone(smc_conn, True);
6734 xsmp.save_yourself = False;
6735 xsmp.shutdown = False;
6736}
6737
6738
6739/*
6740 * Callback to tell us that a new ICE connection has been established.
6741 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742 static void
6743xsmp_ice_connection(iceConn, clientData, opening, watchData)
6744 IceConn iceConn;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006745 IcePointer clientData UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 Bool opening;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00006747 IcePointer *watchData UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748{
6749 /* Intercept creation of ICE connection fd */
6750 if (opening)
6751 {
6752 xsmp_icefd = IceConnectionNumber(iceConn);
6753 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6754 }
6755}
6756
6757
6758/* Handle any ICE processing that's required; return FAIL if SM lost */
6759 int
6760xsmp_handle_requests()
6761{
6762 Bool rep;
6763
6764 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6765 == IceProcessMessagesIOError)
6766 {
6767 /* Lost ICE */
6768 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006769 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 xsmp_close();
6771 return FAIL;
6772 }
6773 else
6774 return OK;
6775}
6776
6777static int dummy;
6778
6779/* Set up X Session Management Protocol */
6780 void
6781xsmp_init(void)
6782{
6783 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784 SmcCallbacks smcallbacks;
6785#if 0
6786 SmPropValue smname;
6787 SmProp smnameprop;
6788 SmProp *smprops[1];
6789#endif
6790
6791 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006792 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793
6794 xsmp.save_yourself = xsmp.shutdown = False;
6795
6796 /* Set up SM callbacks - must have all, even if they're not used */
6797 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6798 smcallbacks.save_yourself.client_data = NULL;
6799 smcallbacks.die.callback = xsmp_die;
6800 smcallbacks.die.client_data = NULL;
6801 smcallbacks.save_complete.callback = xsmp_save_complete;
6802 smcallbacks.save_complete.client_data = NULL;
6803 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6804 smcallbacks.shutdown_cancelled.client_data = NULL;
6805
6806 /* Set up a watch on ICE connection creations. The "dummy" argument is
6807 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6808 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6809 {
6810 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006811 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 return;
6813 }
6814
6815 /* Create an SM connection */
6816 xsmp.smcconn = SmcOpenConnection(
6817 NULL,
6818 NULL,
6819 SmProtoMajor,
6820 SmProtoMinor,
6821 SmcSaveYourselfProcMask | SmcDieProcMask
6822 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6823 &smcallbacks,
6824 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00006825 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 sizeof(errorstring),
6827 errorstring);
6828 if (xsmp.smcconn == NULL)
6829 {
6830 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00006831
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006833 {
6834 vim_snprintf(errorreport, sizeof(errorreport),
6835 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6836 verb_msg((char_u *)errorreport);
6837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 return;
6839 }
6840 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6841
6842#if 0
6843 /* ID ourselves */
6844 smname.value = "vim";
6845 smname.length = 3;
6846 smnameprop.name = "SmProgram";
6847 smnameprop.type = "SmARRAY8";
6848 smnameprop.num_vals = 1;
6849 smnameprop.vals = &smname;
6850
6851 smprops[0] = &smnameprop;
6852 SmcSetProperties(xsmp.smcconn, 1, smprops);
6853#endif
6854}
6855
6856
6857/* Shut down XSMP comms. */
6858 void
6859xsmp_close()
6860{
6861 if (xsmp_icefd != -1)
6862 {
6863 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00006864 if (xsmp.clientid != NULL)
6865 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00006866 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 xsmp_icefd = -1;
6868 }
6869}
6870#endif /* USE_XSMP */
6871
6872
6873#ifdef EBCDIC
6874/* Translate character to its CTRL- value */
6875char CtrlTable[] =
6876{
6877/* 00 - 5E */
6878 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6881 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6882 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6883 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6884/* ^ */ 0x1E,
6885/* - */ 0x1F,
6886/* 61 - 6C */
6887 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6888/* _ */ 0x1F,
6889/* 6E - 80 */
6890 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6891/* a */ 0x01,
6892/* b */ 0x02,
6893/* c */ 0x03,
6894/* d */ 0x37,
6895/* e */ 0x2D,
6896/* f */ 0x2E,
6897/* g */ 0x2F,
6898/* h */ 0x16,
6899/* i */ 0x05,
6900/* 8A - 90 */
6901 0, 0, 0, 0, 0, 0, 0,
6902/* j */ 0x15,
6903/* k */ 0x0B,
6904/* l */ 0x0C,
6905/* m */ 0x0D,
6906/* n */ 0x0E,
6907/* o */ 0x0F,
6908/* p */ 0x10,
6909/* q */ 0x11,
6910/* r */ 0x12,
6911/* 9A - A1 */
6912 0, 0, 0, 0, 0, 0, 0, 0,
6913/* s */ 0x13,
6914/* t */ 0x3C,
6915/* u */ 0x3D,
6916/* v */ 0x32,
6917/* w */ 0x26,
6918/* x */ 0x18,
6919/* y */ 0x19,
6920/* z */ 0x3F,
6921/* AA - AC */
6922 0, 0, 0,
6923/* [ */ 0x27,
6924/* AE - BC */
6925 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6926/* ] */ 0x1D,
6927/* BE - C0 */ 0, 0, 0,
6928/* A */ 0x01,
6929/* B */ 0x02,
6930/* C */ 0x03,
6931/* D */ 0x37,
6932/* E */ 0x2D,
6933/* F */ 0x2E,
6934/* G */ 0x2F,
6935/* H */ 0x16,
6936/* I */ 0x05,
6937/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6938/* J */ 0x15,
6939/* K */ 0x0B,
6940/* L */ 0x0C,
6941/* M */ 0x0D,
6942/* N */ 0x0E,
6943/* O */ 0x0F,
6944/* P */ 0x10,
6945/* Q */ 0x11,
6946/* R */ 0x12,
6947/* DA - DF */ 0, 0, 0, 0, 0, 0,
6948/* \ */ 0x1C,
6949/* E1 */ 0,
6950/* S */ 0x13,
6951/* T */ 0x3C,
6952/* U */ 0x3D,
6953/* V */ 0x32,
6954/* W */ 0x26,
6955/* X */ 0x18,
6956/* Y */ 0x19,
6957/* Z */ 0x3F,
6958/* EA - FF*/ 0, 0, 0, 0, 0, 0,
6959 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6960};
6961
6962char MetaCharTable[]=
6963{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6964 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6965 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6966 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6967 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6968};
6969
6970
6971/* TODO: Use characters NOT numbers!!! */
6972char CtrlCharTable[]=
6973{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6974 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6975 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6976 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6977 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6978};
6979
6980
6981#endif