blob: 36872ad0d40629299eaf3aa8230da228f38a3e78 [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);
184static int sig_alarm_called;
185#endif
186static RETSIGTYPE deathtrap __ARGS(SIGPROTOARG);
187
Bram Moolenaardf177f62005-02-22 08:39:57 +0000188static void catch_int_signal __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189static void set_signals __ARGS((void));
190static void catch_signals __ARGS((RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()));
191#ifndef __EMX__
192static int have_wildcard __ARGS((int, char_u **));
193static int have_dollars __ARGS((int, char_u **));
194#endif
195
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196#ifndef __EMX__
197static int save_patterns __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file));
198#endif
199
200#ifndef SIG_ERR
201# define SIG_ERR ((RETSIGTYPE (*)())-1)
202#endif
203
204static int do_resize = FALSE;
205#ifndef __EMX__
206static char_u *extra_shell_arg = NULL;
207static int show_shell_mess = TRUE;
208#endif
209static int deadly_signal = 0; /* The signal we caught */
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000210static int in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211
212static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
213
214#ifdef USE_XSMP
215typedef struct
216{
217 SmcConn smcconn; /* The SM connection ID */
218 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaare8208012008-06-20 09:59:25 +0000219 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 Bool save_yourself; /* If we're in the middle of a save_yourself */
221 Bool shutdown; /* If we're in shutdown mode */
222} xsmp_config_T;
223
224static xsmp_config_T xsmp;
225#endif
226
227#ifdef SYS_SIGLIST_DECLARED
228/*
229 * I have seen
230 * extern char *_sys_siglist[NSIG];
231 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
232 * that describe the signals. That is nearly what we want here. But
233 * autoconf does only check for sys_siglist (without the underscore), I
234 * do not want to change everything today.... jw.
235 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
236 */
237#endif
238
239static struct signalinfo
240{
241 int sig; /* Signal number, eg. SIGSEGV etc */
242 char *name; /* Signal name (not char_u!). */
243 char deadly; /* Catch as a deadly signal? */
244} signal_info[] =
245{
246#ifdef SIGHUP
247 {SIGHUP, "HUP", TRUE},
248#endif
249#ifdef SIGQUIT
250 {SIGQUIT, "QUIT", TRUE},
251#endif
252#ifdef SIGILL
253 {SIGILL, "ILL", TRUE},
254#endif
255#ifdef SIGTRAP
256 {SIGTRAP, "TRAP", TRUE},
257#endif
258#ifdef SIGABRT
259 {SIGABRT, "ABRT", TRUE},
260#endif
261#ifdef SIGEMT
262 {SIGEMT, "EMT", TRUE},
263#endif
264#ifdef SIGFPE
265 {SIGFPE, "FPE", TRUE},
266#endif
267#ifdef SIGBUS
268 {SIGBUS, "BUS", TRUE},
269#endif
270#ifdef SIGSEGV
271 {SIGSEGV, "SEGV", TRUE},
272#endif
273#ifdef SIGSYS
274 {SIGSYS, "SYS", TRUE},
275#endif
276#ifdef SIGALRM
277 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
278#endif
279#ifdef SIGTERM
280 {SIGTERM, "TERM", TRUE},
281#endif
282#ifdef SIGVTALRM
283 {SIGVTALRM, "VTALRM", TRUE},
284#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000285#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
286 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
287 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 {SIGPROF, "PROF", TRUE},
289#endif
290#ifdef SIGXCPU
291 {SIGXCPU, "XCPU", TRUE},
292#endif
293#ifdef SIGXFSZ
294 {SIGXFSZ, "XFSZ", TRUE},
295#endif
296#ifdef SIGUSR1
297 {SIGUSR1, "USR1", TRUE},
298#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000299#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
300 /* Used for sysmouse handling */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 {SIGUSR2, "USR2", TRUE},
302#endif
303#ifdef SIGINT
304 {SIGINT, "INT", FALSE},
305#endif
306#ifdef SIGWINCH
307 {SIGWINCH, "WINCH", FALSE},
308#endif
309#ifdef SIGTSTP
310 {SIGTSTP, "TSTP", FALSE},
311#endif
312#ifdef SIGPIPE
313 {SIGPIPE, "PIPE", FALSE},
314#endif
315 {-1, "Unknown!", FALSE}
316};
317
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000318/*
319 * Write s[len] to the screen.
320 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321 void
322mch_write(s, len)
323 char_u *s;
324 int len;
325{
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000326 ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 if (p_wd) /* Unix is too fast, slow down a bit more */
328 RealWaitForChar(read_cmd_fd, p_wd, NULL);
329}
330
331/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000332 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 * Get a characters from the keyboard.
334 * Return the number of characters that are available.
335 * If wtime == 0 do not wait for characters.
336 * If wtime == n wait a short time for characters.
337 * If wtime == -1 wait forever for characters.
338 */
339 int
340mch_inchar(buf, maxlen, wtime, tb_change_cnt)
341 char_u *buf;
342 int maxlen;
343 long wtime; /* don't use "time", MIPS cannot handle it */
344 int tb_change_cnt;
345{
346 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347
348 /* Check if window changed size while we were busy, perhaps the ":set
349 * columns=99" command was used. */
350 while (do_resize)
351 handle_resize();
352
353 if (wtime >= 0)
354 {
355 while (WaitForChar(wtime) == 0) /* no character available */
356 {
357 if (!do_resize) /* return if not interrupted by resize */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 handle_resize();
360 }
361 }
362 else /* wtime == -1 */
363 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 /*
365 * If there is no character available within 'updatetime' seconds
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000366 * flush all the swap files to disk.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 * Also done when interrupted by SIGWINCH.
368 */
369 if (WaitForChar(p_ut) == 0)
370 {
371#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +0000372 if (trigger_cursorhold() && maxlen >= 3
373 && !typebuf_changed(tb_change_cnt))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 {
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000375 buf[0] = K_SPECIAL;
376 buf[1] = KS_EXTRA;
377 buf[2] = (int)KE_CURSORHOLD;
378 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380#endif
Bram Moolenaard4098f52005-06-27 22:37:13 +0000381 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 }
383 }
384
385 for (;;) /* repeat until we got a character */
386 {
387 while (do_resize) /* window changed size */
388 handle_resize();
389 /*
390 * we want to be interrupted by the winch signal
391 */
392 WaitForChar(-1L);
393 if (do_resize) /* interrupted by SIGWINCH signal */
394 continue;
395
396 /* If input was put directly in typeahead buffer bail out here. */
397 if (typebuf_changed(tb_change_cnt))
398 return 0;
399
400 /*
401 * For some terminals we only get one character at a time.
402 * We want the get all available characters, so we could keep on
403 * trying until none is available
404 * For some other terminals this is quite slow, that's why we don't do
405 * it.
406 */
407 len = read_from_input_buf(buf, (long)maxlen);
408 if (len > 0)
409 {
410#ifdef OS2
411 int i;
412
413 for (i = 0; i < len; i++)
414 if (buf[i] == 0)
415 buf[i] = K_NUL;
416#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 return len;
418 }
419 }
420}
421
422 static void
423handle_resize()
424{
425 do_resize = FALSE;
426 shell_resized();
427}
428
429/*
430 * return non-zero if a character is available
431 */
432 int
433mch_char_avail()
434{
435 return WaitForChar(0L);
436}
437
438#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
439# ifdef HAVE_SYS_RESOURCE_H
440# include <sys/resource.h>
441# endif
442# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
443# include <sys/sysctl.h>
444# endif
445# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
446# include <sys/sysinfo.h>
447# endif
448
449/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000450 * Return total amount of memory available in Kbyte.
451 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 */
453/* ARGSUSED */
454 long_u
455mch_total_mem(special)
456 int special;
457{
458# ifdef __EMX__
Bram Moolenaar914572a2007-05-01 11:37:47 +0000459 return ulimit(3, 0L) >> 10; /* always 32MB? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460# else
461 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000462 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463
464# ifdef HAVE_SYSCTL
465 int mib[2], physmem;
466 size_t len;
467
468 /* BSD way of getting the amount of RAM available. */
469 mib[0] = CTL_HW;
470 mib[1] = HW_USERMEM;
471 len = sizeof(physmem);
472 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
473 mem = (long_u)physmem;
474# endif
475
476# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
477 if (mem == 0)
478 {
479 struct sysinfo sinfo;
480
481 /* Linux way of getting amount of RAM available */
482 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000483 {
484# ifdef HAVE_SYSINFO_MEM_UNIT
485 /* avoid overflow as much as possible */
486 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
487 {
488 sinfo.mem_unit = sinfo.mem_unit >> 1;
489 --shiftright;
490 }
491 mem = sinfo.totalram * sinfo.mem_unit;
492# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 mem = sinfo.totalram;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000494# endif
495 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 }
497# endif
498
499# ifdef HAVE_SYSCONF
500 if (mem == 0)
501 {
502 long pagesize, pagecount;
503
504 /* Solaris way of getting amount of RAM available */
505 pagesize = sysconf(_SC_PAGESIZE);
506 pagecount = sysconf(_SC_PHYS_PAGES);
507 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000508 {
509 /* avoid overflow as much as possible */
510 while (shiftright > 0 && (pagesize & 1) == 0)
511 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000512 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000513 --shiftright;
514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000516 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 }
518# endif
519
520 /* Return the minimum of the physical memory and the user limit, because
521 * using more than the user limit may cause Vim to be terminated. */
522# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
523 {
524 struct rlimit rlp;
525
526 if (getrlimit(RLIMIT_DATA, &rlp) == 0
527 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
528# ifdef RLIM_INFINITY
529 && rlp.rlim_cur != RLIM_INFINITY
530# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000531 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000533 {
534 mem = (long_u)rlp.rlim_cur;
535 shiftright = 10;
536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 }
538# endif
539
540 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000541 return mem >> shiftright;
542 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543# endif
544}
545#endif
546
547 void
548mch_delay(msec, ignoreinput)
549 long msec;
550 int ignoreinput;
551{
552 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000553#ifdef FEAT_MZSCHEME
554 long total = msec; /* remember original value */
555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556
557 if (ignoreinput)
558 {
559 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000560 * here. But we don't want QUIT to kill us (CTRL-\ used in a
561 * shell may produce SIGQUIT). */
562 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 old_tmode = curr_tmode;
564 if (curr_tmode == TMODE_RAW)
565 settmode(TMODE_SLEEP);
566
567 /*
568 * Everybody sleeps in a different way...
569 * Prefer nanosleep(), some versions of usleep() can only sleep up to
570 * one second.
571 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000572#ifdef FEAT_MZSCHEME
573 do
574 {
575 /* if total is large enough, wait by portions in p_mzq */
576 if (total > p_mzq)
577 msec = p_mzq;
578 else
579 msec = total;
580 total -= msec;
581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582#ifdef HAVE_NANOSLEEP
583 {
584 struct timespec ts;
585
586 ts.tv_sec = msec / 1000;
587 ts.tv_nsec = (msec % 1000) * 1000000;
588 (void)nanosleep(&ts, NULL);
589 }
590#else
591# ifdef HAVE_USLEEP
592 while (msec >= 1000)
593 {
594 usleep((unsigned int)(999 * 1000));
595 msec -= 999;
596 }
597 usleep((unsigned int)(msec * 1000));
598# else
599# ifndef HAVE_SELECT
600 poll(NULL, 0, (int)msec);
601# else
602# ifdef __EMX__
603 _sleep2(msec);
604# else
605 {
606 struct timeval tv;
607
608 tv.tv_sec = msec / 1000;
609 tv.tv_usec = (msec % 1000) * 1000;
610 /*
611 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
612 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
613 */
614 select(0, NULL, NULL, NULL, &tv);
615 }
616# endif /* __EMX__ */
617# endif /* HAVE_SELECT */
618# endif /* HAVE_NANOSLEEP */
619#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000620#ifdef FEAT_MZSCHEME
621 }
622 while (total > 0);
623#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624
625 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000626 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 }
628 else
629 WaitForChar(msec);
630}
631
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000632#if 0 /* disabled, no longer needed now that regmatch() is not recursive */
633# if defined(HAVE_GETRLIMIT)
634# define HAVE_STACK_LIMIT
635# endif
636#endif
637
638#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
640# define HAVE_CHECK_STACK_GROWTH
641/*
642 * Support for checking for an almost-out-of-stack-space situation.
643 */
644
645/*
646 * Return a pointer to an item on the stack. Used to find out if the stack
647 * grows up or down.
648 */
649static void check_stack_growth __ARGS((char *p));
650static int stack_grows_downwards;
651
652/*
653 * Find out if the stack grows upwards or downwards.
654 * "p" points to a variable on the stack of the caller.
655 */
656 static void
657check_stack_growth(p)
658 char *p;
659{
660 int i;
661
662 stack_grows_downwards = (p > (char *)&i);
663}
664#endif
665
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000666#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667static char *stack_limit = NULL;
668
669#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
670# include <pthread.h>
671# include <pthread_np.h>
672#endif
673
674/*
675 * Find out until how var the stack can grow without getting into trouble.
676 * Called when starting up and when switching to the signal stack in
677 * deathtrap().
678 */
679 static void
680get_stack_limit()
681{
682 struct rlimit rlp;
683 int i;
684 long lim;
685
686 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
687 * limit doesn't fit in a long (rlim_cur might be "long long"). */
688 if (getrlimit(RLIMIT_STACK, &rlp) == 0
689 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
690# ifdef RLIM_INFINITY
691 && rlp.rlim_cur != RLIM_INFINITY
692# endif
693 )
694 {
695 lim = (long)rlp.rlim_cur;
696#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
697 {
698 pthread_attr_t attr;
699 size_t size;
700
701 /* On FreeBSD the initial thread always has a fixed stack size, no
702 * matter what the limits are set to. Normally it's 1 Mbyte. */
703 pthread_attr_init(&attr);
704 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
705 {
706 pthread_attr_getstacksize(&attr, &size);
707 if (lim > (long)size)
708 lim = (long)size;
709 }
710 pthread_attr_destroy(&attr);
711 }
712#endif
713 if (stack_grows_downwards)
714 {
715 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
716 if (stack_limit >= (char *)&i)
717 /* overflow, set to 1/16 of current stack position */
718 stack_limit = (char *)((long)&i / 16L);
719 }
720 else
721 {
722 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
723 if (stack_limit <= (char *)&i)
724 stack_limit = NULL; /* overflow */
725 }
726 }
727}
728
729/*
730 * Return FAIL when running out of stack space.
731 * "p" must point to any variable local to the caller that's on the stack.
732 */
733 int
734mch_stackcheck(p)
735 char *p;
736{
737 if (stack_limit != NULL)
738 {
739 if (stack_grows_downwards)
740 {
741 if (p < stack_limit)
742 return FAIL;
743 }
744 else if (p > stack_limit)
745 return FAIL;
746 }
747 return OK;
748}
749#endif
750
751#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
752/*
753 * Support for using the signal stack.
754 * This helps when we run out of stack space, which causes a SIGSEGV. The
755 * signal handler then must run on another stack, since the normal stack is
756 * completely full.
757 */
758
759#ifndef SIGSTKSZ
760# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
761#endif
762
763# ifdef HAVE_SIGALTSTACK
764static stack_t sigstk; /* for sigaltstack() */
765# else
766static struct sigstack sigstk; /* for sigstack() */
767# endif
768
769static void init_signal_stack __ARGS((void));
770static char *signal_stack;
771
772 static void
773init_signal_stack()
774{
775 if (signal_stack != NULL)
776 {
777# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000778# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
779 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
781 * "struct sigaltstack" needs to be declared. */
782 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
783# endif
784
785# ifdef HAVE_SS_BASE
786 sigstk.ss_base = signal_stack;
787# else
788 sigstk.ss_sp = signal_stack;
789# endif
790 sigstk.ss_size = SIGSTKSZ;
791 sigstk.ss_flags = 0;
792 (void)sigaltstack(&sigstk, NULL);
793# else
794 sigstk.ss_sp = signal_stack;
795 if (stack_grows_downwards)
796 sigstk.ss_sp += SIGSTKSZ - 1;
797 sigstk.ss_onstack = 0;
798 (void)sigstack(&sigstk, NULL);
799# endif
800 }
801}
802#endif
803
804/*
805 * We need correct potatotypes for a signal function, otherwise mean compilers
806 * will barf when the second argument to signal() is ``wrong''.
807 * Let me try it with a few tricky defines from my own osdef.h (jw).
808 */
809#if defined(SIGWINCH)
810/* ARGSUSED */
811 static RETSIGTYPE
812sig_winch SIGDEFARG(sigarg)
813{
814 /* this is not required on all systems, but it doesn't hurt anybody */
815 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
816 do_resize = TRUE;
817 SIGRETURN;
818}
819#endif
820
821#if defined(SIGINT)
822/* ARGSUSED */
823 static RETSIGTYPE
824catch_sigint SIGDEFARG(sigarg)
825{
826 /* this is not required on all systems, but it doesn't hurt anybody */
827 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
828 got_int = TRUE;
829 SIGRETURN;
830}
831#endif
832
833#if defined(SIGPWR)
834/* ARGSUSED */
835 static RETSIGTYPE
836catch_sigpwr SIGDEFARG(sigarg)
837{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000838 /* this is not required on all systems, but it doesn't hurt anybody */
839 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 /*
841 * I'm not sure we get the SIGPWR signal when the system is really going
842 * down or when the batteries are almost empty. Just preserve the swap
843 * files and don't exit, that can't do any harm.
844 */
845 ml_sync_all(FALSE, FALSE);
846 SIGRETURN;
847}
848#endif
849
850#ifdef SET_SIG_ALARM
851/*
852 * signal function for alarm().
853 */
854/* ARGSUSED */
855 static RETSIGTYPE
856sig_alarm SIGDEFARG(sigarg)
857{
858 /* doesn't do anything, just to break a system call */
859 sig_alarm_called = TRUE;
860 SIGRETURN;
861}
862#endif
863
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000864#if (defined(HAVE_SETJMP_H) \
865 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
866 || defined(FEAT_LIBCALL))) \
867 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868/*
869 * A simplistic version of setjmp() that only allows one level of using.
870 * Don't call twice before calling mch_endjmp()!.
871 * Usage:
872 * mch_startjmp();
873 * if (SETJMP(lc_jump_env) != 0)
874 * {
875 * mch_didjmp();
876 * EMSG("crash!");
877 * }
878 * else
879 * {
880 * do_the_work;
881 * mch_endjmp();
882 * }
883 * Note: Can't move SETJMP() here, because a function calling setjmp() must
884 * not return before the saved environment is used.
885 * Returns OK for normal return, FAIL when the protected code caused a
886 * problem and LONGJMP() was used.
887 */
888 void
889mch_startjmp()
890{
891#ifdef SIGHASARG
892 lc_signal = 0;
893#endif
894 lc_active = TRUE;
895}
896
897 void
898mch_endjmp()
899{
900 lc_active = FALSE;
901}
902
903 void
904mch_didjmp()
905{
906# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
907 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
908 * otherwise catching the signal only works once. */
909 init_signal_stack();
910# endif
911}
912#endif
913
914/*
915 * This function handles deadly signals.
916 * It tries to preserve any swap file and exit properly.
917 * (partly from Elvis).
918 */
919 static RETSIGTYPE
920deathtrap SIGDEFARG(sigarg)
921{
922 static int entered = 0; /* count the number of times we got here.
923 Note: when memory has been corrupted
924 this may get an arbitrary value! */
925#ifdef SIGHASARG
926 int i;
927#endif
928
929#if defined(HAVE_SETJMP_H)
930 /*
931 * Catch a crash in protected code.
932 * Restores the environment saved in lc_jump_env, which looks like
933 * SETJMP() returns 1.
934 */
935 if (lc_active)
936 {
937# if defined(SIGHASARG)
938 lc_signal = sigarg;
939# endif
940 lc_active = FALSE; /* don't jump again */
941 LONGJMP(lc_jump_env, 1);
942 /* NOTREACHED */
943 }
944#endif
945
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000946#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000947# ifdef SIGQUIT
948 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
949 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
950 * pressing CTRL-\, but we don't want Vim to exit then. */
951 if (in_mch_delay && sigarg == SIGQUIT)
952 SIGRETURN;
953# endif
954
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000955 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
956 * here. This avoids that a non-reentrant function is interrupted, e.g.,
957 * free(). Calling free() again may then cause a crash. */
958 if (entered == 0
959 && (0
960# ifdef SIGHUP
961 || sigarg == SIGHUP
962# endif
963# ifdef SIGQUIT
964 || sigarg == SIGQUIT
965# endif
966# ifdef SIGTERM
967 || sigarg == SIGTERM
968# endif
969# ifdef SIGPWR
970 || sigarg == SIGPWR
971# endif
972# ifdef SIGUSR1
973 || sigarg == SIGUSR1
974# endif
975# ifdef SIGUSR2
976 || sigarg == SIGUSR2
977# endif
978 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +0000979 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000980 SIGRETURN;
981#endif
982
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 /* Remember how often we have been called. */
984 ++entered;
985
986#ifdef FEAT_EVAL
987 /* Set the v:dying variable. */
988 set_vim_var_nr(VV_DYING, (long)entered);
989#endif
990
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000991#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 /* Since we are now using the signal stack, need to reset the stack
993 * limit. Otherwise using a regexp will fail. */
994 get_stack_limit();
995#endif
996
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000997#if 0
998 /* This is for opening gdb the moment Vim crashes.
999 * You need to manually adjust the file name and Vim executable name.
1000 * Suggested by SungHyun Nam. */
1001 {
1002# define VI_GDB_FILE "/tmp/vimgdb"
1003# define VIM_NAME "/usr/bin/vim"
1004 FILE *fp = fopen(VI_GDB_FILE, "w");
1005 if (fp)
1006 {
1007 fprintf(fp,
1008 "file %s\n"
1009 "attach %d\n"
1010 "set height 1000\n"
1011 "bt full\n"
1012 , VIM_NAME, getpid());
1013 fclose(fp);
1014 system("xterm -e gdb -x "VI_GDB_FILE);
1015 unlink(VI_GDB_FILE);
1016 }
1017 }
1018#endif
1019
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020#ifdef SIGHASARG
1021 /* try to find the name of this signal */
1022 for (i = 0; signal_info[i].sig != -1; i++)
1023 if (sigarg == signal_info[i].sig)
1024 break;
1025 deadly_signal = sigarg;
1026#endif
1027
1028 full_screen = FALSE; /* don't write message to the GUI, it might be
1029 * part of the problem... */
1030 /*
1031 * If something goes wrong after entering here, we may get here again.
1032 * When this happens, give a message and try to exit nicely (resetting the
1033 * terminal mode, etc.)
1034 * When this happens twice, just exit, don't even try to give a message,
1035 * stack may be corrupt or something weird.
1036 * When this still happens again (or memory was corrupted in such a way
1037 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1038 */
1039 if (entered >= 3)
1040 {
1041 reset_signals(); /* don't catch any signals anymore */
1042 may_core_dump();
1043 if (entered >= 4)
1044 _exit(8);
1045 exit(7);
1046 }
1047 if (entered == 2)
1048 {
1049 OUT_STR(_("Vim: Double signal, exiting\n"));
1050 out_flush();
1051 getout(1);
1052 }
1053
1054#ifdef SIGHASARG
1055 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1056 signal_info[i].name);
1057#else
1058 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1059#endif
1060 preserve_exit(); /* preserve files and exit */
1061
Bram Moolenaar009b2592004-10-24 19:18:58 +00001062#ifdef NBDEBUG
1063 reset_signals();
1064 may_core_dump();
1065 abort();
1066#endif
1067
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 SIGRETURN;
1069}
1070
1071#ifdef _REENTRANT
1072/*
1073 * On Solaris with multi-threading, suspending might not work immediately.
1074 * Catch the SIGCONT signal, which will be used as an indication whether the
1075 * suspending has been done or not.
1076 */
1077static int sigcont_received;
1078static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1079
1080/*
1081 * signal handler for SIGCONT
1082 */
1083/* ARGSUSED */
1084 static RETSIGTYPE
1085sigcont_handler SIGDEFARG(sigarg)
1086{
1087 sigcont_received = TRUE;
1088 SIGRETURN;
1089}
1090#endif
1091
1092/*
1093 * If the machine has job control, use it to suspend the program,
1094 * otherwise fake it by starting a new shell.
1095 */
1096 void
1097mch_suspend()
1098{
1099 /* BeOS does have SIGTSTP, but it doesn't work. */
1100#if defined(SIGTSTP) && !defined(__BEOS__)
1101 out_flush(); /* needed to make cursor visible on some systems */
1102 settmode(TMODE_COOK);
1103 out_flush(); /* needed to disable mouse on some systems */
1104
1105# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1106 /* Since we are going to sleep, we can't respond to requests for the X
1107 * selections. Lose them, otherwise other applications will hang. But
1108 * first copy the text to cut buffer 0. */
1109 if (clip_star.owned || clip_plus.owned)
1110 {
1111 x11_export_final_selection();
1112 if (clip_star.owned)
1113 clip_lose_selection(&clip_star);
1114 if (clip_plus.owned)
1115 clip_lose_selection(&clip_plus);
1116 if (x11_display != NULL)
1117 XFlush(x11_display);
1118 }
1119# endif
1120
1121# ifdef _REENTRANT
1122 sigcont_received = FALSE;
1123# endif
1124 kill(0, SIGTSTP); /* send ourselves a STOP signal */
1125# ifdef _REENTRANT
1126 /* When we didn't suspend immediately in the kill(), do it now. Happens
1127 * on multi-threaded Solaris. */
1128 if (!sigcont_received)
1129 pause();
1130# endif
1131
1132# ifdef FEAT_TITLE
1133 /*
1134 * Set oldtitle to NULL, so the current title is obtained again.
1135 */
1136 vim_free(oldtitle);
1137 oldtitle = NULL;
1138# endif
1139 settmode(TMODE_RAW);
1140 need_check_timestamps = TRUE;
1141 did_check_timestamps = FALSE;
1142#else
1143 suspend_shell();
1144#endif
1145}
1146
1147 void
1148mch_init()
1149{
1150 Columns = 80;
1151 Rows = 24;
1152
1153 out_flush();
1154 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001155
Bram Moolenaar56718732006-03-15 22:53:57 +00001156#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001157 mac_conv_init();
1158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159}
1160
1161 static void
1162set_signals()
1163{
1164#if defined(SIGWINCH)
1165 /*
1166 * WINDOW CHANGE signal is handled with sig_winch().
1167 */
1168 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1169#endif
1170
1171 /*
1172 * We want the STOP signal to work, to make mch_suspend() work.
1173 * For "rvim" the STOP signal is ignored.
1174 */
1175#ifdef SIGTSTP
1176 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1177#endif
1178#ifdef _REENTRANT
1179 signal(SIGCONT, sigcont_handler);
1180#endif
1181
1182 /*
1183 * We want to ignore breaking of PIPEs.
1184 */
1185#ifdef SIGPIPE
1186 signal(SIGPIPE, SIG_IGN);
1187#endif
1188
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001190 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191#endif
1192
1193 /*
1194 * Ignore alarm signals (Perl's alarm() generates it).
1195 */
1196#ifdef SIGALRM
1197 signal(SIGALRM, SIG_IGN);
1198#endif
1199
1200 /*
1201 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1202 * work will be lost.
1203 */
1204#ifdef SIGPWR
1205 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1206#endif
1207
1208 /*
1209 * Arrange for other signals to gracefully shutdown Vim.
1210 */
1211 catch_signals(deathtrap, SIG_ERR);
1212
1213#if defined(FEAT_GUI) && defined(SIGHUP)
1214 /*
1215 * When the GUI is running, ignore the hangup signal.
1216 */
1217 if (gui.in_use)
1218 signal(SIGHUP, SIG_IGN);
1219#endif
1220}
1221
Bram Moolenaardf177f62005-02-22 08:39:57 +00001222#if defined(SIGINT) || defined(PROTO)
1223/*
1224 * Catch CTRL-C (only works while in Cooked mode).
1225 */
1226 static void
1227catch_int_signal()
1228{
1229 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1230}
1231#endif
1232
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 void
1234reset_signals()
1235{
1236 catch_signals(SIG_DFL, SIG_DFL);
1237#ifdef _REENTRANT
1238 /* SIGCONT isn't in the list, because its default action is ignore */
1239 signal(SIGCONT, SIG_DFL);
1240#endif
1241}
1242
1243 static void
1244catch_signals(func_deadly, func_other)
1245 RETSIGTYPE (*func_deadly)();
1246 RETSIGTYPE (*func_other)();
1247{
1248 int i;
1249
1250 for (i = 0; signal_info[i].sig != -1; i++)
1251 if (signal_info[i].deadly)
1252 {
1253#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1254 struct sigaction sa;
1255
1256 /* Setup to use the alternate stack for the signal function. */
1257 sa.sa_handler = func_deadly;
1258 sigemptyset(&sa.sa_mask);
1259# if defined(__linux__) && defined(_REENTRANT)
1260 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1261 * thread handling in combination with using the alternate stack:
1262 * pthread library functions try to use the stack pointer to
1263 * identify the current thread, causing a SEGV signal, which
1264 * recursively calls deathtrap() and hangs. */
1265 sa.sa_flags = 0;
1266# else
1267 sa.sa_flags = SA_ONSTACK;
1268# endif
1269 sigaction(signal_info[i].sig, &sa, NULL);
1270#else
1271# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1272 struct sigvec sv;
1273
1274 /* Setup to use the alternate stack for the signal function. */
1275 sv.sv_handler = func_deadly;
1276 sv.sv_mask = 0;
1277 sv.sv_flags = SV_ONSTACK;
1278 sigvec(signal_info[i].sig, &sv, NULL);
1279# else
1280 signal(signal_info[i].sig, func_deadly);
1281# endif
1282#endif
1283 }
1284 else if (func_other != SIG_ERR)
1285 signal(signal_info[i].sig, func_other);
1286}
1287
1288/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001289 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001290 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1291 * return TRUE
1292 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1293 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1294 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001295 * Returns TRUE when Vim should exit.
1296 */
1297 int
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001298vim_handle_signal(sig)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001299 int sig;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001300{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001301 static int got_signal = 0;
1302 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001303
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001304 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001305 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001306 case SIGNAL_BLOCK: blocked = TRUE;
1307 break;
1308
1309 case SIGNAL_UNBLOCK: blocked = FALSE;
1310 if (got_signal != 0)
1311 {
1312 kill(getpid(), got_signal);
1313 got_signal = 0;
1314 }
1315 break;
1316
1317 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001318 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001319 got_signal = sig;
1320#ifdef SIGPWR
1321 if (sig != SIGPWR)
1322#endif
1323 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001324 break;
1325 }
1326 return FALSE;
1327}
1328
1329/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 * Check_win checks whether we have an interactive stdout.
1331 */
1332/* ARGSUSED */
1333 int
1334mch_check_win(argc, argv)
1335 int argc;
1336 char **argv;
1337{
1338#ifdef OS2
1339 /*
1340 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1341 * name, mostly it's just "vim" and found in the path, which is unusable.
1342 */
1343 if (mch_isFullName(argv[0]))
1344 exe_name = vim_strsave((char_u *)argv[0]);
1345#endif
1346 if (isatty(1))
1347 return OK;
1348 return FAIL;
1349}
1350
1351/*
1352 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1353 */
1354 int
1355mch_input_isatty()
1356{
1357 if (isatty(read_cmd_fd))
1358 return TRUE;
1359 return FALSE;
1360}
1361
1362#ifdef FEAT_X11
1363
1364# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1365 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1366
1367static void xopen_message __ARGS((struct timeval *tvp));
1368
1369/*
1370 * Give a message about the elapsed time for opening the X window.
1371 */
1372 static void
1373xopen_message(tvp)
1374 struct timeval *tvp; /* must contain start time */
1375{
1376 struct timeval end_tv;
1377
1378 /* Compute elapsed time. */
1379 gettimeofday(&end_tv, NULL);
1380 smsg((char_u *)_("Opening the X display took %ld msec"),
1381 (end_tv.tv_sec - tvp->tv_sec) * 1000L
Bram Moolenaar051b7822005-05-19 21:00:46 +00001382 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383}
1384# endif
1385#endif
1386
1387#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1388/*
1389 * A few functions shared by X11 title and clipboard code.
1390 */
1391static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1392static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1393static int x_connect_to_server __ARGS((void));
1394static int test_x11_window __ARGS((Display *dpy));
1395
1396static int got_x_error = FALSE;
1397
1398/*
1399 * X Error handler, otherwise X just exits! (very rude) -- webb
1400 */
1401 static int
1402x_error_handler(dpy, error_event)
1403 Display *dpy;
1404 XErrorEvent *error_event;
1405{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001406 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 STRCAT(IObuff, _("\nVim: Got X error\n"));
1408
1409 /* We cannot print a message and continue, because no X calls are allowed
1410 * here (causes my system to hang). Silently continuing might be an
1411 * alternative... */
1412 preserve_exit(); /* preserve files and exit */
1413
1414 return 0; /* NOTREACHED */
1415}
1416
1417/*
1418 * Another X Error handler, just used to check for errors.
1419 */
1420/* ARGSUSED */
1421 static int
1422x_error_check(dpy, error_event)
1423 Display *dpy;
1424 XErrorEvent *error_event;
1425{
1426 got_x_error = TRUE;
1427 return 0;
1428}
1429
1430#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1431# if defined(HAVE_SETJMP_H)
1432/*
1433 * An X IO Error handler, used to catch error while opening the display.
1434 */
1435static int x_IOerror_check __ARGS((Display *dpy));
1436
1437/* ARGSUSED */
1438 static int
1439x_IOerror_check(dpy)
1440 Display *dpy;
1441{
1442 /* This function should not return, it causes exit(). Longjump instead. */
1443 LONGJMP(lc_jump_env, 1);
1444 /*NOTREACHED*/
1445 return 0;
1446}
1447# endif
1448
1449/*
1450 * An X IO Error handler, used to catch terminal errors.
1451 */
1452static int x_IOerror_handler __ARGS((Display *dpy));
1453
1454/* ARGSUSED */
1455 static int
1456x_IOerror_handler(dpy)
1457 Display *dpy;
1458{
1459 xterm_dpy = NULL;
1460 x11_window = 0;
1461 x11_display = NULL;
1462 xterm_Shell = (Widget)0;
1463
1464 /* This function should not return, it causes exit(). Longjump instead. */
1465 LONGJMP(x_jump_env, 1);
1466 /*NOTREACHED*/
1467 return 0;
1468}
1469#endif
1470
1471/*
1472 * Return TRUE when connection to the X server is desired.
1473 */
1474 static int
1475x_connect_to_server()
1476{
1477 regmatch_T regmatch;
1478
1479#if defined(FEAT_CLIENTSERVER)
1480 if (x_force_connect)
1481 return TRUE;
1482#endif
1483 if (x_no_connect)
1484 return FALSE;
1485
1486 /* Check for a match with "exclude:" from 'clipboard'. */
1487 if (clip_exclude_prog != NULL)
1488 {
1489 regmatch.rm_ic = FALSE; /* Don't ignore case */
1490 regmatch.regprog = clip_exclude_prog;
1491 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1492 return FALSE;
1493 }
1494 return TRUE;
1495}
1496
1497/*
1498 * Test if "dpy" and x11_window are valid by getting the window title.
1499 * I don't actually want it yet, so there may be a simpler call to use, but
1500 * this will cause the error handler x_error_check() to be called if anything
1501 * is wrong, such as the window pointer being invalid (as can happen when the
1502 * user changes his DISPLAY, but not his WINDOWID) -- webb
1503 */
1504 static int
1505test_x11_window(dpy)
1506 Display *dpy;
1507{
1508 int (*old_handler)();
1509 XTextProperty text_prop;
1510
1511 old_handler = XSetErrorHandler(x_error_check);
1512 got_x_error = FALSE;
1513 if (XGetWMName(dpy, x11_window, &text_prop))
1514 XFree((void *)text_prop.value);
1515 XSync(dpy, False);
1516 (void)XSetErrorHandler(old_handler);
1517
1518 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001519 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520
1521 return (got_x_error ? FAIL : OK);
1522}
1523#endif
1524
1525#ifdef FEAT_TITLE
1526
1527#ifdef FEAT_X11
1528
1529static int get_x11_thing __ARGS((int get_title, int test_only));
1530
1531/*
1532 * try to get x11 window and display
1533 *
1534 * return FAIL for failure, OK otherwise
1535 */
1536 static int
1537get_x11_windis()
1538{
1539 char *winid;
1540 static int result = -1;
1541#define XD_NONE 0 /* x11_display not set here */
1542#define XD_HERE 1 /* x11_display opened here */
1543#define XD_GUI 2 /* x11_display used from gui.dpy */
1544#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1545 static int x11_display_from = XD_NONE;
1546 static int did_set_error_handler = FALSE;
1547
1548 if (!did_set_error_handler)
1549 {
1550 /* X just exits if it finds an error otherwise! */
1551 (void)XSetErrorHandler(x_error_handler);
1552 did_set_error_handler = TRUE;
1553 }
1554
Bram Moolenaar9372a112005-12-06 19:59:18 +00001555#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 if (gui.in_use)
1557 {
1558 /*
1559 * If the X11 display was opened here before, for the window where Vim
1560 * was started, close that one now to avoid a memory leak.
1561 */
1562 if (x11_display_from == XD_HERE && x11_display != NULL)
1563 {
1564 XCloseDisplay(x11_display);
1565 x11_display_from = XD_NONE;
1566 }
1567 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1568 {
1569 x11_display_from = XD_GUI;
1570 return OK;
1571 }
1572 x11_display = NULL;
1573 return FAIL;
1574 }
1575 else if (x11_display_from == XD_GUI)
1576 {
1577 /* GUI must have stopped somehow, clear x11_display */
1578 x11_window = 0;
1579 x11_display = NULL;
1580 x11_display_from = XD_NONE;
1581 }
1582#endif
1583
1584 /* When started with the "-X" argument, don't try connecting. */
1585 if (!x_connect_to_server())
1586 return FAIL;
1587
1588 /*
1589 * If WINDOWID not set, should try another method to find out
1590 * what the current window number is. The only code I know for
1591 * this is very complicated.
1592 * We assume that zero is invalid for WINDOWID.
1593 */
1594 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1595 x11_window = (Window)atol(winid);
1596
1597#ifdef FEAT_XCLIPBOARD
1598 if (xterm_dpy != NULL && x11_window != 0)
1599 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001600 /* We may have checked it already, but Gnome terminal can move us to
1601 * another window, so we need to check every time. */
1602 if (x11_display_from != XD_XTERM)
1603 {
1604 /*
1605 * If the X11 display was opened here before, for the window where
1606 * Vim was started, close that one now to avoid a memory leak.
1607 */
1608 if (x11_display_from == XD_HERE && x11_display != NULL)
1609 XCloseDisplay(x11_display);
1610 x11_display = xterm_dpy;
1611 x11_display_from = XD_XTERM;
1612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 if (test_x11_window(x11_display) == FAIL)
1614 {
1615 /* probably bad $WINDOWID */
1616 x11_window = 0;
1617 x11_display = NULL;
1618 x11_display_from = XD_NONE;
1619 return FAIL;
1620 }
1621 return OK;
1622 }
1623#endif
1624
1625 if (x11_window == 0 || x11_display == NULL)
1626 result = -1;
1627
1628 if (result != -1) /* Have already been here and set this */
1629 return result; /* Don't do all these X calls again */
1630
1631 if (x11_window != 0 && x11_display == NULL)
1632 {
1633#ifdef SET_SIG_ALARM
1634 RETSIGTYPE (*sig_save)();
1635#endif
1636#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1637 struct timeval start_tv;
1638
1639 if (p_verbose > 0)
1640 gettimeofday(&start_tv, NULL);
1641#endif
1642
1643#ifdef SET_SIG_ALARM
1644 /*
1645 * Opening the Display may hang if the DISPLAY setting is wrong, or
1646 * the network connection is bad. Set an alarm timer to get out.
1647 */
1648 sig_alarm_called = FALSE;
1649 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1650 (RETSIGTYPE (*)())sig_alarm);
1651 alarm(2);
1652#endif
1653 x11_display = XOpenDisplay(NULL);
1654
1655#ifdef SET_SIG_ALARM
1656 alarm(0);
1657 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1658 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001659 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660#endif
1661 if (x11_display != NULL)
1662 {
1663# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1664 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001665 {
1666 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001668 verbose_leave();
1669 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670# endif
1671 if (test_x11_window(x11_display) == FAIL)
1672 {
1673 /* Maybe window id is bad */
1674 x11_window = 0;
1675 XCloseDisplay(x11_display);
1676 x11_display = NULL;
1677 }
1678 else
1679 x11_display_from = XD_HERE;
1680 }
1681 }
1682 if (x11_window == 0 || x11_display == NULL)
1683 return (result = FAIL);
1684 return (result = OK);
1685}
1686
1687/*
1688 * Determine original x11 Window Title
1689 */
1690 static int
1691get_x11_title(test_only)
1692 int test_only;
1693{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001694 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695}
1696
1697/*
1698 * Determine original x11 Window icon
1699 */
1700 static int
1701get_x11_icon(test_only)
1702 int test_only;
1703{
1704 int retval = FALSE;
1705
1706 retval = get_x11_thing(FALSE, test_only);
1707
1708 /* could not get old icon, use terminal name */
1709 if (oldicon == NULL && !test_only)
1710 {
1711 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1712 oldicon = T_NAME + 8;
1713 else
1714 oldicon = T_NAME;
1715 }
1716
1717 return retval;
1718}
1719
1720 static int
1721get_x11_thing(get_title, test_only)
1722 int get_title; /* get title string */
1723 int test_only;
1724{
1725 XTextProperty text_prop;
1726 int retval = FALSE;
1727 Status status;
1728
1729 if (get_x11_windis() == OK)
1730 {
1731 /* Get window/icon name if any */
1732 if (get_title)
1733 status = XGetWMName(x11_display, x11_window, &text_prop);
1734 else
1735 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1736
1737 /*
1738 * If terminal is xterm, then x11_window may be a child window of the
1739 * outer xterm window that actually contains the window/icon name, so
1740 * keep traversing up the tree until a window with a title/icon is
1741 * found.
1742 */
1743 /* Previously this was only done for xterm and alikes. I don't see a
1744 * reason why it would fail for other terminal emulators.
1745 * if (term_is_xterm) */
1746 {
1747 Window root;
1748 Window parent;
1749 Window win = x11_window;
1750 Window *children;
1751 unsigned int num_children;
1752
1753 while (!status || text_prop.value == NULL)
1754 {
1755 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1756 &num_children))
1757 break;
1758 if (children)
1759 XFree((void *)children);
1760 if (parent == root || parent == 0)
1761 break;
1762
1763 win = parent;
1764 if (get_title)
1765 status = XGetWMName(x11_display, win, &text_prop);
1766 else
1767 status = XGetWMIconName(x11_display, win, &text_prop);
1768 }
1769 }
1770 if (status && text_prop.value != NULL)
1771 {
1772 retval = TRUE;
1773 if (!test_only)
1774 {
1775#ifdef FEAT_XFONTSET
1776 if (text_prop.encoding == XA_STRING)
1777 {
1778#endif
1779 if (get_title)
1780 oldtitle = vim_strsave((char_u *)text_prop.value);
1781 else
1782 oldicon = vim_strsave((char_u *)text_prop.value);
1783#ifdef FEAT_XFONTSET
1784 }
1785 else
1786 {
1787 char **cl;
1788 Status transform_status;
1789 int n = 0;
1790
1791 transform_status = XmbTextPropertyToTextList(x11_display,
1792 &text_prop,
1793 &cl, &n);
1794 if (transform_status >= Success && n > 0 && cl[0])
1795 {
1796 if (get_title)
1797 oldtitle = vim_strsave((char_u *) cl[0]);
1798 else
1799 oldicon = vim_strsave((char_u *) cl[0]);
1800 XFreeStringList(cl);
1801 }
1802 else
1803 {
1804 if (get_title)
1805 oldtitle = vim_strsave((char_u *)text_prop.value);
1806 else
1807 oldicon = vim_strsave((char_u *)text_prop.value);
1808 }
1809 }
1810#endif
1811 }
1812 XFree((void *)text_prop.value);
1813 }
1814 }
1815 return retval;
1816}
1817
1818/* Are Xutf8 functions available? Avoid error from old compilers. */
1819#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1820# if X_HAVE_UTF8_STRING
1821# define USE_UTF8_STRING
1822# endif
1823#endif
1824
1825/*
1826 * Set x11 Window Title
1827 *
1828 * get_x11_windis() must be called before this and have returned OK
1829 */
1830 static void
1831set_x11_title(title)
1832 char_u *title;
1833{
1834 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1835 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1836 * supported everywhere and STRING doesn't work for multi-byte titles.
1837 */
1838#ifdef USE_UTF8_STRING
1839 if (enc_utf8)
1840 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1841 NULL, NULL, 0, NULL, NULL, NULL);
1842 else
1843#endif
1844 {
1845#if XtSpecificationRelease >= 4
1846# ifdef FEAT_XFONTSET
1847 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1848 NULL, NULL, 0, NULL, NULL, NULL);
1849# else
1850 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001851 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852
1853 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001854 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 XSetWMProperties(x11_display, x11_window, &text_prop,
1856 NULL, NULL, 0, NULL, NULL, NULL);
1857# endif
1858#else
1859 XStoreName(x11_display, x11_window, (char *)title);
1860#endif
1861 }
1862 XFlush(x11_display);
1863}
1864
1865/*
1866 * Set x11 Window icon
1867 *
1868 * get_x11_windis() must be called before this and have returned OK
1869 */
1870 static void
1871set_x11_icon(icon)
1872 char_u *icon;
1873{
1874 /* See above for comments about using X*SetWMProperties(). */
1875#ifdef USE_UTF8_STRING
1876 if (enc_utf8)
1877 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1878 NULL, 0, NULL, NULL, NULL);
1879 else
1880#endif
1881 {
1882#if XtSpecificationRelease >= 4
1883# ifdef FEAT_XFONTSET
1884 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1885 NULL, 0, NULL, NULL, NULL);
1886# else
1887 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001888 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001890 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1892 NULL, 0, NULL, NULL, NULL);
1893# endif
1894#else
1895 XSetIconName(x11_display, x11_window, (char *)icon);
1896#endif
1897 }
1898 XFlush(x11_display);
1899}
1900
1901#else /* FEAT_X11 */
1902
1903/*ARGSUSED*/
1904 static int
1905get_x11_title(test_only)
1906 int test_only;
1907{
1908 return FALSE;
1909}
1910
1911 static int
1912get_x11_icon(test_only)
1913 int test_only;
1914{
1915 if (!test_only)
1916 {
1917 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1918 oldicon = T_NAME + 8;
1919 else
1920 oldicon = T_NAME;
1921 }
1922 return FALSE;
1923}
1924
1925#endif /* FEAT_X11 */
1926
1927 int
1928mch_can_restore_title()
1929{
1930 return get_x11_title(TRUE);
1931}
1932
1933 int
1934mch_can_restore_icon()
1935{
1936 return get_x11_icon(TRUE);
1937}
1938
1939/*
1940 * Set the window title and icon.
1941 */
1942 void
1943mch_settitle(title, icon)
1944 char_u *title;
1945 char_u *icon;
1946{
1947 int type = 0;
1948 static int recursive = 0;
1949
1950 if (T_NAME == NULL) /* no terminal name (yet) */
1951 return;
1952 if (title == NULL && icon == NULL) /* nothing to do */
1953 return;
1954
1955 /* When one of the X11 functions causes a deadly signal, we get here again
1956 * recursively. Avoid hanging then (something is probably locked). */
1957 if (recursive)
1958 return;
1959 ++recursive;
1960
1961 /*
1962 * if the window ID and the display is known, we may use X11 calls
1963 */
1964#ifdef FEAT_X11
1965 if (get_x11_windis() == OK)
1966 type = 1;
1967#else
1968# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1969 if (gui.in_use)
1970 type = 1;
1971# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972#endif
1973
1974 /*
1975 * Note: if "t_TS" is set, title is set with escape sequence rather
1976 * than x11 calls, because the x11 calls don't always work
1977 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 if ((type || *T_TS != NUL) && title != NULL)
1979 {
1980 if (oldtitle == NULL
1981#ifdef FEAT_GUI
1982 && !gui.in_use
1983#endif
1984 ) /* first call but not in GUI, save title */
1985 (void)get_x11_title(FALSE);
1986
1987 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1988 term_settitle(title);
1989#ifdef FEAT_X11
1990 else
1991# ifdef FEAT_GUI_GTK
1992 if (!gui.in_use) /* don't do this if GTK+ is running */
1993# endif
1994 set_x11_title(title); /* x11 */
1995#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00001996#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
1998 else
1999 gui_mch_settitle(title, icon);
2000#endif
2001 did_set_title = TRUE;
2002 }
2003
2004 if ((type || *T_CIS != NUL) && icon != NULL)
2005 {
2006 if (oldicon == NULL
2007#ifdef FEAT_GUI
2008 && !gui.in_use
2009#endif
2010 ) /* first call, save icon */
2011 get_x11_icon(FALSE);
2012
2013 if (*T_CIS != NUL)
2014 {
2015 out_str(T_CIS); /* set icon start */
2016 out_str_nf(icon);
2017 out_str(T_CIE); /* set icon end */
2018 out_flush();
2019 }
2020#ifdef FEAT_X11
2021 else
2022# ifdef FEAT_GUI_GTK
2023 if (!gui.in_use) /* don't do this if GTK+ is running */
2024# endif
2025 set_x11_icon(icon); /* x11 */
2026#endif
2027 did_set_icon = TRUE;
2028 }
2029 --recursive;
2030}
2031
2032/*
2033 * Restore the window/icon title.
2034 * "which" is one of:
2035 * 1 only restore title
2036 * 2 only restore icon
2037 * 3 restore title and icon
2038 */
2039 void
2040mch_restore_title(which)
2041 int which;
2042{
2043 /* only restore the title or icon when it has been set */
2044 mch_settitle(((which & 1) && did_set_title) ?
2045 (oldtitle ? oldtitle : p_titleold) : NULL,
2046 ((which & 2) && did_set_icon) ? oldicon : NULL);
2047}
2048
2049#endif /* FEAT_TITLE */
2050
2051/*
2052 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002053 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 */
2055 int
2056vim_is_xterm(name)
2057 char_u *name;
2058{
2059 if (name == NULL)
2060 return FALSE;
2061 return (STRNICMP(name, "xterm", 5) == 0
2062 || STRNICMP(name, "nxterm", 6) == 0
2063 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002064 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 || STRNICMP(name, "rxvt", 4) == 0
2066 || STRCMP(name, "builtin_xterm") == 0);
2067}
2068
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002069#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2070/*
2071 * Return TRUE if "name" appears to be that of a terminal
2072 * known to support the xterm-style mouse protocol.
2073 * Relies on term_is_xterm having been set to its correct value.
2074 */
2075 int
2076use_xterm_like_mouse(name)
2077 char_u *name;
2078{
2079 return (name != NULL
2080 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2081}
2082#endif
2083
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2085/*
2086 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2087 * Return 1 for "xterm".
2088 * Return 2 for "xterm2".
2089 */
2090 int
2091use_xterm_mouse()
2092{
2093 if (ttym_flags == TTYM_XTERM2)
2094 return 2;
2095 if (ttym_flags == TTYM_XTERM)
2096 return 1;
2097 return 0;
2098}
2099#endif
2100
2101 int
2102vim_is_iris(name)
2103 char_u *name;
2104{
2105 if (name == NULL)
2106 return FALSE;
2107 return (STRNICMP(name, "iris-ansi", 9) == 0
2108 || STRCMP(name, "builtin_iris-ansi") == 0);
2109}
2110
2111 int
2112vim_is_vt300(name)
2113 char_u *name;
2114{
2115 if (name == NULL)
2116 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002117 /* catch VT100 - VT5xx */
2118 return ((STRNICMP(name, "vt", 2) == 0
2119 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 || STRCMP(name, "builtin_vt320") == 0);
2121}
2122
2123/*
2124 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2125 * This should include all windowed terminal emulators.
2126 */
2127 int
2128vim_is_fastterm(name)
2129 char_u *name;
2130{
2131 if (name == NULL)
2132 return FALSE;
2133 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2134 return TRUE;
2135 return ( STRNICMP(name, "hpterm", 6) == 0
2136 || STRNICMP(name, "sun-cmd", 7) == 0
2137 || STRNICMP(name, "screen", 6) == 0
2138 || STRNICMP(name, "dtterm", 6) == 0);
2139}
2140
2141/*
2142 * Insert user name in s[len].
2143 * Return OK if a name found.
2144 */
2145 int
2146mch_get_user_name(s, len)
2147 char_u *s;
2148 int len;
2149{
2150#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002151 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 return OK;
2153#else
2154 return mch_get_uname(getuid(), s, len);
2155#endif
2156}
2157
2158/*
2159 * Insert user name for "uid" in s[len].
2160 * Return OK if a name found.
2161 */
2162 int
2163mch_get_uname(uid, s, len)
2164 uid_t uid;
2165 char_u *s;
2166 int len;
2167{
2168#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2169 struct passwd *pw;
2170
2171 if ((pw = getpwuid(uid)) != NULL
2172 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2173 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002174 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 return OK;
2176 }
2177#endif
2178 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2179 return FAIL; /* a number is not a name */
2180}
2181
2182/*
2183 * Insert host name is s[len].
2184 */
2185
2186#ifdef HAVE_SYS_UTSNAME_H
2187 void
2188mch_get_host_name(s, len)
2189 char_u *s;
2190 int len;
2191{
2192 struct utsname vutsname;
2193
2194 if (uname(&vutsname) < 0)
2195 *s = NUL;
2196 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002197 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198}
2199#else /* HAVE_SYS_UTSNAME_H */
2200
2201# ifdef HAVE_SYS_SYSTEMINFO_H
2202# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2203# endif
2204
2205 void
2206mch_get_host_name(s, len)
2207 char_u *s;
2208 int len;
2209{
2210# ifdef VAXC
2211 vaxc$gethostname((char *)s, len);
2212# else
2213 gethostname((char *)s, len);
2214# endif
2215 s[len - 1] = NUL; /* make sure it's terminated */
2216}
2217#endif /* HAVE_SYS_UTSNAME_H */
2218
2219/*
2220 * return process ID
2221 */
2222 long
2223mch_get_pid()
2224{
2225 return (long)getpid();
2226}
2227
2228#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2229static char *strerror __ARGS((int));
2230
2231 static char *
2232strerror(err)
2233 int err;
2234{
2235 extern int sys_nerr;
2236 extern char *sys_errlist[];
2237 static char er[20];
2238
2239 if (err > 0 && err < sys_nerr)
2240 return (sys_errlist[err]);
2241 sprintf(er, "Error %d", err);
2242 return er;
2243}
2244#endif
2245
2246/*
2247 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2248 * Return OK for success, FAIL for failure.
2249 */
2250 int
2251mch_dirname(buf, len)
2252 char_u *buf;
2253 int len;
2254{
2255#if defined(USE_GETCWD)
2256 if (getcwd((char *)buf, len) == NULL)
2257 {
2258 STRCPY(buf, strerror(errno));
2259 return FAIL;
2260 }
2261 return OK;
2262#else
2263 return (getwd((char *)buf) != NULL ? OK : FAIL);
2264#endif
2265}
2266
2267#if defined(OS2) || defined(PROTO)
2268/*
2269 * Replace all slashes by backslashes.
2270 * When 'shellslash' set do it the other way around.
2271 */
2272 void
2273slash_adjust(p)
2274 char_u *p;
2275{
2276 while (*p)
2277 {
2278 if (*p == psepcN)
2279 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002280 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 }
2282}
2283#endif
2284
2285/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002286 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 *
2288 * return FAIL for failure, OK for success
2289 */
2290 int
2291mch_FullName(fname, buf, len, force)
2292 char_u *fname, *buf;
2293 int len;
2294 int force; /* also expand when already absolute path */
2295{
2296 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002297#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 int only_drive; /* file name is only a drive letter */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002299#endif
2300#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 int fd = -1;
2302 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 char_u olddir[MAXPATHL];
2305 char_u *p;
2306 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002307#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002308 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2309 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002310#endif
2311
Bram Moolenaar38323e42007-03-06 19:22:53 +00002312#ifdef VMS
2313 fname = vms_fixfilename(fname);
2314#endif
2315
Bram Moolenaara2442432007-04-26 14:26:37 +00002316#ifdef __CYGWIN__
2317 /*
2318 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2319 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002320# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2321 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2322# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002323 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002324# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002325 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002326#endif
2327
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 /* expand it if forced or not an absolute path */
2329 if (force || !mch_isFullName(fname))
2330 {
2331 /*
2332 * If the file name has a path, change to that directory for a moment,
2333 * and then do the getwd() (and get back to where we were).
2334 * This will get the correct path name with "../" things.
2335 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002336#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 only_drive = 0;
2338 if (((p = vim_strrchr(fname, '/')) != NULL)
2339 || ((p = vim_strrchr(fname, '\\')) != NULL)
2340 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
Bram Moolenaar38323e42007-03-06 19:22:53 +00002341#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 if ((p = vim_strrchr(fname, '/')) != NULL)
Bram Moolenaar38323e42007-03-06 19:22:53 +00002343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002345#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 /*
2347 * Use fchdir() if possible, it's said to be faster and more
2348 * reliable. But on SunOS 4 it might not work. Check this by
2349 * doing a fchdir() right now.
2350 */
2351 if (!dont_fchdir)
2352 {
2353 fd = open(".", O_RDONLY | O_EXTRA, 0);
2354 if (fd >= 0 && fchdir(fd) < 0)
2355 {
2356 close(fd);
2357 fd = -1;
2358 dont_fchdir = TRUE; /* don't try again */
2359 }
2360 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362
2363 /* Only change directory when we are sure we can return to where
2364 * we are now. After doing "su" chdir(".") might not work. */
2365 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002366#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 (mch_dirname(olddir, MAXPATHL) == FAIL
2370 || mch_chdir((char *)olddir) != 0))
2371 {
2372 p = NULL; /* can't get current dir: don't chdir */
2373 retval = FAIL;
2374 }
2375 else
2376 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002377#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 /*
2379 * compensate for case where ':' from "D:" was the only
2380 * path separator detected in the file name; the _next_
2381 * character has to be removed, and then restored later.
2382 */
2383 if (only_drive)
2384 p++;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002385#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 /* The directory is copied into buf[], to be able to remove
2387 * the file name without changing it (could be a string in
2388 * read-only memory) */
2389 if (p - fname >= len)
2390 retval = FAIL;
2391 else
2392 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002393 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 if (mch_chdir((char *)buf))
2395 retval = FAIL;
2396 else
2397 fname = p + 1;
2398 *buf = NUL;
2399 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002400#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 if (only_drive)
2402 {
2403 p--;
2404 if (retval != FAIL)
2405 fname--;
2406 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002407#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 }
2409 }
2410 if (mch_dirname(buf, len) == FAIL)
2411 {
2412 retval = FAIL;
2413 *buf = NUL;
2414 }
2415 if (p != NULL)
2416 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002417#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 if (fd >= 0)
2419 {
2420 l = fchdir(fd);
2421 close(fd);
2422 }
2423 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 l = mch_chdir((char *)olddir);
2426 if (l != 0)
2427 EMSG(_(e_prev_dir));
2428 }
2429
2430 l = STRLEN(buf);
2431 if (l >= len)
2432 retval = FAIL;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002433#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 else
2435 {
2436 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2437 && STRCMP(fname, ".") != 0)
2438 STRCAT(buf, "/");
2439 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002442
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 /* Catch file names which are too long. */
2444 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2445 return FAIL;
2446
2447 /* Do not append ".", "/dir/." is equal to "/dir". */
2448 if (STRCMP(fname, ".") != 0)
2449 STRCAT(buf, fname);
2450
2451 return OK;
2452}
2453
2454/*
2455 * Return TRUE if "fname" does not depend on the current directory.
2456 */
2457 int
2458mch_isFullName(fname)
2459 char_u *fname;
2460{
2461#ifdef __EMX__
2462 return _fnisabs(fname);
2463#else
2464# ifdef VMS
2465 return ( fname[0] == '/' || fname[0] == '.' ||
2466 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2467 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2468 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2469# else
2470 return (*fname == '/' || *fname == '~');
2471# endif
2472#endif
2473}
2474
Bram Moolenaar24552be2005-12-10 20:17:30 +00002475#if defined(USE_FNAME_CASE) || defined(PROTO)
2476/*
2477 * Set the case of the file name, if it already exists. This will cause the
2478 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002479 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002480 */
2481/*ARGSUSED*/
2482 void
2483fname_case(name, len)
2484 char_u *name;
2485 int len; /* buffer size, only used when name gets longer */
2486{
2487 struct stat st;
2488 char_u *slash, *tail;
2489 DIR *dirp;
2490 struct dirent *dp;
2491
2492 if (lstat((char *)name, &st) >= 0)
2493 {
2494 /* Open the directory where the file is located. */
2495 slash = vim_strrchr(name, '/');
2496 if (slash == NULL)
2497 {
2498 dirp = opendir(".");
2499 tail = name;
2500 }
2501 else
2502 {
2503 *slash = NUL;
2504 dirp = opendir((char *)name);
2505 *slash = '/';
2506 tail = slash + 1;
2507 }
2508
2509 if (dirp != NULL)
2510 {
2511 while ((dp = readdir(dirp)) != NULL)
2512 {
2513 /* Only accept names that differ in case and are the same byte
2514 * length. TODO: accept different length name. */
2515 if (STRICMP(tail, dp->d_name) == 0
2516 && STRLEN(tail) == STRLEN(dp->d_name))
2517 {
2518 char_u newname[MAXPATHL + 1];
2519 struct stat st2;
2520
2521 /* Verify the inode is equal. */
2522 vim_strncpy(newname, name, MAXPATHL);
2523 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2524 MAXPATHL - (tail - name));
2525 if (lstat((char *)newname, &st2) >= 0
2526 && st.st_ino == st2.st_ino
2527 && st.st_dev == st2.st_dev)
2528 {
2529 STRCPY(tail, dp->d_name);
2530 break;
2531 }
2532 }
2533 }
2534
2535 closedir(dirp);
2536 }
2537 }
2538}
2539#endif
2540
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541/*
2542 * Get file permissions for 'name'.
2543 * Returns -1 when it doesn't exist.
2544 */
2545 long
2546mch_getperm(name)
2547 char_u *name;
2548{
2549 struct stat statb;
2550
2551 /* Keep the #ifdef outside of stat(), it may be a macro. */
2552#ifdef VMS
2553 if (stat((char *)vms_fixfilename(name), &statb))
2554#else
2555 if (stat((char *)name, &statb))
2556#endif
2557 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002558#ifdef __INTERIX
2559 /* The top bit makes the value negative, which means the file doesn't
2560 * exist. Remove the bit, we don't use it. */
2561 return statb.st_mode & ~S_ADDACE;
2562#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002564#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565}
2566
2567/*
2568 * set file permission for 'name' to 'perm'
2569 *
2570 * return FAIL for failure, OK otherwise
2571 */
2572 int
2573mch_setperm(name, perm)
2574 char_u *name;
2575 long perm;
2576{
2577 return (chmod((char *)
2578#ifdef VMS
2579 vms_fixfilename(name),
2580#else
2581 name,
2582#endif
2583 (mode_t)perm) == 0 ? OK : FAIL);
2584}
2585
2586#if defined(HAVE_ACL) || defined(PROTO)
2587# ifdef HAVE_SYS_ACL_H
2588# include <sys/acl.h>
2589# endif
2590# ifdef HAVE_SYS_ACCESS_H
2591# include <sys/access.h>
2592# endif
2593
2594# ifdef HAVE_SOLARIS_ACL
2595typedef struct vim_acl_solaris_T {
2596 int acl_cnt;
2597 aclent_t *acl_entry;
2598} vim_acl_solaris_T;
2599# endif
2600
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002601#if defined(HAVE_SELINUX) || defined(PROTO)
2602/*
2603 * Copy security info from "from_file" to "to_file".
2604 */
2605 void
2606mch_copy_sec(from_file, to_file)
2607 char_u *from_file;
2608 char_u *to_file;
2609{
2610 if (from_file == NULL)
2611 return;
2612
2613 if (selinux_enabled == -1)
2614 selinux_enabled = is_selinux_enabled();
2615
2616 if (selinux_enabled > 0)
2617 {
2618 security_context_t from_context = NULL;
2619 security_context_t to_context = NULL;
2620
2621 if (getfilecon((char *)from_file, &from_context) < 0)
2622 {
2623 /* If the filesystem doesn't support extended attributes,
2624 the original had no special security context and the
2625 target cannot have one either. */
2626 if (errno == EOPNOTSUPP)
2627 return;
2628
2629 MSG_PUTS(_("\nCould not get security context for "));
2630 msg_outtrans(from_file);
2631 msg_putchar('\n');
2632 return;
2633 }
2634 if (getfilecon((char *)to_file, &to_context) < 0)
2635 {
2636 MSG_PUTS(_("\nCould not get security context for "));
2637 msg_outtrans(to_file);
2638 msg_putchar('\n');
2639 freecon (from_context);
2640 return ;
2641 }
2642 if (strcmp(from_context, to_context) != 0)
2643 {
2644 if (setfilecon((char *)to_file, from_context) < 0)
2645 {
2646 MSG_PUTS(_("\nCould not set security context for "));
2647 msg_outtrans(to_file);
2648 msg_putchar('\n');
2649 }
2650 }
2651 freecon(to_context);
2652 freecon(from_context);
2653 }
2654}
2655#endif /* HAVE_SELINUX */
2656
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657/*
2658 * Return a pointer to the ACL of file "fname" in allocated memory.
2659 * Return NULL if the ACL is not available for whatever reason.
2660 */
2661 vim_acl_T
2662mch_get_acl(fname)
2663 char_u *fname;
2664{
2665 vim_acl_T ret = NULL;
2666#ifdef HAVE_POSIX_ACL
2667 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2668#else
2669#ifdef HAVE_SOLARIS_ACL
2670 vim_acl_solaris_T *aclent;
2671
2672 aclent = malloc(sizeof(vim_acl_solaris_T));
2673 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2674 {
2675 free(aclent);
2676 return NULL;
2677 }
2678 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2679 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2680 {
2681 free(aclent->acl_entry);
2682 free(aclent);
2683 return NULL;
2684 }
2685 ret = (vim_acl_T)aclent;
2686#else
2687#if defined(HAVE_AIX_ACL)
2688 int aclsize;
2689 struct acl *aclent;
2690
2691 aclsize = sizeof(struct acl);
2692 aclent = malloc(aclsize);
2693 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2694 {
2695 if (errno == ENOSPC)
2696 {
2697 aclsize = aclent->acl_len;
2698 aclent = realloc(aclent, aclsize);
2699 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2700 {
2701 free(aclent);
2702 return NULL;
2703 }
2704 }
2705 else
2706 {
2707 free(aclent);
2708 return NULL;
2709 }
2710 }
2711 ret = (vim_acl_T)aclent;
2712#endif /* HAVE_AIX_ACL */
2713#endif /* HAVE_SOLARIS_ACL */
2714#endif /* HAVE_POSIX_ACL */
2715 return ret;
2716}
2717
2718/*
2719 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2720 */
2721 void
2722mch_set_acl(fname, aclent)
2723 char_u *fname;
2724 vim_acl_T aclent;
2725{
2726 if (aclent == NULL)
2727 return;
2728#ifdef HAVE_POSIX_ACL
2729 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2730#else
2731#ifdef HAVE_SOLARIS_ACL
2732 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2733 ((vim_acl_solaris_T *)aclent)->acl_entry);
2734#else
2735#ifdef HAVE_AIX_ACL
2736 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2737#endif /* HAVE_AIX_ACL */
2738#endif /* HAVE_SOLARIS_ACL */
2739#endif /* HAVE_POSIX_ACL */
2740}
2741
2742 void
2743mch_free_acl(aclent)
2744 vim_acl_T aclent;
2745{
2746 if (aclent == NULL)
2747 return;
2748#ifdef HAVE_POSIX_ACL
2749 acl_free((acl_t)aclent);
2750#else
2751#ifdef HAVE_SOLARIS_ACL
2752 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2753 free(aclent);
2754#else
2755#ifdef HAVE_AIX_ACL
2756 free(aclent);
2757#endif /* HAVE_AIX_ACL */
2758#endif /* HAVE_SOLARIS_ACL */
2759#endif /* HAVE_POSIX_ACL */
2760}
2761#endif
2762
2763/*
2764 * Set hidden flag for "name".
2765 */
2766/* ARGSUSED */
2767 void
2768mch_hide(name)
2769 char_u *name;
2770{
2771 /* can't hide a file */
2772}
2773
2774/*
2775 * return TRUE if "name" is a directory
2776 * return FALSE if "name" is not a directory
2777 * return FALSE for error
2778 */
2779 int
2780mch_isdir(name)
2781 char_u *name;
2782{
2783 struct stat statb;
2784
2785 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2786 return FALSE;
2787 if (stat((char *)name, &statb))
2788 return FALSE;
2789#ifdef _POSIX_SOURCE
2790 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2791#else
2792 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2793#endif
2794}
2795
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796static int executable_file __ARGS((char_u *name));
2797
2798/*
2799 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2800 */
2801 static int
2802executable_file(name)
2803 char_u *name;
2804{
2805 struct stat st;
2806
2807 if (stat((char *)name, &st))
2808 return 0;
2809 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2810}
2811
2812/*
2813 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2814 * Return -1 if unknown.
2815 */
2816 int
2817mch_can_exe(name)
2818 char_u *name;
2819{
2820 char_u *buf;
2821 char_u *p, *e;
2822 int retval;
2823
2824 /* If it's an absolute or relative path don't need to use $PATH. */
2825 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2826 || (name[1] == '.' && name[2] == '/'))))
2827 return executable_file(name);
2828
2829 p = (char_u *)getenv("PATH");
2830 if (p == NULL || *p == NUL)
2831 return -1;
2832 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2833 if (buf == NULL)
2834 return -1;
2835
2836 /*
2837 * Walk through all entries in $PATH to check if "name" exists there and
2838 * is an executable file.
2839 */
2840 for (;;)
2841 {
2842 e = (char_u *)strchr((char *)p, ':');
2843 if (e == NULL)
2844 e = p + STRLEN(p);
2845 if (e - p <= 1) /* empty entry means current dir */
2846 STRCPY(buf, "./");
2847 else
2848 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002849 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 add_pathsep(buf);
2851 }
2852 STRCAT(buf, name);
2853 retval = executable_file(buf);
2854 if (retval == 1)
2855 break;
2856
2857 if (*e != ':')
2858 break;
2859 p = e + 1;
2860 }
2861
2862 vim_free(buf);
2863 return retval;
2864}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865
2866/*
2867 * Check what "name" is:
2868 * NODE_NORMAL: file or directory (or doesn't exist)
2869 * NODE_WRITABLE: writable device, socket, fifo, etc.
2870 * NODE_OTHER: non-writable things
2871 */
2872 int
2873mch_nodetype(name)
2874 char_u *name;
2875{
2876 struct stat st;
2877
2878 if (stat((char *)name, &st))
2879 return NODE_NORMAL;
2880 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2881 return NODE_NORMAL;
2882#ifndef OS2
2883 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2884 return NODE_OTHER;
2885#endif
2886 /* Everything else is writable? */
2887 return NODE_WRITABLE;
2888}
2889
2890 void
2891mch_early_init()
2892{
2893#ifdef HAVE_CHECK_STACK_GROWTH
2894 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 check_stack_growth((char *)&i);
2897
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002898# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 get_stack_limit();
2900# endif
2901
2902#endif
2903
2904 /*
2905 * Setup an alternative stack for signals. Helps to catch signals when
2906 * running out of stack space.
2907 * Use of sigaltstack() is preferred, it's more portable.
2908 * Ignore any errors.
2909 */
2910#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00002911 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 init_signal_stack();
2913#endif
2914}
2915
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002916#if defined(EXITFREE) || defined(PROTO)
2917 void
2918mch_free_mem()
2919{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002920# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2921 if (clip_star.owned)
2922 clip_lose_selection(&clip_star);
2923 if (clip_plus.owned)
2924 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002925# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00002926# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002927 if (xterm_Shell != (Widget)0)
2928 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00002929# ifndef LESSTIF_VERSION
2930 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002931 if (xterm_dpy != NULL)
2932 XtCloseDisplay(xterm_dpy);
2933 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00002934 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002935 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00002936# ifdef FEAT_X11
2937 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2938# endif
2939 }
2940# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002941# endif
Bram Moolenaara8785102008-11-12 13:10:15 +00002942 /* Don't close the display for GTK 1, it is done in exit(). */
2943# if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
Bram Moolenaare8208012008-06-20 09:59:25 +00002944 if (x11_display != NULL
2945# ifdef FEAT_XCLIPBOARD
2946 && x11_display != xterm_dpy
2947# endif
2948 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002949 XCloseDisplay(x11_display);
2950# endif
2951# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2952 vim_free(signal_stack);
2953 signal_stack = NULL;
2954# endif
2955# ifdef FEAT_TITLE
2956 vim_free(oldtitle);
2957 vim_free(oldicon);
2958# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002959}
2960#endif
2961
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962static void exit_scroll __ARGS((void));
2963
2964/*
2965 * Output a newline when exiting.
2966 * Make sure the newline goes to the same stream as the text.
2967 */
2968 static void
2969exit_scroll()
2970{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002971 if (silent_mode)
2972 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 if (newline_on_exit || msg_didout)
2974 {
2975 if (msg_use_printf())
2976 {
2977 if (info_message)
2978 mch_msg("\n");
2979 else
2980 mch_errmsg("\r\n");
2981 }
2982 else
2983 out_char('\n');
2984 }
2985 else
2986 {
2987 restore_cterm_colors(); /* get original colors back */
2988 msg_clr_eos_force(); /* clear the rest of the display */
2989 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2990 }
2991}
2992
2993 void
2994mch_exit(r)
2995 int r;
2996{
2997 exiting = TRUE;
2998
2999#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3000 x11_export_final_selection();
3001#endif
3002
3003#ifdef FEAT_GUI
3004 if (!gui.in_use)
3005#endif
3006 {
3007 settmode(TMODE_COOK);
3008#ifdef FEAT_TITLE
3009 mch_restore_title(3); /* restore xterm title and icon name */
3010#endif
3011 /*
3012 * When t_ti is not empty but it doesn't cause swapping terminal
3013 * pages, need to output a newline when msg_didout is set. But when
3014 * t_ti does swap pages it should not go to the shell page. Do this
3015 * before stoptermcap().
3016 */
3017 if (swapping_screen() && !newline_on_exit)
3018 exit_scroll();
3019
3020 /* Stop termcap: May need to check for T_CRV response, which
3021 * requires RAW mode. */
3022 stoptermcap();
3023
3024 /*
3025 * A newline is only required after a message in the alternate screen.
3026 * This is set to TRUE by wait_return().
3027 */
3028 if (!swapping_screen() || newline_on_exit)
3029 exit_scroll();
3030
3031 /* Cursor may have been switched off without calling starttermcap()
3032 * when doing "vim -u vimrc" and vimrc contains ":q". */
3033 if (full_screen)
3034 cursor_on();
3035 }
3036 out_flush();
3037 ml_close_all(TRUE); /* remove all memfiles */
3038 may_core_dump();
3039#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 gui_exit(r);
3042#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003043
Bram Moolenaar56718732006-03-15 22:53:57 +00003044#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003045 mac_conv_cleanup();
3046#endif
3047
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048#ifdef __QNX__
3049 /* A core dump won't be created if the signal handler
3050 * doesn't return, so we can't call exit() */
3051 if (deadly_signal != 0)
3052 return;
3053#endif
3054
Bram Moolenaar009b2592004-10-24 19:18:58 +00003055#ifdef FEAT_NETBEANS_INTG
3056 if (usingNetbeans)
3057 netbeans_send_disconnect();
3058#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003059
3060#ifdef EXITFREE
3061 free_all_mem();
3062#endif
3063
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 exit(r);
3065}
3066
3067 static void
3068may_core_dump()
3069{
3070 if (deadly_signal != 0)
3071 {
3072 signal(deadly_signal, SIG_DFL);
3073 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3074 }
3075}
3076
3077#ifndef VMS
3078
3079 void
3080mch_settmode(tmode)
3081 int tmode;
3082{
3083 static int first = TRUE;
3084
3085 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3086#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3087 /*
3088 * for "new" tty systems
3089 */
3090# ifdef HAVE_TERMIOS_H
3091 static struct termios told;
3092 struct termios tnew;
3093# else
3094 static struct termio told;
3095 struct termio tnew;
3096# endif
3097
3098 if (first)
3099 {
3100 first = FALSE;
3101# if defined(HAVE_TERMIOS_H)
3102 tcgetattr(read_cmd_fd, &told);
3103# else
3104 ioctl(read_cmd_fd, TCGETA, &told);
3105# endif
3106 }
3107
3108 tnew = told;
3109 if (tmode == TMODE_RAW)
3110 {
3111 /*
3112 * ~ICRNL enables typing ^V^M
3113 */
3114 tnew.c_iflag &= ~ICRNL;
3115 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3116# if defined(IEXTEN) && !defined(__MINT__)
3117 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3118 /* but it breaks function keys on MINT */
3119# endif
3120 );
3121# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3122 tnew.c_oflag &= ~ONLCR;
3123# endif
3124 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3125 tnew.c_cc[VTIME] = 0; /* don't wait */
3126 }
3127 else if (tmode == TMODE_SLEEP)
3128 tnew.c_lflag &= ~(ECHO);
3129
3130# if defined(HAVE_TERMIOS_H)
3131 {
3132 int n = 10;
3133
3134 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3135 * few times. */
3136 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3137 && errno == EINTR && n > 0)
3138 --n;
3139 }
3140# else
3141 ioctl(read_cmd_fd, TCSETA, &tnew);
3142# endif
3143
3144#else
3145
3146 /*
3147 * for "old" tty systems
3148 */
3149# ifndef TIOCSETN
3150# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3151# endif
3152 static struct sgttyb ttybold;
3153 struct sgttyb ttybnew;
3154
3155 if (first)
3156 {
3157 first = FALSE;
3158 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3159 }
3160
3161 ttybnew = ttybold;
3162 if (tmode == TMODE_RAW)
3163 {
3164 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3165 ttybnew.sg_flags |= RAW;
3166 }
3167 else if (tmode == TMODE_SLEEP)
3168 ttybnew.sg_flags &= ~(ECHO);
3169 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3170#endif
3171 curr_tmode = tmode;
3172}
3173
3174/*
3175 * Try to get the code for "t_kb" from the stty setting
3176 *
3177 * Even if termcap claims a backspace key, the user's setting *should*
3178 * prevail. stty knows more about reality than termcap does, and if
3179 * somebody's usual erase key is DEL (which, for most BSD users, it will
3180 * be), they're going to get really annoyed if their erase key starts
3181 * doing forward deletes for no reason. (Eric Fischer)
3182 */
3183 void
3184get_stty()
3185{
3186 char_u buf[2];
3187 char_u *p;
3188
3189 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3190#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3191 /* for "new" tty systems */
3192# ifdef HAVE_TERMIOS_H
3193 struct termios keys;
3194# else
3195 struct termio keys;
3196# endif
3197
3198# if defined(HAVE_TERMIOS_H)
3199 if (tcgetattr(read_cmd_fd, &keys) != -1)
3200# else
3201 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3202# endif
3203 {
3204 buf[0] = keys.c_cc[VERASE];
3205 intr_char = keys.c_cc[VINTR];
3206#else
3207 /* for "old" tty systems */
3208 struct sgttyb keys;
3209
3210 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3211 {
3212 buf[0] = keys.sg_erase;
3213 intr_char = keys.sg_kill;
3214#endif
3215 buf[1] = NUL;
3216 add_termcode((char_u *)"kb", buf, FALSE);
3217
3218 /*
3219 * If <BS> and <DEL> are now the same, redefine <DEL>.
3220 */
3221 p = find_termcode((char_u *)"kD");
3222 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3223 do_fixdel(NULL);
3224 }
3225#if 0
3226 } /* to keep cindent happy */
3227#endif
3228}
3229
3230#endif /* VMS */
3231
3232#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3233/*
3234 * Set mouse clicks on or off.
3235 */
3236 void
3237mch_setmouse(on)
3238 int on;
3239{
3240 static int ison = FALSE;
3241 int xterm_mouse_vers;
3242
3243 if (on == ison) /* return quickly if nothing to do */
3244 return;
3245
3246 xterm_mouse_vers = use_xterm_mouse();
3247 if (xterm_mouse_vers > 0)
3248 {
3249 if (on) /* enable mouse events, use mouse tracking if available */
3250 out_str_nf((char_u *)
3251 (xterm_mouse_vers > 1
3252 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3253 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3254 else /* disable mouse events, could probably always send the same */
3255 out_str_nf((char_u *)
3256 (xterm_mouse_vers > 1
3257 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3258 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3259 ison = on;
3260 }
3261
3262# ifdef FEAT_MOUSE_DEC
3263 else if (ttym_flags == TTYM_DEC)
3264 {
3265 if (on) /* enable mouse events */
3266 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3267 else /* disable mouse events */
3268 out_str_nf((char_u *)"\033['z");
3269 ison = on;
3270 }
3271# endif
3272
3273# ifdef FEAT_MOUSE_GPM
3274 else
3275 {
3276 if (on)
3277 {
3278 if (gpm_open())
3279 ison = TRUE;
3280 }
3281 else
3282 {
3283 gpm_close();
3284 ison = FALSE;
3285 }
3286 }
3287# endif
3288
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003289# ifdef FEAT_SYSMOUSE
3290 else
3291 {
3292 if (on)
3293 {
3294 if (sysmouse_open() == OK)
3295 ison = TRUE;
3296 }
3297 else
3298 {
3299 sysmouse_close();
3300 ison = FALSE;
3301 }
3302 }
3303# endif
3304
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305# ifdef FEAT_MOUSE_JSB
3306 else
3307 {
3308 if (on)
3309 {
3310 /* D - Enable Mouse up/down messages
3311 * L - Enable Left Button Reporting
3312 * M - Enable Middle Button Reporting
3313 * R - Enable Right Button Reporting
3314 * K - Enable SHIFT and CTRL key Reporting
3315 * + - Enable Advanced messaging of mouse moves and up/down messages
3316 * Q - Quiet No Ack
3317 * # - Numeric value of mouse pointer required
3318 * 0 = Multiview 2000 cursor, used as standard
3319 * 1 = Windows Arrow
3320 * 2 = Windows I Beam
3321 * 3 = Windows Hour Glass
3322 * 4 = Windows Cross Hair
3323 * 5 = Windows UP Arrow
3324 */
3325#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3326 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3327 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3328#else
3329 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3330 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3331#endif
3332 ison = TRUE;
3333 }
3334 else
3335 {
3336 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3337 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3338 ison = FALSE;
3339 }
3340 }
3341# endif
3342# ifdef FEAT_MOUSE_PTERM
3343 else
3344 {
3345 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3346 if (on)
3347 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3348 else
3349 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3350 ison = on;
3351 }
3352# endif
3353}
3354
3355/*
3356 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3357 */
3358 void
3359check_mouse_termcode()
3360{
3361# ifdef FEAT_MOUSE_XTERM
3362 if (use_xterm_mouse()
3363# ifdef FEAT_GUI
3364 && !gui.in_use
3365# endif
3366 )
3367 {
3368 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003369 ? IF_EB("\233M", CSI_STR "M")
3370 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 if (*p_mouse != NUL)
3372 {
3373 /* force mouse off and maybe on to send possibly new mouse
3374 * activation sequence to the xterm, with(out) drag tracing. */
3375 mch_setmouse(FALSE);
3376 setmouse();
3377 }
3378 }
3379 else
3380 del_mouse_termcode(KS_MOUSE);
3381# endif
3382
3383# ifdef FEAT_MOUSE_GPM
3384 if (!use_xterm_mouse()
3385# ifdef FEAT_GUI
3386 && !gui.in_use
3387# endif
3388 )
3389 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3390# endif
3391
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003392# ifdef FEAT_SYSMOUSE
3393 if (!use_xterm_mouse()
3394# ifdef FEAT_GUI
3395 && !gui.in_use
3396# endif
3397 )
3398 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3399# endif
3400
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401# ifdef FEAT_MOUSE_JSB
3402 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3403 if (!use_xterm_mouse()
3404# ifdef FEAT_GUI
3405 && !gui.in_use
3406# endif
3407 )
3408 set_mouse_termcode(KS_JSBTERM_MOUSE,
3409 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3410 else
3411 del_mouse_termcode(KS_JSBTERM_MOUSE);
3412# endif
3413
3414# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003415 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 * define it in the GUI or when using an xterm. */
3417 if (!use_xterm_mouse()
3418# ifdef FEAT_GUI
3419 && !gui.in_use
3420# endif
3421 )
3422 set_mouse_termcode(KS_NETTERM_MOUSE,
3423 (char_u *)IF_EB("\033}", ESC_STR "}"));
3424 else
3425 del_mouse_termcode(KS_NETTERM_MOUSE);
3426# endif
3427
3428# ifdef FEAT_MOUSE_DEC
3429 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3430 if (!use_xterm_mouse()
3431# ifdef FEAT_GUI
3432 && !gui.in_use
3433# endif
3434 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003435 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3436 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 else
3438 del_mouse_termcode(KS_DEC_MOUSE);
3439# endif
3440# ifdef FEAT_MOUSE_PTERM
3441 /* same as the dec mouse */
3442 if (!use_xterm_mouse()
3443# ifdef FEAT_GUI
3444 && !gui.in_use
3445# endif
3446 )
3447 set_mouse_termcode(KS_PTERM_MOUSE,
3448 (char_u *) IF_EB("\033[", ESC_STR "["));
3449 else
3450 del_mouse_termcode(KS_PTERM_MOUSE);
3451# endif
3452}
3453#endif
3454
3455/*
3456 * set screen mode, always fails.
3457 */
3458/* ARGSUSED */
3459 int
3460mch_screenmode(arg)
3461 char_u *arg;
3462{
3463 EMSG(_(e_screenmode));
3464 return FAIL;
3465}
3466
3467#ifndef VMS
3468
3469/*
3470 * Try to get the current window size:
3471 * 1. with an ioctl(), most accurate method
3472 * 2. from the environment variables LINES and COLUMNS
3473 * 3. from the termcap
3474 * 4. keep using the old values
3475 * Return OK when size could be determined, FAIL otherwise.
3476 */
3477 int
3478mch_get_shellsize()
3479{
3480 long rows = 0;
3481 long columns = 0;
3482 char_u *p;
3483
3484 /*
3485 * For OS/2 use _scrsize().
3486 */
3487# ifdef __EMX__
3488 {
3489 int s[2];
3490
3491 _scrsize(s);
3492 columns = s[0];
3493 rows = s[1];
3494 }
3495# endif
3496
3497 /*
3498 * 1. try using an ioctl. It is the most accurate method.
3499 *
3500 * Try using TIOCGWINSZ first, some systems that have it also define
3501 * TIOCGSIZE but don't have a struct ttysize.
3502 */
3503# ifdef TIOCGWINSZ
3504 {
3505 struct winsize ws;
3506 int fd = 1;
3507
3508 /* When stdout is not a tty, use stdin for the ioctl(). */
3509 if (!isatty(fd) && isatty(read_cmd_fd))
3510 fd = read_cmd_fd;
3511 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3512 {
3513 columns = ws.ws_col;
3514 rows = ws.ws_row;
3515 }
3516 }
3517# else /* TIOCGWINSZ */
3518# ifdef TIOCGSIZE
3519 {
3520 struct ttysize ts;
3521 int fd = 1;
3522
3523 /* When stdout is not a tty, use stdin for the ioctl(). */
3524 if (!isatty(fd) && isatty(read_cmd_fd))
3525 fd = read_cmd_fd;
3526 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3527 {
3528 columns = ts.ts_cols;
3529 rows = ts.ts_lines;
3530 }
3531 }
3532# endif /* TIOCGSIZE */
3533# endif /* TIOCGWINSZ */
3534
3535 /*
3536 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003537 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3538 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003540 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 {
3542 if ((p = (char_u *)getenv("LINES")))
3543 rows = atoi((char *)p);
3544 if ((p = (char_u *)getenv("COLUMNS")))
3545 columns = atoi((char *)p);
3546 }
3547
3548#ifdef HAVE_TGETENT
3549 /*
3550 * 3. try reading "co" and "li" entries from termcap
3551 */
3552 if (columns == 0 || rows == 0)
3553 getlinecol(&columns, &rows);
3554#endif
3555
3556 /*
3557 * 4. If everything fails, use the old values
3558 */
3559 if (columns <= 0 || rows <= 0)
3560 return FAIL;
3561
3562 Rows = rows;
3563 Columns = columns;
3564 return OK;
3565}
3566
3567/*
3568 * Try to set the window size to Rows and Columns.
3569 */
3570 void
3571mch_set_shellsize()
3572{
3573 if (*T_CWS)
3574 {
3575 /*
3576 * NOTE: if you get an error here that term_set_winsize() is
3577 * undefined, check the output of configure. It could probably not
3578 * find a ncurses, termcap or termlib library.
3579 */
3580 term_set_winsize((int)Rows, (int)Columns);
3581 out_flush();
3582 screen_start(); /* don't know where cursor is now */
3583 }
3584}
3585
3586#endif /* VMS */
3587
3588/*
3589 * Rows and/or Columns has changed.
3590 */
3591 void
3592mch_new_shellsize()
3593{
3594 /* Nothing to do. */
3595}
3596
Bram Moolenaardf177f62005-02-22 08:39:57 +00003597#ifndef USE_SYSTEM
3598static void append_ga_line __ARGS((garray_T *gap));
3599
3600/*
3601 * Append the text in "gap" below the cursor line and clear "gap".
3602 */
3603 static void
3604append_ga_line(gap)
3605 garray_T *gap;
3606{
3607 /* Remove trailing CR. */
3608 if (gap->ga_len > 0
3609 && !curbuf->b_p_bin
3610 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3611 --gap->ga_len;
3612 ga_append(gap, NUL);
3613 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3614 gap->ga_len = 0;
3615}
3616#endif
3617
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 int
3619mch_call_shell(cmd, options)
3620 char_u *cmd;
3621 int options; /* SHELL_*, see vim.h */
3622{
3623#ifdef VMS
3624 char *ifn = NULL;
3625 char *ofn = NULL;
3626#endif
3627 int tmode = cur_tmode;
3628#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3629 int x;
3630# ifndef __EMX__
3631 char_u *newcmd; /* only needed for unix */
3632# else
3633 /*
3634 * Set the preferred shell in the EMXSHELL environment variable (but
3635 * only if it is different from what is already in the environment).
3636 * Emx then takes care of whether to use "/c" or "-c" in an
3637 * intelligent way. Simply pass the whole thing to emx's system() call.
3638 * Emx also starts an interactive shell if system() is passed an empty
3639 * string.
3640 */
3641 char_u *p, *old;
3642
3643 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3644 {
3645 /* should check HAVE_SETENV, but I know we don't have it. */
3646 p = alloc(10 + strlen(p_sh));
3647 if (p)
3648 {
3649 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3650 putenv((char *)p); /* don't free the pointer! */
3651 }
3652 }
3653# endif
3654
3655 out_flush();
3656
3657 if (options & SHELL_COOKED)
3658 settmode(TMODE_COOK); /* set to normal mode */
3659
3660# ifdef __EMX__
3661 if (cmd == NULL)
3662 x = system(""); /* this starts an interactive shell in emx */
3663 else
3664 x = system((char *)cmd);
3665 /* system() returns -1 when error occurs in starting shell */
3666 if (x == -1 && !emsg_silent)
3667 {
3668 MSG_PUTS(_("\nCannot execute shell "));
3669 msg_outtrans(p_sh);
3670 msg_putchar('\n');
3671 }
3672# else /* not __EMX__ */
3673 if (cmd == NULL)
3674 x = system((char *)p_sh);
3675 else
3676 {
3677# ifdef VMS
3678 if (ofn = strchr((char *)cmd, '>'))
3679 *ofn++ = '\0';
3680 if (ifn = strchr((char *)cmd, '<'))
3681 {
3682 char *p;
3683
3684 *ifn++ = '\0';
3685 p = strchr(ifn,' '); /* chop off any trailing spaces */
3686 if (p)
3687 *p = '\0';
3688 }
3689 if (ofn)
3690 x = vms_sys((char *)cmd, ofn, ifn);
3691 else
3692 x = system((char *)cmd);
3693# else
3694 newcmd = lalloc(STRLEN(p_sh)
3695 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3696 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3697 if (newcmd == NULL)
3698 x = 0;
3699 else
3700 {
3701 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3702 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3703 (char *)p_shcf,
3704 (char *)cmd);
3705 x = system((char *)newcmd);
3706 vim_free(newcmd);
3707 }
3708# endif
3709 }
3710# ifdef VMS
3711 x = vms_sys_status(x);
3712# endif
3713 if (emsg_silent)
3714 ;
3715 else if (x == 127)
3716 MSG_PUTS(_("\nCannot execute shell sh\n"));
3717# endif /* __EMX__ */
3718 else if (x && !(options & SHELL_SILENT))
3719 {
3720 MSG_PUTS(_("\nshell returned "));
3721 msg_outnum((long)x);
3722 msg_putchar('\n');
3723 }
3724
3725 if (tmode == TMODE_RAW)
3726 settmode(TMODE_RAW); /* set to raw mode */
3727# ifdef FEAT_TITLE
3728 resettitle();
3729# endif
3730 return x;
3731
3732#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3733
Bram Moolenaardf177f62005-02-22 08:39:57 +00003734# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3735 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736
3737 char_u *newcmd = NULL;
3738 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003739 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 pid_t wait_pid = 0;
3741# ifdef HAVE_UNION_WAIT
3742 union wait status;
3743# else
3744 int status = -1;
3745# endif
3746 int retval = -1;
3747 char **argv = NULL;
3748 int argc;
3749 int i;
3750 char_u *p;
3751 int inquote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003753# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 int pty_slave_fd = -1;
3755 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003756# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003757 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 int fd_fromshell[2];
3759 int pipe_error = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003760# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 char envbuf[50];
Bram Moolenaardf177f62005-02-22 08:39:57 +00003762# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 static char envbuf_Rows[20];
3764 static char envbuf_Columns[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003766 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767
3768 out_flush();
3769 if (options & SHELL_COOKED)
3770 settmode(TMODE_COOK); /* set to normal mode */
3771
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 newcmd = vim_strsave(p_sh);
3773 if (newcmd == NULL) /* out of memory */
3774 goto error;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003775
3776 /*
3777 * Do this loop twice:
3778 * 1: find number of arguments
3779 * 2: separate them and build argv[]
3780 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 for (i = 0; i < 2; ++i)
3782 {
3783 p = newcmd;
3784 inquote = FALSE;
3785 argc = 0;
3786 for (;;)
3787 {
3788 if (i == 1)
3789 argv[argc] = (char *)p;
3790 ++argc;
3791 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3792 {
3793 if (*p == '"')
3794 inquote = !inquote;
3795 ++p;
3796 }
3797 if (*p == NUL)
3798 break;
3799 if (i == 1)
3800 *p++ = NUL;
3801 p = skipwhite(p);
3802 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003803 if (argv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 {
3805 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3806 if (argv == NULL) /* out of memory */
3807 goto error;
3808 }
3809 }
3810 if (cmd != NULL)
3811 {
3812 if (extra_shell_arg != NULL)
3813 argv[argc++] = (char *)extra_shell_arg;
3814 argv[argc++] = (char *)p_shcf;
3815 argv[argc++] = (char *)cmd;
3816 }
3817 argv[argc] = NULL;
3818
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003820 * For the GUI, when writing the output into the buffer and when reading
3821 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3822 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003824 if ((options & (SHELL_READ|SHELL_WRITE))
3825# ifdef FEAT_GUI
3826 || (gui.in_use && show_shell_mess)
3827# endif
3828 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003830# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 /*
3832 * Try to open a master pty.
3833 * If this works, open the slave pty.
3834 * If the slave can't be opened, close the master pty.
3835 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003836 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 {
3838 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3839 if (pty_master_fd >= 0 && ((pty_slave_fd =
3840 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3841 {
3842 close(pty_master_fd);
3843 pty_master_fd = -1;
3844 }
3845 }
3846 /*
3847 * If not opening a pty or it didn't work, try using pipes.
3848 */
3849 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003850# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 {
3852 pipe_error = (pipe(fd_toshell) < 0);
3853 if (!pipe_error) /* pipe create OK */
3854 {
3855 pipe_error = (pipe(fd_fromshell) < 0);
3856 if (pipe_error) /* pipe create failed */
3857 {
3858 close(fd_toshell[0]);
3859 close(fd_toshell[1]);
3860 }
3861 }
3862 if (pipe_error)
3863 {
3864 MSG_PUTS(_("\nCannot create pipes\n"));
3865 out_flush();
3866 }
3867 }
3868 }
3869
3870 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 {
3872# ifdef __BEOS__
3873 beos_cleanup_read_thread();
3874# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003875
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3877 {
3878 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00003879 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003881 || (gui.in_use && show_shell_mess)
3882# endif
3883 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003885# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 if (pty_master_fd >= 0) /* close the pseudo tty */
3887 {
3888 close(pty_master_fd);
3889 close(pty_slave_fd);
3890 }
3891 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003892# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 {
3894 close(fd_toshell[0]);
3895 close(fd_toshell[1]);
3896 close(fd_fromshell[0]);
3897 close(fd_fromshell[1]);
3898 }
3899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 }
3901 else if (pid == 0) /* child */
3902 {
3903 reset_signals(); /* handle signals normally */
3904
3905 if (!show_shell_mess || (options & SHELL_EXPAND))
3906 {
3907 int fd;
3908
3909 /*
3910 * Don't want to show any message from the shell. Can't just
3911 * close stdout and stderr though, because some systems will
3912 * break if you try to write to them after that, so we must
3913 * use dup() to replace them with something else -- webb
3914 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3915 * waiting for input.
3916 */
3917 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3918 fclose(stdin);
3919 fclose(stdout);
3920 fclose(stderr);
3921
3922 /*
3923 * If any of these open()'s and dup()'s fail, we just continue
3924 * anyway. It's not fatal, and on most systems it will make
3925 * no difference at all. On a few it will cause the execvp()
3926 * to exit with a non-zero status even when the completion
3927 * could be done, which is nothing too serious. If the open()
3928 * or dup() failed we'd just do the same thing ourselves
3929 * anyway -- webb
3930 */
3931 if (fd >= 0)
3932 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003933 ignored = dup(fd); /* To replace stdin (fd 0) */
3934 ignored = dup(fd); /* To replace stdout (fd 1) */
3935 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936
3937 /* Don't need this now that we've duplicated it */
3938 close(fd);
3939 }
3940 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003941 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003943 || gui.in_use
3944# endif
3945 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 {
3947
Bram Moolenaardf177f62005-02-22 08:39:57 +00003948# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003949 /* Create our own process group, so that the child and all its
3950 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003951 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003952 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00003953 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003954 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00003955# if defined(SIGHUP)
3956 /* When doing "!xterm&" and 'shell' is bash: the shell
3957 * will exit and send SIGHUP to all processes in its
3958 * group, killing the just started process. Ignore SIGHUP
3959 * to avoid that. (suggested by Simon Schubert)
3960 */
3961 signal(SIGHUP, SIG_IGN);
3962# endif
3963 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003964# endif
3965# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003966 if (pty_slave_fd >= 0)
3967 {
3968 /* push stream discipline modules */
3969 if (options & SHELL_COOKED)
3970 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003972 /* Try to become controlling tty (probably doesn't work,
3973 * unless run by root) */
3974 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003976 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003977# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 /* Simulate to have a dumb terminal (for now) */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003979# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 setenv("TERM", "dumb", 1);
3981 sprintf((char *)envbuf, "%ld", Rows);
3982 setenv("ROWS", (char *)envbuf, 1);
3983 sprintf((char *)envbuf, "%ld", Rows);
3984 setenv("LINES", (char *)envbuf, 1);
3985 sprintf((char *)envbuf, "%ld", Columns);
3986 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003987# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 /*
3989 * Putenv does not copy the string, it has to remain valid.
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003990 * Use a static array to avoid losing allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 */
3992 putenv("TERM=dumb");
3993 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3994 putenv(envbuf_Rows);
3995 sprintf(envbuf_Rows, "LINES=%ld", Rows);
3996 putenv(envbuf_Rows);
3997 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
3998 putenv(envbuf_Columns);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000
Bram Moolenaara5792f52005-11-23 21:25:05 +00004001 /*
4002 * stderr is only redirected when using the GUI, so that a
4003 * program like gpg can still access the terminal to get a
4004 * passphrase using stderr.
4005 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004006# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 if (pty_master_fd >= 0)
4008 {
4009 close(pty_master_fd); /* close master side of pty */
4010
4011 /* set up stdin/stdout/stderr for the child */
4012 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004013 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004015 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004016 if (gui.in_use)
4017 {
4018 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004019 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
4022 close(pty_slave_fd); /* has been dupped, close it now */
4023 }
4024 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004025# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 {
4027 /* set up stdin for the child */
4028 close(fd_toshell[1]);
4029 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004030 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 close(fd_toshell[0]);
4032
4033 /* set up stdout for the child */
4034 close(fd_fromshell[0]);
4035 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004036 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 close(fd_fromshell[1]);
4038
Bram Moolenaara5792f52005-11-23 21:25:05 +00004039# ifdef FEAT_GUI
4040 if (gui.in_use)
4041 {
4042 /* set up stderr for the child */
4043 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004044 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004045 }
4046# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 }
4048 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004049
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 /*
4051 * There is no type cast for the argv, because the type may be
4052 * different on different machines. This may cause a warning
4053 * message with strict compilers, don't worry about it.
4054 * Call _exit() instead of exit() to avoid closing the connection
4055 * to the X server (esp. with GTK, which uses atexit()).
4056 */
4057 execvp(argv[0], argv);
4058 _exit(EXEC_FAILED); /* exec failed, return failure code */
4059 }
4060 else /* parent */
4061 {
4062 /*
4063 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004064 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 */
4066 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004067 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068
4069 /*
4070 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004071 * This is also used to pipe stdin/stdout to/from the external
4072 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004074 if ((options & (SHELL_READ|SHELL_WRITE))
4075# ifdef FEAT_GUI
4076 || (gui.in_use && show_shell_mess)
4077# endif
4078 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004080# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004082# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004084# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4086 int ta_len = 0; /* valid bytes in ta_buf[] */
4087 int len;
4088 int p_more_save;
4089 int old_State;
4090 int c;
4091 int toshell_fd;
4092 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004093 garray_T ga;
4094 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004095# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4096 struct timeval start_tv;
4097# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098
Bram Moolenaardf177f62005-02-22 08:39:57 +00004099# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 if (pty_master_fd >= 0)
4101 {
4102 close(pty_slave_fd); /* close slave side of pty */
4103 fromshell_fd = pty_master_fd;
4104 toshell_fd = dup(pty_master_fd);
4105 }
4106 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004107# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 {
4109 close(fd_toshell[0]);
4110 close(fd_fromshell[1]);
4111 toshell_fd = fd_toshell[1];
4112 fromshell_fd = fd_fromshell[0];
4113 }
4114
4115 /*
4116 * Write to the child if there are typed characters.
4117 * Read from the child if there are characters available.
4118 * Repeat the reading a few times if more characters are
4119 * available. Need to check for typed keys now and then, but
4120 * not too often (delays when no chars are available).
4121 * This loop is quit if no characters can be read from the pty
4122 * (WaitForChar detected special condition), or there are no
4123 * characters available and the child has exited.
4124 * Only check if the child has exited when there is no more
4125 * output. The child may exit before all the output has
4126 * been printed.
4127 *
4128 * Currently this busy loops!
4129 * This can probably dead-lock when the write blocks!
4130 */
4131 p_more_save = p_more;
4132 p_more = FALSE;
4133 old_State = State;
4134 State = EXTERNCMD; /* don't redraw at window resize */
4135
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004136 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004137 {
4138 /* Fork a process that will write the lines to the
4139 * external program. */
4140 if ((wpid = fork()) == -1)
4141 {
4142 MSG_PUTS(_("\nCannot fork\n"));
4143 }
4144 else if (wpid == 0)
4145 {
4146 linenr_T lnum = curbuf->b_op_start.lnum;
4147 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004148 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004149 char_u *s;
4150 size_t l;
4151
4152 /* child */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004153 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004154 for (;;)
4155 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004156 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004157 if (l == 0)
4158 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004159 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004160 /* NL -> NUL translation */
4161 len = write(toshell_fd, "", (size_t)1);
4162 else
4163 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004164 s = vim_strchr(lp + written, NL);
4165 len = write(toshell_fd, (char *)lp + written,
4166 s == NULL ? l : s - (lp + written));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004167 }
4168 if (len == l)
4169 {
4170 /* Finished a line, add a NL, unless this line
4171 * should not have one. */
4172 if (lnum != curbuf->b_op_end.lnum
4173 || !curbuf->b_p_bin
4174 || (lnum != write_no_eol_lnum
4175 && (lnum !=
4176 curbuf->b_ml.ml_line_count
4177 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004178 ignored = write(toshell_fd, "\n",
4179 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004180 ++lnum;
4181 if (lnum > curbuf->b_op_end.lnum)
4182 {
4183 /* finished all the lines, close pipe */
4184 close(toshell_fd);
4185 toshell_fd = -1;
4186 break;
4187 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004188 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004189 written = 0;
4190 }
4191 else if (len > 0)
4192 written += len;
4193 }
4194 _exit(0);
4195 }
4196 else
4197 {
4198 close(toshell_fd);
4199 toshell_fd = -1;
4200 }
4201 }
4202
4203 if (options & SHELL_READ)
4204 ga_init2(&ga, 1, BUFLEN);
4205
4206 noread_cnt = 0;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004207# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4208 gettimeofday(&start_tv, NULL);
4209# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 for (;;)
4211 {
4212 /*
4213 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004214 * if there are any.
4215 * Don't do this if we are expanding wild cards (would eat
4216 * typeahead).
4217 * Don't do this when filtering and terminal is in cooked
4218 * mode, the shell command will handle the I/O. Avoids
4219 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004220 * Don't get characters when the child has already
4221 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004222 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004223 * while (noread_cnt > 4), avoids that ":r !ls" eats
4224 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 */
4226 len = 0;
4227 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004228 && ((options &
4229 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4230 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004231# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004232 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004233# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004234 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004235 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004236 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004238 if (ta_len == 0)
4239 {
4240 /* Get extra characters when we don't have any.
4241 * Reset the counter and timer. */
4242 noread_cnt = 0;
4243# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4244 gettimeofday(&start_tv, NULL);
4245# endif
4246 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4247 }
4248 if (ta_len > 0 || len > 0)
4249 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 /*
4251 * For pipes:
4252 * Check for CTRL-C: send interrupt signal to child.
4253 * Check for CTRL-D: EOF, close pipe to child.
4254 */
4255 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4256 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004257# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 /*
4259 * Send SIGINT to the child's group or all
4260 * processes in our group.
4261 */
4262 if (ta_buf[ta_len] == Ctrl_C
4263 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004264 {
4265# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004267# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004270 if (wpid > 0)
4271 kill(wpid, SIGINT);
4272 }
4273# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 if (pty_master_fd < 0 && toshell_fd >= 0
4275 && ta_buf[ta_len] == Ctrl_D)
4276 {
4277 close(toshell_fd);
4278 toshell_fd = -1;
4279 }
4280 }
4281
4282 /* replace K_BS by <BS> and K_DEL by <DEL> */
4283 for (i = ta_len; i < ta_len + len; ++i)
4284 {
4285 if (ta_buf[i] == CSI && len - i > 2)
4286 {
4287 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4288 if (c == K_DEL || c == K_KDEL || c == K_BS)
4289 {
4290 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4291 (size_t)(len - i - 2));
4292 if (c == K_DEL || c == K_KDEL)
4293 ta_buf[i] = DEL;
4294 else
4295 ta_buf[i] = Ctrl_H;
4296 len -= 2;
4297 }
4298 }
4299 else if (ta_buf[i] == '\r')
4300 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004301# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004303 i += (*mb_ptr2len)(ta_buf + i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004304# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 }
4306
4307 /*
4308 * For pipes: echo the typed characters.
4309 * For a pty this does not seem to work.
4310 */
4311 if (pty_master_fd < 0)
4312 {
4313 for (i = ta_len; i < ta_len + len; ++i)
4314 {
4315 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4316 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004317# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 else if (has_mbyte)
4319 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004320 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321
4322 msg_outtrans_len(ta_buf + i, l);
4323 i += l - 1;
4324 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004325# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 else
4327 msg_outtrans_len(ta_buf + i, 1);
4328 }
4329 windgoto(msg_row, msg_col);
4330 out_flush();
4331 }
4332
4333 ta_len += len;
4334
4335 /*
4336 * Write the characters to the child, unless EOF has
4337 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004338 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004339 * When writing buffer lines, drop the typed
4340 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004342 if (options & SHELL_WRITE)
4343 ta_len = 0;
4344 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
4346 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4347 if (len > 0)
4348 {
4349 ta_len -= len;
4350 mch_memmove(ta_buf, ta_buf + len, ta_len);
4351 }
4352 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004353 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 }
4355
Bram Moolenaardf177f62005-02-22 08:39:57 +00004356 if (got_int)
4357 {
4358 /* CTRL-C sends a signal to the child, we ignore it
4359 * ourselves */
4360# ifdef HAVE_SETSID
4361 kill(-pid, SIGINT);
4362# else
4363 kill(0, SIGINT);
4364# endif
4365 if (wpid > 0)
4366 kill(wpid, SIGINT);
4367 got_int = FALSE;
4368 }
4369
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 /*
4371 * Check if the child has any characters to be printed.
4372 * Read them and write them to our window. Repeat this as
4373 * long as there is something to do, avoid the 10ms wait
4374 * for mch_inchar(), or sending typeahead characters to
4375 * the external process.
4376 * TODO: This should handle escape sequences, compatible
4377 * to some terminal (vt52?).
4378 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004379 ++noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4381 {
4382 len = read(fromshell_fd, (char *)buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004383# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004385# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004387# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 );
4389 if (len <= 0) /* end of file or error */
4390 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004391
4392 noread_cnt = 0;
4393 if (options & SHELL_READ)
4394 {
4395 /* Do NUL -> NL translation, append NL separated
4396 * lines to the current buffer. */
4397 for (i = 0; i < len; ++i)
4398 {
4399 if (buffer[i] == NL)
4400 append_ga_line(&ga);
4401 else if (buffer[i] == NUL)
4402 ga_append(&ga, NL);
4403 else
4404 ga_append(&ga, buffer[i]);
4405 }
4406 }
4407# ifdef FEAT_MBYTE
4408 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 {
4410 int l;
4411
Bram Moolenaardf177f62005-02-22 08:39:57 +00004412 len += buffer_off;
4413 buffer[len] = NUL;
4414
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 /* Check if the last character in buffer[] is
4416 * incomplete, keep these bytes for the next
4417 * round. */
4418 for (p = buffer; p < buffer + len; p += l)
4419 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004420 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 if (l == 0)
4422 l = 1; /* NUL byte? */
4423 else if (MB_BYTE2LEN(*p) != l)
4424 break;
4425 }
4426 if (p == buffer) /* no complete character */
4427 {
4428 /* avoid getting stuck at an illegal byte */
4429 if (len >= 12)
4430 ++p;
4431 else
4432 {
4433 buffer_off = len;
4434 continue;
4435 }
4436 }
4437 c = *p;
4438 *p = NUL;
4439 msg_puts(buffer);
4440 if (p < buffer + len)
4441 {
4442 *p = c;
4443 buffer_off = (buffer + len) - p;
4444 mch_memmove(buffer, p, buffer_off);
4445 continue;
4446 }
4447 buffer_off = 0;
4448 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004449# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 {
4452 buffer[len] = NUL;
4453 msg_puts(buffer);
4454 }
4455
4456 windgoto(msg_row, msg_col);
4457 cursor_on();
4458 out_flush();
4459 if (got_int)
4460 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004461
4462# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4463 {
4464 struct timeval now_tv;
4465 long msec;
4466
4467 /* Avoid that we keep looping here without
4468 * checking for a CTRL-C for a long time. Don't
4469 * break out too often to avoid losing typeahead. */
4470 gettimeofday(&now_tv, NULL);
4471 msec = (now_tv.tv_sec - start_tv.tv_sec) * 1000L
4472 + (now_tv.tv_usec - start_tv.tv_usec) / 1000L;
4473 if (msec > 2000)
4474 {
4475 noread_cnt = 5;
4476 break;
4477 }
4478 }
4479# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 }
4481
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004482 /* If we already detected the child has finished break the
4483 * loop now. */
4484 if (wait_pid == pid)
4485 break;
4486
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 /*
4488 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004489 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004491# ifdef __NeXT__
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004493# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004495# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4497 || (wait_pid == pid && WIFEXITED(status)))
4498 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004499 /* Don't break the loop yet, try reading more
4500 * characters from "fromshell_fd" first. When using
4501 * pipes there might still be something to read and
4502 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004505 else
4506 wait_pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 }
4508finished:
4509 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004510 if (options & SHELL_READ)
4511 {
4512 if (ga.ga_len > 0)
4513 {
4514 append_ga_line(&ga);
4515 /* remember that the NL was missing */
4516 write_no_eol_lnum = curwin->w_cursor.lnum;
4517 }
4518 else
4519 write_no_eol_lnum = 0;
4520 ga_clear(&ga);
4521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 /*
4524 * Give all typeahead that wasn't used back to ui_inchar().
4525 */
4526 if (ta_len)
4527 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 State = old_State;
4529 if (toshell_fd >= 0)
4530 close(toshell_fd);
4531 close(fromshell_fd);
4532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533
4534 /*
4535 * Wait until our child has exited.
4536 * Ignore wait() returning pids of other children and returning
4537 * because of some signal like SIGWINCH.
4538 * Don't wait if wait_pid was already set above, indicating the
4539 * child already exited.
4540 */
4541 while (wait_pid != pid)
4542 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004543# ifdef _THREAD_SAFE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 /* Ugly hack: when compiled with Python threads are probably
4545 * used, in which case wait() sometimes hangs for no obvious
4546 * reason. Use waitpid() instead and loop (like the GUI). */
4547# ifdef __NeXT__
4548 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4549# else
4550 wait_pid = waitpid(pid, &status, WNOHANG);
4551# endif
4552 if (wait_pid == 0)
4553 {
4554 /* Wait for 1/100 sec before trying again. */
4555 mch_delay(10L, TRUE);
4556 continue;
4557 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004558# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 wait_pid = wait(&status);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004560# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 if (wait_pid <= 0
4562# ifdef ECHILD
4563 && errno == ECHILD
4564# endif
4565 )
4566 break;
4567 }
4568
Bram Moolenaardf177f62005-02-22 08:39:57 +00004569 /* Make sure the child that writes to the external program is
4570 * dead. */
4571 if (wpid > 0)
4572 kill(wpid, SIGKILL);
4573
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 /*
4575 * Set to raw mode right now, otherwise a CTRL-C after
4576 * catch_signals() will kill Vim.
4577 */
4578 if (tmode == TMODE_RAW)
4579 settmode(TMODE_RAW);
4580 did_settmode = TRUE;
4581 set_signals();
4582
4583 if (WIFEXITED(status))
4584 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00004585 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 retval = WEXITSTATUS(status);
4587 if (retval && !emsg_silent)
4588 {
4589 if (retval == EXEC_FAILED)
4590 {
4591 MSG_PUTS(_("\nCannot execute shell "));
4592 msg_outtrans(p_sh);
4593 msg_putchar('\n');
4594 }
4595 else if (!(options & SHELL_SILENT))
4596 {
4597 MSG_PUTS(_("\nshell returned "));
4598 msg_outnum((long)retval);
4599 msg_putchar('\n');
4600 }
4601 }
4602 }
4603 else
4604 MSG_PUTS(_("\nCommand terminated\n"));
4605 }
4606 }
4607 vim_free(argv);
4608
4609error:
4610 if (!did_settmode)
4611 if (tmode == TMODE_RAW)
4612 settmode(TMODE_RAW); /* set to raw mode */
4613# ifdef FEAT_TITLE
4614 resettitle();
4615# endif
4616 vim_free(newcmd);
4617
4618 return retval;
4619
4620#endif /* USE_SYSTEM */
4621}
4622
4623/*
4624 * Check for CTRL-C typed by reading all available characters.
4625 * In cooked mode we should get SIGINT, no need to check.
4626 */
4627 void
4628mch_breakcheck()
4629{
4630 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4631 fill_input_buf(FALSE);
4632}
4633
4634/*
4635 * Wait "msec" msec until a character is available from the keyboard or from
4636 * inbuf[]. msec == -1 will block forever.
4637 * When a GUI is being used, this will never get called -- webb
4638 */
4639 static int
4640WaitForChar(msec)
4641 long msec;
4642{
4643#ifdef FEAT_MOUSE_GPM
4644 int gpm_process_wanted;
4645#endif
4646#ifdef FEAT_XCLIPBOARD
4647 int rest;
4648#endif
4649 int avail;
4650
4651 if (input_available()) /* something in inbuf[] */
4652 return 1;
4653
4654#if defined(FEAT_MOUSE_DEC)
4655 /* May need to query the mouse position. */
4656 if (WantQueryMouse)
4657 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004658 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4660 }
4661#endif
4662
4663 /*
4664 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4665 * events. This is a bit complicated, because they might both be defined.
4666 */
4667#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4668# ifdef FEAT_XCLIPBOARD
4669 rest = 0;
4670 if (do_xterm_trace())
4671 rest = msec;
4672# endif
4673 do
4674 {
4675# ifdef FEAT_XCLIPBOARD
4676 if (rest != 0)
4677 {
4678 msec = XT_TRACE_DELAY;
4679 if (rest >= 0 && rest < XT_TRACE_DELAY)
4680 msec = rest;
4681 if (rest >= 0)
4682 rest -= msec;
4683 }
4684# endif
4685# ifdef FEAT_MOUSE_GPM
4686 gpm_process_wanted = 0;
4687 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4688# else
4689 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4690# endif
4691 if (!avail)
4692 {
4693 if (input_available())
4694 return 1;
4695# ifdef FEAT_XCLIPBOARD
4696 if (rest == 0 || !do_xterm_trace())
4697# endif
4698 break;
4699 }
4700 }
4701 while (FALSE
4702# ifdef FEAT_MOUSE_GPM
4703 || (gpm_process_wanted && mch_gpm_process() == 0)
4704# endif
4705# ifdef FEAT_XCLIPBOARD
4706 || (!avail && rest != 0)
4707# endif
4708 );
4709
4710#else
4711 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4712#endif
4713 return avail;
4714}
4715
4716/*
4717 * Wait "msec" msec until a character is available from file descriptor "fd".
4718 * Time == -1 will block forever.
4719 * When a GUI is being used, this will not be used for input -- webb
4720 * Returns also, when a request from Sniff is waiting -- toni.
4721 * Or when a Linux GPM mouse event is waiting.
4722 */
4723/* ARGSUSED */
4724#if defined(__BEOS__)
4725 int
4726#else
4727 static int
4728#endif
4729RealWaitForChar(fd, msec, check_for_gpm)
4730 int fd;
4731 long msec;
4732 int *check_for_gpm;
4733{
4734 int ret;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004735#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 static int busy = FALSE;
4737
4738 /* May retry getting characters after an event was handled. */
4739# define MAY_LOOP
4740
4741# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4742 /* Remember at what time we started, so that we know how much longer we
4743 * should wait after being interrupted. */
4744# define USE_START_TV
4745 struct timeval start_tv;
4746
4747 if (msec > 0 && (
4748# ifdef FEAT_XCLIPBOARD
4749 xterm_Shell != (Widget)0
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004750# if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 ||
4752# endif
4753# endif
4754# ifdef USE_XSMP
4755 xsmp_icefd != -1
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004756# ifdef FEAT_MZSCHEME
4757 ||
4758# endif
4759# endif
4760# ifdef FEAT_MZSCHEME
4761 (mzthreads_allowed() && p_mzq > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762# endif
4763 ))
4764 gettimeofday(&start_tv, NULL);
4765# endif
4766
4767 /* Handle being called recursively. This may happen for the session
4768 * manager stuff, it may save the file, which does a breakcheck. */
4769 if (busy)
4770 return 0;
4771#endif
4772
4773#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004774 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775#endif
4776 {
4777#ifdef MAY_LOOP
4778 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004779# ifdef FEAT_MZSCHEME
4780 int mzquantum_used = FALSE;
4781# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782#endif
4783#ifndef HAVE_SELECT
4784 struct pollfd fds[5];
4785 int nfd;
4786# ifdef FEAT_XCLIPBOARD
4787 int xterm_idx = -1;
4788# endif
4789# ifdef FEAT_MOUSE_GPM
4790 int gpm_idx = -1;
4791# endif
4792# ifdef USE_XSMP
4793 int xsmp_idx = -1;
4794# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004795 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004797# ifdef FEAT_MZSCHEME
4798 mzvim_check_threads();
4799 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4800 {
4801 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4802 mzquantum_used = TRUE;
4803 }
4804# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 fds[0].fd = fd;
4806 fds[0].events = POLLIN;
4807 nfd = 1;
4808
4809# ifdef FEAT_SNIFF
4810# define SNIFF_IDX 1
4811 if (want_sniff_request)
4812 {
4813 fds[SNIFF_IDX].fd = fd_from_sniff;
4814 fds[SNIFF_IDX].events = POLLIN;
4815 nfd++;
4816 }
4817# endif
4818# ifdef FEAT_XCLIPBOARD
4819 if (xterm_Shell != (Widget)0)
4820 {
4821 xterm_idx = nfd;
4822 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4823 fds[nfd].events = POLLIN;
4824 nfd++;
4825 }
4826# endif
4827# ifdef FEAT_MOUSE_GPM
4828 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4829 {
4830 gpm_idx = nfd;
4831 fds[nfd].fd = gpm_fd;
4832 fds[nfd].events = POLLIN;
4833 nfd++;
4834 }
4835# endif
4836# ifdef USE_XSMP
4837 if (xsmp_icefd != -1)
4838 {
4839 xsmp_idx = nfd;
4840 fds[nfd].fd = xsmp_icefd;
4841 fds[nfd].events = POLLIN;
4842 nfd++;
4843 }
4844# endif
4845
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004846 ret = poll(fds, nfd, towait);
4847# ifdef FEAT_MZSCHEME
4848 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004849 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004850 finished = FALSE;
4851# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852
4853# ifdef FEAT_SNIFF
4854 if (ret < 0)
4855 sniff_disconnect(1);
4856 else if (want_sniff_request)
4857 {
4858 if (fds[SNIFF_IDX].revents & POLLHUP)
4859 sniff_disconnect(1);
4860 if (fds[SNIFF_IDX].revents & POLLIN)
4861 sniff_request_waiting = 1;
4862 }
4863# endif
4864# ifdef FEAT_XCLIPBOARD
4865 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4866 {
4867 xterm_update(); /* Maybe we should hand out clipboard */
4868 if (--ret == 0 && !input_available())
4869 /* Try again */
4870 finished = FALSE;
4871 }
4872# endif
4873# ifdef FEAT_MOUSE_GPM
4874 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4875 {
4876 *check_for_gpm = 1;
4877 }
4878# endif
4879# ifdef USE_XSMP
4880 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4881 {
4882 if (fds[xsmp_idx].revents & POLLIN)
4883 {
4884 busy = TRUE;
4885 xsmp_handle_requests();
4886 busy = FALSE;
4887 }
4888 else if (fds[xsmp_idx].revents & POLLHUP)
4889 {
4890 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004891 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 xsmp_close();
4893 }
4894 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004895 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 }
4897# endif
4898
4899
4900#else /* HAVE_SELECT */
4901
4902 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004903 struct timeval *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 fd_set rfds, efds;
4905 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004906 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004908# ifdef FEAT_MZSCHEME
4909 mzvim_check_threads();
4910 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4911 {
4912 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4913 mzquantum_used = TRUE;
4914 }
4915# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916# ifdef __EMX__
4917 /* don't check for incoming chars if not in raw mode, because select()
4918 * always returns TRUE then (in some version of emx.dll) */
4919 if (curr_tmode != TMODE_RAW)
4920 return 0;
4921# endif
4922
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004923 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004925 tv.tv_sec = towait / 1000;
4926 tv.tv_usec = (towait % 1000) * (1000000/1000);
4927 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004929 else
4930 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931
4932 /*
4933 * Select on ready for reading and exceptional condition (end of file).
4934 */
4935 FD_ZERO(&rfds); /* calls bzero() on a sun */
4936 FD_ZERO(&efds);
4937 FD_SET(fd, &rfds);
4938# if !defined(__QNX__) && !defined(__CYGWIN32__)
4939 /* For QNX select() always returns 1 if this is set. Why? */
4940 FD_SET(fd, &efds);
4941# endif
4942 maxfd = fd;
4943
4944# ifdef FEAT_SNIFF
4945 if (want_sniff_request)
4946 {
4947 FD_SET(fd_from_sniff, &rfds);
4948 FD_SET(fd_from_sniff, &efds);
4949 if (maxfd < fd_from_sniff)
4950 maxfd = fd_from_sniff;
4951 }
4952# endif
4953# ifdef FEAT_XCLIPBOARD
4954 if (xterm_Shell != (Widget)0)
4955 {
4956 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4957 if (maxfd < ConnectionNumber(xterm_dpy))
4958 maxfd = ConnectionNumber(xterm_dpy);
4959 }
4960# endif
4961# ifdef FEAT_MOUSE_GPM
4962 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4963 {
4964 FD_SET(gpm_fd, &rfds);
4965 FD_SET(gpm_fd, &efds);
4966 if (maxfd < gpm_fd)
4967 maxfd = gpm_fd;
4968 }
4969# endif
4970# ifdef USE_XSMP
4971 if (xsmp_icefd != -1)
4972 {
4973 FD_SET(xsmp_icefd, &rfds);
4974 FD_SET(xsmp_icefd, &efds);
4975 if (maxfd < xsmp_icefd)
4976 maxfd = xsmp_icefd;
4977 }
4978# endif
4979
4980# ifdef OLD_VMS
4981 /* Old VMS as v6.2 and older have broken select(). It waits more than
4982 * required. Should not be used */
4983 ret = 0;
4984# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004985 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4986# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00004987# ifdef __TANDEM
4988 if (ret == -1 && errno == ENOTSUP)
4989 {
4990 FD_ZERO(&rfds);
4991 FD_ZERO(&efds);
4992 ret = 0;
4993 }
4994#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004995# ifdef FEAT_MZSCHEME
4996 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004997 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004998 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999# endif
5000
5001# ifdef FEAT_SNIFF
5002 if (ret < 0 )
5003 sniff_disconnect(1);
5004 else if (ret > 0 && want_sniff_request)
5005 {
5006 if (FD_ISSET(fd_from_sniff, &efds))
5007 sniff_disconnect(1);
5008 if (FD_ISSET(fd_from_sniff, &rfds))
5009 sniff_request_waiting = 1;
5010 }
5011# endif
5012# ifdef FEAT_XCLIPBOARD
5013 if (ret > 0 && xterm_Shell != (Widget)0
5014 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5015 {
5016 xterm_update(); /* Maybe we should hand out clipboard */
5017 /* continue looping when we only got the X event and the input
5018 * buffer is empty */
5019 if (--ret == 0 && !input_available())
5020 {
5021 /* Try again */
5022 finished = FALSE;
5023 }
5024 }
5025# endif
5026# ifdef FEAT_MOUSE_GPM
5027 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5028 {
5029 if (FD_ISSET(gpm_fd, &efds))
5030 gpm_close();
5031 else if (FD_ISSET(gpm_fd, &rfds))
5032 *check_for_gpm = 1;
5033 }
5034# endif
5035# ifdef USE_XSMP
5036 if (ret > 0 && xsmp_icefd != -1)
5037 {
5038 if (FD_ISSET(xsmp_icefd, &efds))
5039 {
5040 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005041 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 xsmp_close();
5043 if (--ret == 0)
5044 finished = FALSE; /* keep going if event was only one */
5045 }
5046 else if (FD_ISSET(xsmp_icefd, &rfds))
5047 {
5048 busy = TRUE;
5049 xsmp_handle_requests();
5050 busy = FALSE;
5051 if (--ret == 0)
5052 finished = FALSE; /* keep going if event was only one */
5053 }
5054 }
5055# endif
5056
5057#endif /* HAVE_SELECT */
5058
5059#ifdef MAY_LOOP
5060 if (finished || msec == 0)
5061 break;
5062
5063 /* We're going to loop around again, find out for how long */
5064 if (msec > 0)
5065 {
5066# ifdef USE_START_TV
5067 struct timeval mtv;
5068
5069 /* Compute remaining wait time. */
5070 gettimeofday(&mtv, NULL);
5071 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5072 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5073# else
5074 /* Guess we got interrupted halfway. */
5075 msec = msec / 2;
5076# endif
5077 if (msec <= 0)
5078 break; /* waited long enough */
5079 }
5080#endif
5081 }
5082
5083 return (ret > 0);
5084}
5085
5086#ifndef VMS
5087
5088#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005090 * Expand a path into all matching files and/or directories. Handles "*",
5091 * "?", "[a-z]", "**", etc.
5092 * "path" has backslashes before chars that are not to be expanded.
5093 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 */
5095 int
5096mch_expandpath(gap, path, flags)
5097 garray_T *gap;
5098 char_u *path;
5099 int flags; /* EW_* flags */
5100{
Bram Moolenaar02743632005-07-25 20:42:36 +00005101 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102}
5103#endif
5104
5105/*
5106 * mch_expand_wildcards() - this code does wild-card pattern matching using
5107 * the shell
5108 *
5109 * return OK for success, FAIL for error (you may lose some memory) and put
5110 * an error message in *file.
5111 *
5112 * num_pat is number of input patterns
5113 * pat is array of pointers to input patterns
5114 * num_file is pointer to number of matched file names
5115 * file is pointer to array of pointers to matched file names
5116 */
5117
5118#ifndef SEEK_SET
5119# define SEEK_SET 0
5120#endif
5121#ifndef SEEK_END
5122# define SEEK_END 2
5123#endif
5124
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005125#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005126
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127/* ARGSUSED */
5128 int
5129mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5130 int num_pat;
5131 char_u **pat;
5132 int *num_file;
5133 char_u ***file;
5134 int flags; /* EW_* flags */
5135{
5136 int i;
5137 size_t len;
5138 char_u *p;
5139 int dir;
5140#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005141 /*
5142 * This is the OS/2 implementation.
5143 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144# define EXPL_ALLOC_INC 16
5145 char_u **expl_files;
5146 size_t files_alloced, files_free;
5147 char_u *buf;
5148 int has_wildcard;
5149
5150 *num_file = 0; /* default: no files found */
5151 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5152 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5153 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5154 if (*file == NULL)
5155 return FAIL;
5156
5157 for (; num_pat > 0; num_pat--, pat++)
5158 {
5159 expl_files = NULL;
5160 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5161 /* expand environment var or home dir */
5162 buf = expand_env_save(*pat);
5163 else
5164 buf = vim_strsave(*pat);
5165 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005166 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 if (has_wildcard) /* yes, so expand them */
5168 expl_files = (char_u **)_fnexplode(buf);
5169
5170 /*
5171 * return value of buf if no wildcards left,
5172 * OR if no match AND EW_NOTFOUND is set.
5173 */
5174 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5175 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5176 { /* simply save the current contents of *buf */
5177 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5178 if (expl_files != NULL)
5179 {
5180 expl_files[0] = vim_strsave(buf);
5181 expl_files[1] = NULL;
5182 }
5183 }
5184 vim_free(buf);
5185
5186 /*
5187 * Count number of names resulting from expansion,
5188 * At the same time add a backslash to the end of names that happen to
5189 * be directories, and replace slashes with backslashes.
5190 */
5191 if (expl_files)
5192 {
5193 for (i = 0; (p = expl_files[i]) != NULL; i++)
5194 {
5195 dir = mch_isdir(p);
5196 /* If we don't want dirs and this is one, skip it */
5197 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5198 continue;
5199
Bram Moolenaara2031822006-03-07 22:29:51 +00005200 /* Skip files that are not executable if we check for that. */
5201 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5202 continue;
5203
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 if (--files_free == 0)
5205 {
5206 /* need more room in table of pointers */
5207 files_alloced += EXPL_ALLOC_INC;
5208 *file = (char_u **)vim_realloc(*file,
5209 sizeof(char_u **) * files_alloced);
5210 if (*file == NULL)
5211 {
5212 EMSG(_(e_outofmem));
5213 *num_file = 0;
5214 return FAIL;
5215 }
5216 files_free = EXPL_ALLOC_INC;
5217 }
5218 slash_adjust(p);
5219 if (dir)
5220 {
5221 /* For a directory we add a '/', unless it's already
5222 * there. */
5223 len = STRLEN(p);
5224 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5225 {
5226 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00005227 if (!after_pathsep((*file)[*num_file],
5228 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 {
5230 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005231 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 }
5233 }
5234 }
5235 else
5236 {
5237 (*file)[*num_file] = vim_strsave(p);
5238 }
5239
5240 /*
5241 * Error message already given by either alloc or vim_strsave.
5242 * Should return FAIL, but returning OK works also.
5243 */
5244 if ((*file)[*num_file] == NULL)
5245 break;
5246 (*num_file)++;
5247 }
5248 _fnexplodefree((char **)expl_files);
5249 }
5250 }
5251 return OK;
5252
5253#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005254 /*
5255 * This is the non-OS/2 implementation (really Unix).
5256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 int j;
5258 char_u *tempname;
5259 char_u *command;
5260 FILE *fd;
5261 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005262#define STYLE_ECHO 0 /* use "echo", the default */
5263#define STYLE_GLOB 1 /* use "glob", for csh */
5264#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5265#define STYLE_PRINT 3 /* use "print -N", for zsh */
5266#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5267 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 int shell_style = STYLE_ECHO;
5269 int check_spaces;
5270 static int did_find_nul = FALSE;
5271 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005272 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005273 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274
5275 *num_file = 0; /* default: no files found */
5276 *file = NULL;
5277
5278 /*
5279 * If there are no wildcards, just copy the names to allocated memory.
5280 * Saves a lot of time, because we don't have to start a new shell.
5281 */
5282 if (!have_wildcard(num_pat, pat))
5283 return save_patterns(num_pat, pat, num_file, file);
5284
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005285# ifdef HAVE_SANDBOX
5286 /* Don't allow any shell command in the sandbox. */
5287 if (sandbox != 0 && check_secure())
5288 return FAIL;
5289# endif
5290
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 /*
5292 * Don't allow the use of backticks in secure and restricted mode.
5293 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005294 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 for (i = 0; i < num_pat; ++i)
5296 if (vim_strchr(pat[i], '`') != NULL
5297 && (check_restricted() || check_secure()))
5298 return FAIL;
5299
5300 /*
5301 * get a name for the temp file
5302 */
5303 if ((tempname = vim_tempname('o')) == NULL)
5304 {
5305 EMSG(_(e_notmp));
5306 return FAIL;
5307 }
5308
5309 /*
5310 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00005311 * file.
5312 * STYLE_BT: NL separated
5313 * If expanding `cmd` execute it directly.
5314 * STYLE_GLOB: NUL separated
5315 * If we use *csh, "glob" will work better than "echo".
5316 * STYLE_PRINT: NL or NUL separated
5317 * If we use *zsh, "print -N" will work better than "glob".
5318 * STYLE_VIMGLOB: NL separated
5319 * If we use *sh*, we define "vimglob()".
5320 * STYLE_ECHO: space separated.
5321 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 */
5323 if (num_pat == 1 && *pat[0] == '`'
5324 && (len = STRLEN(pat[0])) > 2
5325 && *(pat[0] + len - 1) == '`')
5326 shell_style = STYLE_BT;
5327 else if ((len = STRLEN(p_sh)) >= 3)
5328 {
5329 if (STRCMP(p_sh + len - 3, "csh") == 0)
5330 shell_style = STYLE_GLOB;
5331 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5332 shell_style = STYLE_PRINT;
5333 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005334 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5335 "sh") != NULL)
5336 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337
Bram Moolenaarc7247912008-01-13 12:54:11 +00005338 /* Compute the length of the command. We need 2 extra bytes: for the
5339 * optional '&' and for the NUL.
5340 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005342 if (shell_style == STYLE_VIMGLOB)
5343 len += STRLEN(sh_vimglob_func);
5344
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005345 for (i = 0; i < num_pat; ++i)
5346 {
5347 /* Count the length of the patterns in the same way as they are put in
5348 * "command" below. */
5349#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005351#else
5352 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00005353 for (j = 0; pat[i][j] != NUL; ++j)
5354 {
5355 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5356 ++len; /* may add a backslash */
5357 ++len;
5358 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005359#endif
5360 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 command = alloc(len);
5362 if (command == NULL)
5363 {
5364 /* out of memory */
5365 vim_free(tempname);
5366 return FAIL;
5367 }
5368
5369 /*
5370 * Build the shell command:
5371 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5372 * recognizes this).
5373 * - Add the shell command to print the expanded names.
5374 * - Add the temp file name.
5375 * - Add the file name patterns.
5376 */
5377 if (shell_style == STYLE_BT)
5378 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00005379 /* change `command; command& ` to (command; command ) */
5380 STRCPY(command, "(");
5381 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005383 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 while (p > command && vim_iswhite(*p))
5385 --p;
5386 if (*p == '&') /* remove trailing '&' */
5387 {
5388 ampersent = TRUE;
5389 *p = ' ';
5390 }
5391 STRCAT(command, ">");
5392 }
5393 else
5394 {
5395 if (flags & EW_NOTFOUND)
5396 STRCPY(command, "set nonomatch; ");
5397 else
5398 STRCPY(command, "unset nonomatch; ");
5399 if (shell_style == STYLE_GLOB)
5400 STRCAT(command, "glob >");
5401 else if (shell_style == STYLE_PRINT)
5402 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00005403 else if (shell_style == STYLE_VIMGLOB)
5404 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 else
5406 STRCAT(command, "echo >");
5407 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005408
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00005410
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 if (shell_style != STYLE_BT)
5412 for (i = 0; i < num_pat; ++i)
5413 {
5414 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00005415 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005416 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417#ifdef USE_SYSTEM
5418 STRCAT(command, " \"");
5419 STRCAT(command, pat[i]);
5420 STRCAT(command, "\"");
5421#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00005422 int intick = FALSE;
5423
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 p = command + STRLEN(command);
5425 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00005426 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005427 {
5428 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00005429 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005430 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5431 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005432 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00005433 * backslash inside backticks, before a special character
5434 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005435 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00005436 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5437 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005438 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005439 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005440 }
5441 else if (!intick && vim_strchr(SHELL_SPECIAL,
Bram Moolenaar582fd852005-03-28 20:58:01 +00005442 pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00005443 /* Put a backslash before a special character, but not
5444 * when inside ``. */
5445 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005446
5447 /* Copy one character. */
5448 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00005449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 *p = NUL;
5451#endif
5452 }
5453 if (flags & EW_SILENT)
5454 show_shell_mess = FALSE;
5455 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00005456 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457
5458 /*
5459 * Using zsh -G: If a pattern has no matches, it is just deleted from
5460 * the argument list, otherwise zsh gives an error message and doesn't
5461 * expand any other pattern.
5462 */
5463 if (shell_style == STYLE_PRINT)
5464 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5465
5466 /*
5467 * If we use -f then shell variables set in .cshrc won't get expanded.
5468 * vi can do it, so we will too, but it is only necessary if there is a "$"
5469 * in one of the patterns, otherwise we can still use the fast option.
5470 */
5471 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5472 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5473
5474 /*
5475 * execute the shell command
5476 */
5477 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5478
5479 /* When running in the background, give it some time to create the temp
5480 * file, but don't wait for it to finish. */
5481 if (ampersent)
5482 mch_delay(10L, TRUE);
5483
5484 extra_shell_arg = NULL; /* cleanup */
5485 show_shell_mess = TRUE;
5486 vim_free(command);
5487
Bram Moolenaarc7247912008-01-13 12:54:11 +00005488 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 {
5490 mch_remove(tempname);
5491 vim_free(tempname);
5492 /*
5493 * With interactive completion, the error message is not printed.
5494 * However with USE_SYSTEM, I don't know how to turn off error messages
5495 * from the shell, so screen may still get messed up -- webb.
5496 */
5497#ifndef USE_SYSTEM
5498 if (!(flags & EW_SILENT))
5499#endif
5500 {
5501 redraw_later_clear(); /* probably messed up screen */
5502 msg_putchar('\n'); /* clear bottom line quickly */
5503 cmdline_row = Rows - 1; /* continue on last line */
5504#ifdef USE_SYSTEM
5505 if (!(flags & EW_SILENT))
5506#endif
5507 {
5508 MSG(_(e_wildexpand));
5509 msg_start(); /* don't overwrite this message */
5510 }
5511 }
5512 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5513 * EW_NOTFOUND is given */
5514 if (shell_style == STYLE_BT)
5515 return FAIL;
5516 goto notfound;
5517 }
5518
5519 /*
5520 * read the names from the file into memory
5521 */
5522 fd = fopen((char *)tempname, READBIN);
5523 if (fd == NULL)
5524 {
5525 /* Something went wrong, perhaps a file name with a special char. */
5526 if (!(flags & EW_SILENT))
5527 {
5528 MSG(_(e_wildexpand));
5529 msg_start(); /* don't overwrite this message */
5530 }
5531 vim_free(tempname);
5532 goto notfound;
5533 }
5534 fseek(fd, 0L, SEEK_END);
5535 len = ftell(fd); /* get size of temp file */
5536 fseek(fd, 0L, SEEK_SET);
5537 buffer = alloc(len + 1);
5538 if (buffer == NULL)
5539 {
5540 /* out of memory */
5541 mch_remove(tempname);
5542 vim_free(tempname);
5543 fclose(fd);
5544 return FAIL;
5545 }
5546 i = fread((char *)buffer, 1, len, fd);
5547 fclose(fd);
5548 mch_remove(tempname);
5549 if (i != len)
5550 {
5551 /* unexpected read error */
5552 EMSG2(_(e_notread), tempname);
5553 vim_free(tempname);
5554 vim_free(buffer);
5555 return FAIL;
5556 }
5557 vim_free(tempname);
5558
Bram Moolenaarc7247912008-01-13 12:54:11 +00005559# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5561 p = buffer;
5562 for (i = 0; i < len; ++i)
5563 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5564 *p++ = buffer[i];
5565 len = p - buffer;
5566# endif
5567
5568
5569 /* file names are separated with Space */
5570 if (shell_style == STYLE_ECHO)
5571 {
5572 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5573 p = buffer;
5574 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5575 {
5576 while (*p != ' ' && *p != '\n')
5577 ++p;
5578 p = skipwhite(p); /* skip to next entry */
5579 }
5580 }
5581 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005582 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 {
5584 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5585 p = buffer;
5586 for (i = 0; *p != NUL; ++i) /* count number of entries */
5587 {
5588 while (*p != '\n' && *p != NUL)
5589 ++p;
5590 if (*p != NUL)
5591 ++p;
5592 p = skipwhite(p); /* skip leading white space */
5593 }
5594 }
5595 /* file names are separated with NUL */
5596 else
5597 {
5598 /*
5599 * Some versions of zsh use spaces instead of NULs to separate
5600 * results. Only do this when there is no NUL before the end of the
5601 * buffer, otherwise we would never be able to use file names with
5602 * embedded spaces when zsh does use NULs.
5603 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5604 * don't check for spaces again.
5605 */
5606 check_spaces = FALSE;
5607 if (shell_style == STYLE_PRINT && !did_find_nul)
5608 {
5609 /* If there is a NUL, set did_find_nul, else set check_spaces */
5610 if (len && (int)STRLEN(buffer) < len - 1)
5611 did_find_nul = TRUE;
5612 else
5613 check_spaces = TRUE;
5614 }
5615
5616 /*
5617 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5618 * already is one, for STYLE_GLOB it needs to be added.
5619 */
5620 if (len && buffer[len - 1] == NUL)
5621 --len;
5622 else
5623 buffer[len] = NUL;
5624 i = 0;
5625 for (p = buffer; p < buffer + len; ++p)
5626 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5627 {
5628 ++i;
5629 *p = NUL;
5630 }
5631 if (len)
5632 ++i; /* count last entry */
5633 }
5634 if (i == 0)
5635 {
5636 /*
5637 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5638 * /bin/sh will happily expand it to nothing rather than returning an
5639 * error; and hey, it's good to check anyway -- webb.
5640 */
5641 vim_free(buffer);
5642 goto notfound;
5643 }
5644 *num_file = i;
5645 *file = (char_u **)alloc(sizeof(char_u *) * i);
5646 if (*file == NULL)
5647 {
5648 /* out of memory */
5649 vim_free(buffer);
5650 return FAIL;
5651 }
5652
5653 /*
5654 * Isolate the individual file names.
5655 */
5656 p = buffer;
5657 for (i = 0; i < *num_file; ++i)
5658 {
5659 (*file)[i] = p;
5660 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005661 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5662 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00005664 while (!(shell_style == STYLE_ECHO && *p == ' ')
5665 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 ++p;
5667 if (p == buffer + len) /* last entry */
5668 *p = NUL;
5669 else
5670 {
5671 *p++ = NUL;
5672 p = skipwhite(p); /* skip to next entry */
5673 }
5674 }
5675 else /* NUL separates */
5676 {
5677 while (*p && p < buffer + len) /* skip entry */
5678 ++p;
5679 ++p; /* skip NUL */
5680 }
5681 }
5682
5683 /*
5684 * Move the file names to allocated memory.
5685 */
5686 for (j = 0, i = 0; i < *num_file; ++i)
5687 {
5688 /* Require the files to exist. Helps when using /bin/sh */
5689 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5690 continue;
5691
5692 /* check if this entry should be included */
5693 dir = (mch_isdir((*file)[i]));
5694 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5695 continue;
5696
Bram Moolenaara2031822006-03-07 22:29:51 +00005697 /* Skip files that are not executable if we check for that. */
5698 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5699 continue;
5700
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5702 if (p)
5703 {
5704 STRCPY(p, (*file)[i]);
5705 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00005706 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 (*file)[j++] = p;
5708 }
5709 }
5710 vim_free(buffer);
5711 *num_file = j;
5712
5713 if (*num_file == 0) /* rejected all entries */
5714 {
5715 vim_free(*file);
5716 *file = NULL;
5717 goto notfound;
5718 }
5719
5720 return OK;
5721
5722notfound:
5723 if (flags & EW_NOTFOUND)
5724 return save_patterns(num_pat, pat, num_file, file);
5725 return FAIL;
5726
5727#endif /* __EMX__ */
5728}
5729
5730#endif /* VMS */
5731
5732#ifndef __EMX__
5733 static int
5734save_patterns(num_pat, pat, num_file, file)
5735 int num_pat;
5736 char_u **pat;
5737 int *num_file;
5738 char_u ***file;
5739{
5740 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005741 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742
5743 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5744 if (*file == NULL)
5745 return FAIL;
5746 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00005747 {
5748 s = vim_strsave(pat[i]);
5749 if (s != NULL)
5750 /* Be compatible with expand_filename(): halve the number of
5751 * backslashes. */
5752 backslash_halve(s);
5753 (*file)[i] = s;
5754 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 *num_file = num_pat;
5756 return OK;
5757}
5758#endif
5759
5760
5761/*
5762 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5763 * expand.
5764 */
5765 int
5766mch_has_exp_wildcard(p)
5767 char_u *p;
5768{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005769 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 {
5771#ifndef OS2
5772 if (*p == '\\' && p[1] != NUL)
5773 ++p;
5774 else
5775#endif
5776 if (vim_strchr((char_u *)
5777#ifdef VMS
5778 "*?%"
5779#else
5780# ifdef OS2
5781 "*?"
5782# else
5783 "*?[{'"
5784# endif
5785#endif
5786 , *p) != NULL)
5787 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 }
5789 return FALSE;
5790}
5791
5792/*
5793 * Return TRUE if the string "p" contains a wildcard.
5794 * Don't recognize '~' at the end as a wildcard.
5795 */
5796 int
5797mch_has_wildcard(p)
5798 char_u *p;
5799{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005800 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 {
5802#ifndef OS2
5803 if (*p == '\\' && p[1] != NUL)
5804 ++p;
5805 else
5806#endif
5807 if (vim_strchr((char_u *)
5808#ifdef VMS
5809 "*?%$"
5810#else
5811# ifdef OS2
5812# ifdef VIM_BACKTICK
5813 "*?$`"
5814# else
5815 "*?$"
5816# endif
5817# else
5818 "*?[{`'$"
5819# endif
5820#endif
5821 , *p) != NULL
5822 || (*p == '~' && p[1] != NUL))
5823 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824 }
5825 return FALSE;
5826}
5827
5828#ifndef __EMX__
5829 static int
5830have_wildcard(num, file)
5831 int num;
5832 char_u **file;
5833{
5834 int i;
5835
5836 for (i = 0; i < num; i++)
5837 if (mch_has_wildcard(file[i]))
5838 return 1;
5839 return 0;
5840}
5841
5842 static int
5843have_dollars(num, file)
5844 int num;
5845 char_u **file;
5846{
5847 int i;
5848
5849 for (i = 0; i < num; i++)
5850 if (vim_strchr(file[i], '$') != NULL)
5851 return TRUE;
5852 return FALSE;
5853}
5854#endif /* ifndef __EMX__ */
5855
5856#ifndef HAVE_RENAME
5857/*
5858 * Scaled-down version of rename(), which is missing in Xenix.
5859 * This version can only move regular files and will fail if the
5860 * destination exists.
5861 */
5862 int
5863mch_rename(src, dest)
5864 const char *src, *dest;
5865{
5866 struct stat st;
5867
5868 if (stat(dest, &st) >= 0) /* fail if destination exists */
5869 return -1;
5870 if (link(src, dest) != 0) /* link file to new name */
5871 return -1;
5872 if (mch_remove(src) == 0) /* delete link to old name */
5873 return 0;
5874 return -1;
5875}
5876#endif /* !HAVE_RENAME */
5877
5878#ifdef FEAT_MOUSE_GPM
5879/*
5880 * Initializes connection with gpm (if it isn't already opened)
5881 * Return 1 if succeeded (or connection already opened), 0 if failed
5882 */
5883 static int
5884gpm_open()
5885{
5886 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5887
5888 if (!gpm_flag)
5889 {
5890 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5891 gpm_connect.defaultMask = ~GPM_HARD;
5892 /* Default handling for mouse move*/
5893 gpm_connect.minMod = 0; /* Handle any modifier keys */
5894 gpm_connect.maxMod = 0xffff;
5895 if (Gpm_Open(&gpm_connect, 0) > 0)
5896 {
5897 /* gpm library tries to handling TSTP causes
5898 * problems. Anyways, we close connection to Gpm whenever
5899 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005900 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 */
5902 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5903 return 1; /* succeed */
5904 }
5905 if (gpm_fd == -2)
5906 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5907 return 0;
5908 }
5909 return 1; /* already open */
5910}
5911
5912/*
5913 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 */
5915 static void
5916gpm_close()
5917{
5918 if (gpm_flag && gpm_fd >= 0) /* if Open */
5919 Gpm_Close();
5920}
5921
5922/* Reads gpm event and adds special keys to input buf. Returns length of
5923 * generated key sequence.
5924 * This function is made after gui_send_mouse_event
5925 */
5926 static int
5927mch_gpm_process()
5928{
5929 int button;
5930 static Gpm_Event gpm_event;
5931 char_u string[6];
5932 int_u vim_modifiers;
5933 int row,col;
5934 unsigned char buttons_mask;
5935 unsigned char gpm_modifiers;
5936 static unsigned char old_buttons = 0;
5937
5938 Gpm_GetEvent(&gpm_event);
5939
5940#ifdef FEAT_GUI
5941 /* Don't put events in the input queue now. */
5942 if (hold_gui_events)
5943 return 0;
5944#endif
5945
5946 row = gpm_event.y - 1;
5947 col = gpm_event.x - 1;
5948
5949 string[0] = ESC; /* Our termcode */
5950 string[1] = 'M';
5951 string[2] = 'G';
5952 switch (GPM_BARE_EVENTS(gpm_event.type))
5953 {
5954 case GPM_DRAG:
5955 string[3] = MOUSE_DRAG;
5956 break;
5957 case GPM_DOWN:
5958 buttons_mask = gpm_event.buttons & ~old_buttons;
5959 old_buttons = gpm_event.buttons;
5960 switch (buttons_mask)
5961 {
5962 case GPM_B_LEFT:
5963 button = MOUSE_LEFT;
5964 break;
5965 case GPM_B_MIDDLE:
5966 button = MOUSE_MIDDLE;
5967 break;
5968 case GPM_B_RIGHT:
5969 button = MOUSE_RIGHT;
5970 break;
5971 default:
5972 return 0;
5973 /*Don't know what to do. Can more than one button be
5974 * reported in one event? */
5975 }
5976 string[3] = (char_u)(button | 0x20);
5977 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5978 break;
5979 case GPM_UP:
5980 string[3] = MOUSE_RELEASE;
5981 old_buttons &= ~gpm_event.buttons;
5982 break;
5983 default:
5984 return 0;
5985 }
5986 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5987 gpm_modifiers = gpm_event.modifiers;
5988 vim_modifiers = 0x0;
5989 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5990 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5991 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5992 */
5993 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
5994 vim_modifiers |= MOUSE_SHIFT;
5995
5996 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
5997 vim_modifiers |= MOUSE_CTRL;
5998 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
5999 vim_modifiers |= MOUSE_ALT;
6000 string[3] |= vim_modifiers;
6001 string[4] = (char_u)(col + ' ' + 1);
6002 string[5] = (char_u)(row + ' ' + 1);
6003 add_to_input_buf(string, 6);
6004 return 6;
6005}
6006#endif /* FEAT_MOUSE_GPM */
6007
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006008#ifdef FEAT_SYSMOUSE
6009/*
6010 * Initialize connection with sysmouse.
6011 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6012 * output, any sysmouse output than will be processed via sig_sysmouse().
6013 * Return OK if succeeded, FAIL if failed.
6014 */
6015 static int
6016sysmouse_open()
6017{
6018 struct mouse_info mouse;
6019
6020 mouse.operation = MOUSE_MODE;
6021 mouse.u.mode.mode = 0;
6022 mouse.u.mode.signal = SIGUSR2;
6023 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6024 {
6025 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6026 mouse.operation = MOUSE_SHOW;
6027 ioctl(1, CONS_MOUSECTL, &mouse);
6028 return OK;
6029 }
6030 return FAIL;
6031}
6032
6033/*
6034 * Stop processing SIGUSR2 signals, and also make sure that
6035 * virtual console do not send us any sysmouse related signal.
6036 */
6037 static void
6038sysmouse_close()
6039{
6040 struct mouse_info mouse;
6041
6042 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6043 mouse.operation = MOUSE_MODE;
6044 mouse.u.mode.mode = 0;
6045 mouse.u.mode.signal = 0;
6046 ioctl(1, CONS_MOUSECTL, &mouse);
6047}
6048
6049/*
6050 * Gets info from sysmouse and adds special keys to input buf.
6051 */
6052/* ARGSUSED */
6053 static RETSIGTYPE
6054sig_sysmouse SIGDEFARG(sigarg)
6055{
6056 struct mouse_info mouse;
6057 struct video_info video;
6058 char_u string[6];
6059 int row, col;
6060 int button;
6061 int buttons;
6062 static int oldbuttons = 0;
6063
6064#ifdef FEAT_GUI
6065 /* Don't put events in the input queue now. */
6066 if (hold_gui_events)
6067 return;
6068#endif
6069
6070 mouse.operation = MOUSE_GETINFO;
6071 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6072 && ioctl(1, FBIO_MODEINFO, &video) != -1
6073 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6074 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6075 {
6076 row = mouse.u.data.y / video.vi_cheight;
6077 col = mouse.u.data.x / video.vi_cwidth;
6078 buttons = mouse.u.data.buttons;
6079 string[0] = ESC; /* Our termcode */
6080 string[1] = 'M';
6081 string[2] = 'S';
6082 if (oldbuttons == buttons && buttons != 0)
6083 {
6084 button = MOUSE_DRAG;
6085 }
6086 else
6087 {
6088 switch (buttons)
6089 {
6090 case 0:
6091 button = MOUSE_RELEASE;
6092 break;
6093 case 1:
6094 button = MOUSE_LEFT;
6095 break;
6096 case 2:
6097 button = MOUSE_MIDDLE;
6098 break;
6099 case 4:
6100 button = MOUSE_RIGHT;
6101 break;
6102 default:
6103 return;
6104 }
6105 oldbuttons = buttons;
6106 }
6107 string[3] = (char_u)(button);
6108 string[4] = (char_u)(col + ' ' + 1);
6109 string[5] = (char_u)(row + ' ' + 1);
6110 add_to_input_buf(string, 6);
6111 }
6112 return;
6113}
6114#endif /* FEAT_SYSMOUSE */
6115
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116#if defined(FEAT_LIBCALL) || defined(PROTO)
6117typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6118typedef char_u * (*INTPROCSTR)__ARGS((int));
6119typedef int (*STRPROCINT)__ARGS((char_u *));
6120typedef int (*INTPROCINT)__ARGS((int));
6121
6122/*
6123 * Call a DLL routine which takes either a string or int param
6124 * and returns an allocated string.
6125 */
6126 int
6127mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6128 char_u *libname;
6129 char_u *funcname;
6130 char_u *argstring; /* NULL when using a argint */
6131 int argint;
6132 char_u **string_result;/* NULL when using number_result */
6133 int *number_result;
6134{
6135# if defined(USE_DLOPEN)
6136 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006137 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138# else
6139 shl_t hinstLib;
6140# endif
6141 STRPROCSTR ProcAdd;
6142 INTPROCSTR ProcAddI;
6143 char_u *retval_str = NULL;
6144 int retval_int = 0;
6145 int success = FALSE;
6146
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006147 /*
6148 * Get a handle to the DLL module.
6149 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006151 /* First clear any error, it's not cleared by the dlopen() call. */
6152 (void)dlerror();
6153
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 hinstLib = dlopen((char *)libname, RTLD_LAZY
6155# ifdef RTLD_LOCAL
6156 | RTLD_LOCAL
6157# endif
6158 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006159 if (hinstLib == NULL)
6160 {
6161 /* "dlerr" must be used before dlclose() */
6162 dlerr = (char *)dlerror();
6163 if (dlerr != NULL)
6164 EMSG2(_("dlerror = \"%s\""), dlerr);
6165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166# else
6167 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6168# endif
6169
6170 /* If the handle is valid, try to get the function address. */
6171 if (hinstLib != NULL)
6172 {
6173# ifdef HAVE_SETJMP_H
6174 /*
6175 * Catch a crash when calling the library function. For example when
6176 * using a number where a string pointer is expected.
6177 */
6178 mch_startjmp();
6179 if (SETJMP(lc_jump_env) != 0)
6180 {
6181 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006182# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006183 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006184# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185 mch_didjmp();
6186 }
6187 else
6188# endif
6189 {
6190 retval_str = NULL;
6191 retval_int = 0;
6192
6193 if (argstring != NULL)
6194 {
6195# if defined(USE_DLOPEN)
6196 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006197 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198# else
6199 if (shl_findsym(&hinstLib, (const char *)funcname,
6200 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6201 ProcAdd = NULL;
6202# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006203 if ((success = (ProcAdd != NULL
6204# if defined(USE_DLOPEN)
6205 && dlerr == NULL
6206# endif
6207 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 {
6209 if (string_result == NULL)
6210 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6211 else
6212 retval_str = (ProcAdd)(argstring);
6213 }
6214 }
6215 else
6216 {
6217# if defined(USE_DLOPEN)
6218 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006219 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220# else
6221 if (shl_findsym(&hinstLib, (const char *)funcname,
6222 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6223 ProcAddI = NULL;
6224# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006225 if ((success = (ProcAddI != NULL
6226# if defined(USE_DLOPEN)
6227 && dlerr == NULL
6228# endif
6229 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 {
6231 if (string_result == NULL)
6232 retval_int = ((INTPROCINT)ProcAddI)(argint);
6233 else
6234 retval_str = (ProcAddI)(argint);
6235 }
6236 }
6237
6238 /* Save the string before we free the library. */
6239 /* Assume that a "1" or "-1" result is an illegal pointer. */
6240 if (string_result == NULL)
6241 *number_result = retval_int;
6242 else if (retval_str != NULL
6243 && retval_str != (char_u *)1
6244 && retval_str != (char_u *)-1)
6245 *string_result = vim_strsave(retval_str);
6246 }
6247
6248# ifdef HAVE_SETJMP_H
6249 mch_endjmp();
6250# ifdef SIGHASARG
6251 if (lc_signal != 0)
6252 {
6253 int i;
6254
6255 /* try to find the name of this signal */
6256 for (i = 0; signal_info[i].sig != -1; i++)
6257 if (lc_signal == signal_info[i].sig)
6258 break;
6259 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6260 }
6261# endif
6262# endif
6263
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006265 /* "dlerr" must be used before dlclose() */
6266 if (dlerr != NULL)
6267 EMSG2(_("dlerror = \"%s\""), dlerr);
6268
6269 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 (void)dlclose(hinstLib);
6271# else
6272 (void)shl_unload(hinstLib);
6273# endif
6274 }
6275
6276 if (!success)
6277 {
6278 EMSG2(_(e_libcall), funcname);
6279 return FAIL;
6280 }
6281
6282 return OK;
6283}
6284#endif
6285
6286#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6287static int xterm_trace = -1; /* default: disabled */
6288static int xterm_button;
6289
6290/*
6291 * Setup a dummy window for X selections in a terminal.
6292 */
6293 void
6294setup_term_clip()
6295{
6296 int z = 0;
6297 char *strp = "";
6298 Widget AppShell;
6299
6300 if (!x_connect_to_server())
6301 return;
6302
6303 open_app_context();
6304 if (app_context != NULL && xterm_Shell == (Widget)0)
6305 {
6306 int (*oldhandler)();
6307#if defined(HAVE_SETJMP_H)
6308 int (*oldIOhandler)();
6309#endif
6310# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6311 struct timeval start_tv;
6312
6313 if (p_verbose > 0)
6314 gettimeofday(&start_tv, NULL);
6315# endif
6316
6317 /* Ignore X errors while opening the display */
6318 oldhandler = XSetErrorHandler(x_error_check);
6319
6320#if defined(HAVE_SETJMP_H)
6321 /* Ignore X IO errors while opening the display */
6322 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6323 mch_startjmp();
6324 if (SETJMP(lc_jump_env) != 0)
6325 {
6326 mch_didjmp();
6327 xterm_dpy = NULL;
6328 }
6329 else
6330#endif
6331 {
6332 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6333 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6334#if defined(HAVE_SETJMP_H)
6335 mch_endjmp();
6336#endif
6337 }
6338
6339#if defined(HAVE_SETJMP_H)
6340 /* Now handle X IO errors normally. */
6341 (void)XSetIOErrorHandler(oldIOhandler);
6342#endif
6343 /* Now handle X errors normally. */
6344 (void)XSetErrorHandler(oldhandler);
6345
6346 if (xterm_dpy == NULL)
6347 {
6348 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006349 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 return;
6351 }
6352
6353 /* Catch terminating error of the X server connection. */
6354 (void)XSetIOErrorHandler(x_IOerror_handler);
6355
6356# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6357 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006358 {
6359 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006361 verbose_leave();
6362 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363# endif
6364
6365 /* Create a Shell to make converters work. */
6366 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6367 applicationShellWidgetClass, xterm_dpy,
6368 NULL);
6369 if (AppShell == (Widget)0)
6370 return;
6371 xterm_Shell = XtVaCreatePopupShell("VIM",
6372 topLevelShellWidgetClass, AppShell,
6373 XtNmappedWhenManaged, 0,
6374 XtNwidth, 1,
6375 XtNheight, 1,
6376 NULL);
6377 if (xterm_Shell == (Widget)0)
6378 return;
6379
6380 x11_setup_atoms(xterm_dpy);
6381 if (x11_display == NULL)
6382 x11_display = xterm_dpy;
6383
6384 XtRealizeWidget(xterm_Shell);
6385 XSync(xterm_dpy, False);
6386 xterm_update();
6387 }
6388 if (xterm_Shell != (Widget)0)
6389 {
6390 clip_init(TRUE);
6391 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6392 x11_window = (Window)atol(strp);
6393 /* Check if $WINDOWID is valid. */
6394 if (test_x11_window(xterm_dpy) == FAIL)
6395 x11_window = 0;
6396 if (x11_window != 0)
6397 xterm_trace = 0;
6398 }
6399}
6400
6401 void
6402start_xterm_trace(button)
6403 int button;
6404{
6405 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6406 return;
6407 xterm_trace = 1;
6408 xterm_button = button;
6409 do_xterm_trace();
6410}
6411
6412
6413 void
6414stop_xterm_trace()
6415{
6416 if (xterm_trace < 0)
6417 return;
6418 xterm_trace = 0;
6419}
6420
6421/*
6422 * Query the xterm pointer and generate mouse termcodes if necessary
6423 * return TRUE if dragging is active, else FALSE
6424 */
6425 static int
6426do_xterm_trace()
6427{
6428 Window root, child;
6429 int root_x, root_y;
6430 int win_x, win_y;
6431 int row, col;
6432 int_u mask_return;
6433 char_u buf[50];
6434 char_u *strp;
6435 long got_hints;
6436 static char_u *mouse_code;
6437 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6438 static int prev_row = 0, prev_col = 0;
6439 static XSizeHints xterm_hints;
6440
6441 if (xterm_trace <= 0)
6442 return FALSE;
6443
6444 if (xterm_trace == 1)
6445 {
6446 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00006447 * have changed recently. */
6448 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6449 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 || xterm_hints.width_inc <= 1
6451 || xterm_hints.height_inc <= 1)
6452 {
6453 xterm_trace = -1; /* Not enough data -- disable tracing */
6454 return FALSE;
6455 }
6456
6457 /* Rely on the same mouse code for the duration of this */
6458 mouse_code = find_termcode(mouse_name);
6459 prev_row = mouse_row;
6460 prev_row = mouse_col;
6461 xterm_trace = 2;
6462
6463 /* Find the offset of the chars, there might be a scrollbar on the
6464 * left of the window and/or a menu on the top (eterm etc.) */
6465 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6466 &win_x, &win_y, &mask_return);
6467 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6468 - (xterm_hints.height_inc / 2);
6469 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6470 xterm_hints.y = 2;
6471 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6472 - (xterm_hints.width_inc / 2);
6473 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6474 xterm_hints.x = 2;
6475 return TRUE;
6476 }
6477 if (mouse_code == NULL)
6478 {
6479 xterm_trace = 0;
6480 return FALSE;
6481 }
6482
6483 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6484 &win_x, &win_y, &mask_return);
6485
6486 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6487 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6488 if (row == prev_row && col == prev_col)
6489 return TRUE;
6490
6491 STRCPY(buf, mouse_code);
6492 strp = buf + STRLEN(buf);
6493 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6494 *strp++ = (char_u)(col + ' ' + 1);
6495 *strp++ = (char_u)(row + ' ' + 1);
6496 *strp = 0;
6497 add_to_input_buf(buf, STRLEN(buf));
6498
6499 prev_row = row;
6500 prev_col = col;
6501 return TRUE;
6502}
6503
6504# if defined(FEAT_GUI) || defined(PROTO)
6505/*
6506 * Destroy the display, window and app_context. Required for GTK.
6507 */
6508 void
6509clear_xterm_clip()
6510{
6511 if (xterm_Shell != (Widget)0)
6512 {
6513 XtDestroyWidget(xterm_Shell);
6514 xterm_Shell = (Widget)0;
6515 }
6516 if (xterm_dpy != NULL)
6517 {
Bram Moolenaare8208012008-06-20 09:59:25 +00006518# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 /* Lesstif and Solaris crash here, lose some memory */
6520 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00006521# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 if (x11_display == xterm_dpy)
6523 x11_display = NULL;
6524 xterm_dpy = NULL;
6525 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006526# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 if (app_context != (XtAppContext)NULL)
6528 {
6529 /* Lesstif and Solaris crash here, lose some memory */
6530 XtDestroyApplicationContext(app_context);
6531 app_context = (XtAppContext)NULL;
6532 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006533# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534}
6535# endif
6536
6537/*
6538 * Catch up with any queued X events. This may put keyboard input into the
6539 * input buffer, call resize call-backs, trigger timers etc. If there is
6540 * nothing in the X event queue (& no timers pending), then we return
6541 * immediately.
6542 */
6543 static void
6544xterm_update()
6545{
6546 XEvent event;
6547
6548 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6549 {
6550 XtAppNextEvent(app_context, &event);
6551#ifdef FEAT_CLIENTSERVER
6552 {
6553 XPropertyEvent *e = (XPropertyEvent *)&event;
6554
6555 if (e->type == PropertyNotify && e->window == commWindow
6556 && e->atom == commProperty && e->state == PropertyNewValue)
6557 serverEventProc(xterm_dpy, &event);
6558 }
6559#endif
6560 XtDispatchEvent(&event);
6561 }
6562}
6563
6564 int
6565clip_xterm_own_selection(cbd)
6566 VimClipboard *cbd;
6567{
6568 if (xterm_Shell != (Widget)0)
6569 return clip_x11_own_selection(xterm_Shell, cbd);
6570 return FAIL;
6571}
6572
6573 void
6574clip_xterm_lose_selection(cbd)
6575 VimClipboard *cbd;
6576{
6577 if (xterm_Shell != (Widget)0)
6578 clip_x11_lose_selection(xterm_Shell, cbd);
6579}
6580
6581 void
6582clip_xterm_request_selection(cbd)
6583 VimClipboard *cbd;
6584{
6585 if (xterm_Shell != (Widget)0)
6586 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6587}
6588
6589 void
6590clip_xterm_set_selection(cbd)
6591 VimClipboard *cbd;
6592{
6593 clip_x11_set_selection(cbd);
6594}
6595#endif
6596
6597
6598#if defined(USE_XSMP) || defined(PROTO)
6599/*
6600 * Code for X Session Management Protocol.
6601 */
6602static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6603static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6604static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6605static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6606static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6607
6608
6609# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6610static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6611
6612/*
6613 * This is our chance to ask the user if they want to save,
6614 * or abort the logout
6615 */
6616/*ARGSUSED*/
6617 static void
6618xsmp_handle_interaction(smc_conn, client_data)
6619 SmcConn smc_conn;
6620 SmPointer client_data;
6621{
6622 cmdmod_T save_cmdmod;
6623 int cancel_shutdown = False;
6624
6625 save_cmdmod = cmdmod;
6626 cmdmod.confirm = TRUE;
6627 if (check_changed_any(FALSE))
6628 /* Mustn't logout */
6629 cancel_shutdown = True;
6630 cmdmod = save_cmdmod;
6631 setcursor(); /* position cursor */
6632 out_flush();
6633
6634 /* Done interaction */
6635 SmcInteractDone(smc_conn, cancel_shutdown);
6636
6637 /* Finish off
6638 * Only end save-yourself here if we're not cancelling shutdown;
6639 * we'll get a cancelled callback later in which we'll end it.
6640 * Hopefully get around glitchy SMs (like GNOME-1)
6641 */
6642 if (!cancel_shutdown)
6643 {
6644 xsmp.save_yourself = False;
6645 SmcSaveYourselfDone(smc_conn, True);
6646 }
6647}
6648# endif
6649
6650/*
6651 * Callback that starts save-yourself.
6652 */
6653/*ARGSUSED*/
6654 static void
6655xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6656 shutdown, interact_style, fast)
6657 SmcConn smc_conn;
6658 SmPointer client_data;
6659 int save_type;
6660 Bool shutdown;
6661 int interact_style;
6662 Bool fast;
6663{
6664 /* Handle already being in saveyourself */
6665 if (xsmp.save_yourself)
6666 SmcSaveYourselfDone(smc_conn, True);
6667 xsmp.save_yourself = True;
6668 xsmp.shutdown = shutdown;
6669
6670 /* First up, preserve all files */
6671 out_flush();
6672 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6673
6674 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006675 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676
6677# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6678 /* Now see if we can ask about unsaved files */
6679 if (shutdown && !fast && gui.in_use)
6680 /* Need to interact with user, but need SM's permission */
6681 SmcInteractRequest(smc_conn, SmDialogError,
6682 xsmp_handle_interaction, client_data);
6683 else
6684# endif
6685 {
6686 /* Can stop the cycle here */
6687 SmcSaveYourselfDone(smc_conn, True);
6688 xsmp.save_yourself = False;
6689 }
6690}
6691
6692
6693/*
6694 * Callback to warn us of imminent death.
6695 */
6696/*ARGSUSED*/
6697 static void
6698xsmp_die(smc_conn, client_data)
6699 SmcConn smc_conn;
6700 SmPointer client_data;
6701{
6702 xsmp_close();
6703
6704 /* quit quickly leaving swapfiles for modified buffers behind */
6705 getout_preserve_modified(0);
6706}
6707
6708
6709/*
6710 * Callback to tell us that save-yourself has completed.
6711 */
6712/*ARGSUSED*/
6713 static void
6714xsmp_save_complete(smc_conn, client_data)
6715 SmcConn smc_conn;
6716 SmPointer client_data;
6717{
6718 xsmp.save_yourself = False;
6719}
6720
6721
6722/*
6723 * Callback to tell us that an instigated shutdown was cancelled
6724 * (maybe even by us)
6725 */
6726/*ARGSUSED*/
6727 static void
6728xsmp_shutdown_cancelled(smc_conn, client_data)
6729 SmcConn smc_conn;
6730 SmPointer client_data;
6731{
6732 if (xsmp.save_yourself)
6733 SmcSaveYourselfDone(smc_conn, True);
6734 xsmp.save_yourself = False;
6735 xsmp.shutdown = False;
6736}
6737
6738
6739/*
6740 * Callback to tell us that a new ICE connection has been established.
6741 */
6742/*ARGSUSED*/
6743 static void
6744xsmp_ice_connection(iceConn, clientData, opening, watchData)
6745 IceConn iceConn;
6746 IcePointer clientData;
6747 Bool opening;
6748 IcePointer *watchData;
6749{
6750 /* Intercept creation of ICE connection fd */
6751 if (opening)
6752 {
6753 xsmp_icefd = IceConnectionNumber(iceConn);
6754 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6755 }
6756}
6757
6758
6759/* Handle any ICE processing that's required; return FAIL if SM lost */
6760 int
6761xsmp_handle_requests()
6762{
6763 Bool rep;
6764
6765 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6766 == IceProcessMessagesIOError)
6767 {
6768 /* Lost ICE */
6769 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006770 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771 xsmp_close();
6772 return FAIL;
6773 }
6774 else
6775 return OK;
6776}
6777
6778static int dummy;
6779
6780/* Set up X Session Management Protocol */
6781 void
6782xsmp_init(void)
6783{
6784 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 SmcCallbacks smcallbacks;
6786#if 0
6787 SmPropValue smname;
6788 SmProp smnameprop;
6789 SmProp *smprops[1];
6790#endif
6791
6792 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006793 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794
6795 xsmp.save_yourself = xsmp.shutdown = False;
6796
6797 /* Set up SM callbacks - must have all, even if they're not used */
6798 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6799 smcallbacks.save_yourself.client_data = NULL;
6800 smcallbacks.die.callback = xsmp_die;
6801 smcallbacks.die.client_data = NULL;
6802 smcallbacks.save_complete.callback = xsmp_save_complete;
6803 smcallbacks.save_complete.client_data = NULL;
6804 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6805 smcallbacks.shutdown_cancelled.client_data = NULL;
6806
6807 /* Set up a watch on ICE connection creations. The "dummy" argument is
6808 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6809 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6810 {
6811 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006812 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813 return;
6814 }
6815
6816 /* Create an SM connection */
6817 xsmp.smcconn = SmcOpenConnection(
6818 NULL,
6819 NULL,
6820 SmProtoMajor,
6821 SmProtoMinor,
6822 SmcSaveYourselfProcMask | SmcDieProcMask
6823 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6824 &smcallbacks,
6825 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00006826 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 sizeof(errorstring),
6828 errorstring);
6829 if (xsmp.smcconn == NULL)
6830 {
6831 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00006832
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006834 {
6835 vim_snprintf(errorreport, sizeof(errorreport),
6836 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6837 verb_msg((char_u *)errorreport);
6838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 return;
6840 }
6841 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6842
6843#if 0
6844 /* ID ourselves */
6845 smname.value = "vim";
6846 smname.length = 3;
6847 smnameprop.name = "SmProgram";
6848 smnameprop.type = "SmARRAY8";
6849 smnameprop.num_vals = 1;
6850 smnameprop.vals = &smname;
6851
6852 smprops[0] = &smnameprop;
6853 SmcSetProperties(xsmp.smcconn, 1, smprops);
6854#endif
6855}
6856
6857
6858/* Shut down XSMP comms. */
6859 void
6860xsmp_close()
6861{
6862 if (xsmp_icefd != -1)
6863 {
6864 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00006865 if (xsmp.clientid != NULL)
6866 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00006867 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 xsmp_icefd = -1;
6869 }
6870}
6871#endif /* USE_XSMP */
6872
6873
6874#ifdef EBCDIC
6875/* Translate character to its CTRL- value */
6876char CtrlTable[] =
6877{
6878/* 00 - 5E */
6879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6881 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6882 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6883 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6884 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6885/* ^ */ 0x1E,
6886/* - */ 0x1F,
6887/* 61 - 6C */
6888 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6889/* _ */ 0x1F,
6890/* 6E - 80 */
6891 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6892/* a */ 0x01,
6893/* b */ 0x02,
6894/* c */ 0x03,
6895/* d */ 0x37,
6896/* e */ 0x2D,
6897/* f */ 0x2E,
6898/* g */ 0x2F,
6899/* h */ 0x16,
6900/* i */ 0x05,
6901/* 8A - 90 */
6902 0, 0, 0, 0, 0, 0, 0,
6903/* j */ 0x15,
6904/* k */ 0x0B,
6905/* l */ 0x0C,
6906/* m */ 0x0D,
6907/* n */ 0x0E,
6908/* o */ 0x0F,
6909/* p */ 0x10,
6910/* q */ 0x11,
6911/* r */ 0x12,
6912/* 9A - A1 */
6913 0, 0, 0, 0, 0, 0, 0, 0,
6914/* s */ 0x13,
6915/* t */ 0x3C,
6916/* u */ 0x3D,
6917/* v */ 0x32,
6918/* w */ 0x26,
6919/* x */ 0x18,
6920/* y */ 0x19,
6921/* z */ 0x3F,
6922/* AA - AC */
6923 0, 0, 0,
6924/* [ */ 0x27,
6925/* AE - BC */
6926 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6927/* ] */ 0x1D,
6928/* BE - C0 */ 0, 0, 0,
6929/* A */ 0x01,
6930/* B */ 0x02,
6931/* C */ 0x03,
6932/* D */ 0x37,
6933/* E */ 0x2D,
6934/* F */ 0x2E,
6935/* G */ 0x2F,
6936/* H */ 0x16,
6937/* I */ 0x05,
6938/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6939/* J */ 0x15,
6940/* K */ 0x0B,
6941/* L */ 0x0C,
6942/* M */ 0x0D,
6943/* N */ 0x0E,
6944/* O */ 0x0F,
6945/* P */ 0x10,
6946/* Q */ 0x11,
6947/* R */ 0x12,
6948/* DA - DF */ 0, 0, 0, 0, 0, 0,
6949/* \ */ 0x1C,
6950/* E1 */ 0,
6951/* S */ 0x13,
6952/* T */ 0x3C,
6953/* U */ 0x3D,
6954/* V */ 0x32,
6955/* W */ 0x26,
6956/* X */ 0x18,
6957/* Y */ 0x19,
6958/* Z */ 0x3F,
6959/* EA - FF*/ 0, 0, 0, 0, 0, 0,
6960 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6961};
6962
6963char MetaCharTable[]=
6964{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6965 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6966 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6967 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6968 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6969};
6970
6971
6972/* TODO: Use characters NOT numbers!!! */
6973char CtrlCharTable[]=
6974{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6975 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6976 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6977 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6978 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6979};
6980
6981
6982#endif