blob: 4b0f8735972584234b2f1ac50258943366d8d0fc [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)
824/* ARGSUSED */
825 static RETSIGTYPE
826catch_sigint SIGDEFARG(sigarg)
827{
828 /* this is not required on all systems, but it doesn't hurt anybody */
829 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
830 got_int = TRUE;
831 SIGRETURN;
832}
833#endif
834
835#if defined(SIGPWR)
836/* ARGSUSED */
837 static RETSIGTYPE
838catch_sigpwr SIGDEFARG(sigarg)
839{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000840 /* this is not required on all systems, but it doesn't hurt anybody */
841 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 /*
843 * I'm not sure we get the SIGPWR signal when the system is really going
844 * down or when the batteries are almost empty. Just preserve the swap
845 * files and don't exit, that can't do any harm.
846 */
847 ml_sync_all(FALSE, FALSE);
848 SIGRETURN;
849}
850#endif
851
852#ifdef SET_SIG_ALARM
853/*
854 * signal function for alarm().
855 */
856/* ARGSUSED */
857 static RETSIGTYPE
858sig_alarm SIGDEFARG(sigarg)
859{
860 /* doesn't do anything, just to break a system call */
861 sig_alarm_called = TRUE;
862 SIGRETURN;
863}
864#endif
865
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000866#if (defined(HAVE_SETJMP_H) \
867 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
868 || defined(FEAT_LIBCALL))) \
869 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870/*
871 * A simplistic version of setjmp() that only allows one level of using.
872 * Don't call twice before calling mch_endjmp()!.
873 * Usage:
874 * mch_startjmp();
875 * if (SETJMP(lc_jump_env) != 0)
876 * {
877 * mch_didjmp();
878 * EMSG("crash!");
879 * }
880 * else
881 * {
882 * do_the_work;
883 * mch_endjmp();
884 * }
885 * Note: Can't move SETJMP() here, because a function calling setjmp() must
886 * not return before the saved environment is used.
887 * Returns OK for normal return, FAIL when the protected code caused a
888 * problem and LONGJMP() was used.
889 */
890 void
891mch_startjmp()
892{
893#ifdef SIGHASARG
894 lc_signal = 0;
895#endif
896 lc_active = TRUE;
897}
898
899 void
900mch_endjmp()
901{
902 lc_active = FALSE;
903}
904
905 void
906mch_didjmp()
907{
908# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
909 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
910 * otherwise catching the signal only works once. */
911 init_signal_stack();
912# endif
913}
914#endif
915
916/*
917 * This function handles deadly signals.
918 * It tries to preserve any swap file and exit properly.
919 * (partly from Elvis).
920 */
921 static RETSIGTYPE
922deathtrap SIGDEFARG(sigarg)
923{
924 static int entered = 0; /* count the number of times we got here.
925 Note: when memory has been corrupted
926 this may get an arbitrary value! */
927#ifdef SIGHASARG
928 int i;
929#endif
930
931#if defined(HAVE_SETJMP_H)
932 /*
933 * Catch a crash in protected code.
934 * Restores the environment saved in lc_jump_env, which looks like
935 * SETJMP() returns 1.
936 */
937 if (lc_active)
938 {
939# if defined(SIGHASARG)
940 lc_signal = sigarg;
941# endif
942 lc_active = FALSE; /* don't jump again */
943 LONGJMP(lc_jump_env, 1);
944 /* NOTREACHED */
945 }
946#endif
947
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000948#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000949# ifdef SIGQUIT
950 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
951 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
952 * pressing CTRL-\, but we don't want Vim to exit then. */
953 if (in_mch_delay && sigarg == SIGQUIT)
954 SIGRETURN;
955# endif
956
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000957 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
958 * here. This avoids that a non-reentrant function is interrupted, e.g.,
959 * free(). Calling free() again may then cause a crash. */
960 if (entered == 0
961 && (0
962# ifdef SIGHUP
963 || sigarg == SIGHUP
964# endif
965# ifdef SIGQUIT
966 || sigarg == SIGQUIT
967# endif
968# ifdef SIGTERM
969 || sigarg == SIGTERM
970# endif
971# ifdef SIGPWR
972 || sigarg == SIGPWR
973# endif
974# ifdef SIGUSR1
975 || sigarg == SIGUSR1
976# endif
977# ifdef SIGUSR2
978 || sigarg == SIGUSR2
979# endif
980 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +0000981 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000982 SIGRETURN;
983#endif
984
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 /* Remember how often we have been called. */
986 ++entered;
987
988#ifdef FEAT_EVAL
989 /* Set the v:dying variable. */
990 set_vim_var_nr(VV_DYING, (long)entered);
991#endif
992
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000993#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 /* Since we are now using the signal stack, need to reset the stack
995 * limit. Otherwise using a regexp will fail. */
996 get_stack_limit();
997#endif
998
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000999#if 0
1000 /* This is for opening gdb the moment Vim crashes.
1001 * You need to manually adjust the file name and Vim executable name.
1002 * Suggested by SungHyun Nam. */
1003 {
1004# define VI_GDB_FILE "/tmp/vimgdb"
1005# define VIM_NAME "/usr/bin/vim"
1006 FILE *fp = fopen(VI_GDB_FILE, "w");
1007 if (fp)
1008 {
1009 fprintf(fp,
1010 "file %s\n"
1011 "attach %d\n"
1012 "set height 1000\n"
1013 "bt full\n"
1014 , VIM_NAME, getpid());
1015 fclose(fp);
1016 system("xterm -e gdb -x "VI_GDB_FILE);
1017 unlink(VI_GDB_FILE);
1018 }
1019 }
1020#endif
1021
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022#ifdef SIGHASARG
1023 /* try to find the name of this signal */
1024 for (i = 0; signal_info[i].sig != -1; i++)
1025 if (sigarg == signal_info[i].sig)
1026 break;
1027 deadly_signal = sigarg;
1028#endif
1029
1030 full_screen = FALSE; /* don't write message to the GUI, it might be
1031 * part of the problem... */
1032 /*
1033 * If something goes wrong after entering here, we may get here again.
1034 * When this happens, give a message and try to exit nicely (resetting the
1035 * terminal mode, etc.)
1036 * When this happens twice, just exit, don't even try to give a message,
1037 * stack may be corrupt or something weird.
1038 * When this still happens again (or memory was corrupted in such a way
1039 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1040 */
1041 if (entered >= 3)
1042 {
1043 reset_signals(); /* don't catch any signals anymore */
1044 may_core_dump();
1045 if (entered >= 4)
1046 _exit(8);
1047 exit(7);
1048 }
1049 if (entered == 2)
1050 {
1051 OUT_STR(_("Vim: Double signal, exiting\n"));
1052 out_flush();
1053 getout(1);
1054 }
1055
1056#ifdef SIGHASARG
1057 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1058 signal_info[i].name);
1059#else
1060 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1061#endif
1062 preserve_exit(); /* preserve files and exit */
1063
Bram Moolenaar009b2592004-10-24 19:18:58 +00001064#ifdef NBDEBUG
1065 reset_signals();
1066 may_core_dump();
1067 abort();
1068#endif
1069
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 SIGRETURN;
1071}
1072
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001073#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074/*
1075 * On Solaris with multi-threading, suspending might not work immediately.
1076 * Catch the SIGCONT signal, which will be used as an indication whether the
1077 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001078 *
1079 * On Linux, signal is not always handled immediately either.
1080 * See https://bugs.launchpad.net/bugs/291373
1081 *
1082 * volatile because it is used in in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001084static volatile int sigcont_received;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1086
1087/*
1088 * signal handler for SIGCONT
1089 */
1090/* ARGSUSED */
1091 static RETSIGTYPE
1092sigcont_handler SIGDEFARG(sigarg)
1093{
1094 sigcont_received = TRUE;
1095 SIGRETURN;
1096}
1097#endif
1098
1099/*
1100 * If the machine has job control, use it to suspend the program,
1101 * otherwise fake it by starting a new shell.
1102 */
1103 void
1104mch_suspend()
1105{
1106 /* BeOS does have SIGTSTP, but it doesn't work. */
1107#if defined(SIGTSTP) && !defined(__BEOS__)
1108 out_flush(); /* needed to make cursor visible on some systems */
1109 settmode(TMODE_COOK);
1110 out_flush(); /* needed to disable mouse on some systems */
1111
1112# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1113 /* Since we are going to sleep, we can't respond to requests for the X
1114 * selections. Lose them, otherwise other applications will hang. But
1115 * first copy the text to cut buffer 0. */
1116 if (clip_star.owned || clip_plus.owned)
1117 {
1118 x11_export_final_selection();
1119 if (clip_star.owned)
1120 clip_lose_selection(&clip_star);
1121 if (clip_plus.owned)
1122 clip_lose_selection(&clip_plus);
1123 if (x11_display != NULL)
1124 XFlush(x11_display);
1125 }
1126# endif
1127
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001128# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 sigcont_received = FALSE;
1130# endif
1131 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001132# if defined(_REENTRANT) && defined(SIGCONT)
1133 /*
1134 * Wait for the SIGCONT signal to be handled. It generally happens
1135 * immediately, but somehow not all the time. Do not call pause()
1136 * because there would be race condition which would hang Vim if
1137 * signal happened in between the test of sigcont_received and the
1138 * call to pause(). If signal is not yet received, call sleep(0)
1139 * to just yield CPU. Signal should then be received. If somehow
1140 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1141 * further if signal is not received after 1+2+3+4 ms (not expected
1142 * to happen).
1143 */
1144 {
1145 long wait;
1146 for (wait = 0; !sigcont_received && wait <= 3L; wait++)
1147 /* Loop is not entered most of the time */
1148 mch_delay(wait, FALSE);
1149 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150# endif
1151
1152# ifdef FEAT_TITLE
1153 /*
1154 * Set oldtitle to NULL, so the current title is obtained again.
1155 */
1156 vim_free(oldtitle);
1157 oldtitle = NULL;
1158# endif
1159 settmode(TMODE_RAW);
1160 need_check_timestamps = TRUE;
1161 did_check_timestamps = FALSE;
1162#else
1163 suspend_shell();
1164#endif
1165}
1166
1167 void
1168mch_init()
1169{
1170 Columns = 80;
1171 Rows = 24;
1172
1173 out_flush();
1174 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001175
Bram Moolenaar56718732006-03-15 22:53:57 +00001176#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001177 mac_conv_init();
1178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179}
1180
1181 static void
1182set_signals()
1183{
1184#if defined(SIGWINCH)
1185 /*
1186 * WINDOW CHANGE signal is handled with sig_winch().
1187 */
1188 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1189#endif
1190
1191 /*
1192 * We want the STOP signal to work, to make mch_suspend() work.
1193 * For "rvim" the STOP signal is ignored.
1194 */
1195#ifdef SIGTSTP
1196 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1197#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001198#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 signal(SIGCONT, sigcont_handler);
1200#endif
1201
1202 /*
1203 * We want to ignore breaking of PIPEs.
1204 */
1205#ifdef SIGPIPE
1206 signal(SIGPIPE, SIG_IGN);
1207#endif
1208
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001210 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211#endif
1212
1213 /*
1214 * Ignore alarm signals (Perl's alarm() generates it).
1215 */
1216#ifdef SIGALRM
1217 signal(SIGALRM, SIG_IGN);
1218#endif
1219
1220 /*
1221 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1222 * work will be lost.
1223 */
1224#ifdef SIGPWR
1225 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1226#endif
1227
1228 /*
1229 * Arrange for other signals to gracefully shutdown Vim.
1230 */
1231 catch_signals(deathtrap, SIG_ERR);
1232
1233#if defined(FEAT_GUI) && defined(SIGHUP)
1234 /*
1235 * When the GUI is running, ignore the hangup signal.
1236 */
1237 if (gui.in_use)
1238 signal(SIGHUP, SIG_IGN);
1239#endif
1240}
1241
Bram Moolenaardf177f62005-02-22 08:39:57 +00001242#if defined(SIGINT) || defined(PROTO)
1243/*
1244 * Catch CTRL-C (only works while in Cooked mode).
1245 */
1246 static void
1247catch_int_signal()
1248{
1249 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1250}
1251#endif
1252
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 void
1254reset_signals()
1255{
1256 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001257#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 /* SIGCONT isn't in the list, because its default action is ignore */
1259 signal(SIGCONT, SIG_DFL);
1260#endif
1261}
1262
1263 static void
1264catch_signals(func_deadly, func_other)
1265 RETSIGTYPE (*func_deadly)();
1266 RETSIGTYPE (*func_other)();
1267{
1268 int i;
1269
1270 for (i = 0; signal_info[i].sig != -1; i++)
1271 if (signal_info[i].deadly)
1272 {
1273#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1274 struct sigaction sa;
1275
1276 /* Setup to use the alternate stack for the signal function. */
1277 sa.sa_handler = func_deadly;
1278 sigemptyset(&sa.sa_mask);
1279# if defined(__linux__) && defined(_REENTRANT)
1280 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1281 * thread handling in combination with using the alternate stack:
1282 * pthread library functions try to use the stack pointer to
1283 * identify the current thread, causing a SEGV signal, which
1284 * recursively calls deathtrap() and hangs. */
1285 sa.sa_flags = 0;
1286# else
1287 sa.sa_flags = SA_ONSTACK;
1288# endif
1289 sigaction(signal_info[i].sig, &sa, NULL);
1290#else
1291# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1292 struct sigvec sv;
1293
1294 /* Setup to use the alternate stack for the signal function. */
1295 sv.sv_handler = func_deadly;
1296 sv.sv_mask = 0;
1297 sv.sv_flags = SV_ONSTACK;
1298 sigvec(signal_info[i].sig, &sv, NULL);
1299# else
1300 signal(signal_info[i].sig, func_deadly);
1301# endif
1302#endif
1303 }
1304 else if (func_other != SIG_ERR)
1305 signal(signal_info[i].sig, func_other);
1306}
1307
1308/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001309 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001310 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1311 * return TRUE
1312 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1313 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1314 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001315 * Returns TRUE when Vim should exit.
1316 */
1317 int
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001318vim_handle_signal(sig)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001319 int sig;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001320{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001321 static int got_signal = 0;
1322 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001323
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001324 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001325 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001326 case SIGNAL_BLOCK: blocked = TRUE;
1327 break;
1328
1329 case SIGNAL_UNBLOCK: blocked = FALSE;
1330 if (got_signal != 0)
1331 {
1332 kill(getpid(), got_signal);
1333 got_signal = 0;
1334 }
1335 break;
1336
1337 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001338 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001339 got_signal = sig;
1340#ifdef SIGPWR
1341 if (sig != SIGPWR)
1342#endif
1343 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001344 break;
1345 }
1346 return FALSE;
1347}
1348
1349/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 * Check_win checks whether we have an interactive stdout.
1351 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 int
1353mch_check_win(argc, argv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001354 int argc UNUSED;
1355 char **argv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356{
1357#ifdef OS2
1358 /*
1359 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1360 * name, mostly it's just "vim" and found in the path, which is unusable.
1361 */
1362 if (mch_isFullName(argv[0]))
1363 exe_name = vim_strsave((char_u *)argv[0]);
1364#endif
1365 if (isatty(1))
1366 return OK;
1367 return FAIL;
1368}
1369
1370/*
1371 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1372 */
1373 int
1374mch_input_isatty()
1375{
1376 if (isatty(read_cmd_fd))
1377 return TRUE;
1378 return FALSE;
1379}
1380
1381#ifdef FEAT_X11
1382
1383# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1384 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1385
1386static void xopen_message __ARGS((struct timeval *tvp));
1387
1388/*
1389 * Give a message about the elapsed time for opening the X window.
1390 */
1391 static void
1392xopen_message(tvp)
1393 struct timeval *tvp; /* must contain start time */
1394{
1395 struct timeval end_tv;
1396
1397 /* Compute elapsed time. */
1398 gettimeofday(&end_tv, NULL);
1399 smsg((char_u *)_("Opening the X display took %ld msec"),
1400 (end_tv.tv_sec - tvp->tv_sec) * 1000L
Bram Moolenaar051b7822005-05-19 21:00:46 +00001401 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402}
1403# endif
1404#endif
1405
1406#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1407/*
1408 * A few functions shared by X11 title and clipboard code.
1409 */
1410static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1411static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1412static int x_connect_to_server __ARGS((void));
1413static int test_x11_window __ARGS((Display *dpy));
1414
1415static int got_x_error = FALSE;
1416
1417/*
1418 * X Error handler, otherwise X just exits! (very rude) -- webb
1419 */
1420 static int
1421x_error_handler(dpy, error_event)
1422 Display *dpy;
1423 XErrorEvent *error_event;
1424{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001425 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 STRCAT(IObuff, _("\nVim: Got X error\n"));
1427
1428 /* We cannot print a message and continue, because no X calls are allowed
1429 * here (causes my system to hang). Silently continuing might be an
1430 * alternative... */
1431 preserve_exit(); /* preserve files and exit */
1432
1433 return 0; /* NOTREACHED */
1434}
1435
1436/*
1437 * Another X Error handler, just used to check for errors.
1438 */
1439/* ARGSUSED */
1440 static int
1441x_error_check(dpy, error_event)
1442 Display *dpy;
1443 XErrorEvent *error_event;
1444{
1445 got_x_error = TRUE;
1446 return 0;
1447}
1448
1449#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1450# if defined(HAVE_SETJMP_H)
1451/*
1452 * An X IO Error handler, used to catch error while opening the display.
1453 */
1454static int x_IOerror_check __ARGS((Display *dpy));
1455
1456/* ARGSUSED */
1457 static int
1458x_IOerror_check(dpy)
1459 Display *dpy;
1460{
1461 /* This function should not return, it causes exit(). Longjump instead. */
1462 LONGJMP(lc_jump_env, 1);
1463 /*NOTREACHED*/
1464 return 0;
1465}
1466# endif
1467
1468/*
1469 * An X IO Error handler, used to catch terminal errors.
1470 */
1471static int x_IOerror_handler __ARGS((Display *dpy));
1472
1473/* ARGSUSED */
1474 static int
1475x_IOerror_handler(dpy)
1476 Display *dpy;
1477{
1478 xterm_dpy = NULL;
1479 x11_window = 0;
1480 x11_display = NULL;
1481 xterm_Shell = (Widget)0;
1482
1483 /* This function should not return, it causes exit(). Longjump instead. */
1484 LONGJMP(x_jump_env, 1);
1485 /*NOTREACHED*/
1486 return 0;
1487}
1488#endif
1489
1490/*
1491 * Return TRUE when connection to the X server is desired.
1492 */
1493 static int
1494x_connect_to_server()
1495{
1496 regmatch_T regmatch;
1497
1498#if defined(FEAT_CLIENTSERVER)
1499 if (x_force_connect)
1500 return TRUE;
1501#endif
1502 if (x_no_connect)
1503 return FALSE;
1504
1505 /* Check for a match with "exclude:" from 'clipboard'. */
1506 if (clip_exclude_prog != NULL)
1507 {
1508 regmatch.rm_ic = FALSE; /* Don't ignore case */
1509 regmatch.regprog = clip_exclude_prog;
1510 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1511 return FALSE;
1512 }
1513 return TRUE;
1514}
1515
1516/*
1517 * Test if "dpy" and x11_window are valid by getting the window title.
1518 * I don't actually want it yet, so there may be a simpler call to use, but
1519 * this will cause the error handler x_error_check() to be called if anything
1520 * is wrong, such as the window pointer being invalid (as can happen when the
1521 * user changes his DISPLAY, but not his WINDOWID) -- webb
1522 */
1523 static int
1524test_x11_window(dpy)
1525 Display *dpy;
1526{
1527 int (*old_handler)();
1528 XTextProperty text_prop;
1529
1530 old_handler = XSetErrorHandler(x_error_check);
1531 got_x_error = FALSE;
1532 if (XGetWMName(dpy, x11_window, &text_prop))
1533 XFree((void *)text_prop.value);
1534 XSync(dpy, False);
1535 (void)XSetErrorHandler(old_handler);
1536
1537 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001538 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539
1540 return (got_x_error ? FAIL : OK);
1541}
1542#endif
1543
1544#ifdef FEAT_TITLE
1545
1546#ifdef FEAT_X11
1547
1548static int get_x11_thing __ARGS((int get_title, int test_only));
1549
1550/*
1551 * try to get x11 window and display
1552 *
1553 * return FAIL for failure, OK otherwise
1554 */
1555 static int
1556get_x11_windis()
1557{
1558 char *winid;
1559 static int result = -1;
1560#define XD_NONE 0 /* x11_display not set here */
1561#define XD_HERE 1 /* x11_display opened here */
1562#define XD_GUI 2 /* x11_display used from gui.dpy */
1563#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1564 static int x11_display_from = XD_NONE;
1565 static int did_set_error_handler = FALSE;
1566
1567 if (!did_set_error_handler)
1568 {
1569 /* X just exits if it finds an error otherwise! */
1570 (void)XSetErrorHandler(x_error_handler);
1571 did_set_error_handler = TRUE;
1572 }
1573
Bram Moolenaar9372a112005-12-06 19:59:18 +00001574#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 if (gui.in_use)
1576 {
1577 /*
1578 * If the X11 display was opened here before, for the window where Vim
1579 * was started, close that one now to avoid a memory leak.
1580 */
1581 if (x11_display_from == XD_HERE && x11_display != NULL)
1582 {
1583 XCloseDisplay(x11_display);
1584 x11_display_from = XD_NONE;
1585 }
1586 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1587 {
1588 x11_display_from = XD_GUI;
1589 return OK;
1590 }
1591 x11_display = NULL;
1592 return FAIL;
1593 }
1594 else if (x11_display_from == XD_GUI)
1595 {
1596 /* GUI must have stopped somehow, clear x11_display */
1597 x11_window = 0;
1598 x11_display = NULL;
1599 x11_display_from = XD_NONE;
1600 }
1601#endif
1602
1603 /* When started with the "-X" argument, don't try connecting. */
1604 if (!x_connect_to_server())
1605 return FAIL;
1606
1607 /*
1608 * If WINDOWID not set, should try another method to find out
1609 * what the current window number is. The only code I know for
1610 * this is very complicated.
1611 * We assume that zero is invalid for WINDOWID.
1612 */
1613 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1614 x11_window = (Window)atol(winid);
1615
1616#ifdef FEAT_XCLIPBOARD
1617 if (xterm_dpy != NULL && x11_window != 0)
1618 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001619 /* We may have checked it already, but Gnome terminal can move us to
1620 * another window, so we need to check every time. */
1621 if (x11_display_from != XD_XTERM)
1622 {
1623 /*
1624 * If the X11 display was opened here before, for the window where
1625 * Vim was started, close that one now to avoid a memory leak.
1626 */
1627 if (x11_display_from == XD_HERE && x11_display != NULL)
1628 XCloseDisplay(x11_display);
1629 x11_display = xterm_dpy;
1630 x11_display_from = XD_XTERM;
1631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 if (test_x11_window(x11_display) == FAIL)
1633 {
1634 /* probably bad $WINDOWID */
1635 x11_window = 0;
1636 x11_display = NULL;
1637 x11_display_from = XD_NONE;
1638 return FAIL;
1639 }
1640 return OK;
1641 }
1642#endif
1643
1644 if (x11_window == 0 || x11_display == NULL)
1645 result = -1;
1646
1647 if (result != -1) /* Have already been here and set this */
1648 return result; /* Don't do all these X calls again */
1649
1650 if (x11_window != 0 && x11_display == NULL)
1651 {
1652#ifdef SET_SIG_ALARM
1653 RETSIGTYPE (*sig_save)();
1654#endif
1655#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1656 struct timeval start_tv;
1657
1658 if (p_verbose > 0)
1659 gettimeofday(&start_tv, NULL);
1660#endif
1661
1662#ifdef SET_SIG_ALARM
1663 /*
1664 * Opening the Display may hang if the DISPLAY setting is wrong, or
1665 * the network connection is bad. Set an alarm timer to get out.
1666 */
1667 sig_alarm_called = FALSE;
1668 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1669 (RETSIGTYPE (*)())sig_alarm);
1670 alarm(2);
1671#endif
1672 x11_display = XOpenDisplay(NULL);
1673
1674#ifdef SET_SIG_ALARM
1675 alarm(0);
1676 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1677 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001678 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679#endif
1680 if (x11_display != NULL)
1681 {
1682# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1683 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001684 {
1685 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001687 verbose_leave();
1688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689# endif
1690 if (test_x11_window(x11_display) == FAIL)
1691 {
1692 /* Maybe window id is bad */
1693 x11_window = 0;
1694 XCloseDisplay(x11_display);
1695 x11_display = NULL;
1696 }
1697 else
1698 x11_display_from = XD_HERE;
1699 }
1700 }
1701 if (x11_window == 0 || x11_display == NULL)
1702 return (result = FAIL);
1703 return (result = OK);
1704}
1705
1706/*
1707 * Determine original x11 Window Title
1708 */
1709 static int
1710get_x11_title(test_only)
1711 int test_only;
1712{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001713 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714}
1715
1716/*
1717 * Determine original x11 Window icon
1718 */
1719 static int
1720get_x11_icon(test_only)
1721 int test_only;
1722{
1723 int retval = FALSE;
1724
1725 retval = get_x11_thing(FALSE, test_only);
1726
1727 /* could not get old icon, use terminal name */
1728 if (oldicon == NULL && !test_only)
1729 {
1730 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1731 oldicon = T_NAME + 8;
1732 else
1733 oldicon = T_NAME;
1734 }
1735
1736 return retval;
1737}
1738
1739 static int
1740get_x11_thing(get_title, test_only)
1741 int get_title; /* get title string */
1742 int test_only;
1743{
1744 XTextProperty text_prop;
1745 int retval = FALSE;
1746 Status status;
1747
1748 if (get_x11_windis() == OK)
1749 {
1750 /* Get window/icon name if any */
1751 if (get_title)
1752 status = XGetWMName(x11_display, x11_window, &text_prop);
1753 else
1754 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1755
1756 /*
1757 * If terminal is xterm, then x11_window may be a child window of the
1758 * outer xterm window that actually contains the window/icon name, so
1759 * keep traversing up the tree until a window with a title/icon is
1760 * found.
1761 */
1762 /* Previously this was only done for xterm and alikes. I don't see a
1763 * reason why it would fail for other terminal emulators.
1764 * if (term_is_xterm) */
1765 {
1766 Window root;
1767 Window parent;
1768 Window win = x11_window;
1769 Window *children;
1770 unsigned int num_children;
1771
1772 while (!status || text_prop.value == NULL)
1773 {
1774 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1775 &num_children))
1776 break;
1777 if (children)
1778 XFree((void *)children);
1779 if (parent == root || parent == 0)
1780 break;
1781
1782 win = parent;
1783 if (get_title)
1784 status = XGetWMName(x11_display, win, &text_prop);
1785 else
1786 status = XGetWMIconName(x11_display, win, &text_prop);
1787 }
1788 }
1789 if (status && text_prop.value != NULL)
1790 {
1791 retval = TRUE;
1792 if (!test_only)
1793 {
1794#ifdef FEAT_XFONTSET
1795 if (text_prop.encoding == XA_STRING)
1796 {
1797#endif
1798 if (get_title)
1799 oldtitle = vim_strsave((char_u *)text_prop.value);
1800 else
1801 oldicon = vim_strsave((char_u *)text_prop.value);
1802#ifdef FEAT_XFONTSET
1803 }
1804 else
1805 {
1806 char **cl;
1807 Status transform_status;
1808 int n = 0;
1809
1810 transform_status = XmbTextPropertyToTextList(x11_display,
1811 &text_prop,
1812 &cl, &n);
1813 if (transform_status >= Success && n > 0 && cl[0])
1814 {
1815 if (get_title)
1816 oldtitle = vim_strsave((char_u *) cl[0]);
1817 else
1818 oldicon = vim_strsave((char_u *) cl[0]);
1819 XFreeStringList(cl);
1820 }
1821 else
1822 {
1823 if (get_title)
1824 oldtitle = vim_strsave((char_u *)text_prop.value);
1825 else
1826 oldicon = vim_strsave((char_u *)text_prop.value);
1827 }
1828 }
1829#endif
1830 }
1831 XFree((void *)text_prop.value);
1832 }
1833 }
1834 return retval;
1835}
1836
1837/* Are Xutf8 functions available? Avoid error from old compilers. */
1838#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1839# if X_HAVE_UTF8_STRING
1840# define USE_UTF8_STRING
1841# endif
1842#endif
1843
1844/*
1845 * Set x11 Window Title
1846 *
1847 * get_x11_windis() must be called before this and have returned OK
1848 */
1849 static void
1850set_x11_title(title)
1851 char_u *title;
1852{
1853 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1854 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1855 * supported everywhere and STRING doesn't work for multi-byte titles.
1856 */
1857#ifdef USE_UTF8_STRING
1858 if (enc_utf8)
1859 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1860 NULL, NULL, 0, NULL, NULL, NULL);
1861 else
1862#endif
1863 {
1864#if XtSpecificationRelease >= 4
1865# ifdef FEAT_XFONTSET
1866 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1867 NULL, NULL, 0, NULL, NULL, NULL);
1868# else
1869 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001870 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871
1872 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001873 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 XSetWMProperties(x11_display, x11_window, &text_prop,
1875 NULL, NULL, 0, NULL, NULL, NULL);
1876# endif
1877#else
1878 XStoreName(x11_display, x11_window, (char *)title);
1879#endif
1880 }
1881 XFlush(x11_display);
1882}
1883
1884/*
1885 * Set x11 Window icon
1886 *
1887 * get_x11_windis() must be called before this and have returned OK
1888 */
1889 static void
1890set_x11_icon(icon)
1891 char_u *icon;
1892{
1893 /* See above for comments about using X*SetWMProperties(). */
1894#ifdef USE_UTF8_STRING
1895 if (enc_utf8)
1896 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1897 NULL, 0, NULL, NULL, NULL);
1898 else
1899#endif
1900 {
1901#if XtSpecificationRelease >= 4
1902# ifdef FEAT_XFONTSET
1903 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1904 NULL, 0, NULL, NULL, NULL);
1905# else
1906 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001907 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001909 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1911 NULL, 0, NULL, NULL, NULL);
1912# endif
1913#else
1914 XSetIconName(x11_display, x11_window, (char *)icon);
1915#endif
1916 }
1917 XFlush(x11_display);
1918}
1919
1920#else /* FEAT_X11 */
1921
1922/*ARGSUSED*/
1923 static int
1924get_x11_title(test_only)
1925 int test_only;
1926{
1927 return FALSE;
1928}
1929
1930 static int
1931get_x11_icon(test_only)
1932 int test_only;
1933{
1934 if (!test_only)
1935 {
1936 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1937 oldicon = T_NAME + 8;
1938 else
1939 oldicon = T_NAME;
1940 }
1941 return FALSE;
1942}
1943
1944#endif /* FEAT_X11 */
1945
1946 int
1947mch_can_restore_title()
1948{
1949 return get_x11_title(TRUE);
1950}
1951
1952 int
1953mch_can_restore_icon()
1954{
1955 return get_x11_icon(TRUE);
1956}
1957
1958/*
1959 * Set the window title and icon.
1960 */
1961 void
1962mch_settitle(title, icon)
1963 char_u *title;
1964 char_u *icon;
1965{
1966 int type = 0;
1967 static int recursive = 0;
1968
1969 if (T_NAME == NULL) /* no terminal name (yet) */
1970 return;
1971 if (title == NULL && icon == NULL) /* nothing to do */
1972 return;
1973
1974 /* When one of the X11 functions causes a deadly signal, we get here again
1975 * recursively. Avoid hanging then (something is probably locked). */
1976 if (recursive)
1977 return;
1978 ++recursive;
1979
1980 /*
1981 * if the window ID and the display is known, we may use X11 calls
1982 */
1983#ifdef FEAT_X11
1984 if (get_x11_windis() == OK)
1985 type = 1;
1986#else
1987# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1988 if (gui.in_use)
1989 type = 1;
1990# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991#endif
1992
1993 /*
1994 * Note: if "t_TS" is set, title is set with escape sequence rather
1995 * than x11 calls, because the x11 calls don't always work
1996 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 if ((type || *T_TS != NUL) && title != NULL)
1998 {
1999 if (oldtitle == NULL
2000#ifdef FEAT_GUI
2001 && !gui.in_use
2002#endif
2003 ) /* first call but not in GUI, save title */
2004 (void)get_x11_title(FALSE);
2005
2006 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2007 term_settitle(title);
2008#ifdef FEAT_X11
2009 else
2010# ifdef FEAT_GUI_GTK
2011 if (!gui.in_use) /* don't do this if GTK+ is running */
2012# endif
2013 set_x11_title(title); /* x11 */
2014#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002015#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2017 else
2018 gui_mch_settitle(title, icon);
2019#endif
2020 did_set_title = TRUE;
2021 }
2022
2023 if ((type || *T_CIS != NUL) && icon != NULL)
2024 {
2025 if (oldicon == NULL
2026#ifdef FEAT_GUI
2027 && !gui.in_use
2028#endif
2029 ) /* first call, save icon */
2030 get_x11_icon(FALSE);
2031
2032 if (*T_CIS != NUL)
2033 {
2034 out_str(T_CIS); /* set icon start */
2035 out_str_nf(icon);
2036 out_str(T_CIE); /* set icon end */
2037 out_flush();
2038 }
2039#ifdef FEAT_X11
2040 else
2041# ifdef FEAT_GUI_GTK
2042 if (!gui.in_use) /* don't do this if GTK+ is running */
2043# endif
2044 set_x11_icon(icon); /* x11 */
2045#endif
2046 did_set_icon = TRUE;
2047 }
2048 --recursive;
2049}
2050
2051/*
2052 * Restore the window/icon title.
2053 * "which" is one of:
2054 * 1 only restore title
2055 * 2 only restore icon
2056 * 3 restore title and icon
2057 */
2058 void
2059mch_restore_title(which)
2060 int which;
2061{
2062 /* only restore the title or icon when it has been set */
2063 mch_settitle(((which & 1) && did_set_title) ?
2064 (oldtitle ? oldtitle : p_titleold) : NULL,
2065 ((which & 2) && did_set_icon) ? oldicon : NULL);
2066}
2067
2068#endif /* FEAT_TITLE */
2069
2070/*
2071 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002072 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 */
2074 int
2075vim_is_xterm(name)
2076 char_u *name;
2077{
2078 if (name == NULL)
2079 return FALSE;
2080 return (STRNICMP(name, "xterm", 5) == 0
2081 || STRNICMP(name, "nxterm", 6) == 0
2082 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002083 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 || STRNICMP(name, "rxvt", 4) == 0
2085 || STRCMP(name, "builtin_xterm") == 0);
2086}
2087
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002088#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2089/*
2090 * Return TRUE if "name" appears to be that of a terminal
2091 * known to support the xterm-style mouse protocol.
2092 * Relies on term_is_xterm having been set to its correct value.
2093 */
2094 int
2095use_xterm_like_mouse(name)
2096 char_u *name;
2097{
2098 return (name != NULL
2099 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2100}
2101#endif
2102
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2104/*
2105 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2106 * Return 1 for "xterm".
2107 * Return 2 for "xterm2".
2108 */
2109 int
2110use_xterm_mouse()
2111{
2112 if (ttym_flags == TTYM_XTERM2)
2113 return 2;
2114 if (ttym_flags == TTYM_XTERM)
2115 return 1;
2116 return 0;
2117}
2118#endif
2119
2120 int
2121vim_is_iris(name)
2122 char_u *name;
2123{
2124 if (name == NULL)
2125 return FALSE;
2126 return (STRNICMP(name, "iris-ansi", 9) == 0
2127 || STRCMP(name, "builtin_iris-ansi") == 0);
2128}
2129
2130 int
2131vim_is_vt300(name)
2132 char_u *name;
2133{
2134 if (name == NULL)
2135 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002136 /* catch VT100 - VT5xx */
2137 return ((STRNICMP(name, "vt", 2) == 0
2138 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 || STRCMP(name, "builtin_vt320") == 0);
2140}
2141
2142/*
2143 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2144 * This should include all windowed terminal emulators.
2145 */
2146 int
2147vim_is_fastterm(name)
2148 char_u *name;
2149{
2150 if (name == NULL)
2151 return FALSE;
2152 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2153 return TRUE;
2154 return ( STRNICMP(name, "hpterm", 6) == 0
2155 || STRNICMP(name, "sun-cmd", 7) == 0
2156 || STRNICMP(name, "screen", 6) == 0
2157 || STRNICMP(name, "dtterm", 6) == 0);
2158}
2159
2160/*
2161 * Insert user name in s[len].
2162 * Return OK if a name found.
2163 */
2164 int
2165mch_get_user_name(s, len)
2166 char_u *s;
2167 int len;
2168{
2169#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002170 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 return OK;
2172#else
2173 return mch_get_uname(getuid(), s, len);
2174#endif
2175}
2176
2177/*
2178 * Insert user name for "uid" in s[len].
2179 * Return OK if a name found.
2180 */
2181 int
2182mch_get_uname(uid, s, len)
2183 uid_t uid;
2184 char_u *s;
2185 int len;
2186{
2187#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2188 struct passwd *pw;
2189
2190 if ((pw = getpwuid(uid)) != NULL
2191 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2192 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002193 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 return OK;
2195 }
2196#endif
2197 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2198 return FAIL; /* a number is not a name */
2199}
2200
2201/*
2202 * Insert host name is s[len].
2203 */
2204
2205#ifdef HAVE_SYS_UTSNAME_H
2206 void
2207mch_get_host_name(s, len)
2208 char_u *s;
2209 int len;
2210{
2211 struct utsname vutsname;
2212
2213 if (uname(&vutsname) < 0)
2214 *s = NUL;
2215 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002216 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217}
2218#else /* HAVE_SYS_UTSNAME_H */
2219
2220# ifdef HAVE_SYS_SYSTEMINFO_H
2221# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2222# endif
2223
2224 void
2225mch_get_host_name(s, len)
2226 char_u *s;
2227 int len;
2228{
2229# ifdef VAXC
2230 vaxc$gethostname((char *)s, len);
2231# else
2232 gethostname((char *)s, len);
2233# endif
2234 s[len - 1] = NUL; /* make sure it's terminated */
2235}
2236#endif /* HAVE_SYS_UTSNAME_H */
2237
2238/*
2239 * return process ID
2240 */
2241 long
2242mch_get_pid()
2243{
2244 return (long)getpid();
2245}
2246
2247#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2248static char *strerror __ARGS((int));
2249
2250 static char *
2251strerror(err)
2252 int err;
2253{
2254 extern int sys_nerr;
2255 extern char *sys_errlist[];
2256 static char er[20];
2257
2258 if (err > 0 && err < sys_nerr)
2259 return (sys_errlist[err]);
2260 sprintf(er, "Error %d", err);
2261 return er;
2262}
2263#endif
2264
2265/*
2266 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2267 * Return OK for success, FAIL for failure.
2268 */
2269 int
2270mch_dirname(buf, len)
2271 char_u *buf;
2272 int len;
2273{
2274#if defined(USE_GETCWD)
2275 if (getcwd((char *)buf, len) == NULL)
2276 {
2277 STRCPY(buf, strerror(errno));
2278 return FAIL;
2279 }
2280 return OK;
2281#else
2282 return (getwd((char *)buf) != NULL ? OK : FAIL);
2283#endif
2284}
2285
2286#if defined(OS2) || defined(PROTO)
2287/*
2288 * Replace all slashes by backslashes.
2289 * When 'shellslash' set do it the other way around.
2290 */
2291 void
2292slash_adjust(p)
2293 char_u *p;
2294{
2295 while (*p)
2296 {
2297 if (*p == psepcN)
2298 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002299 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 }
2301}
2302#endif
2303
2304/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002305 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 *
2307 * return FAIL for failure, OK for success
2308 */
2309 int
2310mch_FullName(fname, buf, len, force)
2311 char_u *fname, *buf;
2312 int len;
2313 int force; /* also expand when already absolute path */
2314{
2315 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002316#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 int only_drive; /* file name is only a drive letter */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002318#endif
2319#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 int fd = -1;
2321 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002322#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 char_u olddir[MAXPATHL];
2324 char_u *p;
2325 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002326#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002327 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2328 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002329#endif
2330
Bram Moolenaar38323e42007-03-06 19:22:53 +00002331#ifdef VMS
2332 fname = vms_fixfilename(fname);
2333#endif
2334
Bram Moolenaara2442432007-04-26 14:26:37 +00002335#ifdef __CYGWIN__
2336 /*
2337 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2338 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002339# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2340 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2341# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002342 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002343# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002344 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002345#endif
2346
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 /* expand it if forced or not an absolute path */
2348 if (force || !mch_isFullName(fname))
2349 {
2350 /*
2351 * If the file name has a path, change to that directory for a moment,
2352 * and then do the getwd() (and get back to where we were).
2353 * This will get the correct path name with "../" things.
2354 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002355#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 only_drive = 0;
2357 if (((p = vim_strrchr(fname, '/')) != NULL)
2358 || ((p = vim_strrchr(fname, '\\')) != NULL)
2359 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
Bram Moolenaar38323e42007-03-06 19:22:53 +00002360#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 if ((p = vim_strrchr(fname, '/')) != NULL)
Bram Moolenaar38323e42007-03-06 19:22:53 +00002362#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002364#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 /*
2366 * Use fchdir() if possible, it's said to be faster and more
2367 * reliable. But on SunOS 4 it might not work. Check this by
2368 * doing a fchdir() right now.
2369 */
2370 if (!dont_fchdir)
2371 {
2372 fd = open(".", O_RDONLY | O_EXTRA, 0);
2373 if (fd >= 0 && fchdir(fd) < 0)
2374 {
2375 close(fd);
2376 fd = -1;
2377 dont_fchdir = TRUE; /* don't try again */
2378 }
2379 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381
2382 /* Only change directory when we are sure we can return to where
2383 * we are now. After doing "su" chdir(".") might not work. */
2384 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002385#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 (mch_dirname(olddir, MAXPATHL) == FAIL
2389 || mch_chdir((char *)olddir) != 0))
2390 {
2391 p = NULL; /* can't get current dir: don't chdir */
2392 retval = FAIL;
2393 }
2394 else
2395 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002396#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 /*
2398 * compensate for case where ':' from "D:" was the only
2399 * path separator detected in the file name; the _next_
2400 * character has to be removed, and then restored later.
2401 */
2402 if (only_drive)
2403 p++;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002404#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 /* The directory is copied into buf[], to be able to remove
2406 * the file name without changing it (could be a string in
2407 * read-only memory) */
2408 if (p - fname >= len)
2409 retval = FAIL;
2410 else
2411 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002412 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 if (mch_chdir((char *)buf))
2414 retval = FAIL;
2415 else
2416 fname = p + 1;
2417 *buf = NUL;
2418 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002419#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 if (only_drive)
2421 {
2422 p--;
2423 if (retval != FAIL)
2424 fname--;
2425 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002426#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 }
2428 }
2429 if (mch_dirname(buf, len) == FAIL)
2430 {
2431 retval = FAIL;
2432 *buf = NUL;
2433 }
2434 if (p != NULL)
2435 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002436#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 if (fd >= 0)
2438 {
2439 l = fchdir(fd);
2440 close(fd);
2441 }
2442 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 l = mch_chdir((char *)olddir);
2445 if (l != 0)
2446 EMSG(_(e_prev_dir));
2447 }
2448
2449 l = STRLEN(buf);
2450 if (l >= len)
2451 retval = FAIL;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002452#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 else
2454 {
2455 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2456 && STRCMP(fname, ".") != 0)
2457 STRCAT(buf, "/");
2458 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002461
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002463 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 return FAIL;
2465
2466 /* Do not append ".", "/dir/." is equal to "/dir". */
2467 if (STRCMP(fname, ".") != 0)
2468 STRCAT(buf, fname);
2469
2470 return OK;
2471}
2472
2473/*
2474 * Return TRUE if "fname" does not depend on the current directory.
2475 */
2476 int
2477mch_isFullName(fname)
2478 char_u *fname;
2479{
2480#ifdef __EMX__
2481 return _fnisabs(fname);
2482#else
2483# ifdef VMS
2484 return ( fname[0] == '/' || fname[0] == '.' ||
2485 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2486 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2487 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2488# else
2489 return (*fname == '/' || *fname == '~');
2490# endif
2491#endif
2492}
2493
Bram Moolenaar24552be2005-12-10 20:17:30 +00002494#if defined(USE_FNAME_CASE) || defined(PROTO)
2495/*
2496 * Set the case of the file name, if it already exists. This will cause the
2497 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002498 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002499 */
2500/*ARGSUSED*/
2501 void
2502fname_case(name, len)
2503 char_u *name;
2504 int len; /* buffer size, only used when name gets longer */
2505{
2506 struct stat st;
2507 char_u *slash, *tail;
2508 DIR *dirp;
2509 struct dirent *dp;
2510
2511 if (lstat((char *)name, &st) >= 0)
2512 {
2513 /* Open the directory where the file is located. */
2514 slash = vim_strrchr(name, '/');
2515 if (slash == NULL)
2516 {
2517 dirp = opendir(".");
2518 tail = name;
2519 }
2520 else
2521 {
2522 *slash = NUL;
2523 dirp = opendir((char *)name);
2524 *slash = '/';
2525 tail = slash + 1;
2526 }
2527
2528 if (dirp != NULL)
2529 {
2530 while ((dp = readdir(dirp)) != NULL)
2531 {
2532 /* Only accept names that differ in case and are the same byte
2533 * length. TODO: accept different length name. */
2534 if (STRICMP(tail, dp->d_name) == 0
2535 && STRLEN(tail) == STRLEN(dp->d_name))
2536 {
2537 char_u newname[MAXPATHL + 1];
2538 struct stat st2;
2539
2540 /* Verify the inode is equal. */
2541 vim_strncpy(newname, name, MAXPATHL);
2542 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2543 MAXPATHL - (tail - name));
2544 if (lstat((char *)newname, &st2) >= 0
2545 && st.st_ino == st2.st_ino
2546 && st.st_dev == st2.st_dev)
2547 {
2548 STRCPY(tail, dp->d_name);
2549 break;
2550 }
2551 }
2552 }
2553
2554 closedir(dirp);
2555 }
2556 }
2557}
2558#endif
2559
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560/*
2561 * Get file permissions for 'name'.
2562 * Returns -1 when it doesn't exist.
2563 */
2564 long
2565mch_getperm(name)
2566 char_u *name;
2567{
2568 struct stat statb;
2569
2570 /* Keep the #ifdef outside of stat(), it may be a macro. */
2571#ifdef VMS
2572 if (stat((char *)vms_fixfilename(name), &statb))
2573#else
2574 if (stat((char *)name, &statb))
2575#endif
2576 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002577#ifdef __INTERIX
2578 /* The top bit makes the value negative, which means the file doesn't
2579 * exist. Remove the bit, we don't use it. */
2580 return statb.st_mode & ~S_ADDACE;
2581#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584}
2585
2586/*
2587 * set file permission for 'name' to 'perm'
2588 *
2589 * return FAIL for failure, OK otherwise
2590 */
2591 int
2592mch_setperm(name, perm)
2593 char_u *name;
2594 long perm;
2595{
2596 return (chmod((char *)
2597#ifdef VMS
2598 vms_fixfilename(name),
2599#else
2600 name,
2601#endif
2602 (mode_t)perm) == 0 ? OK : FAIL);
2603}
2604
2605#if defined(HAVE_ACL) || defined(PROTO)
2606# ifdef HAVE_SYS_ACL_H
2607# include <sys/acl.h>
2608# endif
2609# ifdef HAVE_SYS_ACCESS_H
2610# include <sys/access.h>
2611# endif
2612
2613# ifdef HAVE_SOLARIS_ACL
2614typedef struct vim_acl_solaris_T {
2615 int acl_cnt;
2616 aclent_t *acl_entry;
2617} vim_acl_solaris_T;
2618# endif
2619
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002620#if defined(HAVE_SELINUX) || defined(PROTO)
2621/*
2622 * Copy security info from "from_file" to "to_file".
2623 */
2624 void
2625mch_copy_sec(from_file, to_file)
2626 char_u *from_file;
2627 char_u *to_file;
2628{
2629 if (from_file == NULL)
2630 return;
2631
2632 if (selinux_enabled == -1)
2633 selinux_enabled = is_selinux_enabled();
2634
2635 if (selinux_enabled > 0)
2636 {
2637 security_context_t from_context = NULL;
2638 security_context_t to_context = NULL;
2639
2640 if (getfilecon((char *)from_file, &from_context) < 0)
2641 {
2642 /* If the filesystem doesn't support extended attributes,
2643 the original had no special security context and the
2644 target cannot have one either. */
2645 if (errno == EOPNOTSUPP)
2646 return;
2647
2648 MSG_PUTS(_("\nCould not get security context for "));
2649 msg_outtrans(from_file);
2650 msg_putchar('\n');
2651 return;
2652 }
2653 if (getfilecon((char *)to_file, &to_context) < 0)
2654 {
2655 MSG_PUTS(_("\nCould not get security context for "));
2656 msg_outtrans(to_file);
2657 msg_putchar('\n');
2658 freecon (from_context);
2659 return ;
2660 }
2661 if (strcmp(from_context, to_context) != 0)
2662 {
2663 if (setfilecon((char *)to_file, from_context) < 0)
2664 {
2665 MSG_PUTS(_("\nCould not set security context for "));
2666 msg_outtrans(to_file);
2667 msg_putchar('\n');
2668 }
2669 }
2670 freecon(to_context);
2671 freecon(from_context);
2672 }
2673}
2674#endif /* HAVE_SELINUX */
2675
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676/*
2677 * Return a pointer to the ACL of file "fname" in allocated memory.
2678 * Return NULL if the ACL is not available for whatever reason.
2679 */
2680 vim_acl_T
2681mch_get_acl(fname)
Bram Moolenaar78a15312009-05-15 19:33:18 +00002682 char_u *fname UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683{
2684 vim_acl_T ret = NULL;
2685#ifdef HAVE_POSIX_ACL
2686 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2687#else
2688#ifdef HAVE_SOLARIS_ACL
2689 vim_acl_solaris_T *aclent;
2690
2691 aclent = malloc(sizeof(vim_acl_solaris_T));
2692 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2693 {
2694 free(aclent);
2695 return NULL;
2696 }
2697 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2698 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2699 {
2700 free(aclent->acl_entry);
2701 free(aclent);
2702 return NULL;
2703 }
2704 ret = (vim_acl_T)aclent;
2705#else
2706#if defined(HAVE_AIX_ACL)
2707 int aclsize;
2708 struct acl *aclent;
2709
2710 aclsize = sizeof(struct acl);
2711 aclent = malloc(aclsize);
2712 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2713 {
2714 if (errno == ENOSPC)
2715 {
2716 aclsize = aclent->acl_len;
2717 aclent = realloc(aclent, aclsize);
2718 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2719 {
2720 free(aclent);
2721 return NULL;
2722 }
2723 }
2724 else
2725 {
2726 free(aclent);
2727 return NULL;
2728 }
2729 }
2730 ret = (vim_acl_T)aclent;
2731#endif /* HAVE_AIX_ACL */
2732#endif /* HAVE_SOLARIS_ACL */
2733#endif /* HAVE_POSIX_ACL */
2734 return ret;
2735}
2736
2737/*
2738 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2739 */
2740 void
2741mch_set_acl(fname, aclent)
Bram Moolenaar78a15312009-05-15 19:33:18 +00002742 char_u *fname UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 vim_acl_T aclent;
2744{
2745 if (aclent == NULL)
2746 return;
2747#ifdef HAVE_POSIX_ACL
2748 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2749#else
2750#ifdef HAVE_SOLARIS_ACL
2751 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2752 ((vim_acl_solaris_T *)aclent)->acl_entry);
2753#else
2754#ifdef HAVE_AIX_ACL
2755 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2756#endif /* HAVE_AIX_ACL */
2757#endif /* HAVE_SOLARIS_ACL */
2758#endif /* HAVE_POSIX_ACL */
2759}
2760
2761 void
2762mch_free_acl(aclent)
2763 vim_acl_T aclent;
2764{
2765 if (aclent == NULL)
2766 return;
2767#ifdef HAVE_POSIX_ACL
2768 acl_free((acl_t)aclent);
2769#else
2770#ifdef HAVE_SOLARIS_ACL
2771 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2772 free(aclent);
2773#else
2774#ifdef HAVE_AIX_ACL
2775 free(aclent);
2776#endif /* HAVE_AIX_ACL */
2777#endif /* HAVE_SOLARIS_ACL */
2778#endif /* HAVE_POSIX_ACL */
2779}
2780#endif
2781
2782/*
2783 * Set hidden flag for "name".
2784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 void
2786mch_hide(name)
Bram Moolenaar78a15312009-05-15 19:33:18 +00002787 char_u *name UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788{
2789 /* can't hide a file */
2790}
2791
2792/*
2793 * return TRUE if "name" is a directory
2794 * return FALSE if "name" is not a directory
2795 * return FALSE for error
2796 */
2797 int
2798mch_isdir(name)
2799 char_u *name;
2800{
2801 struct stat statb;
2802
2803 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2804 return FALSE;
2805 if (stat((char *)name, &statb))
2806 return FALSE;
2807#ifdef _POSIX_SOURCE
2808 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2809#else
2810 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2811#endif
2812}
2813
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814static int executable_file __ARGS((char_u *name));
2815
2816/*
2817 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2818 */
2819 static int
2820executable_file(name)
2821 char_u *name;
2822{
2823 struct stat st;
2824
2825 if (stat((char *)name, &st))
2826 return 0;
2827 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2828}
2829
2830/*
2831 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2832 * Return -1 if unknown.
2833 */
2834 int
2835mch_can_exe(name)
2836 char_u *name;
2837{
2838 char_u *buf;
2839 char_u *p, *e;
2840 int retval;
2841
2842 /* If it's an absolute or relative path don't need to use $PATH. */
2843 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2844 || (name[1] == '.' && name[2] == '/'))))
2845 return executable_file(name);
2846
2847 p = (char_u *)getenv("PATH");
2848 if (p == NULL || *p == NUL)
2849 return -1;
2850 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2851 if (buf == NULL)
2852 return -1;
2853
2854 /*
2855 * Walk through all entries in $PATH to check if "name" exists there and
2856 * is an executable file.
2857 */
2858 for (;;)
2859 {
2860 e = (char_u *)strchr((char *)p, ':');
2861 if (e == NULL)
2862 e = p + STRLEN(p);
2863 if (e - p <= 1) /* empty entry means current dir */
2864 STRCPY(buf, "./");
2865 else
2866 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002867 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 add_pathsep(buf);
2869 }
2870 STRCAT(buf, name);
2871 retval = executable_file(buf);
2872 if (retval == 1)
2873 break;
2874
2875 if (*e != ':')
2876 break;
2877 p = e + 1;
2878 }
2879
2880 vim_free(buf);
2881 return retval;
2882}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883
2884/*
2885 * Check what "name" is:
2886 * NODE_NORMAL: file or directory (or doesn't exist)
2887 * NODE_WRITABLE: writable device, socket, fifo, etc.
2888 * NODE_OTHER: non-writable things
2889 */
2890 int
2891mch_nodetype(name)
2892 char_u *name;
2893{
2894 struct stat st;
2895
2896 if (stat((char *)name, &st))
2897 return NODE_NORMAL;
2898 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2899 return NODE_NORMAL;
2900#ifndef OS2
2901 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2902 return NODE_OTHER;
2903#endif
2904 /* Everything else is writable? */
2905 return NODE_WRITABLE;
2906}
2907
2908 void
2909mch_early_init()
2910{
2911#ifdef HAVE_CHECK_STACK_GROWTH
2912 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 check_stack_growth((char *)&i);
2915
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002916# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 get_stack_limit();
2918# endif
2919
2920#endif
2921
2922 /*
2923 * Setup an alternative stack for signals. Helps to catch signals when
2924 * running out of stack space.
2925 * Use of sigaltstack() is preferred, it's more portable.
2926 * Ignore any errors.
2927 */
2928#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00002929 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 init_signal_stack();
2931#endif
2932}
2933
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002934#if defined(EXITFREE) || defined(PROTO)
2935 void
2936mch_free_mem()
2937{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002938# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2939 if (clip_star.owned)
2940 clip_lose_selection(&clip_star);
2941 if (clip_plus.owned)
2942 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002943# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00002944# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002945 if (xterm_Shell != (Widget)0)
2946 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00002947# ifndef LESSTIF_VERSION
2948 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002949 if (xterm_dpy != NULL)
2950 XtCloseDisplay(xterm_dpy);
2951 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00002952 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002953 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00002954# ifdef FEAT_X11
2955 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2956# endif
2957 }
2958# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002959# endif
Bram Moolenaara8785102008-11-12 13:10:15 +00002960 /* Don't close the display for GTK 1, it is done in exit(). */
2961# if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
Bram Moolenaare8208012008-06-20 09:59:25 +00002962 if (x11_display != NULL
2963# ifdef FEAT_XCLIPBOARD
2964 && x11_display != xterm_dpy
2965# endif
2966 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002967 XCloseDisplay(x11_display);
2968# endif
2969# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2970 vim_free(signal_stack);
2971 signal_stack = NULL;
2972# endif
2973# ifdef FEAT_TITLE
2974 vim_free(oldtitle);
2975 vim_free(oldicon);
2976# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002977}
2978#endif
2979
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980static void exit_scroll __ARGS((void));
2981
2982/*
2983 * Output a newline when exiting.
2984 * Make sure the newline goes to the same stream as the text.
2985 */
2986 static void
2987exit_scroll()
2988{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002989 if (silent_mode)
2990 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 if (newline_on_exit || msg_didout)
2992 {
2993 if (msg_use_printf())
2994 {
2995 if (info_message)
2996 mch_msg("\n");
2997 else
2998 mch_errmsg("\r\n");
2999 }
3000 else
3001 out_char('\n');
3002 }
3003 else
3004 {
3005 restore_cterm_colors(); /* get original colors back */
3006 msg_clr_eos_force(); /* clear the rest of the display */
3007 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3008 }
3009}
3010
3011 void
3012mch_exit(r)
3013 int r;
3014{
3015 exiting = TRUE;
3016
3017#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3018 x11_export_final_selection();
3019#endif
3020
3021#ifdef FEAT_GUI
3022 if (!gui.in_use)
3023#endif
3024 {
3025 settmode(TMODE_COOK);
3026#ifdef FEAT_TITLE
3027 mch_restore_title(3); /* restore xterm title and icon name */
3028#endif
3029 /*
3030 * When t_ti is not empty but it doesn't cause swapping terminal
3031 * pages, need to output a newline when msg_didout is set. But when
3032 * t_ti does swap pages it should not go to the shell page. Do this
3033 * before stoptermcap().
3034 */
3035 if (swapping_screen() && !newline_on_exit)
3036 exit_scroll();
3037
3038 /* Stop termcap: May need to check for T_CRV response, which
3039 * requires RAW mode. */
3040 stoptermcap();
3041
3042 /*
3043 * A newline is only required after a message in the alternate screen.
3044 * This is set to TRUE by wait_return().
3045 */
3046 if (!swapping_screen() || newline_on_exit)
3047 exit_scroll();
3048
3049 /* Cursor may have been switched off without calling starttermcap()
3050 * when doing "vim -u vimrc" and vimrc contains ":q". */
3051 if (full_screen)
3052 cursor_on();
3053 }
3054 out_flush();
3055 ml_close_all(TRUE); /* remove all memfiles */
3056 may_core_dump();
3057#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 gui_exit(r);
3060#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003061
Bram Moolenaar56718732006-03-15 22:53:57 +00003062#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003063 mac_conv_cleanup();
3064#endif
3065
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066#ifdef __QNX__
3067 /* A core dump won't be created if the signal handler
3068 * doesn't return, so we can't call exit() */
3069 if (deadly_signal != 0)
3070 return;
3071#endif
3072
Bram Moolenaar009b2592004-10-24 19:18:58 +00003073#ifdef FEAT_NETBEANS_INTG
3074 if (usingNetbeans)
3075 netbeans_send_disconnect();
3076#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003077
3078#ifdef EXITFREE
3079 free_all_mem();
3080#endif
3081
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 exit(r);
3083}
3084
3085 static void
3086may_core_dump()
3087{
3088 if (deadly_signal != 0)
3089 {
3090 signal(deadly_signal, SIG_DFL);
3091 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3092 }
3093}
3094
3095#ifndef VMS
3096
3097 void
3098mch_settmode(tmode)
3099 int tmode;
3100{
3101 static int first = TRUE;
3102
3103 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3104#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3105 /*
3106 * for "new" tty systems
3107 */
3108# ifdef HAVE_TERMIOS_H
3109 static struct termios told;
3110 struct termios tnew;
3111# else
3112 static struct termio told;
3113 struct termio tnew;
3114# endif
3115
3116 if (first)
3117 {
3118 first = FALSE;
3119# if defined(HAVE_TERMIOS_H)
3120 tcgetattr(read_cmd_fd, &told);
3121# else
3122 ioctl(read_cmd_fd, TCGETA, &told);
3123# endif
3124 }
3125
3126 tnew = told;
3127 if (tmode == TMODE_RAW)
3128 {
3129 /*
3130 * ~ICRNL enables typing ^V^M
3131 */
3132 tnew.c_iflag &= ~ICRNL;
3133 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3134# if defined(IEXTEN) && !defined(__MINT__)
3135 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3136 /* but it breaks function keys on MINT */
3137# endif
3138 );
3139# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3140 tnew.c_oflag &= ~ONLCR;
3141# endif
3142 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3143 tnew.c_cc[VTIME] = 0; /* don't wait */
3144 }
3145 else if (tmode == TMODE_SLEEP)
3146 tnew.c_lflag &= ~(ECHO);
3147
3148# if defined(HAVE_TERMIOS_H)
3149 {
3150 int n = 10;
3151
3152 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3153 * few times. */
3154 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3155 && errno == EINTR && n > 0)
3156 --n;
3157 }
3158# else
3159 ioctl(read_cmd_fd, TCSETA, &tnew);
3160# endif
3161
3162#else
3163
3164 /*
3165 * for "old" tty systems
3166 */
3167# ifndef TIOCSETN
3168# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3169# endif
3170 static struct sgttyb ttybold;
3171 struct sgttyb ttybnew;
3172
3173 if (first)
3174 {
3175 first = FALSE;
3176 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3177 }
3178
3179 ttybnew = ttybold;
3180 if (tmode == TMODE_RAW)
3181 {
3182 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3183 ttybnew.sg_flags |= RAW;
3184 }
3185 else if (tmode == TMODE_SLEEP)
3186 ttybnew.sg_flags &= ~(ECHO);
3187 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3188#endif
3189 curr_tmode = tmode;
3190}
3191
3192/*
3193 * Try to get the code for "t_kb" from the stty setting
3194 *
3195 * Even if termcap claims a backspace key, the user's setting *should*
3196 * prevail. stty knows more about reality than termcap does, and if
3197 * somebody's usual erase key is DEL (which, for most BSD users, it will
3198 * be), they're going to get really annoyed if their erase key starts
3199 * doing forward deletes for no reason. (Eric Fischer)
3200 */
3201 void
3202get_stty()
3203{
3204 char_u buf[2];
3205 char_u *p;
3206
3207 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3208#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3209 /* for "new" tty systems */
3210# ifdef HAVE_TERMIOS_H
3211 struct termios keys;
3212# else
3213 struct termio keys;
3214# endif
3215
3216# if defined(HAVE_TERMIOS_H)
3217 if (tcgetattr(read_cmd_fd, &keys) != -1)
3218# else
3219 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3220# endif
3221 {
3222 buf[0] = keys.c_cc[VERASE];
3223 intr_char = keys.c_cc[VINTR];
3224#else
3225 /* for "old" tty systems */
3226 struct sgttyb keys;
3227
3228 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3229 {
3230 buf[0] = keys.sg_erase;
3231 intr_char = keys.sg_kill;
3232#endif
3233 buf[1] = NUL;
3234 add_termcode((char_u *)"kb", buf, FALSE);
3235
3236 /*
3237 * If <BS> and <DEL> are now the same, redefine <DEL>.
3238 */
3239 p = find_termcode((char_u *)"kD");
3240 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3241 do_fixdel(NULL);
3242 }
3243#if 0
3244 } /* to keep cindent happy */
3245#endif
3246}
3247
3248#endif /* VMS */
3249
3250#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3251/*
3252 * Set mouse clicks on or off.
3253 */
3254 void
3255mch_setmouse(on)
3256 int on;
3257{
3258 static int ison = FALSE;
3259 int xterm_mouse_vers;
3260
3261 if (on == ison) /* return quickly if nothing to do */
3262 return;
3263
3264 xterm_mouse_vers = use_xterm_mouse();
3265 if (xterm_mouse_vers > 0)
3266 {
3267 if (on) /* enable mouse events, use mouse tracking if available */
3268 out_str_nf((char_u *)
3269 (xterm_mouse_vers > 1
3270 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3271 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3272 else /* disable mouse events, could probably always send the same */
3273 out_str_nf((char_u *)
3274 (xterm_mouse_vers > 1
3275 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3276 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3277 ison = on;
3278 }
3279
3280# ifdef FEAT_MOUSE_DEC
3281 else if (ttym_flags == TTYM_DEC)
3282 {
3283 if (on) /* enable mouse events */
3284 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3285 else /* disable mouse events */
3286 out_str_nf((char_u *)"\033['z");
3287 ison = on;
3288 }
3289# endif
3290
3291# ifdef FEAT_MOUSE_GPM
3292 else
3293 {
3294 if (on)
3295 {
3296 if (gpm_open())
3297 ison = TRUE;
3298 }
3299 else
3300 {
3301 gpm_close();
3302 ison = FALSE;
3303 }
3304 }
3305# endif
3306
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003307# ifdef FEAT_SYSMOUSE
3308 else
3309 {
3310 if (on)
3311 {
3312 if (sysmouse_open() == OK)
3313 ison = TRUE;
3314 }
3315 else
3316 {
3317 sysmouse_close();
3318 ison = FALSE;
3319 }
3320 }
3321# endif
3322
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323# ifdef FEAT_MOUSE_JSB
3324 else
3325 {
3326 if (on)
3327 {
3328 /* D - Enable Mouse up/down messages
3329 * L - Enable Left Button Reporting
3330 * M - Enable Middle Button Reporting
3331 * R - Enable Right Button Reporting
3332 * K - Enable SHIFT and CTRL key Reporting
3333 * + - Enable Advanced messaging of mouse moves and up/down messages
3334 * Q - Quiet No Ack
3335 * # - Numeric value of mouse pointer required
3336 * 0 = Multiview 2000 cursor, used as standard
3337 * 1 = Windows Arrow
3338 * 2 = Windows I Beam
3339 * 3 = Windows Hour Glass
3340 * 4 = Windows Cross Hair
3341 * 5 = Windows UP Arrow
3342 */
3343#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3344 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3345 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3346#else
3347 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3348 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3349#endif
3350 ison = TRUE;
3351 }
3352 else
3353 {
3354 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3355 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3356 ison = FALSE;
3357 }
3358 }
3359# endif
3360# ifdef FEAT_MOUSE_PTERM
3361 else
3362 {
3363 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3364 if (on)
3365 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3366 else
3367 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3368 ison = on;
3369 }
3370# endif
3371}
3372
3373/*
3374 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3375 */
3376 void
3377check_mouse_termcode()
3378{
3379# ifdef FEAT_MOUSE_XTERM
3380 if (use_xterm_mouse()
3381# ifdef FEAT_GUI
3382 && !gui.in_use
3383# endif
3384 )
3385 {
3386 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003387 ? IF_EB("\233M", CSI_STR "M")
3388 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 if (*p_mouse != NUL)
3390 {
3391 /* force mouse off and maybe on to send possibly new mouse
3392 * activation sequence to the xterm, with(out) drag tracing. */
3393 mch_setmouse(FALSE);
3394 setmouse();
3395 }
3396 }
3397 else
3398 del_mouse_termcode(KS_MOUSE);
3399# endif
3400
3401# ifdef FEAT_MOUSE_GPM
3402 if (!use_xterm_mouse()
3403# ifdef FEAT_GUI
3404 && !gui.in_use
3405# endif
3406 )
3407 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3408# endif
3409
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003410# ifdef FEAT_SYSMOUSE
3411 if (!use_xterm_mouse()
3412# ifdef FEAT_GUI
3413 && !gui.in_use
3414# endif
3415 )
3416 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3417# endif
3418
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419# ifdef FEAT_MOUSE_JSB
3420 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3421 if (!use_xterm_mouse()
3422# ifdef FEAT_GUI
3423 && !gui.in_use
3424# endif
3425 )
3426 set_mouse_termcode(KS_JSBTERM_MOUSE,
3427 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3428 else
3429 del_mouse_termcode(KS_JSBTERM_MOUSE);
3430# endif
3431
3432# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003433 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 * define it in the GUI or when using an xterm. */
3435 if (!use_xterm_mouse()
3436# ifdef FEAT_GUI
3437 && !gui.in_use
3438# endif
3439 )
3440 set_mouse_termcode(KS_NETTERM_MOUSE,
3441 (char_u *)IF_EB("\033}", ESC_STR "}"));
3442 else
3443 del_mouse_termcode(KS_NETTERM_MOUSE);
3444# endif
3445
3446# ifdef FEAT_MOUSE_DEC
3447 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3448 if (!use_xterm_mouse()
3449# ifdef FEAT_GUI
3450 && !gui.in_use
3451# endif
3452 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003453 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3454 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 else
3456 del_mouse_termcode(KS_DEC_MOUSE);
3457# endif
3458# ifdef FEAT_MOUSE_PTERM
3459 /* same as the dec mouse */
3460 if (!use_xterm_mouse()
3461# ifdef FEAT_GUI
3462 && !gui.in_use
3463# endif
3464 )
3465 set_mouse_termcode(KS_PTERM_MOUSE,
3466 (char_u *) IF_EB("\033[", ESC_STR "["));
3467 else
3468 del_mouse_termcode(KS_PTERM_MOUSE);
3469# endif
3470}
3471#endif
3472
3473/*
3474 * set screen mode, always fails.
3475 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 int
3477mch_screenmode(arg)
Bram Moolenaar78a15312009-05-15 19:33:18 +00003478 char_u *arg UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479{
3480 EMSG(_(e_screenmode));
3481 return FAIL;
3482}
3483
3484#ifndef VMS
3485
3486/*
3487 * Try to get the current window size:
3488 * 1. with an ioctl(), most accurate method
3489 * 2. from the environment variables LINES and COLUMNS
3490 * 3. from the termcap
3491 * 4. keep using the old values
3492 * Return OK when size could be determined, FAIL otherwise.
3493 */
3494 int
3495mch_get_shellsize()
3496{
3497 long rows = 0;
3498 long columns = 0;
3499 char_u *p;
3500
3501 /*
3502 * For OS/2 use _scrsize().
3503 */
3504# ifdef __EMX__
3505 {
3506 int s[2];
3507
3508 _scrsize(s);
3509 columns = s[0];
3510 rows = s[1];
3511 }
3512# endif
3513
3514 /*
3515 * 1. try using an ioctl. It is the most accurate method.
3516 *
3517 * Try using TIOCGWINSZ first, some systems that have it also define
3518 * TIOCGSIZE but don't have a struct ttysize.
3519 */
3520# ifdef TIOCGWINSZ
3521 {
3522 struct winsize ws;
3523 int fd = 1;
3524
3525 /* When stdout is not a tty, use stdin for the ioctl(). */
3526 if (!isatty(fd) && isatty(read_cmd_fd))
3527 fd = read_cmd_fd;
3528 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3529 {
3530 columns = ws.ws_col;
3531 rows = ws.ws_row;
3532 }
3533 }
3534# else /* TIOCGWINSZ */
3535# ifdef TIOCGSIZE
3536 {
3537 struct ttysize ts;
3538 int fd = 1;
3539
3540 /* When stdout is not a tty, use stdin for the ioctl(). */
3541 if (!isatty(fd) && isatty(read_cmd_fd))
3542 fd = read_cmd_fd;
3543 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3544 {
3545 columns = ts.ts_cols;
3546 rows = ts.ts_lines;
3547 }
3548 }
3549# endif /* TIOCGSIZE */
3550# endif /* TIOCGWINSZ */
3551
3552 /*
3553 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003554 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3555 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003557 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 {
3559 if ((p = (char_u *)getenv("LINES")))
3560 rows = atoi((char *)p);
3561 if ((p = (char_u *)getenv("COLUMNS")))
3562 columns = atoi((char *)p);
3563 }
3564
3565#ifdef HAVE_TGETENT
3566 /*
3567 * 3. try reading "co" and "li" entries from termcap
3568 */
3569 if (columns == 0 || rows == 0)
3570 getlinecol(&columns, &rows);
3571#endif
3572
3573 /*
3574 * 4. If everything fails, use the old values
3575 */
3576 if (columns <= 0 || rows <= 0)
3577 return FAIL;
3578
3579 Rows = rows;
3580 Columns = columns;
3581 return OK;
3582}
3583
3584/*
3585 * Try to set the window size to Rows and Columns.
3586 */
3587 void
3588mch_set_shellsize()
3589{
3590 if (*T_CWS)
3591 {
3592 /*
3593 * NOTE: if you get an error here that term_set_winsize() is
3594 * undefined, check the output of configure. It could probably not
3595 * find a ncurses, termcap or termlib library.
3596 */
3597 term_set_winsize((int)Rows, (int)Columns);
3598 out_flush();
3599 screen_start(); /* don't know where cursor is now */
3600 }
3601}
3602
3603#endif /* VMS */
3604
3605/*
3606 * Rows and/or Columns has changed.
3607 */
3608 void
3609mch_new_shellsize()
3610{
3611 /* Nothing to do. */
3612}
3613
Bram Moolenaardf177f62005-02-22 08:39:57 +00003614#ifndef USE_SYSTEM
3615static void append_ga_line __ARGS((garray_T *gap));
3616
3617/*
3618 * Append the text in "gap" below the cursor line and clear "gap".
3619 */
3620 static void
3621append_ga_line(gap)
3622 garray_T *gap;
3623{
3624 /* Remove trailing CR. */
3625 if (gap->ga_len > 0
3626 && !curbuf->b_p_bin
3627 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3628 --gap->ga_len;
3629 ga_append(gap, NUL);
3630 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3631 gap->ga_len = 0;
3632}
3633#endif
3634
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 int
3636mch_call_shell(cmd, options)
3637 char_u *cmd;
3638 int options; /* SHELL_*, see vim.h */
3639{
3640#ifdef VMS
3641 char *ifn = NULL;
3642 char *ofn = NULL;
3643#endif
3644 int tmode = cur_tmode;
3645#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3646 int x;
3647# ifndef __EMX__
3648 char_u *newcmd; /* only needed for unix */
3649# else
3650 /*
3651 * Set the preferred shell in the EMXSHELL environment variable (but
3652 * only if it is different from what is already in the environment).
3653 * Emx then takes care of whether to use "/c" or "-c" in an
3654 * intelligent way. Simply pass the whole thing to emx's system() call.
3655 * Emx also starts an interactive shell if system() is passed an empty
3656 * string.
3657 */
3658 char_u *p, *old;
3659
3660 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3661 {
3662 /* should check HAVE_SETENV, but I know we don't have it. */
3663 p = alloc(10 + strlen(p_sh));
3664 if (p)
3665 {
3666 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3667 putenv((char *)p); /* don't free the pointer! */
3668 }
3669 }
3670# endif
3671
3672 out_flush();
3673
3674 if (options & SHELL_COOKED)
3675 settmode(TMODE_COOK); /* set to normal mode */
3676
3677# ifdef __EMX__
3678 if (cmd == NULL)
3679 x = system(""); /* this starts an interactive shell in emx */
3680 else
3681 x = system((char *)cmd);
3682 /* system() returns -1 when error occurs in starting shell */
3683 if (x == -1 && !emsg_silent)
3684 {
3685 MSG_PUTS(_("\nCannot execute shell "));
3686 msg_outtrans(p_sh);
3687 msg_putchar('\n');
3688 }
3689# else /* not __EMX__ */
3690 if (cmd == NULL)
3691 x = system((char *)p_sh);
3692 else
3693 {
3694# ifdef VMS
3695 if (ofn = strchr((char *)cmd, '>'))
3696 *ofn++ = '\0';
3697 if (ifn = strchr((char *)cmd, '<'))
3698 {
3699 char *p;
3700
3701 *ifn++ = '\0';
3702 p = strchr(ifn,' '); /* chop off any trailing spaces */
3703 if (p)
3704 *p = '\0';
3705 }
3706 if (ofn)
3707 x = vms_sys((char *)cmd, ofn, ifn);
3708 else
3709 x = system((char *)cmd);
3710# else
3711 newcmd = lalloc(STRLEN(p_sh)
3712 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3713 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3714 if (newcmd == NULL)
3715 x = 0;
3716 else
3717 {
3718 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3719 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3720 (char *)p_shcf,
3721 (char *)cmd);
3722 x = system((char *)newcmd);
3723 vim_free(newcmd);
3724 }
3725# endif
3726 }
3727# ifdef VMS
3728 x = vms_sys_status(x);
3729# endif
3730 if (emsg_silent)
3731 ;
3732 else if (x == 127)
3733 MSG_PUTS(_("\nCannot execute shell sh\n"));
3734# endif /* __EMX__ */
3735 else if (x && !(options & SHELL_SILENT))
3736 {
3737 MSG_PUTS(_("\nshell returned "));
3738 msg_outnum((long)x);
3739 msg_putchar('\n');
3740 }
3741
3742 if (tmode == TMODE_RAW)
3743 settmode(TMODE_RAW); /* set to raw mode */
3744# ifdef FEAT_TITLE
3745 resettitle();
3746# endif
3747 return x;
3748
3749#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3750
Bram Moolenaardf177f62005-02-22 08:39:57 +00003751# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3752 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753
3754 char_u *newcmd = NULL;
3755 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003756 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 pid_t wait_pid = 0;
3758# ifdef HAVE_UNION_WAIT
3759 union wait status;
3760# else
3761 int status = -1;
3762# endif
3763 int retval = -1;
3764 char **argv = NULL;
3765 int argc;
3766 int i;
3767 char_u *p;
3768 int inquote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003770# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 int pty_slave_fd = -1;
3772 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003773# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003774 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 int fd_fromshell[2];
3776 int pipe_error = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003777# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 char envbuf[50];
Bram Moolenaardf177f62005-02-22 08:39:57 +00003779# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 static char envbuf_Rows[20];
3781 static char envbuf_Columns[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003783 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784
3785 out_flush();
3786 if (options & SHELL_COOKED)
3787 settmode(TMODE_COOK); /* set to normal mode */
3788
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 newcmd = vim_strsave(p_sh);
3790 if (newcmd == NULL) /* out of memory */
3791 goto error;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003792
3793 /*
3794 * Do this loop twice:
3795 * 1: find number of arguments
3796 * 2: separate them and build argv[]
3797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 for (i = 0; i < 2; ++i)
3799 {
3800 p = newcmd;
3801 inquote = FALSE;
3802 argc = 0;
3803 for (;;)
3804 {
3805 if (i == 1)
3806 argv[argc] = (char *)p;
3807 ++argc;
3808 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3809 {
3810 if (*p == '"')
3811 inquote = !inquote;
3812 ++p;
3813 }
3814 if (*p == NUL)
3815 break;
3816 if (i == 1)
3817 *p++ = NUL;
3818 p = skipwhite(p);
3819 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003820 if (argv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 {
3822 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3823 if (argv == NULL) /* out of memory */
3824 goto error;
3825 }
3826 }
3827 if (cmd != NULL)
3828 {
3829 if (extra_shell_arg != NULL)
3830 argv[argc++] = (char *)extra_shell_arg;
3831 argv[argc++] = (char *)p_shcf;
3832 argv[argc++] = (char *)cmd;
3833 }
3834 argv[argc] = NULL;
3835
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003837 * For the GUI, when writing the output into the buffer and when reading
3838 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3839 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003841 if ((options & (SHELL_READ|SHELL_WRITE))
3842# ifdef FEAT_GUI
3843 || (gui.in_use && show_shell_mess)
3844# endif
3845 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003847# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 /*
3849 * Try to open a master pty.
3850 * If this works, open the slave pty.
3851 * If the slave can't be opened, close the master pty.
3852 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003853 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 {
3855 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3856 if (pty_master_fd >= 0 && ((pty_slave_fd =
3857 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3858 {
3859 close(pty_master_fd);
3860 pty_master_fd = -1;
3861 }
3862 }
3863 /*
3864 * If not opening a pty or it didn't work, try using pipes.
3865 */
3866 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003867# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 {
3869 pipe_error = (pipe(fd_toshell) < 0);
3870 if (!pipe_error) /* pipe create OK */
3871 {
3872 pipe_error = (pipe(fd_fromshell) < 0);
3873 if (pipe_error) /* pipe create failed */
3874 {
3875 close(fd_toshell[0]);
3876 close(fd_toshell[1]);
3877 }
3878 }
3879 if (pipe_error)
3880 {
3881 MSG_PUTS(_("\nCannot create pipes\n"));
3882 out_flush();
3883 }
3884 }
3885 }
3886
3887 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 {
3889# ifdef __BEOS__
3890 beos_cleanup_read_thread();
3891# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003892
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3894 {
3895 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00003896 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003898 || (gui.in_use && show_shell_mess)
3899# endif
3900 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003902# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 if (pty_master_fd >= 0) /* close the pseudo tty */
3904 {
3905 close(pty_master_fd);
3906 close(pty_slave_fd);
3907 }
3908 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003909# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 {
3911 close(fd_toshell[0]);
3912 close(fd_toshell[1]);
3913 close(fd_fromshell[0]);
3914 close(fd_fromshell[1]);
3915 }
3916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 }
3918 else if (pid == 0) /* child */
3919 {
3920 reset_signals(); /* handle signals normally */
3921
3922 if (!show_shell_mess || (options & SHELL_EXPAND))
3923 {
3924 int fd;
3925
3926 /*
3927 * Don't want to show any message from the shell. Can't just
3928 * close stdout and stderr though, because some systems will
3929 * break if you try to write to them after that, so we must
3930 * use dup() to replace them with something else -- webb
3931 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3932 * waiting for input.
3933 */
3934 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3935 fclose(stdin);
3936 fclose(stdout);
3937 fclose(stderr);
3938
3939 /*
3940 * If any of these open()'s and dup()'s fail, we just continue
3941 * anyway. It's not fatal, and on most systems it will make
3942 * no difference at all. On a few it will cause the execvp()
3943 * to exit with a non-zero status even when the completion
3944 * could be done, which is nothing too serious. If the open()
3945 * or dup() failed we'd just do the same thing ourselves
3946 * anyway -- webb
3947 */
3948 if (fd >= 0)
3949 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003950 ignored = dup(fd); /* To replace stdin (fd 0) */
3951 ignored = dup(fd); /* To replace stdout (fd 1) */
3952 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953
3954 /* Don't need this now that we've duplicated it */
3955 close(fd);
3956 }
3957 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003958 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003960 || gui.in_use
3961# endif
3962 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 {
3964
Bram Moolenaardf177f62005-02-22 08:39:57 +00003965# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003966 /* Create our own process group, so that the child and all its
3967 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003968 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003969 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00003970 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003971 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00003972# if defined(SIGHUP)
3973 /* When doing "!xterm&" and 'shell' is bash: the shell
3974 * will exit and send SIGHUP to all processes in its
3975 * group, killing the just started process. Ignore SIGHUP
3976 * to avoid that. (suggested by Simon Schubert)
3977 */
3978 signal(SIGHUP, SIG_IGN);
3979# endif
3980 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003981# endif
3982# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003983 if (pty_slave_fd >= 0)
3984 {
3985 /* push stream discipline modules */
3986 if (options & SHELL_COOKED)
3987 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003989 /* Try to become controlling tty (probably doesn't work,
3990 * unless run by root) */
3991 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003993 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003994# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 /* Simulate to have a dumb terminal (for now) */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003996# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 setenv("TERM", "dumb", 1);
3998 sprintf((char *)envbuf, "%ld", Rows);
3999 setenv("ROWS", (char *)envbuf, 1);
4000 sprintf((char *)envbuf, "%ld", Rows);
4001 setenv("LINES", (char *)envbuf, 1);
4002 sprintf((char *)envbuf, "%ld", Columns);
4003 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004004# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 /*
4006 * Putenv does not copy the string, it has to remain valid.
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004007 * Use a static array to avoid losing allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 */
4009 putenv("TERM=dumb");
4010 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4011 putenv(envbuf_Rows);
4012 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4013 putenv(envbuf_Rows);
4014 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4015 putenv(envbuf_Columns);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004016# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017
Bram Moolenaara5792f52005-11-23 21:25:05 +00004018 /*
4019 * stderr is only redirected when using the GUI, so that a
4020 * program like gpg can still access the terminal to get a
4021 * passphrase using stderr.
4022 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004023# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 if (pty_master_fd >= 0)
4025 {
4026 close(pty_master_fd); /* close master side of pty */
4027
4028 /* set up stdin/stdout/stderr for the child */
4029 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004030 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004032 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004033 if (gui.in_use)
4034 {
4035 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004036 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038
4039 close(pty_slave_fd); /* has been dupped, close it now */
4040 }
4041 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004042# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 {
4044 /* set up stdin for the child */
4045 close(fd_toshell[1]);
4046 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004047 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 close(fd_toshell[0]);
4049
4050 /* set up stdout for the child */
4051 close(fd_fromshell[0]);
4052 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004053 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 close(fd_fromshell[1]);
4055
Bram Moolenaara5792f52005-11-23 21:25:05 +00004056# ifdef FEAT_GUI
4057 if (gui.in_use)
4058 {
4059 /* set up stderr for the child */
4060 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004061 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004062 }
4063# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 }
4065 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004066
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 /*
4068 * There is no type cast for the argv, because the type may be
4069 * different on different machines. This may cause a warning
4070 * message with strict compilers, don't worry about it.
4071 * Call _exit() instead of exit() to avoid closing the connection
4072 * to the X server (esp. with GTK, which uses atexit()).
4073 */
4074 execvp(argv[0], argv);
4075 _exit(EXEC_FAILED); /* exec failed, return failure code */
4076 }
4077 else /* parent */
4078 {
4079 /*
4080 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004081 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 */
4083 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004084 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085
4086 /*
4087 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004088 * This is also used to pipe stdin/stdout to/from the external
4089 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004091 if ((options & (SHELL_READ|SHELL_WRITE))
4092# ifdef FEAT_GUI
4093 || (gui.in_use && show_shell_mess)
4094# endif
4095 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004097# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004099# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004101# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4103 int ta_len = 0; /* valid bytes in ta_buf[] */
4104 int len;
4105 int p_more_save;
4106 int old_State;
4107 int c;
4108 int toshell_fd;
4109 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004110 garray_T ga;
4111 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004112# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4113 struct timeval start_tv;
4114# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115
Bram Moolenaardf177f62005-02-22 08:39:57 +00004116# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 if (pty_master_fd >= 0)
4118 {
4119 close(pty_slave_fd); /* close slave side of pty */
4120 fromshell_fd = pty_master_fd;
4121 toshell_fd = dup(pty_master_fd);
4122 }
4123 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004124# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 {
4126 close(fd_toshell[0]);
4127 close(fd_fromshell[1]);
4128 toshell_fd = fd_toshell[1];
4129 fromshell_fd = fd_fromshell[0];
4130 }
4131
4132 /*
4133 * Write to the child if there are typed characters.
4134 * Read from the child if there are characters available.
4135 * Repeat the reading a few times if more characters are
4136 * available. Need to check for typed keys now and then, but
4137 * not too often (delays when no chars are available).
4138 * This loop is quit if no characters can be read from the pty
4139 * (WaitForChar detected special condition), or there are no
4140 * characters available and the child has exited.
4141 * Only check if the child has exited when there is no more
4142 * output. The child may exit before all the output has
4143 * been printed.
4144 *
4145 * Currently this busy loops!
4146 * This can probably dead-lock when the write blocks!
4147 */
4148 p_more_save = p_more;
4149 p_more = FALSE;
4150 old_State = State;
4151 State = EXTERNCMD; /* don't redraw at window resize */
4152
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004153 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004154 {
4155 /* Fork a process that will write the lines to the
4156 * external program. */
4157 if ((wpid = fork()) == -1)
4158 {
4159 MSG_PUTS(_("\nCannot fork\n"));
4160 }
4161 else if (wpid == 0)
4162 {
4163 linenr_T lnum = curbuf->b_op_start.lnum;
4164 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004165 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004166 char_u *s;
4167 size_t l;
4168
4169 /* child */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004170 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004171 for (;;)
4172 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004173 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004174 if (l == 0)
4175 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004176 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004177 /* NL -> NUL translation */
4178 len = write(toshell_fd, "", (size_t)1);
4179 else
4180 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004181 s = vim_strchr(lp + written, NL);
4182 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004183 s == NULL ? l
4184 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004185 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004186 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004187 {
4188 /* Finished a line, add a NL, unless this line
4189 * should not have one. */
4190 if (lnum != curbuf->b_op_end.lnum
4191 || !curbuf->b_p_bin
4192 || (lnum != write_no_eol_lnum
4193 && (lnum !=
4194 curbuf->b_ml.ml_line_count
4195 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004196 ignored = write(toshell_fd, "\n",
4197 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004198 ++lnum;
4199 if (lnum > curbuf->b_op_end.lnum)
4200 {
4201 /* finished all the lines, close pipe */
4202 close(toshell_fd);
4203 toshell_fd = -1;
4204 break;
4205 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004206 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004207 written = 0;
4208 }
4209 else if (len > 0)
4210 written += len;
4211 }
4212 _exit(0);
4213 }
4214 else
4215 {
4216 close(toshell_fd);
4217 toshell_fd = -1;
4218 }
4219 }
4220
4221 if (options & SHELL_READ)
4222 ga_init2(&ga, 1, BUFLEN);
4223
4224 noread_cnt = 0;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004225# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4226 gettimeofday(&start_tv, NULL);
4227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 for (;;)
4229 {
4230 /*
4231 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004232 * if there are any.
4233 * Don't do this if we are expanding wild cards (would eat
4234 * typeahead).
4235 * Don't do this when filtering and terminal is in cooked
4236 * mode, the shell command will handle the I/O. Avoids
4237 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004238 * Don't get characters when the child has already
4239 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004240 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004241 * while (noread_cnt > 4), avoids that ":r !ls" eats
4242 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 */
4244 len = 0;
4245 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004246 && ((options &
4247 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4248 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004249# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004250 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004251# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004252 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004253 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004254 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004256 if (ta_len == 0)
4257 {
4258 /* Get extra characters when we don't have any.
4259 * Reset the counter and timer. */
4260 noread_cnt = 0;
4261# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4262 gettimeofday(&start_tv, NULL);
4263# endif
4264 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4265 }
4266 if (ta_len > 0 || len > 0)
4267 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 /*
4269 * For pipes:
4270 * Check for CTRL-C: send interrupt signal to child.
4271 * Check for CTRL-D: EOF, close pipe to child.
4272 */
4273 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4274 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004275# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 /*
4277 * Send SIGINT to the child's group or all
4278 * processes in our group.
4279 */
4280 if (ta_buf[ta_len] == Ctrl_C
4281 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004282 {
4283# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004285# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004288 if (wpid > 0)
4289 kill(wpid, SIGINT);
4290 }
4291# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 if (pty_master_fd < 0 && toshell_fd >= 0
4293 && ta_buf[ta_len] == Ctrl_D)
4294 {
4295 close(toshell_fd);
4296 toshell_fd = -1;
4297 }
4298 }
4299
4300 /* replace K_BS by <BS> and K_DEL by <DEL> */
4301 for (i = ta_len; i < ta_len + len; ++i)
4302 {
4303 if (ta_buf[i] == CSI && len - i > 2)
4304 {
4305 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4306 if (c == K_DEL || c == K_KDEL || c == K_BS)
4307 {
4308 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4309 (size_t)(len - i - 2));
4310 if (c == K_DEL || c == K_KDEL)
4311 ta_buf[i] = DEL;
4312 else
4313 ta_buf[i] = Ctrl_H;
4314 len -= 2;
4315 }
4316 }
4317 else if (ta_buf[i] == '\r')
4318 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004319# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004321 i += (*mb_ptr2len)(ta_buf + i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 }
4324
4325 /*
4326 * For pipes: echo the typed characters.
4327 * For a pty this does not seem to work.
4328 */
4329 if (pty_master_fd < 0)
4330 {
4331 for (i = ta_len; i < ta_len + len; ++i)
4332 {
4333 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4334 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004335# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 else if (has_mbyte)
4337 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004338 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339
4340 msg_outtrans_len(ta_buf + i, l);
4341 i += l - 1;
4342 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004343# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 else
4345 msg_outtrans_len(ta_buf + i, 1);
4346 }
4347 windgoto(msg_row, msg_col);
4348 out_flush();
4349 }
4350
4351 ta_len += len;
4352
4353 /*
4354 * Write the characters to the child, unless EOF has
4355 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004356 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004357 * When writing buffer lines, drop the typed
4358 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004360 if (options & SHELL_WRITE)
4361 ta_len = 0;
4362 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 {
4364 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4365 if (len > 0)
4366 {
4367 ta_len -= len;
4368 mch_memmove(ta_buf, ta_buf + len, ta_len);
4369 }
4370 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004371 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 }
4373
Bram Moolenaardf177f62005-02-22 08:39:57 +00004374 if (got_int)
4375 {
4376 /* CTRL-C sends a signal to the child, we ignore it
4377 * ourselves */
4378# ifdef HAVE_SETSID
4379 kill(-pid, SIGINT);
4380# else
4381 kill(0, SIGINT);
4382# endif
4383 if (wpid > 0)
4384 kill(wpid, SIGINT);
4385 got_int = FALSE;
4386 }
4387
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 /*
4389 * Check if the child has any characters to be printed.
4390 * Read them and write them to our window. Repeat this as
4391 * long as there is something to do, avoid the 10ms wait
4392 * for mch_inchar(), or sending typeahead characters to
4393 * the external process.
4394 * TODO: This should handle escape sequences, compatible
4395 * to some terminal (vt52?).
4396 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004397 ++noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4399 {
4400 len = read(fromshell_fd, (char *)buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004401# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004403# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004405# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 );
4407 if (len <= 0) /* end of file or error */
4408 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004409
4410 noread_cnt = 0;
4411 if (options & SHELL_READ)
4412 {
4413 /* Do NUL -> NL translation, append NL separated
4414 * lines to the current buffer. */
4415 for (i = 0; i < len; ++i)
4416 {
4417 if (buffer[i] == NL)
4418 append_ga_line(&ga);
4419 else if (buffer[i] == NUL)
4420 ga_append(&ga, NL);
4421 else
4422 ga_append(&ga, buffer[i]);
4423 }
4424 }
4425# ifdef FEAT_MBYTE
4426 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 {
4428 int l;
4429
Bram Moolenaardf177f62005-02-22 08:39:57 +00004430 len += buffer_off;
4431 buffer[len] = NUL;
4432
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 /* Check if the last character in buffer[] is
4434 * incomplete, keep these bytes for the next
4435 * round. */
4436 for (p = buffer; p < buffer + len; p += l)
4437 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004438 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 if (l == 0)
4440 l = 1; /* NUL byte? */
4441 else if (MB_BYTE2LEN(*p) != l)
4442 break;
4443 }
4444 if (p == buffer) /* no complete character */
4445 {
4446 /* avoid getting stuck at an illegal byte */
4447 if (len >= 12)
4448 ++p;
4449 else
4450 {
4451 buffer_off = len;
4452 continue;
4453 }
4454 }
4455 c = *p;
4456 *p = NUL;
4457 msg_puts(buffer);
4458 if (p < buffer + len)
4459 {
4460 *p = c;
4461 buffer_off = (buffer + len) - p;
4462 mch_memmove(buffer, p, buffer_off);
4463 continue;
4464 }
4465 buffer_off = 0;
4466 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004467# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 {
4470 buffer[len] = NUL;
4471 msg_puts(buffer);
4472 }
4473
4474 windgoto(msg_row, msg_col);
4475 cursor_on();
4476 out_flush();
4477 if (got_int)
4478 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004479
4480# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4481 {
4482 struct timeval now_tv;
4483 long msec;
4484
4485 /* Avoid that we keep looping here without
4486 * checking for a CTRL-C for a long time. Don't
4487 * break out too often to avoid losing typeahead. */
4488 gettimeofday(&now_tv, NULL);
4489 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4490 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4491 if (msec > 2000)
4492 {
4493 noread_cnt = 5;
4494 break;
4495 }
4496 }
4497# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 }
4499
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004500 /* If we already detected the child has finished break the
4501 * loop now. */
4502 if (wait_pid == pid)
4503 break;
4504
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 /*
4506 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004507 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004509# ifdef __NeXT__
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004511# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004513# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4515 || (wait_pid == pid && WIFEXITED(status)))
4516 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004517 /* Don't break the loop yet, try reading more
4518 * characters from "fromshell_fd" first. When using
4519 * pipes there might still be something to read and
4520 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004523 else
4524 wait_pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 }
4526finished:
4527 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004528 if (options & SHELL_READ)
4529 {
4530 if (ga.ga_len > 0)
4531 {
4532 append_ga_line(&ga);
4533 /* remember that the NL was missing */
4534 write_no_eol_lnum = curwin->w_cursor.lnum;
4535 }
4536 else
4537 write_no_eol_lnum = 0;
4538 ga_clear(&ga);
4539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 /*
4542 * Give all typeahead that wasn't used back to ui_inchar().
4543 */
4544 if (ta_len)
4545 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 State = old_State;
4547 if (toshell_fd >= 0)
4548 close(toshell_fd);
4549 close(fromshell_fd);
4550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551
4552 /*
4553 * Wait until our child has exited.
4554 * Ignore wait() returning pids of other children and returning
4555 * because of some signal like SIGWINCH.
4556 * Don't wait if wait_pid was already set above, indicating the
4557 * child already exited.
4558 */
4559 while (wait_pid != pid)
4560 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004561# ifdef _THREAD_SAFE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 /* Ugly hack: when compiled with Python threads are probably
4563 * used, in which case wait() sometimes hangs for no obvious
4564 * reason. Use waitpid() instead and loop (like the GUI). */
4565# ifdef __NeXT__
4566 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4567# else
4568 wait_pid = waitpid(pid, &status, WNOHANG);
4569# endif
4570 if (wait_pid == 0)
4571 {
4572 /* Wait for 1/100 sec before trying again. */
4573 mch_delay(10L, TRUE);
4574 continue;
4575 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004576# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 wait_pid = wait(&status);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004578# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 if (wait_pid <= 0
4580# ifdef ECHILD
4581 && errno == ECHILD
4582# endif
4583 )
4584 break;
4585 }
4586
Bram Moolenaardf177f62005-02-22 08:39:57 +00004587 /* Make sure the child that writes to the external program is
4588 * dead. */
4589 if (wpid > 0)
4590 kill(wpid, SIGKILL);
4591
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 /*
4593 * Set to raw mode right now, otherwise a CTRL-C after
4594 * catch_signals() will kill Vim.
4595 */
4596 if (tmode == TMODE_RAW)
4597 settmode(TMODE_RAW);
4598 did_settmode = TRUE;
4599 set_signals();
4600
4601 if (WIFEXITED(status))
4602 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00004603 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 retval = WEXITSTATUS(status);
4605 if (retval && !emsg_silent)
4606 {
4607 if (retval == EXEC_FAILED)
4608 {
4609 MSG_PUTS(_("\nCannot execute shell "));
4610 msg_outtrans(p_sh);
4611 msg_putchar('\n');
4612 }
4613 else if (!(options & SHELL_SILENT))
4614 {
4615 MSG_PUTS(_("\nshell returned "));
4616 msg_outnum((long)retval);
4617 msg_putchar('\n');
4618 }
4619 }
4620 }
4621 else
4622 MSG_PUTS(_("\nCommand terminated\n"));
4623 }
4624 }
4625 vim_free(argv);
4626
4627error:
4628 if (!did_settmode)
4629 if (tmode == TMODE_RAW)
4630 settmode(TMODE_RAW); /* set to raw mode */
4631# ifdef FEAT_TITLE
4632 resettitle();
4633# endif
4634 vim_free(newcmd);
4635
4636 return retval;
4637
4638#endif /* USE_SYSTEM */
4639}
4640
4641/*
4642 * Check for CTRL-C typed by reading all available characters.
4643 * In cooked mode we should get SIGINT, no need to check.
4644 */
4645 void
4646mch_breakcheck()
4647{
4648 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4649 fill_input_buf(FALSE);
4650}
4651
4652/*
4653 * Wait "msec" msec until a character is available from the keyboard or from
4654 * inbuf[]. msec == -1 will block forever.
4655 * When a GUI is being used, this will never get called -- webb
4656 */
4657 static int
4658WaitForChar(msec)
4659 long msec;
4660{
4661#ifdef FEAT_MOUSE_GPM
4662 int gpm_process_wanted;
4663#endif
4664#ifdef FEAT_XCLIPBOARD
4665 int rest;
4666#endif
4667 int avail;
4668
4669 if (input_available()) /* something in inbuf[] */
4670 return 1;
4671
4672#if defined(FEAT_MOUSE_DEC)
4673 /* May need to query the mouse position. */
4674 if (WantQueryMouse)
4675 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004676 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4678 }
4679#endif
4680
4681 /*
4682 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4683 * events. This is a bit complicated, because they might both be defined.
4684 */
4685#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4686# ifdef FEAT_XCLIPBOARD
4687 rest = 0;
4688 if (do_xterm_trace())
4689 rest = msec;
4690# endif
4691 do
4692 {
4693# ifdef FEAT_XCLIPBOARD
4694 if (rest != 0)
4695 {
4696 msec = XT_TRACE_DELAY;
4697 if (rest >= 0 && rest < XT_TRACE_DELAY)
4698 msec = rest;
4699 if (rest >= 0)
4700 rest -= msec;
4701 }
4702# endif
4703# ifdef FEAT_MOUSE_GPM
4704 gpm_process_wanted = 0;
4705 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4706# else
4707 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4708# endif
4709 if (!avail)
4710 {
4711 if (input_available())
4712 return 1;
4713# ifdef FEAT_XCLIPBOARD
4714 if (rest == 0 || !do_xterm_trace())
4715# endif
4716 break;
4717 }
4718 }
4719 while (FALSE
4720# ifdef FEAT_MOUSE_GPM
4721 || (gpm_process_wanted && mch_gpm_process() == 0)
4722# endif
4723# ifdef FEAT_XCLIPBOARD
4724 || (!avail && rest != 0)
4725# endif
4726 );
4727
4728#else
4729 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4730#endif
4731 return avail;
4732}
4733
4734/*
4735 * Wait "msec" msec until a character is available from file descriptor "fd".
4736 * Time == -1 will block forever.
4737 * When a GUI is being used, this will not be used for input -- webb
4738 * Returns also, when a request from Sniff is waiting -- toni.
4739 * Or when a Linux GPM mouse event is waiting.
4740 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741#if defined(__BEOS__)
4742 int
4743#else
4744 static int
4745#endif
4746RealWaitForChar(fd, msec, check_for_gpm)
4747 int fd;
4748 long msec;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004749 int *check_for_gpm UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750{
4751 int ret;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004752#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 static int busy = FALSE;
4754
4755 /* May retry getting characters after an event was handled. */
4756# define MAY_LOOP
4757
4758# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4759 /* Remember at what time we started, so that we know how much longer we
4760 * should wait after being interrupted. */
4761# define USE_START_TV
4762 struct timeval start_tv;
4763
4764 if (msec > 0 && (
4765# ifdef FEAT_XCLIPBOARD
4766 xterm_Shell != (Widget)0
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004767# if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 ||
4769# endif
4770# endif
4771# ifdef USE_XSMP
4772 xsmp_icefd != -1
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004773# ifdef FEAT_MZSCHEME
4774 ||
4775# endif
4776# endif
4777# ifdef FEAT_MZSCHEME
4778 (mzthreads_allowed() && p_mzq > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779# endif
4780 ))
4781 gettimeofday(&start_tv, NULL);
4782# endif
4783
4784 /* Handle being called recursively. This may happen for the session
4785 * manager stuff, it may save the file, which does a breakcheck. */
4786 if (busy)
4787 return 0;
4788#endif
4789
4790#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004791 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792#endif
4793 {
4794#ifdef MAY_LOOP
4795 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004796# ifdef FEAT_MZSCHEME
4797 int mzquantum_used = FALSE;
4798# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799#endif
4800#ifndef HAVE_SELECT
4801 struct pollfd fds[5];
4802 int nfd;
4803# ifdef FEAT_XCLIPBOARD
4804 int xterm_idx = -1;
4805# endif
4806# ifdef FEAT_MOUSE_GPM
4807 int gpm_idx = -1;
4808# endif
4809# ifdef USE_XSMP
4810 int xsmp_idx = -1;
4811# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004812 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004814# ifdef FEAT_MZSCHEME
4815 mzvim_check_threads();
4816 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4817 {
4818 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4819 mzquantum_used = TRUE;
4820 }
4821# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 fds[0].fd = fd;
4823 fds[0].events = POLLIN;
4824 nfd = 1;
4825
4826# ifdef FEAT_SNIFF
4827# define SNIFF_IDX 1
4828 if (want_sniff_request)
4829 {
4830 fds[SNIFF_IDX].fd = fd_from_sniff;
4831 fds[SNIFF_IDX].events = POLLIN;
4832 nfd++;
4833 }
4834# endif
4835# ifdef FEAT_XCLIPBOARD
4836 if (xterm_Shell != (Widget)0)
4837 {
4838 xterm_idx = nfd;
4839 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4840 fds[nfd].events = POLLIN;
4841 nfd++;
4842 }
4843# endif
4844# ifdef FEAT_MOUSE_GPM
4845 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4846 {
4847 gpm_idx = nfd;
4848 fds[nfd].fd = gpm_fd;
4849 fds[nfd].events = POLLIN;
4850 nfd++;
4851 }
4852# endif
4853# ifdef USE_XSMP
4854 if (xsmp_icefd != -1)
4855 {
4856 xsmp_idx = nfd;
4857 fds[nfd].fd = xsmp_icefd;
4858 fds[nfd].events = POLLIN;
4859 nfd++;
4860 }
4861# endif
4862
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004863 ret = poll(fds, nfd, towait);
4864# ifdef FEAT_MZSCHEME
4865 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004866 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004867 finished = FALSE;
4868# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869
4870# ifdef FEAT_SNIFF
4871 if (ret < 0)
4872 sniff_disconnect(1);
4873 else if (want_sniff_request)
4874 {
4875 if (fds[SNIFF_IDX].revents & POLLHUP)
4876 sniff_disconnect(1);
4877 if (fds[SNIFF_IDX].revents & POLLIN)
4878 sniff_request_waiting = 1;
4879 }
4880# endif
4881# ifdef FEAT_XCLIPBOARD
4882 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4883 {
4884 xterm_update(); /* Maybe we should hand out clipboard */
4885 if (--ret == 0 && !input_available())
4886 /* Try again */
4887 finished = FALSE;
4888 }
4889# endif
4890# ifdef FEAT_MOUSE_GPM
4891 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4892 {
4893 *check_for_gpm = 1;
4894 }
4895# endif
4896# ifdef USE_XSMP
4897 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4898 {
4899 if (fds[xsmp_idx].revents & POLLIN)
4900 {
4901 busy = TRUE;
4902 xsmp_handle_requests();
4903 busy = FALSE;
4904 }
4905 else if (fds[xsmp_idx].revents & POLLHUP)
4906 {
4907 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004908 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 xsmp_close();
4910 }
4911 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004912 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 }
4914# endif
4915
4916
4917#else /* HAVE_SELECT */
4918
4919 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004920 struct timeval *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 fd_set rfds, efds;
4922 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004923 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004925# ifdef FEAT_MZSCHEME
4926 mzvim_check_threads();
4927 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4928 {
4929 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4930 mzquantum_used = TRUE;
4931 }
4932# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933# ifdef __EMX__
4934 /* don't check for incoming chars if not in raw mode, because select()
4935 * always returns TRUE then (in some version of emx.dll) */
4936 if (curr_tmode != TMODE_RAW)
4937 return 0;
4938# endif
4939
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004940 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004942 tv.tv_sec = towait / 1000;
4943 tv.tv_usec = (towait % 1000) * (1000000/1000);
4944 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004946 else
4947 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948
4949 /*
4950 * Select on ready for reading and exceptional condition (end of file).
4951 */
4952 FD_ZERO(&rfds); /* calls bzero() on a sun */
4953 FD_ZERO(&efds);
4954 FD_SET(fd, &rfds);
4955# if !defined(__QNX__) && !defined(__CYGWIN32__)
4956 /* For QNX select() always returns 1 if this is set. Why? */
4957 FD_SET(fd, &efds);
4958# endif
4959 maxfd = fd;
4960
4961# ifdef FEAT_SNIFF
4962 if (want_sniff_request)
4963 {
4964 FD_SET(fd_from_sniff, &rfds);
4965 FD_SET(fd_from_sniff, &efds);
4966 if (maxfd < fd_from_sniff)
4967 maxfd = fd_from_sniff;
4968 }
4969# endif
4970# ifdef FEAT_XCLIPBOARD
4971 if (xterm_Shell != (Widget)0)
4972 {
4973 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4974 if (maxfd < ConnectionNumber(xterm_dpy))
4975 maxfd = ConnectionNumber(xterm_dpy);
4976 }
4977# endif
4978# ifdef FEAT_MOUSE_GPM
4979 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4980 {
4981 FD_SET(gpm_fd, &rfds);
4982 FD_SET(gpm_fd, &efds);
4983 if (maxfd < gpm_fd)
4984 maxfd = gpm_fd;
4985 }
4986# endif
4987# ifdef USE_XSMP
4988 if (xsmp_icefd != -1)
4989 {
4990 FD_SET(xsmp_icefd, &rfds);
4991 FD_SET(xsmp_icefd, &efds);
4992 if (maxfd < xsmp_icefd)
4993 maxfd = xsmp_icefd;
4994 }
4995# endif
4996
4997# ifdef OLD_VMS
4998 /* Old VMS as v6.2 and older have broken select(). It waits more than
4999 * required. Should not be used */
5000 ret = 0;
5001# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005002 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
5003# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00005004# ifdef __TANDEM
5005 if (ret == -1 && errno == ENOTSUP)
5006 {
5007 FD_ZERO(&rfds);
5008 FD_ZERO(&efds);
5009 ret = 0;
5010 }
5011#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005012# ifdef FEAT_MZSCHEME
5013 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005014 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005015 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016# endif
5017
5018# ifdef FEAT_SNIFF
5019 if (ret < 0 )
5020 sniff_disconnect(1);
5021 else if (ret > 0 && want_sniff_request)
5022 {
5023 if (FD_ISSET(fd_from_sniff, &efds))
5024 sniff_disconnect(1);
5025 if (FD_ISSET(fd_from_sniff, &rfds))
5026 sniff_request_waiting = 1;
5027 }
5028# endif
5029# ifdef FEAT_XCLIPBOARD
5030 if (ret > 0 && xterm_Shell != (Widget)0
5031 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5032 {
5033 xterm_update(); /* Maybe we should hand out clipboard */
5034 /* continue looping when we only got the X event and the input
5035 * buffer is empty */
5036 if (--ret == 0 && !input_available())
5037 {
5038 /* Try again */
5039 finished = FALSE;
5040 }
5041 }
5042# endif
5043# ifdef FEAT_MOUSE_GPM
5044 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5045 {
5046 if (FD_ISSET(gpm_fd, &efds))
5047 gpm_close();
5048 else if (FD_ISSET(gpm_fd, &rfds))
5049 *check_for_gpm = 1;
5050 }
5051# endif
5052# ifdef USE_XSMP
5053 if (ret > 0 && xsmp_icefd != -1)
5054 {
5055 if (FD_ISSET(xsmp_icefd, &efds))
5056 {
5057 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005058 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 xsmp_close();
5060 if (--ret == 0)
5061 finished = FALSE; /* keep going if event was only one */
5062 }
5063 else if (FD_ISSET(xsmp_icefd, &rfds))
5064 {
5065 busy = TRUE;
5066 xsmp_handle_requests();
5067 busy = FALSE;
5068 if (--ret == 0)
5069 finished = FALSE; /* keep going if event was only one */
5070 }
5071 }
5072# endif
5073
5074#endif /* HAVE_SELECT */
5075
5076#ifdef MAY_LOOP
5077 if (finished || msec == 0)
5078 break;
5079
5080 /* We're going to loop around again, find out for how long */
5081 if (msec > 0)
5082 {
5083# ifdef USE_START_TV
5084 struct timeval mtv;
5085
5086 /* Compute remaining wait time. */
5087 gettimeofday(&mtv, NULL);
5088 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5089 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5090# else
5091 /* Guess we got interrupted halfway. */
5092 msec = msec / 2;
5093# endif
5094 if (msec <= 0)
5095 break; /* waited long enough */
5096 }
5097#endif
5098 }
5099
5100 return (ret > 0);
5101}
5102
5103#ifndef VMS
5104
5105#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005107 * Expand a path into all matching files and/or directories. Handles "*",
5108 * "?", "[a-z]", "**", etc.
5109 * "path" has backslashes before chars that are not to be expanded.
5110 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 */
5112 int
5113mch_expandpath(gap, path, flags)
5114 garray_T *gap;
5115 char_u *path;
5116 int flags; /* EW_* flags */
5117{
Bram Moolenaar02743632005-07-25 20:42:36 +00005118 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119}
5120#endif
5121
5122/*
5123 * mch_expand_wildcards() - this code does wild-card pattern matching using
5124 * the shell
5125 *
5126 * return OK for success, FAIL for error (you may lose some memory) and put
5127 * an error message in *file.
5128 *
5129 * num_pat is number of input patterns
5130 * pat is array of pointers to input patterns
5131 * num_file is pointer to number of matched file names
5132 * file is pointer to array of pointers to matched file names
5133 */
5134
5135#ifndef SEEK_SET
5136# define SEEK_SET 0
5137#endif
5138#ifndef SEEK_END
5139# define SEEK_END 2
5140#endif
5141
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005142#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144/* ARGSUSED */
5145 int
5146mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5147 int num_pat;
5148 char_u **pat;
5149 int *num_file;
5150 char_u ***file;
5151 int flags; /* EW_* flags */
5152{
5153 int i;
5154 size_t len;
5155 char_u *p;
5156 int dir;
5157#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005158 /*
5159 * This is the OS/2 implementation.
5160 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161# define EXPL_ALLOC_INC 16
5162 char_u **expl_files;
5163 size_t files_alloced, files_free;
5164 char_u *buf;
5165 int has_wildcard;
5166
5167 *num_file = 0; /* default: no files found */
5168 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5169 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5170 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5171 if (*file == NULL)
5172 return FAIL;
5173
5174 for (; num_pat > 0; num_pat--, pat++)
5175 {
5176 expl_files = NULL;
5177 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5178 /* expand environment var or home dir */
5179 buf = expand_env_save(*pat);
5180 else
5181 buf = vim_strsave(*pat);
5182 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005183 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 if (has_wildcard) /* yes, so expand them */
5185 expl_files = (char_u **)_fnexplode(buf);
5186
5187 /*
5188 * return value of buf if no wildcards left,
5189 * OR if no match AND EW_NOTFOUND is set.
5190 */
5191 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5192 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5193 { /* simply save the current contents of *buf */
5194 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5195 if (expl_files != NULL)
5196 {
5197 expl_files[0] = vim_strsave(buf);
5198 expl_files[1] = NULL;
5199 }
5200 }
5201 vim_free(buf);
5202
5203 /*
5204 * Count number of names resulting from expansion,
5205 * At the same time add a backslash to the end of names that happen to
5206 * be directories, and replace slashes with backslashes.
5207 */
5208 if (expl_files)
5209 {
5210 for (i = 0; (p = expl_files[i]) != NULL; i++)
5211 {
5212 dir = mch_isdir(p);
5213 /* If we don't want dirs and this is one, skip it */
5214 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5215 continue;
5216
Bram Moolenaara2031822006-03-07 22:29:51 +00005217 /* Skip files that are not executable if we check for that. */
5218 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5219 continue;
5220
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 if (--files_free == 0)
5222 {
5223 /* need more room in table of pointers */
5224 files_alloced += EXPL_ALLOC_INC;
5225 *file = (char_u **)vim_realloc(*file,
5226 sizeof(char_u **) * files_alloced);
5227 if (*file == NULL)
5228 {
5229 EMSG(_(e_outofmem));
5230 *num_file = 0;
5231 return FAIL;
5232 }
5233 files_free = EXPL_ALLOC_INC;
5234 }
5235 slash_adjust(p);
5236 if (dir)
5237 {
5238 /* For a directory we add a '/', unless it's already
5239 * there. */
5240 len = STRLEN(p);
5241 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5242 {
5243 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00005244 if (!after_pathsep((*file)[*num_file],
5245 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246 {
5247 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005248 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 }
5250 }
5251 }
5252 else
5253 {
5254 (*file)[*num_file] = vim_strsave(p);
5255 }
5256
5257 /*
5258 * Error message already given by either alloc or vim_strsave.
5259 * Should return FAIL, but returning OK works also.
5260 */
5261 if ((*file)[*num_file] == NULL)
5262 break;
5263 (*num_file)++;
5264 }
5265 _fnexplodefree((char **)expl_files);
5266 }
5267 }
5268 return OK;
5269
5270#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005271 /*
5272 * This is the non-OS/2 implementation (really Unix).
5273 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 int j;
5275 char_u *tempname;
5276 char_u *command;
5277 FILE *fd;
5278 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005279#define STYLE_ECHO 0 /* use "echo", the default */
5280#define STYLE_GLOB 1 /* use "glob", for csh */
5281#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5282#define STYLE_PRINT 3 /* use "print -N", for zsh */
5283#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5284 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 int shell_style = STYLE_ECHO;
5286 int check_spaces;
5287 static int did_find_nul = FALSE;
5288 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005289 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005290 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291
5292 *num_file = 0; /* default: no files found */
5293 *file = NULL;
5294
5295 /*
5296 * If there are no wildcards, just copy the names to allocated memory.
5297 * Saves a lot of time, because we don't have to start a new shell.
5298 */
5299 if (!have_wildcard(num_pat, pat))
5300 return save_patterns(num_pat, pat, num_file, file);
5301
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005302# ifdef HAVE_SANDBOX
5303 /* Don't allow any shell command in the sandbox. */
5304 if (sandbox != 0 && check_secure())
5305 return FAIL;
5306# endif
5307
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 /*
5309 * Don't allow the use of backticks in secure and restricted mode.
5310 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005311 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 for (i = 0; i < num_pat; ++i)
5313 if (vim_strchr(pat[i], '`') != NULL
5314 && (check_restricted() || check_secure()))
5315 return FAIL;
5316
5317 /*
5318 * get a name for the temp file
5319 */
5320 if ((tempname = vim_tempname('o')) == NULL)
5321 {
5322 EMSG(_(e_notmp));
5323 return FAIL;
5324 }
5325
5326 /*
5327 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00005328 * file.
5329 * STYLE_BT: NL separated
5330 * If expanding `cmd` execute it directly.
5331 * STYLE_GLOB: NUL separated
5332 * If we use *csh, "glob" will work better than "echo".
5333 * STYLE_PRINT: NL or NUL separated
5334 * If we use *zsh, "print -N" will work better than "glob".
5335 * STYLE_VIMGLOB: NL separated
5336 * If we use *sh*, we define "vimglob()".
5337 * STYLE_ECHO: space separated.
5338 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 */
5340 if (num_pat == 1 && *pat[0] == '`'
5341 && (len = STRLEN(pat[0])) > 2
5342 && *(pat[0] + len - 1) == '`')
5343 shell_style = STYLE_BT;
5344 else if ((len = STRLEN(p_sh)) >= 3)
5345 {
5346 if (STRCMP(p_sh + len - 3, "csh") == 0)
5347 shell_style = STYLE_GLOB;
5348 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5349 shell_style = STYLE_PRINT;
5350 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005351 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5352 "sh") != NULL)
5353 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354
Bram Moolenaarc7247912008-01-13 12:54:11 +00005355 /* Compute the length of the command. We need 2 extra bytes: for the
5356 * optional '&' and for the NUL.
5357 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005359 if (shell_style == STYLE_VIMGLOB)
5360 len += STRLEN(sh_vimglob_func);
5361
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005362 for (i = 0; i < num_pat; ++i)
5363 {
5364 /* Count the length of the patterns in the same way as they are put in
5365 * "command" below. */
5366#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005368#else
5369 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00005370 for (j = 0; pat[i][j] != NUL; ++j)
5371 {
5372 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5373 ++len; /* may add a backslash */
5374 ++len;
5375 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005376#endif
5377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 command = alloc(len);
5379 if (command == NULL)
5380 {
5381 /* out of memory */
5382 vim_free(tempname);
5383 return FAIL;
5384 }
5385
5386 /*
5387 * Build the shell command:
5388 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5389 * recognizes this).
5390 * - Add the shell command to print the expanded names.
5391 * - Add the temp file name.
5392 * - Add the file name patterns.
5393 */
5394 if (shell_style == STYLE_BT)
5395 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00005396 /* change `command; command& ` to (command; command ) */
5397 STRCPY(command, "(");
5398 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005400 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 while (p > command && vim_iswhite(*p))
5402 --p;
5403 if (*p == '&') /* remove trailing '&' */
5404 {
5405 ampersent = TRUE;
5406 *p = ' ';
5407 }
5408 STRCAT(command, ">");
5409 }
5410 else
5411 {
5412 if (flags & EW_NOTFOUND)
5413 STRCPY(command, "set nonomatch; ");
5414 else
5415 STRCPY(command, "unset nonomatch; ");
5416 if (shell_style == STYLE_GLOB)
5417 STRCAT(command, "glob >");
5418 else if (shell_style == STYLE_PRINT)
5419 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00005420 else if (shell_style == STYLE_VIMGLOB)
5421 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 else
5423 STRCAT(command, "echo >");
5424 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005425
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00005427
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 if (shell_style != STYLE_BT)
5429 for (i = 0; i < num_pat; ++i)
5430 {
5431 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00005432 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005433 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434#ifdef USE_SYSTEM
5435 STRCAT(command, " \"");
5436 STRCAT(command, pat[i]);
5437 STRCAT(command, "\"");
5438#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00005439 int intick = FALSE;
5440
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 p = command + STRLEN(command);
5442 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00005443 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005444 {
5445 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00005446 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005447 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5448 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005449 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00005450 * backslash inside backticks, before a special character
5451 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005452 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00005453 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5454 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005455 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005456 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005457 }
5458 else if (!intick && vim_strchr(SHELL_SPECIAL,
Bram Moolenaar582fd852005-03-28 20:58:01 +00005459 pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00005460 /* Put a backslash before a special character, but not
5461 * when inside ``. */
5462 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005463
5464 /* Copy one character. */
5465 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00005466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 *p = NUL;
5468#endif
5469 }
5470 if (flags & EW_SILENT)
5471 show_shell_mess = FALSE;
5472 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00005473 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474
5475 /*
5476 * Using zsh -G: If a pattern has no matches, it is just deleted from
5477 * the argument list, otherwise zsh gives an error message and doesn't
5478 * expand any other pattern.
5479 */
5480 if (shell_style == STYLE_PRINT)
5481 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5482
5483 /*
5484 * If we use -f then shell variables set in .cshrc won't get expanded.
5485 * vi can do it, so we will too, but it is only necessary if there is a "$"
5486 * in one of the patterns, otherwise we can still use the fast option.
5487 */
5488 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5489 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5490
5491 /*
5492 * execute the shell command
5493 */
5494 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5495
5496 /* When running in the background, give it some time to create the temp
5497 * file, but don't wait for it to finish. */
5498 if (ampersent)
5499 mch_delay(10L, TRUE);
5500
5501 extra_shell_arg = NULL; /* cleanup */
5502 show_shell_mess = TRUE;
5503 vim_free(command);
5504
Bram Moolenaarc7247912008-01-13 12:54:11 +00005505 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 {
5507 mch_remove(tempname);
5508 vim_free(tempname);
5509 /*
5510 * With interactive completion, the error message is not printed.
5511 * However with USE_SYSTEM, I don't know how to turn off error messages
5512 * from the shell, so screen may still get messed up -- webb.
5513 */
5514#ifndef USE_SYSTEM
5515 if (!(flags & EW_SILENT))
5516#endif
5517 {
5518 redraw_later_clear(); /* probably messed up screen */
5519 msg_putchar('\n'); /* clear bottom line quickly */
5520 cmdline_row = Rows - 1; /* continue on last line */
5521#ifdef USE_SYSTEM
5522 if (!(flags & EW_SILENT))
5523#endif
5524 {
5525 MSG(_(e_wildexpand));
5526 msg_start(); /* don't overwrite this message */
5527 }
5528 }
5529 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5530 * EW_NOTFOUND is given */
5531 if (shell_style == STYLE_BT)
5532 return FAIL;
5533 goto notfound;
5534 }
5535
5536 /*
5537 * read the names from the file into memory
5538 */
5539 fd = fopen((char *)tempname, READBIN);
5540 if (fd == NULL)
5541 {
5542 /* Something went wrong, perhaps a file name with a special char. */
5543 if (!(flags & EW_SILENT))
5544 {
5545 MSG(_(e_wildexpand));
5546 msg_start(); /* don't overwrite this message */
5547 }
5548 vim_free(tempname);
5549 goto notfound;
5550 }
5551 fseek(fd, 0L, SEEK_END);
5552 len = ftell(fd); /* get size of temp file */
5553 fseek(fd, 0L, SEEK_SET);
5554 buffer = alloc(len + 1);
5555 if (buffer == NULL)
5556 {
5557 /* out of memory */
5558 mch_remove(tempname);
5559 vim_free(tempname);
5560 fclose(fd);
5561 return FAIL;
5562 }
5563 i = fread((char *)buffer, 1, len, fd);
5564 fclose(fd);
5565 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00005566 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 {
5568 /* unexpected read error */
5569 EMSG2(_(e_notread), tempname);
5570 vim_free(tempname);
5571 vim_free(buffer);
5572 return FAIL;
5573 }
5574 vim_free(tempname);
5575
Bram Moolenaarc7247912008-01-13 12:54:11 +00005576# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5578 p = buffer;
5579 for (i = 0; i < len; ++i)
5580 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5581 *p++ = buffer[i];
5582 len = p - buffer;
5583# endif
5584
5585
5586 /* file names are separated with Space */
5587 if (shell_style == STYLE_ECHO)
5588 {
5589 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5590 p = buffer;
5591 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5592 {
5593 while (*p != ' ' && *p != '\n')
5594 ++p;
5595 p = skipwhite(p); /* skip to next entry */
5596 }
5597 }
5598 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005599 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 {
5601 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5602 p = buffer;
5603 for (i = 0; *p != NUL; ++i) /* count number of entries */
5604 {
5605 while (*p != '\n' && *p != NUL)
5606 ++p;
5607 if (*p != NUL)
5608 ++p;
5609 p = skipwhite(p); /* skip leading white space */
5610 }
5611 }
5612 /* file names are separated with NUL */
5613 else
5614 {
5615 /*
5616 * Some versions of zsh use spaces instead of NULs to separate
5617 * results. Only do this when there is no NUL before the end of the
5618 * buffer, otherwise we would never be able to use file names with
5619 * embedded spaces when zsh does use NULs.
5620 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5621 * don't check for spaces again.
5622 */
5623 check_spaces = FALSE;
5624 if (shell_style == STYLE_PRINT && !did_find_nul)
5625 {
5626 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaar78a15312009-05-15 19:33:18 +00005627 if (len && (int)STRLEN(buffer) < (int)len - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 did_find_nul = TRUE;
5629 else
5630 check_spaces = TRUE;
5631 }
5632
5633 /*
5634 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5635 * already is one, for STYLE_GLOB it needs to be added.
5636 */
5637 if (len && buffer[len - 1] == NUL)
5638 --len;
5639 else
5640 buffer[len] = NUL;
5641 i = 0;
5642 for (p = buffer; p < buffer + len; ++p)
5643 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5644 {
5645 ++i;
5646 *p = NUL;
5647 }
5648 if (len)
5649 ++i; /* count last entry */
5650 }
5651 if (i == 0)
5652 {
5653 /*
5654 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5655 * /bin/sh will happily expand it to nothing rather than returning an
5656 * error; and hey, it's good to check anyway -- webb.
5657 */
5658 vim_free(buffer);
5659 goto notfound;
5660 }
5661 *num_file = i;
5662 *file = (char_u **)alloc(sizeof(char_u *) * i);
5663 if (*file == NULL)
5664 {
5665 /* out of memory */
5666 vim_free(buffer);
5667 return FAIL;
5668 }
5669
5670 /*
5671 * Isolate the individual file names.
5672 */
5673 p = buffer;
5674 for (i = 0; i < *num_file; ++i)
5675 {
5676 (*file)[i] = p;
5677 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005678 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5679 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00005681 while (!(shell_style == STYLE_ECHO && *p == ' ')
5682 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 ++p;
5684 if (p == buffer + len) /* last entry */
5685 *p = NUL;
5686 else
5687 {
5688 *p++ = NUL;
5689 p = skipwhite(p); /* skip to next entry */
5690 }
5691 }
5692 else /* NUL separates */
5693 {
5694 while (*p && p < buffer + len) /* skip entry */
5695 ++p;
5696 ++p; /* skip NUL */
5697 }
5698 }
5699
5700 /*
5701 * Move the file names to allocated memory.
5702 */
5703 for (j = 0, i = 0; i < *num_file; ++i)
5704 {
5705 /* Require the files to exist. Helps when using /bin/sh */
5706 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5707 continue;
5708
5709 /* check if this entry should be included */
5710 dir = (mch_isdir((*file)[i]));
5711 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5712 continue;
5713
Bram Moolenaara2031822006-03-07 22:29:51 +00005714 /* Skip files that are not executable if we check for that. */
5715 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5716 continue;
5717
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5719 if (p)
5720 {
5721 STRCPY(p, (*file)[i]);
5722 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00005723 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 (*file)[j++] = p;
5725 }
5726 }
5727 vim_free(buffer);
5728 *num_file = j;
5729
5730 if (*num_file == 0) /* rejected all entries */
5731 {
5732 vim_free(*file);
5733 *file = NULL;
5734 goto notfound;
5735 }
5736
5737 return OK;
5738
5739notfound:
5740 if (flags & EW_NOTFOUND)
5741 return save_patterns(num_pat, pat, num_file, file);
5742 return FAIL;
5743
5744#endif /* __EMX__ */
5745}
5746
5747#endif /* VMS */
5748
5749#ifndef __EMX__
5750 static int
5751save_patterns(num_pat, pat, num_file, file)
5752 int num_pat;
5753 char_u **pat;
5754 int *num_file;
5755 char_u ***file;
5756{
5757 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005758 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759
5760 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5761 if (*file == NULL)
5762 return FAIL;
5763 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00005764 {
5765 s = vim_strsave(pat[i]);
5766 if (s != NULL)
5767 /* Be compatible with expand_filename(): halve the number of
5768 * backslashes. */
5769 backslash_halve(s);
5770 (*file)[i] = s;
5771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 *num_file = num_pat;
5773 return OK;
5774}
5775#endif
5776
5777
5778/*
5779 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5780 * expand.
5781 */
5782 int
5783mch_has_exp_wildcard(p)
5784 char_u *p;
5785{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005786 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 {
5788#ifndef OS2
5789 if (*p == '\\' && p[1] != NUL)
5790 ++p;
5791 else
5792#endif
5793 if (vim_strchr((char_u *)
5794#ifdef VMS
5795 "*?%"
5796#else
5797# ifdef OS2
5798 "*?"
5799# else
5800 "*?[{'"
5801# endif
5802#endif
5803 , *p) != NULL)
5804 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 }
5806 return FALSE;
5807}
5808
5809/*
5810 * Return TRUE if the string "p" contains a wildcard.
5811 * Don't recognize '~' at the end as a wildcard.
5812 */
5813 int
5814mch_has_wildcard(p)
5815 char_u *p;
5816{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005817 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 {
5819#ifndef OS2
5820 if (*p == '\\' && p[1] != NUL)
5821 ++p;
5822 else
5823#endif
5824 if (vim_strchr((char_u *)
5825#ifdef VMS
5826 "*?%$"
5827#else
5828# ifdef OS2
5829# ifdef VIM_BACKTICK
5830 "*?$`"
5831# else
5832 "*?$"
5833# endif
5834# else
5835 "*?[{`'$"
5836# endif
5837#endif
5838 , *p) != NULL
5839 || (*p == '~' && p[1] != NUL))
5840 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 }
5842 return FALSE;
5843}
5844
5845#ifndef __EMX__
5846 static int
5847have_wildcard(num, file)
5848 int num;
5849 char_u **file;
5850{
5851 int i;
5852
5853 for (i = 0; i < num; i++)
5854 if (mch_has_wildcard(file[i]))
5855 return 1;
5856 return 0;
5857}
5858
5859 static int
5860have_dollars(num, file)
5861 int num;
5862 char_u **file;
5863{
5864 int i;
5865
5866 for (i = 0; i < num; i++)
5867 if (vim_strchr(file[i], '$') != NULL)
5868 return TRUE;
5869 return FALSE;
5870}
5871#endif /* ifndef __EMX__ */
5872
5873#ifndef HAVE_RENAME
5874/*
5875 * Scaled-down version of rename(), which is missing in Xenix.
5876 * This version can only move regular files and will fail if the
5877 * destination exists.
5878 */
5879 int
5880mch_rename(src, dest)
5881 const char *src, *dest;
5882{
5883 struct stat st;
5884
5885 if (stat(dest, &st) >= 0) /* fail if destination exists */
5886 return -1;
5887 if (link(src, dest) != 0) /* link file to new name */
5888 return -1;
5889 if (mch_remove(src) == 0) /* delete link to old name */
5890 return 0;
5891 return -1;
5892}
5893#endif /* !HAVE_RENAME */
5894
5895#ifdef FEAT_MOUSE_GPM
5896/*
5897 * Initializes connection with gpm (if it isn't already opened)
5898 * Return 1 if succeeded (or connection already opened), 0 if failed
5899 */
5900 static int
5901gpm_open()
5902{
5903 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5904
5905 if (!gpm_flag)
5906 {
5907 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5908 gpm_connect.defaultMask = ~GPM_HARD;
5909 /* Default handling for mouse move*/
5910 gpm_connect.minMod = 0; /* Handle any modifier keys */
5911 gpm_connect.maxMod = 0xffff;
5912 if (Gpm_Open(&gpm_connect, 0) > 0)
5913 {
5914 /* gpm library tries to handling TSTP causes
5915 * problems. Anyways, we close connection to Gpm whenever
5916 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005917 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00005919# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00005921# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 return 1; /* succeed */
5923 }
5924 if (gpm_fd == -2)
5925 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5926 return 0;
5927 }
5928 return 1; /* already open */
5929}
5930
5931/*
5932 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 */
5934 static void
5935gpm_close()
5936{
5937 if (gpm_flag && gpm_fd >= 0) /* if Open */
5938 Gpm_Close();
5939}
5940
5941/* Reads gpm event and adds special keys to input buf. Returns length of
5942 * generated key sequence.
5943 * This function is made after gui_send_mouse_event
5944 */
5945 static int
5946mch_gpm_process()
5947{
5948 int button;
5949 static Gpm_Event gpm_event;
5950 char_u string[6];
5951 int_u vim_modifiers;
5952 int row,col;
5953 unsigned char buttons_mask;
5954 unsigned char gpm_modifiers;
5955 static unsigned char old_buttons = 0;
5956
5957 Gpm_GetEvent(&gpm_event);
5958
5959#ifdef FEAT_GUI
5960 /* Don't put events in the input queue now. */
5961 if (hold_gui_events)
5962 return 0;
5963#endif
5964
5965 row = gpm_event.y - 1;
5966 col = gpm_event.x - 1;
5967
5968 string[0] = ESC; /* Our termcode */
5969 string[1] = 'M';
5970 string[2] = 'G';
5971 switch (GPM_BARE_EVENTS(gpm_event.type))
5972 {
5973 case GPM_DRAG:
5974 string[3] = MOUSE_DRAG;
5975 break;
5976 case GPM_DOWN:
5977 buttons_mask = gpm_event.buttons & ~old_buttons;
5978 old_buttons = gpm_event.buttons;
5979 switch (buttons_mask)
5980 {
5981 case GPM_B_LEFT:
5982 button = MOUSE_LEFT;
5983 break;
5984 case GPM_B_MIDDLE:
5985 button = MOUSE_MIDDLE;
5986 break;
5987 case GPM_B_RIGHT:
5988 button = MOUSE_RIGHT;
5989 break;
5990 default:
5991 return 0;
5992 /*Don't know what to do. Can more than one button be
5993 * reported in one event? */
5994 }
5995 string[3] = (char_u)(button | 0x20);
5996 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5997 break;
5998 case GPM_UP:
5999 string[3] = MOUSE_RELEASE;
6000 old_buttons &= ~gpm_event.buttons;
6001 break;
6002 default:
6003 return 0;
6004 }
6005 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6006 gpm_modifiers = gpm_event.modifiers;
6007 vim_modifiers = 0x0;
6008 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6009 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6010 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6011 */
6012 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6013 vim_modifiers |= MOUSE_SHIFT;
6014
6015 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6016 vim_modifiers |= MOUSE_CTRL;
6017 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6018 vim_modifiers |= MOUSE_ALT;
6019 string[3] |= vim_modifiers;
6020 string[4] = (char_u)(col + ' ' + 1);
6021 string[5] = (char_u)(row + ' ' + 1);
6022 add_to_input_buf(string, 6);
6023 return 6;
6024}
6025#endif /* FEAT_MOUSE_GPM */
6026
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006027#ifdef FEAT_SYSMOUSE
6028/*
6029 * Initialize connection with sysmouse.
6030 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6031 * output, any sysmouse output than will be processed via sig_sysmouse().
6032 * Return OK if succeeded, FAIL if failed.
6033 */
6034 static int
6035sysmouse_open()
6036{
6037 struct mouse_info mouse;
6038
6039 mouse.operation = MOUSE_MODE;
6040 mouse.u.mode.mode = 0;
6041 mouse.u.mode.signal = SIGUSR2;
6042 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6043 {
6044 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6045 mouse.operation = MOUSE_SHOW;
6046 ioctl(1, CONS_MOUSECTL, &mouse);
6047 return OK;
6048 }
6049 return FAIL;
6050}
6051
6052/*
6053 * Stop processing SIGUSR2 signals, and also make sure that
6054 * virtual console do not send us any sysmouse related signal.
6055 */
6056 static void
6057sysmouse_close()
6058{
6059 struct mouse_info mouse;
6060
6061 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6062 mouse.operation = MOUSE_MODE;
6063 mouse.u.mode.mode = 0;
6064 mouse.u.mode.signal = 0;
6065 ioctl(1, CONS_MOUSECTL, &mouse);
6066}
6067
6068/*
6069 * Gets info from sysmouse and adds special keys to input buf.
6070 */
6071/* ARGSUSED */
6072 static RETSIGTYPE
6073sig_sysmouse SIGDEFARG(sigarg)
6074{
6075 struct mouse_info mouse;
6076 struct video_info video;
6077 char_u string[6];
6078 int row, col;
6079 int button;
6080 int buttons;
6081 static int oldbuttons = 0;
6082
6083#ifdef FEAT_GUI
6084 /* Don't put events in the input queue now. */
6085 if (hold_gui_events)
6086 return;
6087#endif
6088
6089 mouse.operation = MOUSE_GETINFO;
6090 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6091 && ioctl(1, FBIO_MODEINFO, &video) != -1
6092 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6093 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6094 {
6095 row = mouse.u.data.y / video.vi_cheight;
6096 col = mouse.u.data.x / video.vi_cwidth;
6097 buttons = mouse.u.data.buttons;
6098 string[0] = ESC; /* Our termcode */
6099 string[1] = 'M';
6100 string[2] = 'S';
6101 if (oldbuttons == buttons && buttons != 0)
6102 {
6103 button = MOUSE_DRAG;
6104 }
6105 else
6106 {
6107 switch (buttons)
6108 {
6109 case 0:
6110 button = MOUSE_RELEASE;
6111 break;
6112 case 1:
6113 button = MOUSE_LEFT;
6114 break;
6115 case 2:
6116 button = MOUSE_MIDDLE;
6117 break;
6118 case 4:
6119 button = MOUSE_RIGHT;
6120 break;
6121 default:
6122 return;
6123 }
6124 oldbuttons = buttons;
6125 }
6126 string[3] = (char_u)(button);
6127 string[4] = (char_u)(col + ' ' + 1);
6128 string[5] = (char_u)(row + ' ' + 1);
6129 add_to_input_buf(string, 6);
6130 }
6131 return;
6132}
6133#endif /* FEAT_SYSMOUSE */
6134
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135#if defined(FEAT_LIBCALL) || defined(PROTO)
6136typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6137typedef char_u * (*INTPROCSTR)__ARGS((int));
6138typedef int (*STRPROCINT)__ARGS((char_u *));
6139typedef int (*INTPROCINT)__ARGS((int));
6140
6141/*
6142 * Call a DLL routine which takes either a string or int param
6143 * and returns an allocated string.
6144 */
6145 int
6146mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6147 char_u *libname;
6148 char_u *funcname;
6149 char_u *argstring; /* NULL when using a argint */
6150 int argint;
6151 char_u **string_result;/* NULL when using number_result */
6152 int *number_result;
6153{
6154# if defined(USE_DLOPEN)
6155 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006156 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157# else
6158 shl_t hinstLib;
6159# endif
6160 STRPROCSTR ProcAdd;
6161 INTPROCSTR ProcAddI;
6162 char_u *retval_str = NULL;
6163 int retval_int = 0;
6164 int success = FALSE;
6165
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006166 /*
6167 * Get a handle to the DLL module.
6168 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006170 /* First clear any error, it's not cleared by the dlopen() call. */
6171 (void)dlerror();
6172
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173 hinstLib = dlopen((char *)libname, RTLD_LAZY
6174# ifdef RTLD_LOCAL
6175 | RTLD_LOCAL
6176# endif
6177 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006178 if (hinstLib == NULL)
6179 {
6180 /* "dlerr" must be used before dlclose() */
6181 dlerr = (char *)dlerror();
6182 if (dlerr != NULL)
6183 EMSG2(_("dlerror = \"%s\""), dlerr);
6184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185# else
6186 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6187# endif
6188
6189 /* If the handle is valid, try to get the function address. */
6190 if (hinstLib != NULL)
6191 {
6192# ifdef HAVE_SETJMP_H
6193 /*
6194 * Catch a crash when calling the library function. For example when
6195 * using a number where a string pointer is expected.
6196 */
6197 mch_startjmp();
6198 if (SETJMP(lc_jump_env) != 0)
6199 {
6200 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006201# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006202 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006203# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 mch_didjmp();
6205 }
6206 else
6207# endif
6208 {
6209 retval_str = NULL;
6210 retval_int = 0;
6211
6212 if (argstring != NULL)
6213 {
6214# if defined(USE_DLOPEN)
6215 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006216 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217# else
6218 if (shl_findsym(&hinstLib, (const char *)funcname,
6219 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6220 ProcAdd = NULL;
6221# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006222 if ((success = (ProcAdd != NULL
6223# if defined(USE_DLOPEN)
6224 && dlerr == NULL
6225# endif
6226 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 {
6228 if (string_result == NULL)
6229 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6230 else
6231 retval_str = (ProcAdd)(argstring);
6232 }
6233 }
6234 else
6235 {
6236# if defined(USE_DLOPEN)
6237 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006238 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239# else
6240 if (shl_findsym(&hinstLib, (const char *)funcname,
6241 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6242 ProcAddI = NULL;
6243# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006244 if ((success = (ProcAddI != NULL
6245# if defined(USE_DLOPEN)
6246 && dlerr == NULL
6247# endif
6248 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 {
6250 if (string_result == NULL)
6251 retval_int = ((INTPROCINT)ProcAddI)(argint);
6252 else
6253 retval_str = (ProcAddI)(argint);
6254 }
6255 }
6256
6257 /* Save the string before we free the library. */
6258 /* Assume that a "1" or "-1" result is an illegal pointer. */
6259 if (string_result == NULL)
6260 *number_result = retval_int;
6261 else if (retval_str != NULL
6262 && retval_str != (char_u *)1
6263 && retval_str != (char_u *)-1)
6264 *string_result = vim_strsave(retval_str);
6265 }
6266
6267# ifdef HAVE_SETJMP_H
6268 mch_endjmp();
6269# ifdef SIGHASARG
6270 if (lc_signal != 0)
6271 {
6272 int i;
6273
6274 /* try to find the name of this signal */
6275 for (i = 0; signal_info[i].sig != -1; i++)
6276 if (lc_signal == signal_info[i].sig)
6277 break;
6278 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6279 }
6280# endif
6281# endif
6282
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006284 /* "dlerr" must be used before dlclose() */
6285 if (dlerr != NULL)
6286 EMSG2(_("dlerror = \"%s\""), dlerr);
6287
6288 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 (void)dlclose(hinstLib);
6290# else
6291 (void)shl_unload(hinstLib);
6292# endif
6293 }
6294
6295 if (!success)
6296 {
6297 EMSG2(_(e_libcall), funcname);
6298 return FAIL;
6299 }
6300
6301 return OK;
6302}
6303#endif
6304
6305#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6306static int xterm_trace = -1; /* default: disabled */
6307static int xterm_button;
6308
6309/*
6310 * Setup a dummy window for X selections in a terminal.
6311 */
6312 void
6313setup_term_clip()
6314{
6315 int z = 0;
6316 char *strp = "";
6317 Widget AppShell;
6318
6319 if (!x_connect_to_server())
6320 return;
6321
6322 open_app_context();
6323 if (app_context != NULL && xterm_Shell == (Widget)0)
6324 {
6325 int (*oldhandler)();
6326#if defined(HAVE_SETJMP_H)
6327 int (*oldIOhandler)();
6328#endif
6329# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6330 struct timeval start_tv;
6331
6332 if (p_verbose > 0)
6333 gettimeofday(&start_tv, NULL);
6334# endif
6335
6336 /* Ignore X errors while opening the display */
6337 oldhandler = XSetErrorHandler(x_error_check);
6338
6339#if defined(HAVE_SETJMP_H)
6340 /* Ignore X IO errors while opening the display */
6341 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6342 mch_startjmp();
6343 if (SETJMP(lc_jump_env) != 0)
6344 {
6345 mch_didjmp();
6346 xterm_dpy = NULL;
6347 }
6348 else
6349#endif
6350 {
6351 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6352 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6353#if defined(HAVE_SETJMP_H)
6354 mch_endjmp();
6355#endif
6356 }
6357
6358#if defined(HAVE_SETJMP_H)
6359 /* Now handle X IO errors normally. */
6360 (void)XSetIOErrorHandler(oldIOhandler);
6361#endif
6362 /* Now handle X errors normally. */
6363 (void)XSetErrorHandler(oldhandler);
6364
6365 if (xterm_dpy == NULL)
6366 {
6367 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006368 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 return;
6370 }
6371
6372 /* Catch terminating error of the X server connection. */
6373 (void)XSetIOErrorHandler(x_IOerror_handler);
6374
6375# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6376 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006377 {
6378 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006380 verbose_leave();
6381 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382# endif
6383
6384 /* Create a Shell to make converters work. */
6385 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6386 applicationShellWidgetClass, xterm_dpy,
6387 NULL);
6388 if (AppShell == (Widget)0)
6389 return;
6390 xterm_Shell = XtVaCreatePopupShell("VIM",
6391 topLevelShellWidgetClass, AppShell,
6392 XtNmappedWhenManaged, 0,
6393 XtNwidth, 1,
6394 XtNheight, 1,
6395 NULL);
6396 if (xterm_Shell == (Widget)0)
6397 return;
6398
6399 x11_setup_atoms(xterm_dpy);
6400 if (x11_display == NULL)
6401 x11_display = xterm_dpy;
6402
6403 XtRealizeWidget(xterm_Shell);
6404 XSync(xterm_dpy, False);
6405 xterm_update();
6406 }
6407 if (xterm_Shell != (Widget)0)
6408 {
6409 clip_init(TRUE);
6410 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6411 x11_window = (Window)atol(strp);
6412 /* Check if $WINDOWID is valid. */
6413 if (test_x11_window(xterm_dpy) == FAIL)
6414 x11_window = 0;
6415 if (x11_window != 0)
6416 xterm_trace = 0;
6417 }
6418}
6419
6420 void
6421start_xterm_trace(button)
6422 int button;
6423{
6424 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6425 return;
6426 xterm_trace = 1;
6427 xterm_button = button;
6428 do_xterm_trace();
6429}
6430
6431
6432 void
6433stop_xterm_trace()
6434{
6435 if (xterm_trace < 0)
6436 return;
6437 xterm_trace = 0;
6438}
6439
6440/*
6441 * Query the xterm pointer and generate mouse termcodes if necessary
6442 * return TRUE if dragging is active, else FALSE
6443 */
6444 static int
6445do_xterm_trace()
6446{
6447 Window root, child;
6448 int root_x, root_y;
6449 int win_x, win_y;
6450 int row, col;
6451 int_u mask_return;
6452 char_u buf[50];
6453 char_u *strp;
6454 long got_hints;
6455 static char_u *mouse_code;
6456 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6457 static int prev_row = 0, prev_col = 0;
6458 static XSizeHints xterm_hints;
6459
6460 if (xterm_trace <= 0)
6461 return FALSE;
6462
6463 if (xterm_trace == 1)
6464 {
6465 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00006466 * have changed recently. */
6467 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6468 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 || xterm_hints.width_inc <= 1
6470 || xterm_hints.height_inc <= 1)
6471 {
6472 xterm_trace = -1; /* Not enough data -- disable tracing */
6473 return FALSE;
6474 }
6475
6476 /* Rely on the same mouse code for the duration of this */
6477 mouse_code = find_termcode(mouse_name);
6478 prev_row = mouse_row;
6479 prev_row = mouse_col;
6480 xterm_trace = 2;
6481
6482 /* Find the offset of the chars, there might be a scrollbar on the
6483 * left of the window and/or a menu on the top (eterm etc.) */
6484 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6485 &win_x, &win_y, &mask_return);
6486 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6487 - (xterm_hints.height_inc / 2);
6488 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6489 xterm_hints.y = 2;
6490 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6491 - (xterm_hints.width_inc / 2);
6492 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6493 xterm_hints.x = 2;
6494 return TRUE;
6495 }
6496 if (mouse_code == NULL)
6497 {
6498 xterm_trace = 0;
6499 return FALSE;
6500 }
6501
6502 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6503 &win_x, &win_y, &mask_return);
6504
6505 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6506 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6507 if (row == prev_row && col == prev_col)
6508 return TRUE;
6509
6510 STRCPY(buf, mouse_code);
6511 strp = buf + STRLEN(buf);
6512 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6513 *strp++ = (char_u)(col + ' ' + 1);
6514 *strp++ = (char_u)(row + ' ' + 1);
6515 *strp = 0;
6516 add_to_input_buf(buf, STRLEN(buf));
6517
6518 prev_row = row;
6519 prev_col = col;
6520 return TRUE;
6521}
6522
6523# if defined(FEAT_GUI) || defined(PROTO)
6524/*
6525 * Destroy the display, window and app_context. Required for GTK.
6526 */
6527 void
6528clear_xterm_clip()
6529{
6530 if (xterm_Shell != (Widget)0)
6531 {
6532 XtDestroyWidget(xterm_Shell);
6533 xterm_Shell = (Widget)0;
6534 }
6535 if (xterm_dpy != NULL)
6536 {
Bram Moolenaare8208012008-06-20 09:59:25 +00006537# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538 /* Lesstif and Solaris crash here, lose some memory */
6539 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00006540# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 if (x11_display == xterm_dpy)
6542 x11_display = NULL;
6543 xterm_dpy = NULL;
6544 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006545# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546 if (app_context != (XtAppContext)NULL)
6547 {
6548 /* Lesstif and Solaris crash here, lose some memory */
6549 XtDestroyApplicationContext(app_context);
6550 app_context = (XtAppContext)NULL;
6551 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553}
6554# endif
6555
6556/*
6557 * Catch up with any queued X events. This may put keyboard input into the
6558 * input buffer, call resize call-backs, trigger timers etc. If there is
6559 * nothing in the X event queue (& no timers pending), then we return
6560 * immediately.
6561 */
6562 static void
6563xterm_update()
6564{
6565 XEvent event;
6566
6567 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6568 {
6569 XtAppNextEvent(app_context, &event);
6570#ifdef FEAT_CLIENTSERVER
6571 {
6572 XPropertyEvent *e = (XPropertyEvent *)&event;
6573
6574 if (e->type == PropertyNotify && e->window == commWindow
6575 && e->atom == commProperty && e->state == PropertyNewValue)
6576 serverEventProc(xterm_dpy, &event);
6577 }
6578#endif
6579 XtDispatchEvent(&event);
6580 }
6581}
6582
6583 int
6584clip_xterm_own_selection(cbd)
6585 VimClipboard *cbd;
6586{
6587 if (xterm_Shell != (Widget)0)
6588 return clip_x11_own_selection(xterm_Shell, cbd);
6589 return FAIL;
6590}
6591
6592 void
6593clip_xterm_lose_selection(cbd)
6594 VimClipboard *cbd;
6595{
6596 if (xterm_Shell != (Widget)0)
6597 clip_x11_lose_selection(xterm_Shell, cbd);
6598}
6599
6600 void
6601clip_xterm_request_selection(cbd)
6602 VimClipboard *cbd;
6603{
6604 if (xterm_Shell != (Widget)0)
6605 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6606}
6607
6608 void
6609clip_xterm_set_selection(cbd)
6610 VimClipboard *cbd;
6611{
6612 clip_x11_set_selection(cbd);
6613}
6614#endif
6615
6616
6617#if defined(USE_XSMP) || defined(PROTO)
6618/*
6619 * Code for X Session Management Protocol.
6620 */
6621static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6622static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6623static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6624static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6625static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6626
6627
6628# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6629static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6630
6631/*
6632 * This is our chance to ask the user if they want to save,
6633 * or abort the logout
6634 */
6635/*ARGSUSED*/
6636 static void
6637xsmp_handle_interaction(smc_conn, client_data)
6638 SmcConn smc_conn;
6639 SmPointer client_data;
6640{
6641 cmdmod_T save_cmdmod;
6642 int cancel_shutdown = False;
6643
6644 save_cmdmod = cmdmod;
6645 cmdmod.confirm = TRUE;
6646 if (check_changed_any(FALSE))
6647 /* Mustn't logout */
6648 cancel_shutdown = True;
6649 cmdmod = save_cmdmod;
6650 setcursor(); /* position cursor */
6651 out_flush();
6652
6653 /* Done interaction */
6654 SmcInteractDone(smc_conn, cancel_shutdown);
6655
6656 /* Finish off
6657 * Only end save-yourself here if we're not cancelling shutdown;
6658 * we'll get a cancelled callback later in which we'll end it.
6659 * Hopefully get around glitchy SMs (like GNOME-1)
6660 */
6661 if (!cancel_shutdown)
6662 {
6663 xsmp.save_yourself = False;
6664 SmcSaveYourselfDone(smc_conn, True);
6665 }
6666}
6667# endif
6668
6669/*
6670 * Callback that starts save-yourself.
6671 */
6672/*ARGSUSED*/
6673 static void
6674xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6675 shutdown, interact_style, fast)
6676 SmcConn smc_conn;
6677 SmPointer client_data;
6678 int save_type;
6679 Bool shutdown;
6680 int interact_style;
6681 Bool fast;
6682{
6683 /* Handle already being in saveyourself */
6684 if (xsmp.save_yourself)
6685 SmcSaveYourselfDone(smc_conn, True);
6686 xsmp.save_yourself = True;
6687 xsmp.shutdown = shutdown;
6688
6689 /* First up, preserve all files */
6690 out_flush();
6691 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6692
6693 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006694 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006695
6696# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6697 /* Now see if we can ask about unsaved files */
6698 if (shutdown && !fast && gui.in_use)
6699 /* Need to interact with user, but need SM's permission */
6700 SmcInteractRequest(smc_conn, SmDialogError,
6701 xsmp_handle_interaction, client_data);
6702 else
6703# endif
6704 {
6705 /* Can stop the cycle here */
6706 SmcSaveYourselfDone(smc_conn, True);
6707 xsmp.save_yourself = False;
6708 }
6709}
6710
6711
6712/*
6713 * Callback to warn us of imminent death.
6714 */
6715/*ARGSUSED*/
6716 static void
6717xsmp_die(smc_conn, client_data)
6718 SmcConn smc_conn;
6719 SmPointer client_data;
6720{
6721 xsmp_close();
6722
6723 /* quit quickly leaving swapfiles for modified buffers behind */
6724 getout_preserve_modified(0);
6725}
6726
6727
6728/*
6729 * Callback to tell us that save-yourself has completed.
6730 */
6731/*ARGSUSED*/
6732 static void
6733xsmp_save_complete(smc_conn, client_data)
6734 SmcConn smc_conn;
6735 SmPointer client_data;
6736{
6737 xsmp.save_yourself = False;
6738}
6739
6740
6741/*
6742 * Callback to tell us that an instigated shutdown was cancelled
6743 * (maybe even by us)
6744 */
6745/*ARGSUSED*/
6746 static void
6747xsmp_shutdown_cancelled(smc_conn, client_data)
6748 SmcConn smc_conn;
6749 SmPointer client_data;
6750{
6751 if (xsmp.save_yourself)
6752 SmcSaveYourselfDone(smc_conn, True);
6753 xsmp.save_yourself = False;
6754 xsmp.shutdown = False;
6755}
6756
6757
6758/*
6759 * Callback to tell us that a new ICE connection has been established.
6760 */
6761/*ARGSUSED*/
6762 static void
6763xsmp_ice_connection(iceConn, clientData, opening, watchData)
6764 IceConn iceConn;
6765 IcePointer clientData;
6766 Bool opening;
6767 IcePointer *watchData;
6768{
6769 /* Intercept creation of ICE connection fd */
6770 if (opening)
6771 {
6772 xsmp_icefd = IceConnectionNumber(iceConn);
6773 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6774 }
6775}
6776
6777
6778/* Handle any ICE processing that's required; return FAIL if SM lost */
6779 int
6780xsmp_handle_requests()
6781{
6782 Bool rep;
6783
6784 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6785 == IceProcessMessagesIOError)
6786 {
6787 /* Lost ICE */
6788 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006789 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 xsmp_close();
6791 return FAIL;
6792 }
6793 else
6794 return OK;
6795}
6796
6797static int dummy;
6798
6799/* Set up X Session Management Protocol */
6800 void
6801xsmp_init(void)
6802{
6803 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804 SmcCallbacks smcallbacks;
6805#if 0
6806 SmPropValue smname;
6807 SmProp smnameprop;
6808 SmProp *smprops[1];
6809#endif
6810
6811 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006812 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813
6814 xsmp.save_yourself = xsmp.shutdown = False;
6815
6816 /* Set up SM callbacks - must have all, even if they're not used */
6817 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6818 smcallbacks.save_yourself.client_data = NULL;
6819 smcallbacks.die.callback = xsmp_die;
6820 smcallbacks.die.client_data = NULL;
6821 smcallbacks.save_complete.callback = xsmp_save_complete;
6822 smcallbacks.save_complete.client_data = NULL;
6823 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6824 smcallbacks.shutdown_cancelled.client_data = NULL;
6825
6826 /* Set up a watch on ICE connection creations. The "dummy" argument is
6827 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6828 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6829 {
6830 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006831 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 return;
6833 }
6834
6835 /* Create an SM connection */
6836 xsmp.smcconn = SmcOpenConnection(
6837 NULL,
6838 NULL,
6839 SmProtoMajor,
6840 SmProtoMinor,
6841 SmcSaveYourselfProcMask | SmcDieProcMask
6842 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6843 &smcallbacks,
6844 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00006845 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846 sizeof(errorstring),
6847 errorstring);
6848 if (xsmp.smcconn == NULL)
6849 {
6850 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00006851
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006853 {
6854 vim_snprintf(errorreport, sizeof(errorreport),
6855 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6856 verb_msg((char_u *)errorreport);
6857 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858 return;
6859 }
6860 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6861
6862#if 0
6863 /* ID ourselves */
6864 smname.value = "vim";
6865 smname.length = 3;
6866 smnameprop.name = "SmProgram";
6867 smnameprop.type = "SmARRAY8";
6868 smnameprop.num_vals = 1;
6869 smnameprop.vals = &smname;
6870
6871 smprops[0] = &smnameprop;
6872 SmcSetProperties(xsmp.smcconn, 1, smprops);
6873#endif
6874}
6875
6876
6877/* Shut down XSMP comms. */
6878 void
6879xsmp_close()
6880{
6881 if (xsmp_icefd != -1)
6882 {
6883 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00006884 if (xsmp.clientid != NULL)
6885 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00006886 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 xsmp_icefd = -1;
6888 }
6889}
6890#endif /* USE_XSMP */
6891
6892
6893#ifdef EBCDIC
6894/* Translate character to its CTRL- value */
6895char CtrlTable[] =
6896{
6897/* 00 - 5E */
6898 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6899 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6900 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6901 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6902 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6903 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6904/* ^ */ 0x1E,
6905/* - */ 0x1F,
6906/* 61 - 6C */
6907 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6908/* _ */ 0x1F,
6909/* 6E - 80 */
6910 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6911/* a */ 0x01,
6912/* b */ 0x02,
6913/* c */ 0x03,
6914/* d */ 0x37,
6915/* e */ 0x2D,
6916/* f */ 0x2E,
6917/* g */ 0x2F,
6918/* h */ 0x16,
6919/* i */ 0x05,
6920/* 8A - 90 */
6921 0, 0, 0, 0, 0, 0, 0,
6922/* j */ 0x15,
6923/* k */ 0x0B,
6924/* l */ 0x0C,
6925/* m */ 0x0D,
6926/* n */ 0x0E,
6927/* o */ 0x0F,
6928/* p */ 0x10,
6929/* q */ 0x11,
6930/* r */ 0x12,
6931/* 9A - A1 */
6932 0, 0, 0, 0, 0, 0, 0, 0,
6933/* s */ 0x13,
6934/* t */ 0x3C,
6935/* u */ 0x3D,
6936/* v */ 0x32,
6937/* w */ 0x26,
6938/* x */ 0x18,
6939/* y */ 0x19,
6940/* z */ 0x3F,
6941/* AA - AC */
6942 0, 0, 0,
6943/* [ */ 0x27,
6944/* AE - BC */
6945 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6946/* ] */ 0x1D,
6947/* BE - C0 */ 0, 0, 0,
6948/* A */ 0x01,
6949/* B */ 0x02,
6950/* C */ 0x03,
6951/* D */ 0x37,
6952/* E */ 0x2D,
6953/* F */ 0x2E,
6954/* G */ 0x2F,
6955/* H */ 0x16,
6956/* I */ 0x05,
6957/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6958/* J */ 0x15,
6959/* K */ 0x0B,
6960/* L */ 0x0C,
6961/* M */ 0x0D,
6962/* N */ 0x0E,
6963/* O */ 0x0F,
6964/* P */ 0x10,
6965/* Q */ 0x11,
6966/* R */ 0x12,
6967/* DA - DF */ 0, 0, 0, 0, 0, 0,
6968/* \ */ 0x1C,
6969/* E1 */ 0,
6970/* S */ 0x13,
6971/* T */ 0x3C,
6972/* U */ 0x3D,
6973/* V */ 0x32,
6974/* W */ 0x26,
6975/* X */ 0x18,
6976/* Y */ 0x19,
6977/* Z */ 0x3F,
6978/* EA - FF*/ 0, 0, 0, 0, 0, 0,
6979 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6980};
6981
6982char MetaCharTable[]=
6983{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6984 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6985 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6986 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6987 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6988};
6989
6990
6991/* TODO: Use characters NOT numbers!!! */
6992char CtrlCharTable[]=
6993{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6994 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6995 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6996 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6997 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6998};
6999
7000
7001#endif