blob: 782265bd916e345997efd4b4280ae4d5c7562e3a [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
318 void
319mch_write(s, len)
320 char_u *s;
321 int len;
322{
323 write(1, (char *)s, len);
324 if (p_wd) /* Unix is too fast, slow down a bit more */
325 RealWaitForChar(read_cmd_fd, p_wd, NULL);
326}
327
328/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000329 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 * Get a characters from the keyboard.
331 * Return the number of characters that are available.
332 * If wtime == 0 do not wait for characters.
333 * If wtime == n wait a short time for characters.
334 * If wtime == -1 wait forever for characters.
335 */
336 int
337mch_inchar(buf, maxlen, wtime, tb_change_cnt)
338 char_u *buf;
339 int maxlen;
340 long wtime; /* don't use "time", MIPS cannot handle it */
341 int tb_change_cnt;
342{
343 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344
345 /* Check if window changed size while we were busy, perhaps the ":set
346 * columns=99" command was used. */
347 while (do_resize)
348 handle_resize();
349
350 if (wtime >= 0)
351 {
352 while (WaitForChar(wtime) == 0) /* no character available */
353 {
354 if (!do_resize) /* return if not interrupted by resize */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 handle_resize();
357 }
358 }
359 else /* wtime == -1 */
360 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 /*
362 * If there is no character available within 'updatetime' seconds
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000363 * flush all the swap files to disk.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 * Also done when interrupted by SIGWINCH.
365 */
366 if (WaitForChar(p_ut) == 0)
367 {
368#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +0000369 if (trigger_cursorhold() && maxlen >= 3
370 && !typebuf_changed(tb_change_cnt))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 {
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000372 buf[0] = K_SPECIAL;
373 buf[1] = KS_EXTRA;
374 buf[2] = (int)KE_CURSORHOLD;
375 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377#endif
Bram Moolenaard4098f52005-06-27 22:37:13 +0000378 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 }
380 }
381
382 for (;;) /* repeat until we got a character */
383 {
384 while (do_resize) /* window changed size */
385 handle_resize();
386 /*
387 * we want to be interrupted by the winch signal
388 */
389 WaitForChar(-1L);
390 if (do_resize) /* interrupted by SIGWINCH signal */
391 continue;
392
393 /* If input was put directly in typeahead buffer bail out here. */
394 if (typebuf_changed(tb_change_cnt))
395 return 0;
396
397 /*
398 * For some terminals we only get one character at a time.
399 * We want the get all available characters, so we could keep on
400 * trying until none is available
401 * For some other terminals this is quite slow, that's why we don't do
402 * it.
403 */
404 len = read_from_input_buf(buf, (long)maxlen);
405 if (len > 0)
406 {
407#ifdef OS2
408 int i;
409
410 for (i = 0; i < len; i++)
411 if (buf[i] == 0)
412 buf[i] = K_NUL;
413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 return len;
415 }
416 }
417}
418
419 static void
420handle_resize()
421{
422 do_resize = FALSE;
423 shell_resized();
424}
425
426/*
427 * return non-zero if a character is available
428 */
429 int
430mch_char_avail()
431{
432 return WaitForChar(0L);
433}
434
435#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
436# ifdef HAVE_SYS_RESOURCE_H
437# include <sys/resource.h>
438# endif
439# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
440# include <sys/sysctl.h>
441# endif
442# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
443# include <sys/sysinfo.h>
444# endif
445
446/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000447 * Return total amount of memory available in Kbyte.
448 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 */
450/* ARGSUSED */
451 long_u
452mch_total_mem(special)
453 int special;
454{
455# ifdef __EMX__
Bram Moolenaar914572a2007-05-01 11:37:47 +0000456 return ulimit(3, 0L) >> 10; /* always 32MB? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457# else
458 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000459 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460
461# ifdef HAVE_SYSCTL
462 int mib[2], physmem;
463 size_t len;
464
465 /* BSD way of getting the amount of RAM available. */
466 mib[0] = CTL_HW;
467 mib[1] = HW_USERMEM;
468 len = sizeof(physmem);
469 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
470 mem = (long_u)physmem;
471# endif
472
473# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
474 if (mem == 0)
475 {
476 struct sysinfo sinfo;
477
478 /* Linux way of getting amount of RAM available */
479 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000480 {
481# ifdef HAVE_SYSINFO_MEM_UNIT
482 /* avoid overflow as much as possible */
483 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
484 {
485 sinfo.mem_unit = sinfo.mem_unit >> 1;
486 --shiftright;
487 }
488 mem = sinfo.totalram * sinfo.mem_unit;
489# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 mem = sinfo.totalram;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000491# endif
492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 }
494# endif
495
496# ifdef HAVE_SYSCONF
497 if (mem == 0)
498 {
499 long pagesize, pagecount;
500
501 /* Solaris way of getting amount of RAM available */
502 pagesize = sysconf(_SC_PAGESIZE);
503 pagecount = sysconf(_SC_PHYS_PAGES);
504 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000505 {
506 /* avoid overflow as much as possible */
507 while (shiftright > 0 && (pagesize & 1) == 0)
508 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000509 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000510 --shiftright;
511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000513 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 }
515# endif
516
517 /* Return the minimum of the physical memory and the user limit, because
518 * using more than the user limit may cause Vim to be terminated. */
519# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
520 {
521 struct rlimit rlp;
522
523 if (getrlimit(RLIMIT_DATA, &rlp) == 0
524 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
525# ifdef RLIM_INFINITY
526 && rlp.rlim_cur != RLIM_INFINITY
527# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000528 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000530 {
531 mem = (long_u)rlp.rlim_cur;
532 shiftright = 10;
533 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 }
535# endif
536
537 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000538 return mem >> shiftright;
539 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540# endif
541}
542#endif
543
544 void
545mch_delay(msec, ignoreinput)
546 long msec;
547 int ignoreinput;
548{
549 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000550#ifdef FEAT_MZSCHEME
551 long total = msec; /* remember original value */
552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
554 if (ignoreinput)
555 {
556 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000557 * here. But we don't want QUIT to kill us (CTRL-\ used in a
558 * shell may produce SIGQUIT). */
559 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 old_tmode = curr_tmode;
561 if (curr_tmode == TMODE_RAW)
562 settmode(TMODE_SLEEP);
563
564 /*
565 * Everybody sleeps in a different way...
566 * Prefer nanosleep(), some versions of usleep() can only sleep up to
567 * one second.
568 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000569#ifdef FEAT_MZSCHEME
570 do
571 {
572 /* if total is large enough, wait by portions in p_mzq */
573 if (total > p_mzq)
574 msec = p_mzq;
575 else
576 msec = total;
577 total -= msec;
578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579#ifdef HAVE_NANOSLEEP
580 {
581 struct timespec ts;
582
583 ts.tv_sec = msec / 1000;
584 ts.tv_nsec = (msec % 1000) * 1000000;
585 (void)nanosleep(&ts, NULL);
586 }
587#else
588# ifdef HAVE_USLEEP
589 while (msec >= 1000)
590 {
591 usleep((unsigned int)(999 * 1000));
592 msec -= 999;
593 }
594 usleep((unsigned int)(msec * 1000));
595# else
596# ifndef HAVE_SELECT
597 poll(NULL, 0, (int)msec);
598# else
599# ifdef __EMX__
600 _sleep2(msec);
601# else
602 {
603 struct timeval tv;
604
605 tv.tv_sec = msec / 1000;
606 tv.tv_usec = (msec % 1000) * 1000;
607 /*
608 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
609 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
610 */
611 select(0, NULL, NULL, NULL, &tv);
612 }
613# endif /* __EMX__ */
614# endif /* HAVE_SELECT */
615# endif /* HAVE_NANOSLEEP */
616#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000617#ifdef FEAT_MZSCHEME
618 }
619 while (total > 0);
620#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621
622 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000623 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 }
625 else
626 WaitForChar(msec);
627}
628
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000629#if 0 /* disabled, no longer needed now that regmatch() is not recursive */
630# if defined(HAVE_GETRLIMIT)
631# define HAVE_STACK_LIMIT
632# endif
633#endif
634
635#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
637# define HAVE_CHECK_STACK_GROWTH
638/*
639 * Support for checking for an almost-out-of-stack-space situation.
640 */
641
642/*
643 * Return a pointer to an item on the stack. Used to find out if the stack
644 * grows up or down.
645 */
646static void check_stack_growth __ARGS((char *p));
647static int stack_grows_downwards;
648
649/*
650 * Find out if the stack grows upwards or downwards.
651 * "p" points to a variable on the stack of the caller.
652 */
653 static void
654check_stack_growth(p)
655 char *p;
656{
657 int i;
658
659 stack_grows_downwards = (p > (char *)&i);
660}
661#endif
662
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000663#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664static char *stack_limit = NULL;
665
666#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
667# include <pthread.h>
668# include <pthread_np.h>
669#endif
670
671/*
672 * Find out until how var the stack can grow without getting into trouble.
673 * Called when starting up and when switching to the signal stack in
674 * deathtrap().
675 */
676 static void
677get_stack_limit()
678{
679 struct rlimit rlp;
680 int i;
681 long lim;
682
683 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
684 * limit doesn't fit in a long (rlim_cur might be "long long"). */
685 if (getrlimit(RLIMIT_STACK, &rlp) == 0
686 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
687# ifdef RLIM_INFINITY
688 && rlp.rlim_cur != RLIM_INFINITY
689# endif
690 )
691 {
692 lim = (long)rlp.rlim_cur;
693#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
694 {
695 pthread_attr_t attr;
696 size_t size;
697
698 /* On FreeBSD the initial thread always has a fixed stack size, no
699 * matter what the limits are set to. Normally it's 1 Mbyte. */
700 pthread_attr_init(&attr);
701 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
702 {
703 pthread_attr_getstacksize(&attr, &size);
704 if (lim > (long)size)
705 lim = (long)size;
706 }
707 pthread_attr_destroy(&attr);
708 }
709#endif
710 if (stack_grows_downwards)
711 {
712 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
713 if (stack_limit >= (char *)&i)
714 /* overflow, set to 1/16 of current stack position */
715 stack_limit = (char *)((long)&i / 16L);
716 }
717 else
718 {
719 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
720 if (stack_limit <= (char *)&i)
721 stack_limit = NULL; /* overflow */
722 }
723 }
724}
725
726/*
727 * Return FAIL when running out of stack space.
728 * "p" must point to any variable local to the caller that's on the stack.
729 */
730 int
731mch_stackcheck(p)
732 char *p;
733{
734 if (stack_limit != NULL)
735 {
736 if (stack_grows_downwards)
737 {
738 if (p < stack_limit)
739 return FAIL;
740 }
741 else if (p > stack_limit)
742 return FAIL;
743 }
744 return OK;
745}
746#endif
747
748#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
749/*
750 * Support for using the signal stack.
751 * This helps when we run out of stack space, which causes a SIGSEGV. The
752 * signal handler then must run on another stack, since the normal stack is
753 * completely full.
754 */
755
756#ifndef SIGSTKSZ
757# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
758#endif
759
760# ifdef HAVE_SIGALTSTACK
761static stack_t sigstk; /* for sigaltstack() */
762# else
763static struct sigstack sigstk; /* for sigstack() */
764# endif
765
766static void init_signal_stack __ARGS((void));
767static char *signal_stack;
768
769 static void
770init_signal_stack()
771{
772 if (signal_stack != NULL)
773 {
774# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000775# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
776 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
778 * "struct sigaltstack" needs to be declared. */
779 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
780# endif
781
782# ifdef HAVE_SS_BASE
783 sigstk.ss_base = signal_stack;
784# else
785 sigstk.ss_sp = signal_stack;
786# endif
787 sigstk.ss_size = SIGSTKSZ;
788 sigstk.ss_flags = 0;
789 (void)sigaltstack(&sigstk, NULL);
790# else
791 sigstk.ss_sp = signal_stack;
792 if (stack_grows_downwards)
793 sigstk.ss_sp += SIGSTKSZ - 1;
794 sigstk.ss_onstack = 0;
795 (void)sigstack(&sigstk, NULL);
796# endif
797 }
798}
799#endif
800
801/*
802 * We need correct potatotypes for a signal function, otherwise mean compilers
803 * will barf when the second argument to signal() is ``wrong''.
804 * Let me try it with a few tricky defines from my own osdef.h (jw).
805 */
806#if defined(SIGWINCH)
807/* ARGSUSED */
808 static RETSIGTYPE
809sig_winch SIGDEFARG(sigarg)
810{
811 /* this is not required on all systems, but it doesn't hurt anybody */
812 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
813 do_resize = TRUE;
814 SIGRETURN;
815}
816#endif
817
818#if defined(SIGINT)
819/* ARGSUSED */
820 static RETSIGTYPE
821catch_sigint SIGDEFARG(sigarg)
822{
823 /* this is not required on all systems, but it doesn't hurt anybody */
824 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
825 got_int = TRUE;
826 SIGRETURN;
827}
828#endif
829
830#if defined(SIGPWR)
831/* ARGSUSED */
832 static RETSIGTYPE
833catch_sigpwr SIGDEFARG(sigarg)
834{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000835 /* this is not required on all systems, but it doesn't hurt anybody */
836 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 /*
838 * I'm not sure we get the SIGPWR signal when the system is really going
839 * down or when the batteries are almost empty. Just preserve the swap
840 * files and don't exit, that can't do any harm.
841 */
842 ml_sync_all(FALSE, FALSE);
843 SIGRETURN;
844}
845#endif
846
847#ifdef SET_SIG_ALARM
848/*
849 * signal function for alarm().
850 */
851/* ARGSUSED */
852 static RETSIGTYPE
853sig_alarm SIGDEFARG(sigarg)
854{
855 /* doesn't do anything, just to break a system call */
856 sig_alarm_called = TRUE;
857 SIGRETURN;
858}
859#endif
860
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000861#if (defined(HAVE_SETJMP_H) \
862 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
863 || defined(FEAT_LIBCALL))) \
864 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865/*
866 * A simplistic version of setjmp() that only allows one level of using.
867 * Don't call twice before calling mch_endjmp()!.
868 * Usage:
869 * mch_startjmp();
870 * if (SETJMP(lc_jump_env) != 0)
871 * {
872 * mch_didjmp();
873 * EMSG("crash!");
874 * }
875 * else
876 * {
877 * do_the_work;
878 * mch_endjmp();
879 * }
880 * Note: Can't move SETJMP() here, because a function calling setjmp() must
881 * not return before the saved environment is used.
882 * Returns OK for normal return, FAIL when the protected code caused a
883 * problem and LONGJMP() was used.
884 */
885 void
886mch_startjmp()
887{
888#ifdef SIGHASARG
889 lc_signal = 0;
890#endif
891 lc_active = TRUE;
892}
893
894 void
895mch_endjmp()
896{
897 lc_active = FALSE;
898}
899
900 void
901mch_didjmp()
902{
903# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
904 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
905 * otherwise catching the signal only works once. */
906 init_signal_stack();
907# endif
908}
909#endif
910
911/*
912 * This function handles deadly signals.
913 * It tries to preserve any swap file and exit properly.
914 * (partly from Elvis).
915 */
916 static RETSIGTYPE
917deathtrap SIGDEFARG(sigarg)
918{
919 static int entered = 0; /* count the number of times we got here.
920 Note: when memory has been corrupted
921 this may get an arbitrary value! */
922#ifdef SIGHASARG
923 int i;
924#endif
925
926#if defined(HAVE_SETJMP_H)
927 /*
928 * Catch a crash in protected code.
929 * Restores the environment saved in lc_jump_env, which looks like
930 * SETJMP() returns 1.
931 */
932 if (lc_active)
933 {
934# if defined(SIGHASARG)
935 lc_signal = sigarg;
936# endif
937 lc_active = FALSE; /* don't jump again */
938 LONGJMP(lc_jump_env, 1);
939 /* NOTREACHED */
940 }
941#endif
942
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000943#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000944# ifdef SIGQUIT
945 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
946 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
947 * pressing CTRL-\, but we don't want Vim to exit then. */
948 if (in_mch_delay && sigarg == SIGQUIT)
949 SIGRETURN;
950# endif
951
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000952 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
953 * here. This avoids that a non-reentrant function is interrupted, e.g.,
954 * free(). Calling free() again may then cause a crash. */
955 if (entered == 0
956 && (0
957# ifdef SIGHUP
958 || sigarg == SIGHUP
959# endif
960# ifdef SIGQUIT
961 || sigarg == SIGQUIT
962# endif
963# ifdef SIGTERM
964 || sigarg == SIGTERM
965# endif
966# ifdef SIGPWR
967 || sigarg == SIGPWR
968# endif
969# ifdef SIGUSR1
970 || sigarg == SIGUSR1
971# endif
972# ifdef SIGUSR2
973 || sigarg == SIGUSR2
974# endif
975 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +0000976 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000977 SIGRETURN;
978#endif
979
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 /* Remember how often we have been called. */
981 ++entered;
982
983#ifdef FEAT_EVAL
984 /* Set the v:dying variable. */
985 set_vim_var_nr(VV_DYING, (long)entered);
986#endif
987
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000988#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 /* Since we are now using the signal stack, need to reset the stack
990 * limit. Otherwise using a regexp will fail. */
991 get_stack_limit();
992#endif
993
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000994#if 0
995 /* This is for opening gdb the moment Vim crashes.
996 * You need to manually adjust the file name and Vim executable name.
997 * Suggested by SungHyun Nam. */
998 {
999# define VI_GDB_FILE "/tmp/vimgdb"
1000# define VIM_NAME "/usr/bin/vim"
1001 FILE *fp = fopen(VI_GDB_FILE, "w");
1002 if (fp)
1003 {
1004 fprintf(fp,
1005 "file %s\n"
1006 "attach %d\n"
1007 "set height 1000\n"
1008 "bt full\n"
1009 , VIM_NAME, getpid());
1010 fclose(fp);
1011 system("xterm -e gdb -x "VI_GDB_FILE);
1012 unlink(VI_GDB_FILE);
1013 }
1014 }
1015#endif
1016
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017#ifdef SIGHASARG
1018 /* try to find the name of this signal */
1019 for (i = 0; signal_info[i].sig != -1; i++)
1020 if (sigarg == signal_info[i].sig)
1021 break;
1022 deadly_signal = sigarg;
1023#endif
1024
1025 full_screen = FALSE; /* don't write message to the GUI, it might be
1026 * part of the problem... */
1027 /*
1028 * If something goes wrong after entering here, we may get here again.
1029 * When this happens, give a message and try to exit nicely (resetting the
1030 * terminal mode, etc.)
1031 * When this happens twice, just exit, don't even try to give a message,
1032 * stack may be corrupt or something weird.
1033 * When this still happens again (or memory was corrupted in such a way
1034 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1035 */
1036 if (entered >= 3)
1037 {
1038 reset_signals(); /* don't catch any signals anymore */
1039 may_core_dump();
1040 if (entered >= 4)
1041 _exit(8);
1042 exit(7);
1043 }
1044 if (entered == 2)
1045 {
1046 OUT_STR(_("Vim: Double signal, exiting\n"));
1047 out_flush();
1048 getout(1);
1049 }
1050
1051#ifdef SIGHASARG
1052 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1053 signal_info[i].name);
1054#else
1055 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1056#endif
1057 preserve_exit(); /* preserve files and exit */
1058
Bram Moolenaar009b2592004-10-24 19:18:58 +00001059#ifdef NBDEBUG
1060 reset_signals();
1061 may_core_dump();
1062 abort();
1063#endif
1064
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 SIGRETURN;
1066}
1067
1068#ifdef _REENTRANT
1069/*
1070 * On Solaris with multi-threading, suspending might not work immediately.
1071 * Catch the SIGCONT signal, which will be used as an indication whether the
1072 * suspending has been done or not.
1073 */
1074static int sigcont_received;
1075static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1076
1077/*
1078 * signal handler for SIGCONT
1079 */
1080/* ARGSUSED */
1081 static RETSIGTYPE
1082sigcont_handler SIGDEFARG(sigarg)
1083{
1084 sigcont_received = TRUE;
1085 SIGRETURN;
1086}
1087#endif
1088
1089/*
1090 * If the machine has job control, use it to suspend the program,
1091 * otherwise fake it by starting a new shell.
1092 */
1093 void
1094mch_suspend()
1095{
1096 /* BeOS does have SIGTSTP, but it doesn't work. */
1097#if defined(SIGTSTP) && !defined(__BEOS__)
1098 out_flush(); /* needed to make cursor visible on some systems */
1099 settmode(TMODE_COOK);
1100 out_flush(); /* needed to disable mouse on some systems */
1101
1102# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1103 /* Since we are going to sleep, we can't respond to requests for the X
1104 * selections. Lose them, otherwise other applications will hang. But
1105 * first copy the text to cut buffer 0. */
1106 if (clip_star.owned || clip_plus.owned)
1107 {
1108 x11_export_final_selection();
1109 if (clip_star.owned)
1110 clip_lose_selection(&clip_star);
1111 if (clip_plus.owned)
1112 clip_lose_selection(&clip_plus);
1113 if (x11_display != NULL)
1114 XFlush(x11_display);
1115 }
1116# endif
1117
1118# ifdef _REENTRANT
1119 sigcont_received = FALSE;
1120# endif
1121 kill(0, SIGTSTP); /* send ourselves a STOP signal */
1122# ifdef _REENTRANT
1123 /* When we didn't suspend immediately in the kill(), do it now. Happens
1124 * on multi-threaded Solaris. */
1125 if (!sigcont_received)
1126 pause();
1127# endif
1128
1129# ifdef FEAT_TITLE
1130 /*
1131 * Set oldtitle to NULL, so the current title is obtained again.
1132 */
1133 vim_free(oldtitle);
1134 oldtitle = NULL;
1135# endif
1136 settmode(TMODE_RAW);
1137 need_check_timestamps = TRUE;
1138 did_check_timestamps = FALSE;
1139#else
1140 suspend_shell();
1141#endif
1142}
1143
1144 void
1145mch_init()
1146{
1147 Columns = 80;
1148 Rows = 24;
1149
1150 out_flush();
1151 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001152
Bram Moolenaar56718732006-03-15 22:53:57 +00001153#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001154 mac_conv_init();
1155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156}
1157
1158 static void
1159set_signals()
1160{
1161#if defined(SIGWINCH)
1162 /*
1163 * WINDOW CHANGE signal is handled with sig_winch().
1164 */
1165 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1166#endif
1167
1168 /*
1169 * We want the STOP signal to work, to make mch_suspend() work.
1170 * For "rvim" the STOP signal is ignored.
1171 */
1172#ifdef SIGTSTP
1173 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1174#endif
1175#ifdef _REENTRANT
1176 signal(SIGCONT, sigcont_handler);
1177#endif
1178
1179 /*
1180 * We want to ignore breaking of PIPEs.
1181 */
1182#ifdef SIGPIPE
1183 signal(SIGPIPE, SIG_IGN);
1184#endif
1185
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001187 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188#endif
1189
1190 /*
1191 * Ignore alarm signals (Perl's alarm() generates it).
1192 */
1193#ifdef SIGALRM
1194 signal(SIGALRM, SIG_IGN);
1195#endif
1196
1197 /*
1198 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1199 * work will be lost.
1200 */
1201#ifdef SIGPWR
1202 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1203#endif
1204
1205 /*
1206 * Arrange for other signals to gracefully shutdown Vim.
1207 */
1208 catch_signals(deathtrap, SIG_ERR);
1209
1210#if defined(FEAT_GUI) && defined(SIGHUP)
1211 /*
1212 * When the GUI is running, ignore the hangup signal.
1213 */
1214 if (gui.in_use)
1215 signal(SIGHUP, SIG_IGN);
1216#endif
1217}
1218
Bram Moolenaardf177f62005-02-22 08:39:57 +00001219#if defined(SIGINT) || defined(PROTO)
1220/*
1221 * Catch CTRL-C (only works while in Cooked mode).
1222 */
1223 static void
1224catch_int_signal()
1225{
1226 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1227}
1228#endif
1229
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 void
1231reset_signals()
1232{
1233 catch_signals(SIG_DFL, SIG_DFL);
1234#ifdef _REENTRANT
1235 /* SIGCONT isn't in the list, because its default action is ignore */
1236 signal(SIGCONT, SIG_DFL);
1237#endif
1238}
1239
1240 static void
1241catch_signals(func_deadly, func_other)
1242 RETSIGTYPE (*func_deadly)();
1243 RETSIGTYPE (*func_other)();
1244{
1245 int i;
1246
1247 for (i = 0; signal_info[i].sig != -1; i++)
1248 if (signal_info[i].deadly)
1249 {
1250#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1251 struct sigaction sa;
1252
1253 /* Setup to use the alternate stack for the signal function. */
1254 sa.sa_handler = func_deadly;
1255 sigemptyset(&sa.sa_mask);
1256# if defined(__linux__) && defined(_REENTRANT)
1257 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1258 * thread handling in combination with using the alternate stack:
1259 * pthread library functions try to use the stack pointer to
1260 * identify the current thread, causing a SEGV signal, which
1261 * recursively calls deathtrap() and hangs. */
1262 sa.sa_flags = 0;
1263# else
1264 sa.sa_flags = SA_ONSTACK;
1265# endif
1266 sigaction(signal_info[i].sig, &sa, NULL);
1267#else
1268# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1269 struct sigvec sv;
1270
1271 /* Setup to use the alternate stack for the signal function. */
1272 sv.sv_handler = func_deadly;
1273 sv.sv_mask = 0;
1274 sv.sv_flags = SV_ONSTACK;
1275 sigvec(signal_info[i].sig, &sv, NULL);
1276# else
1277 signal(signal_info[i].sig, func_deadly);
1278# endif
1279#endif
1280 }
1281 else if (func_other != SIG_ERR)
1282 signal(signal_info[i].sig, func_other);
1283}
1284
1285/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001286 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001287 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1288 * return TRUE
1289 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1290 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1291 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001292 * Returns TRUE when Vim should exit.
1293 */
1294 int
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001295vim_handle_signal(sig)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001296 int sig;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001297{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001298 static int got_signal = 0;
1299 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001300
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001301 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001302 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001303 case SIGNAL_BLOCK: blocked = TRUE;
1304 break;
1305
1306 case SIGNAL_UNBLOCK: blocked = FALSE;
1307 if (got_signal != 0)
1308 {
1309 kill(getpid(), got_signal);
1310 got_signal = 0;
1311 }
1312 break;
1313
1314 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001315 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001316 got_signal = sig;
1317#ifdef SIGPWR
1318 if (sig != SIGPWR)
1319#endif
1320 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001321 break;
1322 }
1323 return FALSE;
1324}
1325
1326/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 * Check_win checks whether we have an interactive stdout.
1328 */
1329/* ARGSUSED */
1330 int
1331mch_check_win(argc, argv)
1332 int argc;
1333 char **argv;
1334{
1335#ifdef OS2
1336 /*
1337 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1338 * name, mostly it's just "vim" and found in the path, which is unusable.
1339 */
1340 if (mch_isFullName(argv[0]))
1341 exe_name = vim_strsave((char_u *)argv[0]);
1342#endif
1343 if (isatty(1))
1344 return OK;
1345 return FAIL;
1346}
1347
1348/*
1349 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1350 */
1351 int
1352mch_input_isatty()
1353{
1354 if (isatty(read_cmd_fd))
1355 return TRUE;
1356 return FALSE;
1357}
1358
1359#ifdef FEAT_X11
1360
1361# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1362 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1363
1364static void xopen_message __ARGS((struct timeval *tvp));
1365
1366/*
1367 * Give a message about the elapsed time for opening the X window.
1368 */
1369 static void
1370xopen_message(tvp)
1371 struct timeval *tvp; /* must contain start time */
1372{
1373 struct timeval end_tv;
1374
1375 /* Compute elapsed time. */
1376 gettimeofday(&end_tv, NULL);
1377 smsg((char_u *)_("Opening the X display took %ld msec"),
1378 (end_tv.tv_sec - tvp->tv_sec) * 1000L
Bram Moolenaar051b7822005-05-19 21:00:46 +00001379 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380}
1381# endif
1382#endif
1383
1384#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1385/*
1386 * A few functions shared by X11 title and clipboard code.
1387 */
1388static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1389static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1390static int x_connect_to_server __ARGS((void));
1391static int test_x11_window __ARGS((Display *dpy));
1392
1393static int got_x_error = FALSE;
1394
1395/*
1396 * X Error handler, otherwise X just exits! (very rude) -- webb
1397 */
1398 static int
1399x_error_handler(dpy, error_event)
1400 Display *dpy;
1401 XErrorEvent *error_event;
1402{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001403 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 STRCAT(IObuff, _("\nVim: Got X error\n"));
1405
1406 /* We cannot print a message and continue, because no X calls are allowed
1407 * here (causes my system to hang). Silently continuing might be an
1408 * alternative... */
1409 preserve_exit(); /* preserve files and exit */
1410
1411 return 0; /* NOTREACHED */
1412}
1413
1414/*
1415 * Another X Error handler, just used to check for errors.
1416 */
1417/* ARGSUSED */
1418 static int
1419x_error_check(dpy, error_event)
1420 Display *dpy;
1421 XErrorEvent *error_event;
1422{
1423 got_x_error = TRUE;
1424 return 0;
1425}
1426
1427#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1428# if defined(HAVE_SETJMP_H)
1429/*
1430 * An X IO Error handler, used to catch error while opening the display.
1431 */
1432static int x_IOerror_check __ARGS((Display *dpy));
1433
1434/* ARGSUSED */
1435 static int
1436x_IOerror_check(dpy)
1437 Display *dpy;
1438{
1439 /* This function should not return, it causes exit(). Longjump instead. */
1440 LONGJMP(lc_jump_env, 1);
1441 /*NOTREACHED*/
1442 return 0;
1443}
1444# endif
1445
1446/*
1447 * An X IO Error handler, used to catch terminal errors.
1448 */
1449static int x_IOerror_handler __ARGS((Display *dpy));
1450
1451/* ARGSUSED */
1452 static int
1453x_IOerror_handler(dpy)
1454 Display *dpy;
1455{
1456 xterm_dpy = NULL;
1457 x11_window = 0;
1458 x11_display = NULL;
1459 xterm_Shell = (Widget)0;
1460
1461 /* This function should not return, it causes exit(). Longjump instead. */
1462 LONGJMP(x_jump_env, 1);
1463 /*NOTREACHED*/
1464 return 0;
1465}
1466#endif
1467
1468/*
1469 * Return TRUE when connection to the X server is desired.
1470 */
1471 static int
1472x_connect_to_server()
1473{
1474 regmatch_T regmatch;
1475
1476#if defined(FEAT_CLIENTSERVER)
1477 if (x_force_connect)
1478 return TRUE;
1479#endif
1480 if (x_no_connect)
1481 return FALSE;
1482
1483 /* Check for a match with "exclude:" from 'clipboard'. */
1484 if (clip_exclude_prog != NULL)
1485 {
1486 regmatch.rm_ic = FALSE; /* Don't ignore case */
1487 regmatch.regprog = clip_exclude_prog;
1488 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1489 return FALSE;
1490 }
1491 return TRUE;
1492}
1493
1494/*
1495 * Test if "dpy" and x11_window are valid by getting the window title.
1496 * I don't actually want it yet, so there may be a simpler call to use, but
1497 * this will cause the error handler x_error_check() to be called if anything
1498 * is wrong, such as the window pointer being invalid (as can happen when the
1499 * user changes his DISPLAY, but not his WINDOWID) -- webb
1500 */
1501 static int
1502test_x11_window(dpy)
1503 Display *dpy;
1504{
1505 int (*old_handler)();
1506 XTextProperty text_prop;
1507
1508 old_handler = XSetErrorHandler(x_error_check);
1509 got_x_error = FALSE;
1510 if (XGetWMName(dpy, x11_window, &text_prop))
1511 XFree((void *)text_prop.value);
1512 XSync(dpy, False);
1513 (void)XSetErrorHandler(old_handler);
1514
1515 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001516 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517
1518 return (got_x_error ? FAIL : OK);
1519}
1520#endif
1521
1522#ifdef FEAT_TITLE
1523
1524#ifdef FEAT_X11
1525
1526static int get_x11_thing __ARGS((int get_title, int test_only));
1527
1528/*
1529 * try to get x11 window and display
1530 *
1531 * return FAIL for failure, OK otherwise
1532 */
1533 static int
1534get_x11_windis()
1535{
1536 char *winid;
1537 static int result = -1;
1538#define XD_NONE 0 /* x11_display not set here */
1539#define XD_HERE 1 /* x11_display opened here */
1540#define XD_GUI 2 /* x11_display used from gui.dpy */
1541#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1542 static int x11_display_from = XD_NONE;
1543 static int did_set_error_handler = FALSE;
1544
1545 if (!did_set_error_handler)
1546 {
1547 /* X just exits if it finds an error otherwise! */
1548 (void)XSetErrorHandler(x_error_handler);
1549 did_set_error_handler = TRUE;
1550 }
1551
Bram Moolenaar9372a112005-12-06 19:59:18 +00001552#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 if (gui.in_use)
1554 {
1555 /*
1556 * If the X11 display was opened here before, for the window where Vim
1557 * was started, close that one now to avoid a memory leak.
1558 */
1559 if (x11_display_from == XD_HERE && x11_display != NULL)
1560 {
1561 XCloseDisplay(x11_display);
1562 x11_display_from = XD_NONE;
1563 }
1564 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1565 {
1566 x11_display_from = XD_GUI;
1567 return OK;
1568 }
1569 x11_display = NULL;
1570 return FAIL;
1571 }
1572 else if (x11_display_from == XD_GUI)
1573 {
1574 /* GUI must have stopped somehow, clear x11_display */
1575 x11_window = 0;
1576 x11_display = NULL;
1577 x11_display_from = XD_NONE;
1578 }
1579#endif
1580
1581 /* When started with the "-X" argument, don't try connecting. */
1582 if (!x_connect_to_server())
1583 return FAIL;
1584
1585 /*
1586 * If WINDOWID not set, should try another method to find out
1587 * what the current window number is. The only code I know for
1588 * this is very complicated.
1589 * We assume that zero is invalid for WINDOWID.
1590 */
1591 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1592 x11_window = (Window)atol(winid);
1593
1594#ifdef FEAT_XCLIPBOARD
1595 if (xterm_dpy != NULL && x11_window != 0)
1596 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001597 /* We may have checked it already, but Gnome terminal can move us to
1598 * another window, so we need to check every time. */
1599 if (x11_display_from != XD_XTERM)
1600 {
1601 /*
1602 * If the X11 display was opened here before, for the window where
1603 * Vim was started, close that one now to avoid a memory leak.
1604 */
1605 if (x11_display_from == XD_HERE && x11_display != NULL)
1606 XCloseDisplay(x11_display);
1607 x11_display = xterm_dpy;
1608 x11_display_from = XD_XTERM;
1609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 if (test_x11_window(x11_display) == FAIL)
1611 {
1612 /* probably bad $WINDOWID */
1613 x11_window = 0;
1614 x11_display = NULL;
1615 x11_display_from = XD_NONE;
1616 return FAIL;
1617 }
1618 return OK;
1619 }
1620#endif
1621
1622 if (x11_window == 0 || x11_display == NULL)
1623 result = -1;
1624
1625 if (result != -1) /* Have already been here and set this */
1626 return result; /* Don't do all these X calls again */
1627
1628 if (x11_window != 0 && x11_display == NULL)
1629 {
1630#ifdef SET_SIG_ALARM
1631 RETSIGTYPE (*sig_save)();
1632#endif
1633#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1634 struct timeval start_tv;
1635
1636 if (p_verbose > 0)
1637 gettimeofday(&start_tv, NULL);
1638#endif
1639
1640#ifdef SET_SIG_ALARM
1641 /*
1642 * Opening the Display may hang if the DISPLAY setting is wrong, or
1643 * the network connection is bad. Set an alarm timer to get out.
1644 */
1645 sig_alarm_called = FALSE;
1646 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1647 (RETSIGTYPE (*)())sig_alarm);
1648 alarm(2);
1649#endif
1650 x11_display = XOpenDisplay(NULL);
1651
1652#ifdef SET_SIG_ALARM
1653 alarm(0);
1654 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1655 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001656 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657#endif
1658 if (x11_display != NULL)
1659 {
1660# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1661 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001662 {
1663 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001665 verbose_leave();
1666 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667# endif
1668 if (test_x11_window(x11_display) == FAIL)
1669 {
1670 /* Maybe window id is bad */
1671 x11_window = 0;
1672 XCloseDisplay(x11_display);
1673 x11_display = NULL;
1674 }
1675 else
1676 x11_display_from = XD_HERE;
1677 }
1678 }
1679 if (x11_window == 0 || x11_display == NULL)
1680 return (result = FAIL);
1681 return (result = OK);
1682}
1683
1684/*
1685 * Determine original x11 Window Title
1686 */
1687 static int
1688get_x11_title(test_only)
1689 int test_only;
1690{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001691 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692}
1693
1694/*
1695 * Determine original x11 Window icon
1696 */
1697 static int
1698get_x11_icon(test_only)
1699 int test_only;
1700{
1701 int retval = FALSE;
1702
1703 retval = get_x11_thing(FALSE, test_only);
1704
1705 /* could not get old icon, use terminal name */
1706 if (oldicon == NULL && !test_only)
1707 {
1708 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1709 oldicon = T_NAME + 8;
1710 else
1711 oldicon = T_NAME;
1712 }
1713
1714 return retval;
1715}
1716
1717 static int
1718get_x11_thing(get_title, test_only)
1719 int get_title; /* get title string */
1720 int test_only;
1721{
1722 XTextProperty text_prop;
1723 int retval = FALSE;
1724 Status status;
1725
1726 if (get_x11_windis() == OK)
1727 {
1728 /* Get window/icon name if any */
1729 if (get_title)
1730 status = XGetWMName(x11_display, x11_window, &text_prop);
1731 else
1732 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1733
1734 /*
1735 * If terminal is xterm, then x11_window may be a child window of the
1736 * outer xterm window that actually contains the window/icon name, so
1737 * keep traversing up the tree until a window with a title/icon is
1738 * found.
1739 */
1740 /* Previously this was only done for xterm and alikes. I don't see a
1741 * reason why it would fail for other terminal emulators.
1742 * if (term_is_xterm) */
1743 {
1744 Window root;
1745 Window parent;
1746 Window win = x11_window;
1747 Window *children;
1748 unsigned int num_children;
1749
1750 while (!status || text_prop.value == NULL)
1751 {
1752 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1753 &num_children))
1754 break;
1755 if (children)
1756 XFree((void *)children);
1757 if (parent == root || parent == 0)
1758 break;
1759
1760 win = parent;
1761 if (get_title)
1762 status = XGetWMName(x11_display, win, &text_prop);
1763 else
1764 status = XGetWMIconName(x11_display, win, &text_prop);
1765 }
1766 }
1767 if (status && text_prop.value != NULL)
1768 {
1769 retval = TRUE;
1770 if (!test_only)
1771 {
1772#ifdef FEAT_XFONTSET
1773 if (text_prop.encoding == XA_STRING)
1774 {
1775#endif
1776 if (get_title)
1777 oldtitle = vim_strsave((char_u *)text_prop.value);
1778 else
1779 oldicon = vim_strsave((char_u *)text_prop.value);
1780#ifdef FEAT_XFONTSET
1781 }
1782 else
1783 {
1784 char **cl;
1785 Status transform_status;
1786 int n = 0;
1787
1788 transform_status = XmbTextPropertyToTextList(x11_display,
1789 &text_prop,
1790 &cl, &n);
1791 if (transform_status >= Success && n > 0 && cl[0])
1792 {
1793 if (get_title)
1794 oldtitle = vim_strsave((char_u *) cl[0]);
1795 else
1796 oldicon = vim_strsave((char_u *) cl[0]);
1797 XFreeStringList(cl);
1798 }
1799 else
1800 {
1801 if (get_title)
1802 oldtitle = vim_strsave((char_u *)text_prop.value);
1803 else
1804 oldicon = vim_strsave((char_u *)text_prop.value);
1805 }
1806 }
1807#endif
1808 }
1809 XFree((void *)text_prop.value);
1810 }
1811 }
1812 return retval;
1813}
1814
1815/* Are Xutf8 functions available? Avoid error from old compilers. */
1816#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1817# if X_HAVE_UTF8_STRING
1818# define USE_UTF8_STRING
1819# endif
1820#endif
1821
1822/*
1823 * Set x11 Window Title
1824 *
1825 * get_x11_windis() must be called before this and have returned OK
1826 */
1827 static void
1828set_x11_title(title)
1829 char_u *title;
1830{
1831 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1832 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1833 * supported everywhere and STRING doesn't work for multi-byte titles.
1834 */
1835#ifdef USE_UTF8_STRING
1836 if (enc_utf8)
1837 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1838 NULL, NULL, 0, NULL, NULL, NULL);
1839 else
1840#endif
1841 {
1842#if XtSpecificationRelease >= 4
1843# ifdef FEAT_XFONTSET
1844 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1845 NULL, NULL, 0, NULL, NULL, NULL);
1846# else
1847 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001848 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849
1850 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001851 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 XSetWMProperties(x11_display, x11_window, &text_prop,
1853 NULL, NULL, 0, NULL, NULL, NULL);
1854# endif
1855#else
1856 XStoreName(x11_display, x11_window, (char *)title);
1857#endif
1858 }
1859 XFlush(x11_display);
1860}
1861
1862/*
1863 * Set x11 Window icon
1864 *
1865 * get_x11_windis() must be called before this and have returned OK
1866 */
1867 static void
1868set_x11_icon(icon)
1869 char_u *icon;
1870{
1871 /* See above for comments about using X*SetWMProperties(). */
1872#ifdef USE_UTF8_STRING
1873 if (enc_utf8)
1874 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1875 NULL, 0, NULL, NULL, NULL);
1876 else
1877#endif
1878 {
1879#if XtSpecificationRelease >= 4
1880# ifdef FEAT_XFONTSET
1881 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1882 NULL, 0, NULL, NULL, NULL);
1883# else
1884 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001885 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001887 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1889 NULL, 0, NULL, NULL, NULL);
1890# endif
1891#else
1892 XSetIconName(x11_display, x11_window, (char *)icon);
1893#endif
1894 }
1895 XFlush(x11_display);
1896}
1897
1898#else /* FEAT_X11 */
1899
1900/*ARGSUSED*/
1901 static int
1902get_x11_title(test_only)
1903 int test_only;
1904{
1905 return FALSE;
1906}
1907
1908 static int
1909get_x11_icon(test_only)
1910 int test_only;
1911{
1912 if (!test_only)
1913 {
1914 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1915 oldicon = T_NAME + 8;
1916 else
1917 oldicon = T_NAME;
1918 }
1919 return FALSE;
1920}
1921
1922#endif /* FEAT_X11 */
1923
1924 int
1925mch_can_restore_title()
1926{
1927 return get_x11_title(TRUE);
1928}
1929
1930 int
1931mch_can_restore_icon()
1932{
1933 return get_x11_icon(TRUE);
1934}
1935
1936/*
1937 * Set the window title and icon.
1938 */
1939 void
1940mch_settitle(title, icon)
1941 char_u *title;
1942 char_u *icon;
1943{
1944 int type = 0;
1945 static int recursive = 0;
1946
1947 if (T_NAME == NULL) /* no terminal name (yet) */
1948 return;
1949 if (title == NULL && icon == NULL) /* nothing to do */
1950 return;
1951
1952 /* When one of the X11 functions causes a deadly signal, we get here again
1953 * recursively. Avoid hanging then (something is probably locked). */
1954 if (recursive)
1955 return;
1956 ++recursive;
1957
1958 /*
1959 * if the window ID and the display is known, we may use X11 calls
1960 */
1961#ifdef FEAT_X11
1962 if (get_x11_windis() == OK)
1963 type = 1;
1964#else
1965# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1966 if (gui.in_use)
1967 type = 1;
1968# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969#endif
1970
1971 /*
1972 * Note: if "t_TS" is set, title is set with escape sequence rather
1973 * than x11 calls, because the x11 calls don't always work
1974 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 if ((type || *T_TS != NUL) && title != NULL)
1976 {
1977 if (oldtitle == NULL
1978#ifdef FEAT_GUI
1979 && !gui.in_use
1980#endif
1981 ) /* first call but not in GUI, save title */
1982 (void)get_x11_title(FALSE);
1983
1984 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1985 term_settitle(title);
1986#ifdef FEAT_X11
1987 else
1988# ifdef FEAT_GUI_GTK
1989 if (!gui.in_use) /* don't do this if GTK+ is running */
1990# endif
1991 set_x11_title(title); /* x11 */
1992#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00001993#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
1995 else
1996 gui_mch_settitle(title, icon);
1997#endif
1998 did_set_title = TRUE;
1999 }
2000
2001 if ((type || *T_CIS != NUL) && icon != NULL)
2002 {
2003 if (oldicon == NULL
2004#ifdef FEAT_GUI
2005 && !gui.in_use
2006#endif
2007 ) /* first call, save icon */
2008 get_x11_icon(FALSE);
2009
2010 if (*T_CIS != NUL)
2011 {
2012 out_str(T_CIS); /* set icon start */
2013 out_str_nf(icon);
2014 out_str(T_CIE); /* set icon end */
2015 out_flush();
2016 }
2017#ifdef FEAT_X11
2018 else
2019# ifdef FEAT_GUI_GTK
2020 if (!gui.in_use) /* don't do this if GTK+ is running */
2021# endif
2022 set_x11_icon(icon); /* x11 */
2023#endif
2024 did_set_icon = TRUE;
2025 }
2026 --recursive;
2027}
2028
2029/*
2030 * Restore the window/icon title.
2031 * "which" is one of:
2032 * 1 only restore title
2033 * 2 only restore icon
2034 * 3 restore title and icon
2035 */
2036 void
2037mch_restore_title(which)
2038 int which;
2039{
2040 /* only restore the title or icon when it has been set */
2041 mch_settitle(((which & 1) && did_set_title) ?
2042 (oldtitle ? oldtitle : p_titleold) : NULL,
2043 ((which & 2) && did_set_icon) ? oldicon : NULL);
2044}
2045
2046#endif /* FEAT_TITLE */
2047
2048/*
2049 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002050 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 */
2052 int
2053vim_is_xterm(name)
2054 char_u *name;
2055{
2056 if (name == NULL)
2057 return FALSE;
2058 return (STRNICMP(name, "xterm", 5) == 0
2059 || STRNICMP(name, "nxterm", 6) == 0
2060 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002061 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 || STRNICMP(name, "rxvt", 4) == 0
2063 || STRCMP(name, "builtin_xterm") == 0);
2064}
2065
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002066#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2067/*
2068 * Return TRUE if "name" appears to be that of a terminal
2069 * known to support the xterm-style mouse protocol.
2070 * Relies on term_is_xterm having been set to its correct value.
2071 */
2072 int
2073use_xterm_like_mouse(name)
2074 char_u *name;
2075{
2076 return (name != NULL
2077 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2078}
2079#endif
2080
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2082/*
2083 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2084 * Return 1 for "xterm".
2085 * Return 2 for "xterm2".
2086 */
2087 int
2088use_xterm_mouse()
2089{
2090 if (ttym_flags == TTYM_XTERM2)
2091 return 2;
2092 if (ttym_flags == TTYM_XTERM)
2093 return 1;
2094 return 0;
2095}
2096#endif
2097
2098 int
2099vim_is_iris(name)
2100 char_u *name;
2101{
2102 if (name == NULL)
2103 return FALSE;
2104 return (STRNICMP(name, "iris-ansi", 9) == 0
2105 || STRCMP(name, "builtin_iris-ansi") == 0);
2106}
2107
2108 int
2109vim_is_vt300(name)
2110 char_u *name;
2111{
2112 if (name == NULL)
2113 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002114 /* catch VT100 - VT5xx */
2115 return ((STRNICMP(name, "vt", 2) == 0
2116 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 || STRCMP(name, "builtin_vt320") == 0);
2118}
2119
2120/*
2121 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2122 * This should include all windowed terminal emulators.
2123 */
2124 int
2125vim_is_fastterm(name)
2126 char_u *name;
2127{
2128 if (name == NULL)
2129 return FALSE;
2130 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2131 return TRUE;
2132 return ( STRNICMP(name, "hpterm", 6) == 0
2133 || STRNICMP(name, "sun-cmd", 7) == 0
2134 || STRNICMP(name, "screen", 6) == 0
2135 || STRNICMP(name, "dtterm", 6) == 0);
2136}
2137
2138/*
2139 * Insert user name in s[len].
2140 * Return OK if a name found.
2141 */
2142 int
2143mch_get_user_name(s, len)
2144 char_u *s;
2145 int len;
2146{
2147#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002148 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 return OK;
2150#else
2151 return mch_get_uname(getuid(), s, len);
2152#endif
2153}
2154
2155/*
2156 * Insert user name for "uid" in s[len].
2157 * Return OK if a name found.
2158 */
2159 int
2160mch_get_uname(uid, s, len)
2161 uid_t uid;
2162 char_u *s;
2163 int len;
2164{
2165#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2166 struct passwd *pw;
2167
2168 if ((pw = getpwuid(uid)) != NULL
2169 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2170 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002171 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 return OK;
2173 }
2174#endif
2175 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2176 return FAIL; /* a number is not a name */
2177}
2178
2179/*
2180 * Insert host name is s[len].
2181 */
2182
2183#ifdef HAVE_SYS_UTSNAME_H
2184 void
2185mch_get_host_name(s, len)
2186 char_u *s;
2187 int len;
2188{
2189 struct utsname vutsname;
2190
2191 if (uname(&vutsname) < 0)
2192 *s = NUL;
2193 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002194 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195}
2196#else /* HAVE_SYS_UTSNAME_H */
2197
2198# ifdef HAVE_SYS_SYSTEMINFO_H
2199# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2200# endif
2201
2202 void
2203mch_get_host_name(s, len)
2204 char_u *s;
2205 int len;
2206{
2207# ifdef VAXC
2208 vaxc$gethostname((char *)s, len);
2209# else
2210 gethostname((char *)s, len);
2211# endif
2212 s[len - 1] = NUL; /* make sure it's terminated */
2213}
2214#endif /* HAVE_SYS_UTSNAME_H */
2215
2216/*
2217 * return process ID
2218 */
2219 long
2220mch_get_pid()
2221{
2222 return (long)getpid();
2223}
2224
2225#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2226static char *strerror __ARGS((int));
2227
2228 static char *
2229strerror(err)
2230 int err;
2231{
2232 extern int sys_nerr;
2233 extern char *sys_errlist[];
2234 static char er[20];
2235
2236 if (err > 0 && err < sys_nerr)
2237 return (sys_errlist[err]);
2238 sprintf(er, "Error %d", err);
2239 return er;
2240}
2241#endif
2242
2243/*
2244 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2245 * Return OK for success, FAIL for failure.
2246 */
2247 int
2248mch_dirname(buf, len)
2249 char_u *buf;
2250 int len;
2251{
2252#if defined(USE_GETCWD)
2253 if (getcwd((char *)buf, len) == NULL)
2254 {
2255 STRCPY(buf, strerror(errno));
2256 return FAIL;
2257 }
2258 return OK;
2259#else
2260 return (getwd((char *)buf) != NULL ? OK : FAIL);
2261#endif
2262}
2263
2264#if defined(OS2) || defined(PROTO)
2265/*
2266 * Replace all slashes by backslashes.
2267 * When 'shellslash' set do it the other way around.
2268 */
2269 void
2270slash_adjust(p)
2271 char_u *p;
2272{
2273 while (*p)
2274 {
2275 if (*p == psepcN)
2276 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002277 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 }
2279}
2280#endif
2281
2282/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002283 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 *
2285 * return FAIL for failure, OK for success
2286 */
2287 int
2288mch_FullName(fname, buf, len, force)
2289 char_u *fname, *buf;
2290 int len;
2291 int force; /* also expand when already absolute path */
2292{
2293 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002294#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 int only_drive; /* file name is only a drive letter */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002296#endif
2297#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 int fd = -1;
2299 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 char_u olddir[MAXPATHL];
2302 char_u *p;
2303 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002304#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002305 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2306 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002307#endif
2308
Bram Moolenaar38323e42007-03-06 19:22:53 +00002309#ifdef VMS
2310 fname = vms_fixfilename(fname);
2311#endif
2312
Bram Moolenaara2442432007-04-26 14:26:37 +00002313#ifdef __CYGWIN__
2314 /*
2315 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2316 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002317# if CYGWIN_VERSION_DLL_MAJOR >= 1007
2318 cygwin_conv_path(CCP_WIN_A_TO_POSIX, fname, posix_fname, MAXPATHL);
2319# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002320 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002321# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002322 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002323#endif
2324
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 /* expand it if forced or not an absolute path */
2326 if (force || !mch_isFullName(fname))
2327 {
2328 /*
2329 * If the file name has a path, change to that directory for a moment,
2330 * and then do the getwd() (and get back to where we were).
2331 * This will get the correct path name with "../" things.
2332 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002333#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 only_drive = 0;
2335 if (((p = vim_strrchr(fname, '/')) != NULL)
2336 || ((p = vim_strrchr(fname, '\\')) != NULL)
2337 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
Bram Moolenaar38323e42007-03-06 19:22:53 +00002338#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 if ((p = vim_strrchr(fname, '/')) != NULL)
Bram Moolenaar38323e42007-03-06 19:22:53 +00002340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002342#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 /*
2344 * Use fchdir() if possible, it's said to be faster and more
2345 * reliable. But on SunOS 4 it might not work. Check this by
2346 * doing a fchdir() right now.
2347 */
2348 if (!dont_fchdir)
2349 {
2350 fd = open(".", O_RDONLY | O_EXTRA, 0);
2351 if (fd >= 0 && fchdir(fd) < 0)
2352 {
2353 close(fd);
2354 fd = -1;
2355 dont_fchdir = TRUE; /* don't try again */
2356 }
2357 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359
2360 /* Only change directory when we are sure we can return to where
2361 * we are now. After doing "su" chdir(".") might not work. */
2362 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002363#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 (mch_dirname(olddir, MAXPATHL) == FAIL
2367 || mch_chdir((char *)olddir) != 0))
2368 {
2369 p = NULL; /* can't get current dir: don't chdir */
2370 retval = FAIL;
2371 }
2372 else
2373 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002374#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 /*
2376 * compensate for case where ':' from "D:" was the only
2377 * path separator detected in the file name; the _next_
2378 * character has to be removed, and then restored later.
2379 */
2380 if (only_drive)
2381 p++;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002382#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 /* The directory is copied into buf[], to be able to remove
2384 * the file name without changing it (could be a string in
2385 * read-only memory) */
2386 if (p - fname >= len)
2387 retval = FAIL;
2388 else
2389 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002390 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 if (mch_chdir((char *)buf))
2392 retval = FAIL;
2393 else
2394 fname = p + 1;
2395 *buf = NUL;
2396 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002397#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 if (only_drive)
2399 {
2400 p--;
2401 if (retval != FAIL)
2402 fname--;
2403 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002404#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 }
2406 }
2407 if (mch_dirname(buf, len) == FAIL)
2408 {
2409 retval = FAIL;
2410 *buf = NUL;
2411 }
2412 if (p != NULL)
2413 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002414#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 if (fd >= 0)
2416 {
2417 l = fchdir(fd);
2418 close(fd);
2419 }
2420 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002421#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 l = mch_chdir((char *)olddir);
2423 if (l != 0)
2424 EMSG(_(e_prev_dir));
2425 }
2426
2427 l = STRLEN(buf);
2428 if (l >= len)
2429 retval = FAIL;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002430#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 else
2432 {
2433 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2434 && STRCMP(fname, ".") != 0)
2435 STRCAT(buf, "/");
2436 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002437#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002439
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 /* Catch file names which are too long. */
2441 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2442 return FAIL;
2443
2444 /* Do not append ".", "/dir/." is equal to "/dir". */
2445 if (STRCMP(fname, ".") != 0)
2446 STRCAT(buf, fname);
2447
2448 return OK;
2449}
2450
2451/*
2452 * Return TRUE if "fname" does not depend on the current directory.
2453 */
2454 int
2455mch_isFullName(fname)
2456 char_u *fname;
2457{
2458#ifdef __EMX__
2459 return _fnisabs(fname);
2460#else
2461# ifdef VMS
2462 return ( fname[0] == '/' || fname[0] == '.' ||
2463 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2464 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2465 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2466# else
2467 return (*fname == '/' || *fname == '~');
2468# endif
2469#endif
2470}
2471
Bram Moolenaar24552be2005-12-10 20:17:30 +00002472#if defined(USE_FNAME_CASE) || defined(PROTO)
2473/*
2474 * Set the case of the file name, if it already exists. This will cause the
2475 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002476 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002477 */
2478/*ARGSUSED*/
2479 void
2480fname_case(name, len)
2481 char_u *name;
2482 int len; /* buffer size, only used when name gets longer */
2483{
2484 struct stat st;
2485 char_u *slash, *tail;
2486 DIR *dirp;
2487 struct dirent *dp;
2488
2489 if (lstat((char *)name, &st) >= 0)
2490 {
2491 /* Open the directory where the file is located. */
2492 slash = vim_strrchr(name, '/');
2493 if (slash == NULL)
2494 {
2495 dirp = opendir(".");
2496 tail = name;
2497 }
2498 else
2499 {
2500 *slash = NUL;
2501 dirp = opendir((char *)name);
2502 *slash = '/';
2503 tail = slash + 1;
2504 }
2505
2506 if (dirp != NULL)
2507 {
2508 while ((dp = readdir(dirp)) != NULL)
2509 {
2510 /* Only accept names that differ in case and are the same byte
2511 * length. TODO: accept different length name. */
2512 if (STRICMP(tail, dp->d_name) == 0
2513 && STRLEN(tail) == STRLEN(dp->d_name))
2514 {
2515 char_u newname[MAXPATHL + 1];
2516 struct stat st2;
2517
2518 /* Verify the inode is equal. */
2519 vim_strncpy(newname, name, MAXPATHL);
2520 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2521 MAXPATHL - (tail - name));
2522 if (lstat((char *)newname, &st2) >= 0
2523 && st.st_ino == st2.st_ino
2524 && st.st_dev == st2.st_dev)
2525 {
2526 STRCPY(tail, dp->d_name);
2527 break;
2528 }
2529 }
2530 }
2531
2532 closedir(dirp);
2533 }
2534 }
2535}
2536#endif
2537
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538/*
2539 * Get file permissions for 'name'.
2540 * Returns -1 when it doesn't exist.
2541 */
2542 long
2543mch_getperm(name)
2544 char_u *name;
2545{
2546 struct stat statb;
2547
2548 /* Keep the #ifdef outside of stat(), it may be a macro. */
2549#ifdef VMS
2550 if (stat((char *)vms_fixfilename(name), &statb))
2551#else
2552 if (stat((char *)name, &statb))
2553#endif
2554 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002555#ifdef __INTERIX
2556 /* The top bit makes the value negative, which means the file doesn't
2557 * exist. Remove the bit, we don't use it. */
2558 return statb.st_mode & ~S_ADDACE;
2559#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562}
2563
2564/*
2565 * set file permission for 'name' to 'perm'
2566 *
2567 * return FAIL for failure, OK otherwise
2568 */
2569 int
2570mch_setperm(name, perm)
2571 char_u *name;
2572 long perm;
2573{
2574 return (chmod((char *)
2575#ifdef VMS
2576 vms_fixfilename(name),
2577#else
2578 name,
2579#endif
2580 (mode_t)perm) == 0 ? OK : FAIL);
2581}
2582
2583#if defined(HAVE_ACL) || defined(PROTO)
2584# ifdef HAVE_SYS_ACL_H
2585# include <sys/acl.h>
2586# endif
2587# ifdef HAVE_SYS_ACCESS_H
2588# include <sys/access.h>
2589# endif
2590
2591# ifdef HAVE_SOLARIS_ACL
2592typedef struct vim_acl_solaris_T {
2593 int acl_cnt;
2594 aclent_t *acl_entry;
2595} vim_acl_solaris_T;
2596# endif
2597
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002598#if defined(HAVE_SELINUX) || defined(PROTO)
2599/*
2600 * Copy security info from "from_file" to "to_file".
2601 */
2602 void
2603mch_copy_sec(from_file, to_file)
2604 char_u *from_file;
2605 char_u *to_file;
2606{
2607 if (from_file == NULL)
2608 return;
2609
2610 if (selinux_enabled == -1)
2611 selinux_enabled = is_selinux_enabled();
2612
2613 if (selinux_enabled > 0)
2614 {
2615 security_context_t from_context = NULL;
2616 security_context_t to_context = NULL;
2617
2618 if (getfilecon((char *)from_file, &from_context) < 0)
2619 {
2620 /* If the filesystem doesn't support extended attributes,
2621 the original had no special security context and the
2622 target cannot have one either. */
2623 if (errno == EOPNOTSUPP)
2624 return;
2625
2626 MSG_PUTS(_("\nCould not get security context for "));
2627 msg_outtrans(from_file);
2628 msg_putchar('\n');
2629 return;
2630 }
2631 if (getfilecon((char *)to_file, &to_context) < 0)
2632 {
2633 MSG_PUTS(_("\nCould not get security context for "));
2634 msg_outtrans(to_file);
2635 msg_putchar('\n');
2636 freecon (from_context);
2637 return ;
2638 }
2639 if (strcmp(from_context, to_context) != 0)
2640 {
2641 if (setfilecon((char *)to_file, from_context) < 0)
2642 {
2643 MSG_PUTS(_("\nCould not set security context for "));
2644 msg_outtrans(to_file);
2645 msg_putchar('\n');
2646 }
2647 }
2648 freecon(to_context);
2649 freecon(from_context);
2650 }
2651}
2652#endif /* HAVE_SELINUX */
2653
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654/*
2655 * Return a pointer to the ACL of file "fname" in allocated memory.
2656 * Return NULL if the ACL is not available for whatever reason.
2657 */
2658 vim_acl_T
2659mch_get_acl(fname)
2660 char_u *fname;
2661{
2662 vim_acl_T ret = NULL;
2663#ifdef HAVE_POSIX_ACL
2664 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2665#else
2666#ifdef HAVE_SOLARIS_ACL
2667 vim_acl_solaris_T *aclent;
2668
2669 aclent = malloc(sizeof(vim_acl_solaris_T));
2670 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2671 {
2672 free(aclent);
2673 return NULL;
2674 }
2675 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2676 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2677 {
2678 free(aclent->acl_entry);
2679 free(aclent);
2680 return NULL;
2681 }
2682 ret = (vim_acl_T)aclent;
2683#else
2684#if defined(HAVE_AIX_ACL)
2685 int aclsize;
2686 struct acl *aclent;
2687
2688 aclsize = sizeof(struct acl);
2689 aclent = malloc(aclsize);
2690 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2691 {
2692 if (errno == ENOSPC)
2693 {
2694 aclsize = aclent->acl_len;
2695 aclent = realloc(aclent, aclsize);
2696 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2697 {
2698 free(aclent);
2699 return NULL;
2700 }
2701 }
2702 else
2703 {
2704 free(aclent);
2705 return NULL;
2706 }
2707 }
2708 ret = (vim_acl_T)aclent;
2709#endif /* HAVE_AIX_ACL */
2710#endif /* HAVE_SOLARIS_ACL */
2711#endif /* HAVE_POSIX_ACL */
2712 return ret;
2713}
2714
2715/*
2716 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2717 */
2718 void
2719mch_set_acl(fname, aclent)
2720 char_u *fname;
2721 vim_acl_T aclent;
2722{
2723 if (aclent == NULL)
2724 return;
2725#ifdef HAVE_POSIX_ACL
2726 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2727#else
2728#ifdef HAVE_SOLARIS_ACL
2729 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2730 ((vim_acl_solaris_T *)aclent)->acl_entry);
2731#else
2732#ifdef HAVE_AIX_ACL
2733 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2734#endif /* HAVE_AIX_ACL */
2735#endif /* HAVE_SOLARIS_ACL */
2736#endif /* HAVE_POSIX_ACL */
2737}
2738
2739 void
2740mch_free_acl(aclent)
2741 vim_acl_T aclent;
2742{
2743 if (aclent == NULL)
2744 return;
2745#ifdef HAVE_POSIX_ACL
2746 acl_free((acl_t)aclent);
2747#else
2748#ifdef HAVE_SOLARIS_ACL
2749 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2750 free(aclent);
2751#else
2752#ifdef HAVE_AIX_ACL
2753 free(aclent);
2754#endif /* HAVE_AIX_ACL */
2755#endif /* HAVE_SOLARIS_ACL */
2756#endif /* HAVE_POSIX_ACL */
2757}
2758#endif
2759
2760/*
2761 * Set hidden flag for "name".
2762 */
2763/* ARGSUSED */
2764 void
2765mch_hide(name)
2766 char_u *name;
2767{
2768 /* can't hide a file */
2769}
2770
2771/*
2772 * return TRUE if "name" is a directory
2773 * return FALSE if "name" is not a directory
2774 * return FALSE for error
2775 */
2776 int
2777mch_isdir(name)
2778 char_u *name;
2779{
2780 struct stat statb;
2781
2782 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2783 return FALSE;
2784 if (stat((char *)name, &statb))
2785 return FALSE;
2786#ifdef _POSIX_SOURCE
2787 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2788#else
2789 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2790#endif
2791}
2792
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793static int executable_file __ARGS((char_u *name));
2794
2795/*
2796 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2797 */
2798 static int
2799executable_file(name)
2800 char_u *name;
2801{
2802 struct stat st;
2803
2804 if (stat((char *)name, &st))
2805 return 0;
2806 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2807}
2808
2809/*
2810 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2811 * Return -1 if unknown.
2812 */
2813 int
2814mch_can_exe(name)
2815 char_u *name;
2816{
2817 char_u *buf;
2818 char_u *p, *e;
2819 int retval;
2820
2821 /* If it's an absolute or relative path don't need to use $PATH. */
2822 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2823 || (name[1] == '.' && name[2] == '/'))))
2824 return executable_file(name);
2825
2826 p = (char_u *)getenv("PATH");
2827 if (p == NULL || *p == NUL)
2828 return -1;
2829 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2830 if (buf == NULL)
2831 return -1;
2832
2833 /*
2834 * Walk through all entries in $PATH to check if "name" exists there and
2835 * is an executable file.
2836 */
2837 for (;;)
2838 {
2839 e = (char_u *)strchr((char *)p, ':');
2840 if (e == NULL)
2841 e = p + STRLEN(p);
2842 if (e - p <= 1) /* empty entry means current dir */
2843 STRCPY(buf, "./");
2844 else
2845 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002846 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 add_pathsep(buf);
2848 }
2849 STRCAT(buf, name);
2850 retval = executable_file(buf);
2851 if (retval == 1)
2852 break;
2853
2854 if (*e != ':')
2855 break;
2856 p = e + 1;
2857 }
2858
2859 vim_free(buf);
2860 return retval;
2861}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862
2863/*
2864 * Check what "name" is:
2865 * NODE_NORMAL: file or directory (or doesn't exist)
2866 * NODE_WRITABLE: writable device, socket, fifo, etc.
2867 * NODE_OTHER: non-writable things
2868 */
2869 int
2870mch_nodetype(name)
2871 char_u *name;
2872{
2873 struct stat st;
2874
2875 if (stat((char *)name, &st))
2876 return NODE_NORMAL;
2877 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2878 return NODE_NORMAL;
2879#ifndef OS2
2880 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2881 return NODE_OTHER;
2882#endif
2883 /* Everything else is writable? */
2884 return NODE_WRITABLE;
2885}
2886
2887 void
2888mch_early_init()
2889{
2890#ifdef HAVE_CHECK_STACK_GROWTH
2891 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 check_stack_growth((char *)&i);
2894
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002895# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 get_stack_limit();
2897# endif
2898
2899#endif
2900
2901 /*
2902 * Setup an alternative stack for signals. Helps to catch signals when
2903 * running out of stack space.
2904 * Use of sigaltstack() is preferred, it's more portable.
2905 * Ignore any errors.
2906 */
2907#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00002908 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 init_signal_stack();
2910#endif
2911}
2912
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002913#if defined(EXITFREE) || defined(PROTO)
2914 void
2915mch_free_mem()
2916{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002917# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2918 if (clip_star.owned)
2919 clip_lose_selection(&clip_star);
2920 if (clip_plus.owned)
2921 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002922# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00002923# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002924 if (xterm_Shell != (Widget)0)
2925 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00002926# ifndef LESSTIF_VERSION
2927 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002928 if (xterm_dpy != NULL)
2929 XtCloseDisplay(xterm_dpy);
2930 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00002931 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002932 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00002933# ifdef FEAT_X11
2934 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2935# endif
2936 }
2937# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002938# endif
Bram Moolenaara8785102008-11-12 13:10:15 +00002939 /* Don't close the display for GTK 1, it is done in exit(). */
2940# if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
Bram Moolenaare8208012008-06-20 09:59:25 +00002941 if (x11_display != NULL
2942# ifdef FEAT_XCLIPBOARD
2943 && x11_display != xterm_dpy
2944# endif
2945 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002946 XCloseDisplay(x11_display);
2947# endif
2948# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2949 vim_free(signal_stack);
2950 signal_stack = NULL;
2951# endif
2952# ifdef FEAT_TITLE
2953 vim_free(oldtitle);
2954 vim_free(oldicon);
2955# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002956}
2957#endif
2958
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959static void exit_scroll __ARGS((void));
2960
2961/*
2962 * Output a newline when exiting.
2963 * Make sure the newline goes to the same stream as the text.
2964 */
2965 static void
2966exit_scroll()
2967{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002968 if (silent_mode)
2969 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 if (newline_on_exit || msg_didout)
2971 {
2972 if (msg_use_printf())
2973 {
2974 if (info_message)
2975 mch_msg("\n");
2976 else
2977 mch_errmsg("\r\n");
2978 }
2979 else
2980 out_char('\n');
2981 }
2982 else
2983 {
2984 restore_cterm_colors(); /* get original colors back */
2985 msg_clr_eos_force(); /* clear the rest of the display */
2986 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2987 }
2988}
2989
2990 void
2991mch_exit(r)
2992 int r;
2993{
2994 exiting = TRUE;
2995
2996#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
2997 x11_export_final_selection();
2998#endif
2999
3000#ifdef FEAT_GUI
3001 if (!gui.in_use)
3002#endif
3003 {
3004 settmode(TMODE_COOK);
3005#ifdef FEAT_TITLE
3006 mch_restore_title(3); /* restore xterm title and icon name */
3007#endif
3008 /*
3009 * When t_ti is not empty but it doesn't cause swapping terminal
3010 * pages, need to output a newline when msg_didout is set. But when
3011 * t_ti does swap pages it should not go to the shell page. Do this
3012 * before stoptermcap().
3013 */
3014 if (swapping_screen() && !newline_on_exit)
3015 exit_scroll();
3016
3017 /* Stop termcap: May need to check for T_CRV response, which
3018 * requires RAW mode. */
3019 stoptermcap();
3020
3021 /*
3022 * A newline is only required after a message in the alternate screen.
3023 * This is set to TRUE by wait_return().
3024 */
3025 if (!swapping_screen() || newline_on_exit)
3026 exit_scroll();
3027
3028 /* Cursor may have been switched off without calling starttermcap()
3029 * when doing "vim -u vimrc" and vimrc contains ":q". */
3030 if (full_screen)
3031 cursor_on();
3032 }
3033 out_flush();
3034 ml_close_all(TRUE); /* remove all memfiles */
3035 may_core_dump();
3036#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 gui_exit(r);
3039#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003040
Bram Moolenaar56718732006-03-15 22:53:57 +00003041#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003042 mac_conv_cleanup();
3043#endif
3044
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045#ifdef __QNX__
3046 /* A core dump won't be created if the signal handler
3047 * doesn't return, so we can't call exit() */
3048 if (deadly_signal != 0)
3049 return;
3050#endif
3051
Bram Moolenaar009b2592004-10-24 19:18:58 +00003052#ifdef FEAT_NETBEANS_INTG
3053 if (usingNetbeans)
3054 netbeans_send_disconnect();
3055#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003056
3057#ifdef EXITFREE
3058 free_all_mem();
3059#endif
3060
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 exit(r);
3062}
3063
3064 static void
3065may_core_dump()
3066{
3067 if (deadly_signal != 0)
3068 {
3069 signal(deadly_signal, SIG_DFL);
3070 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3071 }
3072}
3073
3074#ifndef VMS
3075
3076 void
3077mch_settmode(tmode)
3078 int tmode;
3079{
3080 static int first = TRUE;
3081
3082 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3083#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3084 /*
3085 * for "new" tty systems
3086 */
3087# ifdef HAVE_TERMIOS_H
3088 static struct termios told;
3089 struct termios tnew;
3090# else
3091 static struct termio told;
3092 struct termio tnew;
3093# endif
3094
3095 if (first)
3096 {
3097 first = FALSE;
3098# if defined(HAVE_TERMIOS_H)
3099 tcgetattr(read_cmd_fd, &told);
3100# else
3101 ioctl(read_cmd_fd, TCGETA, &told);
3102# endif
3103 }
3104
3105 tnew = told;
3106 if (tmode == TMODE_RAW)
3107 {
3108 /*
3109 * ~ICRNL enables typing ^V^M
3110 */
3111 tnew.c_iflag &= ~ICRNL;
3112 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3113# if defined(IEXTEN) && !defined(__MINT__)
3114 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3115 /* but it breaks function keys on MINT */
3116# endif
3117 );
3118# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3119 tnew.c_oflag &= ~ONLCR;
3120# endif
3121 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3122 tnew.c_cc[VTIME] = 0; /* don't wait */
3123 }
3124 else if (tmode == TMODE_SLEEP)
3125 tnew.c_lflag &= ~(ECHO);
3126
3127# if defined(HAVE_TERMIOS_H)
3128 {
3129 int n = 10;
3130
3131 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3132 * few times. */
3133 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3134 && errno == EINTR && n > 0)
3135 --n;
3136 }
3137# else
3138 ioctl(read_cmd_fd, TCSETA, &tnew);
3139# endif
3140
3141#else
3142
3143 /*
3144 * for "old" tty systems
3145 */
3146# ifndef TIOCSETN
3147# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3148# endif
3149 static struct sgttyb ttybold;
3150 struct sgttyb ttybnew;
3151
3152 if (first)
3153 {
3154 first = FALSE;
3155 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3156 }
3157
3158 ttybnew = ttybold;
3159 if (tmode == TMODE_RAW)
3160 {
3161 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3162 ttybnew.sg_flags |= RAW;
3163 }
3164 else if (tmode == TMODE_SLEEP)
3165 ttybnew.sg_flags &= ~(ECHO);
3166 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3167#endif
3168 curr_tmode = tmode;
3169}
3170
3171/*
3172 * Try to get the code for "t_kb" from the stty setting
3173 *
3174 * Even if termcap claims a backspace key, the user's setting *should*
3175 * prevail. stty knows more about reality than termcap does, and if
3176 * somebody's usual erase key is DEL (which, for most BSD users, it will
3177 * be), they're going to get really annoyed if their erase key starts
3178 * doing forward deletes for no reason. (Eric Fischer)
3179 */
3180 void
3181get_stty()
3182{
3183 char_u buf[2];
3184 char_u *p;
3185
3186 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3187#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3188 /* for "new" tty systems */
3189# ifdef HAVE_TERMIOS_H
3190 struct termios keys;
3191# else
3192 struct termio keys;
3193# endif
3194
3195# if defined(HAVE_TERMIOS_H)
3196 if (tcgetattr(read_cmd_fd, &keys) != -1)
3197# else
3198 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3199# endif
3200 {
3201 buf[0] = keys.c_cc[VERASE];
3202 intr_char = keys.c_cc[VINTR];
3203#else
3204 /* for "old" tty systems */
3205 struct sgttyb keys;
3206
3207 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3208 {
3209 buf[0] = keys.sg_erase;
3210 intr_char = keys.sg_kill;
3211#endif
3212 buf[1] = NUL;
3213 add_termcode((char_u *)"kb", buf, FALSE);
3214
3215 /*
3216 * If <BS> and <DEL> are now the same, redefine <DEL>.
3217 */
3218 p = find_termcode((char_u *)"kD");
3219 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3220 do_fixdel(NULL);
3221 }
3222#if 0
3223 } /* to keep cindent happy */
3224#endif
3225}
3226
3227#endif /* VMS */
3228
3229#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3230/*
3231 * Set mouse clicks on or off.
3232 */
3233 void
3234mch_setmouse(on)
3235 int on;
3236{
3237 static int ison = FALSE;
3238 int xterm_mouse_vers;
3239
3240 if (on == ison) /* return quickly if nothing to do */
3241 return;
3242
3243 xterm_mouse_vers = use_xterm_mouse();
3244 if (xterm_mouse_vers > 0)
3245 {
3246 if (on) /* enable mouse events, use mouse tracking if available */
3247 out_str_nf((char_u *)
3248 (xterm_mouse_vers > 1
3249 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3250 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3251 else /* disable mouse events, could probably always send the same */
3252 out_str_nf((char_u *)
3253 (xterm_mouse_vers > 1
3254 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3255 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3256 ison = on;
3257 }
3258
3259# ifdef FEAT_MOUSE_DEC
3260 else if (ttym_flags == TTYM_DEC)
3261 {
3262 if (on) /* enable mouse events */
3263 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3264 else /* disable mouse events */
3265 out_str_nf((char_u *)"\033['z");
3266 ison = on;
3267 }
3268# endif
3269
3270# ifdef FEAT_MOUSE_GPM
3271 else
3272 {
3273 if (on)
3274 {
3275 if (gpm_open())
3276 ison = TRUE;
3277 }
3278 else
3279 {
3280 gpm_close();
3281 ison = FALSE;
3282 }
3283 }
3284# endif
3285
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003286# ifdef FEAT_SYSMOUSE
3287 else
3288 {
3289 if (on)
3290 {
3291 if (sysmouse_open() == OK)
3292 ison = TRUE;
3293 }
3294 else
3295 {
3296 sysmouse_close();
3297 ison = FALSE;
3298 }
3299 }
3300# endif
3301
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302# ifdef FEAT_MOUSE_JSB
3303 else
3304 {
3305 if (on)
3306 {
3307 /* D - Enable Mouse up/down messages
3308 * L - Enable Left Button Reporting
3309 * M - Enable Middle Button Reporting
3310 * R - Enable Right Button Reporting
3311 * K - Enable SHIFT and CTRL key Reporting
3312 * + - Enable Advanced messaging of mouse moves and up/down messages
3313 * Q - Quiet No Ack
3314 * # - Numeric value of mouse pointer required
3315 * 0 = Multiview 2000 cursor, used as standard
3316 * 1 = Windows Arrow
3317 * 2 = Windows I Beam
3318 * 3 = Windows Hour Glass
3319 * 4 = Windows Cross Hair
3320 * 5 = Windows UP Arrow
3321 */
3322#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3323 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3324 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3325#else
3326 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3327 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3328#endif
3329 ison = TRUE;
3330 }
3331 else
3332 {
3333 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3334 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3335 ison = FALSE;
3336 }
3337 }
3338# endif
3339# ifdef FEAT_MOUSE_PTERM
3340 else
3341 {
3342 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3343 if (on)
3344 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3345 else
3346 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3347 ison = on;
3348 }
3349# endif
3350}
3351
3352/*
3353 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3354 */
3355 void
3356check_mouse_termcode()
3357{
3358# ifdef FEAT_MOUSE_XTERM
3359 if (use_xterm_mouse()
3360# ifdef FEAT_GUI
3361 && !gui.in_use
3362# endif
3363 )
3364 {
3365 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003366 ? IF_EB("\233M", CSI_STR "M")
3367 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 if (*p_mouse != NUL)
3369 {
3370 /* force mouse off and maybe on to send possibly new mouse
3371 * activation sequence to the xterm, with(out) drag tracing. */
3372 mch_setmouse(FALSE);
3373 setmouse();
3374 }
3375 }
3376 else
3377 del_mouse_termcode(KS_MOUSE);
3378# endif
3379
3380# ifdef FEAT_MOUSE_GPM
3381 if (!use_xterm_mouse()
3382# ifdef FEAT_GUI
3383 && !gui.in_use
3384# endif
3385 )
3386 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3387# endif
3388
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003389# ifdef FEAT_SYSMOUSE
3390 if (!use_xterm_mouse()
3391# ifdef FEAT_GUI
3392 && !gui.in_use
3393# endif
3394 )
3395 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3396# endif
3397
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398# ifdef FEAT_MOUSE_JSB
3399 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3400 if (!use_xterm_mouse()
3401# ifdef FEAT_GUI
3402 && !gui.in_use
3403# endif
3404 )
3405 set_mouse_termcode(KS_JSBTERM_MOUSE,
3406 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3407 else
3408 del_mouse_termcode(KS_JSBTERM_MOUSE);
3409# endif
3410
3411# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003412 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 * define it in the GUI or when using an xterm. */
3414 if (!use_xterm_mouse()
3415# ifdef FEAT_GUI
3416 && !gui.in_use
3417# endif
3418 )
3419 set_mouse_termcode(KS_NETTERM_MOUSE,
3420 (char_u *)IF_EB("\033}", ESC_STR "}"));
3421 else
3422 del_mouse_termcode(KS_NETTERM_MOUSE);
3423# endif
3424
3425# ifdef FEAT_MOUSE_DEC
3426 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3427 if (!use_xterm_mouse()
3428# ifdef FEAT_GUI
3429 && !gui.in_use
3430# endif
3431 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003432 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3433 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 else
3435 del_mouse_termcode(KS_DEC_MOUSE);
3436# endif
3437# ifdef FEAT_MOUSE_PTERM
3438 /* same as the dec mouse */
3439 if (!use_xterm_mouse()
3440# ifdef FEAT_GUI
3441 && !gui.in_use
3442# endif
3443 )
3444 set_mouse_termcode(KS_PTERM_MOUSE,
3445 (char_u *) IF_EB("\033[", ESC_STR "["));
3446 else
3447 del_mouse_termcode(KS_PTERM_MOUSE);
3448# endif
3449}
3450#endif
3451
3452/*
3453 * set screen mode, always fails.
3454 */
3455/* ARGSUSED */
3456 int
3457mch_screenmode(arg)
3458 char_u *arg;
3459{
3460 EMSG(_(e_screenmode));
3461 return FAIL;
3462}
3463
3464#ifndef VMS
3465
3466/*
3467 * Try to get the current window size:
3468 * 1. with an ioctl(), most accurate method
3469 * 2. from the environment variables LINES and COLUMNS
3470 * 3. from the termcap
3471 * 4. keep using the old values
3472 * Return OK when size could be determined, FAIL otherwise.
3473 */
3474 int
3475mch_get_shellsize()
3476{
3477 long rows = 0;
3478 long columns = 0;
3479 char_u *p;
3480
3481 /*
3482 * For OS/2 use _scrsize().
3483 */
3484# ifdef __EMX__
3485 {
3486 int s[2];
3487
3488 _scrsize(s);
3489 columns = s[0];
3490 rows = s[1];
3491 }
3492# endif
3493
3494 /*
3495 * 1. try using an ioctl. It is the most accurate method.
3496 *
3497 * Try using TIOCGWINSZ first, some systems that have it also define
3498 * TIOCGSIZE but don't have a struct ttysize.
3499 */
3500# ifdef TIOCGWINSZ
3501 {
3502 struct winsize ws;
3503 int fd = 1;
3504
3505 /* When stdout is not a tty, use stdin for the ioctl(). */
3506 if (!isatty(fd) && isatty(read_cmd_fd))
3507 fd = read_cmd_fd;
3508 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3509 {
3510 columns = ws.ws_col;
3511 rows = ws.ws_row;
3512 }
3513 }
3514# else /* TIOCGWINSZ */
3515# ifdef TIOCGSIZE
3516 {
3517 struct ttysize ts;
3518 int fd = 1;
3519
3520 /* When stdout is not a tty, use stdin for the ioctl(). */
3521 if (!isatty(fd) && isatty(read_cmd_fd))
3522 fd = read_cmd_fd;
3523 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3524 {
3525 columns = ts.ts_cols;
3526 rows = ts.ts_lines;
3527 }
3528 }
3529# endif /* TIOCGSIZE */
3530# endif /* TIOCGWINSZ */
3531
3532 /*
3533 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003534 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3535 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003537 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 {
3539 if ((p = (char_u *)getenv("LINES")))
3540 rows = atoi((char *)p);
3541 if ((p = (char_u *)getenv("COLUMNS")))
3542 columns = atoi((char *)p);
3543 }
3544
3545#ifdef HAVE_TGETENT
3546 /*
3547 * 3. try reading "co" and "li" entries from termcap
3548 */
3549 if (columns == 0 || rows == 0)
3550 getlinecol(&columns, &rows);
3551#endif
3552
3553 /*
3554 * 4. If everything fails, use the old values
3555 */
3556 if (columns <= 0 || rows <= 0)
3557 return FAIL;
3558
3559 Rows = rows;
3560 Columns = columns;
3561 return OK;
3562}
3563
3564/*
3565 * Try to set the window size to Rows and Columns.
3566 */
3567 void
3568mch_set_shellsize()
3569{
3570 if (*T_CWS)
3571 {
3572 /*
3573 * NOTE: if you get an error here that term_set_winsize() is
3574 * undefined, check the output of configure. It could probably not
3575 * find a ncurses, termcap or termlib library.
3576 */
3577 term_set_winsize((int)Rows, (int)Columns);
3578 out_flush();
3579 screen_start(); /* don't know where cursor is now */
3580 }
3581}
3582
3583#endif /* VMS */
3584
3585/*
3586 * Rows and/or Columns has changed.
3587 */
3588 void
3589mch_new_shellsize()
3590{
3591 /* Nothing to do. */
3592}
3593
Bram Moolenaardf177f62005-02-22 08:39:57 +00003594#ifndef USE_SYSTEM
3595static void append_ga_line __ARGS((garray_T *gap));
3596
3597/*
3598 * Append the text in "gap" below the cursor line and clear "gap".
3599 */
3600 static void
3601append_ga_line(gap)
3602 garray_T *gap;
3603{
3604 /* Remove trailing CR. */
3605 if (gap->ga_len > 0
3606 && !curbuf->b_p_bin
3607 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3608 --gap->ga_len;
3609 ga_append(gap, NUL);
3610 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3611 gap->ga_len = 0;
3612}
3613#endif
3614
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 int
3616mch_call_shell(cmd, options)
3617 char_u *cmd;
3618 int options; /* SHELL_*, see vim.h */
3619{
3620#ifdef VMS
3621 char *ifn = NULL;
3622 char *ofn = NULL;
3623#endif
3624 int tmode = cur_tmode;
3625#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3626 int x;
3627# ifndef __EMX__
3628 char_u *newcmd; /* only needed for unix */
3629# else
3630 /*
3631 * Set the preferred shell in the EMXSHELL environment variable (but
3632 * only if it is different from what is already in the environment).
3633 * Emx then takes care of whether to use "/c" or "-c" in an
3634 * intelligent way. Simply pass the whole thing to emx's system() call.
3635 * Emx also starts an interactive shell if system() is passed an empty
3636 * string.
3637 */
3638 char_u *p, *old;
3639
3640 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3641 {
3642 /* should check HAVE_SETENV, but I know we don't have it. */
3643 p = alloc(10 + strlen(p_sh));
3644 if (p)
3645 {
3646 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3647 putenv((char *)p); /* don't free the pointer! */
3648 }
3649 }
3650# endif
3651
3652 out_flush();
3653
3654 if (options & SHELL_COOKED)
3655 settmode(TMODE_COOK); /* set to normal mode */
3656
3657# ifdef __EMX__
3658 if (cmd == NULL)
3659 x = system(""); /* this starts an interactive shell in emx */
3660 else
3661 x = system((char *)cmd);
3662 /* system() returns -1 when error occurs in starting shell */
3663 if (x == -1 && !emsg_silent)
3664 {
3665 MSG_PUTS(_("\nCannot execute shell "));
3666 msg_outtrans(p_sh);
3667 msg_putchar('\n');
3668 }
3669# else /* not __EMX__ */
3670 if (cmd == NULL)
3671 x = system((char *)p_sh);
3672 else
3673 {
3674# ifdef VMS
3675 if (ofn = strchr((char *)cmd, '>'))
3676 *ofn++ = '\0';
3677 if (ifn = strchr((char *)cmd, '<'))
3678 {
3679 char *p;
3680
3681 *ifn++ = '\0';
3682 p = strchr(ifn,' '); /* chop off any trailing spaces */
3683 if (p)
3684 *p = '\0';
3685 }
3686 if (ofn)
3687 x = vms_sys((char *)cmd, ofn, ifn);
3688 else
3689 x = system((char *)cmd);
3690# else
3691 newcmd = lalloc(STRLEN(p_sh)
3692 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3693 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3694 if (newcmd == NULL)
3695 x = 0;
3696 else
3697 {
3698 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3699 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3700 (char *)p_shcf,
3701 (char *)cmd);
3702 x = system((char *)newcmd);
3703 vim_free(newcmd);
3704 }
3705# endif
3706 }
3707# ifdef VMS
3708 x = vms_sys_status(x);
3709# endif
3710 if (emsg_silent)
3711 ;
3712 else if (x == 127)
3713 MSG_PUTS(_("\nCannot execute shell sh\n"));
3714# endif /* __EMX__ */
3715 else if (x && !(options & SHELL_SILENT))
3716 {
3717 MSG_PUTS(_("\nshell returned "));
3718 msg_outnum((long)x);
3719 msg_putchar('\n');
3720 }
3721
3722 if (tmode == TMODE_RAW)
3723 settmode(TMODE_RAW); /* set to raw mode */
3724# ifdef FEAT_TITLE
3725 resettitle();
3726# endif
3727 return x;
3728
3729#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3730
Bram Moolenaardf177f62005-02-22 08:39:57 +00003731# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3732 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733
3734 char_u *newcmd = NULL;
3735 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003736 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 pid_t wait_pid = 0;
3738# ifdef HAVE_UNION_WAIT
3739 union wait status;
3740# else
3741 int status = -1;
3742# endif
3743 int retval = -1;
3744 char **argv = NULL;
3745 int argc;
3746 int i;
3747 char_u *p;
3748 int inquote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003750# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 int pty_slave_fd = -1;
3752 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003753# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003754 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 int fd_fromshell[2];
3756 int pipe_error = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003757# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 char envbuf[50];
Bram Moolenaardf177f62005-02-22 08:39:57 +00003759# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 static char envbuf_Rows[20];
3761 static char envbuf_Columns[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003763 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764
3765 out_flush();
3766 if (options & SHELL_COOKED)
3767 settmode(TMODE_COOK); /* set to normal mode */
3768
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 newcmd = vim_strsave(p_sh);
3770 if (newcmd == NULL) /* out of memory */
3771 goto error;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003772
3773 /*
3774 * Do this loop twice:
3775 * 1: find number of arguments
3776 * 2: separate them and build argv[]
3777 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 for (i = 0; i < 2; ++i)
3779 {
3780 p = newcmd;
3781 inquote = FALSE;
3782 argc = 0;
3783 for (;;)
3784 {
3785 if (i == 1)
3786 argv[argc] = (char *)p;
3787 ++argc;
3788 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3789 {
3790 if (*p == '"')
3791 inquote = !inquote;
3792 ++p;
3793 }
3794 if (*p == NUL)
3795 break;
3796 if (i == 1)
3797 *p++ = NUL;
3798 p = skipwhite(p);
3799 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003800 if (argv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 {
3802 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3803 if (argv == NULL) /* out of memory */
3804 goto error;
3805 }
3806 }
3807 if (cmd != NULL)
3808 {
3809 if (extra_shell_arg != NULL)
3810 argv[argc++] = (char *)extra_shell_arg;
3811 argv[argc++] = (char *)p_shcf;
3812 argv[argc++] = (char *)cmd;
3813 }
3814 argv[argc] = NULL;
3815
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003817 * For the GUI, when writing the output into the buffer and when reading
3818 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3819 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003821 if ((options & (SHELL_READ|SHELL_WRITE))
3822# ifdef FEAT_GUI
3823 || (gui.in_use && show_shell_mess)
3824# endif
3825 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003827# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 /*
3829 * Try to open a master pty.
3830 * If this works, open the slave pty.
3831 * If the slave can't be opened, close the master pty.
3832 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003833 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 {
3835 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3836 if (pty_master_fd >= 0 && ((pty_slave_fd =
3837 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3838 {
3839 close(pty_master_fd);
3840 pty_master_fd = -1;
3841 }
3842 }
3843 /*
3844 * If not opening a pty or it didn't work, try using pipes.
3845 */
3846 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003847# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 {
3849 pipe_error = (pipe(fd_toshell) < 0);
3850 if (!pipe_error) /* pipe create OK */
3851 {
3852 pipe_error = (pipe(fd_fromshell) < 0);
3853 if (pipe_error) /* pipe create failed */
3854 {
3855 close(fd_toshell[0]);
3856 close(fd_toshell[1]);
3857 }
3858 }
3859 if (pipe_error)
3860 {
3861 MSG_PUTS(_("\nCannot create pipes\n"));
3862 out_flush();
3863 }
3864 }
3865 }
3866
3867 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 {
3869# ifdef __BEOS__
3870 beos_cleanup_read_thread();
3871# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003872
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3874 {
3875 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00003876 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003878 || (gui.in_use && show_shell_mess)
3879# endif
3880 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003882# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 if (pty_master_fd >= 0) /* close the pseudo tty */
3884 {
3885 close(pty_master_fd);
3886 close(pty_slave_fd);
3887 }
3888 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003889# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 {
3891 close(fd_toshell[0]);
3892 close(fd_toshell[1]);
3893 close(fd_fromshell[0]);
3894 close(fd_fromshell[1]);
3895 }
3896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 }
3898 else if (pid == 0) /* child */
3899 {
3900 reset_signals(); /* handle signals normally */
3901
3902 if (!show_shell_mess || (options & SHELL_EXPAND))
3903 {
3904 int fd;
3905
3906 /*
3907 * Don't want to show any message from the shell. Can't just
3908 * close stdout and stderr though, because some systems will
3909 * break if you try to write to them after that, so we must
3910 * use dup() to replace them with something else -- webb
3911 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3912 * waiting for input.
3913 */
3914 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3915 fclose(stdin);
3916 fclose(stdout);
3917 fclose(stderr);
3918
3919 /*
3920 * If any of these open()'s and dup()'s fail, we just continue
3921 * anyway. It's not fatal, and on most systems it will make
3922 * no difference at all. On a few it will cause the execvp()
3923 * to exit with a non-zero status even when the completion
3924 * could be done, which is nothing too serious. If the open()
3925 * or dup() failed we'd just do the same thing ourselves
3926 * anyway -- webb
3927 */
3928 if (fd >= 0)
3929 {
3930 dup(fd); /* To replace stdin (file descriptor 0) */
3931 dup(fd); /* To replace stdout (file descriptor 1) */
3932 dup(fd); /* To replace stderr (file descriptor 2) */
3933
3934 /* Don't need this now that we've duplicated it */
3935 close(fd);
3936 }
3937 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003938 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003940 || gui.in_use
3941# endif
3942 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 {
3944
Bram Moolenaardf177f62005-02-22 08:39:57 +00003945# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003946 /* Create our own process group, so that the child and all its
3947 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003948 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003949 if (p_stmp)
3950 (void)setsid();
Bram Moolenaardf177f62005-02-22 08:39:57 +00003951# endif
3952# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003953 if (pty_slave_fd >= 0)
3954 {
3955 /* push stream discipline modules */
3956 if (options & SHELL_COOKED)
3957 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003959 /* Try to become controlling tty (probably doesn't work,
3960 * unless run by root) */
3961 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003963 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003964# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 /* Simulate to have a dumb terminal (for now) */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003966# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 setenv("TERM", "dumb", 1);
3968 sprintf((char *)envbuf, "%ld", Rows);
3969 setenv("ROWS", (char *)envbuf, 1);
3970 sprintf((char *)envbuf, "%ld", Rows);
3971 setenv("LINES", (char *)envbuf, 1);
3972 sprintf((char *)envbuf, "%ld", Columns);
3973 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003974# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 /*
3976 * Putenv does not copy the string, it has to remain valid.
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003977 * Use a static array to avoid losing allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 */
3979 putenv("TERM=dumb");
3980 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3981 putenv(envbuf_Rows);
3982 sprintf(envbuf_Rows, "LINES=%ld", Rows);
3983 putenv(envbuf_Rows);
3984 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
3985 putenv(envbuf_Columns);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003986# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987
Bram Moolenaara5792f52005-11-23 21:25:05 +00003988 /*
3989 * stderr is only redirected when using the GUI, so that a
3990 * program like gpg can still access the terminal to get a
3991 * passphrase using stderr.
3992 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003993# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 if (pty_master_fd >= 0)
3995 {
3996 close(pty_master_fd); /* close master side of pty */
3997
3998 /* set up stdin/stdout/stderr for the child */
3999 close(0);
4000 dup(pty_slave_fd);
4001 close(1);
4002 dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004003 if (gui.in_use)
4004 {
4005 close(2);
4006 dup(pty_slave_fd);
4007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008
4009 close(pty_slave_fd); /* has been dupped, close it now */
4010 }
4011 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004012# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 {
4014 /* set up stdin for the child */
4015 close(fd_toshell[1]);
4016 close(0);
4017 dup(fd_toshell[0]);
4018 close(fd_toshell[0]);
4019
4020 /* set up stdout for the child */
4021 close(fd_fromshell[0]);
4022 close(1);
4023 dup(fd_fromshell[1]);
4024 close(fd_fromshell[1]);
4025
Bram Moolenaara5792f52005-11-23 21:25:05 +00004026# ifdef FEAT_GUI
4027 if (gui.in_use)
4028 {
4029 /* set up stderr for the child */
4030 close(2);
4031 dup(1);
4032 }
4033# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 }
4035 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004036
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 /*
4038 * There is no type cast for the argv, because the type may be
4039 * different on different machines. This may cause a warning
4040 * message with strict compilers, don't worry about it.
4041 * Call _exit() instead of exit() to avoid closing the connection
4042 * to the X server (esp. with GTK, which uses atexit()).
4043 */
4044 execvp(argv[0], argv);
4045 _exit(EXEC_FAILED); /* exec failed, return failure code */
4046 }
4047 else /* parent */
4048 {
4049 /*
4050 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004051 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 */
4053 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004054 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055
4056 /*
4057 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004058 * This is also used to pipe stdin/stdout to/from the external
4059 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004061 if ((options & (SHELL_READ|SHELL_WRITE))
4062# ifdef FEAT_GUI
4063 || (gui.in_use && show_shell_mess)
4064# endif
4065 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004067# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004069# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004071# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4073 int ta_len = 0; /* valid bytes in ta_buf[] */
4074 int len;
4075 int p_more_save;
4076 int old_State;
4077 int c;
4078 int toshell_fd;
4079 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004080 garray_T ga;
4081 int noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082
Bram Moolenaardf177f62005-02-22 08:39:57 +00004083# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 if (pty_master_fd >= 0)
4085 {
4086 close(pty_slave_fd); /* close slave side of pty */
4087 fromshell_fd = pty_master_fd;
4088 toshell_fd = dup(pty_master_fd);
4089 }
4090 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004091# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 {
4093 close(fd_toshell[0]);
4094 close(fd_fromshell[1]);
4095 toshell_fd = fd_toshell[1];
4096 fromshell_fd = fd_fromshell[0];
4097 }
4098
4099 /*
4100 * Write to the child if there are typed characters.
4101 * Read from the child if there are characters available.
4102 * Repeat the reading a few times if more characters are
4103 * available. Need to check for typed keys now and then, but
4104 * not too often (delays when no chars are available).
4105 * This loop is quit if no characters can be read from the pty
4106 * (WaitForChar detected special condition), or there are no
4107 * characters available and the child has exited.
4108 * Only check if the child has exited when there is no more
4109 * output. The child may exit before all the output has
4110 * been printed.
4111 *
4112 * Currently this busy loops!
4113 * This can probably dead-lock when the write blocks!
4114 */
4115 p_more_save = p_more;
4116 p_more = FALSE;
4117 old_State = State;
4118 State = EXTERNCMD; /* don't redraw at window resize */
4119
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004120 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004121 {
4122 /* Fork a process that will write the lines to the
4123 * external program. */
4124 if ((wpid = fork()) == -1)
4125 {
4126 MSG_PUTS(_("\nCannot fork\n"));
4127 }
4128 else if (wpid == 0)
4129 {
4130 linenr_T lnum = curbuf->b_op_start.lnum;
4131 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004132 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004133 char_u *s;
4134 size_t l;
4135
4136 /* child */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004137 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004138 for (;;)
4139 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004140 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004141 if (l == 0)
4142 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004143 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004144 /* NL -> NUL translation */
4145 len = write(toshell_fd, "", (size_t)1);
4146 else
4147 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004148 s = vim_strchr(lp + written, NL);
4149 len = write(toshell_fd, (char *)lp + written,
4150 s == NULL ? l : s - (lp + written));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004151 }
4152 if (len == l)
4153 {
4154 /* Finished a line, add a NL, unless this line
4155 * should not have one. */
4156 if (lnum != curbuf->b_op_end.lnum
4157 || !curbuf->b_p_bin
4158 || (lnum != write_no_eol_lnum
4159 && (lnum !=
4160 curbuf->b_ml.ml_line_count
4161 || curbuf->b_p_eol)))
4162 write(toshell_fd, "\n", (size_t)1);
4163 ++lnum;
4164 if (lnum > curbuf->b_op_end.lnum)
4165 {
4166 /* finished all the lines, close pipe */
4167 close(toshell_fd);
4168 toshell_fd = -1;
4169 break;
4170 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004171 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004172 written = 0;
4173 }
4174 else if (len > 0)
4175 written += len;
4176 }
4177 _exit(0);
4178 }
4179 else
4180 {
4181 close(toshell_fd);
4182 toshell_fd = -1;
4183 }
4184 }
4185
4186 if (options & SHELL_READ)
4187 ga_init2(&ga, 1, BUFLEN);
4188
4189 noread_cnt = 0;
4190
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 for (;;)
4192 {
4193 /*
4194 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004195 * if there are any.
4196 * Don't do this if we are expanding wild cards (would eat
4197 * typeahead).
4198 * Don't do this when filtering and terminal is in cooked
4199 * mode, the shell command will handle the I/O. Avoids
4200 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004201 * Don't get characters when the child has already
4202 * finished (wait_pid == 0).
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004203 * Don't get extra characters when we already have one.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004204 * Don't read characters unless we didn't get output for a
4205 * while, avoids that ":r !ls" eats typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 */
4207 len = 0;
4208 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004209 && ((options &
4210 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4211 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4212#ifdef FEAT_GUI
4213 || gui.in_use
4214#endif
4215 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004216 && wait_pid == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 && (ta_len > 0
Bram Moolenaardf177f62005-02-22 08:39:57 +00004218 || (noread_cnt > 4
4219 && (len = ui_inchar(ta_buf,
4220 BUFLEN, 10L, 0)) > 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 {
4222 /*
4223 * For pipes:
4224 * Check for CTRL-C: send interrupt signal to child.
4225 * Check for CTRL-D: EOF, close pipe to child.
4226 */
4227 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4228 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004229# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 /*
4231 * Send SIGINT to the child's group or all
4232 * processes in our group.
4233 */
4234 if (ta_buf[ta_len] == Ctrl_C
4235 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004236 {
4237# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004239# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004242 if (wpid > 0)
4243 kill(wpid, SIGINT);
4244 }
4245# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 if (pty_master_fd < 0 && toshell_fd >= 0
4247 && ta_buf[ta_len] == Ctrl_D)
4248 {
4249 close(toshell_fd);
4250 toshell_fd = -1;
4251 }
4252 }
4253
4254 /* replace K_BS by <BS> and K_DEL by <DEL> */
4255 for (i = ta_len; i < ta_len + len; ++i)
4256 {
4257 if (ta_buf[i] == CSI && len - i > 2)
4258 {
4259 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4260 if (c == K_DEL || c == K_KDEL || c == K_BS)
4261 {
4262 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4263 (size_t)(len - i - 2));
4264 if (c == K_DEL || c == K_KDEL)
4265 ta_buf[i] = DEL;
4266 else
4267 ta_buf[i] = Ctrl_H;
4268 len -= 2;
4269 }
4270 }
4271 else if (ta_buf[i] == '\r')
4272 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004273# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004275 i += (*mb_ptr2len)(ta_buf + i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004276# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 }
4278
4279 /*
4280 * For pipes: echo the typed characters.
4281 * For a pty this does not seem to work.
4282 */
4283 if (pty_master_fd < 0)
4284 {
4285 for (i = ta_len; i < ta_len + len; ++i)
4286 {
4287 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4288 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004289# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 else if (has_mbyte)
4291 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004292 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293
4294 msg_outtrans_len(ta_buf + i, l);
4295 i += l - 1;
4296 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004297# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 else
4299 msg_outtrans_len(ta_buf + i, 1);
4300 }
4301 windgoto(msg_row, msg_col);
4302 out_flush();
4303 }
4304
4305 ta_len += len;
4306
4307 /*
4308 * Write the characters to the child, unless EOF has
4309 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004310 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004311 * When writing buffer lines, drop the typed
4312 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004314 if (options & SHELL_WRITE)
4315 ta_len = 0;
4316 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 {
4318 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4319 if (len > 0)
4320 {
4321 ta_len -= len;
4322 mch_memmove(ta_buf, ta_buf + len, ta_len);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004323 noread_cnt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 }
4325 }
4326 }
4327
Bram Moolenaardf177f62005-02-22 08:39:57 +00004328 if (got_int)
4329 {
4330 /* CTRL-C sends a signal to the child, we ignore it
4331 * ourselves */
4332# ifdef HAVE_SETSID
4333 kill(-pid, SIGINT);
4334# else
4335 kill(0, SIGINT);
4336# endif
4337 if (wpid > 0)
4338 kill(wpid, SIGINT);
4339 got_int = FALSE;
4340 }
4341
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 /*
4343 * Check if the child has any characters to be printed.
4344 * Read them and write them to our window. Repeat this as
4345 * long as there is something to do, avoid the 10ms wait
4346 * for mch_inchar(), or sending typeahead characters to
4347 * the external process.
4348 * TODO: This should handle escape sequences, compatible
4349 * to some terminal (vt52?).
4350 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004351 ++noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4353 {
4354 len = read(fromshell_fd, (char *)buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004355# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004357# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004359# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 );
4361 if (len <= 0) /* end of file or error */
4362 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004363
4364 noread_cnt = 0;
4365 if (options & SHELL_READ)
4366 {
4367 /* Do NUL -> NL translation, append NL separated
4368 * lines to the current buffer. */
4369 for (i = 0; i < len; ++i)
4370 {
4371 if (buffer[i] == NL)
4372 append_ga_line(&ga);
4373 else if (buffer[i] == NUL)
4374 ga_append(&ga, NL);
4375 else
4376 ga_append(&ga, buffer[i]);
4377 }
4378 }
4379# ifdef FEAT_MBYTE
4380 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 {
4382 int l;
4383
Bram Moolenaardf177f62005-02-22 08:39:57 +00004384 len += buffer_off;
4385 buffer[len] = NUL;
4386
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 /* Check if the last character in buffer[] is
4388 * incomplete, keep these bytes for the next
4389 * round. */
4390 for (p = buffer; p < buffer + len; p += l)
4391 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004392 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 if (l == 0)
4394 l = 1; /* NUL byte? */
4395 else if (MB_BYTE2LEN(*p) != l)
4396 break;
4397 }
4398 if (p == buffer) /* no complete character */
4399 {
4400 /* avoid getting stuck at an illegal byte */
4401 if (len >= 12)
4402 ++p;
4403 else
4404 {
4405 buffer_off = len;
4406 continue;
4407 }
4408 }
4409 c = *p;
4410 *p = NUL;
4411 msg_puts(buffer);
4412 if (p < buffer + len)
4413 {
4414 *p = c;
4415 buffer_off = (buffer + len) - p;
4416 mch_memmove(buffer, p, buffer_off);
4417 continue;
4418 }
4419 buffer_off = 0;
4420 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004421# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 {
4424 buffer[len] = NUL;
4425 msg_puts(buffer);
4426 }
4427
4428 windgoto(msg_row, msg_col);
4429 cursor_on();
4430 out_flush();
4431 if (got_int)
4432 break;
4433 }
4434
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004435 /* If we already detected the child has finished break the
4436 * loop now. */
4437 if (wait_pid == pid)
4438 break;
4439
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 /*
4441 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004442 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004444# ifdef __NeXT__
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004446# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004448# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4450 || (wait_pid == pid && WIFEXITED(status)))
4451 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004452 /* Don't break the loop yet, try reading more
4453 * characters from "fromshell_fd" first. When using
4454 * pipes there might still be something to read and
4455 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004458 else
4459 wait_pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 }
4461finished:
4462 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004463 if (options & SHELL_READ)
4464 {
4465 if (ga.ga_len > 0)
4466 {
4467 append_ga_line(&ga);
4468 /* remember that the NL was missing */
4469 write_no_eol_lnum = curwin->w_cursor.lnum;
4470 }
4471 else
4472 write_no_eol_lnum = 0;
4473 ga_clear(&ga);
4474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 /*
4477 * Give all typeahead that wasn't used back to ui_inchar().
4478 */
4479 if (ta_len)
4480 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 State = old_State;
4482 if (toshell_fd >= 0)
4483 close(toshell_fd);
4484 close(fromshell_fd);
4485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486
4487 /*
4488 * Wait until our child has exited.
4489 * Ignore wait() returning pids of other children and returning
4490 * because of some signal like SIGWINCH.
4491 * Don't wait if wait_pid was already set above, indicating the
4492 * child already exited.
4493 */
4494 while (wait_pid != pid)
4495 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004496# ifdef _THREAD_SAFE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 /* Ugly hack: when compiled with Python threads are probably
4498 * used, in which case wait() sometimes hangs for no obvious
4499 * reason. Use waitpid() instead and loop (like the GUI). */
4500# ifdef __NeXT__
4501 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4502# else
4503 wait_pid = waitpid(pid, &status, WNOHANG);
4504# endif
4505 if (wait_pid == 0)
4506 {
4507 /* Wait for 1/100 sec before trying again. */
4508 mch_delay(10L, TRUE);
4509 continue;
4510 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004511# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 wait_pid = wait(&status);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004513# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 if (wait_pid <= 0
4515# ifdef ECHILD
4516 && errno == ECHILD
4517# endif
4518 )
4519 break;
4520 }
4521
Bram Moolenaardf177f62005-02-22 08:39:57 +00004522 /* Make sure the child that writes to the external program is
4523 * dead. */
4524 if (wpid > 0)
4525 kill(wpid, SIGKILL);
4526
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 /*
4528 * Set to raw mode right now, otherwise a CTRL-C after
4529 * catch_signals() will kill Vim.
4530 */
4531 if (tmode == TMODE_RAW)
4532 settmode(TMODE_RAW);
4533 did_settmode = TRUE;
4534 set_signals();
4535
4536 if (WIFEXITED(status))
4537 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00004538 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 retval = WEXITSTATUS(status);
4540 if (retval && !emsg_silent)
4541 {
4542 if (retval == EXEC_FAILED)
4543 {
4544 MSG_PUTS(_("\nCannot execute shell "));
4545 msg_outtrans(p_sh);
4546 msg_putchar('\n');
4547 }
4548 else if (!(options & SHELL_SILENT))
4549 {
4550 MSG_PUTS(_("\nshell returned "));
4551 msg_outnum((long)retval);
4552 msg_putchar('\n');
4553 }
4554 }
4555 }
4556 else
4557 MSG_PUTS(_("\nCommand terminated\n"));
4558 }
4559 }
4560 vim_free(argv);
4561
4562error:
4563 if (!did_settmode)
4564 if (tmode == TMODE_RAW)
4565 settmode(TMODE_RAW); /* set to raw mode */
4566# ifdef FEAT_TITLE
4567 resettitle();
4568# endif
4569 vim_free(newcmd);
4570
4571 return retval;
4572
4573#endif /* USE_SYSTEM */
4574}
4575
4576/*
4577 * Check for CTRL-C typed by reading all available characters.
4578 * In cooked mode we should get SIGINT, no need to check.
4579 */
4580 void
4581mch_breakcheck()
4582{
4583 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4584 fill_input_buf(FALSE);
4585}
4586
4587/*
4588 * Wait "msec" msec until a character is available from the keyboard or from
4589 * inbuf[]. msec == -1 will block forever.
4590 * When a GUI is being used, this will never get called -- webb
4591 */
4592 static int
4593WaitForChar(msec)
4594 long msec;
4595{
4596#ifdef FEAT_MOUSE_GPM
4597 int gpm_process_wanted;
4598#endif
4599#ifdef FEAT_XCLIPBOARD
4600 int rest;
4601#endif
4602 int avail;
4603
4604 if (input_available()) /* something in inbuf[] */
4605 return 1;
4606
4607#if defined(FEAT_MOUSE_DEC)
4608 /* May need to query the mouse position. */
4609 if (WantQueryMouse)
4610 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004611 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4613 }
4614#endif
4615
4616 /*
4617 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4618 * events. This is a bit complicated, because they might both be defined.
4619 */
4620#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4621# ifdef FEAT_XCLIPBOARD
4622 rest = 0;
4623 if (do_xterm_trace())
4624 rest = msec;
4625# endif
4626 do
4627 {
4628# ifdef FEAT_XCLIPBOARD
4629 if (rest != 0)
4630 {
4631 msec = XT_TRACE_DELAY;
4632 if (rest >= 0 && rest < XT_TRACE_DELAY)
4633 msec = rest;
4634 if (rest >= 0)
4635 rest -= msec;
4636 }
4637# endif
4638# ifdef FEAT_MOUSE_GPM
4639 gpm_process_wanted = 0;
4640 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4641# else
4642 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4643# endif
4644 if (!avail)
4645 {
4646 if (input_available())
4647 return 1;
4648# ifdef FEAT_XCLIPBOARD
4649 if (rest == 0 || !do_xterm_trace())
4650# endif
4651 break;
4652 }
4653 }
4654 while (FALSE
4655# ifdef FEAT_MOUSE_GPM
4656 || (gpm_process_wanted && mch_gpm_process() == 0)
4657# endif
4658# ifdef FEAT_XCLIPBOARD
4659 || (!avail && rest != 0)
4660# endif
4661 );
4662
4663#else
4664 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4665#endif
4666 return avail;
4667}
4668
4669/*
4670 * Wait "msec" msec until a character is available from file descriptor "fd".
4671 * Time == -1 will block forever.
4672 * When a GUI is being used, this will not be used for input -- webb
4673 * Returns also, when a request from Sniff is waiting -- toni.
4674 * Or when a Linux GPM mouse event is waiting.
4675 */
4676/* ARGSUSED */
4677#if defined(__BEOS__)
4678 int
4679#else
4680 static int
4681#endif
4682RealWaitForChar(fd, msec, check_for_gpm)
4683 int fd;
4684 long msec;
4685 int *check_for_gpm;
4686{
4687 int ret;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004688#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 static int busy = FALSE;
4690
4691 /* May retry getting characters after an event was handled. */
4692# define MAY_LOOP
4693
4694# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4695 /* Remember at what time we started, so that we know how much longer we
4696 * should wait after being interrupted. */
4697# define USE_START_TV
4698 struct timeval start_tv;
4699
4700 if (msec > 0 && (
4701# ifdef FEAT_XCLIPBOARD
4702 xterm_Shell != (Widget)0
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004703# if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 ||
4705# endif
4706# endif
4707# ifdef USE_XSMP
4708 xsmp_icefd != -1
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004709# ifdef FEAT_MZSCHEME
4710 ||
4711# endif
4712# endif
4713# ifdef FEAT_MZSCHEME
4714 (mzthreads_allowed() && p_mzq > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715# endif
4716 ))
4717 gettimeofday(&start_tv, NULL);
4718# endif
4719
4720 /* Handle being called recursively. This may happen for the session
4721 * manager stuff, it may save the file, which does a breakcheck. */
4722 if (busy)
4723 return 0;
4724#endif
4725
4726#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004727 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728#endif
4729 {
4730#ifdef MAY_LOOP
4731 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004732# ifdef FEAT_MZSCHEME
4733 int mzquantum_used = FALSE;
4734# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735#endif
4736#ifndef HAVE_SELECT
4737 struct pollfd fds[5];
4738 int nfd;
4739# ifdef FEAT_XCLIPBOARD
4740 int xterm_idx = -1;
4741# endif
4742# ifdef FEAT_MOUSE_GPM
4743 int gpm_idx = -1;
4744# endif
4745# ifdef USE_XSMP
4746 int xsmp_idx = -1;
4747# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004748 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004750# ifdef FEAT_MZSCHEME
4751 mzvim_check_threads();
4752 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4753 {
4754 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4755 mzquantum_used = TRUE;
4756 }
4757# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 fds[0].fd = fd;
4759 fds[0].events = POLLIN;
4760 nfd = 1;
4761
4762# ifdef FEAT_SNIFF
4763# define SNIFF_IDX 1
4764 if (want_sniff_request)
4765 {
4766 fds[SNIFF_IDX].fd = fd_from_sniff;
4767 fds[SNIFF_IDX].events = POLLIN;
4768 nfd++;
4769 }
4770# endif
4771# ifdef FEAT_XCLIPBOARD
4772 if (xterm_Shell != (Widget)0)
4773 {
4774 xterm_idx = nfd;
4775 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4776 fds[nfd].events = POLLIN;
4777 nfd++;
4778 }
4779# endif
4780# ifdef FEAT_MOUSE_GPM
4781 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4782 {
4783 gpm_idx = nfd;
4784 fds[nfd].fd = gpm_fd;
4785 fds[nfd].events = POLLIN;
4786 nfd++;
4787 }
4788# endif
4789# ifdef USE_XSMP
4790 if (xsmp_icefd != -1)
4791 {
4792 xsmp_idx = nfd;
4793 fds[nfd].fd = xsmp_icefd;
4794 fds[nfd].events = POLLIN;
4795 nfd++;
4796 }
4797# endif
4798
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004799 ret = poll(fds, nfd, towait);
4800# ifdef FEAT_MZSCHEME
4801 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004802 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004803 finished = FALSE;
4804# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805
4806# ifdef FEAT_SNIFF
4807 if (ret < 0)
4808 sniff_disconnect(1);
4809 else if (want_sniff_request)
4810 {
4811 if (fds[SNIFF_IDX].revents & POLLHUP)
4812 sniff_disconnect(1);
4813 if (fds[SNIFF_IDX].revents & POLLIN)
4814 sniff_request_waiting = 1;
4815 }
4816# endif
4817# ifdef FEAT_XCLIPBOARD
4818 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4819 {
4820 xterm_update(); /* Maybe we should hand out clipboard */
4821 if (--ret == 0 && !input_available())
4822 /* Try again */
4823 finished = FALSE;
4824 }
4825# endif
4826# ifdef FEAT_MOUSE_GPM
4827 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4828 {
4829 *check_for_gpm = 1;
4830 }
4831# endif
4832# ifdef USE_XSMP
4833 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4834 {
4835 if (fds[xsmp_idx].revents & POLLIN)
4836 {
4837 busy = TRUE;
4838 xsmp_handle_requests();
4839 busy = FALSE;
4840 }
4841 else if (fds[xsmp_idx].revents & POLLHUP)
4842 {
4843 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004844 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 xsmp_close();
4846 }
4847 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004848 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 }
4850# endif
4851
4852
4853#else /* HAVE_SELECT */
4854
4855 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004856 struct timeval *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 fd_set rfds, efds;
4858 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004859 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004861# ifdef FEAT_MZSCHEME
4862 mzvim_check_threads();
4863 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4864 {
4865 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4866 mzquantum_used = TRUE;
4867 }
4868# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869# ifdef __EMX__
4870 /* don't check for incoming chars if not in raw mode, because select()
4871 * always returns TRUE then (in some version of emx.dll) */
4872 if (curr_tmode != TMODE_RAW)
4873 return 0;
4874# endif
4875
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004876 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004878 tv.tv_sec = towait / 1000;
4879 tv.tv_usec = (towait % 1000) * (1000000/1000);
4880 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004882 else
4883 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
4885 /*
4886 * Select on ready for reading and exceptional condition (end of file).
4887 */
4888 FD_ZERO(&rfds); /* calls bzero() on a sun */
4889 FD_ZERO(&efds);
4890 FD_SET(fd, &rfds);
4891# if !defined(__QNX__) && !defined(__CYGWIN32__)
4892 /* For QNX select() always returns 1 if this is set. Why? */
4893 FD_SET(fd, &efds);
4894# endif
4895 maxfd = fd;
4896
4897# ifdef FEAT_SNIFF
4898 if (want_sniff_request)
4899 {
4900 FD_SET(fd_from_sniff, &rfds);
4901 FD_SET(fd_from_sniff, &efds);
4902 if (maxfd < fd_from_sniff)
4903 maxfd = fd_from_sniff;
4904 }
4905# endif
4906# ifdef FEAT_XCLIPBOARD
4907 if (xterm_Shell != (Widget)0)
4908 {
4909 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4910 if (maxfd < ConnectionNumber(xterm_dpy))
4911 maxfd = ConnectionNumber(xterm_dpy);
4912 }
4913# endif
4914# ifdef FEAT_MOUSE_GPM
4915 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4916 {
4917 FD_SET(gpm_fd, &rfds);
4918 FD_SET(gpm_fd, &efds);
4919 if (maxfd < gpm_fd)
4920 maxfd = gpm_fd;
4921 }
4922# endif
4923# ifdef USE_XSMP
4924 if (xsmp_icefd != -1)
4925 {
4926 FD_SET(xsmp_icefd, &rfds);
4927 FD_SET(xsmp_icefd, &efds);
4928 if (maxfd < xsmp_icefd)
4929 maxfd = xsmp_icefd;
4930 }
4931# endif
4932
4933# ifdef OLD_VMS
4934 /* Old VMS as v6.2 and older have broken select(). It waits more than
4935 * required. Should not be used */
4936 ret = 0;
4937# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004938 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4939# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00004940# ifdef __TANDEM
4941 if (ret == -1 && errno == ENOTSUP)
4942 {
4943 FD_ZERO(&rfds);
4944 FD_ZERO(&efds);
4945 ret = 0;
4946 }
4947#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004948# ifdef FEAT_MZSCHEME
4949 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004950 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004951 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952# endif
4953
4954# ifdef FEAT_SNIFF
4955 if (ret < 0 )
4956 sniff_disconnect(1);
4957 else if (ret > 0 && want_sniff_request)
4958 {
4959 if (FD_ISSET(fd_from_sniff, &efds))
4960 sniff_disconnect(1);
4961 if (FD_ISSET(fd_from_sniff, &rfds))
4962 sniff_request_waiting = 1;
4963 }
4964# endif
4965# ifdef FEAT_XCLIPBOARD
4966 if (ret > 0 && xterm_Shell != (Widget)0
4967 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
4968 {
4969 xterm_update(); /* Maybe we should hand out clipboard */
4970 /* continue looping when we only got the X event and the input
4971 * buffer is empty */
4972 if (--ret == 0 && !input_available())
4973 {
4974 /* Try again */
4975 finished = FALSE;
4976 }
4977 }
4978# endif
4979# ifdef FEAT_MOUSE_GPM
4980 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
4981 {
4982 if (FD_ISSET(gpm_fd, &efds))
4983 gpm_close();
4984 else if (FD_ISSET(gpm_fd, &rfds))
4985 *check_for_gpm = 1;
4986 }
4987# endif
4988# ifdef USE_XSMP
4989 if (ret > 0 && xsmp_icefd != -1)
4990 {
4991 if (FD_ISSET(xsmp_icefd, &efds))
4992 {
4993 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004994 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 xsmp_close();
4996 if (--ret == 0)
4997 finished = FALSE; /* keep going if event was only one */
4998 }
4999 else if (FD_ISSET(xsmp_icefd, &rfds))
5000 {
5001 busy = TRUE;
5002 xsmp_handle_requests();
5003 busy = FALSE;
5004 if (--ret == 0)
5005 finished = FALSE; /* keep going if event was only one */
5006 }
5007 }
5008# endif
5009
5010#endif /* HAVE_SELECT */
5011
5012#ifdef MAY_LOOP
5013 if (finished || msec == 0)
5014 break;
5015
5016 /* We're going to loop around again, find out for how long */
5017 if (msec > 0)
5018 {
5019# ifdef USE_START_TV
5020 struct timeval mtv;
5021
5022 /* Compute remaining wait time. */
5023 gettimeofday(&mtv, NULL);
5024 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
5025 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
5026# else
5027 /* Guess we got interrupted halfway. */
5028 msec = msec / 2;
5029# endif
5030 if (msec <= 0)
5031 break; /* waited long enough */
5032 }
5033#endif
5034 }
5035
5036 return (ret > 0);
5037}
5038
5039#ifndef VMS
5040
5041#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005043 * Expand a path into all matching files and/or directories. Handles "*",
5044 * "?", "[a-z]", "**", etc.
5045 * "path" has backslashes before chars that are not to be expanded.
5046 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 */
5048 int
5049mch_expandpath(gap, path, flags)
5050 garray_T *gap;
5051 char_u *path;
5052 int flags; /* EW_* flags */
5053{
Bram Moolenaar02743632005-07-25 20:42:36 +00005054 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055}
5056#endif
5057
5058/*
5059 * mch_expand_wildcards() - this code does wild-card pattern matching using
5060 * the shell
5061 *
5062 * return OK for success, FAIL for error (you may lose some memory) and put
5063 * an error message in *file.
5064 *
5065 * num_pat is number of input patterns
5066 * pat is array of pointers to input patterns
5067 * num_file is pointer to number of matched file names
5068 * file is pointer to array of pointers to matched file names
5069 */
5070
5071#ifndef SEEK_SET
5072# define SEEK_SET 0
5073#endif
5074#ifndef SEEK_END
5075# define SEEK_END 2
5076#endif
5077
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005078#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005079
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080/* ARGSUSED */
5081 int
5082mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5083 int num_pat;
5084 char_u **pat;
5085 int *num_file;
5086 char_u ***file;
5087 int flags; /* EW_* flags */
5088{
5089 int i;
5090 size_t len;
5091 char_u *p;
5092 int dir;
5093#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005094 /*
5095 * This is the OS/2 implementation.
5096 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097# define EXPL_ALLOC_INC 16
5098 char_u **expl_files;
5099 size_t files_alloced, files_free;
5100 char_u *buf;
5101 int has_wildcard;
5102
5103 *num_file = 0; /* default: no files found */
5104 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5105 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5106 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5107 if (*file == NULL)
5108 return FAIL;
5109
5110 for (; num_pat > 0; num_pat--, pat++)
5111 {
5112 expl_files = NULL;
5113 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5114 /* expand environment var or home dir */
5115 buf = expand_env_save(*pat);
5116 else
5117 buf = vim_strsave(*pat);
5118 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005119 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 if (has_wildcard) /* yes, so expand them */
5121 expl_files = (char_u **)_fnexplode(buf);
5122
5123 /*
5124 * return value of buf if no wildcards left,
5125 * OR if no match AND EW_NOTFOUND is set.
5126 */
5127 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5128 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5129 { /* simply save the current contents of *buf */
5130 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5131 if (expl_files != NULL)
5132 {
5133 expl_files[0] = vim_strsave(buf);
5134 expl_files[1] = NULL;
5135 }
5136 }
5137 vim_free(buf);
5138
5139 /*
5140 * Count number of names resulting from expansion,
5141 * At the same time add a backslash to the end of names that happen to
5142 * be directories, and replace slashes with backslashes.
5143 */
5144 if (expl_files)
5145 {
5146 for (i = 0; (p = expl_files[i]) != NULL; i++)
5147 {
5148 dir = mch_isdir(p);
5149 /* If we don't want dirs and this is one, skip it */
5150 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5151 continue;
5152
Bram Moolenaara2031822006-03-07 22:29:51 +00005153 /* Skip files that are not executable if we check for that. */
5154 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5155 continue;
5156
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 if (--files_free == 0)
5158 {
5159 /* need more room in table of pointers */
5160 files_alloced += EXPL_ALLOC_INC;
5161 *file = (char_u **)vim_realloc(*file,
5162 sizeof(char_u **) * files_alloced);
5163 if (*file == NULL)
5164 {
5165 EMSG(_(e_outofmem));
5166 *num_file = 0;
5167 return FAIL;
5168 }
5169 files_free = EXPL_ALLOC_INC;
5170 }
5171 slash_adjust(p);
5172 if (dir)
5173 {
5174 /* For a directory we add a '/', unless it's already
5175 * there. */
5176 len = STRLEN(p);
5177 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5178 {
5179 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00005180 if (!after_pathsep((*file)[*num_file],
5181 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 {
5183 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005184 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 }
5186 }
5187 }
5188 else
5189 {
5190 (*file)[*num_file] = vim_strsave(p);
5191 }
5192
5193 /*
5194 * Error message already given by either alloc or vim_strsave.
5195 * Should return FAIL, but returning OK works also.
5196 */
5197 if ((*file)[*num_file] == NULL)
5198 break;
5199 (*num_file)++;
5200 }
5201 _fnexplodefree((char **)expl_files);
5202 }
5203 }
5204 return OK;
5205
5206#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005207 /*
5208 * This is the non-OS/2 implementation (really Unix).
5209 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 int j;
5211 char_u *tempname;
5212 char_u *command;
5213 FILE *fd;
5214 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005215#define STYLE_ECHO 0 /* use "echo", the default */
5216#define STYLE_GLOB 1 /* use "glob", for csh */
5217#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5218#define STYLE_PRINT 3 /* use "print -N", for zsh */
5219#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5220 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 int shell_style = STYLE_ECHO;
5222 int check_spaces;
5223 static int did_find_nul = FALSE;
5224 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005225 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005226 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227
5228 *num_file = 0; /* default: no files found */
5229 *file = NULL;
5230
5231 /*
5232 * If there are no wildcards, just copy the names to allocated memory.
5233 * Saves a lot of time, because we don't have to start a new shell.
5234 */
5235 if (!have_wildcard(num_pat, pat))
5236 return save_patterns(num_pat, pat, num_file, file);
5237
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005238# ifdef HAVE_SANDBOX
5239 /* Don't allow any shell command in the sandbox. */
5240 if (sandbox != 0 && check_secure())
5241 return FAIL;
5242# endif
5243
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 /*
5245 * Don't allow the use of backticks in secure and restricted mode.
5246 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005247 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 for (i = 0; i < num_pat; ++i)
5249 if (vim_strchr(pat[i], '`') != NULL
5250 && (check_restricted() || check_secure()))
5251 return FAIL;
5252
5253 /*
5254 * get a name for the temp file
5255 */
5256 if ((tempname = vim_tempname('o')) == NULL)
5257 {
5258 EMSG(_(e_notmp));
5259 return FAIL;
5260 }
5261
5262 /*
5263 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00005264 * file.
5265 * STYLE_BT: NL separated
5266 * If expanding `cmd` execute it directly.
5267 * STYLE_GLOB: NUL separated
5268 * If we use *csh, "glob" will work better than "echo".
5269 * STYLE_PRINT: NL or NUL separated
5270 * If we use *zsh, "print -N" will work better than "glob".
5271 * STYLE_VIMGLOB: NL separated
5272 * If we use *sh*, we define "vimglob()".
5273 * STYLE_ECHO: space separated.
5274 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 */
5276 if (num_pat == 1 && *pat[0] == '`'
5277 && (len = STRLEN(pat[0])) > 2
5278 && *(pat[0] + len - 1) == '`')
5279 shell_style = STYLE_BT;
5280 else if ((len = STRLEN(p_sh)) >= 3)
5281 {
5282 if (STRCMP(p_sh + len - 3, "csh") == 0)
5283 shell_style = STYLE_GLOB;
5284 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5285 shell_style = STYLE_PRINT;
5286 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005287 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5288 "sh") != NULL)
5289 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290
Bram Moolenaarc7247912008-01-13 12:54:11 +00005291 /* Compute the length of the command. We need 2 extra bytes: for the
5292 * optional '&' and for the NUL.
5293 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005295 if (shell_style == STYLE_VIMGLOB)
5296 len += STRLEN(sh_vimglob_func);
5297
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005298 for (i = 0; i < num_pat; ++i)
5299 {
5300 /* Count the length of the patterns in the same way as they are put in
5301 * "command" below. */
5302#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005304#else
5305 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00005306 for (j = 0; pat[i][j] != NUL; ++j)
5307 {
5308 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5309 ++len; /* may add a backslash */
5310 ++len;
5311 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005312#endif
5313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 command = alloc(len);
5315 if (command == NULL)
5316 {
5317 /* out of memory */
5318 vim_free(tempname);
5319 return FAIL;
5320 }
5321
5322 /*
5323 * Build the shell command:
5324 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5325 * recognizes this).
5326 * - Add the shell command to print the expanded names.
5327 * - Add the temp file name.
5328 * - Add the file name patterns.
5329 */
5330 if (shell_style == STYLE_BT)
5331 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00005332 /* change `command; command& ` to (command; command ) */
5333 STRCPY(command, "(");
5334 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005336 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 while (p > command && vim_iswhite(*p))
5338 --p;
5339 if (*p == '&') /* remove trailing '&' */
5340 {
5341 ampersent = TRUE;
5342 *p = ' ';
5343 }
5344 STRCAT(command, ">");
5345 }
5346 else
5347 {
5348 if (flags & EW_NOTFOUND)
5349 STRCPY(command, "set nonomatch; ");
5350 else
5351 STRCPY(command, "unset nonomatch; ");
5352 if (shell_style == STYLE_GLOB)
5353 STRCAT(command, "glob >");
5354 else if (shell_style == STYLE_PRINT)
5355 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00005356 else if (shell_style == STYLE_VIMGLOB)
5357 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 else
5359 STRCAT(command, "echo >");
5360 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005361
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00005363
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 if (shell_style != STYLE_BT)
5365 for (i = 0; i < num_pat; ++i)
5366 {
5367 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00005368 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005369 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370#ifdef USE_SYSTEM
5371 STRCAT(command, " \"");
5372 STRCAT(command, pat[i]);
5373 STRCAT(command, "\"");
5374#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00005375 int intick = FALSE;
5376
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 p = command + STRLEN(command);
5378 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00005379 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005380 {
5381 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00005382 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005383 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5384 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005385 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00005386 * backslash inside backticks, before a special character
5387 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005388 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00005389 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5390 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005391 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005392 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005393 }
5394 else if (!intick && vim_strchr(SHELL_SPECIAL,
Bram Moolenaar582fd852005-03-28 20:58:01 +00005395 pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00005396 /* Put a backslash before a special character, but not
5397 * when inside ``. */
5398 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005399
5400 /* Copy one character. */
5401 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00005402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 *p = NUL;
5404#endif
5405 }
5406 if (flags & EW_SILENT)
5407 show_shell_mess = FALSE;
5408 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00005409 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410
5411 /*
5412 * Using zsh -G: If a pattern has no matches, it is just deleted from
5413 * the argument list, otherwise zsh gives an error message and doesn't
5414 * expand any other pattern.
5415 */
5416 if (shell_style == STYLE_PRINT)
5417 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5418
5419 /*
5420 * If we use -f then shell variables set in .cshrc won't get expanded.
5421 * vi can do it, so we will too, but it is only necessary if there is a "$"
5422 * in one of the patterns, otherwise we can still use the fast option.
5423 */
5424 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5425 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5426
5427 /*
5428 * execute the shell command
5429 */
5430 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5431
5432 /* When running in the background, give it some time to create the temp
5433 * file, but don't wait for it to finish. */
5434 if (ampersent)
5435 mch_delay(10L, TRUE);
5436
5437 extra_shell_arg = NULL; /* cleanup */
5438 show_shell_mess = TRUE;
5439 vim_free(command);
5440
Bram Moolenaarc7247912008-01-13 12:54:11 +00005441 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 {
5443 mch_remove(tempname);
5444 vim_free(tempname);
5445 /*
5446 * With interactive completion, the error message is not printed.
5447 * However with USE_SYSTEM, I don't know how to turn off error messages
5448 * from the shell, so screen may still get messed up -- webb.
5449 */
5450#ifndef USE_SYSTEM
5451 if (!(flags & EW_SILENT))
5452#endif
5453 {
5454 redraw_later_clear(); /* probably messed up screen */
5455 msg_putchar('\n'); /* clear bottom line quickly */
5456 cmdline_row = Rows - 1; /* continue on last line */
5457#ifdef USE_SYSTEM
5458 if (!(flags & EW_SILENT))
5459#endif
5460 {
5461 MSG(_(e_wildexpand));
5462 msg_start(); /* don't overwrite this message */
5463 }
5464 }
5465 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5466 * EW_NOTFOUND is given */
5467 if (shell_style == STYLE_BT)
5468 return FAIL;
5469 goto notfound;
5470 }
5471
5472 /*
5473 * read the names from the file into memory
5474 */
5475 fd = fopen((char *)tempname, READBIN);
5476 if (fd == NULL)
5477 {
5478 /* Something went wrong, perhaps a file name with a special char. */
5479 if (!(flags & EW_SILENT))
5480 {
5481 MSG(_(e_wildexpand));
5482 msg_start(); /* don't overwrite this message */
5483 }
5484 vim_free(tempname);
5485 goto notfound;
5486 }
5487 fseek(fd, 0L, SEEK_END);
5488 len = ftell(fd); /* get size of temp file */
5489 fseek(fd, 0L, SEEK_SET);
5490 buffer = alloc(len + 1);
5491 if (buffer == NULL)
5492 {
5493 /* out of memory */
5494 mch_remove(tempname);
5495 vim_free(tempname);
5496 fclose(fd);
5497 return FAIL;
5498 }
5499 i = fread((char *)buffer, 1, len, fd);
5500 fclose(fd);
5501 mch_remove(tempname);
5502 if (i != len)
5503 {
5504 /* unexpected read error */
5505 EMSG2(_(e_notread), tempname);
5506 vim_free(tempname);
5507 vim_free(buffer);
5508 return FAIL;
5509 }
5510 vim_free(tempname);
5511
Bram Moolenaarc7247912008-01-13 12:54:11 +00005512# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5514 p = buffer;
5515 for (i = 0; i < len; ++i)
5516 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5517 *p++ = buffer[i];
5518 len = p - buffer;
5519# endif
5520
5521
5522 /* file names are separated with Space */
5523 if (shell_style == STYLE_ECHO)
5524 {
5525 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5526 p = buffer;
5527 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5528 {
5529 while (*p != ' ' && *p != '\n')
5530 ++p;
5531 p = skipwhite(p); /* skip to next entry */
5532 }
5533 }
5534 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005535 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 {
5537 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5538 p = buffer;
5539 for (i = 0; *p != NUL; ++i) /* count number of entries */
5540 {
5541 while (*p != '\n' && *p != NUL)
5542 ++p;
5543 if (*p != NUL)
5544 ++p;
5545 p = skipwhite(p); /* skip leading white space */
5546 }
5547 }
5548 /* file names are separated with NUL */
5549 else
5550 {
5551 /*
5552 * Some versions of zsh use spaces instead of NULs to separate
5553 * results. Only do this when there is no NUL before the end of the
5554 * buffer, otherwise we would never be able to use file names with
5555 * embedded spaces when zsh does use NULs.
5556 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5557 * don't check for spaces again.
5558 */
5559 check_spaces = FALSE;
5560 if (shell_style == STYLE_PRINT && !did_find_nul)
5561 {
5562 /* If there is a NUL, set did_find_nul, else set check_spaces */
5563 if (len && (int)STRLEN(buffer) < len - 1)
5564 did_find_nul = TRUE;
5565 else
5566 check_spaces = TRUE;
5567 }
5568
5569 /*
5570 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5571 * already is one, for STYLE_GLOB it needs to be added.
5572 */
5573 if (len && buffer[len - 1] == NUL)
5574 --len;
5575 else
5576 buffer[len] = NUL;
5577 i = 0;
5578 for (p = buffer; p < buffer + len; ++p)
5579 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5580 {
5581 ++i;
5582 *p = NUL;
5583 }
5584 if (len)
5585 ++i; /* count last entry */
5586 }
5587 if (i == 0)
5588 {
5589 /*
5590 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5591 * /bin/sh will happily expand it to nothing rather than returning an
5592 * error; and hey, it's good to check anyway -- webb.
5593 */
5594 vim_free(buffer);
5595 goto notfound;
5596 }
5597 *num_file = i;
5598 *file = (char_u **)alloc(sizeof(char_u *) * i);
5599 if (*file == NULL)
5600 {
5601 /* out of memory */
5602 vim_free(buffer);
5603 return FAIL;
5604 }
5605
5606 /*
5607 * Isolate the individual file names.
5608 */
5609 p = buffer;
5610 for (i = 0; i < *num_file; ++i)
5611 {
5612 (*file)[i] = p;
5613 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005614 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5615 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00005617 while (!(shell_style == STYLE_ECHO && *p == ' ')
5618 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 ++p;
5620 if (p == buffer + len) /* last entry */
5621 *p = NUL;
5622 else
5623 {
5624 *p++ = NUL;
5625 p = skipwhite(p); /* skip to next entry */
5626 }
5627 }
5628 else /* NUL separates */
5629 {
5630 while (*p && p < buffer + len) /* skip entry */
5631 ++p;
5632 ++p; /* skip NUL */
5633 }
5634 }
5635
5636 /*
5637 * Move the file names to allocated memory.
5638 */
5639 for (j = 0, i = 0; i < *num_file; ++i)
5640 {
5641 /* Require the files to exist. Helps when using /bin/sh */
5642 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5643 continue;
5644
5645 /* check if this entry should be included */
5646 dir = (mch_isdir((*file)[i]));
5647 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5648 continue;
5649
Bram Moolenaara2031822006-03-07 22:29:51 +00005650 /* Skip files that are not executable if we check for that. */
5651 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5652 continue;
5653
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5655 if (p)
5656 {
5657 STRCPY(p, (*file)[i]);
5658 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00005659 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 (*file)[j++] = p;
5661 }
5662 }
5663 vim_free(buffer);
5664 *num_file = j;
5665
5666 if (*num_file == 0) /* rejected all entries */
5667 {
5668 vim_free(*file);
5669 *file = NULL;
5670 goto notfound;
5671 }
5672
5673 return OK;
5674
5675notfound:
5676 if (flags & EW_NOTFOUND)
5677 return save_patterns(num_pat, pat, num_file, file);
5678 return FAIL;
5679
5680#endif /* __EMX__ */
5681}
5682
5683#endif /* VMS */
5684
5685#ifndef __EMX__
5686 static int
5687save_patterns(num_pat, pat, num_file, file)
5688 int num_pat;
5689 char_u **pat;
5690 int *num_file;
5691 char_u ***file;
5692{
5693 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005694 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695
5696 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5697 if (*file == NULL)
5698 return FAIL;
5699 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00005700 {
5701 s = vim_strsave(pat[i]);
5702 if (s != NULL)
5703 /* Be compatible with expand_filename(): halve the number of
5704 * backslashes. */
5705 backslash_halve(s);
5706 (*file)[i] = s;
5707 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 *num_file = num_pat;
5709 return OK;
5710}
5711#endif
5712
5713
5714/*
5715 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5716 * expand.
5717 */
5718 int
5719mch_has_exp_wildcard(p)
5720 char_u *p;
5721{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005722 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 {
5724#ifndef OS2
5725 if (*p == '\\' && p[1] != NUL)
5726 ++p;
5727 else
5728#endif
5729 if (vim_strchr((char_u *)
5730#ifdef VMS
5731 "*?%"
5732#else
5733# ifdef OS2
5734 "*?"
5735# else
5736 "*?[{'"
5737# endif
5738#endif
5739 , *p) != NULL)
5740 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 }
5742 return FALSE;
5743}
5744
5745/*
5746 * Return TRUE if the string "p" contains a wildcard.
5747 * Don't recognize '~' at the end as a wildcard.
5748 */
5749 int
5750mch_has_wildcard(p)
5751 char_u *p;
5752{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005753 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 {
5755#ifndef OS2
5756 if (*p == '\\' && p[1] != NUL)
5757 ++p;
5758 else
5759#endif
5760 if (vim_strchr((char_u *)
5761#ifdef VMS
5762 "*?%$"
5763#else
5764# ifdef OS2
5765# ifdef VIM_BACKTICK
5766 "*?$`"
5767# else
5768 "*?$"
5769# endif
5770# else
5771 "*?[{`'$"
5772# endif
5773#endif
5774 , *p) != NULL
5775 || (*p == '~' && p[1] != NUL))
5776 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 }
5778 return FALSE;
5779}
5780
5781#ifndef __EMX__
5782 static int
5783have_wildcard(num, file)
5784 int num;
5785 char_u **file;
5786{
5787 int i;
5788
5789 for (i = 0; i < num; i++)
5790 if (mch_has_wildcard(file[i]))
5791 return 1;
5792 return 0;
5793}
5794
5795 static int
5796have_dollars(num, file)
5797 int num;
5798 char_u **file;
5799{
5800 int i;
5801
5802 for (i = 0; i < num; i++)
5803 if (vim_strchr(file[i], '$') != NULL)
5804 return TRUE;
5805 return FALSE;
5806}
5807#endif /* ifndef __EMX__ */
5808
5809#ifndef HAVE_RENAME
5810/*
5811 * Scaled-down version of rename(), which is missing in Xenix.
5812 * This version can only move regular files and will fail if the
5813 * destination exists.
5814 */
5815 int
5816mch_rename(src, dest)
5817 const char *src, *dest;
5818{
5819 struct stat st;
5820
5821 if (stat(dest, &st) >= 0) /* fail if destination exists */
5822 return -1;
5823 if (link(src, dest) != 0) /* link file to new name */
5824 return -1;
5825 if (mch_remove(src) == 0) /* delete link to old name */
5826 return 0;
5827 return -1;
5828}
5829#endif /* !HAVE_RENAME */
5830
5831#ifdef FEAT_MOUSE_GPM
5832/*
5833 * Initializes connection with gpm (if it isn't already opened)
5834 * Return 1 if succeeded (or connection already opened), 0 if failed
5835 */
5836 static int
5837gpm_open()
5838{
5839 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5840
5841 if (!gpm_flag)
5842 {
5843 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5844 gpm_connect.defaultMask = ~GPM_HARD;
5845 /* Default handling for mouse move*/
5846 gpm_connect.minMod = 0; /* Handle any modifier keys */
5847 gpm_connect.maxMod = 0xffff;
5848 if (Gpm_Open(&gpm_connect, 0) > 0)
5849 {
5850 /* gpm library tries to handling TSTP causes
5851 * problems. Anyways, we close connection to Gpm whenever
5852 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005853 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 */
5855 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5856 return 1; /* succeed */
5857 }
5858 if (gpm_fd == -2)
5859 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5860 return 0;
5861 }
5862 return 1; /* already open */
5863}
5864
5865/*
5866 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 */
5868 static void
5869gpm_close()
5870{
5871 if (gpm_flag && gpm_fd >= 0) /* if Open */
5872 Gpm_Close();
5873}
5874
5875/* Reads gpm event and adds special keys to input buf. Returns length of
5876 * generated key sequence.
5877 * This function is made after gui_send_mouse_event
5878 */
5879 static int
5880mch_gpm_process()
5881{
5882 int button;
5883 static Gpm_Event gpm_event;
5884 char_u string[6];
5885 int_u vim_modifiers;
5886 int row,col;
5887 unsigned char buttons_mask;
5888 unsigned char gpm_modifiers;
5889 static unsigned char old_buttons = 0;
5890
5891 Gpm_GetEvent(&gpm_event);
5892
5893#ifdef FEAT_GUI
5894 /* Don't put events in the input queue now. */
5895 if (hold_gui_events)
5896 return 0;
5897#endif
5898
5899 row = gpm_event.y - 1;
5900 col = gpm_event.x - 1;
5901
5902 string[0] = ESC; /* Our termcode */
5903 string[1] = 'M';
5904 string[2] = 'G';
5905 switch (GPM_BARE_EVENTS(gpm_event.type))
5906 {
5907 case GPM_DRAG:
5908 string[3] = MOUSE_DRAG;
5909 break;
5910 case GPM_DOWN:
5911 buttons_mask = gpm_event.buttons & ~old_buttons;
5912 old_buttons = gpm_event.buttons;
5913 switch (buttons_mask)
5914 {
5915 case GPM_B_LEFT:
5916 button = MOUSE_LEFT;
5917 break;
5918 case GPM_B_MIDDLE:
5919 button = MOUSE_MIDDLE;
5920 break;
5921 case GPM_B_RIGHT:
5922 button = MOUSE_RIGHT;
5923 break;
5924 default:
5925 return 0;
5926 /*Don't know what to do. Can more than one button be
5927 * reported in one event? */
5928 }
5929 string[3] = (char_u)(button | 0x20);
5930 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5931 break;
5932 case GPM_UP:
5933 string[3] = MOUSE_RELEASE;
5934 old_buttons &= ~gpm_event.buttons;
5935 break;
5936 default:
5937 return 0;
5938 }
5939 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5940 gpm_modifiers = gpm_event.modifiers;
5941 vim_modifiers = 0x0;
5942 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5943 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5944 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5945 */
5946 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
5947 vim_modifiers |= MOUSE_SHIFT;
5948
5949 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
5950 vim_modifiers |= MOUSE_CTRL;
5951 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
5952 vim_modifiers |= MOUSE_ALT;
5953 string[3] |= vim_modifiers;
5954 string[4] = (char_u)(col + ' ' + 1);
5955 string[5] = (char_u)(row + ' ' + 1);
5956 add_to_input_buf(string, 6);
5957 return 6;
5958}
5959#endif /* FEAT_MOUSE_GPM */
5960
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005961#ifdef FEAT_SYSMOUSE
5962/*
5963 * Initialize connection with sysmouse.
5964 * Let virtual console inform us with SIGUSR2 for pending sysmouse
5965 * output, any sysmouse output than will be processed via sig_sysmouse().
5966 * Return OK if succeeded, FAIL if failed.
5967 */
5968 static int
5969sysmouse_open()
5970{
5971 struct mouse_info mouse;
5972
5973 mouse.operation = MOUSE_MODE;
5974 mouse.u.mode.mode = 0;
5975 mouse.u.mode.signal = SIGUSR2;
5976 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
5977 {
5978 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
5979 mouse.operation = MOUSE_SHOW;
5980 ioctl(1, CONS_MOUSECTL, &mouse);
5981 return OK;
5982 }
5983 return FAIL;
5984}
5985
5986/*
5987 * Stop processing SIGUSR2 signals, and also make sure that
5988 * virtual console do not send us any sysmouse related signal.
5989 */
5990 static void
5991sysmouse_close()
5992{
5993 struct mouse_info mouse;
5994
5995 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
5996 mouse.operation = MOUSE_MODE;
5997 mouse.u.mode.mode = 0;
5998 mouse.u.mode.signal = 0;
5999 ioctl(1, CONS_MOUSECTL, &mouse);
6000}
6001
6002/*
6003 * Gets info from sysmouse and adds special keys to input buf.
6004 */
6005/* ARGSUSED */
6006 static RETSIGTYPE
6007sig_sysmouse SIGDEFARG(sigarg)
6008{
6009 struct mouse_info mouse;
6010 struct video_info video;
6011 char_u string[6];
6012 int row, col;
6013 int button;
6014 int buttons;
6015 static int oldbuttons = 0;
6016
6017#ifdef FEAT_GUI
6018 /* Don't put events in the input queue now. */
6019 if (hold_gui_events)
6020 return;
6021#endif
6022
6023 mouse.operation = MOUSE_GETINFO;
6024 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6025 && ioctl(1, FBIO_MODEINFO, &video) != -1
6026 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6027 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6028 {
6029 row = mouse.u.data.y / video.vi_cheight;
6030 col = mouse.u.data.x / video.vi_cwidth;
6031 buttons = mouse.u.data.buttons;
6032 string[0] = ESC; /* Our termcode */
6033 string[1] = 'M';
6034 string[2] = 'S';
6035 if (oldbuttons == buttons && buttons != 0)
6036 {
6037 button = MOUSE_DRAG;
6038 }
6039 else
6040 {
6041 switch (buttons)
6042 {
6043 case 0:
6044 button = MOUSE_RELEASE;
6045 break;
6046 case 1:
6047 button = MOUSE_LEFT;
6048 break;
6049 case 2:
6050 button = MOUSE_MIDDLE;
6051 break;
6052 case 4:
6053 button = MOUSE_RIGHT;
6054 break;
6055 default:
6056 return;
6057 }
6058 oldbuttons = buttons;
6059 }
6060 string[3] = (char_u)(button);
6061 string[4] = (char_u)(col + ' ' + 1);
6062 string[5] = (char_u)(row + ' ' + 1);
6063 add_to_input_buf(string, 6);
6064 }
6065 return;
6066}
6067#endif /* FEAT_SYSMOUSE */
6068
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069#if defined(FEAT_LIBCALL) || defined(PROTO)
6070typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
6071typedef char_u * (*INTPROCSTR)__ARGS((int));
6072typedef int (*STRPROCINT)__ARGS((char_u *));
6073typedef int (*INTPROCINT)__ARGS((int));
6074
6075/*
6076 * Call a DLL routine which takes either a string or int param
6077 * and returns an allocated string.
6078 */
6079 int
6080mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
6081 char_u *libname;
6082 char_u *funcname;
6083 char_u *argstring; /* NULL when using a argint */
6084 int argint;
6085 char_u **string_result;/* NULL when using number_result */
6086 int *number_result;
6087{
6088# if defined(USE_DLOPEN)
6089 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006090 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091# else
6092 shl_t hinstLib;
6093# endif
6094 STRPROCSTR ProcAdd;
6095 INTPROCSTR ProcAddI;
6096 char_u *retval_str = NULL;
6097 int retval_int = 0;
6098 int success = FALSE;
6099
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006100 /*
6101 * Get a handle to the DLL module.
6102 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006104 /* First clear any error, it's not cleared by the dlopen() call. */
6105 (void)dlerror();
6106
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 hinstLib = dlopen((char *)libname, RTLD_LAZY
6108# ifdef RTLD_LOCAL
6109 | RTLD_LOCAL
6110# endif
6111 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006112 if (hinstLib == NULL)
6113 {
6114 /* "dlerr" must be used before dlclose() */
6115 dlerr = (char *)dlerror();
6116 if (dlerr != NULL)
6117 EMSG2(_("dlerror = \"%s\""), dlerr);
6118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006119# else
6120 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6121# endif
6122
6123 /* If the handle is valid, try to get the function address. */
6124 if (hinstLib != NULL)
6125 {
6126# ifdef HAVE_SETJMP_H
6127 /*
6128 * Catch a crash when calling the library function. For example when
6129 * using a number where a string pointer is expected.
6130 */
6131 mch_startjmp();
6132 if (SETJMP(lc_jump_env) != 0)
6133 {
6134 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006135# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006136 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006137# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138 mch_didjmp();
6139 }
6140 else
6141# endif
6142 {
6143 retval_str = NULL;
6144 retval_int = 0;
6145
6146 if (argstring != NULL)
6147 {
6148# if defined(USE_DLOPEN)
6149 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006150 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151# else
6152 if (shl_findsym(&hinstLib, (const char *)funcname,
6153 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6154 ProcAdd = NULL;
6155# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006156 if ((success = (ProcAdd != NULL
6157# if defined(USE_DLOPEN)
6158 && dlerr == NULL
6159# endif
6160 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 {
6162 if (string_result == NULL)
6163 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6164 else
6165 retval_str = (ProcAdd)(argstring);
6166 }
6167 }
6168 else
6169 {
6170# if defined(USE_DLOPEN)
6171 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006172 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173# else
6174 if (shl_findsym(&hinstLib, (const char *)funcname,
6175 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6176 ProcAddI = NULL;
6177# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006178 if ((success = (ProcAddI != NULL
6179# if defined(USE_DLOPEN)
6180 && dlerr == NULL
6181# endif
6182 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 {
6184 if (string_result == NULL)
6185 retval_int = ((INTPROCINT)ProcAddI)(argint);
6186 else
6187 retval_str = (ProcAddI)(argint);
6188 }
6189 }
6190
6191 /* Save the string before we free the library. */
6192 /* Assume that a "1" or "-1" result is an illegal pointer. */
6193 if (string_result == NULL)
6194 *number_result = retval_int;
6195 else if (retval_str != NULL
6196 && retval_str != (char_u *)1
6197 && retval_str != (char_u *)-1)
6198 *string_result = vim_strsave(retval_str);
6199 }
6200
6201# ifdef HAVE_SETJMP_H
6202 mch_endjmp();
6203# ifdef SIGHASARG
6204 if (lc_signal != 0)
6205 {
6206 int i;
6207
6208 /* try to find the name of this signal */
6209 for (i = 0; signal_info[i].sig != -1; i++)
6210 if (lc_signal == signal_info[i].sig)
6211 break;
6212 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6213 }
6214# endif
6215# endif
6216
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006218 /* "dlerr" must be used before dlclose() */
6219 if (dlerr != NULL)
6220 EMSG2(_("dlerror = \"%s\""), dlerr);
6221
6222 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 (void)dlclose(hinstLib);
6224# else
6225 (void)shl_unload(hinstLib);
6226# endif
6227 }
6228
6229 if (!success)
6230 {
6231 EMSG2(_(e_libcall), funcname);
6232 return FAIL;
6233 }
6234
6235 return OK;
6236}
6237#endif
6238
6239#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6240static int xterm_trace = -1; /* default: disabled */
6241static int xterm_button;
6242
6243/*
6244 * Setup a dummy window for X selections in a terminal.
6245 */
6246 void
6247setup_term_clip()
6248{
6249 int z = 0;
6250 char *strp = "";
6251 Widget AppShell;
6252
6253 if (!x_connect_to_server())
6254 return;
6255
6256 open_app_context();
6257 if (app_context != NULL && xterm_Shell == (Widget)0)
6258 {
6259 int (*oldhandler)();
6260#if defined(HAVE_SETJMP_H)
6261 int (*oldIOhandler)();
6262#endif
6263# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6264 struct timeval start_tv;
6265
6266 if (p_verbose > 0)
6267 gettimeofday(&start_tv, NULL);
6268# endif
6269
6270 /* Ignore X errors while opening the display */
6271 oldhandler = XSetErrorHandler(x_error_check);
6272
6273#if defined(HAVE_SETJMP_H)
6274 /* Ignore X IO errors while opening the display */
6275 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6276 mch_startjmp();
6277 if (SETJMP(lc_jump_env) != 0)
6278 {
6279 mch_didjmp();
6280 xterm_dpy = NULL;
6281 }
6282 else
6283#endif
6284 {
6285 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6286 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6287#if defined(HAVE_SETJMP_H)
6288 mch_endjmp();
6289#endif
6290 }
6291
6292#if defined(HAVE_SETJMP_H)
6293 /* Now handle X IO errors normally. */
6294 (void)XSetIOErrorHandler(oldIOhandler);
6295#endif
6296 /* Now handle X errors normally. */
6297 (void)XSetErrorHandler(oldhandler);
6298
6299 if (xterm_dpy == NULL)
6300 {
6301 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006302 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 return;
6304 }
6305
6306 /* Catch terminating error of the X server connection. */
6307 (void)XSetIOErrorHandler(x_IOerror_handler);
6308
6309# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6310 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006311 {
6312 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006314 verbose_leave();
6315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316# endif
6317
6318 /* Create a Shell to make converters work. */
6319 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6320 applicationShellWidgetClass, xterm_dpy,
6321 NULL);
6322 if (AppShell == (Widget)0)
6323 return;
6324 xterm_Shell = XtVaCreatePopupShell("VIM",
6325 topLevelShellWidgetClass, AppShell,
6326 XtNmappedWhenManaged, 0,
6327 XtNwidth, 1,
6328 XtNheight, 1,
6329 NULL);
6330 if (xterm_Shell == (Widget)0)
6331 return;
6332
6333 x11_setup_atoms(xterm_dpy);
6334 if (x11_display == NULL)
6335 x11_display = xterm_dpy;
6336
6337 XtRealizeWidget(xterm_Shell);
6338 XSync(xterm_dpy, False);
6339 xterm_update();
6340 }
6341 if (xterm_Shell != (Widget)0)
6342 {
6343 clip_init(TRUE);
6344 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6345 x11_window = (Window)atol(strp);
6346 /* Check if $WINDOWID is valid. */
6347 if (test_x11_window(xterm_dpy) == FAIL)
6348 x11_window = 0;
6349 if (x11_window != 0)
6350 xterm_trace = 0;
6351 }
6352}
6353
6354 void
6355start_xterm_trace(button)
6356 int button;
6357{
6358 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6359 return;
6360 xterm_trace = 1;
6361 xterm_button = button;
6362 do_xterm_trace();
6363}
6364
6365
6366 void
6367stop_xterm_trace()
6368{
6369 if (xterm_trace < 0)
6370 return;
6371 xterm_trace = 0;
6372}
6373
6374/*
6375 * Query the xterm pointer and generate mouse termcodes if necessary
6376 * return TRUE if dragging is active, else FALSE
6377 */
6378 static int
6379do_xterm_trace()
6380{
6381 Window root, child;
6382 int root_x, root_y;
6383 int win_x, win_y;
6384 int row, col;
6385 int_u mask_return;
6386 char_u buf[50];
6387 char_u *strp;
6388 long got_hints;
6389 static char_u *mouse_code;
6390 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6391 static int prev_row = 0, prev_col = 0;
6392 static XSizeHints xterm_hints;
6393
6394 if (xterm_trace <= 0)
6395 return FALSE;
6396
6397 if (xterm_trace == 1)
6398 {
6399 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00006400 * have changed recently. */
6401 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6402 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 || xterm_hints.width_inc <= 1
6404 || xterm_hints.height_inc <= 1)
6405 {
6406 xterm_trace = -1; /* Not enough data -- disable tracing */
6407 return FALSE;
6408 }
6409
6410 /* Rely on the same mouse code for the duration of this */
6411 mouse_code = find_termcode(mouse_name);
6412 prev_row = mouse_row;
6413 prev_row = mouse_col;
6414 xterm_trace = 2;
6415
6416 /* Find the offset of the chars, there might be a scrollbar on the
6417 * left of the window and/or a menu on the top (eterm etc.) */
6418 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6419 &win_x, &win_y, &mask_return);
6420 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6421 - (xterm_hints.height_inc / 2);
6422 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6423 xterm_hints.y = 2;
6424 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6425 - (xterm_hints.width_inc / 2);
6426 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6427 xterm_hints.x = 2;
6428 return TRUE;
6429 }
6430 if (mouse_code == NULL)
6431 {
6432 xterm_trace = 0;
6433 return FALSE;
6434 }
6435
6436 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6437 &win_x, &win_y, &mask_return);
6438
6439 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6440 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6441 if (row == prev_row && col == prev_col)
6442 return TRUE;
6443
6444 STRCPY(buf, mouse_code);
6445 strp = buf + STRLEN(buf);
6446 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6447 *strp++ = (char_u)(col + ' ' + 1);
6448 *strp++ = (char_u)(row + ' ' + 1);
6449 *strp = 0;
6450 add_to_input_buf(buf, STRLEN(buf));
6451
6452 prev_row = row;
6453 prev_col = col;
6454 return TRUE;
6455}
6456
6457# if defined(FEAT_GUI) || defined(PROTO)
6458/*
6459 * Destroy the display, window and app_context. Required for GTK.
6460 */
6461 void
6462clear_xterm_clip()
6463{
6464 if (xterm_Shell != (Widget)0)
6465 {
6466 XtDestroyWidget(xterm_Shell);
6467 xterm_Shell = (Widget)0;
6468 }
6469 if (xterm_dpy != NULL)
6470 {
Bram Moolenaare8208012008-06-20 09:59:25 +00006471# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 /* Lesstif and Solaris crash here, lose some memory */
6473 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00006474# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 if (x11_display == xterm_dpy)
6476 x11_display = NULL;
6477 xterm_dpy = NULL;
6478 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006479# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 if (app_context != (XtAppContext)NULL)
6481 {
6482 /* Lesstif and Solaris crash here, lose some memory */
6483 XtDestroyApplicationContext(app_context);
6484 app_context = (XtAppContext)NULL;
6485 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006486# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487}
6488# endif
6489
6490/*
6491 * Catch up with any queued X events. This may put keyboard input into the
6492 * input buffer, call resize call-backs, trigger timers etc. If there is
6493 * nothing in the X event queue (& no timers pending), then we return
6494 * immediately.
6495 */
6496 static void
6497xterm_update()
6498{
6499 XEvent event;
6500
6501 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6502 {
6503 XtAppNextEvent(app_context, &event);
6504#ifdef FEAT_CLIENTSERVER
6505 {
6506 XPropertyEvent *e = (XPropertyEvent *)&event;
6507
6508 if (e->type == PropertyNotify && e->window == commWindow
6509 && e->atom == commProperty && e->state == PropertyNewValue)
6510 serverEventProc(xterm_dpy, &event);
6511 }
6512#endif
6513 XtDispatchEvent(&event);
6514 }
6515}
6516
6517 int
6518clip_xterm_own_selection(cbd)
6519 VimClipboard *cbd;
6520{
6521 if (xterm_Shell != (Widget)0)
6522 return clip_x11_own_selection(xterm_Shell, cbd);
6523 return FAIL;
6524}
6525
6526 void
6527clip_xterm_lose_selection(cbd)
6528 VimClipboard *cbd;
6529{
6530 if (xterm_Shell != (Widget)0)
6531 clip_x11_lose_selection(xterm_Shell, cbd);
6532}
6533
6534 void
6535clip_xterm_request_selection(cbd)
6536 VimClipboard *cbd;
6537{
6538 if (xterm_Shell != (Widget)0)
6539 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6540}
6541
6542 void
6543clip_xterm_set_selection(cbd)
6544 VimClipboard *cbd;
6545{
6546 clip_x11_set_selection(cbd);
6547}
6548#endif
6549
6550
6551#if defined(USE_XSMP) || defined(PROTO)
6552/*
6553 * Code for X Session Management Protocol.
6554 */
6555static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6556static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6557static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6558static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6559static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6560
6561
6562# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6563static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6564
6565/*
6566 * This is our chance to ask the user if they want to save,
6567 * or abort the logout
6568 */
6569/*ARGSUSED*/
6570 static void
6571xsmp_handle_interaction(smc_conn, client_data)
6572 SmcConn smc_conn;
6573 SmPointer client_data;
6574{
6575 cmdmod_T save_cmdmod;
6576 int cancel_shutdown = False;
6577
6578 save_cmdmod = cmdmod;
6579 cmdmod.confirm = TRUE;
6580 if (check_changed_any(FALSE))
6581 /* Mustn't logout */
6582 cancel_shutdown = True;
6583 cmdmod = save_cmdmod;
6584 setcursor(); /* position cursor */
6585 out_flush();
6586
6587 /* Done interaction */
6588 SmcInteractDone(smc_conn, cancel_shutdown);
6589
6590 /* Finish off
6591 * Only end save-yourself here if we're not cancelling shutdown;
6592 * we'll get a cancelled callback later in which we'll end it.
6593 * Hopefully get around glitchy SMs (like GNOME-1)
6594 */
6595 if (!cancel_shutdown)
6596 {
6597 xsmp.save_yourself = False;
6598 SmcSaveYourselfDone(smc_conn, True);
6599 }
6600}
6601# endif
6602
6603/*
6604 * Callback that starts save-yourself.
6605 */
6606/*ARGSUSED*/
6607 static void
6608xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6609 shutdown, interact_style, fast)
6610 SmcConn smc_conn;
6611 SmPointer client_data;
6612 int save_type;
6613 Bool shutdown;
6614 int interact_style;
6615 Bool fast;
6616{
6617 /* Handle already being in saveyourself */
6618 if (xsmp.save_yourself)
6619 SmcSaveYourselfDone(smc_conn, True);
6620 xsmp.save_yourself = True;
6621 xsmp.shutdown = shutdown;
6622
6623 /* First up, preserve all files */
6624 out_flush();
6625 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6626
6627 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006628 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629
6630# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6631 /* Now see if we can ask about unsaved files */
6632 if (shutdown && !fast && gui.in_use)
6633 /* Need to interact with user, but need SM's permission */
6634 SmcInteractRequest(smc_conn, SmDialogError,
6635 xsmp_handle_interaction, client_data);
6636 else
6637# endif
6638 {
6639 /* Can stop the cycle here */
6640 SmcSaveYourselfDone(smc_conn, True);
6641 xsmp.save_yourself = False;
6642 }
6643}
6644
6645
6646/*
6647 * Callback to warn us of imminent death.
6648 */
6649/*ARGSUSED*/
6650 static void
6651xsmp_die(smc_conn, client_data)
6652 SmcConn smc_conn;
6653 SmPointer client_data;
6654{
6655 xsmp_close();
6656
6657 /* quit quickly leaving swapfiles for modified buffers behind */
6658 getout_preserve_modified(0);
6659}
6660
6661
6662/*
6663 * Callback to tell us that save-yourself has completed.
6664 */
6665/*ARGSUSED*/
6666 static void
6667xsmp_save_complete(smc_conn, client_data)
6668 SmcConn smc_conn;
6669 SmPointer client_data;
6670{
6671 xsmp.save_yourself = False;
6672}
6673
6674
6675/*
6676 * Callback to tell us that an instigated shutdown was cancelled
6677 * (maybe even by us)
6678 */
6679/*ARGSUSED*/
6680 static void
6681xsmp_shutdown_cancelled(smc_conn, client_data)
6682 SmcConn smc_conn;
6683 SmPointer client_data;
6684{
6685 if (xsmp.save_yourself)
6686 SmcSaveYourselfDone(smc_conn, True);
6687 xsmp.save_yourself = False;
6688 xsmp.shutdown = False;
6689}
6690
6691
6692/*
6693 * Callback to tell us that a new ICE connection has been established.
6694 */
6695/*ARGSUSED*/
6696 static void
6697xsmp_ice_connection(iceConn, clientData, opening, watchData)
6698 IceConn iceConn;
6699 IcePointer clientData;
6700 Bool opening;
6701 IcePointer *watchData;
6702{
6703 /* Intercept creation of ICE connection fd */
6704 if (opening)
6705 {
6706 xsmp_icefd = IceConnectionNumber(iceConn);
6707 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6708 }
6709}
6710
6711
6712/* Handle any ICE processing that's required; return FAIL if SM lost */
6713 int
6714xsmp_handle_requests()
6715{
6716 Bool rep;
6717
6718 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6719 == IceProcessMessagesIOError)
6720 {
6721 /* Lost ICE */
6722 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006723 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724 xsmp_close();
6725 return FAIL;
6726 }
6727 else
6728 return OK;
6729}
6730
6731static int dummy;
6732
6733/* Set up X Session Management Protocol */
6734 void
6735xsmp_init(void)
6736{
6737 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 SmcCallbacks smcallbacks;
6739#if 0
6740 SmPropValue smname;
6741 SmProp smnameprop;
6742 SmProp *smprops[1];
6743#endif
6744
6745 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006746 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747
6748 xsmp.save_yourself = xsmp.shutdown = False;
6749
6750 /* Set up SM callbacks - must have all, even if they're not used */
6751 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6752 smcallbacks.save_yourself.client_data = NULL;
6753 smcallbacks.die.callback = xsmp_die;
6754 smcallbacks.die.client_data = NULL;
6755 smcallbacks.save_complete.callback = xsmp_save_complete;
6756 smcallbacks.save_complete.client_data = NULL;
6757 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6758 smcallbacks.shutdown_cancelled.client_data = NULL;
6759
6760 /* Set up a watch on ICE connection creations. The "dummy" argument is
6761 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6762 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6763 {
6764 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006765 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766 return;
6767 }
6768
6769 /* Create an SM connection */
6770 xsmp.smcconn = SmcOpenConnection(
6771 NULL,
6772 NULL,
6773 SmProtoMajor,
6774 SmProtoMinor,
6775 SmcSaveYourselfProcMask | SmcDieProcMask
6776 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6777 &smcallbacks,
6778 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00006779 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 sizeof(errorstring),
6781 errorstring);
6782 if (xsmp.smcconn == NULL)
6783 {
6784 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00006785
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006787 {
6788 vim_snprintf(errorreport, sizeof(errorreport),
6789 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6790 verb_msg((char_u *)errorreport);
6791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 return;
6793 }
6794 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6795
6796#if 0
6797 /* ID ourselves */
6798 smname.value = "vim";
6799 smname.length = 3;
6800 smnameprop.name = "SmProgram";
6801 smnameprop.type = "SmARRAY8";
6802 smnameprop.num_vals = 1;
6803 smnameprop.vals = &smname;
6804
6805 smprops[0] = &smnameprop;
6806 SmcSetProperties(xsmp.smcconn, 1, smprops);
6807#endif
6808}
6809
6810
6811/* Shut down XSMP comms. */
6812 void
6813xsmp_close()
6814{
6815 if (xsmp_icefd != -1)
6816 {
6817 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00006818 if (xsmp.clientid != NULL)
6819 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00006820 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 xsmp_icefd = -1;
6822 }
6823}
6824#endif /* USE_XSMP */
6825
6826
6827#ifdef EBCDIC
6828/* Translate character to its CTRL- value */
6829char CtrlTable[] =
6830{
6831/* 00 - 5E */
6832 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6833 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6834 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6835 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6836 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6837 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6838/* ^ */ 0x1E,
6839/* - */ 0x1F,
6840/* 61 - 6C */
6841 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6842/* _ */ 0x1F,
6843/* 6E - 80 */
6844 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6845/* a */ 0x01,
6846/* b */ 0x02,
6847/* c */ 0x03,
6848/* d */ 0x37,
6849/* e */ 0x2D,
6850/* f */ 0x2E,
6851/* g */ 0x2F,
6852/* h */ 0x16,
6853/* i */ 0x05,
6854/* 8A - 90 */
6855 0, 0, 0, 0, 0, 0, 0,
6856/* j */ 0x15,
6857/* k */ 0x0B,
6858/* l */ 0x0C,
6859/* m */ 0x0D,
6860/* n */ 0x0E,
6861/* o */ 0x0F,
6862/* p */ 0x10,
6863/* q */ 0x11,
6864/* r */ 0x12,
6865/* 9A - A1 */
6866 0, 0, 0, 0, 0, 0, 0, 0,
6867/* s */ 0x13,
6868/* t */ 0x3C,
6869/* u */ 0x3D,
6870/* v */ 0x32,
6871/* w */ 0x26,
6872/* x */ 0x18,
6873/* y */ 0x19,
6874/* z */ 0x3F,
6875/* AA - AC */
6876 0, 0, 0,
6877/* [ */ 0x27,
6878/* AE - BC */
6879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6880/* ] */ 0x1D,
6881/* BE - C0 */ 0, 0, 0,
6882/* A */ 0x01,
6883/* B */ 0x02,
6884/* C */ 0x03,
6885/* D */ 0x37,
6886/* E */ 0x2D,
6887/* F */ 0x2E,
6888/* G */ 0x2F,
6889/* H */ 0x16,
6890/* I */ 0x05,
6891/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6892/* J */ 0x15,
6893/* K */ 0x0B,
6894/* L */ 0x0C,
6895/* M */ 0x0D,
6896/* N */ 0x0E,
6897/* O */ 0x0F,
6898/* P */ 0x10,
6899/* Q */ 0x11,
6900/* R */ 0x12,
6901/* DA - DF */ 0, 0, 0, 0, 0, 0,
6902/* \ */ 0x1C,
6903/* E1 */ 0,
6904/* S */ 0x13,
6905/* T */ 0x3C,
6906/* U */ 0x3D,
6907/* V */ 0x32,
6908/* W */ 0x26,
6909/* X */ 0x18,
6910/* Y */ 0x19,
6911/* Z */ 0x3F,
6912/* EA - FF*/ 0, 0, 0, 0, 0, 0,
6913 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6914};
6915
6916char MetaCharTable[]=
6917{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6918 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6919 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6920 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6921 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6922};
6923
6924
6925/* TODO: Use characters NOT numbers!!! */
6926char CtrlCharTable[]=
6927{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6928 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6929 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6930 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6931 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6932};
6933
6934
6935#endif