1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * OS/2 port by Paul Slootman
5 * VMS merge by Zoltan Arpadffy
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.
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.
17 * A lot of this file was originally written by Juergen Weigert and later
18 * changed beyond recognition.
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?
28 #if !defined(__APPLE__) && !defined(__TANDEM)
29 # define select select_declared_wrong
35 # include "if_mzsch.h"
38 #include "os_unixx.h" /* unix includes for os_unix.c only */
41 # include <X11/SM/SMlib.h>
45 # include <selinux/selinux.h>
46 static int selinux_enabled
= -1;
50 * Use this prototype for select, some include files have a wrong prototype
55 # define select beos_select
61 # include <cygwin/version.h>
62 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
63 * for cygwin_conv_path() */
67 #if defined(HAVE_SELECT)
68 extern int select
__ARGS((int, fd_set
*, fd_set
*, fd_set
*, struct timeval
*));
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
77 /* #include <linux/keyboard.h> */
86 # define KG_CAPSSHIFT 8
88 static void gpm_close
__ARGS((void));
89 static int gpm_open
__ARGS((void));
90 static int mch_gpm_process
__ARGS((void));
94 # include <sys/consio.h>
95 # include <sys/fbio.h>
97 static int sysmouse_open
__ARGS((void));
98 static void sysmouse_close
__ARGS((void));
99 static RETSIGTYPE sig_sysmouse
__ARGS(SIGPROTOARG
);
103 * end of autoconf section. To be extended...
106 /* Are the following #ifdefs still required? And why? Is that for X11? */
108 #if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
117 #if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
118 # define SIGWINCH SIGWINDOW
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>
129 static Widget xterm_Shell
= (Widget
)0;
130 static void xterm_update
__ARGS((void));
133 # if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
134 Window x11_window
= 0;
136 Display
*x11_display
= NULL
;
139 static int get_x11_windis
__ARGS((void));
140 static void set_x11_title
__ARGS((char_u
*));
141 static void set_x11_icon
__ARGS((char_u
*));
146 static int get_x11_title
__ARGS((int));
147 static int get_x11_icon
__ARGS((int));
149 static char_u
*oldtitle
= NULL
;
150 static int did_set_title
= FALSE
;
151 static char_u
*oldicon
= NULL
;
152 static int did_set_icon
= FALSE
;
155 static void may_core_dump
__ARGS((void));
157 static int WaitForChar
__ARGS((long));
158 #if defined(__BEOS__)
159 int RealWaitForChar
__ARGS((int, long, int *));
161 static int RealWaitForChar
__ARGS((int, long, int *));
164 #ifdef FEAT_XCLIPBOARD
165 static int do_xterm_trace
__ARGS((void));
166 # define XT_TRACE_DELAY 50 /* delay for xterm tracing */
169 static void handle_resize
__ARGS((void));
171 #if defined(SIGWINCH)
172 static RETSIGTYPE sig_winch
__ARGS(SIGPROTOARG
);
175 static RETSIGTYPE catch_sigint
__ARGS(SIGPROTOARG
);
178 static RETSIGTYPE catch_sigpwr
__ARGS(SIGPROTOARG
);
180 #if defined(SIGALRM) && defined(FEAT_X11) \
181 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
182 # define SET_SIG_ALARM
183 static RETSIGTYPE sig_alarm
__ARGS(SIGPROTOARG
);
184 static int sig_alarm_called
;
186 static RETSIGTYPE deathtrap
__ARGS(SIGPROTOARG
);
188 static void catch_int_signal
__ARGS((void));
189 static void set_signals
__ARGS((void));
190 static void catch_signals
__ARGS((RETSIGTYPE (*func_deadly
)(), RETSIGTYPE (*func_other
)()));
192 static int have_wildcard
__ARGS((int, char_u
**));
193 static int have_dollars
__ARGS((int, char_u
**));
197 static int save_patterns
__ARGS((int num_pat
, char_u
**pat
, int *num_file
, char_u
***file
));
201 # define SIG_ERR ((RETSIGTYPE (*)())-1)
204 static int do_resize
= FALSE
;
206 static char_u
*extra_shell_arg
= NULL
;
207 static int show_shell_mess
= TRUE
;
209 static int deadly_signal
= 0; /* The signal we caught */
210 static int in_mch_delay
= FALSE
; /* sleeping in mch_delay() */
212 static int curr_tmode
= TMODE_COOK
; /* contains current terminal mode */
217 SmcConn smcconn
; /* The SM connection ID */
218 IceConn iceconn
; /* The ICE connection ID */
219 char *clientid
; /* The client ID for the current smc session */
220 Bool save_yourself
; /* If we're in the middle of a save_yourself */
221 Bool shutdown
; /* If we're in shutdown mode */
224 static xsmp_config_T xsmp
;
227 #ifdef SYS_SIGLIST_DECLARED
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
239 static struct signalinfo
241 int sig
; /* Signal number, eg. SIGSEGV etc */
242 char *name
; /* Signal name (not char_u!). */
243 char deadly
; /* Catch as a deadly signal? */
247 {SIGHUP
, "HUP", TRUE
},
250 {SIGQUIT
, "QUIT", TRUE
},
253 {SIGILL
, "ILL", TRUE
},
256 {SIGTRAP
, "TRAP", TRUE
},
259 {SIGABRT
, "ABRT", TRUE
},
262 {SIGEMT
, "EMT", TRUE
},
265 {SIGFPE
, "FPE", TRUE
},
268 {SIGBUS
, "BUS", TRUE
},
271 {SIGSEGV
, "SEGV", TRUE
},
274 {SIGSYS
, "SYS", TRUE
},
277 {SIGALRM
, "ALRM", FALSE
}, /* Perl's alarm() can trigger it */
280 {SIGTERM
, "TERM", TRUE
},
283 {SIGVTALRM
, "VTALRM", TRUE
},
285 #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. */
288 {SIGPROF
, "PROF", TRUE
},
291 {SIGXCPU
, "XCPU", TRUE
},
294 {SIGXFSZ
, "XFSZ", TRUE
},
297 {SIGUSR1
, "USR1", TRUE
},
299 #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
300 /* Used for sysmouse handling */
301 {SIGUSR2
, "USR2", TRUE
},
304 {SIGINT
, "INT", FALSE
},
307 {SIGWINCH
, "WINCH", FALSE
},
310 {SIGTSTP
, "TSTP", FALSE
},
313 {SIGPIPE
, "PIPE", FALSE
},
315 {-1, "Unknown!", FALSE
}
319 * Write s[len] to the screen.
326 ignored
= (int)write(1, (char *)s
, len
);
327 if (p_wd
) /* Unix is too fast, slow down a bit more */
328 RealWaitForChar(read_cmd_fd
, p_wd
, NULL
);
332 * mch_inchar(): low level input function.
333 * Get a characters from the keyboard.
334 * Return the number of characters that are available.
335 * If wtime == 0 do not wait for characters.
336 * If wtime == n wait a short time for characters.
337 * If wtime == -1 wait forever for characters.
340 mch_inchar(buf
, maxlen
, wtime
, tb_change_cnt
)
343 long wtime
; /* don't use "time", MIPS cannot handle it */
348 /* Check if window changed size while we were busy, perhaps the ":set
349 * columns=99" command was used. */
355 while (WaitForChar(wtime
) == 0) /* no character available */
357 if (!do_resize
) /* return if not interrupted by resize */
362 else /* wtime == -1 */
365 * If there is no character available within 'updatetime' seconds
366 * flush all the swap files to disk.
367 * Also done when interrupted by SIGWINCH.
369 if (WaitForChar(p_ut
) == 0)
372 if (trigger_cursorhold() && maxlen
>= 3
373 && !typebuf_changed(tb_change_cnt
))
377 buf
[2] = (int)KE_CURSORHOLD
;
385 for (;;) /* repeat until we got a character */
387 while (do_resize
) /* window changed size */
390 * we want to be interrupted by the winch signal
393 if (do_resize
) /* interrupted by SIGWINCH signal */
396 /* If input was put directly in typeahead buffer bail out here. */
397 if (typebuf_changed(tb_change_cnt
))
401 * For some terminals we only get one character at a time.
402 * We want the get all available characters, so we could keep on
403 * trying until none is available
404 * For some other terminals this is quite slow, that's why we don't do
407 len
= read_from_input_buf(buf
, (long)maxlen
);
413 for (i
= 0; i
< len
; i
++)
430 * return non-zero if a character is available
435 return WaitForChar(0L);
438 #if defined(HAVE_TOTAL_MEM) || defined(PROTO)
439 # ifdef HAVE_SYS_RESOURCE_H
440 # include <sys/resource.h>
442 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
443 # include <sys/sysctl.h>
445 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
446 # include <sys/sysinfo.h>
450 * Return total amount of memory available in Kbyte.
451 * Doesn't change when memory has been allocated.
455 mch_total_mem(special
)
459 return ulimit(3, 0L) >> 10; /* always 32MB? */
462 long_u shiftright
= 10; /* how much to shift "mem" right for Kbyte */
468 /* BSD way of getting the amount of RAM available. */
471 len
= sizeof(physmem
);
472 if (sysctl(mib
, 2, &physmem
, &len
, NULL
, 0) == 0)
473 mem
= (long_u
)physmem
;
476 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
479 struct sysinfo sinfo
;
481 /* Linux way of getting amount of RAM available */
482 if (sysinfo(&sinfo
) == 0)
484 # ifdef HAVE_SYSINFO_MEM_UNIT
485 /* avoid overflow as much as possible */
486 while (shiftright
> 0 && (sinfo
.mem_unit
& 1) == 0)
488 sinfo
.mem_unit
= sinfo
.mem_unit
>> 1;
491 mem
= sinfo
.totalram
* sinfo
.mem_unit
;
493 mem
= sinfo
.totalram
;
502 long pagesize
, pagecount
;
504 /* Solaris way of getting amount of RAM available */
505 pagesize
= sysconf(_SC_PAGESIZE
);
506 pagecount
= sysconf(_SC_PHYS_PAGES
);
507 if (pagesize
> 0 && pagecount
> 0)
509 /* avoid overflow as much as possible */
510 while (shiftright
> 0 && (pagesize
& 1) == 0)
512 pagesize
= (long_u
)pagesize
>> 1;
515 mem
= (long_u
)pagesize
* pagecount
;
520 /* Return the minimum of the physical memory and the user limit, because
521 * using more than the user limit may cause Vim to be terminated. */
522 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
526 if (getrlimit(RLIMIT_DATA
, &rlp
) == 0
527 && rlp
.rlim_cur
< ((rlim_t
)1 << (sizeof(long_u
) * 8 - 1))
528 # ifdef RLIM_INFINITY
529 && rlp
.rlim_cur
!= RLIM_INFINITY
531 && ((long_u
)rlp
.rlim_cur
>> 10) < (mem
>> shiftright
)
534 mem
= (long_u
)rlp
.rlim_cur
;
541 return mem
>> shiftright
;
542 return (long_u
)0x1fffff;
548 mch_delay(msec
, ignoreinput
)
554 long total
= msec
; /* remember original value */
559 /* Go to cooked mode without echo, to allow SIGINT interrupting us
560 * here. But we don't want QUIT to kill us (CTRL-\ used in a
561 * shell may produce SIGQUIT). */
563 old_tmode
= curr_tmode
;
564 if (curr_tmode
== TMODE_RAW
)
565 settmode(TMODE_SLEEP
);
568 * Everybody sleeps in a different way...
569 * Prefer nanosleep(), some versions of usleep() can only sleep up to
575 /* if total is large enough, wait by portions in p_mzq */
582 #ifdef HAVE_NANOSLEEP
586 ts
.tv_sec
= msec
/ 1000;
587 ts
.tv_nsec
= (msec
% 1000) * 1000000;
588 (void)nanosleep(&ts
, NULL
);
594 usleep((unsigned int)(999 * 1000));
597 usleep((unsigned int)(msec
* 1000));
600 poll(NULL
, 0, (int)msec
);
608 tv
.tv_sec
= msec
/ 1000;
609 tv
.tv_usec
= (msec
% 1000) * 1000;
611 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
612 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
614 select(0, NULL
, NULL
, NULL
, &tv
);
616 # endif /* __EMX__ */
617 # endif /* HAVE_SELECT */
618 # endif /* HAVE_NANOSLEEP */
619 #endif /* HAVE_USLEEP */
626 in_mch_delay
= FALSE
;
632 #if 0 /* disabled, no longer needed now that regmatch() is not recursive */
633 # if defined(HAVE_GETRLIMIT)
634 # define HAVE_STACK_LIMIT
638 #if defined(HAVE_STACK_LIMIT) \
639 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
640 # define HAVE_CHECK_STACK_GROWTH
642 * Support for checking for an almost-out-of-stack-space situation.
646 * Return a pointer to an item on the stack. Used to find out if the stack
649 static void check_stack_growth
__ARGS((char *p
));
650 static int stack_grows_downwards
;
653 * Find out if the stack grows upwards or downwards.
654 * "p" points to a variable on the stack of the caller.
657 check_stack_growth(p
)
662 stack_grows_downwards
= (p
> (char *)&i
);
666 #if defined(HAVE_STACK_LIMIT) || defined(PROTO)
667 static char *stack_limit
= NULL
;
669 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
670 # include <pthread.h>
671 # include <pthread_np.h>
675 * Find out until how var the stack can grow without getting into trouble.
676 * Called when starting up and when switching to the signal stack in
686 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
687 * limit doesn't fit in a long (rlim_cur might be "long long"). */
688 if (getrlimit(RLIMIT_STACK
, &rlp
) == 0
689 && rlp
.rlim_cur
< ((rlim_t
)1 << (sizeof(long_u
) * 8 - 1))
690 # ifdef RLIM_INFINITY
691 && rlp
.rlim_cur
!= RLIM_INFINITY
695 lim
= (long)rlp
.rlim_cur
;
696 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
701 /* On FreeBSD the initial thread always has a fixed stack size, no
702 * matter what the limits are set to. Normally it's 1 Mbyte. */
703 pthread_attr_init(&attr
);
704 if (pthread_attr_get_np(pthread_self(), &attr
) == 0)
706 pthread_attr_getstacksize(&attr
, &size
);
707 if (lim
> (long)size
)
710 pthread_attr_destroy(&attr
);
713 if (stack_grows_downwards
)
715 stack_limit
= (char *)((long)&i
- (lim
/ 16L * 15L));
716 if (stack_limit
>= (char *)&i
)
717 /* overflow, set to 1/16 of current stack position */
718 stack_limit
= (char *)((long)&i
/ 16L);
722 stack_limit
= (char *)((long)&i
+ (lim
/ 16L * 15L));
723 if (stack_limit
<= (char *)&i
)
724 stack_limit
= NULL
; /* overflow */
730 * Return FAIL when running out of stack space.
731 * "p" must point to any variable local to the caller that's on the stack.
737 if (stack_limit
!= NULL
)
739 if (stack_grows_downwards
)
744 else if (p
> stack_limit
)
751 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
753 * Support for using the signal stack.
754 * This helps when we run out of stack space, which causes a SIGSEGV. The
755 * signal handler then must run on another stack, since the normal stack is
760 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
763 # ifdef HAVE_SIGALTSTACK
764 static stack_t sigstk
; /* for sigaltstack() */
766 static struct sigstack sigstk
; /* for sigstack() */
769 static void init_signal_stack
__ARGS((void));
770 static char *signal_stack
;
775 if (signal_stack
!= NULL
)
777 # ifdef HAVE_SIGALTSTACK
778 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
779 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
780 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
781 * "struct sigaltstack" needs to be declared. */
782 extern int sigaltstack
__ARGS((const struct sigaltstack
*ss
, struct sigaltstack
*oss
));
786 sigstk
.ss_base
= signal_stack
;
788 sigstk
.ss_sp
= signal_stack
;
790 sigstk
.ss_size
= SIGSTKSZ
;
792 (void)sigaltstack(&sigstk
, NULL
);
794 sigstk
.ss_sp
= signal_stack
;
795 if (stack_grows_downwards
)
796 sigstk
.ss_sp
+= SIGSTKSZ
- 1;
797 sigstk
.ss_onstack
= 0;
798 (void)sigstack(&sigstk
, NULL
);
805 * We need correct potatotypes for a signal function, otherwise mean compilers
806 * will barf when the second argument to signal() is ``wrong''.
807 * Let me try it with a few tricky defines from my own osdef.h (jw).
809 #if defined(SIGWINCH)
812 sig_winch
SIGDEFARG(sigarg
)
814 /* this is not required on all systems, but it doesn't hurt anybody */
815 signal(SIGWINCH
, (RETSIGTYPE (*)())sig_winch
);
824 catch_sigint
SIGDEFARG(sigarg
)
826 /* this is not required on all systems, but it doesn't hurt anybody */
827 signal(SIGINT
, (RETSIGTYPE (*)())catch_sigint
);
836 catch_sigpwr
SIGDEFARG(sigarg
)
838 /* this is not required on all systems, but it doesn't hurt anybody */
839 signal(SIGPWR
, (RETSIGTYPE (*)())catch_sigpwr
);
841 * I'm not sure we get the SIGPWR signal when the system is really going
842 * down or when the batteries are almost empty. Just preserve the swap
843 * files and don't exit, that can't do any harm.
845 ml_sync_all(FALSE
, FALSE
);
852 * signal function for alarm().
856 sig_alarm
SIGDEFARG(sigarg
)
858 /* doesn't do anything, just to break a system call */
859 sig_alarm_called
= TRUE
;
864 #if (defined(HAVE_SETJMP_H) \
865 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
866 || defined(FEAT_LIBCALL))) \
869 * A simplistic version of setjmp() that only allows one level of using.
870 * Don't call twice before calling mch_endjmp()!.
873 * if (SETJMP(lc_jump_env) != 0)
883 * Note: Can't move SETJMP() here, because a function calling setjmp() must
884 * not return before the saved environment is used.
885 * Returns OK for normal return, FAIL when the protected code caused a
886 * problem and LONGJMP() was used.
906 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
907 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
908 * otherwise catching the signal only works once. */
915 * This function handles deadly signals.
916 * It tries to preserve any swap file and exit properly.
917 * (partly from Elvis).
920 deathtrap
SIGDEFARG(sigarg
)
922 static int entered
= 0; /* count the number of times we got here.
923 Note: when memory has been corrupted
924 this may get an arbitrary value! */
929 #if defined(HAVE_SETJMP_H)
931 * Catch a crash in protected code.
932 * Restores the environment saved in lc_jump_env, which looks like
933 * SETJMP() returns 1.
937 # if defined(SIGHASARG)
940 lc_active
= FALSE
; /* don't jump again */
941 LONGJMP(lc_jump_env
, 1);
948 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
949 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
950 * pressing CTRL-\, but we don't want Vim to exit then. */
951 if (in_mch_delay
&& sigarg
== SIGQUIT
)
955 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
956 * here. This avoids that a non-reentrant function is interrupted, e.g.,
957 * free(). Calling free() again may then cause a crash. */
979 && !vim_handle_signal(sigarg
))
983 /* Remember how often we have been called. */
987 /* Set the v:dying variable. */
988 set_vim_var_nr(VV_DYING
, (long)entered
);
991 #ifdef HAVE_STACK_LIMIT
992 /* Since we are now using the signal stack, need to reset the stack
993 * limit. Otherwise using a regexp will fail. */
998 /* This is for opening gdb the moment Vim crashes.
999 * You need to manually adjust the file name and Vim executable name.
1000 * Suggested by SungHyun Nam. */
1002 # define VI_GDB_FILE "/tmp/vimgdb"
1003 # define VIM_NAME "/usr/bin/vim"
1004 FILE *fp
= fopen(VI_GDB_FILE
, "w");
1012 , VIM_NAME
, getpid());
1014 system("xterm -e gdb -x "VI_GDB_FILE
);
1015 unlink(VI_GDB_FILE
);
1021 /* try to find the name of this signal */
1022 for (i
= 0; signal_info
[i
].sig
!= -1; i
++)
1023 if (sigarg
== signal_info
[i
].sig
)
1025 deadly_signal
= sigarg
;
1028 full_screen
= FALSE
; /* don't write message to the GUI, it might be
1029 * part of the problem... */
1031 * If something goes wrong after entering here, we may get here again.
1032 * When this happens, give a message and try to exit nicely (resetting the
1033 * terminal mode, etc.)
1034 * When this happens twice, just exit, don't even try to give a message,
1035 * stack may be corrupt or something weird.
1036 * When this still happens again (or memory was corrupted in such a way
1037 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1041 reset_signals(); /* don't catch any signals anymore */
1049 OUT_STR(_("Vim: Double signal, exiting\n"));
1055 sprintf((char *)IObuff
, _("Vim: Caught deadly signal %s\n"),
1056 signal_info
[i
].name
);
1058 sprintf((char *)IObuff
, _("Vim: Caught deadly signal\n"));
1060 preserve_exit(); /* preserve files and exit */
1073 * On Solaris with multi-threading, suspending might not work immediately.
1074 * Catch the SIGCONT signal, which will be used as an indication whether the
1075 * suspending has been done or not.
1077 static int sigcont_received
;
1078 static RETSIGTYPE sigcont_handler
__ARGS(SIGPROTOARG
);
1081 * signal handler for SIGCONT
1085 sigcont_handler
SIGDEFARG(sigarg
)
1087 sigcont_received
= TRUE
;
1093 * If the machine has job control, use it to suspend the program,
1094 * otherwise fake it by starting a new shell.
1099 /* BeOS does have SIGTSTP, but it doesn't work. */
1100 #if defined(SIGTSTP) && !defined(__BEOS__)
1101 out_flush(); /* needed to make cursor visible on some systems */
1102 settmode(TMODE_COOK
);
1103 out_flush(); /* needed to disable mouse on some systems */
1105 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1106 /* Since we are going to sleep, we can't respond to requests for the X
1107 * selections. Lose them, otherwise other applications will hang. But
1108 * first copy the text to cut buffer 0. */
1109 if (clip_star
.owned
|| clip_plus
.owned
)
1111 x11_export_final_selection();
1112 if (clip_star
.owned
)
1113 clip_lose_selection(&clip_star
);
1114 if (clip_plus
.owned
)
1115 clip_lose_selection(&clip_plus
);
1116 if (x11_display
!= NULL
)
1117 XFlush(x11_display
);
1122 sigcont_received
= FALSE
;
1124 kill(0, SIGTSTP
); /* send ourselves a STOP signal */
1126 /* When we didn't suspend immediately in the kill(), do it now. Happens
1127 * on multi-threaded Solaris. */
1128 if (!sigcont_received
)
1134 * Set oldtitle to NULL, so the current title is obtained again.
1139 settmode(TMODE_RAW
);
1140 need_check_timestamps
= TRUE
;
1141 did_check_timestamps
= FALSE
;
1156 #ifdef MACOS_CONVERT
1164 #if defined(SIGWINCH)
1166 * WINDOW CHANGE signal is handled with sig_winch().
1168 signal(SIGWINCH
, (RETSIGTYPE (*)())sig_winch
);
1172 * We want the STOP signal to work, to make mch_suspend() work.
1173 * For "rvim" the STOP signal is ignored.
1176 signal(SIGTSTP
, restricted
? SIG_IGN
: SIG_DFL
);
1179 signal(SIGCONT
, sigcont_handler
);
1183 * We want to ignore breaking of PIPEs.
1186 signal(SIGPIPE
, SIG_IGN
);
1194 * Ignore alarm signals (Perl's alarm() generates it).
1197 signal(SIGALRM
, SIG_IGN
);
1201 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1202 * work will be lost.
1205 signal(SIGPWR
, (RETSIGTYPE (*)())catch_sigpwr
);
1209 * Arrange for other signals to gracefully shutdown Vim.
1211 catch_signals(deathtrap
, SIG_ERR
);
1213 #if defined(FEAT_GUI) && defined(SIGHUP)
1215 * When the GUI is running, ignore the hangup signal.
1218 signal(SIGHUP
, SIG_IGN
);
1222 #if defined(SIGINT) || defined(PROTO)
1224 * Catch CTRL-C (only works while in Cooked mode).
1229 signal(SIGINT
, (RETSIGTYPE (*)())catch_sigint
);
1236 catch_signals(SIG_DFL
, SIG_DFL
);
1238 /* SIGCONT isn't in the list, because its default action is ignore */
1239 signal(SIGCONT
, SIG_DFL
);
1244 catch_signals(func_deadly
, func_other
)
1245 RETSIGTYPE (*func_deadly
)();
1246 RETSIGTYPE (*func_other
)();
1250 for (i
= 0; signal_info
[i
].sig
!= -1; i
++)
1251 if (signal_info
[i
].deadly
)
1253 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1254 struct sigaction sa
;
1256 /* Setup to use the alternate stack for the signal function. */
1257 sa
.sa_handler
= func_deadly
;
1258 sigemptyset(&sa
.sa_mask
);
1259 # if defined(__linux__) && defined(_REENTRANT)
1260 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1261 * thread handling in combination with using the alternate stack:
1262 * pthread library functions try to use the stack pointer to
1263 * identify the current thread, causing a SEGV signal, which
1264 * recursively calls deathtrap() and hangs. */
1267 sa
.sa_flags
= SA_ONSTACK
;
1269 sigaction(signal_info
[i
].sig
, &sa
, NULL
);
1271 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1274 /* Setup to use the alternate stack for the signal function. */
1275 sv
.sv_handler
= func_deadly
;
1277 sv
.sv_flags
= SV_ONSTACK
;
1278 sigvec(signal_info
[i
].sig
, &sv
, NULL
);
1280 signal(signal_info
[i
].sig
, func_deadly
);
1284 else if (func_other
!= SIG_ERR
)
1285 signal(signal_info
[i
].sig
, func_other
);
1289 * Handling of SIGHUP, SIGQUIT and SIGTERM:
1290 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1292 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1293 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1295 * Returns TRUE when Vim should exit.
1298 vim_handle_signal(sig
)
1301 static int got_signal
= 0;
1302 static int blocked
= TRUE
;
1306 case SIGNAL_BLOCK
: blocked
= TRUE
;
1309 case SIGNAL_UNBLOCK
: blocked
= FALSE
;
1310 if (got_signal
!= 0)
1312 kill(getpid(), got_signal
);
1317 default: if (!blocked
)
1318 return TRUE
; /* exit! */
1323 got_int
= TRUE
; /* break any loops */
1330 * Check_win checks whether we have an interactive stdout.
1334 mch_check_win(argc
, argv
)
1340 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1341 * name, mostly it's just "vim" and found in the path, which is unusable.
1343 if (mch_isFullName(argv
[0]))
1344 exe_name
= vim_strsave((char_u
*)argv
[0]);
1352 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1357 if (isatty(read_cmd_fd
))
1364 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1365 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1367 static void xopen_message
__ARGS((struct timeval
*tvp
));
1370 * Give a message about the elapsed time for opening the X window.
1374 struct timeval
*tvp
; /* must contain start time */
1376 struct timeval end_tv
;
1378 /* Compute elapsed time. */
1379 gettimeofday(&end_tv
, NULL
);
1380 smsg((char_u
*)_("Opening the X display took %ld msec"),
1381 (end_tv
.tv_sec
- tvp
->tv_sec
) * 1000L
1382 + (end_tv
.tv_usec
- tvp
->tv_usec
) / 1000L);
1387 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1389 * A few functions shared by X11 title and clipboard code.
1391 static int x_error_handler
__ARGS((Display
*dpy
, XErrorEvent
*error_event
));
1392 static int x_error_check
__ARGS((Display
*dpy
, XErrorEvent
*error_event
));
1393 static int x_connect_to_server
__ARGS((void));
1394 static int test_x11_window
__ARGS((Display
*dpy
));
1396 static int got_x_error
= FALSE
;
1399 * X Error handler, otherwise X just exits! (very rude) -- webb
1402 x_error_handler(dpy
, error_event
)
1404 XErrorEvent
*error_event
;
1406 XGetErrorText(dpy
, error_event
->error_code
, (char *)IObuff
, IOSIZE
);
1407 STRCAT(IObuff
, _("\nVim: Got X error\n"));
1409 /* We cannot print a message and continue, because no X calls are allowed
1410 * here (causes my system to hang). Silently continuing might be an
1412 preserve_exit(); /* preserve files and exit */
1414 return 0; /* NOTREACHED */
1418 * Another X Error handler, just used to check for errors.
1422 x_error_check(dpy
, error_event
)
1424 XErrorEvent
*error_event
;
1430 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1431 # if defined(HAVE_SETJMP_H)
1433 * An X IO Error handler, used to catch error while opening the display.
1435 static int x_IOerror_check
__ARGS((Display
*dpy
));
1439 x_IOerror_check(dpy
)
1442 /* This function should not return, it causes exit(). Longjump instead. */
1443 LONGJMP(lc_jump_env
, 1);
1450 * An X IO Error handler, used to catch terminal errors.
1452 static int x_IOerror_handler
__ARGS((Display
*dpy
));
1456 x_IOerror_handler(dpy
)
1462 xterm_Shell
= (Widget
)0;
1464 /* This function should not return, it causes exit(). Longjump instead. */
1465 LONGJMP(x_jump_env
, 1);
1472 * Return TRUE when connection to the X server is desired.
1475 x_connect_to_server()
1477 regmatch_T regmatch
;
1479 #if defined(FEAT_CLIENTSERVER)
1480 if (x_force_connect
)
1486 /* Check for a match with "exclude:" from 'clipboard'. */
1487 if (clip_exclude_prog
!= NULL
)
1489 regmatch
.rm_ic
= FALSE
; /* Don't ignore case */
1490 regmatch
.regprog
= clip_exclude_prog
;
1491 if (vim_regexec(®match
, T_NAME
, (colnr_T
)0))
1498 * Test if "dpy" and x11_window are valid by getting the window title.
1499 * I don't actually want it yet, so there may be a simpler call to use, but
1500 * this will cause the error handler x_error_check() to be called if anything
1501 * is wrong, such as the window pointer being invalid (as can happen when the
1502 * user changes his DISPLAY, but not his WINDOWID) -- webb
1505 test_x11_window(dpy
)
1508 int (*old_handler
)();
1509 XTextProperty text_prop
;
1511 old_handler
= XSetErrorHandler(x_error_check
);
1512 got_x_error
= FALSE
;
1513 if (XGetWMName(dpy
, x11_window
, &text_prop
))
1514 XFree((void *)text_prop
.value
);
1516 (void)XSetErrorHandler(old_handler
);
1518 if (p_verbose
> 0 && got_x_error
)
1519 verb_msg((char_u
*)_("Testing the X display failed"));
1521 return (got_x_error
? FAIL
: OK
);
1529 static int get_x11_thing
__ARGS((int get_title
, int test_only
));
1532 * try to get x11 window and display
1534 * return FAIL for failure, OK otherwise
1540 static int result
= -1;
1541 #define XD_NONE 0 /* x11_display not set here */
1542 #define XD_HERE 1 /* x11_display opened here */
1543 #define XD_GUI 2 /* x11_display used from gui.dpy */
1544 #define XD_XTERM 3 /* x11_display used from xterm_dpy */
1545 static int x11_display_from
= XD_NONE
;
1546 static int did_set_error_handler
= FALSE
;
1548 if (!did_set_error_handler
)
1550 /* X just exits if it finds an error otherwise! */
1551 (void)XSetErrorHandler(x_error_handler
);
1552 did_set_error_handler
= TRUE
;
1555 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
1559 * If the X11 display was opened here before, for the window where Vim
1560 * was started, close that one now to avoid a memory leak.
1562 if (x11_display_from
== XD_HERE
&& x11_display
!= NULL
)
1564 XCloseDisplay(x11_display
);
1565 x11_display_from
= XD_NONE
;
1567 if (gui_get_x11_windis(&x11_window
, &x11_display
) == OK
)
1569 x11_display_from
= XD_GUI
;
1575 else if (x11_display_from
== XD_GUI
)
1577 /* GUI must have stopped somehow, clear x11_display */
1580 x11_display_from
= XD_NONE
;
1584 /* When started with the "-X" argument, don't try connecting. */
1585 if (!x_connect_to_server())
1589 * If WINDOWID not set, should try another method to find out
1590 * what the current window number is. The only code I know for
1591 * this is very complicated.
1592 * We assume that zero is invalid for WINDOWID.
1594 if (x11_window
== 0 && (winid
= getenv("WINDOWID")) != NULL
)
1595 x11_window
= (Window
)atol(winid
);
1597 #ifdef FEAT_XCLIPBOARD
1598 if (xterm_dpy
!= NULL
&& x11_window
!= 0)
1600 /* We may have checked it already, but Gnome terminal can move us to
1601 * another window, so we need to check every time. */
1602 if (x11_display_from
!= XD_XTERM
)
1605 * If the X11 display was opened here before, for the window where
1606 * Vim was started, close that one now to avoid a memory leak.
1608 if (x11_display_from
== XD_HERE
&& x11_display
!= NULL
)
1609 XCloseDisplay(x11_display
);
1610 x11_display
= xterm_dpy
;
1611 x11_display_from
= XD_XTERM
;
1613 if (test_x11_window(x11_display
) == FAIL
)
1615 /* probably bad $WINDOWID */
1618 x11_display_from
= XD_NONE
;
1625 if (x11_window
== 0 || x11_display
== NULL
)
1628 if (result
!= -1) /* Have already been here and set this */
1629 return result
; /* Don't do all these X calls again */
1631 if (x11_window
!= 0 && x11_display
== NULL
)
1633 #ifdef SET_SIG_ALARM
1634 RETSIGTYPE (*sig_save
)();
1636 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1637 struct timeval start_tv
;
1640 gettimeofday(&start_tv
, NULL
);
1643 #ifdef SET_SIG_ALARM
1645 * Opening the Display may hang if the DISPLAY setting is wrong, or
1646 * the network connection is bad. Set an alarm timer to get out.
1648 sig_alarm_called
= FALSE
;
1649 sig_save
= (RETSIGTYPE (*)())signal(SIGALRM
,
1650 (RETSIGTYPE (*)())sig_alarm
);
1653 x11_display
= XOpenDisplay(NULL
);
1655 #ifdef SET_SIG_ALARM
1657 signal(SIGALRM
, (RETSIGTYPE (*)())sig_save
);
1658 if (p_verbose
> 0 && sig_alarm_called
)
1659 verb_msg((char_u
*)_("Opening the X display timed out"));
1661 if (x11_display
!= NULL
)
1663 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1667 xopen_message(&start_tv
);
1671 if (test_x11_window(x11_display
) == FAIL
)
1673 /* Maybe window id is bad */
1675 XCloseDisplay(x11_display
);
1679 x11_display_from
= XD_HERE
;
1682 if (x11_window
== 0 || x11_display
== NULL
)
1683 return (result
= FAIL
);
1684 return (result
= OK
);
1688 * Determine original x11 Window Title
1691 get_x11_title(test_only
)
1694 return get_x11_thing(TRUE
, test_only
);
1698 * Determine original x11 Window icon
1701 get_x11_icon(test_only
)
1706 retval
= get_x11_thing(FALSE
, test_only
);
1708 /* could not get old icon, use terminal name */
1709 if (oldicon
== NULL
&& !test_only
)
1711 if (STRNCMP(T_NAME
, "builtin_", 8) == 0)
1712 oldicon
= T_NAME
+ 8;
1721 get_x11_thing(get_title
, test_only
)
1722 int get_title
; /* get title string */
1725 XTextProperty text_prop
;
1729 if (get_x11_windis() == OK
)
1731 /* Get window/icon name if any */
1733 status
= XGetWMName(x11_display
, x11_window
, &text_prop
);
1735 status
= XGetWMIconName(x11_display
, x11_window
, &text_prop
);
1738 * If terminal is xterm, then x11_window may be a child window of the
1739 * outer xterm window that actually contains the window/icon name, so
1740 * keep traversing up the tree until a window with a title/icon is
1743 /* Previously this was only done for xterm and alikes. I don't see a
1744 * reason why it would fail for other terminal emulators.
1745 * if (term_is_xterm) */
1749 Window win
= x11_window
;
1751 unsigned int num_children
;
1753 while (!status
|| text_prop
.value
== NULL
)
1755 if (!XQueryTree(x11_display
, win
, &root
, &parent
, &children
,
1759 XFree((void *)children
);
1760 if (parent
== root
|| parent
== 0)
1765 status
= XGetWMName(x11_display
, win
, &text_prop
);
1767 status
= XGetWMIconName(x11_display
, win
, &text_prop
);
1770 if (status
&& text_prop
.value
!= NULL
)
1775 #ifdef FEAT_XFONTSET
1776 if (text_prop
.encoding
== XA_STRING
)
1780 oldtitle
= vim_strsave((char_u
*)text_prop
.value
);
1782 oldicon
= vim_strsave((char_u
*)text_prop
.value
);
1783 #ifdef FEAT_XFONTSET
1788 Status transform_status
;
1791 transform_status
= XmbTextPropertyToTextList(x11_display
,
1794 if (transform_status
>= Success
&& n
> 0 && cl
[0])
1797 oldtitle
= vim_strsave((char_u
*) cl
[0]);
1799 oldicon
= vim_strsave((char_u
*) cl
[0]);
1800 XFreeStringList(cl
);
1805 oldtitle
= vim_strsave((char_u
*)text_prop
.value
);
1807 oldicon
= vim_strsave((char_u
*)text_prop
.value
);
1812 XFree((void *)text_prop
.value
);
1818 /* Are Xutf8 functions available? Avoid error from old compilers. */
1819 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1820 # if X_HAVE_UTF8_STRING
1821 # define USE_UTF8_STRING
1826 * Set x11 Window Title
1828 * get_x11_windis() must be called before this and have returned OK
1831 set_x11_title(title
)
1834 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1835 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1836 * supported everywhere and STRING doesn't work for multi-byte titles.
1838 #ifdef USE_UTF8_STRING
1840 Xutf8SetWMProperties(x11_display
, x11_window
, (const char *)title
,
1841 NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1845 #if XtSpecificationRelease >= 4
1846 # ifdef FEAT_XFONTSET
1847 XmbSetWMProperties(x11_display
, x11_window
, (const char *)title
,
1848 NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1850 XTextProperty text_prop
;
1851 char *c_title
= (char *)title
;
1853 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
1854 (void)XStringListToTextProperty(&c_title
, 1, &text_prop
);
1855 XSetWMProperties(x11_display
, x11_window
, &text_prop
,
1856 NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1859 XStoreName(x11_display
, x11_window
, (char *)title
);
1862 XFlush(x11_display
);
1866 * Set x11 Window icon
1868 * get_x11_windis() must be called before this and have returned OK
1874 /* See above for comments about using X*SetWMProperties(). */
1875 #ifdef USE_UTF8_STRING
1877 Xutf8SetWMProperties(x11_display
, x11_window
, NULL
, (const char *)icon
,
1878 NULL
, 0, NULL
, NULL
, NULL
);
1882 #if XtSpecificationRelease >= 4
1883 # ifdef FEAT_XFONTSET
1884 XmbSetWMProperties(x11_display
, x11_window
, NULL
, (const char *)icon
,
1885 NULL
, 0, NULL
, NULL
, NULL
);
1887 XTextProperty text_prop
;
1888 char *c_icon
= (char *)icon
;
1890 (void)XStringListToTextProperty(&c_icon
, 1, &text_prop
);
1891 XSetWMProperties(x11_display
, x11_window
, NULL
, &text_prop
,
1892 NULL
, 0, NULL
, NULL
, NULL
);
1895 XSetIconName(x11_display
, x11_window
, (char *)icon
);
1898 XFlush(x11_display
);
1901 #else /* FEAT_X11 */
1905 get_x11_title(test_only
)
1912 get_x11_icon(test_only
)
1917 if (STRNCMP(T_NAME
, "builtin_", 8) == 0)
1918 oldicon
= T_NAME
+ 8;
1925 #endif /* FEAT_X11 */
1928 mch_can_restore_title()
1930 return get_x11_title(TRUE
);
1934 mch_can_restore_icon()
1936 return get_x11_icon(TRUE
);
1940 * Set the window title and icon.
1943 mch_settitle(title
, icon
)
1948 static int recursive
= 0;
1950 if (T_NAME
== NULL
) /* no terminal name (yet) */
1952 if (title
== NULL
&& icon
== NULL
) /* nothing to do */
1955 /* When one of the X11 functions causes a deadly signal, we get here again
1956 * recursively. Avoid hanging then (something is probably locked). */
1962 * if the window ID and the display is known, we may use X11 calls
1965 if (get_x11_windis() == OK
)
1968 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
1969 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
1976 * Note: if "t_TS" is set, title is set with escape sequence rather
1977 * than x11 calls, because the x11 calls don't always work
1979 if ((type
|| *T_TS
!= NUL
) && title
!= NULL
)
1981 if (oldtitle
== NULL
1985 ) /* first call but not in GUI, save title */
1986 (void)get_x11_title(FALSE
);
1988 if (*T_TS
!= NUL
) /* it's OK if t_fs is empty */
1989 term_settitle(title
);
1992 # ifdef FEAT_GUI_GTK
1993 if (!gui
.in_use
) /* don't do this if GTK+ is running */
1995 set_x11_title(title
); /* x11 */
1997 #if defined(FEAT_GUI_GTK) \
1998 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
1999 || defined(FEAT_GUI_MACVIM)
2001 gui_mch_settitle(title
, icon
);
2003 did_set_title
= TRUE
;
2006 if ((type
|| *T_CIS
!= NUL
) && icon
!= NULL
)
2012 ) /* first call, save icon */
2013 get_x11_icon(FALSE
);
2017 out_str(T_CIS
); /* set icon start */
2019 out_str(T_CIE
); /* set icon end */
2024 # ifdef FEAT_GUI_GTK
2025 if (!gui
.in_use
) /* don't do this if GTK+ is running */
2027 set_x11_icon(icon
); /* x11 */
2029 did_set_icon
= TRUE
;
2035 * Restore the window/icon title.
2036 * "which" is one of:
2037 * 1 only restore title
2038 * 2 only restore icon
2039 * 3 restore title and icon
2042 mch_restore_title(which
)
2045 /* only restore the title or icon when it has been set */
2046 mch_settitle(((which
& 1) && did_set_title
) ?
2047 (oldtitle
? oldtitle
: p_titleold
) : NULL
,
2048 ((which
& 2) && did_set_icon
) ? oldicon
: NULL
);
2051 #endif /* FEAT_TITLE */
2054 * Return TRUE if "name" looks like some xterm name.
2055 * Seiichi Sato mentioned that "mlterm" works like xterm.
2063 return (STRNICMP(name
, "xterm", 5) == 0
2064 || STRNICMP(name
, "nxterm", 6) == 0
2065 || STRNICMP(name
, "kterm", 5) == 0
2066 || STRNICMP(name
, "mlterm", 6) == 0
2067 || STRNICMP(name
, "rxvt", 4) == 0
2068 || STRCMP(name
, "builtin_xterm") == 0);
2071 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2073 * Return TRUE if "name" appears to be that of a terminal
2074 * known to support the xterm-style mouse protocol.
2075 * Relies on term_is_xterm having been set to its correct value.
2078 use_xterm_like_mouse(name
)
2081 return (name
!= NULL
2082 && (term_is_xterm
|| STRNICMP(name
, "screen", 6) == 0));
2086 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2088 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2089 * Return 1 for "xterm".
2090 * Return 2 for "xterm2".
2095 if (ttym_flags
== TTYM_XTERM2
)
2097 if (ttym_flags
== TTYM_XTERM
)
2109 return (STRNICMP(name
, "iris-ansi", 9) == 0
2110 || STRCMP(name
, "builtin_iris-ansi") == 0);
2118 return FALSE
; /* actually all ANSI comp. terminals should be here */
2119 /* catch VT100 - VT5xx */
2120 return ((STRNICMP(name
, "vt", 2) == 0
2121 && vim_strchr((char_u
*)"12345", name
[2]) != NULL
)
2122 || STRCMP(name
, "builtin_vt320") == 0);
2126 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2127 * This should include all windowed terminal emulators.
2130 vim_is_fastterm(name
)
2135 if (vim_is_xterm(name
) || vim_is_vt300(name
) || vim_is_iris(name
))
2137 return ( STRNICMP(name
, "hpterm", 6) == 0
2138 || STRNICMP(name
, "sun-cmd", 7) == 0
2139 || STRNICMP(name
, "screen", 6) == 0
2140 || STRNICMP(name
, "dtterm", 6) == 0);
2144 * Insert user name in s[len].
2145 * Return OK if a name found.
2148 mch_get_user_name(s
, len
)
2153 vim_strncpy(s
, (char_u
*)cuserid(NULL
), len
- 1);
2156 return mch_get_uname(getuid(), s
, len
);
2161 * Insert user name for "uid" in s[len].
2162 * Return OK if a name found.
2165 mch_get_uname(uid
, s
, len
)
2170 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2173 if ((pw
= getpwuid(uid
)) != NULL
2174 && pw
->pw_name
!= NULL
&& *(pw
->pw_name
) != NUL
)
2176 vim_strncpy(s
, (char_u
*)pw
->pw_name
, len
- 1);
2180 sprintf((char *)s
, "%d", (int)uid
); /* assumes s is long enough */
2181 return FAIL
; /* a number is not a name */
2185 * Insert host name is s[len].
2188 #ifdef HAVE_SYS_UTSNAME_H
2190 mch_get_host_name(s
, len
)
2194 struct utsname vutsname
;
2196 if (uname(&vutsname
) < 0)
2199 vim_strncpy(s
, (char_u
*)vutsname
.nodename
, len
- 1);
2201 #else /* HAVE_SYS_UTSNAME_H */
2203 # ifdef HAVE_SYS_SYSTEMINFO_H
2204 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2208 mch_get_host_name(s
, len
)
2213 vaxc$
gethostname((char *)s
, len
);
2215 gethostname((char *)s
, len
);
2217 s
[len
- 1] = NUL
; /* make sure it's terminated */
2219 #endif /* HAVE_SYS_UTSNAME_H */
2227 return (long)getpid();
2230 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2231 static char *strerror
__ARGS((int));
2237 extern int sys_nerr
;
2238 extern char *sys_errlist
[];
2241 if (err
> 0 && err
< sys_nerr
)
2242 return (sys_errlist
[err
]);
2243 sprintf(er
, "Error %d", err
);
2249 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2250 * Return OK for success, FAIL for failure.
2253 mch_dirname(buf
, len
)
2257 #if defined(USE_GETCWD)
2258 if (getcwd((char *)buf
, len
) == NULL
)
2260 STRCPY(buf
, strerror(errno
));
2265 return (getwd((char *)buf
) != NULL
? OK
: FAIL
);
2269 #if defined(OS2) || defined(PROTO)
2271 * Replace all slashes by backslashes.
2272 * When 'shellslash' set do it the other way around.
2288 * Get absolute file name into "buf[len]".
2290 * return FAIL for failure, OK for success
2293 mch_FullName(fname
, buf
, len
, force
)
2294 char_u
*fname
, *buf
;
2296 int force
; /* also expand when already absolute path */
2300 int only_drive
; /* file name is only a drive letter */
2304 static int dont_fchdir
= FALSE
; /* TRUE when fchdir() doesn't work */
2306 char_u olddir
[MAXPATHL
];
2310 char_u posix_fname
[MAXPATHL
]; /* Cygwin docs mention MAX_PATH, but
2311 it's not always defined */
2315 fname
= vms_fixfilename(fname
);
2320 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2322 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2323 cygwin_conv_path(CCP_WIN_A_TO_POSIX
, fname
, posix_fname
, MAXPATHL
);
2325 cygwin_conv_to_posix_path(fname
, posix_fname
);
2327 fname
= posix_fname
;
2330 /* expand it if forced or not an absolute path */
2331 if (force
|| !mch_isFullName(fname
))
2334 * If the file name has a path, change to that directory for a moment,
2335 * and then do the getwd() (and get back to where we were).
2336 * This will get the correct path name with "../" things.
2340 if (((p
= vim_strrchr(fname
, '/')) != NULL
)
2341 || ((p
= vim_strrchr(fname
, '\\')) != NULL
)
2342 || (((p
= vim_strchr(fname
, ':')) != NULL
) && ++only_drive
))
2344 if ((p
= vim_strrchr(fname
, '/')) != NULL
)
2349 * Use fchdir() if possible, it's said to be faster and more
2350 * reliable. But on SunOS 4 it might not work. Check this by
2351 * doing a fchdir() right now.
2355 fd
= open(".", O_RDONLY
| O_EXTRA
, 0);
2356 if (fd
>= 0 && fchdir(fd
) < 0)
2360 dont_fchdir
= TRUE
; /* don't try again */
2365 /* Only change directory when we are sure we can return to where
2366 * we are now. After doing "su" chdir(".") might not work. */
2371 (mch_dirname(olddir
, MAXPATHL
) == FAIL
2372 || mch_chdir((char *)olddir
) != 0))
2374 p
= NULL
; /* can't get current dir: don't chdir */
2381 * compensate for case where ':' from "D:" was the only
2382 * path separator detected in the file name; the _next_
2383 * character has to be removed, and then restored later.
2388 /* The directory is copied into buf[], to be able to remove
2389 * the file name without changing it (could be a string in
2390 * read-only memory) */
2391 if (p
- fname
>= len
)
2395 vim_strncpy(buf
, fname
, p
- fname
);
2396 if (mch_chdir((char *)buf
))
2412 if (mch_dirname(buf
, len
) == FAIL
)
2427 l
= mch_chdir((char *)olddir
);
2429 EMSG(_(e_prev_dir
));
2438 if (l
> 0 && buf
[l
- 1] != '/' && *fname
!= NUL
2439 && STRCMP(fname
, ".") != 0)
2445 /* Catch file names which are too long. */
2446 if (retval
== FAIL
|| STRLEN(buf
) + STRLEN(fname
) >= len
)
2449 /* Do not append ".", "/dir/." is equal to "/dir". */
2450 if (STRCMP(fname
, ".") != 0)
2457 * Return TRUE if "fname" does not depend on the current directory.
2460 mch_isFullName(fname
)
2464 return _fnisabs(fname
);
2467 return ( fname
[0] == '/' || fname
[0] == '.' ||
2468 strchr((char *)fname
,':') || strchr((char *)fname
,'"') ||
2469 (strchr((char *)fname
,'[') && strchr((char *)fname
,']'))||
2470 (strchr((char *)fname
,'<') && strchr((char *)fname
,'>')) );
2472 return (*fname
== '/' || *fname
== '~');
2477 #if defined(USE_FNAME_CASE) || defined(PROTO)
2479 * Set the case of the file name, if it already exists. This will cause the
2480 * file name to remain exactly the same.
2481 * Only required for file systems where case is ignored and preserved.
2485 fname_case(name
, len
)
2487 int len
; /* buffer size, only used when name gets longer */
2490 char_u
*slash
, *tail
;
2494 if (lstat((char *)name
, &st
) >= 0)
2496 /* Open the directory where the file is located. */
2497 slash
= vim_strrchr(name
, '/');
2500 dirp
= opendir(".");
2506 dirp
= opendir((char *)name
);
2513 while ((dp
= readdir(dirp
)) != NULL
)
2515 /* Only accept names that differ in case and are the same byte
2516 * length. TODO: accept different length name. */
2517 if (STRICMP(tail
, dp
->d_name
) == 0
2518 && STRLEN(tail
) == STRLEN(dp
->d_name
))
2520 char_u newname
[MAXPATHL
+ 1];
2523 /* Verify the inode is equal. */
2524 vim_strncpy(newname
, name
, MAXPATHL
);
2525 vim_strncpy(newname
+ (tail
- name
), (char_u
*)dp
->d_name
,
2526 MAXPATHL
- (tail
- name
));
2527 if (lstat((char *)newname
, &st2
) >= 0
2528 && st
.st_ino
== st2
.st_ino
2529 && st
.st_dev
== st2
.st_dev
)
2531 STRCPY(tail
, dp
->d_name
);
2544 * Get file permissions for 'name'.
2545 * Returns -1 when it doesn't exist.
2553 /* Keep the #ifdef outside of stat(), it may be a macro. */
2555 if (stat((char *)vms_fixfilename(name
), &statb
))
2557 if (stat((char *)name
, &statb
))
2561 /* The top bit makes the value negative, which means the file doesn't
2562 * exist. Remove the bit, we don't use it. */
2563 return statb
.st_mode
& ~S_ADDACE
;
2565 return statb
.st_mode
;
2570 * set file permission for 'name' to 'perm'
2572 * return FAIL for failure, OK otherwise
2575 mch_setperm(name
, perm
)
2579 return (chmod((char *)
2581 vms_fixfilename(name
),
2585 (mode_t
)perm
) == 0 ? OK
: FAIL
);
2588 #if defined(HAVE_ACL) || defined(PROTO)
2589 # ifdef HAVE_SYS_ACL_H
2590 # include <sys/acl.h>
2592 # ifdef HAVE_SYS_ACCESS_H
2593 # include <sys/access.h>
2596 # ifdef HAVE_SOLARIS_ACL
2597 typedef struct vim_acl_solaris_T
{
2599 aclent_t
*acl_entry
;
2600 } vim_acl_solaris_T
;
2603 #if defined(HAVE_SELINUX) || defined(PROTO)
2605 * Copy security info from "from_file" to "to_file".
2608 mch_copy_sec(from_file
, to_file
)
2612 if (from_file
== NULL
)
2615 if (selinux_enabled
== -1)
2616 selinux_enabled
= is_selinux_enabled();
2618 if (selinux_enabled
> 0)
2620 security_context_t from_context
= NULL
;
2621 security_context_t to_context
= NULL
;
2623 if (getfilecon((char *)from_file
, &from_context
) < 0)
2625 /* If the filesystem doesn't support extended attributes,
2626 the original had no special security context and the
2627 target cannot have one either. */
2628 if (errno
== EOPNOTSUPP
)
2631 MSG_PUTS(_("\nCould not get security context for "));
2632 msg_outtrans(from_file
);
2636 if (getfilecon((char *)to_file
, &to_context
) < 0)
2638 MSG_PUTS(_("\nCould not get security context for "));
2639 msg_outtrans(to_file
);
2641 freecon (from_context
);
2644 if (strcmp(from_context
, to_context
) != 0)
2646 if (setfilecon((char *)to_file
, from_context
) < 0)
2648 MSG_PUTS(_("\nCould not set security context for "));
2649 msg_outtrans(to_file
);
2653 freecon(to_context
);
2654 freecon(from_context
);
2657 #endif /* HAVE_SELINUX */
2660 * Return a pointer to the ACL of file "fname" in allocated memory.
2661 * Return NULL if the ACL is not available for whatever reason.
2667 vim_acl_T ret
= NULL
;
2668 #ifdef HAVE_POSIX_ACL
2669 ret
= (vim_acl_T
)acl_get_file((char *)fname
, ACL_TYPE_ACCESS
);
2671 #ifdef HAVE_SOLARIS_ACL
2672 vim_acl_solaris_T
*aclent
;
2674 aclent
= malloc(sizeof(vim_acl_solaris_T
));
2675 if ((aclent
->acl_cnt
= acl((char *)fname
, GETACLCNT
, 0, NULL
)) < 0)
2680 aclent
->acl_entry
= malloc(aclent
->acl_cnt
* sizeof(aclent_t
));
2681 if (acl((char *)fname
, GETACL
, aclent
->acl_cnt
, aclent
->acl_entry
) < 0)
2683 free(aclent
->acl_entry
);
2687 ret
= (vim_acl_T
)aclent
;
2689 #if defined(HAVE_AIX_ACL)
2693 aclsize
= sizeof(struct acl
);
2694 aclent
= malloc(aclsize
);
2695 if (statacl((char *)fname
, STX_NORMAL
, aclent
, aclsize
) < 0)
2697 if (errno
== ENOSPC
)
2699 aclsize
= aclent
->acl_len
;
2700 aclent
= realloc(aclent
, aclsize
);
2701 if (statacl((char *)fname
, STX_NORMAL
, aclent
, aclsize
) < 0)
2713 ret
= (vim_acl_T
)aclent
;
2714 #endif /* HAVE_AIX_ACL */
2715 #endif /* HAVE_SOLARIS_ACL */
2716 #endif /* HAVE_POSIX_ACL */
2721 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2724 mch_set_acl(fname
, aclent
)
2730 #ifdef HAVE_POSIX_ACL
2731 acl_set_file((char *)fname
, ACL_TYPE_ACCESS
, (acl_t
)aclent
);
2733 #ifdef HAVE_SOLARIS_ACL
2734 acl((char *)fname
, SETACL
, ((vim_acl_solaris_T
*)aclent
)->acl_cnt
,
2735 ((vim_acl_solaris_T
*)aclent
)->acl_entry
);
2738 chacl((char *)fname
, aclent
, ((struct acl
*)aclent
)->acl_len
);
2739 #endif /* HAVE_AIX_ACL */
2740 #endif /* HAVE_SOLARIS_ACL */
2741 #endif /* HAVE_POSIX_ACL */
2745 mch_free_acl(aclent
)
2750 #ifdef HAVE_POSIX_ACL
2751 acl_free((acl_t
)aclent
);
2753 #ifdef HAVE_SOLARIS_ACL
2754 free(((vim_acl_solaris_T
*)aclent
)->acl_entry
);
2759 #endif /* HAVE_AIX_ACL */
2760 #endif /* HAVE_SOLARIS_ACL */
2761 #endif /* HAVE_POSIX_ACL */
2766 * Set hidden flag for "name".
2773 /* can't hide a file */
2777 * return TRUE if "name" is a directory
2778 * return FALSE if "name" is not a directory
2779 * return FALSE for error
2787 if (*name
== NUL
) /* Some stat()s don't flag "" as an error. */
2789 if (stat((char *)name
, &statb
))
2791 #ifdef _POSIX_SOURCE
2792 return (S_ISDIR(statb
.st_mode
) ? TRUE
: FALSE
);
2794 return ((statb
.st_mode
& S_IFMT
) == S_IFDIR
? TRUE
: FALSE
);
2798 static int executable_file
__ARGS((char_u
*name
));
2801 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2804 executable_file(name
)
2809 if (stat((char *)name
, &st
))
2811 return S_ISREG(st
.st_mode
) && mch_access((char *)name
, X_OK
) == 0;
2815 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2816 * Return -1 if unknown.
2826 /* If it's an absolute or relative path don't need to use $PATH. */
2827 if (mch_isFullName(name
) || (name
[0] == '.' && (name
[1] == '/'
2828 || (name
[1] == '.' && name
[2] == '/'))))
2829 return executable_file(name
);
2831 p
= (char_u
*)getenv("PATH");
2832 if (p
== NULL
|| *p
== NUL
)
2834 buf
= alloc((unsigned)(STRLEN(name
) + STRLEN(p
) + 2));
2839 * Walk through all entries in $PATH to check if "name" exists there and
2840 * is an executable file.
2844 e
= (char_u
*)strchr((char *)p
, ':');
2847 if (e
- p
<= 1) /* empty entry means current dir */
2851 vim_strncpy(buf
, p
, e
- p
);
2855 retval
= executable_file(buf
);
2869 * Check what "name" is:
2870 * NODE_NORMAL: file or directory (or doesn't exist)
2871 * NODE_WRITABLE: writable device, socket, fifo, etc.
2872 * NODE_OTHER: non-writable things
2880 if (stat((char *)name
, &st
))
2882 if (S_ISREG(st
.st_mode
) || S_ISDIR(st
.st_mode
))
2885 if (S_ISBLK(st
.st_mode
)) /* block device isn't writable */
2888 /* Everything else is writable? */
2889 return NODE_WRITABLE
;
2895 #ifdef HAVE_CHECK_STACK_GROWTH
2898 check_stack_growth((char *)&i
);
2900 # ifdef HAVE_STACK_LIMIT
2907 * Setup an alternative stack for signals. Helps to catch signals when
2908 * running out of stack space.
2909 * Use of sigaltstack() is preferred, it's more portable.
2910 * Ignore any errors.
2912 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2913 signal_stack
= (char *)alloc(SIGSTKSZ
);
2914 init_signal_stack();
2918 #if defined(EXITFREE) || defined(PROTO)
2922 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2923 if (clip_star
.owned
)
2924 clip_lose_selection(&clip_star
);
2925 if (clip_plus
.owned
)
2926 clip_lose_selection(&clip_plus
);
2928 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2929 if (xterm_Shell
!= (Widget
)0)
2930 XtDestroyWidget(xterm_Shell
);
2931 # ifndef LESSTIF_VERSION
2932 /* Lesstif crashes here, lose some memory */
2933 if (xterm_dpy
!= NULL
)
2934 XtCloseDisplay(xterm_dpy
);
2935 if (app_context
!= (XtAppContext
)NULL
)
2937 XtDestroyApplicationContext(app_context
);
2939 x11_display
= NULL
; /* freed by XtDestroyApplicationContext() */
2944 /* Don't close the display for GTK 1, it is done in exit(). */
2945 # if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
2946 if (x11_display
!= NULL
2947 # ifdef FEAT_XCLIPBOARD
2948 && x11_display
!= xterm_dpy
2951 XCloseDisplay(x11_display
);
2953 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2954 vim_free(signal_stack
);
2955 signal_stack
= NULL
;
2964 static void exit_scroll
__ARGS((void));
2967 * Output a newline when exiting.
2968 * Make sure the newline goes to the same stream as the text.
2975 if (newline_on_exit
|| msg_didout
)
2977 if (msg_use_printf())
2989 restore_cterm_colors(); /* get original colors back */
2990 msg_clr_eos_force(); /* clear the rest of the display */
2991 windgoto((int)Rows
- 1, 0); /* may have moved the cursor */
3001 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3002 x11_export_final_selection();
3009 settmode(TMODE_COOK
);
3011 mch_restore_title(3); /* restore xterm title and icon name */
3014 * When t_ti is not empty but it doesn't cause swapping terminal
3015 * pages, need to output a newline when msg_didout is set. But when
3016 * t_ti does swap pages it should not go to the shell page. Do this
3017 * before stoptermcap().
3019 if (swapping_screen() && !newline_on_exit
)
3022 /* Stop termcap: May need to check for T_CRV response, which
3023 * requires RAW mode. */
3027 * A newline is only required after a message in the alternate screen.
3028 * This is set to TRUE by wait_return().
3030 if (!swapping_screen() || newline_on_exit
)
3033 /* Cursor may have been switched off without calling starttermcap()
3034 * when doing "vim -u vimrc" and vimrc contains ":q". */
3039 ml_close_all(TRUE
); /* remove all memfiles */
3046 #ifdef MACOS_CONVERT
3051 /* A core dump won't be created if the signal handler
3052 * doesn't return, so we can't call exit() */
3053 if (deadly_signal
!= 0)
3057 #ifdef FEAT_NETBEANS_INTG
3059 netbeans_send_disconnect();
3072 if (deadly_signal
!= 0)
3074 signal(deadly_signal
, SIG_DFL
);
3075 kill(getpid(), deadly_signal
); /* Die using the signal we caught */
3085 static int first
= TRUE
;
3087 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3088 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3090 * for "new" tty systems
3092 # ifdef HAVE_TERMIOS_H
3093 static struct termios told
;
3094 struct termios tnew
;
3096 static struct termio told
;
3103 # if defined(HAVE_TERMIOS_H)
3104 tcgetattr(read_cmd_fd
, &told
);
3106 ioctl(read_cmd_fd
, TCGETA
, &told
);
3111 if (tmode
== TMODE_RAW
)
3114 * ~ICRNL enables typing ^V^M
3116 tnew
.c_iflag
&= ~ICRNL
;
3117 tnew
.c_lflag
&= ~(ICANON
| ECHO
| ISIG
| ECHOE
3118 # if defined(IEXTEN) && !defined(__MINT__)
3119 | IEXTEN
/* IEXTEN enables typing ^V on SOLARIS */
3120 /* but it breaks function keys on MINT */
3123 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3124 tnew
.c_oflag
&= ~ONLCR
;
3126 tnew
.c_cc
[VMIN
] = 1; /* return after 1 char */
3127 tnew
.c_cc
[VTIME
] = 0; /* don't wait */
3129 else if (tmode
== TMODE_SLEEP
)
3130 tnew
.c_lflag
&= ~(ECHO
);
3132 # if defined(HAVE_TERMIOS_H)
3136 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3138 while (tcsetattr(read_cmd_fd
, TCSANOW
, &tnew
) == -1
3139 && errno
== EINTR
&& n
> 0)
3143 ioctl(read_cmd_fd
, TCSETA
, &tnew
);
3149 * for "old" tty systems
3152 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3154 static struct sgttyb ttybold
;
3155 struct sgttyb ttybnew
;
3160 ioctl(read_cmd_fd
, TIOCGETP
, &ttybold
);
3164 if (tmode
== TMODE_RAW
)
3166 ttybnew
.sg_flags
&= ~(CRMOD
| ECHO
);
3167 ttybnew
.sg_flags
|= RAW
;
3169 else if (tmode
== TMODE_SLEEP
)
3170 ttybnew
.sg_flags
&= ~(ECHO
);
3171 ioctl(read_cmd_fd
, TIOCSETN
, &ttybnew
);
3177 * Try to get the code for "t_kb" from the stty setting
3179 * Even if termcap claims a backspace key, the user's setting *should*
3180 * prevail. stty knows more about reality than termcap does, and if
3181 * somebody's usual erase key is DEL (which, for most BSD users, it will
3182 * be), they're going to get really annoyed if their erase key starts
3183 * doing forward deletes for no reason. (Eric Fischer)
3191 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3192 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3193 /* for "new" tty systems */
3194 # ifdef HAVE_TERMIOS_H
3195 struct termios keys
;
3200 # if defined(HAVE_TERMIOS_H)
3201 if (tcgetattr(read_cmd_fd
, &keys
) != -1)
3203 if (ioctl(read_cmd_fd
, TCGETA
, &keys
) != -1)
3206 buf
[0] = keys
.c_cc
[VERASE
];
3207 intr_char
= keys
.c_cc
[VINTR
];
3209 /* for "old" tty systems */
3212 if (ioctl(read_cmd_fd
, TIOCGETP
, &keys
) != -1)
3214 buf
[0] = keys
.sg_erase
;
3215 intr_char
= keys
.sg_kill
;
3218 add_termcode((char_u
*)"kb", buf
, FALSE
);
3221 * If <BS> and <DEL> are now the same, redefine <DEL>.
3223 p
= find_termcode((char_u
*)"kD");
3224 if (p
!= NULL
&& p
[0] == buf
[0] && p
[1] == buf
[1])
3228 } /* to keep cindent happy */
3234 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3236 * Set mouse clicks on or off.
3242 static int ison
= FALSE
;
3243 int xterm_mouse_vers
;
3245 if (on
== ison
) /* return quickly if nothing to do */
3248 xterm_mouse_vers
= use_xterm_mouse();
3249 if (xterm_mouse_vers
> 0)
3251 if (on
) /* enable mouse events, use mouse tracking if available */
3252 out_str_nf((char_u
*)
3253 (xterm_mouse_vers
> 1
3254 ? IF_EB("\033[?1002h", ESC_STR
"[?1002h")
3255 : IF_EB("\033[?1000h", ESC_STR
"[?1000h")));
3256 else /* disable mouse events, could probably always send the same */
3257 out_str_nf((char_u
*)
3258 (xterm_mouse_vers
> 1
3259 ? IF_EB("\033[?1002l", ESC_STR
"[?1002l")
3260 : IF_EB("\033[?1000l", ESC_STR
"[?1000l")));
3264 # ifdef FEAT_MOUSE_DEC
3265 else if (ttym_flags
== TTYM_DEC
)
3267 if (on
) /* enable mouse events */
3268 out_str_nf((char_u
*)"\033[1;2'z\033[1;3'{");
3269 else /* disable mouse events */
3270 out_str_nf((char_u
*)"\033['z");
3275 # ifdef FEAT_MOUSE_GPM
3291 # ifdef FEAT_SYSMOUSE
3296 if (sysmouse_open() == OK
)
3307 # ifdef FEAT_MOUSE_JSB
3312 /* D - Enable Mouse up/down messages
3313 * L - Enable Left Button Reporting
3314 * M - Enable Middle Button Reporting
3315 * R - Enable Right Button Reporting
3316 * K - Enable SHIFT and CTRL key Reporting
3317 * + - Enable Advanced messaging of mouse moves and up/down messages
3319 * # - Numeric value of mouse pointer required
3320 * 0 = Multiview 2000 cursor, used as standard
3322 * 2 = Windows I Beam
3323 * 3 = Windows Hour Glass
3324 * 4 = Windows Cross Hair
3325 * 5 = Windows UP Arrow
3327 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3328 out_str_nf((char_u
*)IF_EB("\033[0~ZwLMRK1Q\033\\",
3329 ESC_STR
"[0~ZwLMRK1Q" ESC_STR
"\\"));
3331 out_str_nf((char_u
*)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3332 ESC_STR
"[0~ZwLMRK+1Q" ESC_STR
"\\"));
3338 out_str_nf((char_u
*)IF_EB("\033[0~ZwQ\033\\",
3339 ESC_STR
"[0~ZwQ" ESC_STR
"\\"));
3344 # ifdef FEAT_MOUSE_PTERM
3347 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3349 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3351 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3358 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3361 check_mouse_termcode()
3363 # ifdef FEAT_MOUSE_XTERM
3364 if (use_xterm_mouse()
3370 set_mouse_termcode(KS_MOUSE
, (char_u
*)(term_is_8bit(T_NAME
)
3371 ? IF_EB("\233M", CSI_STR
"M")
3372 : IF_EB("\033[M", ESC_STR
"[M")));
3373 if (*p_mouse
!= NUL
)
3375 /* force mouse off and maybe on to send possibly new mouse
3376 * activation sequence to the xterm, with(out) drag tracing. */
3377 mch_setmouse(FALSE
);
3382 del_mouse_termcode(KS_MOUSE
);
3385 # ifdef FEAT_MOUSE_GPM
3386 if (!use_xterm_mouse()
3391 set_mouse_termcode(KS_MOUSE
, (char_u
*)IF_EB("\033MG", ESC_STR
"MG"));
3394 # ifdef FEAT_SYSMOUSE
3395 if (!use_xterm_mouse()
3400 set_mouse_termcode(KS_MOUSE
, (char_u
*)IF_EB("\033MS", ESC_STR
"MS"));
3403 # ifdef FEAT_MOUSE_JSB
3404 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3405 if (!use_xterm_mouse()
3410 set_mouse_termcode(KS_JSBTERM_MOUSE
,
3411 (char_u
*)IF_EB("\033[0~zw", ESC_STR
"[0~zw"));
3413 del_mouse_termcode(KS_JSBTERM_MOUSE
);
3416 # ifdef FEAT_MOUSE_NET
3417 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3418 * define it in the GUI or when using an xterm. */
3419 if (!use_xterm_mouse()
3424 set_mouse_termcode(KS_NETTERM_MOUSE
,
3425 (char_u
*)IF_EB("\033}", ESC_STR
"}"));
3427 del_mouse_termcode(KS_NETTERM_MOUSE
);
3430 # ifdef FEAT_MOUSE_DEC
3431 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3432 if (!use_xterm_mouse()
3437 set_mouse_termcode(KS_DEC_MOUSE
, (char_u
*)(term_is_8bit(T_NAME
)
3438 ? IF_EB("\233", CSI_STR
) : IF_EB("\033[", ESC_STR
"[")));
3440 del_mouse_termcode(KS_DEC_MOUSE
);
3442 # ifdef FEAT_MOUSE_PTERM
3443 /* same as the dec mouse */
3444 if (!use_xterm_mouse()
3449 set_mouse_termcode(KS_PTERM_MOUSE
,
3450 (char_u
*) IF_EB("\033[", ESC_STR
"["));
3452 del_mouse_termcode(KS_PTERM_MOUSE
);
3458 * set screen mode, always fails.
3465 EMSG(_(e_screenmode
));
3472 * Try to get the current window size:
3473 * 1. with an ioctl(), most accurate method
3474 * 2. from the environment variables LINES and COLUMNS
3475 * 3. from the termcap
3476 * 4. keep using the old values
3477 * Return OK when size could be determined, FAIL otherwise.
3487 * For OS/2 use _scrsize().
3500 * 1. try using an ioctl. It is the most accurate method.
3502 * Try using TIOCGWINSZ first, some systems that have it also define
3503 * TIOCGSIZE but don't have a struct ttysize.
3510 /* When stdout is not a tty, use stdin for the ioctl(). */
3511 if (!isatty(fd
) && isatty(read_cmd_fd
))
3513 if (ioctl(fd
, TIOCGWINSZ
, &ws
) == 0)
3515 columns
= ws
.ws_col
;
3519 # else /* TIOCGWINSZ */
3525 /* When stdout is not a tty, use stdin for the ioctl(). */
3526 if (!isatty(fd
) && isatty(read_cmd_fd
))
3528 if (ioctl(fd
, TIOCGSIZE
, &ts
) == 0)
3530 columns
= ts
.ts_cols
;
3534 # endif /* TIOCGSIZE */
3535 # endif /* TIOCGWINSZ */
3538 * 2. get size from environment
3539 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3540 * the ioctl() values!
3542 if (columns
== 0 || rows
== 0 || vim_strchr(p_cpo
, CPO_TSIZE
) != NULL
)
3544 if ((p
= (char_u
*)getenv("LINES")))
3545 rows
= atoi((char *)p
);
3546 if ((p
= (char_u
*)getenv("COLUMNS")))
3547 columns
= atoi((char *)p
);
3552 * 3. try reading "co" and "li" entries from termcap
3554 if (columns
== 0 || rows
== 0)
3555 getlinecol(&columns
, &rows
);
3559 * 4. If everything fails, use the old values
3561 if (columns
<= 0 || rows
<= 0)
3570 * Try to set the window size to Rows and Columns.
3578 * NOTE: if you get an error here that term_set_winsize() is
3579 * undefined, check the output of configure. It could probably not
3580 * find a ncurses, termcap or termlib library.
3582 term_set_winsize((int)Rows
, (int)Columns
);
3584 screen_start(); /* don't know where cursor is now */
3591 * Rows and/or Columns has changed.
3596 /* Nothing to do. */
3600 static void append_ga_line
__ARGS((garray_T
*gap
));
3603 * Append the text in "gap" below the cursor line and clear "gap".
3609 /* Remove trailing CR. */
3612 && ((char_u
*)gap
->ga_data
)[gap
->ga_len
- 1] == CAR
)
3614 ga_append(gap
, NUL
);
3615 ml_append(curwin
->w_cursor
.lnum
++, gap
->ga_data
, 0, FALSE
);
3621 mch_call_shell(cmd
, options
)
3623 int options
; /* SHELL_*, see vim.h */
3629 int tmode
= cur_tmode
;
3630 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3633 char_u
*newcmd
; /* only needed for unix */
3636 * Set the preferred shell in the EMXSHELL environment variable (but
3637 * only if it is different from what is already in the environment).
3638 * Emx then takes care of whether to use "/c" or "-c" in an
3639 * intelligent way. Simply pass the whole thing to emx's system() call.
3640 * Emx also starts an interactive shell if system() is passed an empty
3645 if (((old
= (char_u
*)getenv("EMXSHELL")) == NULL
) || STRCMP(old
, p_sh
))
3647 /* should check HAVE_SETENV, but I know we don't have it. */
3648 p
= alloc(10 + strlen(p_sh
));
3651 sprintf((char *)p
, "EMXSHELL=%s", p_sh
);
3652 putenv((char *)p
); /* don't free the pointer! */
3659 if (options
& SHELL_COOKED
)
3660 settmode(TMODE_COOK
); /* set to normal mode */
3664 x
= system(""); /* this starts an interactive shell in emx */
3666 x
= system((char *)cmd
);
3667 /* system() returns -1 when error occurs in starting shell */
3668 if (x
== -1 && !emsg_silent
)
3670 MSG_PUTS(_("\nCannot execute shell "));
3674 # else /* not __EMX__ */
3676 x
= system((char *)p_sh
);
3680 if (ofn
= strchr((char *)cmd
, '>'))
3682 if (ifn
= strchr((char *)cmd
, '<'))
3687 p
= strchr(ifn
,' '); /* chop off any trailing spaces */
3692 x
= vms_sys((char *)cmd
, ofn
, ifn
);
3694 x
= system((char *)cmd
);
3696 newcmd
= lalloc(STRLEN(p_sh
)
3697 + (extra_shell_arg
== NULL
? 0 : STRLEN(extra_shell_arg
))
3698 + STRLEN(p_shcf
) + STRLEN(cmd
) + 4, TRUE
);
3703 sprintf((char *)newcmd
, "%s %s %s %s", p_sh
,
3704 extra_shell_arg
== NULL
? "" : (char *)extra_shell_arg
,
3707 x
= system((char *)newcmd
);
3713 x
= vms_sys_status(x
);
3718 MSG_PUTS(_("\nCannot execute shell sh\n"));
3719 # endif /* __EMX__ */
3720 else if (x
&& !(options
& SHELL_SILENT
))
3722 MSG_PUTS(_("\nshell returned "));
3723 msg_outnum((long)x
);
3727 if (tmode
== TMODE_RAW
)
3728 settmode(TMODE_RAW
); /* set to raw mode */
3734 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3736 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3737 127, some shells use that already */
3739 char_u
*newcmd
= NULL
;
3743 # ifdef HAVE_UNION_WAIT
3754 int pty_master_fd
= -1; /* for pty's */
3756 int pty_slave_fd
= -1;
3759 int fd_toshell
[2]; /* for pipes */
3760 int fd_fromshell
[2];
3761 int pipe_error
= FALSE
;
3765 static char envbuf_Rows
[20];
3766 static char envbuf_Columns
[20];
3768 int did_settmode
= FALSE
; /* settmode(TMODE_RAW) called */
3771 if (options
& SHELL_COOKED
)
3772 settmode(TMODE_COOK
); /* set to normal mode */
3774 newcmd
= vim_strsave(p_sh
);
3775 if (newcmd
== NULL
) /* out of memory */
3779 * Do this loop twice:
3780 * 1: find number of arguments
3781 * 2: separate them and build argv[]
3783 for (i
= 0; i
< 2; ++i
)
3791 argv
[argc
] = (char *)p
;
3793 while (*p
&& (inquote
|| (*p
!= ' ' && *p
!= TAB
)))
3807 argv
= (char **)alloc((unsigned)((argc
+ 4) * sizeof(char *)));
3808 if (argv
== NULL
) /* out of memory */
3814 if (extra_shell_arg
!= NULL
)
3815 argv
[argc
++] = (char *)extra_shell_arg
;
3816 argv
[argc
++] = (char *)p_shcf
;
3817 argv
[argc
++] = (char *)cmd
;
3822 * For the GUI, when writing the output into the buffer and when reading
3823 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3824 * of the executed command into the Vim window. Or use a pipe.
3826 if ((options
& (SHELL_READ
|SHELL_WRITE
))
3828 || (gui
.in_use
&& show_shell_mess
)
3834 * Try to open a master pty.
3835 * If this works, open the slave pty.
3836 * If the slave can't be opened, close the master pty.
3838 if (p_guipty
&& !(options
& (SHELL_READ
|SHELL_WRITE
)))
3840 pty_master_fd
= OpenPTY(&tty_name
); /* open pty */
3841 if (pty_master_fd
>= 0 && ((pty_slave_fd
=
3842 open(tty_name
, O_RDWR
| O_EXTRA
, 0)) < 0))
3844 close(pty_master_fd
);
3849 * If not opening a pty or it didn't work, try using pipes.
3851 if (pty_master_fd
< 0)
3854 pipe_error
= (pipe(fd_toshell
) < 0);
3855 if (!pipe_error
) /* pipe create OK */
3857 pipe_error
= (pipe(fd_fromshell
) < 0);
3858 if (pipe_error
) /* pipe create failed */
3860 close(fd_toshell
[0]);
3861 close(fd_toshell
[1]);
3866 MSG_PUTS(_("\nCannot create pipes\n"));
3872 if (!pipe_error
) /* pty or pipe opened or not used */
3875 beos_cleanup_read_thread();
3878 if ((pid
= fork()) == -1) /* maybe we should use vfork() */
3880 MSG_PUTS(_("\nCannot fork\n"));
3881 if ((options
& (SHELL_READ
|SHELL_WRITE
))
3883 || (gui
.in_use
&& show_shell_mess
)
3888 if (pty_master_fd
>= 0) /* close the pseudo tty */
3890 close(pty_master_fd
);
3891 close(pty_slave_fd
);
3893 else /* close the pipes */
3896 close(fd_toshell
[0]);
3897 close(fd_toshell
[1]);
3898 close(fd_fromshell
[0]);
3899 close(fd_fromshell
[1]);
3903 else if (pid
== 0) /* child */
3905 reset_signals(); /* handle signals normally */
3907 if (!show_shell_mess
|| (options
& SHELL_EXPAND
))
3912 * Don't want to show any message from the shell. Can't just
3913 * close stdout and stderr though, because some systems will
3914 * break if you try to write to them after that, so we must
3915 * use dup() to replace them with something else -- webb
3916 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3917 * waiting for input.
3919 fd
= open("/dev/null", O_RDWR
| O_EXTRA
, 0);
3925 * If any of these open()'s and dup()'s fail, we just continue
3926 * anyway. It's not fatal, and on most systems it will make
3927 * no difference at all. On a few it will cause the execvp()
3928 * to exit with a non-zero status even when the completion
3929 * could be done, which is nothing too serious. If the open()
3930 * or dup() failed we'd just do the same thing ourselves
3935 ignored
= dup(fd
); /* To replace stdin (fd 0) */
3936 ignored
= dup(fd
); /* To replace stdout (fd 1) */
3937 ignored
= dup(fd
); /* To replace stderr (fd 2) */
3939 /* Don't need this now that we've duplicated it */
3943 else if ((options
& (SHELL_READ
|SHELL_WRITE
))
3951 /* Create our own process group, so that the child and all its
3952 * children can be kill()ed. Don't do this when using pipes,
3953 * because stdin is not a tty, we would lose /dev/tty. */
3958 if (pty_slave_fd
>= 0)
3960 /* push stream discipline modules */
3961 if (options
& SHELL_COOKED
)
3962 SetupSlavePTY(pty_slave_fd
);
3963 # if defined(TIOCSCTTY) && !defined(FEAT_GUI_MACVIM)
3964 /* Try to become controlling tty (probably doesn't work,
3965 * unless run by root) */
3966 ioctl(pty_slave_fd
, TIOCSCTTY
, (char *)NULL
);
3970 /* Simulate to have a dumb terminal (for now) */
3972 setenv("TERM", "dumb", 1);
3973 sprintf((char *)envbuf
, "%ld", Rows
);
3974 setenv("ROWS", (char *)envbuf
, 1);
3975 sprintf((char *)envbuf
, "%ld", Rows
);
3976 setenv("LINES", (char *)envbuf
, 1);
3977 sprintf((char *)envbuf
, "%ld", Columns
);
3978 setenv("COLUMNS", (char *)envbuf
, 1);
3981 * Putenv does not copy the string, it has to remain valid.
3982 * Use a static array to avoid losing allocated memory.
3984 putenv("TERM=dumb");
3985 sprintf(envbuf_Rows
, "ROWS=%ld", Rows
);
3986 putenv(envbuf_Rows
);
3987 sprintf(envbuf_Rows
, "LINES=%ld", Rows
);
3988 putenv(envbuf_Rows
);
3989 sprintf(envbuf_Columns
, "COLUMNS=%ld", Columns
);
3990 putenv(envbuf_Columns
);
3994 * stderr is only redirected when using the GUI, so that a
3995 * program like gpg can still access the terminal to get a
3996 * passphrase using stderr.
3999 if (pty_master_fd
>= 0)
4001 close(pty_master_fd
); /* close master side of pty */
4003 /* set up stdin/stdout/stderr for the child */
4005 ignored
= dup(pty_slave_fd
);
4007 ignored
= dup(pty_slave_fd
);
4011 ignored
= dup(pty_slave_fd
);
4014 close(pty_slave_fd
); /* has been dupped, close it now */
4019 /* set up stdin for the child */
4020 close(fd_toshell
[1]);
4022 ignored
= dup(fd_toshell
[0]);
4023 close(fd_toshell
[0]);
4025 /* set up stdout for the child */
4026 close(fd_fromshell
[0]);
4028 ignored
= dup(fd_fromshell
[1]);
4029 close(fd_fromshell
[1]);
4034 /* set up stderr for the child */
4043 * There is no type cast for the argv, because the type may be
4044 * different on different machines. This may cause a warning
4045 * message with strict compilers, don't worry about it.
4046 * Call _exit() instead of exit() to avoid closing the connection
4047 * to the X server (esp. with GTK, which uses atexit()).
4049 execvp(argv
[0], argv
);
4050 _exit(EXEC_FAILED
); /* exec failed, return failure code */
4055 * While child is running, ignore terminating signals.
4056 * Do catch CTRL-C, so that "got_int" is set.
4058 catch_signals(SIG_IGN
, SIG_ERR
);
4062 * For the GUI we redirect stdin, stdout and stderr to our window.
4063 * This is also used to pipe stdin/stdout to/from the external
4066 if ((options
& (SHELL_READ
|SHELL_WRITE
))
4068 || (gui
.in_use
&& show_shell_mess
)
4072 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4073 char_u buffer
[BUFLEN
+ 1];
4075 int buffer_off
= 0; /* valid bytes in buffer[] */
4077 char_u ta_buf
[BUFLEN
+ 1]; /* TypeAHead */
4078 int ta_len
= 0; /* valid bytes in ta_buf[] */
4089 if (pty_master_fd
>= 0)
4091 close(pty_slave_fd
); /* close slave side of pty */
4092 fromshell_fd
= pty_master_fd
;
4093 toshell_fd
= dup(pty_master_fd
);
4098 close(fd_toshell
[0]);
4099 close(fd_fromshell
[1]);
4100 toshell_fd
= fd_toshell
[1];
4101 fromshell_fd
= fd_fromshell
[0];
4105 * Write to the child if there are typed characters.
4106 * Read from the child if there are characters available.
4107 * Repeat the reading a few times if more characters are
4108 * available. Need to check for typed keys now and then, but
4109 * not too often (delays when no chars are available).
4110 * This loop is quit if no characters can be read from the pty
4111 * (WaitForChar detected special condition), or there are no
4112 * characters available and the child has exited.
4113 * Only check if the child has exited when there is no more
4114 * output. The child may exit before all the output has
4117 * Currently this busy loops!
4118 * This can probably dead-lock when the write blocks!
4120 p_more_save
= p_more
;
4123 State
= EXTERNCMD
; /* don't redraw at window resize */
4125 if ((options
& SHELL_WRITE
) && toshell_fd
>= 0)
4127 /* Fork a process that will write the lines to the
4128 * external program. */
4129 if ((wpid
= fork()) == -1)
4131 MSG_PUTS(_("\nCannot fork\n"));
4135 linenr_T lnum
= curbuf
->b_op_start
.lnum
;
4137 char_u
*lp
= ml_get(lnum
);
4142 close(fromshell_fd
);
4145 l
= STRLEN(lp
+ written
);
4148 else if (lp
[written
] == NL
)
4149 /* NL -> NUL translation */
4150 len
= write(toshell_fd
, "", (size_t)1);
4153 s
= vim_strchr(lp
+ written
, NL
);
4154 len
= write(toshell_fd
, (char *)lp
+ written
,
4155 s
== NULL
? l
: s
- (lp
+ written
));
4159 /* Finished a line, add a NL, unless this line
4160 * should not have one. */
4161 if (lnum
!= curbuf
->b_op_end
.lnum
4163 || (lnum
!= write_no_eol_lnum
4165 curbuf
->b_ml
.ml_line_count
4166 || curbuf
->b_p_eol
)))
4167 ignored
= write(toshell_fd
, "\n",
4170 if (lnum
> curbuf
->b_op_end
.lnum
)
4172 /* finished all the lines, close pipe */
4192 if (options
& SHELL_READ
)
4193 ga_init2(&ga
, 1, BUFLEN
);
4200 * Check if keys have been typed, write them to the child
4202 * Don't do this if we are expanding wild cards (would eat
4204 * Don't do this when filtering and terminal is in cooked
4205 * mode, the shell command will handle the I/O. Avoids
4206 * that a typed password is echoed for ssh or gpg command.
4207 * Don't get characters when the child has already
4208 * finished (wait_pid == 0).
4209 * Don't get extra characters when we already have one.
4210 * Don't read characters unless we didn't get output for a
4211 * while, avoids that ":r !ls" eats typeahead.
4214 if (!(options
& SHELL_EXPAND
)
4216 (SHELL_READ
|SHELL_WRITE
|SHELL_COOKED
))
4217 != (SHELL_READ
|SHELL_WRITE
|SHELL_COOKED
)
4225 && (len
= ui_inchar(ta_buf
,
4226 BUFLEN
, 10L, 0)) > 0)))
4230 * Check for CTRL-C: send interrupt signal to child.
4231 * Check for CTRL-D: EOF, close pipe to child.
4233 if (len
== 1 && (pty_master_fd
< 0 || cmd
!= NULL
))
4237 * Send SIGINT to the child's group or all
4238 * processes in our group.
4240 if (ta_buf
[ta_len
] == Ctrl_C
4241 || ta_buf
[ta_len
] == intr_char
)
4252 if (pty_master_fd
< 0 && toshell_fd
>= 0
4253 && ta_buf
[ta_len
] == Ctrl_D
)
4260 /* replace K_BS by <BS> and K_DEL by <DEL> */
4261 for (i
= ta_len
; i
< ta_len
+ len
; ++i
)
4263 if (ta_buf
[i
] == CSI
&& len
- i
> 2)
4265 c
= TERMCAP2KEY(ta_buf
[i
+ 1], ta_buf
[i
+ 2]);
4266 if (c
== K_DEL
|| c
== K_KDEL
|| c
== K_BS
)
4268 mch_memmove(ta_buf
+ i
+ 1, ta_buf
+ i
+ 3,
4269 (size_t)(len
- i
- 2));
4270 if (c
== K_DEL
|| c
== K_KDEL
)
4277 else if (ta_buf
[i
] == '\r')
4281 i
+= (*mb_ptr2len
)(ta_buf
+ i
) - 1;
4286 * For pipes: echo the typed characters.
4287 * For a pty this does not seem to work.
4289 if (pty_master_fd
< 0)
4291 for (i
= ta_len
; i
< ta_len
+ len
; ++i
)
4293 if (ta_buf
[i
] == '\n' || ta_buf
[i
] == '\b')
4294 msg_putchar(ta_buf
[i
]);
4298 int l
= (*mb_ptr2len
)(ta_buf
+ i
);
4300 msg_outtrans_len(ta_buf
+ i
, l
);
4305 msg_outtrans_len(ta_buf
+ i
, 1);
4307 windgoto(msg_row
, msg_col
);
4314 * Write the characters to the child, unless EOF has
4315 * been typed for pipes. Write one character at a
4316 * time, to avoid losing too much typeahead.
4317 * When writing buffer lines, drop the typed
4318 * characters (only check for CTRL-C).
4320 if (options
& SHELL_WRITE
)
4322 else if (toshell_fd
>= 0)
4324 len
= write(toshell_fd
, (char *)ta_buf
, (size_t)1);
4328 mch_memmove(ta_buf
, ta_buf
+ len
, ta_len
);
4336 /* CTRL-C sends a signal to the child, we ignore it
4349 * Check if the child has any characters to be printed.
4350 * Read them and write them to our window. Repeat this as
4351 * long as there is something to do, avoid the 10ms wait
4352 * for mch_inchar(), or sending typeahead characters to
4353 * the external process.
4354 * TODO: This should handle escape sequences, compatible
4355 * to some terminal (vt52?).
4358 while (RealWaitForChar(fromshell_fd
, 10L, NULL
))
4360 len
= read(fromshell_fd
, (char *)buffer
4362 + buffer_off
, (size_t)(BUFLEN
- buffer_off
)
4367 if (len
<= 0) /* end of file or error */
4371 if (options
& SHELL_READ
)
4373 /* Do NUL -> NL translation, append NL separated
4374 * lines to the current buffer. */
4375 for (i
= 0; i
< len
; ++i
)
4377 if (buffer
[i
] == NL
)
4378 append_ga_line(&ga
);
4379 else if (buffer
[i
] == NUL
)
4382 ga_append(&ga
, buffer
[i
]);
4393 /* Check if the last character in buffer[] is
4394 * incomplete, keep these bytes for the next
4396 for (p
= buffer
; p
< buffer
+ len
; p
+= l
)
4400 l
= 1; /* NUL byte? */
4401 else if (MB_BYTE2LEN(*p
) != l
)
4404 if (p
== buffer
) /* no complete character */
4406 /* avoid getting stuck at an illegal byte */
4418 if (p
< buffer
+ len
)
4421 buffer_off
= (buffer
+ len
) - p
;
4422 mch_memmove(buffer
, p
, buffer_off
);
4427 # endif /* FEAT_MBYTE */
4434 windgoto(msg_row
, msg_col
);
4437 # if FEAT_GUI_MACVIM
4447 /* If we already detected the child has finished break the
4449 if (wait_pid
== pid
)
4453 * Check if the child still exists, before checking for
4454 * typed characters (otherwise we would lose typeahead).
4457 wait_pid
= wait4(pid
, &status
, WNOHANG
, (struct rusage
*) 0);
4459 wait_pid
= waitpid(pid
, &status
, WNOHANG
);
4461 if ((wait_pid
== (pid_t
)-1 && errno
== ECHILD
)
4462 || (wait_pid
== pid
&& WIFEXITED(status
)))
4464 /* Don't break the loop yet, try reading more
4465 * characters from "fromshell_fd" first. When using
4466 * pipes there might still be something to read and
4467 * then we'll break the loop at the "break" above. */
4474 p_more
= p_more_save
;
4475 if (options
& SHELL_READ
)
4479 append_ga_line(&ga
);
4480 /* remember that the NL was missing */
4481 write_no_eol_lnum
= curwin
->w_cursor
.lnum
;
4484 write_no_eol_lnum
= 0;
4489 * Give all typeahead that wasn't used back to ui_inchar().
4492 ui_inchar_undo(ta_buf
, ta_len
);
4494 if (toshell_fd
>= 0)
4496 close(fromshell_fd
);
4500 * Wait until our child has exited.
4501 * Ignore wait() returning pids of other children and returning
4502 * because of some signal like SIGWINCH.
4503 * Don't wait if wait_pid was already set above, indicating the
4504 * child already exited.
4506 while (wait_pid
!= pid
)
4508 # ifdef _THREAD_SAFE
4509 /* Ugly hack: when compiled with Python threads are probably
4510 * used, in which case wait() sometimes hangs for no obvious
4511 * reason. Use waitpid() instead and loop (like the GUI). */
4513 wait_pid
= wait4(pid
, &status
, WNOHANG
, (struct rusage
*)0);
4515 wait_pid
= waitpid(pid
, &status
, WNOHANG
);
4519 /* Wait for 1/100 sec before trying again. */
4520 mch_delay(10L, TRUE
);
4524 wait_pid
= wait(&status
);
4534 /* Make sure the child that writes to the external program is
4537 kill(wpid
, SIGKILL
);
4540 * Set to raw mode right now, otherwise a CTRL-C after
4541 * catch_signals() will kill Vim.
4543 if (tmode
== TMODE_RAW
)
4544 settmode(TMODE_RAW
);
4545 did_settmode
= TRUE
;
4548 if (WIFEXITED(status
))
4550 /* LINTED avoid "bitwise operation on signed value" */
4551 retval
= WEXITSTATUS(status
);
4552 if (retval
&& !emsg_silent
)
4554 if (retval
== EXEC_FAILED
)
4556 MSG_PUTS(_("\nCannot execute shell "));
4560 else if (!(options
& SHELL_SILENT
))
4562 MSG_PUTS(_("\nshell returned "));
4563 msg_outnum((long)retval
);
4569 MSG_PUTS(_("\nCommand terminated\n"));
4576 if (tmode
== TMODE_RAW
)
4577 settmode(TMODE_RAW
); /* set to raw mode */
4585 #endif /* USE_SYSTEM */
4589 * Check for CTRL-C typed by reading all available characters.
4590 * In cooked mode we should get SIGINT, no need to check.
4595 if (curr_tmode
== TMODE_RAW
&& RealWaitForChar(read_cmd_fd
, 0L, NULL
))
4596 fill_input_buf(FALSE
);
4600 * Wait "msec" msec until a character is available from the keyboard or from
4601 * inbuf[]. msec == -1 will block forever.
4602 * When a GUI is being used, this will never get called -- webb
4608 #ifdef FEAT_MOUSE_GPM
4609 int gpm_process_wanted
;
4611 #ifdef FEAT_XCLIPBOARD
4616 if (input_available()) /* something in inbuf[] */
4619 #if defined(FEAT_MOUSE_DEC)
4620 /* May need to query the mouse position. */
4623 WantQueryMouse
= FALSE
;
4624 mch_write((char_u
*)IF_EB("\033[1'|", ESC_STR
"[1'|"), 5);
4629 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4630 * events. This is a bit complicated, because they might both be defined.
4632 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4633 # ifdef FEAT_XCLIPBOARD
4635 if (do_xterm_trace())
4640 # ifdef FEAT_XCLIPBOARD
4643 msec
= XT_TRACE_DELAY
;
4644 if (rest
>= 0 && rest
< XT_TRACE_DELAY
)
4650 # ifdef FEAT_MOUSE_GPM
4651 gpm_process_wanted
= 0;
4652 avail
= RealWaitForChar(read_cmd_fd
, msec
, &gpm_process_wanted
);
4654 avail
= RealWaitForChar(read_cmd_fd
, msec
, NULL
);
4658 if (input_available())
4660 # ifdef FEAT_XCLIPBOARD
4661 if (rest
== 0 || !do_xterm_trace())
4667 # ifdef FEAT_MOUSE_GPM
4668 || (gpm_process_wanted
&& mch_gpm_process() == 0)
4670 # ifdef FEAT_XCLIPBOARD
4671 || (!avail
&& rest
!= 0)
4676 avail
= RealWaitForChar(read_cmd_fd
, msec
, NULL
);
4682 * Wait "msec" msec until a character is available from file descriptor "fd".
4683 * Time == -1 will block forever.
4684 * When a GUI is being used, this will not be used for input -- webb
4685 * Returns also, when a request from Sniff is waiting -- toni.
4686 * Or when a Linux GPM mouse event is waiting.
4689 #if defined(__BEOS__)
4694 RealWaitForChar(fd
, msec
, check_for_gpm
)
4700 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4701 static int busy
= FALSE
;
4703 /* May retry getting characters after an event was handled. */
4706 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4707 /* Remember at what time we started, so that we know how much longer we
4708 * should wait after being interrupted. */
4709 # define USE_START_TV
4710 struct timeval start_tv
;
4713 # ifdef FEAT_XCLIPBOARD
4714 xterm_Shell
!= (Widget
)0
4715 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4721 # ifdef FEAT_MZSCHEME
4725 # ifdef FEAT_MZSCHEME
4726 (mzthreads_allowed() && p_mzq
> 0)
4729 gettimeofday(&start_tv
, NULL
);
4732 /* Handle being called recursively. This may happen for the session
4733 * manager stuff, it may save the file, which does a breakcheck. */
4743 int finished
= TRUE
; /* default is to 'loop' just once */
4744 # ifdef FEAT_MZSCHEME
4745 int mzquantum_used
= FALSE
;
4749 struct pollfd fds
[5];
4751 # ifdef FEAT_XCLIPBOARD
4754 # ifdef FEAT_MOUSE_GPM
4760 int towait
= (int)msec
;
4762 # ifdef FEAT_MZSCHEME
4763 mzvim_check_threads();
4764 if (mzthreads_allowed() && p_mzq
> 0 && (msec
< 0 || msec
> p_mzq
))
4766 towait
= (int)p_mzq
; /* don't wait longer than 'mzquantum' */
4767 mzquantum_used
= TRUE
;
4771 fds
[0].events
= POLLIN
;
4775 # define SNIFF_IDX 1
4776 if (want_sniff_request
)
4778 fds
[SNIFF_IDX
].fd
= fd_from_sniff
;
4779 fds
[SNIFF_IDX
].events
= POLLIN
;
4783 # ifdef FEAT_XCLIPBOARD
4784 if (xterm_Shell
!= (Widget
)0)
4787 fds
[nfd
].fd
= ConnectionNumber(xterm_dpy
);
4788 fds
[nfd
].events
= POLLIN
;
4792 # ifdef FEAT_MOUSE_GPM
4793 if (check_for_gpm
!= NULL
&& gpm_flag
&& gpm_fd
>= 0)
4796 fds
[nfd
].fd
= gpm_fd
;
4797 fds
[nfd
].events
= POLLIN
;
4802 if (xsmp_icefd
!= -1)
4805 fds
[nfd
].fd
= xsmp_icefd
;
4806 fds
[nfd
].events
= POLLIN
;
4811 ret
= poll(fds
, nfd
, towait
);
4812 # ifdef FEAT_MZSCHEME
4813 if (ret
== 0 && mzquantum_used
)
4814 /* MzThreads scheduling is required and timeout occurred */
4820 sniff_disconnect(1);
4821 else if (want_sniff_request
)
4823 if (fds
[SNIFF_IDX
].revents
& POLLHUP
)
4824 sniff_disconnect(1);
4825 if (fds
[SNIFF_IDX
].revents
& POLLIN
)
4826 sniff_request_waiting
= 1;
4829 # ifdef FEAT_XCLIPBOARD
4830 if (xterm_Shell
!= (Widget
)0 && (fds
[xterm_idx
].revents
& POLLIN
))
4832 xterm_update(); /* Maybe we should hand out clipboard */
4833 if (--ret
== 0 && !input_available())
4838 # ifdef FEAT_MOUSE_GPM
4839 if (gpm_idx
>= 0 && (fds
[gpm_idx
].revents
& POLLIN
))
4845 if (xsmp_idx
>= 0 && (fds
[xsmp_idx
].revents
& (POLLIN
| POLLHUP
)))
4847 if (fds
[xsmp_idx
].revents
& POLLIN
)
4850 xsmp_handle_requests();
4853 else if (fds
[xsmp_idx
].revents
& POLLHUP
)
4856 verb_msg((char_u
*)_("XSMP lost ICE connection"));
4860 finished
= FALSE
; /* Try again */
4865 #else /* HAVE_SELECT */
4868 struct timeval
*tvp
;
4873 # ifdef FEAT_MZSCHEME
4874 mzvim_check_threads();
4875 if (mzthreads_allowed() && p_mzq
> 0 && (msec
< 0 || msec
> p_mzq
))
4877 towait
= p_mzq
; /* don't wait longer than 'mzquantum' */
4878 mzquantum_used
= TRUE
;
4882 /* don't check for incoming chars if not in raw mode, because select()
4883 * always returns TRUE then (in some version of emx.dll) */
4884 if (curr_tmode
!= TMODE_RAW
)
4890 tv
.tv_sec
= towait
/ 1000;
4891 tv
.tv_usec
= (towait
% 1000) * (1000000/1000);
4898 * Select on ready for reading and exceptional condition (end of file).
4900 FD_ZERO(&rfds
); /* calls bzero() on a sun */
4903 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4904 /* For QNX select() always returns 1 if this is set. Why? */
4910 if (want_sniff_request
)
4912 FD_SET(fd_from_sniff
, &rfds
);
4913 FD_SET(fd_from_sniff
, &efds
);
4914 if (maxfd
< fd_from_sniff
)
4915 maxfd
= fd_from_sniff
;
4918 # ifdef FEAT_XCLIPBOARD
4919 if (xterm_Shell
!= (Widget
)0)
4921 FD_SET(ConnectionNumber(xterm_dpy
), &rfds
);
4922 if (maxfd
< ConnectionNumber(xterm_dpy
))
4923 maxfd
= ConnectionNumber(xterm_dpy
);
4926 # ifdef FEAT_MOUSE_GPM
4927 if (check_for_gpm
!= NULL
&& gpm_flag
&& gpm_fd
>= 0)
4929 FD_SET(gpm_fd
, &rfds
);
4930 FD_SET(gpm_fd
, &efds
);
4936 if (xsmp_icefd
!= -1)
4938 FD_SET(xsmp_icefd
, &rfds
);
4939 FD_SET(xsmp_icefd
, &efds
);
4940 if (maxfd
< xsmp_icefd
)
4946 /* Old VMS as v6.2 and older have broken select(). It waits more than
4947 * required. Should not be used */
4950 ret
= select(maxfd
+ 1, &rfds
, NULL
, &efds
, tvp
);
4953 if (ret
== -1 && errno
== ENOTSUP
)
4960 # ifdef FEAT_MZSCHEME
4961 if (ret
== 0 && mzquantum_used
)
4962 /* loop if MzThreads must be scheduled and timeout occurred */
4968 sniff_disconnect(1);
4969 else if (ret
> 0 && want_sniff_request
)
4971 if (FD_ISSET(fd_from_sniff
, &efds
))
4972 sniff_disconnect(1);
4973 if (FD_ISSET(fd_from_sniff
, &rfds
))
4974 sniff_request_waiting
= 1;
4977 # ifdef FEAT_XCLIPBOARD
4978 if (ret
> 0 && xterm_Shell
!= (Widget
)0
4979 && FD_ISSET(ConnectionNumber(xterm_dpy
), &rfds
))
4981 xterm_update(); /* Maybe we should hand out clipboard */
4982 /* continue looping when we only got the X event and the input
4983 * buffer is empty */
4984 if (--ret
== 0 && !input_available())
4991 # ifdef FEAT_MOUSE_GPM
4992 if (ret
> 0 && gpm_flag
&& check_for_gpm
!= NULL
&& gpm_fd
>= 0)
4994 if (FD_ISSET(gpm_fd
, &efds
))
4996 else if (FD_ISSET(gpm_fd
, &rfds
))
5001 if (ret
> 0 && xsmp_icefd
!= -1)
5003 if (FD_ISSET(xsmp_icefd
, &efds
))
5006 verb_msg((char_u
*)_("XSMP lost ICE connection"));
5009 finished
= FALSE
; /* keep going if event was only one */
5011 else if (FD_ISSET(xsmp_icefd
, &rfds
))
5014 xsmp_handle_requests();
5017 finished
= FALSE
; /* keep going if event was only one */
5022 #endif /* HAVE_SELECT */
5025 if (finished
|| msec
== 0)
5028 /* We're going to loop around again, find out for how long */
5031 # ifdef USE_START_TV
5034 /* Compute remaining wait time. */
5035 gettimeofday(&mtv
, NULL
);
5036 msec
-= (mtv
.tv_sec
- start_tv
.tv_sec
) * 1000L
5037 + (mtv
.tv_usec
- start_tv
.tv_usec
) / 1000L;
5039 /* Guess we got interrupted halfway. */
5043 break; /* waited long enough */
5053 #ifndef NO_EXPANDPATH
5055 * Expand a path into all matching files and/or directories. Handles "*",
5056 * "?", "[a-z]", "**", etc.
5057 * "path" has backslashes before chars that are not to be expanded.
5058 * Returns the number of matches found.
5061 mch_expandpath(gap
, path
, flags
)
5064 int flags
; /* EW_* flags */
5066 return unix_expandpath(gap
, path
, 0, flags
, FALSE
);
5071 * mch_expand_wildcards() - this code does wild-card pattern matching using
5074 * return OK for success, FAIL for error (you may lose some memory) and put
5075 * an error message in *file.
5077 * num_pat is number of input patterns
5078 * pat is array of pointers to input patterns
5079 * num_file is pointer to number of matched file names
5080 * file is pointer to array of pointers to matched file names
5090 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5094 mch_expand_wildcards(num_pat
, pat
, num_file
, file
, flags
)
5099 int flags
; /* EW_* flags */
5107 * This is the OS/2 implementation.
5109 # define EXPL_ALLOC_INC 16
5110 char_u
**expl_files
;
5111 size_t files_alloced
, files_free
;
5115 *num_file
= 0; /* default: no files found */
5116 files_alloced
= EXPL_ALLOC_INC
; /* how much space is allocated */
5117 files_free
= EXPL_ALLOC_INC
; /* how much space is not used */
5118 *file
= (char_u
**)alloc(sizeof(char_u
**) * files_alloced
);
5122 for (; num_pat
> 0; num_pat
--, pat
++)
5125 if (vim_strchr(*pat
, '$') || vim_strchr(*pat
, '~'))
5126 /* expand environment var or home dir */
5127 buf
= expand_env_save(*pat
);
5129 buf
= vim_strsave(*pat
);
5131 has_wildcard
= mch_has_exp_wildcard(buf
); /* (still) wildcards? */
5132 if (has_wildcard
) /* yes, so expand them */
5133 expl_files
= (char_u
**)_fnexplode(buf
);
5136 * return value of buf if no wildcards left,
5137 * OR if no match AND EW_NOTFOUND is set.
5139 if ((!has_wildcard
&& ((flags
& EW_NOTFOUND
) || mch_getperm(buf
) >= 0))
5140 || (expl_files
== NULL
&& (flags
& EW_NOTFOUND
)))
5141 { /* simply save the current contents of *buf */
5142 expl_files
= (char_u
**)alloc(sizeof(char_u
**) * 2);
5143 if (expl_files
!= NULL
)
5145 expl_files
[0] = vim_strsave(buf
);
5146 expl_files
[1] = NULL
;
5152 * Count number of names resulting from expansion,
5153 * At the same time add a backslash to the end of names that happen to
5154 * be directories, and replace slashes with backslashes.
5158 for (i
= 0; (p
= expl_files
[i
]) != NULL
; i
++)
5161 /* If we don't want dirs and this is one, skip it */
5162 if ((dir
&& !(flags
& EW_DIR
)) || (!dir
&& !(flags
& EW_FILE
)))
5165 /* Skip files that are not executable if we check for that. */
5166 if (!dir
&& (flags
& EW_EXEC
) && !mch_can_exe(p
))
5169 if (--files_free
== 0)
5171 /* need more room in table of pointers */
5172 files_alloced
+= EXPL_ALLOC_INC
;
5173 *file
= (char_u
**)vim_realloc(*file
,
5174 sizeof(char_u
**) * files_alloced
);
5177 EMSG(_(e_outofmem
));
5181 files_free
= EXPL_ALLOC_INC
;
5186 /* For a directory we add a '/', unless it's already
5189 if (((*file
)[*num_file
] = alloc(len
+ 2)) != NULL
)
5191 STRCPY((*file
)[*num_file
], p
);
5192 if (!after_pathsep((*file
)[*num_file
],
5193 (*file
)[*num_file
] + len
))
5195 (*file
)[*num_file
][len
] = psepc
;
5196 (*file
)[*num_file
][len
+ 1] = NUL
;
5202 (*file
)[*num_file
] = vim_strsave(p
);
5206 * Error message already given by either alloc or vim_strsave.
5207 * Should return FAIL, but returning OK works also.
5209 if ((*file
)[*num_file
] == NULL
)
5213 _fnexplodefree((char **)expl_files
);
5220 * This is the non-OS/2 implementation (really Unix).
5227 #define STYLE_ECHO 0 /* use "echo", the default */
5228 #define STYLE_GLOB 1 /* use "glob", for csh */
5229 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5230 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5231 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5233 int shell_style
= STYLE_ECHO
;
5235 static int did_find_nul
= FALSE
;
5236 int ampersent
= FALSE
;
5237 /* vimglob() function to define for Posix shell */
5238 static char *sh_vimglob_func
= "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
5240 *num_file
= 0; /* default: no files found */
5244 * If there are no wildcards, just copy the names to allocated memory.
5245 * Saves a lot of time, because we don't have to start a new shell.
5247 if (!have_wildcard(num_pat
, pat
))
5248 return save_patterns(num_pat
, pat
, num_file
, file
);
5250 # ifdef HAVE_SANDBOX
5251 /* Don't allow any shell command in the sandbox. */
5252 if (sandbox
!= 0 && check_secure())
5257 * Don't allow the use of backticks in secure and restricted mode.
5259 if (secure
|| restricted
)
5260 for (i
= 0; i
< num_pat
; ++i
)
5261 if (vim_strchr(pat
[i
], '`') != NULL
5262 && (check_restricted() || check_secure()))
5266 * get a name for the temp file
5268 if ((tempname
= vim_tempname('o')) == NULL
)
5275 * Let the shell expand the patterns and write the result into the temp
5277 * STYLE_BT: NL separated
5278 * If expanding `cmd` execute it directly.
5279 * STYLE_GLOB: NUL separated
5280 * If we use *csh, "glob" will work better than "echo".
5281 * STYLE_PRINT: NL or NUL separated
5282 * If we use *zsh, "print -N" will work better than "glob".
5283 * STYLE_VIMGLOB: NL separated
5284 * If we use *sh*, we define "vimglob()".
5285 * STYLE_ECHO: space separated.
5286 * A shell we don't know, stay safe and use "echo".
5288 if (num_pat
== 1 && *pat
[0] == '`'
5289 && (len
= STRLEN(pat
[0])) > 2
5290 && *(pat
[0] + len
- 1) == '`')
5291 shell_style
= STYLE_BT
;
5292 else if ((len
= STRLEN(p_sh
)) >= 3)
5294 if (STRCMP(p_sh
+ len
- 3, "csh") == 0)
5295 shell_style
= STYLE_GLOB
;
5296 else if (STRCMP(p_sh
+ len
- 3, "zsh") == 0)
5297 shell_style
= STYLE_PRINT
;
5299 if (shell_style
== STYLE_ECHO
&& strstr((char *)gettail(p_sh
),
5301 shell_style
= STYLE_VIMGLOB
;
5303 /* Compute the length of the command. We need 2 extra bytes: for the
5304 * optional '&' and for the NUL.
5305 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5306 len
= STRLEN(tempname
) + 29;
5307 if (shell_style
== STYLE_VIMGLOB
)
5308 len
+= STRLEN(sh_vimglob_func
);
5310 for (i
= 0; i
< num_pat
; ++i
)
5312 /* Count the length of the patterns in the same way as they are put in
5313 * "command" below. */
5315 len
+= STRLEN(pat
[i
]) + 3; /* add space and two quotes */
5317 ++len
; /* add space */
5318 for (j
= 0; pat
[i
][j
] != NUL
; ++j
)
5320 if (vim_strchr(SHELL_SPECIAL
, pat
[i
][j
]) != NULL
)
5321 ++len
; /* may add a backslash */
5326 command
= alloc(len
);
5327 if (command
== NULL
)
5335 * Build the shell command:
5336 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5338 * - Add the shell command to print the expanded names.
5339 * - Add the temp file name.
5340 * - Add the file name patterns.
5342 if (shell_style
== STYLE_BT
)
5344 /* change `command; command& ` to (command; command ) */
5345 STRCPY(command
, "(");
5346 STRCAT(command
, pat
[0] + 1); /* exclude first backtick */
5347 p
= command
+ STRLEN(command
) - 1;
5348 *p
-- = ')'; /* remove last backtick */
5349 while (p
> command
&& vim_iswhite(*p
))
5351 if (*p
== '&') /* remove trailing '&' */
5356 STRCAT(command
, ">");
5360 if (flags
& EW_NOTFOUND
)
5361 STRCPY(command
, "set nonomatch; ");
5363 STRCPY(command
, "unset nonomatch; ");
5364 if (shell_style
== STYLE_GLOB
)
5365 STRCAT(command
, "glob >");
5366 else if (shell_style
== STYLE_PRINT
)
5367 STRCAT(command
, "print -N >");
5368 else if (shell_style
== STYLE_VIMGLOB
)
5369 STRCAT(command
, sh_vimglob_func
);
5371 STRCAT(command
, "echo >");
5374 STRCAT(command
, tempname
);
5376 if (shell_style
!= STYLE_BT
)
5377 for (i
= 0; i
< num_pat
; ++i
)
5379 /* When using system() always add extra quotes, because the shell
5380 * is started twice. Otherwise put a backslash before special
5381 * characters, except inside ``. */
5383 STRCAT(command
, " \"");
5384 STRCAT(command
, pat
[i
]);
5385 STRCAT(command
, "\"");
5389 p
= command
+ STRLEN(command
);
5391 for (j
= 0; pat
[i
][j
] != NUL
; ++j
)
5393 if (pat
[i
][j
] == '`')
5395 else if (pat
[i
][j
] == '\\' && pat
[i
][j
+ 1] != NUL
)
5397 /* Remove a backslash, take char literally. But keep
5398 * backslash inside backticks, before a special character
5399 * and before a backtick. */
5401 || vim_strchr(SHELL_SPECIAL
, pat
[i
][j
+ 1]) != NULL
5402 || pat
[i
][j
+ 1] == '`')
5406 else if (!intick
&& vim_strchr(SHELL_SPECIAL
,
5408 /* Put a backslash before a special character, but not
5409 * when inside ``. */
5412 /* Copy one character. */
5418 if (flags
& EW_SILENT
)
5419 show_shell_mess
= FALSE
;
5421 STRCAT(command
, "&"); /* put the '&' after the redirection */
5424 * Using zsh -G: If a pattern has no matches, it is just deleted from
5425 * the argument list, otherwise zsh gives an error message and doesn't
5426 * expand any other pattern.
5428 if (shell_style
== STYLE_PRINT
)
5429 extra_shell_arg
= (char_u
*)"-G"; /* Use zsh NULL_GLOB option */
5432 * If we use -f then shell variables set in .cshrc won't get expanded.
5433 * vi can do it, so we will too, but it is only necessary if there is a "$"
5434 * in one of the patterns, otherwise we can still use the fast option.
5436 else if (shell_style
== STYLE_GLOB
&& !have_dollars(num_pat
, pat
))
5437 extra_shell_arg
= (char_u
*)"-f"; /* Use csh fast option */
5440 * execute the shell command
5442 i
= call_shell(command
, SHELL_EXPAND
| SHELL_SILENT
);
5444 /* When running in the background, give it some time to create the temp
5445 * file, but don't wait for it to finish. */
5447 mch_delay(10L, TRUE
);
5449 extra_shell_arg
= NULL
; /* cleanup */
5450 show_shell_mess
= TRUE
;
5453 if (i
!= 0) /* mch_call_shell() failed */
5455 mch_remove(tempname
);
5458 * With interactive completion, the error message is not printed.
5459 * However with USE_SYSTEM, I don't know how to turn off error messages
5460 * from the shell, so screen may still get messed up -- webb.
5463 if (!(flags
& EW_SILENT
))
5466 redraw_later_clear(); /* probably messed up screen */
5467 msg_putchar('\n'); /* clear bottom line quickly */
5468 cmdline_row
= Rows
- 1; /* continue on last line */
5470 if (!(flags
& EW_SILENT
))
5473 MSG(_(e_wildexpand
));
5474 msg_start(); /* don't overwrite this message */
5477 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5478 * EW_NOTFOUND is given */
5479 if (shell_style
== STYLE_BT
)
5485 * read the names from the file into memory
5487 fd
= fopen((char *)tempname
, READBIN
);
5490 /* Something went wrong, perhaps a file name with a special char. */
5491 if (!(flags
& EW_SILENT
))
5493 MSG(_(e_wildexpand
));
5494 msg_start(); /* don't overwrite this message */
5499 fseek(fd
, 0L, SEEK_END
);
5500 len
= ftell(fd
); /* get size of temp file */
5501 fseek(fd
, 0L, SEEK_SET
);
5502 buffer
= alloc(len
+ 1);
5506 mch_remove(tempname
);
5511 i
= fread((char *)buffer
, 1, len
, fd
);
5513 mch_remove(tempname
);
5516 /* unexpected read error */
5517 EMSG2(_(e_notread
), tempname
);
5524 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5525 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5527 for (i
= 0; i
< len
; ++i
)
5528 if (!(buffer
[i
] == CAR
&& buffer
[i
+ 1] == NL
))
5534 /* file names are separated with Space */
5535 if (shell_style
== STYLE_ECHO
)
5537 buffer
[len
] = '\n'; /* make sure the buffer ends in NL */
5539 for (i
= 0; *p
!= '\n'; ++i
) /* count number of entries */
5541 while (*p
!= ' ' && *p
!= '\n')
5543 p
= skipwhite(p
); /* skip to next entry */
5546 /* file names are separated with NL */
5547 else if (shell_style
== STYLE_BT
|| shell_style
== STYLE_VIMGLOB
)
5549 buffer
[len
] = NUL
; /* make sure the buffer ends in NUL */
5551 for (i
= 0; *p
!= NUL
; ++i
) /* count number of entries */
5553 while (*p
!= '\n' && *p
!= NUL
)
5557 p
= skipwhite(p
); /* skip leading white space */
5560 /* file names are separated with NUL */
5564 * Some versions of zsh use spaces instead of NULs to separate
5565 * results. Only do this when there is no NUL before the end of the
5566 * buffer, otherwise we would never be able to use file names with
5567 * embedded spaces when zsh does use NULs.
5568 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5569 * don't check for spaces again.
5571 check_spaces
= FALSE
;
5572 if (shell_style
== STYLE_PRINT
&& !did_find_nul
)
5574 /* If there is a NUL, set did_find_nul, else set check_spaces */
5575 if (len
&& (int)STRLEN(buffer
) < len
- 1)
5576 did_find_nul
= TRUE
;
5578 check_spaces
= TRUE
;
5582 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5583 * already is one, for STYLE_GLOB it needs to be added.
5585 if (len
&& buffer
[len
- 1] == NUL
)
5590 for (p
= buffer
; p
< buffer
+ len
; ++p
)
5591 if (*p
== NUL
|| (*p
== ' ' && check_spaces
)) /* count entry */
5597 ++i
; /* count last entry */
5602 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5603 * /bin/sh will happily expand it to nothing rather than returning an
5604 * error; and hey, it's good to check anyway -- webb.
5610 *file
= (char_u
**)alloc(sizeof(char_u
*) * i
);
5619 * Isolate the individual file names.
5622 for (i
= 0; i
< *num_file
; ++i
)
5625 /* Space or NL separates */
5626 if (shell_style
== STYLE_ECHO
|| shell_style
== STYLE_BT
5627 || shell_style
== STYLE_VIMGLOB
)
5629 while (!(shell_style
== STYLE_ECHO
&& *p
== ' ')
5630 && *p
!= '\n' && *p
!= NUL
)
5632 if (p
== buffer
+ len
) /* last entry */
5637 p
= skipwhite(p
); /* skip to next entry */
5640 else /* NUL separates */
5642 while (*p
&& p
< buffer
+ len
) /* skip entry */
5649 * Move the file names to allocated memory.
5651 for (j
= 0, i
= 0; i
< *num_file
; ++i
)
5653 /* Require the files to exist. Helps when using /bin/sh */
5654 if (!(flags
& EW_NOTFOUND
) && mch_getperm((*file
)[i
]) < 0)
5657 /* check if this entry should be included */
5658 dir
= (mch_isdir((*file
)[i
]));
5659 if ((dir
&& !(flags
& EW_DIR
)) || (!dir
&& !(flags
& EW_FILE
)))
5662 /* Skip files that are not executable if we check for that. */
5663 if (!dir
&& (flags
& EW_EXEC
) && !mch_can_exe((*file
)[i
]))
5666 p
= alloc((unsigned)(STRLEN((*file
)[i
]) + 1 + dir
));
5669 STRCPY(p
, (*file
)[i
]);
5671 add_pathsep(p
); /* add '/' to a directory name */
5678 if (*num_file
== 0) /* rejected all entries */
5688 if (flags
& EW_NOTFOUND
)
5689 return save_patterns(num_pat
, pat
, num_file
, file
);
5692 #endif /* __EMX__ */
5699 save_patterns(num_pat
, pat
, num_file
, file
)
5708 *file
= (char_u
**)alloc(num_pat
* sizeof(char_u
*));
5711 for (i
= 0; i
< num_pat
; i
++)
5713 s
= vim_strsave(pat
[i
]);
5715 /* Be compatible with expand_filename(): halve the number of
5720 *num_file
= num_pat
;
5727 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5731 mch_has_exp_wildcard(p
)
5734 for ( ; *p
; mb_ptr_adv(p
))
5737 if (*p
== '\\' && p
[1] != NUL
)
5741 if (vim_strchr((char_u
*)
5758 * Return TRUE if the string "p" contains a wildcard.
5759 * Don't recognize '~' at the end as a wildcard.
5765 for ( ; *p
; mb_ptr_adv(p
))
5768 if (*p
== '\\' && p
[1] != NUL
)
5772 if (vim_strchr((char_u
*)
5777 # ifdef VIM_BACKTICK
5787 || (*p
== '~' && p
[1] != NUL
))
5795 have_wildcard(num
, file
)
5801 for (i
= 0; i
< num
; i
++)
5802 if (mch_has_wildcard(file
[i
]))
5808 have_dollars(num
, file
)
5814 for (i
= 0; i
< num
; i
++)
5815 if (vim_strchr(file
[i
], '$') != NULL
)
5819 #endif /* ifndef __EMX__ */
5823 * Scaled-down version of rename(), which is missing in Xenix.
5824 * This version can only move regular files and will fail if the
5825 * destination exists.
5828 mch_rename(src
, dest
)
5829 const char *src
, *dest
;
5833 if (stat(dest
, &st
) >= 0) /* fail if destination exists */
5835 if (link(src
, dest
) != 0) /* link file to new name */
5837 if (mch_remove(src
) == 0) /* delete link to old name */
5841 #endif /* !HAVE_RENAME */
5843 #ifdef FEAT_MOUSE_GPM
5845 * Initializes connection with gpm (if it isn't already opened)
5846 * Return 1 if succeeded (or connection already opened), 0 if failed
5851 static Gpm_Connect gpm_connect
; /* Must it be kept till closing ? */
5855 gpm_connect
.eventMask
= (GPM_UP
| GPM_DRAG
| GPM_DOWN
);
5856 gpm_connect
.defaultMask
= ~GPM_HARD
;
5857 /* Default handling for mouse move*/
5858 gpm_connect
.minMod
= 0; /* Handle any modifier keys */
5859 gpm_connect
.maxMod
= 0xffff;
5860 if (Gpm_Open(&gpm_connect
, 0) > 0)
5862 /* gpm library tries to handling TSTP causes
5863 * problems. Anyways, we close connection to Gpm whenever
5864 * we are going to suspend or starting an external process
5865 * so we shouldn't have problem with this
5867 signal(SIGTSTP
, restricted
? SIG_IGN
: SIG_DFL
);
5868 return 1; /* succeed */
5871 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5874 return 1; /* already open */
5878 * Closes connection to gpm
5883 if (gpm_flag
&& gpm_fd
>= 0) /* if Open */
5887 /* Reads gpm event and adds special keys to input buf. Returns length of
5888 * generated key sequence.
5889 * This function is made after gui_send_mouse_event
5895 static Gpm_Event gpm_event
;
5897 int_u vim_modifiers
;
5899 unsigned char buttons_mask
;
5900 unsigned char gpm_modifiers
;
5901 static unsigned char old_buttons
= 0;
5903 Gpm_GetEvent(&gpm_event
);
5906 /* Don't put events in the input queue now. */
5907 if (hold_gui_events
)
5911 row
= gpm_event
.y
- 1;
5912 col
= gpm_event
.x
- 1;
5914 string
[0] = ESC
; /* Our termcode */
5917 switch (GPM_BARE_EVENTS(gpm_event
.type
))
5920 string
[3] = MOUSE_DRAG
;
5923 buttons_mask
= gpm_event
.buttons
& ~old_buttons
;
5924 old_buttons
= gpm_event
.buttons
;
5925 switch (buttons_mask
)
5928 button
= MOUSE_LEFT
;
5931 button
= MOUSE_MIDDLE
;
5934 button
= MOUSE_RIGHT
;
5938 /*Don't know what to do. Can more than one button be
5939 * reported in one event? */
5941 string
[3] = (char_u
)(button
| 0x20);
5942 SET_NUM_MOUSE_CLICKS(string
[3], gpm_event
.clicks
+ 1);
5945 string
[3] = MOUSE_RELEASE
;
5946 old_buttons
&= ~gpm_event
.buttons
;
5951 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5952 gpm_modifiers
= gpm_event
.modifiers
;
5953 vim_modifiers
= 0x0;
5954 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5955 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5956 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5958 if (gpm_modifiers
& ((1 << KG_SHIFT
) | (1 << KG_SHIFTR
) | (1 << KG_SHIFTL
)))
5959 vim_modifiers
|= MOUSE_SHIFT
;
5961 if (gpm_modifiers
& ((1 << KG_CTRL
) | (1 << KG_CTRLR
) | (1 << KG_CTRLL
)))
5962 vim_modifiers
|= MOUSE_CTRL
;
5963 if (gpm_modifiers
& ((1 << KG_ALT
) | (1 << KG_ALTGR
)))
5964 vim_modifiers
|= MOUSE_ALT
;
5965 string
[3] |= vim_modifiers
;
5966 string
[4] = (char_u
)(col
+ ' ' + 1);
5967 string
[5] = (char_u
)(row
+ ' ' + 1);
5968 add_to_input_buf(string
, 6);
5971 #endif /* FEAT_MOUSE_GPM */
5973 #ifdef FEAT_SYSMOUSE
5975 * Initialize connection with sysmouse.
5976 * Let virtual console inform us with SIGUSR2 for pending sysmouse
5977 * output, any sysmouse output than will be processed via sig_sysmouse().
5978 * Return OK if succeeded, FAIL if failed.
5983 struct mouse_info mouse
;
5985 mouse
.operation
= MOUSE_MODE
;
5986 mouse
.u
.mode
.mode
= 0;
5987 mouse
.u
.mode
.signal
= SIGUSR2
;
5988 if (ioctl(1, CONS_MOUSECTL
, &mouse
) != -1)
5990 signal(SIGUSR2
, (RETSIGTYPE (*)())sig_sysmouse
);
5991 mouse
.operation
= MOUSE_SHOW
;
5992 ioctl(1, CONS_MOUSECTL
, &mouse
);
5999 * Stop processing SIGUSR2 signals, and also make sure that
6000 * virtual console do not send us any sysmouse related signal.
6005 struct mouse_info mouse
;
6007 signal(SIGUSR2
, restricted
? SIG_IGN
: SIG_DFL
);
6008 mouse
.operation
= MOUSE_MODE
;
6009 mouse
.u
.mode
.mode
= 0;
6010 mouse
.u
.mode
.signal
= 0;
6011 ioctl(1, CONS_MOUSECTL
, &mouse
);
6015 * Gets info from sysmouse and adds special keys to input buf.
6019 sig_sysmouse
SIGDEFARG(sigarg
)
6021 struct mouse_info mouse
;
6022 struct video_info video
;
6027 static int oldbuttons
= 0;
6030 /* Don't put events in the input queue now. */
6031 if (hold_gui_events
)
6035 mouse
.operation
= MOUSE_GETINFO
;
6036 if (ioctl(1, FBIO_GETMODE
, &video
.vi_mode
) != -1
6037 && ioctl(1, FBIO_MODEINFO
, &video
) != -1
6038 && ioctl(1, CONS_MOUSECTL
, &mouse
) != -1
6039 && video
.vi_cheight
> 0 && video
.vi_cwidth
> 0)
6041 row
= mouse
.u
.data
.y
/ video
.vi_cheight
;
6042 col
= mouse
.u
.data
.x
/ video
.vi_cwidth
;
6043 buttons
= mouse
.u
.data
.buttons
;
6044 string
[0] = ESC
; /* Our termcode */
6047 if (oldbuttons
== buttons
&& buttons
!= 0)
6049 button
= MOUSE_DRAG
;
6056 button
= MOUSE_RELEASE
;
6059 button
= MOUSE_LEFT
;
6062 button
= MOUSE_MIDDLE
;
6065 button
= MOUSE_RIGHT
;
6070 oldbuttons
= buttons
;
6072 string
[3] = (char_u
)(button
);
6073 string
[4] = (char_u
)(col
+ ' ' + 1);
6074 string
[5] = (char_u
)(row
+ ' ' + 1);
6075 add_to_input_buf(string
, 6);
6079 #endif /* FEAT_SYSMOUSE */
6081 #if defined(FEAT_LIBCALL) || defined(PROTO)
6082 typedef char_u
* (*STRPROCSTR
)__ARGS((char_u
*));
6083 typedef char_u
* (*INTPROCSTR
)__ARGS((int));
6084 typedef int (*STRPROCINT
)__ARGS((char_u
*));
6085 typedef int (*INTPROCINT
)__ARGS((int));
6088 * Call a DLL routine which takes either a string or int param
6089 * and returns an allocated string.
6092 mch_libcall(libname
, funcname
, argstring
, argint
, string_result
, number_result
)
6095 char_u
*argstring
; /* NULL when using a argint */
6097 char_u
**string_result
;/* NULL when using number_result */
6100 # if defined(USE_DLOPEN)
6107 INTPROCSTR ProcAddI
;
6108 char_u
*retval_str
= NULL
;
6110 int success
= FALSE
;
6113 * Get a handle to the DLL module.
6115 # if defined(USE_DLOPEN)
6116 /* First clear any error, it's not cleared by the dlopen() call. */
6119 hinstLib
= dlopen((char *)libname
, RTLD_LAZY
6124 if (hinstLib
== NULL
)
6126 /* "dlerr" must be used before dlclose() */
6127 dlerr
= (char *)dlerror();
6129 EMSG2(_("dlerror = \"%s\""), dlerr
);
6132 hinstLib
= shl_load((const char*)libname
, BIND_IMMEDIATE
|BIND_VERBOSE
, 0L);
6135 /* If the handle is valid, try to get the function address. */
6136 if (hinstLib
!= NULL
)
6138 # ifdef HAVE_SETJMP_H
6140 * Catch a crash when calling the library function. For example when
6141 * using a number where a string pointer is expected.
6144 if (SETJMP(lc_jump_env
) != 0)
6147 # if defined(USE_DLOPEN)
6158 if (argstring
!= NULL
)
6160 # if defined(USE_DLOPEN)
6161 ProcAdd
= (STRPROCSTR
)dlsym(hinstLib
, (const char *)funcname
);
6162 dlerr
= (char *)dlerror();
6164 if (shl_findsym(&hinstLib
, (const char *)funcname
,
6165 TYPE_PROCEDURE
, (void *)&ProcAdd
) < 0)
6168 if ((success
= (ProcAdd
!= NULL
6169 # if defined(USE_DLOPEN)
6174 if (string_result
== NULL
)
6175 retval_int
= ((STRPROCINT
)ProcAdd
)(argstring
);
6177 retval_str
= (ProcAdd
)(argstring
);
6182 # if defined(USE_DLOPEN)
6183 ProcAddI
= (INTPROCSTR
)dlsym(hinstLib
, (const char *)funcname
);
6184 dlerr
= (char *)dlerror();
6186 if (shl_findsym(&hinstLib
, (const char *)funcname
,
6187 TYPE_PROCEDURE
, (void *)&ProcAddI
) < 0)
6190 if ((success
= (ProcAddI
!= NULL
6191 # if defined(USE_DLOPEN)
6196 if (string_result
== NULL
)
6197 retval_int
= ((INTPROCINT
)ProcAddI
)(argint
);
6199 retval_str
= (ProcAddI
)(argint
);
6203 /* Save the string before we free the library. */
6204 /* Assume that a "1" or "-1" result is an illegal pointer. */
6205 if (string_result
== NULL
)
6206 *number_result
= retval_int
;
6207 else if (retval_str
!= NULL
6208 && retval_str
!= (char_u
*)1
6209 && retval_str
!= (char_u
*)-1)
6210 *string_result
= vim_strsave(retval_str
);
6213 # ifdef HAVE_SETJMP_H
6220 /* try to find the name of this signal */
6221 for (i
= 0; signal_info
[i
].sig
!= -1; i
++)
6222 if (lc_signal
== signal_info
[i
].sig
)
6224 EMSG2("E368: got SIG%s in libcall()", signal_info
[i
].name
);
6229 # if defined(USE_DLOPEN)
6230 /* "dlerr" must be used before dlclose() */
6232 EMSG2(_("dlerror = \"%s\""), dlerr
);
6234 /* Free the DLL module. */
6235 (void)dlclose(hinstLib
);
6237 (void)shl_unload(hinstLib
);
6243 EMSG2(_(e_libcall
), funcname
);
6251 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6252 static int xterm_trace
= -1; /* default: disabled */
6253 static int xterm_button
;
6256 * Setup a dummy window for X selections in a terminal.
6265 if (!x_connect_to_server())
6269 if (app_context
!= NULL
&& xterm_Shell
== (Widget
)0)
6271 int (*oldhandler
)();
6272 #if defined(HAVE_SETJMP_H)
6273 int (*oldIOhandler
)();
6275 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6276 struct timeval start_tv
;
6279 gettimeofday(&start_tv
, NULL
);
6282 /* Ignore X errors while opening the display */
6283 oldhandler
= XSetErrorHandler(x_error_check
);
6285 #if defined(HAVE_SETJMP_H)
6286 /* Ignore X IO errors while opening the display */
6287 oldIOhandler
= XSetIOErrorHandler(x_IOerror_check
);
6289 if (SETJMP(lc_jump_env
) != 0)
6297 xterm_dpy
= XtOpenDisplay(app_context
, xterm_display
,
6298 "vim_xterm", "Vim_xterm", NULL
, 0, &z
, &strp
);
6299 #if defined(HAVE_SETJMP_H)
6304 #if defined(HAVE_SETJMP_H)
6305 /* Now handle X IO errors normally. */
6306 (void)XSetIOErrorHandler(oldIOhandler
);
6308 /* Now handle X errors normally. */
6309 (void)XSetErrorHandler(oldhandler
);
6311 if (xterm_dpy
== NULL
)
6314 verb_msg((char_u
*)_("Opening the X display failed"));
6318 /* Catch terminating error of the X server connection. */
6319 (void)XSetIOErrorHandler(x_IOerror_handler
);
6321 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6325 xopen_message(&start_tv
);
6330 /* Create a Shell to make converters work. */
6331 AppShell
= XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6332 applicationShellWidgetClass
, xterm_dpy
,
6334 if (AppShell
== (Widget
)0)
6336 xterm_Shell
= XtVaCreatePopupShell("VIM",
6337 topLevelShellWidgetClass
, AppShell
,
6338 XtNmappedWhenManaged
, 0,
6342 if (xterm_Shell
== (Widget
)0)
6345 x11_setup_atoms(xterm_dpy
);
6346 if (x11_display
== NULL
)
6347 x11_display
= xterm_dpy
;
6349 XtRealizeWidget(xterm_Shell
);
6350 XSync(xterm_dpy
, False
);
6353 if (xterm_Shell
!= (Widget
)0)
6356 if (x11_window
== 0 && (strp
= getenv("WINDOWID")) != NULL
)
6357 x11_window
= (Window
)atol(strp
);
6358 /* Check if $WINDOWID is valid. */
6359 if (test_x11_window(xterm_dpy
) == FAIL
)
6361 if (x11_window
!= 0)
6367 start_xterm_trace(button
)
6370 if (x11_window
== 0 || xterm_trace
< 0 || xterm_Shell
== (Widget
)0)
6373 xterm_button
= button
;
6381 if (xterm_trace
< 0)
6387 * Query the xterm pointer and generate mouse termcodes if necessary
6388 * return TRUE if dragging is active, else FALSE
6401 static char_u
*mouse_code
;
6402 static char_u mouse_name
[2] = {KS_MOUSE
, KE_FILLER
};
6403 static int prev_row
= 0, prev_col
= 0;
6404 static XSizeHints xterm_hints
;
6406 if (xterm_trace
<= 0)
6409 if (xterm_trace
== 1)
6411 /* Get the hints just before tracking starts. The font size might
6412 * have changed recently. */
6413 if (!XGetWMNormalHints(xterm_dpy
, x11_window
, &xterm_hints
, &got_hints
)
6414 || !(got_hints
& PResizeInc
)
6415 || xterm_hints
.width_inc
<= 1
6416 || xterm_hints
.height_inc
<= 1)
6418 xterm_trace
= -1; /* Not enough data -- disable tracing */
6422 /* Rely on the same mouse code for the duration of this */
6423 mouse_code
= find_termcode(mouse_name
);
6424 prev_row
= mouse_row
;
6425 prev_row
= mouse_col
;
6428 /* Find the offset of the chars, there might be a scrollbar on the
6429 * left of the window and/or a menu on the top (eterm etc.) */
6430 XQueryPointer(xterm_dpy
, x11_window
, &root
, &child
, &root_x
, &root_y
,
6431 &win_x
, &win_y
, &mask_return
);
6432 xterm_hints
.y
= win_y
- (xterm_hints
.height_inc
* mouse_row
)
6433 - (xterm_hints
.height_inc
/ 2);
6434 if (xterm_hints
.y
<= xterm_hints
.height_inc
/ 2)
6436 xterm_hints
.x
= win_x
- (xterm_hints
.width_inc
* mouse_col
)
6437 - (xterm_hints
.width_inc
/ 2);
6438 if (xterm_hints
.x
<= xterm_hints
.width_inc
/ 2)
6442 if (mouse_code
== NULL
)
6448 XQueryPointer(xterm_dpy
, x11_window
, &root
, &child
, &root_x
, &root_y
,
6449 &win_x
, &win_y
, &mask_return
);
6451 row
= check_row((win_y
- xterm_hints
.y
) / xterm_hints
.height_inc
);
6452 col
= check_col((win_x
- xterm_hints
.x
) / xterm_hints
.width_inc
);
6453 if (row
== prev_row
&& col
== prev_col
)
6456 STRCPY(buf
, mouse_code
);
6457 strp
= buf
+ STRLEN(buf
);
6458 *strp
++ = (xterm_button
| MOUSE_DRAG
) & ~0x20;
6459 *strp
++ = (char_u
)(col
+ ' ' + 1);
6460 *strp
++ = (char_u
)(row
+ ' ' + 1);
6462 add_to_input_buf(buf
, STRLEN(buf
));
6469 # if defined(FEAT_GUI) || defined(PROTO)
6471 * Destroy the display, window and app_context. Required for GTK.
6476 if (xterm_Shell
!= (Widget
)0)
6478 XtDestroyWidget(xterm_Shell
);
6479 xterm_Shell
= (Widget
)0;
6481 if (xterm_dpy
!= NULL
)
6484 /* Lesstif and Solaris crash here, lose some memory */
6485 XtCloseDisplay(xterm_dpy
);
6487 if (x11_display
== xterm_dpy
)
6492 if (app_context
!= (XtAppContext
)NULL
)
6494 /* Lesstif and Solaris crash here, lose some memory */
6495 XtDestroyApplicationContext(app_context
);
6496 app_context
= (XtAppContext
)NULL
;
6503 * Catch up with any queued X events. This may put keyboard input into the
6504 * input buffer, call resize call-backs, trigger timers etc. If there is
6505 * nothing in the X event queue (& no timers pending), then we return
6513 while (XtAppPending(app_context
) && !vim_is_input_buf_full())
6515 XtAppNextEvent(app_context
, &event
);
6516 #ifdef FEAT_CLIENTSERVER
6518 XPropertyEvent
*e
= (XPropertyEvent
*)&event
;
6520 if (e
->type
== PropertyNotify
&& e
->window
== commWindow
6521 && e
->atom
== commProperty
&& e
->state
== PropertyNewValue
)
6522 serverEventProc(xterm_dpy
, &event
);
6525 XtDispatchEvent(&event
);
6530 clip_xterm_own_selection(cbd
)
6533 if (xterm_Shell
!= (Widget
)0)
6534 return clip_x11_own_selection(xterm_Shell
, cbd
);
6539 clip_xterm_lose_selection(cbd
)
6542 if (xterm_Shell
!= (Widget
)0)
6543 clip_x11_lose_selection(xterm_Shell
, cbd
);
6547 clip_xterm_request_selection(cbd
)
6550 if (xterm_Shell
!= (Widget
)0)
6551 clip_x11_request_selection(xterm_Shell
, xterm_dpy
, cbd
);
6555 clip_xterm_set_selection(cbd
)
6558 clip_x11_set_selection(cbd
);
6563 #if defined(USE_XSMP) || defined(PROTO)
6565 * Code for X Session Management Protocol.
6567 static void xsmp_handle_save_yourself
__ARGS((SmcConn smc_conn
, SmPointer client_data
, int save_type
, Bool shutdown
, int interact_style
, Bool fast
));
6568 static void xsmp_die
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6569 static void xsmp_save_complete
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6570 static void xsmp_shutdown_cancelled
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6571 static void xsmp_ice_connection
__ARGS((IceConn iceConn
, IcePointer clientData
, Bool opening
, IcePointer
*watchData
));
6574 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6575 static void xsmp_handle_interaction
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6578 * This is our chance to ask the user if they want to save,
6579 * or abort the logout
6583 xsmp_handle_interaction(smc_conn
, client_data
)
6585 SmPointer client_data
;
6587 cmdmod_T save_cmdmod
;
6588 int cancel_shutdown
= False
;
6590 save_cmdmod
= cmdmod
;
6591 cmdmod
.confirm
= TRUE
;
6592 if (check_changed_any(FALSE
))
6593 /* Mustn't logout */
6594 cancel_shutdown
= True
;
6595 cmdmod
= save_cmdmod
;
6596 setcursor(); /* position cursor */
6599 /* Done interaction */
6600 SmcInteractDone(smc_conn
, cancel_shutdown
);
6603 * Only end save-yourself here if we're not cancelling shutdown;
6604 * we'll get a cancelled callback later in which we'll end it.
6605 * Hopefully get around glitchy SMs (like GNOME-1)
6607 if (!cancel_shutdown
)
6609 xsmp
.save_yourself
= False
;
6610 SmcSaveYourselfDone(smc_conn
, True
);
6616 * Callback that starts save-yourself.
6620 xsmp_handle_save_yourself(smc_conn
, client_data
, save_type
,
6621 shutdown
, interact_style
, fast
)
6623 SmPointer client_data
;
6629 /* Handle already being in saveyourself */
6630 if (xsmp
.save_yourself
)
6631 SmcSaveYourselfDone(smc_conn
, True
);
6632 xsmp
.save_yourself
= True
;
6633 xsmp
.shutdown
= shutdown
;
6635 /* First up, preserve all files */
6637 ml_sync_all(FALSE
, FALSE
); /* preserve all swap files */
6640 verb_msg((char_u
*)_("XSMP handling save-yourself request"));
6642 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6643 /* Now see if we can ask about unsaved files */
6644 if (shutdown
&& !fast
&& gui
.in_use
)
6645 /* Need to interact with user, but need SM's permission */
6646 SmcInteractRequest(smc_conn
, SmDialogError
,
6647 xsmp_handle_interaction
, client_data
);
6651 /* Can stop the cycle here */
6652 SmcSaveYourselfDone(smc_conn
, True
);
6653 xsmp
.save_yourself
= False
;
6659 * Callback to warn us of imminent death.
6663 xsmp_die(smc_conn
, client_data
)
6665 SmPointer client_data
;
6669 /* quit quickly leaving swapfiles for modified buffers behind */
6670 getout_preserve_modified(0);
6675 * Callback to tell us that save-yourself has completed.
6679 xsmp_save_complete(smc_conn
, client_data
)
6681 SmPointer client_data
;
6683 xsmp
.save_yourself
= False
;
6688 * Callback to tell us that an instigated shutdown was cancelled
6689 * (maybe even by us)
6693 xsmp_shutdown_cancelled(smc_conn
, client_data
)
6695 SmPointer client_data
;
6697 if (xsmp
.save_yourself
)
6698 SmcSaveYourselfDone(smc_conn
, True
);
6699 xsmp
.save_yourself
= False
;
6700 xsmp
.shutdown
= False
;
6705 * Callback to tell us that a new ICE connection has been established.
6709 xsmp_ice_connection(iceConn
, clientData
, opening
, watchData
)
6711 IcePointer clientData
;
6713 IcePointer
*watchData
;
6715 /* Intercept creation of ICE connection fd */
6718 xsmp_icefd
= IceConnectionNumber(iceConn
);
6719 IceRemoveConnectionWatch(xsmp_ice_connection
, NULL
);
6724 /* Handle any ICE processing that's required; return FAIL if SM lost */
6726 xsmp_handle_requests()
6730 if (IceProcessMessages(xsmp
.iceconn
, NULL
, &rep
)
6731 == IceProcessMessagesIOError
)
6735 verb_msg((char_u
*)_("XSMP lost ICE connection"));
6745 /* Set up X Session Management Protocol */
6749 char errorstring
[80];
6750 SmcCallbacks smcallbacks
;
6758 verb_msg((char_u
*)_("XSMP opening connection"));
6760 xsmp
.save_yourself
= xsmp
.shutdown
= False
;
6762 /* Set up SM callbacks - must have all, even if they're not used */
6763 smcallbacks
.save_yourself
.callback
= xsmp_handle_save_yourself
;
6764 smcallbacks
.save_yourself
.client_data
= NULL
;
6765 smcallbacks
.die
.callback
= xsmp_die
;
6766 smcallbacks
.die
.client_data
= NULL
;
6767 smcallbacks
.save_complete
.callback
= xsmp_save_complete
;
6768 smcallbacks
.save_complete
.client_data
= NULL
;
6769 smcallbacks
.shutdown_cancelled
.callback
= xsmp_shutdown_cancelled
;
6770 smcallbacks
.shutdown_cancelled
.client_data
= NULL
;
6772 /* Set up a watch on ICE connection creations. The "dummy" argument is
6773 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6774 if (IceAddConnectionWatch(xsmp_ice_connection
, &dummy
) == 0)
6777 verb_msg((char_u
*)_("XSMP ICE connection watch failed"));
6781 /* Create an SM connection */
6782 xsmp
.smcconn
= SmcOpenConnection(
6787 SmcSaveYourselfProcMask
| SmcDieProcMask
6788 | SmcSaveCompleteProcMask
| SmcShutdownCancelledProcMask
,
6792 sizeof(errorstring
),
6794 if (xsmp
.smcconn
== NULL
)
6796 char errorreport
[132];
6800 vim_snprintf(errorreport
, sizeof(errorreport
),
6801 _("XSMP SmcOpenConnection failed: %s"), errorstring
);
6802 verb_msg((char_u
*)errorreport
);
6806 xsmp
.iceconn
= SmcGetIceConnection(xsmp
.smcconn
);
6810 smname
.value
= "vim";
6812 smnameprop
.name
= "SmProgram";
6813 smnameprop
.type
= "SmARRAY8";
6814 smnameprop
.num_vals
= 1;
6815 smnameprop
.vals
= &smname
;
6817 smprops
[0] = &smnameprop
;
6818 SmcSetProperties(xsmp
.smcconn
, 1, smprops
);
6823 /* Shut down XSMP comms. */
6827 if (xsmp_icefd
!= -1)
6829 SmcCloseConnection(xsmp
.smcconn
, 0, NULL
);
6830 if (xsmp
.clientid
!= NULL
)
6831 free(xsmp
.clientid
);
6832 xsmp
.clientid
= NULL
;
6836 #endif /* USE_XSMP */
6840 /* Translate character to its CTRL- value */
6844 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6845 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6846 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6847 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6848 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6849 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6853 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6856 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6867 0, 0, 0, 0, 0, 0, 0,
6878 0, 0, 0, 0, 0, 0, 0, 0,
6891 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6893 /* BE - C0 */ 0, 0, 0,
6903 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6913 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6924 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6925 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6928 char MetaCharTable
[]=
6929 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6930 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6931 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6932 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6933 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6937 /* TODO: Use characters NOT numbers!!! */
6938 char CtrlCharTable
[]=
6939 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6940 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6941 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6942 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6943 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,