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 /* volatile because it is used in signal handler sig_alarm(). */
185 static volatile int sig_alarm_called
;
187 static RETSIGTYPE deathtrap
__ARGS(SIGPROTOARG
);
189 static void catch_int_signal
__ARGS((void));
190 static void set_signals
__ARGS((void));
191 static void catch_signals
__ARGS((RETSIGTYPE (*func_deadly
)(), RETSIGTYPE (*func_other
)()));
193 static int have_wildcard
__ARGS((int, char_u
**));
194 static int have_dollars
__ARGS((int, char_u
**));
198 static int save_patterns
__ARGS((int num_pat
, char_u
**pat
, int *num_file
, char_u
***file
));
202 # define SIG_ERR ((RETSIGTYPE (*)())-1)
205 /* volatile because it is used in signal handler sig_winch(). */
206 static volatile int do_resize
= FALSE
;
208 static char_u
*extra_shell_arg
= NULL
;
209 static int show_shell_mess
= TRUE
;
211 /* volatile because it is used in signal handler deathtrap(). */
212 static volatile int deadly_signal
= 0; /* The signal we caught */
213 /* volatile because it is used in signal handler deathtrap(). */
214 static volatile int in_mch_delay
= FALSE
; /* sleeping in mch_delay() */
216 static int curr_tmode
= TMODE_COOK
; /* contains current terminal mode */
221 SmcConn smcconn
; /* The SM connection ID */
222 IceConn iceconn
; /* The ICE connection ID */
223 char *clientid
; /* The client ID for the current smc session */
224 Bool save_yourself
; /* If we're in the middle of a save_yourself */
225 Bool shutdown
; /* If we're in shutdown mode */
228 static xsmp_config_T xsmp
;
231 #ifdef SYS_SIGLIST_DECLARED
234 * extern char *_sys_siglist[NSIG];
235 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
236 * that describe the signals. That is nearly what we want here. But
237 * autoconf does only check for sys_siglist (without the underscore), I
238 * do not want to change everything today.... jw.
239 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
243 static struct signalinfo
245 int sig
; /* Signal number, eg. SIGSEGV etc */
246 char *name
; /* Signal name (not char_u!). */
247 char deadly
; /* Catch as a deadly signal? */
251 {SIGHUP
, "HUP", TRUE
},
254 {SIGQUIT
, "QUIT", TRUE
},
257 {SIGILL
, "ILL", TRUE
},
260 {SIGTRAP
, "TRAP", TRUE
},
263 {SIGABRT
, "ABRT", TRUE
},
266 {SIGEMT
, "EMT", TRUE
},
269 {SIGFPE
, "FPE", TRUE
},
272 {SIGBUS
, "BUS", TRUE
},
275 {SIGSEGV
, "SEGV", TRUE
},
278 {SIGSYS
, "SYS", TRUE
},
281 {SIGALRM
, "ALRM", FALSE
}, /* Perl's alarm() can trigger it */
284 {SIGTERM
, "TERM", TRUE
},
287 {SIGVTALRM
, "VTALRM", TRUE
},
289 #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
290 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
291 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
292 {SIGPROF
, "PROF", TRUE
},
295 {SIGXCPU
, "XCPU", TRUE
},
298 {SIGXFSZ
, "XFSZ", TRUE
},
301 {SIGUSR1
, "USR1", TRUE
},
303 #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
304 /* Used for sysmouse handling */
305 {SIGUSR2
, "USR2", TRUE
},
308 {SIGINT
, "INT", FALSE
},
311 {SIGWINCH
, "WINCH", FALSE
},
314 {SIGTSTP
, "TSTP", FALSE
},
317 {SIGPIPE
, "PIPE", FALSE
},
319 {-1, "Unknown!", FALSE
}
323 * Write s[len] to the screen.
330 ignored
= (int)write(1, (char *)s
, len
);
331 if (p_wd
) /* Unix is too fast, slow down a bit more */
332 RealWaitForChar(read_cmd_fd
, p_wd
, NULL
);
336 * mch_inchar(): low level input function.
337 * Get a characters from the keyboard.
338 * Return the number of characters that are available.
339 * If wtime == 0 do not wait for characters.
340 * If wtime == n wait a short time for characters.
341 * If wtime == -1 wait forever for characters.
344 mch_inchar(buf
, maxlen
, wtime
, tb_change_cnt
)
347 long wtime
; /* don't use "time", MIPS cannot handle it */
352 /* Check if window changed size while we were busy, perhaps the ":set
353 * columns=99" command was used. */
359 while (WaitForChar(wtime
) == 0) /* no character available */
361 if (!do_resize
) /* return if not interrupted by resize */
366 else /* wtime == -1 */
369 * If there is no character available within 'updatetime' seconds
370 * flush all the swap files to disk.
371 * Also done when interrupted by SIGWINCH.
373 if (WaitForChar(p_ut
) == 0)
376 if (trigger_cursorhold() && maxlen
>= 3
377 && !typebuf_changed(tb_change_cnt
))
381 buf
[2] = (int)KE_CURSORHOLD
;
389 for (;;) /* repeat until we got a character */
391 while (do_resize
) /* window changed size */
394 * we want to be interrupted by the winch signal
397 if (do_resize
) /* interrupted by SIGWINCH signal */
400 /* If input was put directly in typeahead buffer bail out here. */
401 if (typebuf_changed(tb_change_cnt
))
405 * For some terminals we only get one character at a time.
406 * We want the get all available characters, so we could keep on
407 * trying until none is available
408 * For some other terminals this is quite slow, that's why we don't do
411 len
= read_from_input_buf(buf
, (long)maxlen
);
417 for (i
= 0; i
< len
; i
++)
434 * return non-zero if a character is available
439 return WaitForChar(0L);
442 #if defined(HAVE_TOTAL_MEM) || defined(PROTO)
443 # ifdef HAVE_SYS_RESOURCE_H
444 # include <sys/resource.h>
446 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
447 # include <sys/sysctl.h>
449 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
450 # include <sys/sysinfo.h>
454 * Return total amount of memory available in Kbyte.
455 * Doesn't change when memory has been allocated.
458 mch_total_mem(special
)
462 return ulimit(3, 0L) >> 10; /* always 32MB? */
465 long_u shiftright
= 10; /* how much to shift "mem" right for Kbyte */
471 /* BSD way of getting the amount of RAM available. */
474 len
= sizeof(physmem
);
475 if (sysctl(mib
, 2, &physmem
, &len
, NULL
, 0) == 0)
476 mem
= (long_u
)physmem
;
479 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
482 struct sysinfo sinfo
;
484 /* Linux way of getting amount of RAM available */
485 if (sysinfo(&sinfo
) == 0)
487 # ifdef HAVE_SYSINFO_MEM_UNIT
488 /* avoid overflow as much as possible */
489 while (shiftright
> 0 && (sinfo
.mem_unit
& 1) == 0)
491 sinfo
.mem_unit
= sinfo
.mem_unit
>> 1;
494 mem
= sinfo
.totalram
* sinfo
.mem_unit
;
496 mem
= sinfo
.totalram
;
505 long pagesize
, pagecount
;
507 /* Solaris way of getting amount of RAM available */
508 pagesize
= sysconf(_SC_PAGESIZE
);
509 pagecount
= sysconf(_SC_PHYS_PAGES
);
510 if (pagesize
> 0 && pagecount
> 0)
512 /* avoid overflow as much as possible */
513 while (shiftright
> 0 && (pagesize
& 1) == 0)
515 pagesize
= (long_u
)pagesize
>> 1;
518 mem
= (long_u
)pagesize
* pagecount
;
523 /* Return the minimum of the physical memory and the user limit, because
524 * using more than the user limit may cause Vim to be terminated. */
525 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
529 if (getrlimit(RLIMIT_DATA
, &rlp
) == 0
530 && rlp
.rlim_cur
< ((rlim_t
)1 << (sizeof(long_u
) * 8 - 1))
531 # ifdef RLIM_INFINITY
532 && rlp
.rlim_cur
!= RLIM_INFINITY
534 && ((long_u
)rlp
.rlim_cur
>> 10) < (mem
>> shiftright
)
537 mem
= (long_u
)rlp
.rlim_cur
;
544 return mem
>> shiftright
;
545 return (long_u
)0x1fffff;
551 mch_delay(msec
, ignoreinput
)
557 long total
= msec
; /* remember original value */
562 /* Go to cooked mode without echo, to allow SIGINT interrupting us
563 * here. But we don't want QUIT to kill us (CTRL-\ used in a
564 * shell may produce SIGQUIT). */
566 old_tmode
= curr_tmode
;
567 if (curr_tmode
== TMODE_RAW
)
568 settmode(TMODE_SLEEP
);
571 * Everybody sleeps in a different way...
572 * Prefer nanosleep(), some versions of usleep() can only sleep up to
578 /* if total is large enough, wait by portions in p_mzq */
585 #ifdef HAVE_NANOSLEEP
589 ts
.tv_sec
= msec
/ 1000;
590 ts
.tv_nsec
= (msec
% 1000) * 1000000;
591 (void)nanosleep(&ts
, NULL
);
597 usleep((unsigned int)(999 * 1000));
600 usleep((unsigned int)(msec
* 1000));
603 poll(NULL
, 0, (int)msec
);
611 tv
.tv_sec
= msec
/ 1000;
612 tv
.tv_usec
= (msec
% 1000) * 1000;
614 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
615 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
617 select(0, NULL
, NULL
, NULL
, &tv
);
619 # endif /* __EMX__ */
620 # endif /* HAVE_SELECT */
621 # endif /* HAVE_NANOSLEEP */
622 #endif /* HAVE_USLEEP */
629 in_mch_delay
= FALSE
;
635 #if 0 /* disabled, no longer needed now that regmatch() is not recursive */
636 # if defined(HAVE_GETRLIMIT)
637 # define HAVE_STACK_LIMIT
641 #if defined(HAVE_STACK_LIMIT) \
642 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
643 # define HAVE_CHECK_STACK_GROWTH
645 * Support for checking for an almost-out-of-stack-space situation.
649 * Return a pointer to an item on the stack. Used to find out if the stack
652 static void check_stack_growth
__ARGS((char *p
));
653 static int stack_grows_downwards
;
656 * Find out if the stack grows upwards or downwards.
657 * "p" points to a variable on the stack of the caller.
660 check_stack_growth(p
)
665 stack_grows_downwards
= (p
> (char *)&i
);
669 #if defined(HAVE_STACK_LIMIT) || defined(PROTO)
670 static char *stack_limit
= NULL
;
672 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
673 # include <pthread.h>
674 # include <pthread_np.h>
678 * Find out until how var the stack can grow without getting into trouble.
679 * Called when starting up and when switching to the signal stack in
689 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
690 * limit doesn't fit in a long (rlim_cur might be "long long"). */
691 if (getrlimit(RLIMIT_STACK
, &rlp
) == 0
692 && rlp
.rlim_cur
< ((rlim_t
)1 << (sizeof(long_u
) * 8 - 1))
693 # ifdef RLIM_INFINITY
694 && rlp
.rlim_cur
!= RLIM_INFINITY
698 lim
= (long)rlp
.rlim_cur
;
699 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
704 /* On FreeBSD the initial thread always has a fixed stack size, no
705 * matter what the limits are set to. Normally it's 1 Mbyte. */
706 pthread_attr_init(&attr
);
707 if (pthread_attr_get_np(pthread_self(), &attr
) == 0)
709 pthread_attr_getstacksize(&attr
, &size
);
710 if (lim
> (long)size
)
713 pthread_attr_destroy(&attr
);
716 if (stack_grows_downwards
)
718 stack_limit
= (char *)((long)&i
- (lim
/ 16L * 15L));
719 if (stack_limit
>= (char *)&i
)
720 /* overflow, set to 1/16 of current stack position */
721 stack_limit
= (char *)((long)&i
/ 16L);
725 stack_limit
= (char *)((long)&i
+ (lim
/ 16L * 15L));
726 if (stack_limit
<= (char *)&i
)
727 stack_limit
= NULL
; /* overflow */
733 * Return FAIL when running out of stack space.
734 * "p" must point to any variable local to the caller that's on the stack.
740 if (stack_limit
!= NULL
)
742 if (stack_grows_downwards
)
747 else if (p
> stack_limit
)
754 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
756 * Support for using the signal stack.
757 * This helps when we run out of stack space, which causes a SIGSEGV. The
758 * signal handler then must run on another stack, since the normal stack is
763 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
766 # ifdef HAVE_SIGALTSTACK
767 static stack_t sigstk
; /* for sigaltstack() */
769 static struct sigstack sigstk
; /* for sigstack() */
772 static void init_signal_stack
__ARGS((void));
773 static char *signal_stack
;
778 if (signal_stack
!= NULL
)
780 # ifdef HAVE_SIGALTSTACK
781 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
782 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
783 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
784 * "struct sigaltstack" needs to be declared. */
785 extern int sigaltstack
__ARGS((const struct sigaltstack
*ss
, struct sigaltstack
*oss
));
789 sigstk
.ss_base
= signal_stack
;
791 sigstk
.ss_sp
= signal_stack
;
793 sigstk
.ss_size
= SIGSTKSZ
;
795 (void)sigaltstack(&sigstk
, NULL
);
797 sigstk
.ss_sp
= signal_stack
;
798 if (stack_grows_downwards
)
799 sigstk
.ss_sp
+= SIGSTKSZ
- 1;
800 sigstk
.ss_onstack
= 0;
801 (void)sigstack(&sigstk
, NULL
);
808 * We need correct prototypes for a signal function, otherwise mean compilers
809 * will barf when the second argument to signal() is ``wrong''.
810 * Let me try it with a few tricky defines from my own osdef.h (jw).
812 #if defined(SIGWINCH)
814 sig_winch
SIGDEFARG(sigarg
)
816 /* this is not required on all systems, but it doesn't hurt anybody */
817 signal(SIGWINCH
, (RETSIGTYPE (*)())sig_winch
);
825 catch_sigint
SIGDEFARG(sigarg
)
827 /* this is not required on all systems, but it doesn't hurt anybody */
828 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().
855 sig_alarm
SIGDEFARG(sigarg
)
857 /* doesn't do anything, just to break a system call */
858 sig_alarm_called
= TRUE
;
863 #if (defined(HAVE_SETJMP_H) \
864 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
865 || defined(FEAT_LIBCALL))) \
868 * A simplistic version of setjmp() that only allows one level of using.
869 * Don't call twice before calling mch_endjmp()!.
872 * if (SETJMP(lc_jump_env) != 0)
882 * Note: Can't move SETJMP() here, because a function calling setjmp() must
883 * not return before the saved environment is used.
884 * Returns OK for normal return, FAIL when the protected code caused a
885 * problem and LONGJMP() was used.
905 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
906 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
907 * otherwise catching the signal only works once. */
914 * This function handles deadly signals.
915 * It tries to preserve any swap file and exit properly.
916 * (partly from Elvis).
919 deathtrap
SIGDEFARG(sigarg
)
921 static int entered
= 0; /* count the number of times we got here.
922 Note: when memory has been corrupted
923 this may get an arbitrary value! */
928 #if defined(HAVE_SETJMP_H)
930 * Catch a crash in protected code.
931 * Restores the environment saved in lc_jump_env, which looks like
932 * SETJMP() returns 1.
936 # if defined(SIGHASARG)
939 lc_active
= FALSE
; /* don't jump again */
940 LONGJMP(lc_jump_env
, 1);
947 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
948 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
949 * pressing CTRL-\, but we don't want Vim to exit then. */
950 if (in_mch_delay
&& sigarg
== SIGQUIT
)
954 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
955 * here. This avoids that a non-reentrant function is interrupted, e.g.,
956 * free(). Calling free() again may then cause a crash. */
978 && !vim_handle_signal(sigarg
))
982 /* Remember how often we have been called. */
986 /* Set the v:dying variable. */
987 set_vim_var_nr(VV_DYING
, (long)entered
);
990 #ifdef HAVE_STACK_LIMIT
991 /* Since we are now using the signal stack, need to reset the stack
992 * limit. Otherwise using a regexp will fail. */
997 /* This is for opening gdb the moment Vim crashes.
998 * You need to manually adjust the file name and Vim executable name.
999 * Suggested by SungHyun Nam. */
1001 # define VI_GDB_FILE "/tmp/vimgdb"
1002 # define VIM_NAME "/usr/bin/vim"
1003 FILE *fp
= fopen(VI_GDB_FILE
, "w");
1011 , VIM_NAME
, getpid());
1013 system("xterm -e gdb -x "VI_GDB_FILE
);
1014 unlink(VI_GDB_FILE
);
1020 /* try to find the name of this signal */
1021 for (i
= 0; signal_info
[i
].sig
!= -1; i
++)
1022 if (sigarg
== signal_info
[i
].sig
)
1024 deadly_signal
= sigarg
;
1027 full_screen
= FALSE
; /* don't write message to the GUI, it might be
1028 * part of the problem... */
1030 * If something goes wrong after entering here, we may get here again.
1031 * When this happens, give a message and try to exit nicely (resetting the
1032 * terminal mode, etc.)
1033 * When this happens twice, just exit, don't even try to give a message,
1034 * stack may be corrupt or something weird.
1035 * When this still happens again (or memory was corrupted in such a way
1036 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1040 reset_signals(); /* don't catch any signals anymore */
1048 OUT_STR(_("Vim: Double signal, exiting\n"));
1054 sprintf((char *)IObuff
, _("Vim: Caught deadly signal %s\n"),
1055 signal_info
[i
].name
);
1057 sprintf((char *)IObuff
, _("Vim: Caught deadly signal\n"));
1059 preserve_exit(); /* preserve files and exit */
1070 #if defined(_REENTRANT) && defined(SIGCONT)
1072 * On Solaris with multi-threading, suspending might not work immediately.
1073 * Catch the SIGCONT signal, which will be used as an indication whether the
1074 * suspending has been done or not.
1076 * On Linux, signal is not always handled immediately either.
1077 * See https://bugs.launchpad.net/bugs/291373
1079 * volatile because it is used in in signal handler sigcont_handler().
1081 static volatile int sigcont_received
;
1082 static RETSIGTYPE sigcont_handler
__ARGS(SIGPROTOARG
);
1085 * signal handler for SIGCONT
1088 sigcont_handler
SIGDEFARG(sigarg
)
1090 sigcont_received
= TRUE
;
1096 * If the machine has job control, use it to suspend the program,
1097 * otherwise fake it by starting a new shell.
1102 /* BeOS does have SIGTSTP, but it doesn't work. */
1103 #if defined(SIGTSTP) && !defined(__BEOS__)
1104 out_flush(); /* needed to make cursor visible on some systems */
1105 settmode(TMODE_COOK
);
1106 out_flush(); /* needed to disable mouse on some systems */
1108 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1109 /* Since we are going to sleep, we can't respond to requests for the X
1110 * selections. Lose them, otherwise other applications will hang. But
1111 * first copy the text to cut buffer 0. */
1112 if (clip_star
.owned
|| clip_plus
.owned
)
1114 x11_export_final_selection();
1115 if (clip_star
.owned
)
1116 clip_lose_selection(&clip_star
);
1117 if (clip_plus
.owned
)
1118 clip_lose_selection(&clip_plus
);
1119 if (x11_display
!= NULL
)
1120 XFlush(x11_display
);
1124 # if defined(_REENTRANT) && defined(SIGCONT)
1125 sigcont_received
= FALSE
;
1127 kill(0, SIGTSTP
); /* send ourselves a STOP signal */
1128 # if defined(_REENTRANT) && defined(SIGCONT)
1130 * Wait for the SIGCONT signal to be handled. It generally happens
1131 * immediately, but somehow not all the time. Do not call pause()
1132 * because there would be race condition which would hang Vim if
1133 * signal happened in between the test of sigcont_received and the
1134 * call to pause(). If signal is not yet received, call sleep(0)
1135 * to just yield CPU. Signal should then be received. If somehow
1136 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1137 * further if signal is not received after 1+2+3+4 ms (not expected
1142 for (wait
= 0; !sigcont_received
&& wait
<= 3L; wait
++)
1143 /* Loop is not entered most of the time */
1144 mch_delay(wait
, FALSE
);
1150 * Set oldtitle to NULL, so the current title is obtained again.
1155 settmode(TMODE_RAW
);
1156 need_check_timestamps
= TRUE
;
1157 did_check_timestamps
= FALSE
;
1172 #ifdef MACOS_CONVERT
1180 #if defined(SIGWINCH)
1182 * WINDOW CHANGE signal is handled with sig_winch().
1184 signal(SIGWINCH
, (RETSIGTYPE (*)())sig_winch
);
1188 * We want the STOP signal to work, to make mch_suspend() work.
1189 * For "rvim" the STOP signal is ignored.
1192 signal(SIGTSTP
, restricted
? SIG_IGN
: SIG_DFL
);
1194 #if defined(_REENTRANT) && defined(SIGCONT)
1195 signal(SIGCONT
, sigcont_handler
);
1199 * We want to ignore breaking of PIPEs.
1202 signal(SIGPIPE
, SIG_IGN
);
1210 * Ignore alarm signals (Perl's alarm() generates it).
1213 signal(SIGALRM
, SIG_IGN
);
1217 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1218 * work will be lost.
1221 signal(SIGPWR
, (RETSIGTYPE (*)())catch_sigpwr
);
1225 * Arrange for other signals to gracefully shutdown Vim.
1227 catch_signals(deathtrap
, SIG_ERR
);
1229 #if defined(FEAT_GUI) && defined(SIGHUP)
1231 * When the GUI is running, ignore the hangup signal.
1234 signal(SIGHUP
, SIG_IGN
);
1238 #if defined(SIGINT) || defined(PROTO)
1240 * Catch CTRL-C (only works while in Cooked mode).
1245 signal(SIGINT
, (RETSIGTYPE (*)())catch_sigint
);
1252 catch_signals(SIG_DFL
, SIG_DFL
);
1253 #if defined(_REENTRANT) && defined(SIGCONT)
1254 /* SIGCONT isn't in the list, because its default action is ignore */
1255 signal(SIGCONT
, SIG_DFL
);
1260 catch_signals(func_deadly
, func_other
)
1261 RETSIGTYPE (*func_deadly
)();
1262 RETSIGTYPE (*func_other
)();
1266 for (i
= 0; signal_info
[i
].sig
!= -1; i
++)
1267 if (signal_info
[i
].deadly
)
1269 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1270 struct sigaction sa
;
1272 /* Setup to use the alternate stack for the signal function. */
1273 sa
.sa_handler
= func_deadly
;
1274 sigemptyset(&sa
.sa_mask
);
1275 # if defined(__linux__) && defined(_REENTRANT)
1276 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1277 * thread handling in combination with using the alternate stack:
1278 * pthread library functions try to use the stack pointer to
1279 * identify the current thread, causing a SEGV signal, which
1280 * recursively calls deathtrap() and hangs. */
1283 sa
.sa_flags
= SA_ONSTACK
;
1285 sigaction(signal_info
[i
].sig
, &sa
, NULL
);
1287 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1290 /* Setup to use the alternate stack for the signal function. */
1291 sv
.sv_handler
= func_deadly
;
1293 sv
.sv_flags
= SV_ONSTACK
;
1294 sigvec(signal_info
[i
].sig
, &sv
, NULL
);
1296 signal(signal_info
[i
].sig
, func_deadly
);
1300 else if (func_other
!= SIG_ERR
)
1301 signal(signal_info
[i
].sig
, func_other
);
1305 * Handling of SIGHUP, SIGQUIT and SIGTERM:
1306 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1308 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1309 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1311 * Returns TRUE when Vim should exit.
1314 vim_handle_signal(sig
)
1317 static int got_signal
= 0;
1318 static int blocked
= TRUE
;
1322 case SIGNAL_BLOCK
: blocked
= TRUE
;
1325 case SIGNAL_UNBLOCK
: blocked
= FALSE
;
1326 if (got_signal
!= 0)
1328 kill(getpid(), got_signal
);
1333 default: if (!blocked
)
1334 return TRUE
; /* exit! */
1339 got_int
= TRUE
; /* break any loops */
1346 * Check_win checks whether we have an interactive stdout.
1349 mch_check_win(argc
, argv
)
1355 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1356 * name, mostly it's just "vim" and found in the path, which is unusable.
1358 if (mch_isFullName(argv
[0]))
1359 exe_name
= vim_strsave((char_u
*)argv
[0]);
1367 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1372 if (isatty(read_cmd_fd
))
1379 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1380 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1382 static void xopen_message
__ARGS((struct timeval
*tvp
));
1385 * Give a message about the elapsed time for opening the X window.
1389 struct timeval
*tvp
; /* must contain start time */
1391 struct timeval end_tv
;
1393 /* Compute elapsed time. */
1394 gettimeofday(&end_tv
, NULL
);
1395 smsg((char_u
*)_("Opening the X display took %ld msec"),
1396 (end_tv
.tv_sec
- tvp
->tv_sec
) * 1000L
1397 + (end_tv
.tv_usec
- tvp
->tv_usec
) / 1000L);
1402 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1404 * A few functions shared by X11 title and clipboard code.
1406 static int x_error_handler
__ARGS((Display
*dpy
, XErrorEvent
*error_event
));
1407 static int x_error_check
__ARGS((Display
*dpy
, XErrorEvent
*error_event
));
1408 static int x_connect_to_server
__ARGS((void));
1409 static int test_x11_window
__ARGS((Display
*dpy
));
1411 static int got_x_error
= FALSE
;
1414 * X Error handler, otherwise X just exits! (very rude) -- webb
1417 x_error_handler(dpy
, error_event
)
1419 XErrorEvent
*error_event
;
1421 XGetErrorText(dpy
, error_event
->error_code
, (char *)IObuff
, IOSIZE
);
1422 STRCAT(IObuff
, _("\nVim: Got X error\n"));
1424 /* We cannot print a message and continue, because no X calls are allowed
1425 * here (causes my system to hang). Silently continuing might be an
1427 preserve_exit(); /* preserve files and exit */
1429 return 0; /* NOTREACHED */
1433 * Another X Error handler, just used to check for errors.
1436 x_error_check(dpy
, error_event
)
1437 Display
*dpy UNUSED
;
1438 XErrorEvent
*error_event UNUSED
;
1444 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1445 # if defined(HAVE_SETJMP_H)
1447 * An X IO Error handler, used to catch error while opening the display.
1449 static int x_IOerror_check
__ARGS((Display
*dpy
));
1452 x_IOerror_check(dpy
)
1453 Display
*dpy UNUSED
;
1455 /* This function should not return, it causes exit(). Longjump instead. */
1456 LONGJMP(lc_jump_env
, 1);
1461 * An X IO Error handler, used to catch terminal errors.
1463 static int x_IOerror_handler
__ARGS((Display
*dpy
));
1466 x_IOerror_handler(dpy
)
1467 Display
*dpy UNUSED
;
1472 xterm_Shell
= (Widget
)0;
1474 /* This function should not return, it causes exit(). Longjump instead. */
1475 LONGJMP(x_jump_env
, 1);
1480 * Return TRUE when connection to the X server is desired.
1483 x_connect_to_server()
1485 regmatch_T regmatch
;
1487 #if defined(FEAT_CLIENTSERVER)
1488 if (x_force_connect
)
1494 /* Check for a match with "exclude:" from 'clipboard'. */
1495 if (clip_exclude_prog
!= NULL
)
1497 regmatch
.rm_ic
= FALSE
; /* Don't ignore case */
1498 regmatch
.regprog
= clip_exclude_prog
;
1499 if (vim_regexec(®match
, T_NAME
, (colnr_T
)0))
1506 * Test if "dpy" and x11_window are valid by getting the window title.
1507 * I don't actually want it yet, so there may be a simpler call to use, but
1508 * this will cause the error handler x_error_check() to be called if anything
1509 * is wrong, such as the window pointer being invalid (as can happen when the
1510 * user changes his DISPLAY, but not his WINDOWID) -- webb
1513 test_x11_window(dpy
)
1516 int (*old_handler
)();
1517 XTextProperty text_prop
;
1519 old_handler
= XSetErrorHandler(x_error_check
);
1520 got_x_error
= FALSE
;
1521 if (XGetWMName(dpy
, x11_window
, &text_prop
))
1522 XFree((void *)text_prop
.value
);
1524 (void)XSetErrorHandler(old_handler
);
1526 if (p_verbose
> 0 && got_x_error
)
1527 verb_msg((char_u
*)_("Testing the X display failed"));
1529 return (got_x_error
? FAIL
: OK
);
1537 static int get_x11_thing
__ARGS((int get_title
, int test_only
));
1540 * try to get x11 window and display
1542 * return FAIL for failure, OK otherwise
1548 static int result
= -1;
1549 #define XD_NONE 0 /* x11_display not set here */
1550 #define XD_HERE 1 /* x11_display opened here */
1551 #define XD_GUI 2 /* x11_display used from gui.dpy */
1552 #define XD_XTERM 3 /* x11_display used from xterm_dpy */
1553 static int x11_display_from
= XD_NONE
;
1554 static int did_set_error_handler
= FALSE
;
1556 if (!did_set_error_handler
)
1558 /* X just exits if it finds an error otherwise! */
1559 (void)XSetErrorHandler(x_error_handler
);
1560 did_set_error_handler
= TRUE
;
1563 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
1567 * If the X11 display was opened here before, for the window where Vim
1568 * was started, close that one now to avoid a memory leak.
1570 if (x11_display_from
== XD_HERE
&& x11_display
!= NULL
)
1572 XCloseDisplay(x11_display
);
1573 x11_display_from
= XD_NONE
;
1575 if (gui_get_x11_windis(&x11_window
, &x11_display
) == OK
)
1577 x11_display_from
= XD_GUI
;
1583 else if (x11_display_from
== XD_GUI
)
1585 /* GUI must have stopped somehow, clear x11_display */
1588 x11_display_from
= XD_NONE
;
1592 /* When started with the "-X" argument, don't try connecting. */
1593 if (!x_connect_to_server())
1597 * If WINDOWID not set, should try another method to find out
1598 * what the current window number is. The only code I know for
1599 * this is very complicated.
1600 * We assume that zero is invalid for WINDOWID.
1602 if (x11_window
== 0 && (winid
= getenv("WINDOWID")) != NULL
)
1603 x11_window
= (Window
)atol(winid
);
1605 #ifdef FEAT_XCLIPBOARD
1606 if (xterm_dpy
!= NULL
&& x11_window
!= 0)
1608 /* We may have checked it already, but Gnome terminal can move us to
1609 * another window, so we need to check every time. */
1610 if (x11_display_from
!= XD_XTERM
)
1613 * If the X11 display was opened here before, for the window where
1614 * Vim was started, close that one now to avoid a memory leak.
1616 if (x11_display_from
== XD_HERE
&& x11_display
!= NULL
)
1617 XCloseDisplay(x11_display
);
1618 x11_display
= xterm_dpy
;
1619 x11_display_from
= XD_XTERM
;
1621 if (test_x11_window(x11_display
) == FAIL
)
1623 /* probably bad $WINDOWID */
1626 x11_display_from
= XD_NONE
;
1633 if (x11_window
== 0 || x11_display
== NULL
)
1636 if (result
!= -1) /* Have already been here and set this */
1637 return result
; /* Don't do all these X calls again */
1639 if (x11_window
!= 0 && x11_display
== NULL
)
1641 #ifdef SET_SIG_ALARM
1642 RETSIGTYPE (*sig_save
)();
1644 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1645 struct timeval start_tv
;
1648 gettimeofday(&start_tv
, NULL
);
1651 #ifdef SET_SIG_ALARM
1653 * Opening the Display may hang if the DISPLAY setting is wrong, or
1654 * the network connection is bad. Set an alarm timer to get out.
1656 sig_alarm_called
= FALSE
;
1657 sig_save
= (RETSIGTYPE (*)())signal(SIGALRM
,
1658 (RETSIGTYPE (*)())sig_alarm
);
1661 x11_display
= XOpenDisplay(NULL
);
1663 #ifdef SET_SIG_ALARM
1665 signal(SIGALRM
, (RETSIGTYPE (*)())sig_save
);
1666 if (p_verbose
> 0 && sig_alarm_called
)
1667 verb_msg((char_u
*)_("Opening the X display timed out"));
1669 if (x11_display
!= NULL
)
1671 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1675 xopen_message(&start_tv
);
1679 if (test_x11_window(x11_display
) == FAIL
)
1681 /* Maybe window id is bad */
1683 XCloseDisplay(x11_display
);
1687 x11_display_from
= XD_HERE
;
1690 if (x11_window
== 0 || x11_display
== NULL
)
1691 return (result
= FAIL
);
1692 return (result
= OK
);
1696 * Determine original x11 Window Title
1699 get_x11_title(test_only
)
1702 return get_x11_thing(TRUE
, test_only
);
1706 * Determine original x11 Window icon
1709 get_x11_icon(test_only
)
1714 retval
= get_x11_thing(FALSE
, test_only
);
1716 /* could not get old icon, use terminal name */
1717 if (oldicon
== NULL
&& !test_only
)
1719 if (STRNCMP(T_NAME
, "builtin_", 8) == 0)
1720 oldicon
= T_NAME
+ 8;
1729 get_x11_thing(get_title
, test_only
)
1730 int get_title
; /* get title string */
1733 XTextProperty text_prop
;
1737 if (get_x11_windis() == OK
)
1739 /* Get window/icon name if any */
1741 status
= XGetWMName(x11_display
, x11_window
, &text_prop
);
1743 status
= XGetWMIconName(x11_display
, x11_window
, &text_prop
);
1746 * If terminal is xterm, then x11_window may be a child window of the
1747 * outer xterm window that actually contains the window/icon name, so
1748 * keep traversing up the tree until a window with a title/icon is
1751 /* Previously this was only done for xterm and alikes. I don't see a
1752 * reason why it would fail for other terminal emulators.
1753 * if (term_is_xterm) */
1757 Window win
= x11_window
;
1759 unsigned int num_children
;
1761 while (!status
|| text_prop
.value
== NULL
)
1763 if (!XQueryTree(x11_display
, win
, &root
, &parent
, &children
,
1767 XFree((void *)children
);
1768 if (parent
== root
|| parent
== 0)
1773 status
= XGetWMName(x11_display
, win
, &text_prop
);
1775 status
= XGetWMIconName(x11_display
, win
, &text_prop
);
1778 if (status
&& text_prop
.value
!= NULL
)
1783 #ifdef FEAT_XFONTSET
1784 if (text_prop
.encoding
== XA_STRING
)
1788 oldtitle
= vim_strsave((char_u
*)text_prop
.value
);
1790 oldicon
= vim_strsave((char_u
*)text_prop
.value
);
1791 #ifdef FEAT_XFONTSET
1796 Status transform_status
;
1799 transform_status
= XmbTextPropertyToTextList(x11_display
,
1802 if (transform_status
>= Success
&& n
> 0 && cl
[0])
1805 oldtitle
= vim_strsave((char_u
*) cl
[0]);
1807 oldicon
= vim_strsave((char_u
*) cl
[0]);
1808 XFreeStringList(cl
);
1813 oldtitle
= vim_strsave((char_u
*)text_prop
.value
);
1815 oldicon
= vim_strsave((char_u
*)text_prop
.value
);
1820 XFree((void *)text_prop
.value
);
1826 /* Are Xutf8 functions available? Avoid error from old compilers. */
1827 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1828 # if X_HAVE_UTF8_STRING
1829 # define USE_UTF8_STRING
1834 * Set x11 Window Title
1836 * get_x11_windis() must be called before this and have returned OK
1839 set_x11_title(title
)
1842 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1843 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1844 * supported everywhere and STRING doesn't work for multi-byte titles.
1846 #ifdef USE_UTF8_STRING
1848 Xutf8SetWMProperties(x11_display
, x11_window
, (const char *)title
,
1849 NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1853 #if XtSpecificationRelease >= 4
1854 # ifdef FEAT_XFONTSET
1855 XmbSetWMProperties(x11_display
, x11_window
, (const char *)title
,
1856 NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1858 XTextProperty text_prop
;
1859 char *c_title
= (char *)title
;
1861 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
1862 (void)XStringListToTextProperty(&c_title
, 1, &text_prop
);
1863 XSetWMProperties(x11_display
, x11_window
, &text_prop
,
1864 NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1867 XStoreName(x11_display
, x11_window
, (char *)title
);
1870 XFlush(x11_display
);
1874 * Set x11 Window icon
1876 * get_x11_windis() must be called before this and have returned OK
1882 /* See above for comments about using X*SetWMProperties(). */
1883 #ifdef USE_UTF8_STRING
1885 Xutf8SetWMProperties(x11_display
, x11_window
, NULL
, (const char *)icon
,
1886 NULL
, 0, NULL
, NULL
, NULL
);
1890 #if XtSpecificationRelease >= 4
1891 # ifdef FEAT_XFONTSET
1892 XmbSetWMProperties(x11_display
, x11_window
, NULL
, (const char *)icon
,
1893 NULL
, 0, NULL
, NULL
, NULL
);
1895 XTextProperty text_prop
;
1896 char *c_icon
= (char *)icon
;
1898 (void)XStringListToTextProperty(&c_icon
, 1, &text_prop
);
1899 XSetWMProperties(x11_display
, x11_window
, NULL
, &text_prop
,
1900 NULL
, 0, NULL
, NULL
, NULL
);
1903 XSetIconName(x11_display
, x11_window
, (char *)icon
);
1906 XFlush(x11_display
);
1909 #else /* FEAT_X11 */
1912 get_x11_title(test_only
)
1913 int test_only UNUSED
;
1919 get_x11_icon(test_only
)
1924 if (STRNCMP(T_NAME
, "builtin_", 8) == 0)
1925 oldicon
= T_NAME
+ 8;
1932 #endif /* FEAT_X11 */
1935 mch_can_restore_title()
1937 return get_x11_title(TRUE
);
1941 mch_can_restore_icon()
1943 return get_x11_icon(TRUE
);
1947 * Set the window title and icon.
1950 mch_settitle(title
, icon
)
1955 static int recursive
= 0;
1957 if (T_NAME
== NULL
) /* no terminal name (yet) */
1959 if (title
== NULL
&& icon
== NULL
) /* nothing to do */
1962 /* When one of the X11 functions causes a deadly signal, we get here again
1963 * recursively. Avoid hanging then (something is probably locked). */
1969 * if the window ID and the display is known, we may use X11 calls
1972 if (get_x11_windis() == OK
)
1975 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1982 * Note: if "t_TS" is set, title is set with escape sequence rather
1983 * than x11 calls, because the x11 calls don't always work
1985 if ((type
|| *T_TS
!= NUL
) && title
!= NULL
)
1987 if (oldtitle
== NULL
1991 ) /* first call but not in GUI, save title */
1992 (void)get_x11_title(FALSE
);
1994 if (*T_TS
!= NUL
) /* it's OK if t_fs is empty */
1995 term_settitle(title
);
1998 # ifdef FEAT_GUI_GTK
1999 if (!gui
.in_use
) /* don't do this if GTK+ is running */
2001 set_x11_title(title
); /* x11 */
2003 #if defined(FEAT_GUI_GTK) \
2004 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2006 gui_mch_settitle(title
, icon
);
2008 did_set_title
= TRUE
;
2011 if ((type
|| *T_CIS
!= NUL
) && icon
!= NULL
)
2017 ) /* first call, save icon */
2018 get_x11_icon(FALSE
);
2022 out_str(T_CIS
); /* set icon start */
2024 out_str(T_CIE
); /* set icon end */
2029 # ifdef FEAT_GUI_GTK
2030 if (!gui
.in_use
) /* don't do this if GTK+ is running */
2032 set_x11_icon(icon
); /* x11 */
2034 did_set_icon
= TRUE
;
2040 * Restore the window/icon title.
2041 * "which" is one of:
2042 * 1 only restore title
2043 * 2 only restore icon
2044 * 3 restore title and icon
2047 mch_restore_title(which
)
2050 /* only restore the title or icon when it has been set */
2051 mch_settitle(((which
& 1) && did_set_title
) ?
2052 (oldtitle
? oldtitle
: p_titleold
) : NULL
,
2053 ((which
& 2) && did_set_icon
) ? oldicon
: NULL
);
2056 #endif /* FEAT_TITLE */
2059 * Return TRUE if "name" looks like some xterm name.
2060 * Seiichi Sato mentioned that "mlterm" works like xterm.
2068 return (STRNICMP(name
, "xterm", 5) == 0
2069 || STRNICMP(name
, "nxterm", 6) == 0
2070 || STRNICMP(name
, "kterm", 5) == 0
2071 || STRNICMP(name
, "mlterm", 6) == 0
2072 || STRNICMP(name
, "rxvt", 4) == 0
2073 || STRCMP(name
, "builtin_xterm") == 0);
2076 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2078 * Return TRUE if "name" appears to be that of a terminal
2079 * known to support the xterm-style mouse protocol.
2080 * Relies on term_is_xterm having been set to its correct value.
2083 use_xterm_like_mouse(name
)
2086 return (name
!= NULL
2087 && (term_is_xterm
|| STRNICMP(name
, "screen", 6) == 0));
2091 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2093 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2094 * Return 1 for "xterm".
2095 * Return 2 for "xterm2".
2100 if (ttym_flags
== TTYM_XTERM2
)
2102 if (ttym_flags
== TTYM_XTERM
)
2114 return (STRNICMP(name
, "iris-ansi", 9) == 0
2115 || STRCMP(name
, "builtin_iris-ansi") == 0);
2123 return FALSE
; /* actually all ANSI comp. terminals should be here */
2124 /* catch VT100 - VT5xx */
2125 return ((STRNICMP(name
, "vt", 2) == 0
2126 && vim_strchr((char_u
*)"12345", name
[2]) != NULL
)
2127 || STRCMP(name
, "builtin_vt320") == 0);
2131 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2132 * This should include all windowed terminal emulators.
2135 vim_is_fastterm(name
)
2140 if (vim_is_xterm(name
) || vim_is_vt300(name
) || vim_is_iris(name
))
2142 return ( STRNICMP(name
, "hpterm", 6) == 0
2143 || STRNICMP(name
, "sun-cmd", 7) == 0
2144 || STRNICMP(name
, "screen", 6) == 0
2145 || STRNICMP(name
, "dtterm", 6) == 0);
2149 * Insert user name in s[len].
2150 * Return OK if a name found.
2153 mch_get_user_name(s
, len
)
2158 vim_strncpy(s
, (char_u
*)cuserid(NULL
), len
- 1);
2161 return mch_get_uname(getuid(), s
, len
);
2166 * Insert user name for "uid" in s[len].
2167 * Return OK if a name found.
2170 mch_get_uname(uid
, s
, len
)
2175 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2178 if ((pw
= getpwuid(uid
)) != NULL
2179 && pw
->pw_name
!= NULL
&& *(pw
->pw_name
) != NUL
)
2181 vim_strncpy(s
, (char_u
*)pw
->pw_name
, len
- 1);
2185 sprintf((char *)s
, "%d", (int)uid
); /* assumes s is long enough */
2186 return FAIL
; /* a number is not a name */
2190 * Insert host name is s[len].
2193 #ifdef HAVE_SYS_UTSNAME_H
2195 mch_get_host_name(s
, len
)
2199 struct utsname vutsname
;
2201 if (uname(&vutsname
) < 0)
2204 vim_strncpy(s
, (char_u
*)vutsname
.nodename
, len
- 1);
2206 #else /* HAVE_SYS_UTSNAME_H */
2208 # ifdef HAVE_SYS_SYSTEMINFO_H
2209 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2213 mch_get_host_name(s
, len
)
2218 vaxc$
gethostname((char *)s
, len
);
2220 gethostname((char *)s
, len
);
2222 s
[len
- 1] = NUL
; /* make sure it's terminated */
2224 #endif /* HAVE_SYS_UTSNAME_H */
2232 return (long)getpid();
2235 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2236 static char *strerror
__ARGS((int));
2242 extern int sys_nerr
;
2243 extern char *sys_errlist
[];
2246 if (err
> 0 && err
< sys_nerr
)
2247 return (sys_errlist
[err
]);
2248 sprintf(er
, "Error %d", err
);
2254 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2255 * Return OK for success, FAIL for failure.
2258 mch_dirname(buf
, len
)
2262 #if defined(USE_GETCWD)
2263 if (getcwd((char *)buf
, len
) == NULL
)
2265 STRCPY(buf
, strerror(errno
));
2270 return (getwd((char *)buf
) != NULL
? OK
: FAIL
);
2274 #if defined(OS2) || defined(PROTO)
2276 * Replace all slashes by backslashes.
2277 * When 'shellslash' set do it the other way around.
2293 * Get absolute file name into "buf[len]".
2295 * return FAIL for failure, OK for success
2298 mch_FullName(fname
, buf
, len
, force
)
2299 char_u
*fname
, *buf
;
2301 int force
; /* also expand when already absolute path */
2305 int only_drive
; /* file name is only a drive letter */
2309 static int dont_fchdir
= FALSE
; /* TRUE when fchdir() doesn't work */
2311 char_u olddir
[MAXPATHL
];
2315 char_u posix_fname
[MAXPATHL
]; /* Cygwin docs mention MAX_PATH, but
2316 it's not always defined */
2320 fname
= vms_fixfilename(fname
);
2325 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2327 # if CYGWIN_VERSION_DLL_MAJOR >= 1007
2328 cygwin_conv_path(CCP_WIN_A_TO_POSIX
, fname
, posix_fname
, MAXPATHL
);
2330 cygwin_conv_to_posix_path(fname
, posix_fname
);
2332 fname
= posix_fname
;
2335 /* expand it if forced or not an absolute path */
2336 if (force
|| !mch_isFullName(fname
))
2339 * If the file name has a path, change to that directory for a moment,
2340 * and then do the getwd() (and get back to where we were).
2341 * This will get the correct path name with "../" things.
2345 if (((p
= vim_strrchr(fname
, '/')) != NULL
)
2346 || ((p
= vim_strrchr(fname
, '\\')) != NULL
)
2347 || (((p
= vim_strchr(fname
, ':')) != NULL
) && ++only_drive
))
2349 if ((p
= vim_strrchr(fname
, '/')) != NULL
)
2354 * Use fchdir() if possible, it's said to be faster and more
2355 * reliable. But on SunOS 4 it might not work. Check this by
2356 * doing a fchdir() right now.
2360 fd
= open(".", O_RDONLY
| O_EXTRA
, 0);
2361 if (fd
>= 0 && fchdir(fd
) < 0)
2365 dont_fchdir
= TRUE
; /* don't try again */
2370 /* Only change directory when we are sure we can return to where
2371 * we are now. After doing "su" chdir(".") might not work. */
2376 (mch_dirname(olddir
, MAXPATHL
) == FAIL
2377 || mch_chdir((char *)olddir
) != 0))
2379 p
= NULL
; /* can't get current dir: don't chdir */
2386 * compensate for case where ':' from "D:" was the only
2387 * path separator detected in the file name; the _next_
2388 * character has to be removed, and then restored later.
2393 /* The directory is copied into buf[], to be able to remove
2394 * the file name without changing it (could be a string in
2395 * read-only memory) */
2396 if (p
- fname
>= len
)
2400 vim_strncpy(buf
, fname
, p
- fname
);
2401 if (mch_chdir((char *)buf
))
2417 if (mch_dirname(buf
, len
) == FAIL
)
2432 l
= mch_chdir((char *)olddir
);
2434 EMSG(_(e_prev_dir
));
2443 if (l
> 0 && buf
[l
- 1] != '/' && *fname
!= NUL
2444 && STRCMP(fname
, ".") != 0)
2450 /* Catch file names which are too long. */
2451 if (retval
== FAIL
|| (int)(STRLEN(buf
) + STRLEN(fname
)) >= len
)
2454 /* Do not append ".", "/dir/." is equal to "/dir". */
2455 if (STRCMP(fname
, ".") != 0)
2462 * Return TRUE if "fname" does not depend on the current directory.
2465 mch_isFullName(fname
)
2469 return _fnisabs(fname
);
2472 return ( fname
[0] == '/' || fname
[0] == '.' ||
2473 strchr((char *)fname
,':') || strchr((char *)fname
,'"') ||
2474 (strchr((char *)fname
,'[') && strchr((char *)fname
,']'))||
2475 (strchr((char *)fname
,'<') && strchr((char *)fname
,'>')) );
2477 return (*fname
== '/' || *fname
== '~');
2482 #if defined(USE_FNAME_CASE) || defined(PROTO)
2484 * Set the case of the file name, if it already exists. This will cause the
2485 * file name to remain exactly the same.
2486 * Only required for file systems where case is ignored and preserved.
2489 fname_case(name
, len
)
2491 int len UNUSED
; /* buffer size, only used when name gets longer */
2494 char_u
*slash
, *tail
;
2498 if (lstat((char *)name
, &st
) >= 0)
2500 /* Open the directory where the file is located. */
2501 slash
= vim_strrchr(name
, '/');
2504 dirp
= opendir(".");
2510 dirp
= opendir((char *)name
);
2517 while ((dp
= readdir(dirp
)) != NULL
)
2519 /* Only accept names that differ in case and are the same byte
2520 * length. TODO: accept different length name. */
2521 if (STRICMP(tail
, dp
->d_name
) == 0
2522 && STRLEN(tail
) == STRLEN(dp
->d_name
))
2524 char_u newname
[MAXPATHL
+ 1];
2527 /* Verify the inode is equal. */
2528 vim_strncpy(newname
, name
, MAXPATHL
);
2529 vim_strncpy(newname
+ (tail
- name
), (char_u
*)dp
->d_name
,
2530 MAXPATHL
- (tail
- name
));
2531 if (lstat((char *)newname
, &st2
) >= 0
2532 && st
.st_ino
== st2
.st_ino
2533 && st
.st_dev
== st2
.st_dev
)
2535 STRCPY(tail
, dp
->d_name
);
2548 * Get file permissions for 'name'.
2549 * Returns -1 when it doesn't exist.
2557 /* Keep the #ifdef outside of stat(), it may be a macro. */
2559 if (stat((char *)vms_fixfilename(name
), &statb
))
2561 if (stat((char *)name
, &statb
))
2565 /* The top bit makes the value negative, which means the file doesn't
2566 * exist. Remove the bit, we don't use it. */
2567 return statb
.st_mode
& ~S_ADDACE
;
2569 return statb
.st_mode
;
2574 * set file permission for 'name' to 'perm'
2576 * return FAIL for failure, OK otherwise
2579 mch_setperm(name
, perm
)
2583 return (chmod((char *)
2585 vms_fixfilename(name
),
2589 (mode_t
)perm
) == 0 ? OK
: FAIL
);
2592 #if defined(HAVE_ACL) || defined(PROTO)
2593 # ifdef HAVE_SYS_ACL_H
2594 # include <sys/acl.h>
2596 # ifdef HAVE_SYS_ACCESS_H
2597 # include <sys/access.h>
2600 # ifdef HAVE_SOLARIS_ACL
2601 typedef struct vim_acl_solaris_T
{
2603 aclent_t
*acl_entry
;
2604 } vim_acl_solaris_T
;
2607 #if defined(HAVE_SELINUX) || defined(PROTO)
2609 * Copy security info from "from_file" to "to_file".
2612 mch_copy_sec(from_file
, to_file
)
2616 if (from_file
== NULL
)
2619 if (selinux_enabled
== -1)
2620 selinux_enabled
= is_selinux_enabled();
2622 if (selinux_enabled
> 0)
2624 security_context_t from_context
= NULL
;
2625 security_context_t to_context
= NULL
;
2627 if (getfilecon((char *)from_file
, &from_context
) < 0)
2629 /* If the filesystem doesn't support extended attributes,
2630 the original had no special security context and the
2631 target cannot have one either. */
2632 if (errno
== EOPNOTSUPP
)
2635 MSG_PUTS(_("\nCould not get security context for "));
2636 msg_outtrans(from_file
);
2640 if (getfilecon((char *)to_file
, &to_context
) < 0)
2642 MSG_PUTS(_("\nCould not get security context for "));
2643 msg_outtrans(to_file
);
2645 freecon (from_context
);
2648 if (strcmp(from_context
, to_context
) != 0)
2650 if (setfilecon((char *)to_file
, from_context
) < 0)
2652 MSG_PUTS(_("\nCould not set security context for "));
2653 msg_outtrans(to_file
);
2657 freecon(to_context
);
2658 freecon(from_context
);
2661 #endif /* HAVE_SELINUX */
2664 * Return a pointer to the ACL of file "fname" in allocated memory.
2665 * Return NULL if the ACL is not available for whatever reason.
2669 char_u
*fname UNUSED
;
2671 vim_acl_T ret
= NULL
;
2672 #ifdef HAVE_POSIX_ACL
2673 ret
= (vim_acl_T
)acl_get_file((char *)fname
, ACL_TYPE_ACCESS
);
2675 #ifdef HAVE_SOLARIS_ACL
2676 vim_acl_solaris_T
*aclent
;
2678 aclent
= malloc(sizeof(vim_acl_solaris_T
));
2679 if ((aclent
->acl_cnt
= acl((char *)fname
, GETACLCNT
, 0, NULL
)) < 0)
2684 aclent
->acl_entry
= malloc(aclent
->acl_cnt
* sizeof(aclent_t
));
2685 if (acl((char *)fname
, GETACL
, aclent
->acl_cnt
, aclent
->acl_entry
) < 0)
2687 free(aclent
->acl_entry
);
2691 ret
= (vim_acl_T
)aclent
;
2693 #if defined(HAVE_AIX_ACL)
2697 aclsize
= sizeof(struct acl
);
2698 aclent
= malloc(aclsize
);
2699 if (statacl((char *)fname
, STX_NORMAL
, aclent
, aclsize
) < 0)
2701 if (errno
== ENOSPC
)
2703 aclsize
= aclent
->acl_len
;
2704 aclent
= realloc(aclent
, aclsize
);
2705 if (statacl((char *)fname
, STX_NORMAL
, aclent
, aclsize
) < 0)
2717 ret
= (vim_acl_T
)aclent
;
2718 #endif /* HAVE_AIX_ACL */
2719 #endif /* HAVE_SOLARIS_ACL */
2720 #endif /* HAVE_POSIX_ACL */
2725 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2728 mch_set_acl(fname
, aclent
)
2729 char_u
*fname UNUSED
;
2734 #ifdef HAVE_POSIX_ACL
2735 acl_set_file((char *)fname
, ACL_TYPE_ACCESS
, (acl_t
)aclent
);
2737 #ifdef HAVE_SOLARIS_ACL
2738 acl((char *)fname
, SETACL
, ((vim_acl_solaris_T
*)aclent
)->acl_cnt
,
2739 ((vim_acl_solaris_T
*)aclent
)->acl_entry
);
2742 chacl((char *)fname
, aclent
, ((struct acl
*)aclent
)->acl_len
);
2743 #endif /* HAVE_AIX_ACL */
2744 #endif /* HAVE_SOLARIS_ACL */
2745 #endif /* HAVE_POSIX_ACL */
2749 mch_free_acl(aclent
)
2754 #ifdef HAVE_POSIX_ACL
2755 acl_free((acl_t
)aclent
);
2757 #ifdef HAVE_SOLARIS_ACL
2758 free(((vim_acl_solaris_T
*)aclent
)->acl_entry
);
2763 #endif /* HAVE_AIX_ACL */
2764 #endif /* HAVE_SOLARIS_ACL */
2765 #endif /* HAVE_POSIX_ACL */
2770 * Set hidden flag for "name".
2774 char_u
*name UNUSED
;
2776 /* can't hide a file */
2780 * return TRUE if "name" is a directory
2781 * return FALSE if "name" is not a directory
2782 * return FALSE for error
2790 if (*name
== NUL
) /* Some stat()s don't flag "" as an error. */
2792 if (stat((char *)name
, &statb
))
2794 #ifdef _POSIX_SOURCE
2795 return (S_ISDIR(statb
.st_mode
) ? TRUE
: FALSE
);
2797 return ((statb
.st_mode
& S_IFMT
) == S_IFDIR
? TRUE
: FALSE
);
2801 static int executable_file
__ARGS((char_u
*name
));
2804 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2807 executable_file(name
)
2812 if (stat((char *)name
, &st
))
2814 return S_ISREG(st
.st_mode
) && mch_access((char *)name
, X_OK
) == 0;
2818 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2819 * Return -1 if unknown.
2829 /* If it's an absolute or relative path don't need to use $PATH. */
2830 if (mch_isFullName(name
) || (name
[0] == '.' && (name
[1] == '/'
2831 || (name
[1] == '.' && name
[2] == '/'))))
2832 return executable_file(name
);
2834 p
= (char_u
*)getenv("PATH");
2835 if (p
== NULL
|| *p
== NUL
)
2837 buf
= alloc((unsigned)(STRLEN(name
) + STRLEN(p
) + 2));
2842 * Walk through all entries in $PATH to check if "name" exists there and
2843 * is an executable file.
2847 e
= (char_u
*)strchr((char *)p
, ':');
2850 if (e
- p
<= 1) /* empty entry means current dir */
2854 vim_strncpy(buf
, p
, e
- p
);
2858 retval
= executable_file(buf
);
2872 * Check what "name" is:
2873 * NODE_NORMAL: file or directory (or doesn't exist)
2874 * NODE_WRITABLE: writable device, socket, fifo, etc.
2875 * NODE_OTHER: non-writable things
2883 if (stat((char *)name
, &st
))
2885 if (S_ISREG(st
.st_mode
) || S_ISDIR(st
.st_mode
))
2888 if (S_ISBLK(st
.st_mode
)) /* block device isn't writable */
2891 /* Everything else is writable? */
2892 return NODE_WRITABLE
;
2898 #ifdef HAVE_CHECK_STACK_GROWTH
2901 check_stack_growth((char *)&i
);
2903 # ifdef HAVE_STACK_LIMIT
2910 * Setup an alternative stack for signals. Helps to catch signals when
2911 * running out of stack space.
2912 * Use of sigaltstack() is preferred, it's more portable.
2913 * Ignore any errors.
2915 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2916 signal_stack
= (char *)alloc(SIGSTKSZ
);
2917 init_signal_stack();
2921 #if defined(EXITFREE) || defined(PROTO)
2925 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2926 if (clip_star
.owned
)
2927 clip_lose_selection(&clip_star
);
2928 if (clip_plus
.owned
)
2929 clip_lose_selection(&clip_plus
);
2931 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
2932 if (xterm_Shell
!= (Widget
)0)
2933 XtDestroyWidget(xterm_Shell
);
2934 # ifndef LESSTIF_VERSION
2935 /* Lesstif crashes here, lose some memory */
2936 if (xterm_dpy
!= NULL
)
2937 XtCloseDisplay(xterm_dpy
);
2938 if (app_context
!= (XtAppContext
)NULL
)
2940 XtDestroyApplicationContext(app_context
);
2942 x11_display
= NULL
; /* freed by XtDestroyApplicationContext() */
2947 /* Don't close the display for GTK 1, it is done in exit(). */
2948 # if defined(FEAT_X11) && (!defined(FEAT_GUI_GTK) || defined(HAVE_GTK2))
2949 if (x11_display
!= NULL
2950 # ifdef FEAT_XCLIPBOARD
2951 && x11_display
!= xterm_dpy
2954 XCloseDisplay(x11_display
);
2956 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2957 vim_free(signal_stack
);
2958 signal_stack
= NULL
;
2967 static void exit_scroll
__ARGS((void));
2970 * Output a newline when exiting.
2971 * Make sure the newline goes to the same stream as the text.
2978 if (newline_on_exit
|| msg_didout
)
2980 if (msg_use_printf())
2992 restore_cterm_colors(); /* get original colors back */
2993 msg_clr_eos_force(); /* clear the rest of the display */
2994 windgoto((int)Rows
- 1, 0); /* may have moved the cursor */
3004 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3005 x11_export_final_selection();
3012 settmode(TMODE_COOK
);
3014 mch_restore_title(3); /* restore xterm title and icon name */
3017 * When t_ti is not empty but it doesn't cause swapping terminal
3018 * pages, need to output a newline when msg_didout is set. But when
3019 * t_ti does swap pages it should not go to the shell page. Do this
3020 * before stoptermcap().
3022 if (swapping_screen() && !newline_on_exit
)
3025 /* Stop termcap: May need to check for T_CRV response, which
3026 * requires RAW mode. */
3030 * A newline is only required after a message in the alternate screen.
3031 * This is set to TRUE by wait_return().
3033 if (!swapping_screen() || newline_on_exit
)
3036 /* Cursor may have been switched off without calling starttermcap()
3037 * when doing "vim -u vimrc" and vimrc contains ":q". */
3042 ml_close_all(TRUE
); /* remove all memfiles */
3049 #ifdef MACOS_CONVERT
3054 /* A core dump won't be created if the signal handler
3055 * doesn't return, so we can't call exit() */
3056 if (deadly_signal
!= 0)
3060 #ifdef FEAT_NETBEANS_INTG
3062 netbeans_send_disconnect();
3075 if (deadly_signal
!= 0)
3077 signal(deadly_signal
, SIG_DFL
);
3078 kill(getpid(), deadly_signal
); /* Die using the signal we caught */
3088 static int first
= TRUE
;
3090 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3091 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3093 * for "new" tty systems
3095 # ifdef HAVE_TERMIOS_H
3096 static struct termios told
;
3097 struct termios tnew
;
3099 static struct termio told
;
3106 # if defined(HAVE_TERMIOS_H)
3107 tcgetattr(read_cmd_fd
, &told
);
3109 ioctl(read_cmd_fd
, TCGETA
, &told
);
3114 if (tmode
== TMODE_RAW
)
3117 * ~ICRNL enables typing ^V^M
3119 tnew
.c_iflag
&= ~ICRNL
;
3120 tnew
.c_lflag
&= ~(ICANON
| ECHO
| ISIG
| ECHOE
3121 # if defined(IEXTEN) && !defined(__MINT__)
3122 | IEXTEN
/* IEXTEN enables typing ^V on SOLARIS */
3123 /* but it breaks function keys on MINT */
3126 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3127 tnew
.c_oflag
&= ~ONLCR
;
3129 tnew
.c_cc
[VMIN
] = 1; /* return after 1 char */
3130 tnew
.c_cc
[VTIME
] = 0; /* don't wait */
3132 else if (tmode
== TMODE_SLEEP
)
3133 tnew
.c_lflag
&= ~(ECHO
);
3135 # if defined(HAVE_TERMIOS_H)
3139 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3141 while (tcsetattr(read_cmd_fd
, TCSANOW
, &tnew
) == -1
3142 && errno
== EINTR
&& n
> 0)
3146 ioctl(read_cmd_fd
, TCSETA
, &tnew
);
3152 * for "old" tty systems
3155 # define TIOCSETN TIOCSETP /* for hpux 9.0 */
3157 static struct sgttyb ttybold
;
3158 struct sgttyb ttybnew
;
3163 ioctl(read_cmd_fd
, TIOCGETP
, &ttybold
);
3167 if (tmode
== TMODE_RAW
)
3169 ttybnew
.sg_flags
&= ~(CRMOD
| ECHO
);
3170 ttybnew
.sg_flags
|= RAW
;
3172 else if (tmode
== TMODE_SLEEP
)
3173 ttybnew
.sg_flags
&= ~(ECHO
);
3174 ioctl(read_cmd_fd
, TIOCSETN
, &ttybnew
);
3180 * Try to get the code for "t_kb" from the stty setting
3182 * Even if termcap claims a backspace key, the user's setting *should*
3183 * prevail. stty knows more about reality than termcap does, and if
3184 * somebody's usual erase key is DEL (which, for most BSD users, it will
3185 * be), they're going to get really annoyed if their erase key starts
3186 * doing forward deletes for no reason. (Eric Fischer)
3194 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3195 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3196 /* for "new" tty systems */
3197 # ifdef HAVE_TERMIOS_H
3198 struct termios keys
;
3203 # if defined(HAVE_TERMIOS_H)
3204 if (tcgetattr(read_cmd_fd
, &keys
) != -1)
3206 if (ioctl(read_cmd_fd
, TCGETA
, &keys
) != -1)
3209 buf
[0] = keys
.c_cc
[VERASE
];
3210 intr_char
= keys
.c_cc
[VINTR
];
3212 /* for "old" tty systems */
3215 if (ioctl(read_cmd_fd
, TIOCGETP
, &keys
) != -1)
3217 buf
[0] = keys
.sg_erase
;
3218 intr_char
= keys
.sg_kill
;
3221 add_termcode((char_u
*)"kb", buf
, FALSE
);
3224 * If <BS> and <DEL> are now the same, redefine <DEL>.
3226 p
= find_termcode((char_u
*)"kD");
3227 if (p
!= NULL
&& p
[0] == buf
[0] && p
[1] == buf
[1])
3231 } /* to keep cindent happy */
3237 #if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3239 * Set mouse clicks on or off.
3245 static int ison
= FALSE
;
3246 int xterm_mouse_vers
;
3248 if (on
== ison
) /* return quickly if nothing to do */
3251 xterm_mouse_vers
= use_xterm_mouse();
3252 if (xterm_mouse_vers
> 0)
3254 if (on
) /* enable mouse events, use mouse tracking if available */
3255 out_str_nf((char_u
*)
3256 (xterm_mouse_vers
> 1
3257 ? IF_EB("\033[?1002h", ESC_STR
"[?1002h")
3258 : IF_EB("\033[?1000h", ESC_STR
"[?1000h")));
3259 else /* disable mouse events, could probably always send the same */
3260 out_str_nf((char_u
*)
3261 (xterm_mouse_vers
> 1
3262 ? IF_EB("\033[?1002l", ESC_STR
"[?1002l")
3263 : IF_EB("\033[?1000l", ESC_STR
"[?1000l")));
3267 # ifdef FEAT_MOUSE_DEC
3268 else if (ttym_flags
== TTYM_DEC
)
3270 if (on
) /* enable mouse events */
3271 out_str_nf((char_u
*)"\033[1;2'z\033[1;3'{");
3272 else /* disable mouse events */
3273 out_str_nf((char_u
*)"\033['z");
3278 # ifdef FEAT_MOUSE_GPM
3294 # ifdef FEAT_SYSMOUSE
3299 if (sysmouse_open() == OK
)
3310 # ifdef FEAT_MOUSE_JSB
3315 /* D - Enable Mouse up/down messages
3316 * L - Enable Left Button Reporting
3317 * M - Enable Middle Button Reporting
3318 * R - Enable Right Button Reporting
3319 * K - Enable SHIFT and CTRL key Reporting
3320 * + - Enable Advanced messaging of mouse moves and up/down messages
3322 * # - Numeric value of mouse pointer required
3323 * 0 = Multiview 2000 cursor, used as standard
3325 * 2 = Windows I Beam
3326 * 3 = Windows Hour Glass
3327 * 4 = Windows Cross Hair
3328 * 5 = Windows UP Arrow
3330 #ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3331 out_str_nf((char_u
*)IF_EB("\033[0~ZwLMRK1Q\033\\",
3332 ESC_STR
"[0~ZwLMRK1Q" ESC_STR
"\\"));
3334 out_str_nf((char_u
*)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3335 ESC_STR
"[0~ZwLMRK+1Q" ESC_STR
"\\"));
3341 out_str_nf((char_u
*)IF_EB("\033[0~ZwQ\033\\",
3342 ESC_STR
"[0~ZwQ" ESC_STR
"\\"));
3347 # ifdef FEAT_MOUSE_PTERM
3350 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3352 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3354 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3361 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3364 check_mouse_termcode()
3366 # ifdef FEAT_MOUSE_XTERM
3367 if (use_xterm_mouse()
3373 set_mouse_termcode(KS_MOUSE
, (char_u
*)(term_is_8bit(T_NAME
)
3374 ? IF_EB("\233M", CSI_STR
"M")
3375 : IF_EB("\033[M", ESC_STR
"[M")));
3376 if (*p_mouse
!= NUL
)
3378 /* force mouse off and maybe on to send possibly new mouse
3379 * activation sequence to the xterm, with(out) drag tracing. */
3380 mch_setmouse(FALSE
);
3385 del_mouse_termcode(KS_MOUSE
);
3388 # ifdef FEAT_MOUSE_GPM
3389 if (!use_xterm_mouse()
3394 set_mouse_termcode(KS_MOUSE
, (char_u
*)IF_EB("\033MG", ESC_STR
"MG"));
3397 # ifdef FEAT_SYSMOUSE
3398 if (!use_xterm_mouse()
3403 set_mouse_termcode(KS_MOUSE
, (char_u
*)IF_EB("\033MS", ESC_STR
"MS"));
3406 # ifdef FEAT_MOUSE_JSB
3407 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3408 if (!use_xterm_mouse()
3413 set_mouse_termcode(KS_JSBTERM_MOUSE
,
3414 (char_u
*)IF_EB("\033[0~zw", ESC_STR
"[0~zw"));
3416 del_mouse_termcode(KS_JSBTERM_MOUSE
);
3419 # ifdef FEAT_MOUSE_NET
3420 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
3421 * define it in the GUI or when using an xterm. */
3422 if (!use_xterm_mouse()
3427 set_mouse_termcode(KS_NETTERM_MOUSE
,
3428 (char_u
*)IF_EB("\033}", ESC_STR
"}"));
3430 del_mouse_termcode(KS_NETTERM_MOUSE
);
3433 # ifdef FEAT_MOUSE_DEC
3434 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3435 if (!use_xterm_mouse()
3440 set_mouse_termcode(KS_DEC_MOUSE
, (char_u
*)(term_is_8bit(T_NAME
)
3441 ? IF_EB("\233", CSI_STR
) : IF_EB("\033[", ESC_STR
"[")));
3443 del_mouse_termcode(KS_DEC_MOUSE
);
3445 # ifdef FEAT_MOUSE_PTERM
3446 /* same as the dec mouse */
3447 if (!use_xterm_mouse()
3452 set_mouse_termcode(KS_PTERM_MOUSE
,
3453 (char_u
*) IF_EB("\033[", ESC_STR
"["));
3455 del_mouse_termcode(KS_PTERM_MOUSE
);
3461 * set screen mode, always fails.
3467 EMSG(_(e_screenmode
));
3474 * Try to get the current window size:
3475 * 1. with an ioctl(), most accurate method
3476 * 2. from the environment variables LINES and COLUMNS
3477 * 3. from the termcap
3478 * 4. keep using the old values
3479 * Return OK when size could be determined, FAIL otherwise.
3489 * For OS/2 use _scrsize().
3502 * 1. try using an ioctl. It is the most accurate method.
3504 * Try using TIOCGWINSZ first, some systems that have it also define
3505 * TIOCGSIZE but don't have a struct ttysize.
3512 /* When stdout is not a tty, use stdin for the ioctl(). */
3513 if (!isatty(fd
) && isatty(read_cmd_fd
))
3515 if (ioctl(fd
, TIOCGWINSZ
, &ws
) == 0)
3517 columns
= ws
.ws_col
;
3521 # else /* TIOCGWINSZ */
3527 /* When stdout is not a tty, use stdin for the ioctl(). */
3528 if (!isatty(fd
) && isatty(read_cmd_fd
))
3530 if (ioctl(fd
, TIOCGSIZE
, &ts
) == 0)
3532 columns
= ts
.ts_cols
;
3536 # endif /* TIOCGSIZE */
3537 # endif /* TIOCGWINSZ */
3540 * 2. get size from environment
3541 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3542 * the ioctl() values!
3544 if (columns
== 0 || rows
== 0 || vim_strchr(p_cpo
, CPO_TSIZE
) != NULL
)
3546 if ((p
= (char_u
*)getenv("LINES")))
3547 rows
= atoi((char *)p
);
3548 if ((p
= (char_u
*)getenv("COLUMNS")))
3549 columns
= atoi((char *)p
);
3554 * 3. try reading "co" and "li" entries from termcap
3556 if (columns
== 0 || rows
== 0)
3557 getlinecol(&columns
, &rows
);
3561 * 4. If everything fails, use the old values
3563 if (columns
<= 0 || rows
<= 0)
3572 * Try to set the window size to Rows and Columns.
3580 * NOTE: if you get an error here that term_set_winsize() is
3581 * undefined, check the output of configure. It could probably not
3582 * find a ncurses, termcap or termlib library.
3584 term_set_winsize((int)Rows
, (int)Columns
);
3586 screen_start(); /* don't know where cursor is now */
3593 * Rows and/or Columns has changed.
3598 /* Nothing to do. */
3602 static void append_ga_line
__ARGS((garray_T
*gap
));
3605 * Append the text in "gap" below the cursor line and clear "gap".
3611 /* Remove trailing CR. */
3614 && ((char_u
*)gap
->ga_data
)[gap
->ga_len
- 1] == CAR
)
3616 ga_append(gap
, NUL
);
3617 ml_append(curwin
->w_cursor
.lnum
++, gap
->ga_data
, 0, FALSE
);
3623 mch_call_shell(cmd
, options
)
3625 int options
; /* SHELL_*, see vim.h */
3631 int tmode
= cur_tmode
;
3632 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3635 char_u
*newcmd
; /* only needed for unix */
3638 * Set the preferred shell in the EMXSHELL environment variable (but
3639 * only if it is different from what is already in the environment).
3640 * Emx then takes care of whether to use "/c" or "-c" in an
3641 * intelligent way. Simply pass the whole thing to emx's system() call.
3642 * Emx also starts an interactive shell if system() is passed an empty
3647 if (((old
= (char_u
*)getenv("EMXSHELL")) == NULL
) || STRCMP(old
, p_sh
))
3649 /* should check HAVE_SETENV, but I know we don't have it. */
3650 p
= alloc(10 + strlen(p_sh
));
3653 sprintf((char *)p
, "EMXSHELL=%s", p_sh
);
3654 putenv((char *)p
); /* don't free the pointer! */
3661 if (options
& SHELL_COOKED
)
3662 settmode(TMODE_COOK
); /* set to normal mode */
3666 x
= system(""); /* this starts an interactive shell in emx */
3668 x
= system((char *)cmd
);
3669 /* system() returns -1 when error occurs in starting shell */
3670 if (x
== -1 && !emsg_silent
)
3672 MSG_PUTS(_("\nCannot execute shell "));
3676 # else /* not __EMX__ */
3678 x
= system((char *)p_sh
);
3682 if (ofn
= strchr((char *)cmd
, '>'))
3684 if (ifn
= strchr((char *)cmd
, '<'))
3689 p
= strchr(ifn
,' '); /* chop off any trailing spaces */
3694 x
= vms_sys((char *)cmd
, ofn
, ifn
);
3696 x
= system((char *)cmd
);
3698 newcmd
= lalloc(STRLEN(p_sh
)
3699 + (extra_shell_arg
== NULL
? 0 : STRLEN(extra_shell_arg
))
3700 + STRLEN(p_shcf
) + STRLEN(cmd
) + 4, TRUE
);
3705 sprintf((char *)newcmd
, "%s %s %s %s", p_sh
,
3706 extra_shell_arg
== NULL
? "" : (char *)extra_shell_arg
,
3709 x
= system((char *)newcmd
);
3715 x
= vms_sys_status(x
);
3720 MSG_PUTS(_("\nCannot execute shell sh\n"));
3721 # endif /* __EMX__ */
3722 else if (x
&& !(options
& SHELL_SILENT
))
3724 MSG_PUTS(_("\nshell returned "));
3725 msg_outnum((long)x
);
3729 if (tmode
== TMODE_RAW
)
3730 settmode(TMODE_RAW
); /* set to raw mode */
3736 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3738 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3739 127, some shells use that already */
3741 char_u
*newcmd
= NULL
;
3745 # ifdef HAVE_UNION_WAIT
3756 int pty_master_fd
= -1; /* for pty's */
3758 int pty_slave_fd
= -1;
3761 int fd_toshell
[2]; /* for pipes */
3762 int fd_fromshell
[2];
3763 int pipe_error
= FALSE
;
3767 static char envbuf_Rows
[20];
3768 static char envbuf_Columns
[20];
3770 int did_settmode
= FALSE
; /* settmode(TMODE_RAW) called */
3773 if (options
& SHELL_COOKED
)
3774 settmode(TMODE_COOK
); /* set to normal mode */
3776 newcmd
= vim_strsave(p_sh
);
3777 if (newcmd
== NULL
) /* out of memory */
3781 * Do this loop twice:
3782 * 1: find number of arguments
3783 * 2: separate them and build argv[]
3785 for (i
= 0; i
< 2; ++i
)
3793 argv
[argc
] = (char *)p
;
3795 while (*p
&& (inquote
|| (*p
!= ' ' && *p
!= TAB
)))
3809 argv
= (char **)alloc((unsigned)((argc
+ 4) * sizeof(char *)));
3810 if (argv
== NULL
) /* out of memory */
3816 if (extra_shell_arg
!= NULL
)
3817 argv
[argc
++] = (char *)extra_shell_arg
;
3818 argv
[argc
++] = (char *)p_shcf
;
3819 argv
[argc
++] = (char *)cmd
;
3824 * For the GUI, when writing the output into the buffer and when reading
3825 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3826 * of the executed command into the Vim window. Or use a pipe.
3828 if ((options
& (SHELL_READ
|SHELL_WRITE
))
3830 || (gui
.in_use
&& show_shell_mess
)
3836 * Try to open a master pty.
3837 * If this works, open the slave pty.
3838 * If the slave can't be opened, close the master pty.
3840 if (p_guipty
&& !(options
& (SHELL_READ
|SHELL_WRITE
)))
3842 pty_master_fd
= OpenPTY(&tty_name
); /* open pty */
3843 if (pty_master_fd
>= 0 && ((pty_slave_fd
=
3844 open(tty_name
, O_RDWR
| O_EXTRA
, 0)) < 0))
3846 close(pty_master_fd
);
3851 * If not opening a pty or it didn't work, try using pipes.
3853 if (pty_master_fd
< 0)
3856 pipe_error
= (pipe(fd_toshell
) < 0);
3857 if (!pipe_error
) /* pipe create OK */
3859 pipe_error
= (pipe(fd_fromshell
) < 0);
3860 if (pipe_error
) /* pipe create failed */
3862 close(fd_toshell
[0]);
3863 close(fd_toshell
[1]);
3868 MSG_PUTS(_("\nCannot create pipes\n"));
3874 if (!pipe_error
) /* pty or pipe opened or not used */
3877 beos_cleanup_read_thread();
3880 if ((pid
= fork()) == -1) /* maybe we should use vfork() */
3882 MSG_PUTS(_("\nCannot fork\n"));
3883 if ((options
& (SHELL_READ
|SHELL_WRITE
))
3885 || (gui
.in_use
&& show_shell_mess
)
3890 if (pty_master_fd
>= 0) /* close the pseudo tty */
3892 close(pty_master_fd
);
3893 close(pty_slave_fd
);
3895 else /* close the pipes */
3898 close(fd_toshell
[0]);
3899 close(fd_toshell
[1]);
3900 close(fd_fromshell
[0]);
3901 close(fd_fromshell
[1]);
3905 else if (pid
== 0) /* child */
3907 reset_signals(); /* handle signals normally */
3909 if (!show_shell_mess
|| (options
& SHELL_EXPAND
))
3914 * Don't want to show any message from the shell. Can't just
3915 * close stdout and stderr though, because some systems will
3916 * break if you try to write to them after that, so we must
3917 * use dup() to replace them with something else -- webb
3918 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3919 * waiting for input.
3921 fd
= open("/dev/null", O_RDWR
| O_EXTRA
, 0);
3927 * If any of these open()'s and dup()'s fail, we just continue
3928 * anyway. It's not fatal, and on most systems it will make
3929 * no difference at all. On a few it will cause the execvp()
3930 * to exit with a non-zero status even when the completion
3931 * could be done, which is nothing too serious. If the open()
3932 * or dup() failed we'd just do the same thing ourselves
3937 ignored
= dup(fd
); /* To replace stdin (fd 0) */
3938 ignored
= dup(fd
); /* To replace stdout (fd 1) */
3939 ignored
= dup(fd
); /* To replace stderr (fd 2) */
3941 /* Don't need this now that we've duplicated it */
3945 else if ((options
& (SHELL_READ
|SHELL_WRITE
))
3953 /* Create our own process group, so that the child and all its
3954 * children can be kill()ed. Don't do this when using pipes,
3955 * because stdin is not a tty, we would lose /dev/tty. */
3959 # if defined(SIGHUP)
3960 /* When doing "!xterm&" and 'shell' is bash: the shell
3961 * will exit and send SIGHUP to all processes in its
3962 * group, killing the just started process. Ignore SIGHUP
3963 * to avoid that. (suggested by Simon Schubert)
3965 signal(SIGHUP
, SIG_IGN
);
3970 if (pty_slave_fd
>= 0)
3972 /* push stream discipline modules */
3973 if (options
& SHELL_COOKED
)
3974 SetupSlavePTY(pty_slave_fd
);
3976 /* Try to become controlling tty (probably doesn't work,
3977 * unless run by root) */
3978 ioctl(pty_slave_fd
, TIOCSCTTY
, (char *)NULL
);
3982 /* Simulate to have a dumb terminal (for now) */
3984 setenv("TERM", "dumb", 1);
3985 sprintf((char *)envbuf
, "%ld", Rows
);
3986 setenv("ROWS", (char *)envbuf
, 1);
3987 sprintf((char *)envbuf
, "%ld", Rows
);
3988 setenv("LINES", (char *)envbuf
, 1);
3989 sprintf((char *)envbuf
, "%ld", Columns
);
3990 setenv("COLUMNS", (char *)envbuf
, 1);
3993 * Putenv does not copy the string, it has to remain valid.
3994 * Use a static array to avoid losing allocated memory.
3996 putenv("TERM=dumb");
3997 sprintf(envbuf_Rows
, "ROWS=%ld", Rows
);
3998 putenv(envbuf_Rows
);
3999 sprintf(envbuf_Rows
, "LINES=%ld", Rows
);
4000 putenv(envbuf_Rows
);
4001 sprintf(envbuf_Columns
, "COLUMNS=%ld", Columns
);
4002 putenv(envbuf_Columns
);
4006 * stderr is only redirected when using the GUI, so that a
4007 * program like gpg can still access the terminal to get a
4008 * passphrase using stderr.
4011 if (pty_master_fd
>= 0)
4013 close(pty_master_fd
); /* close master side of pty */
4015 /* set up stdin/stdout/stderr for the child */
4017 ignored
= dup(pty_slave_fd
);
4019 ignored
= dup(pty_slave_fd
);
4023 ignored
= dup(pty_slave_fd
);
4026 close(pty_slave_fd
); /* has been dupped, close it now */
4031 /* set up stdin for the child */
4032 close(fd_toshell
[1]);
4034 ignored
= dup(fd_toshell
[0]);
4035 close(fd_toshell
[0]);
4037 /* set up stdout for the child */
4038 close(fd_fromshell
[0]);
4040 ignored
= dup(fd_fromshell
[1]);
4041 close(fd_fromshell
[1]);
4046 /* set up stderr for the child */
4055 * There is no type cast for the argv, because the type may be
4056 * different on different machines. This may cause a warning
4057 * message with strict compilers, don't worry about it.
4058 * Call _exit() instead of exit() to avoid closing the connection
4059 * to the X server (esp. with GTK, which uses atexit()).
4061 execvp(argv
[0], argv
);
4062 _exit(EXEC_FAILED
); /* exec failed, return failure code */
4067 * While child is running, ignore terminating signals.
4068 * Do catch CTRL-C, so that "got_int" is set.
4070 catch_signals(SIG_IGN
, SIG_ERR
);
4074 * For the GUI we redirect stdin, stdout and stderr to our window.
4075 * This is also used to pipe stdin/stdout to/from the external
4078 if ((options
& (SHELL_READ
|SHELL_WRITE
))
4080 || (gui
.in_use
&& show_shell_mess
)
4084 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
4085 char_u buffer
[BUFLEN
+ 1];
4087 int buffer_off
= 0; /* valid bytes in buffer[] */
4089 char_u ta_buf
[BUFLEN
+ 1]; /* TypeAHead */
4090 int ta_len
= 0; /* valid bytes in ta_buf[] */
4099 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4100 struct timeval start_tv
;
4104 if (pty_master_fd
>= 0)
4106 close(pty_slave_fd
); /* close slave side of pty */
4107 fromshell_fd
= pty_master_fd
;
4108 toshell_fd
= dup(pty_master_fd
);
4113 close(fd_toshell
[0]);
4114 close(fd_fromshell
[1]);
4115 toshell_fd
= fd_toshell
[1];
4116 fromshell_fd
= fd_fromshell
[0];
4120 * Write to the child if there are typed characters.
4121 * Read from the child if there are characters available.
4122 * Repeat the reading a few times if more characters are
4123 * available. Need to check for typed keys now and then, but
4124 * not too often (delays when no chars are available).
4125 * This loop is quit if no characters can be read from the pty
4126 * (WaitForChar detected special condition), or there are no
4127 * characters available and the child has exited.
4128 * Only check if the child has exited when there is no more
4129 * output. The child may exit before all the output has
4132 * Currently this busy loops!
4133 * This can probably dead-lock when the write blocks!
4135 p_more_save
= p_more
;
4138 State
= EXTERNCMD
; /* don't redraw at window resize */
4140 if ((options
& SHELL_WRITE
) && toshell_fd
>= 0)
4142 /* Fork a process that will write the lines to the
4143 * external program. */
4144 if ((wpid
= fork()) == -1)
4146 MSG_PUTS(_("\nCannot fork\n"));
4150 linenr_T lnum
= curbuf
->b_op_start
.lnum
;
4152 char_u
*lp
= ml_get(lnum
);
4157 close(fromshell_fd
);
4160 l
= STRLEN(lp
+ written
);
4163 else if (lp
[written
] == NL
)
4164 /* NL -> NUL translation */
4165 len
= write(toshell_fd
, "", (size_t)1);
4168 s
= vim_strchr(lp
+ written
, NL
);
4169 len
= write(toshell_fd
, (char *)lp
+ written
,
4171 : (size_t)(s
- (lp
+ written
)));
4175 /* Finished a line, add a NL, unless this line
4176 * should not have one. */
4177 if (lnum
!= curbuf
->b_op_end
.lnum
4179 || (lnum
!= write_no_eol_lnum
4181 curbuf
->b_ml
.ml_line_count
4182 || curbuf
->b_p_eol
)))
4183 ignored
= write(toshell_fd
, "\n",
4186 if (lnum
> curbuf
->b_op_end
.lnum
)
4188 /* finished all the lines, close pipe */
4208 if (options
& SHELL_READ
)
4209 ga_init2(&ga
, 1, BUFLEN
);
4212 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4213 gettimeofday(&start_tv
, NULL
);
4218 * Check if keys have been typed, write them to the child
4220 * Don't do this if we are expanding wild cards (would eat
4222 * Don't do this when filtering and terminal is in cooked
4223 * mode, the shell command will handle the I/O. Avoids
4224 * that a typed password is echoed for ssh or gpg command.
4225 * Don't get characters when the child has already
4226 * finished (wait_pid == 0).
4227 * Don't read characters unless we didn't get output for a
4228 * while (noread_cnt > 4), avoids that ":r !ls" eats
4232 if (!(options
& SHELL_EXPAND
)
4234 (SHELL_READ
|SHELL_WRITE
|SHELL_COOKED
))
4235 != (SHELL_READ
|SHELL_WRITE
|SHELL_COOKED
)
4241 && (ta_len
> 0 || noread_cnt
> 4))
4245 /* Get extra characters when we don't have any.
4246 * Reset the counter and timer. */
4248 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4249 gettimeofday(&start_tv
, NULL
);
4251 len
= ui_inchar(ta_buf
, BUFLEN
, 10L, 0);
4253 if (ta_len
> 0 || len
> 0)
4257 * Check for CTRL-C: send interrupt signal to child.
4258 * Check for CTRL-D: EOF, close pipe to child.
4260 if (len
== 1 && (pty_master_fd
< 0 || cmd
!= NULL
))
4264 * Send SIGINT to the child's group or all
4265 * processes in our group.
4267 if (ta_buf
[ta_len
] == Ctrl_C
4268 || ta_buf
[ta_len
] == intr_char
)
4279 if (pty_master_fd
< 0 && toshell_fd
>= 0
4280 && ta_buf
[ta_len
] == Ctrl_D
)
4287 /* replace K_BS by <BS> and K_DEL by <DEL> */
4288 for (i
= ta_len
; i
< ta_len
+ len
; ++i
)
4290 if (ta_buf
[i
] == CSI
&& len
- i
> 2)
4292 c
= TERMCAP2KEY(ta_buf
[i
+ 1], ta_buf
[i
+ 2]);
4293 if (c
== K_DEL
|| c
== K_KDEL
|| c
== K_BS
)
4295 mch_memmove(ta_buf
+ i
+ 1, ta_buf
+ i
+ 3,
4296 (size_t)(len
- i
- 2));
4297 if (c
== K_DEL
|| c
== K_KDEL
)
4304 else if (ta_buf
[i
] == '\r')
4308 i
+= (*mb_ptr2len
)(ta_buf
+ i
) - 1;
4313 * For pipes: echo the typed characters.
4314 * For a pty this does not seem to work.
4316 if (pty_master_fd
< 0)
4318 for (i
= ta_len
; i
< ta_len
+ len
; ++i
)
4320 if (ta_buf
[i
] == '\n' || ta_buf
[i
] == '\b')
4321 msg_putchar(ta_buf
[i
]);
4325 int l
= (*mb_ptr2len
)(ta_buf
+ i
);
4327 msg_outtrans_len(ta_buf
+ i
, l
);
4332 msg_outtrans_len(ta_buf
+ i
, 1);
4334 windgoto(msg_row
, msg_col
);
4341 * Write the characters to the child, unless EOF has
4342 * been typed for pipes. Write one character at a
4343 * time, to avoid losing too much typeahead.
4344 * When writing buffer lines, drop the typed
4345 * characters (only check for CTRL-C).
4347 if (options
& SHELL_WRITE
)
4349 else if (toshell_fd
>= 0)
4351 len
= write(toshell_fd
, (char *)ta_buf
, (size_t)1);
4355 mch_memmove(ta_buf
, ta_buf
+ len
, ta_len
);
4363 /* CTRL-C sends a signal to the child, we ignore it
4376 * Check if the child has any characters to be printed.
4377 * Read them and write them to our window. Repeat this as
4378 * long as there is something to do, avoid the 10ms wait
4379 * for mch_inchar(), or sending typeahead characters to
4380 * the external process.
4381 * TODO: This should handle escape sequences, compatible
4382 * to some terminal (vt52?).
4385 while (RealWaitForChar(fromshell_fd
, 10L, NULL
))
4387 len
= read(fromshell_fd
, (char *)buffer
4389 + buffer_off
, (size_t)(BUFLEN
- buffer_off
)
4394 if (len
<= 0) /* end of file or error */
4398 if (options
& SHELL_READ
)
4400 /* Do NUL -> NL translation, append NL separated
4401 * lines to the current buffer. */
4402 for (i
= 0; i
< len
; ++i
)
4404 if (buffer
[i
] == NL
)
4405 append_ga_line(&ga
);
4406 else if (buffer
[i
] == NUL
)
4409 ga_append(&ga
, buffer
[i
]);
4420 /* Check if the last character in buffer[] is
4421 * incomplete, keep these bytes for the next
4423 for (p
= buffer
; p
< buffer
+ len
; p
+= l
)
4427 l
= 1; /* NUL byte? */
4428 else if (MB_BYTE2LEN(*p
) != l
)
4431 if (p
== buffer
) /* no complete character */
4433 /* avoid getting stuck at an illegal byte */
4445 if (p
< buffer
+ len
)
4448 buffer_off
= (buffer
+ len
) - p
;
4449 mch_memmove(buffer
, p
, buffer_off
);
4454 # endif /* FEAT_MBYTE */
4461 windgoto(msg_row
, msg_col
);
4467 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4469 struct timeval now_tv
;
4472 /* Avoid that we keep looping here without
4473 * checking for a CTRL-C for a long time. Don't
4474 * break out too often to avoid losing typeahead. */
4475 gettimeofday(&now_tv
, NULL
);
4476 msec
= (now_tv
.tv_sec
- start_tv
.tv_sec
) * 1000L
4477 + (now_tv
.tv_usec
- start_tv
.tv_usec
) / 1000L;
4487 /* If we already detected the child has finished break the
4489 if (wait_pid
== pid
)
4493 * Check if the child still exists, before checking for
4494 * typed characters (otherwise we would lose typeahead).
4497 wait_pid
= wait4(pid
, &status
, WNOHANG
, (struct rusage
*) 0);
4499 wait_pid
= waitpid(pid
, &status
, WNOHANG
);
4501 if ((wait_pid
== (pid_t
)-1 && errno
== ECHILD
)
4502 || (wait_pid
== pid
&& WIFEXITED(status
)))
4504 /* Don't break the loop yet, try reading more
4505 * characters from "fromshell_fd" first. When using
4506 * pipes there might still be something to read and
4507 * then we'll break the loop at the "break" above. */
4514 p_more
= p_more_save
;
4515 if (options
& SHELL_READ
)
4519 append_ga_line(&ga
);
4520 /* remember that the NL was missing */
4521 write_no_eol_lnum
= curwin
->w_cursor
.lnum
;
4524 write_no_eol_lnum
= 0;
4529 * Give all typeahead that wasn't used back to ui_inchar().
4532 ui_inchar_undo(ta_buf
, ta_len
);
4534 if (toshell_fd
>= 0)
4536 close(fromshell_fd
);
4540 * Wait until our child has exited.
4541 * Ignore wait() returning pids of other children and returning
4542 * because of some signal like SIGWINCH.
4543 * Don't wait if wait_pid was already set above, indicating the
4544 * child already exited.
4546 while (wait_pid
!= pid
)
4548 # ifdef _THREAD_SAFE
4549 /* Ugly hack: when compiled with Python threads are probably
4550 * used, in which case wait() sometimes hangs for no obvious
4551 * reason. Use waitpid() instead and loop (like the GUI). */
4553 wait_pid
= wait4(pid
, &status
, WNOHANG
, (struct rusage
*)0);
4555 wait_pid
= waitpid(pid
, &status
, WNOHANG
);
4559 /* Wait for 1/100 sec before trying again. */
4560 mch_delay(10L, TRUE
);
4564 wait_pid
= wait(&status
);
4574 /* Make sure the child that writes to the external program is
4577 kill(wpid
, SIGKILL
);
4580 * Set to raw mode right now, otherwise a CTRL-C after
4581 * catch_signals() will kill Vim.
4583 if (tmode
== TMODE_RAW
)
4584 settmode(TMODE_RAW
);
4585 did_settmode
= TRUE
;
4588 if (WIFEXITED(status
))
4590 /* LINTED avoid "bitwise operation on signed value" */
4591 retval
= WEXITSTATUS(status
);
4592 if (retval
&& !emsg_silent
)
4594 if (retval
== EXEC_FAILED
)
4596 MSG_PUTS(_("\nCannot execute shell "));
4600 else if (!(options
& SHELL_SILENT
))
4602 MSG_PUTS(_("\nshell returned "));
4603 msg_outnum((long)retval
);
4609 MSG_PUTS(_("\nCommand terminated\n"));
4616 if (tmode
== TMODE_RAW
)
4617 settmode(TMODE_RAW
); /* set to raw mode */
4625 #endif /* USE_SYSTEM */
4629 * Check for CTRL-C typed by reading all available characters.
4630 * In cooked mode we should get SIGINT, no need to check.
4635 if (curr_tmode
== TMODE_RAW
&& RealWaitForChar(read_cmd_fd
, 0L, NULL
))
4636 fill_input_buf(FALSE
);
4640 * Wait "msec" msec until a character is available from the keyboard or from
4641 * inbuf[]. msec == -1 will block forever.
4642 * When a GUI is being used, this will never get called -- webb
4648 #ifdef FEAT_MOUSE_GPM
4649 int gpm_process_wanted
;
4651 #ifdef FEAT_XCLIPBOARD
4656 if (input_available()) /* something in inbuf[] */
4659 #if defined(FEAT_MOUSE_DEC)
4660 /* May need to query the mouse position. */
4663 WantQueryMouse
= FALSE
;
4664 mch_write((char_u
*)IF_EB("\033[1'|", ESC_STR
"[1'|"), 5);
4669 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4670 * events. This is a bit complicated, because they might both be defined.
4672 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4673 # ifdef FEAT_XCLIPBOARD
4675 if (do_xterm_trace())
4680 # ifdef FEAT_XCLIPBOARD
4683 msec
= XT_TRACE_DELAY
;
4684 if (rest
>= 0 && rest
< XT_TRACE_DELAY
)
4690 # ifdef FEAT_MOUSE_GPM
4691 gpm_process_wanted
= 0;
4692 avail
= RealWaitForChar(read_cmd_fd
, msec
, &gpm_process_wanted
);
4694 avail
= RealWaitForChar(read_cmd_fd
, msec
, NULL
);
4698 if (input_available())
4700 # ifdef FEAT_XCLIPBOARD
4701 if (rest
== 0 || !do_xterm_trace())
4707 # ifdef FEAT_MOUSE_GPM
4708 || (gpm_process_wanted
&& mch_gpm_process() == 0)
4710 # ifdef FEAT_XCLIPBOARD
4711 || (!avail
&& rest
!= 0)
4716 avail
= RealWaitForChar(read_cmd_fd
, msec
, NULL
);
4722 * Wait "msec" msec until a character is available from file descriptor "fd".
4723 * Time == -1 will block forever.
4724 * When a GUI is being used, this will not be used for input -- webb
4725 * Returns also, when a request from Sniff is waiting -- toni.
4726 * Or when a Linux GPM mouse event is waiting.
4728 #if defined(__BEOS__)
4733 RealWaitForChar(fd
, msec
, check_for_gpm
)
4736 int *check_for_gpm UNUSED
;
4739 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4740 static int busy
= FALSE
;
4742 /* May retry getting characters after an event was handled. */
4745 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4746 /* Remember at what time we started, so that we know how much longer we
4747 * should wait after being interrupted. */
4748 # define USE_START_TV
4749 struct timeval start_tv
;
4752 # ifdef FEAT_XCLIPBOARD
4753 xterm_Shell
!= (Widget
)0
4754 # if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
4760 # ifdef FEAT_MZSCHEME
4764 # ifdef FEAT_MZSCHEME
4765 (mzthreads_allowed() && p_mzq
> 0)
4768 gettimeofday(&start_tv
, NULL
);
4771 /* Handle being called recursively. This may happen for the session
4772 * manager stuff, it may save the file, which does a breakcheck. */
4782 int finished
= TRUE
; /* default is to 'loop' just once */
4783 # ifdef FEAT_MZSCHEME
4784 int mzquantum_used
= FALSE
;
4788 struct pollfd fds
[5];
4790 # ifdef FEAT_XCLIPBOARD
4793 # ifdef FEAT_MOUSE_GPM
4799 int towait
= (int)msec
;
4801 # ifdef FEAT_MZSCHEME
4802 mzvim_check_threads();
4803 if (mzthreads_allowed() && p_mzq
> 0 && (msec
< 0 || msec
> p_mzq
))
4805 towait
= (int)p_mzq
; /* don't wait longer than 'mzquantum' */
4806 mzquantum_used
= TRUE
;
4810 fds
[0].events
= POLLIN
;
4814 # define SNIFF_IDX 1
4815 if (want_sniff_request
)
4817 fds
[SNIFF_IDX
].fd
= fd_from_sniff
;
4818 fds
[SNIFF_IDX
].events
= POLLIN
;
4822 # ifdef FEAT_XCLIPBOARD
4823 if (xterm_Shell
!= (Widget
)0)
4826 fds
[nfd
].fd
= ConnectionNumber(xterm_dpy
);
4827 fds
[nfd
].events
= POLLIN
;
4831 # ifdef FEAT_MOUSE_GPM
4832 if (check_for_gpm
!= NULL
&& gpm_flag
&& gpm_fd
>= 0)
4835 fds
[nfd
].fd
= gpm_fd
;
4836 fds
[nfd
].events
= POLLIN
;
4841 if (xsmp_icefd
!= -1)
4844 fds
[nfd
].fd
= xsmp_icefd
;
4845 fds
[nfd
].events
= POLLIN
;
4850 ret
= poll(fds
, nfd
, towait
);
4851 # ifdef FEAT_MZSCHEME
4852 if (ret
== 0 && mzquantum_used
)
4853 /* MzThreads scheduling is required and timeout occurred */
4859 sniff_disconnect(1);
4860 else if (want_sniff_request
)
4862 if (fds
[SNIFF_IDX
].revents
& POLLHUP
)
4863 sniff_disconnect(1);
4864 if (fds
[SNIFF_IDX
].revents
& POLLIN
)
4865 sniff_request_waiting
= 1;
4868 # ifdef FEAT_XCLIPBOARD
4869 if (xterm_Shell
!= (Widget
)0 && (fds
[xterm_idx
].revents
& POLLIN
))
4871 xterm_update(); /* Maybe we should hand out clipboard */
4872 if (--ret
== 0 && !input_available())
4877 # ifdef FEAT_MOUSE_GPM
4878 if (gpm_idx
>= 0 && (fds
[gpm_idx
].revents
& POLLIN
))
4884 if (xsmp_idx
>= 0 && (fds
[xsmp_idx
].revents
& (POLLIN
| POLLHUP
)))
4886 if (fds
[xsmp_idx
].revents
& POLLIN
)
4889 xsmp_handle_requests();
4892 else if (fds
[xsmp_idx
].revents
& POLLHUP
)
4895 verb_msg((char_u
*)_("XSMP lost ICE connection"));
4899 finished
= FALSE
; /* Try again */
4904 #else /* HAVE_SELECT */
4907 struct timeval
*tvp
;
4912 # ifdef FEAT_MZSCHEME
4913 mzvim_check_threads();
4914 if (mzthreads_allowed() && p_mzq
> 0 && (msec
< 0 || msec
> p_mzq
))
4916 towait
= p_mzq
; /* don't wait longer than 'mzquantum' */
4917 mzquantum_used
= TRUE
;
4921 /* don't check for incoming chars if not in raw mode, because select()
4922 * always returns TRUE then (in some version of emx.dll) */
4923 if (curr_tmode
!= TMODE_RAW
)
4929 tv
.tv_sec
= towait
/ 1000;
4930 tv
.tv_usec
= (towait
% 1000) * (1000000/1000);
4937 * Select on ready for reading and exceptional condition (end of file).
4939 FD_ZERO(&rfds
); /* calls bzero() on a sun */
4942 # if !defined(__QNX__) && !defined(__CYGWIN32__)
4943 /* For QNX select() always returns 1 if this is set. Why? */
4949 if (want_sniff_request
)
4951 FD_SET(fd_from_sniff
, &rfds
);
4952 FD_SET(fd_from_sniff
, &efds
);
4953 if (maxfd
< fd_from_sniff
)
4954 maxfd
= fd_from_sniff
;
4957 # ifdef FEAT_XCLIPBOARD
4958 if (xterm_Shell
!= (Widget
)0)
4960 FD_SET(ConnectionNumber(xterm_dpy
), &rfds
);
4961 if (maxfd
< ConnectionNumber(xterm_dpy
))
4962 maxfd
= ConnectionNumber(xterm_dpy
);
4965 # ifdef FEAT_MOUSE_GPM
4966 if (check_for_gpm
!= NULL
&& gpm_flag
&& gpm_fd
>= 0)
4968 FD_SET(gpm_fd
, &rfds
);
4969 FD_SET(gpm_fd
, &efds
);
4975 if (xsmp_icefd
!= -1)
4977 FD_SET(xsmp_icefd
, &rfds
);
4978 FD_SET(xsmp_icefd
, &efds
);
4979 if (maxfd
< xsmp_icefd
)
4985 /* Old VMS as v6.2 and older have broken select(). It waits more than
4986 * required. Should not be used */
4989 ret
= select(maxfd
+ 1, &rfds
, NULL
, &efds
, tvp
);
4992 if (ret
== -1 && errno
== ENOTSUP
)
4999 # ifdef FEAT_MZSCHEME
5000 if (ret
== 0 && mzquantum_used
)
5001 /* loop if MzThreads must be scheduled and timeout occurred */
5007 sniff_disconnect(1);
5008 else if (ret
> 0 && want_sniff_request
)
5010 if (FD_ISSET(fd_from_sniff
, &efds
))
5011 sniff_disconnect(1);
5012 if (FD_ISSET(fd_from_sniff
, &rfds
))
5013 sniff_request_waiting
= 1;
5016 # ifdef FEAT_XCLIPBOARD
5017 if (ret
> 0 && xterm_Shell
!= (Widget
)0
5018 && FD_ISSET(ConnectionNumber(xterm_dpy
), &rfds
))
5020 xterm_update(); /* Maybe we should hand out clipboard */
5021 /* continue looping when we only got the X event and the input
5022 * buffer is empty */
5023 if (--ret
== 0 && !input_available())
5030 # ifdef FEAT_MOUSE_GPM
5031 if (ret
> 0 && gpm_flag
&& check_for_gpm
!= NULL
&& gpm_fd
>= 0)
5033 if (FD_ISSET(gpm_fd
, &efds
))
5035 else if (FD_ISSET(gpm_fd
, &rfds
))
5040 if (ret
> 0 && xsmp_icefd
!= -1)
5042 if (FD_ISSET(xsmp_icefd
, &efds
))
5045 verb_msg((char_u
*)_("XSMP lost ICE connection"));
5048 finished
= FALSE
; /* keep going if event was only one */
5050 else if (FD_ISSET(xsmp_icefd
, &rfds
))
5053 xsmp_handle_requests();
5056 finished
= FALSE
; /* keep going if event was only one */
5061 #endif /* HAVE_SELECT */
5064 if (finished
|| msec
== 0)
5067 /* We're going to loop around again, find out for how long */
5070 # ifdef USE_START_TV
5073 /* Compute remaining wait time. */
5074 gettimeofday(&mtv
, NULL
);
5075 msec
-= (mtv
.tv_sec
- start_tv
.tv_sec
) * 1000L
5076 + (mtv
.tv_usec
- start_tv
.tv_usec
) / 1000L;
5078 /* Guess we got interrupted halfway. */
5082 break; /* waited long enough */
5092 #ifndef NO_EXPANDPATH
5094 * Expand a path into all matching files and/or directories. Handles "*",
5095 * "?", "[a-z]", "**", etc.
5096 * "path" has backslashes before chars that are not to be expanded.
5097 * Returns the number of matches found.
5100 mch_expandpath(gap
, path
, flags
)
5103 int flags
; /* EW_* flags */
5105 return unix_expandpath(gap
, path
, 0, flags
, FALSE
);
5110 * mch_expand_wildcards() - this code does wild-card pattern matching using
5113 * return OK for success, FAIL for error (you may lose some memory) and put
5114 * an error message in *file.
5116 * num_pat is number of input patterns
5117 * pat is array of pointers to input patterns
5118 * num_file is pointer to number of matched file names
5119 * file is pointer to array of pointers to matched file names
5129 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
5132 mch_expand_wildcards(num_pat
, pat
, num_file
, file
, flags
)
5137 int flags
; /* EW_* flags */
5145 * This is the OS/2 implementation.
5147 # define EXPL_ALLOC_INC 16
5148 char_u
**expl_files
;
5149 size_t files_alloced
, files_free
;
5153 *num_file
= 0; /* default: no files found */
5154 files_alloced
= EXPL_ALLOC_INC
; /* how much space is allocated */
5155 files_free
= EXPL_ALLOC_INC
; /* how much space is not used */
5156 *file
= (char_u
**)alloc(sizeof(char_u
**) * files_alloced
);
5160 for (; num_pat
> 0; num_pat
--, pat
++)
5163 if (vim_strchr(*pat
, '$') || vim_strchr(*pat
, '~'))
5164 /* expand environment var or home dir */
5165 buf
= expand_env_save(*pat
);
5167 buf
= vim_strsave(*pat
);
5169 has_wildcard
= mch_has_exp_wildcard(buf
); /* (still) wildcards? */
5170 if (has_wildcard
) /* yes, so expand them */
5171 expl_files
= (char_u
**)_fnexplode(buf
);
5174 * return value of buf if no wildcards left,
5175 * OR if no match AND EW_NOTFOUND is set.
5177 if ((!has_wildcard
&& ((flags
& EW_NOTFOUND
) || mch_getperm(buf
) >= 0))
5178 || (expl_files
== NULL
&& (flags
& EW_NOTFOUND
)))
5179 { /* simply save the current contents of *buf */
5180 expl_files
= (char_u
**)alloc(sizeof(char_u
**) * 2);
5181 if (expl_files
!= NULL
)
5183 expl_files
[0] = vim_strsave(buf
);
5184 expl_files
[1] = NULL
;
5190 * Count number of names resulting from expansion,
5191 * At the same time add a backslash to the end of names that happen to
5192 * be directories, and replace slashes with backslashes.
5196 for (i
= 0; (p
= expl_files
[i
]) != NULL
; i
++)
5199 /* If we don't want dirs and this is one, skip it */
5200 if ((dir
&& !(flags
& EW_DIR
)) || (!dir
&& !(flags
& EW_FILE
)))
5203 /* Skip files that are not executable if we check for that. */
5204 if (!dir
&& (flags
& EW_EXEC
) && !mch_can_exe(p
))
5207 if (--files_free
== 0)
5209 /* need more room in table of pointers */
5210 files_alloced
+= EXPL_ALLOC_INC
;
5211 *file
= (char_u
**)vim_realloc(*file
,
5212 sizeof(char_u
**) * files_alloced
);
5215 EMSG(_(e_outofmem
));
5219 files_free
= EXPL_ALLOC_INC
;
5224 /* For a directory we add a '/', unless it's already
5227 if (((*file
)[*num_file
] = alloc(len
+ 2)) != NULL
)
5229 STRCPY((*file
)[*num_file
], p
);
5230 if (!after_pathsep((*file
)[*num_file
],
5231 (*file
)[*num_file
] + len
))
5233 (*file
)[*num_file
][len
] = psepc
;
5234 (*file
)[*num_file
][len
+ 1] = NUL
;
5240 (*file
)[*num_file
] = vim_strsave(p
);
5244 * Error message already given by either alloc or vim_strsave.
5245 * Should return FAIL, but returning OK works also.
5247 if ((*file
)[*num_file
] == NULL
)
5251 _fnexplodefree((char **)expl_files
);
5258 * This is the non-OS/2 implementation (really Unix).
5265 #define STYLE_ECHO 0 /* use "echo", the default */
5266 #define STYLE_GLOB 1 /* use "glob", for csh */
5267 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5268 #define STYLE_PRINT 3 /* use "print -N", for zsh */
5269 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5271 int shell_style
= STYLE_ECHO
;
5273 static int did_find_nul
= FALSE
;
5274 int ampersent
= FALSE
;
5275 /* vimglob() function to define for Posix shell */
5276 static char *sh_vimglob_func
= "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
5278 *num_file
= 0; /* default: no files found */
5282 * If there are no wildcards, just copy the names to allocated memory.
5283 * Saves a lot of time, because we don't have to start a new shell.
5285 if (!have_wildcard(num_pat
, pat
))
5286 return save_patterns(num_pat
, pat
, num_file
, file
);
5288 # ifdef HAVE_SANDBOX
5289 /* Don't allow any shell command in the sandbox. */
5290 if (sandbox
!= 0 && check_secure())
5295 * Don't allow the use of backticks in secure and restricted mode.
5297 if (secure
|| restricted
)
5298 for (i
= 0; i
< num_pat
; ++i
)
5299 if (vim_strchr(pat
[i
], '`') != NULL
5300 && (check_restricted() || check_secure()))
5304 * get a name for the temp file
5306 if ((tempname
= vim_tempname('o')) == NULL
)
5313 * Let the shell expand the patterns and write the result into the temp
5315 * STYLE_BT: NL separated
5316 * If expanding `cmd` execute it directly.
5317 * STYLE_GLOB: NUL separated
5318 * If we use *csh, "glob" will work better than "echo".
5319 * STYLE_PRINT: NL or NUL separated
5320 * If we use *zsh, "print -N" will work better than "glob".
5321 * STYLE_VIMGLOB: NL separated
5322 * If we use *sh*, we define "vimglob()".
5323 * STYLE_ECHO: space separated.
5324 * A shell we don't know, stay safe and use "echo".
5326 if (num_pat
== 1 && *pat
[0] == '`'
5327 && (len
= STRLEN(pat
[0])) > 2
5328 && *(pat
[0] + len
- 1) == '`')
5329 shell_style
= STYLE_BT
;
5330 else if ((len
= STRLEN(p_sh
)) >= 3)
5332 if (STRCMP(p_sh
+ len
- 3, "csh") == 0)
5333 shell_style
= STYLE_GLOB
;
5334 else if (STRCMP(p_sh
+ len
- 3, "zsh") == 0)
5335 shell_style
= STYLE_PRINT
;
5337 if (shell_style
== STYLE_ECHO
&& strstr((char *)gettail(p_sh
),
5339 shell_style
= STYLE_VIMGLOB
;
5341 /* Compute the length of the command. We need 2 extra bytes: for the
5342 * optional '&' and for the NUL.
5343 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
5344 len
= STRLEN(tempname
) + 29;
5345 if (shell_style
== STYLE_VIMGLOB
)
5346 len
+= STRLEN(sh_vimglob_func
);
5348 for (i
= 0; i
< num_pat
; ++i
)
5350 /* Count the length of the patterns in the same way as they are put in
5351 * "command" below. */
5353 len
+= STRLEN(pat
[i
]) + 3; /* add space and two quotes */
5355 ++len
; /* add space */
5356 for (j
= 0; pat
[i
][j
] != NUL
; ++j
)
5358 if (vim_strchr(SHELL_SPECIAL
, pat
[i
][j
]) != NULL
)
5359 ++len
; /* may add a backslash */
5364 command
= alloc(len
);
5365 if (command
== NULL
)
5373 * Build the shell command:
5374 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5376 * - Add the shell command to print the expanded names.
5377 * - Add the temp file name.
5378 * - Add the file name patterns.
5380 if (shell_style
== STYLE_BT
)
5382 /* change `command; command& ` to (command; command ) */
5383 STRCPY(command
, "(");
5384 STRCAT(command
, pat
[0] + 1); /* exclude first backtick */
5385 p
= command
+ STRLEN(command
) - 1;
5386 *p
-- = ')'; /* remove last backtick */
5387 while (p
> command
&& vim_iswhite(*p
))
5389 if (*p
== '&') /* remove trailing '&' */
5394 STRCAT(command
, ">");
5398 if (flags
& EW_NOTFOUND
)
5399 STRCPY(command
, "set nonomatch; ");
5401 STRCPY(command
, "unset nonomatch; ");
5402 if (shell_style
== STYLE_GLOB
)
5403 STRCAT(command
, "glob >");
5404 else if (shell_style
== STYLE_PRINT
)
5405 STRCAT(command
, "print -N >");
5406 else if (shell_style
== STYLE_VIMGLOB
)
5407 STRCAT(command
, sh_vimglob_func
);
5409 STRCAT(command
, "echo >");
5412 STRCAT(command
, tempname
);
5414 if (shell_style
!= STYLE_BT
)
5415 for (i
= 0; i
< num_pat
; ++i
)
5417 /* When using system() always add extra quotes, because the shell
5418 * is started twice. Otherwise put a backslash before special
5419 * characters, except inside ``. */
5421 STRCAT(command
, " \"");
5422 STRCAT(command
, pat
[i
]);
5423 STRCAT(command
, "\"");
5427 p
= command
+ STRLEN(command
);
5429 for (j
= 0; pat
[i
][j
] != NUL
; ++j
)
5431 if (pat
[i
][j
] == '`')
5433 else if (pat
[i
][j
] == '\\' && pat
[i
][j
+ 1] != NUL
)
5435 /* Remove a backslash, take char literally. But keep
5436 * backslash inside backticks, before a special character
5437 * and before a backtick. */
5439 || vim_strchr(SHELL_SPECIAL
, pat
[i
][j
+ 1]) != NULL
5440 || pat
[i
][j
+ 1] == '`')
5444 else if (!intick
&& vim_strchr(SHELL_SPECIAL
,
5446 /* Put a backslash before a special character, but not
5447 * when inside ``. */
5450 /* Copy one character. */
5456 if (flags
& EW_SILENT
)
5457 show_shell_mess
= FALSE
;
5459 STRCAT(command
, "&"); /* put the '&' after the redirection */
5462 * Using zsh -G: If a pattern has no matches, it is just deleted from
5463 * the argument list, otherwise zsh gives an error message and doesn't
5464 * expand any other pattern.
5466 if (shell_style
== STYLE_PRINT
)
5467 extra_shell_arg
= (char_u
*)"-G"; /* Use zsh NULL_GLOB option */
5470 * If we use -f then shell variables set in .cshrc won't get expanded.
5471 * vi can do it, so we will too, but it is only necessary if there is a "$"
5472 * in one of the patterns, otherwise we can still use the fast option.
5474 else if (shell_style
== STYLE_GLOB
&& !have_dollars(num_pat
, pat
))
5475 extra_shell_arg
= (char_u
*)"-f"; /* Use csh fast option */
5478 * execute the shell command
5480 i
= call_shell(command
, SHELL_EXPAND
| SHELL_SILENT
);
5482 /* When running in the background, give it some time to create the temp
5483 * file, but don't wait for it to finish. */
5485 mch_delay(10L, TRUE
);
5487 extra_shell_arg
= NULL
; /* cleanup */
5488 show_shell_mess
= TRUE
;
5491 if (i
!= 0) /* mch_call_shell() failed */
5493 mch_remove(tempname
);
5496 * With interactive completion, the error message is not printed.
5497 * However with USE_SYSTEM, I don't know how to turn off error messages
5498 * from the shell, so screen may still get messed up -- webb.
5501 if (!(flags
& EW_SILENT
))
5504 redraw_later_clear(); /* probably messed up screen */
5505 msg_putchar('\n'); /* clear bottom line quickly */
5506 cmdline_row
= Rows
- 1; /* continue on last line */
5508 if (!(flags
& EW_SILENT
))
5511 MSG(_(e_wildexpand
));
5512 msg_start(); /* don't overwrite this message */
5515 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5516 * EW_NOTFOUND is given */
5517 if (shell_style
== STYLE_BT
)
5523 * read the names from the file into memory
5525 fd
= fopen((char *)tempname
, READBIN
);
5528 /* Something went wrong, perhaps a file name with a special char. */
5529 if (!(flags
& EW_SILENT
))
5531 MSG(_(e_wildexpand
));
5532 msg_start(); /* don't overwrite this message */
5537 fseek(fd
, 0L, SEEK_END
);
5538 len
= ftell(fd
); /* get size of temp file */
5539 fseek(fd
, 0L, SEEK_SET
);
5540 buffer
= alloc(len
+ 1);
5544 mch_remove(tempname
);
5549 i
= fread((char *)buffer
, 1, len
, fd
);
5551 mch_remove(tempname
);
5554 /* unexpected read error */
5555 EMSG2(_(e_notread
), tempname
);
5562 # if defined(__CYGWIN__) || defined(__CYGWIN32__)
5563 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5565 for (i
= 0; i
< len
; ++i
)
5566 if (!(buffer
[i
] == CAR
&& buffer
[i
+ 1] == NL
))
5572 /* file names are separated with Space */
5573 if (shell_style
== STYLE_ECHO
)
5575 buffer
[len
] = '\n'; /* make sure the buffer ends in NL */
5577 for (i
= 0; *p
!= '\n'; ++i
) /* count number of entries */
5579 while (*p
!= ' ' && *p
!= '\n')
5581 p
= skipwhite(p
); /* skip to next entry */
5584 /* file names are separated with NL */
5585 else if (shell_style
== STYLE_BT
|| shell_style
== STYLE_VIMGLOB
)
5587 buffer
[len
] = NUL
; /* make sure the buffer ends in NUL */
5589 for (i
= 0; *p
!= NUL
; ++i
) /* count number of entries */
5591 while (*p
!= '\n' && *p
!= NUL
)
5595 p
= skipwhite(p
); /* skip leading white space */
5598 /* file names are separated with NUL */
5602 * Some versions of zsh use spaces instead of NULs to separate
5603 * results. Only do this when there is no NUL before the end of the
5604 * buffer, otherwise we would never be able to use file names with
5605 * embedded spaces when zsh does use NULs.
5606 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5607 * don't check for spaces again.
5609 check_spaces
= FALSE
;
5610 if (shell_style
== STYLE_PRINT
&& !did_find_nul
)
5612 /* If there is a NUL, set did_find_nul, else set check_spaces */
5613 if (len
&& (int)STRLEN(buffer
) < (int)len
- 1)
5614 did_find_nul
= TRUE
;
5616 check_spaces
= TRUE
;
5620 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5621 * already is one, for STYLE_GLOB it needs to be added.
5623 if (len
&& buffer
[len
- 1] == NUL
)
5628 for (p
= buffer
; p
< buffer
+ len
; ++p
)
5629 if (*p
== NUL
|| (*p
== ' ' && check_spaces
)) /* count entry */
5635 ++i
; /* count last entry */
5640 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5641 * /bin/sh will happily expand it to nothing rather than returning an
5642 * error; and hey, it's good to check anyway -- webb.
5648 *file
= (char_u
**)alloc(sizeof(char_u
*) * i
);
5657 * Isolate the individual file names.
5660 for (i
= 0; i
< *num_file
; ++i
)
5663 /* Space or NL separates */
5664 if (shell_style
== STYLE_ECHO
|| shell_style
== STYLE_BT
5665 || shell_style
== STYLE_VIMGLOB
)
5667 while (!(shell_style
== STYLE_ECHO
&& *p
== ' ')
5668 && *p
!= '\n' && *p
!= NUL
)
5670 if (p
== buffer
+ len
) /* last entry */
5675 p
= skipwhite(p
); /* skip to next entry */
5678 else /* NUL separates */
5680 while (*p
&& p
< buffer
+ len
) /* skip entry */
5687 * Move the file names to allocated memory.
5689 for (j
= 0, i
= 0; i
< *num_file
; ++i
)
5691 /* Require the files to exist. Helps when using /bin/sh */
5692 if (!(flags
& EW_NOTFOUND
) && mch_getperm((*file
)[i
]) < 0)
5695 /* check if this entry should be included */
5696 dir
= (mch_isdir((*file
)[i
]));
5697 if ((dir
&& !(flags
& EW_DIR
)) || (!dir
&& !(flags
& EW_FILE
)))
5700 /* Skip files that are not executable if we check for that. */
5701 if (!dir
&& (flags
& EW_EXEC
) && !mch_can_exe((*file
)[i
]))
5704 p
= alloc((unsigned)(STRLEN((*file
)[i
]) + 1 + dir
));
5707 STRCPY(p
, (*file
)[i
]);
5709 add_pathsep(p
); /* add '/' to a directory name */
5716 if (*num_file
== 0) /* rejected all entries */
5726 if (flags
& EW_NOTFOUND
)
5727 return save_patterns(num_pat
, pat
, num_file
, file
);
5730 #endif /* __EMX__ */
5737 save_patterns(num_pat
, pat
, num_file
, file
)
5746 *file
= (char_u
**)alloc(num_pat
* sizeof(char_u
*));
5749 for (i
= 0; i
< num_pat
; i
++)
5751 s
= vim_strsave(pat
[i
]);
5753 /* Be compatible with expand_filename(): halve the number of
5758 *num_file
= num_pat
;
5765 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5769 mch_has_exp_wildcard(p
)
5772 for ( ; *p
; mb_ptr_adv(p
))
5775 if (*p
== '\\' && p
[1] != NUL
)
5779 if (vim_strchr((char_u
*)
5796 * Return TRUE if the string "p" contains a wildcard.
5797 * Don't recognize '~' at the end as a wildcard.
5803 for ( ; *p
; mb_ptr_adv(p
))
5806 if (*p
== '\\' && p
[1] != NUL
)
5810 if (vim_strchr((char_u
*)
5815 # ifdef VIM_BACKTICK
5825 || (*p
== '~' && p
[1] != NUL
))
5833 have_wildcard(num
, file
)
5839 for (i
= 0; i
< num
; i
++)
5840 if (mch_has_wildcard(file
[i
]))
5846 have_dollars(num
, file
)
5852 for (i
= 0; i
< num
; i
++)
5853 if (vim_strchr(file
[i
], '$') != NULL
)
5857 #endif /* ifndef __EMX__ */
5861 * Scaled-down version of rename(), which is missing in Xenix.
5862 * This version can only move regular files and will fail if the
5863 * destination exists.
5866 mch_rename(src
, dest
)
5867 const char *src
, *dest
;
5871 if (stat(dest
, &st
) >= 0) /* fail if destination exists */
5873 if (link(src
, dest
) != 0) /* link file to new name */
5875 if (mch_remove(src
) == 0) /* delete link to old name */
5879 #endif /* !HAVE_RENAME */
5881 #ifdef FEAT_MOUSE_GPM
5883 * Initializes connection with gpm (if it isn't already opened)
5884 * Return 1 if succeeded (or connection already opened), 0 if failed
5889 static Gpm_Connect gpm_connect
; /* Must it be kept till closing ? */
5893 gpm_connect
.eventMask
= (GPM_UP
| GPM_DRAG
| GPM_DOWN
);
5894 gpm_connect
.defaultMask
= ~GPM_HARD
;
5895 /* Default handling for mouse move*/
5896 gpm_connect
.minMod
= 0; /* Handle any modifier keys */
5897 gpm_connect
.maxMod
= 0xffff;
5898 if (Gpm_Open(&gpm_connect
, 0) > 0)
5900 /* gpm library tries to handling TSTP causes
5901 * problems. Anyways, we close connection to Gpm whenever
5902 * we are going to suspend or starting an external process
5903 * so we shouldn't have problem with this
5906 signal(SIGTSTP
, restricted
? SIG_IGN
: SIG_DFL
);
5908 return 1; /* succeed */
5911 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5914 return 1; /* already open */
5918 * Closes connection to gpm
5923 if (gpm_flag
&& gpm_fd
>= 0) /* if Open */
5927 /* Reads gpm event and adds special keys to input buf. Returns length of
5928 * generated key sequence.
5929 * This function is made after gui_send_mouse_event
5935 static Gpm_Event gpm_event
;
5937 int_u vim_modifiers
;
5939 unsigned char buttons_mask
;
5940 unsigned char gpm_modifiers
;
5941 static unsigned char old_buttons
= 0;
5943 Gpm_GetEvent(&gpm_event
);
5946 /* Don't put events in the input queue now. */
5947 if (hold_gui_events
)
5951 row
= gpm_event
.y
- 1;
5952 col
= gpm_event
.x
- 1;
5954 string
[0] = ESC
; /* Our termcode */
5957 switch (GPM_BARE_EVENTS(gpm_event
.type
))
5960 string
[3] = MOUSE_DRAG
;
5963 buttons_mask
= gpm_event
.buttons
& ~old_buttons
;
5964 old_buttons
= gpm_event
.buttons
;
5965 switch (buttons_mask
)
5968 button
= MOUSE_LEFT
;
5971 button
= MOUSE_MIDDLE
;
5974 button
= MOUSE_RIGHT
;
5978 /*Don't know what to do. Can more than one button be
5979 * reported in one event? */
5981 string
[3] = (char_u
)(button
| 0x20);
5982 SET_NUM_MOUSE_CLICKS(string
[3], gpm_event
.clicks
+ 1);
5985 string
[3] = MOUSE_RELEASE
;
5986 old_buttons
&= ~gpm_event
.buttons
;
5991 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5992 gpm_modifiers
= gpm_event
.modifiers
;
5993 vim_modifiers
= 0x0;
5994 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5995 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5996 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5998 if (gpm_modifiers
& ((1 << KG_SHIFT
) | (1 << KG_SHIFTR
) | (1 << KG_SHIFTL
)))
5999 vim_modifiers
|= MOUSE_SHIFT
;
6001 if (gpm_modifiers
& ((1 << KG_CTRL
) | (1 << KG_CTRLR
) | (1 << KG_CTRLL
)))
6002 vim_modifiers
|= MOUSE_CTRL
;
6003 if (gpm_modifiers
& ((1 << KG_ALT
) | (1 << KG_ALTGR
)))
6004 vim_modifiers
|= MOUSE_ALT
;
6005 string
[3] |= vim_modifiers
;
6006 string
[4] = (char_u
)(col
+ ' ' + 1);
6007 string
[5] = (char_u
)(row
+ ' ' + 1);
6008 add_to_input_buf(string
, 6);
6011 #endif /* FEAT_MOUSE_GPM */
6013 #ifdef FEAT_SYSMOUSE
6015 * Initialize connection with sysmouse.
6016 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6017 * output, any sysmouse output than will be processed via sig_sysmouse().
6018 * Return OK if succeeded, FAIL if failed.
6023 struct mouse_info mouse
;
6025 mouse
.operation
= MOUSE_MODE
;
6026 mouse
.u
.mode
.mode
= 0;
6027 mouse
.u
.mode
.signal
= SIGUSR2
;
6028 if (ioctl(1, CONS_MOUSECTL
, &mouse
) != -1)
6030 signal(SIGUSR2
, (RETSIGTYPE (*)())sig_sysmouse
);
6031 mouse
.operation
= MOUSE_SHOW
;
6032 ioctl(1, CONS_MOUSECTL
, &mouse
);
6039 * Stop processing SIGUSR2 signals, and also make sure that
6040 * virtual console do not send us any sysmouse related signal.
6045 struct mouse_info mouse
;
6047 signal(SIGUSR2
, restricted
? SIG_IGN
: SIG_DFL
);
6048 mouse
.operation
= MOUSE_MODE
;
6049 mouse
.u
.mode
.mode
= 0;
6050 mouse
.u
.mode
.signal
= 0;
6051 ioctl(1, CONS_MOUSECTL
, &mouse
);
6055 * Gets info from sysmouse and adds special keys to input buf.
6058 sig_sysmouse
SIGDEFARG(sigarg
)
6060 struct mouse_info mouse
;
6061 struct video_info video
;
6066 static int oldbuttons
= 0;
6069 /* Don't put events in the input queue now. */
6070 if (hold_gui_events
)
6074 mouse
.operation
= MOUSE_GETINFO
;
6075 if (ioctl(1, FBIO_GETMODE
, &video
.vi_mode
) != -1
6076 && ioctl(1, FBIO_MODEINFO
, &video
) != -1
6077 && ioctl(1, CONS_MOUSECTL
, &mouse
) != -1
6078 && video
.vi_cheight
> 0 && video
.vi_cwidth
> 0)
6080 row
= mouse
.u
.data
.y
/ video
.vi_cheight
;
6081 col
= mouse
.u
.data
.x
/ video
.vi_cwidth
;
6082 buttons
= mouse
.u
.data
.buttons
;
6083 string
[0] = ESC
; /* Our termcode */
6086 if (oldbuttons
== buttons
&& buttons
!= 0)
6088 button
= MOUSE_DRAG
;
6095 button
= MOUSE_RELEASE
;
6098 button
= MOUSE_LEFT
;
6101 button
= MOUSE_MIDDLE
;
6104 button
= MOUSE_RIGHT
;
6109 oldbuttons
= buttons
;
6111 string
[3] = (char_u
)(button
);
6112 string
[4] = (char_u
)(col
+ ' ' + 1);
6113 string
[5] = (char_u
)(row
+ ' ' + 1);
6114 add_to_input_buf(string
, 6);
6118 #endif /* FEAT_SYSMOUSE */
6120 #if defined(FEAT_LIBCALL) || defined(PROTO)
6121 typedef char_u
* (*STRPROCSTR
)__ARGS((char_u
*));
6122 typedef char_u
* (*INTPROCSTR
)__ARGS((int));
6123 typedef int (*STRPROCINT
)__ARGS((char_u
*));
6124 typedef int (*INTPROCINT
)__ARGS((int));
6127 * Call a DLL routine which takes either a string or int param
6128 * and returns an allocated string.
6131 mch_libcall(libname
, funcname
, argstring
, argint
, string_result
, number_result
)
6134 char_u
*argstring
; /* NULL when using a argint */
6136 char_u
**string_result
;/* NULL when using number_result */
6139 # if defined(USE_DLOPEN)
6146 INTPROCSTR ProcAddI
;
6147 char_u
*retval_str
= NULL
;
6149 int success
= FALSE
;
6152 * Get a handle to the DLL module.
6154 # if defined(USE_DLOPEN)
6155 /* First clear any error, it's not cleared by the dlopen() call. */
6158 hinstLib
= dlopen((char *)libname
, RTLD_LAZY
6163 if (hinstLib
== NULL
)
6165 /* "dlerr" must be used before dlclose() */
6166 dlerr
= (char *)dlerror();
6168 EMSG2(_("dlerror = \"%s\""), dlerr
);
6171 hinstLib
= shl_load((const char*)libname
, BIND_IMMEDIATE
|BIND_VERBOSE
, 0L);
6174 /* If the handle is valid, try to get the function address. */
6175 if (hinstLib
!= NULL
)
6177 # ifdef HAVE_SETJMP_H
6179 * Catch a crash when calling the library function. For example when
6180 * using a number where a string pointer is expected.
6183 if (SETJMP(lc_jump_env
) != 0)
6186 # if defined(USE_DLOPEN)
6197 if (argstring
!= NULL
)
6199 # if defined(USE_DLOPEN)
6200 ProcAdd
= (STRPROCSTR
)dlsym(hinstLib
, (const char *)funcname
);
6201 dlerr
= (char *)dlerror();
6203 if (shl_findsym(&hinstLib
, (const char *)funcname
,
6204 TYPE_PROCEDURE
, (void *)&ProcAdd
) < 0)
6207 if ((success
= (ProcAdd
!= NULL
6208 # if defined(USE_DLOPEN)
6213 if (string_result
== NULL
)
6214 retval_int
= ((STRPROCINT
)ProcAdd
)(argstring
);
6216 retval_str
= (ProcAdd
)(argstring
);
6221 # if defined(USE_DLOPEN)
6222 ProcAddI
= (INTPROCSTR
)dlsym(hinstLib
, (const char *)funcname
);
6223 dlerr
= (char *)dlerror();
6225 if (shl_findsym(&hinstLib
, (const char *)funcname
,
6226 TYPE_PROCEDURE
, (void *)&ProcAddI
) < 0)
6229 if ((success
= (ProcAddI
!= NULL
6230 # if defined(USE_DLOPEN)
6235 if (string_result
== NULL
)
6236 retval_int
= ((INTPROCINT
)ProcAddI
)(argint
);
6238 retval_str
= (ProcAddI
)(argint
);
6242 /* Save the string before we free the library. */
6243 /* Assume that a "1" or "-1" result is an illegal pointer. */
6244 if (string_result
== NULL
)
6245 *number_result
= retval_int
;
6246 else if (retval_str
!= NULL
6247 && retval_str
!= (char_u
*)1
6248 && retval_str
!= (char_u
*)-1)
6249 *string_result
= vim_strsave(retval_str
);
6252 # ifdef HAVE_SETJMP_H
6259 /* try to find the name of this signal */
6260 for (i
= 0; signal_info
[i
].sig
!= -1; i
++)
6261 if (lc_signal
== signal_info
[i
].sig
)
6263 EMSG2("E368: got SIG%s in libcall()", signal_info
[i
].name
);
6268 # if defined(USE_DLOPEN)
6269 /* "dlerr" must be used before dlclose() */
6271 EMSG2(_("dlerror = \"%s\""), dlerr
);
6273 /* Free the DLL module. */
6274 (void)dlclose(hinstLib
);
6276 (void)shl_unload(hinstLib
);
6282 EMSG2(_(e_libcall
), funcname
);
6290 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6291 static int xterm_trace
= -1; /* default: disabled */
6292 static int xterm_button
;
6295 * Setup a dummy window for X selections in a terminal.
6304 if (!x_connect_to_server())
6308 if (app_context
!= NULL
&& xterm_Shell
== (Widget
)0)
6310 int (*oldhandler
)();
6311 #if defined(HAVE_SETJMP_H)
6312 int (*oldIOhandler
)();
6314 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6315 struct timeval start_tv
;
6318 gettimeofday(&start_tv
, NULL
);
6321 /* Ignore X errors while opening the display */
6322 oldhandler
= XSetErrorHandler(x_error_check
);
6324 #if defined(HAVE_SETJMP_H)
6325 /* Ignore X IO errors while opening the display */
6326 oldIOhandler
= XSetIOErrorHandler(x_IOerror_check
);
6328 if (SETJMP(lc_jump_env
) != 0)
6336 xterm_dpy
= XtOpenDisplay(app_context
, xterm_display
,
6337 "vim_xterm", "Vim_xterm", NULL
, 0, &z
, &strp
);
6338 #if defined(HAVE_SETJMP_H)
6343 #if defined(HAVE_SETJMP_H)
6344 /* Now handle X IO errors normally. */
6345 (void)XSetIOErrorHandler(oldIOhandler
);
6347 /* Now handle X errors normally. */
6348 (void)XSetErrorHandler(oldhandler
);
6350 if (xterm_dpy
== NULL
)
6353 verb_msg((char_u
*)_("Opening the X display failed"));
6357 /* Catch terminating error of the X server connection. */
6358 (void)XSetIOErrorHandler(x_IOerror_handler
);
6360 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6364 xopen_message(&start_tv
);
6369 /* Create a Shell to make converters work. */
6370 AppShell
= XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6371 applicationShellWidgetClass
, xterm_dpy
,
6373 if (AppShell
== (Widget
)0)
6375 xterm_Shell
= XtVaCreatePopupShell("VIM",
6376 topLevelShellWidgetClass
, AppShell
,
6377 XtNmappedWhenManaged
, 0,
6381 if (xterm_Shell
== (Widget
)0)
6384 x11_setup_atoms(xterm_dpy
);
6385 if (x11_display
== NULL
)
6386 x11_display
= xterm_dpy
;
6388 XtRealizeWidget(xterm_Shell
);
6389 XSync(xterm_dpy
, False
);
6392 if (xterm_Shell
!= (Widget
)0)
6395 if (x11_window
== 0 && (strp
= getenv("WINDOWID")) != NULL
)
6396 x11_window
= (Window
)atol(strp
);
6397 /* Check if $WINDOWID is valid. */
6398 if (test_x11_window(xterm_dpy
) == FAIL
)
6400 if (x11_window
!= 0)
6406 start_xterm_trace(button
)
6409 if (x11_window
== 0 || xterm_trace
< 0 || xterm_Shell
== (Widget
)0)
6412 xterm_button
= button
;
6420 if (xterm_trace
< 0)
6426 * Query the xterm pointer and generate mouse termcodes if necessary
6427 * return TRUE if dragging is active, else FALSE
6440 static char_u
*mouse_code
;
6441 static char_u mouse_name
[2] = {KS_MOUSE
, KE_FILLER
};
6442 static int prev_row
= 0, prev_col
= 0;
6443 static XSizeHints xterm_hints
;
6445 if (xterm_trace
<= 0)
6448 if (xterm_trace
== 1)
6450 /* Get the hints just before tracking starts. The font size might
6451 * have changed recently. */
6452 if (!XGetWMNormalHints(xterm_dpy
, x11_window
, &xterm_hints
, &got_hints
)
6453 || !(got_hints
& PResizeInc
)
6454 || xterm_hints
.width_inc
<= 1
6455 || xterm_hints
.height_inc
<= 1)
6457 xterm_trace
= -1; /* Not enough data -- disable tracing */
6461 /* Rely on the same mouse code for the duration of this */
6462 mouse_code
= find_termcode(mouse_name
);
6463 prev_row
= mouse_row
;
6464 prev_row
= mouse_col
;
6467 /* Find the offset of the chars, there might be a scrollbar on the
6468 * left of the window and/or a menu on the top (eterm etc.) */
6469 XQueryPointer(xterm_dpy
, x11_window
, &root
, &child
, &root_x
, &root_y
,
6470 &win_x
, &win_y
, &mask_return
);
6471 xterm_hints
.y
= win_y
- (xterm_hints
.height_inc
* mouse_row
)
6472 - (xterm_hints
.height_inc
/ 2);
6473 if (xterm_hints
.y
<= xterm_hints
.height_inc
/ 2)
6475 xterm_hints
.x
= win_x
- (xterm_hints
.width_inc
* mouse_col
)
6476 - (xterm_hints
.width_inc
/ 2);
6477 if (xterm_hints
.x
<= xterm_hints
.width_inc
/ 2)
6481 if (mouse_code
== NULL
)
6487 XQueryPointer(xterm_dpy
, x11_window
, &root
, &child
, &root_x
, &root_y
,
6488 &win_x
, &win_y
, &mask_return
);
6490 row
= check_row((win_y
- xterm_hints
.y
) / xterm_hints
.height_inc
);
6491 col
= check_col((win_x
- xterm_hints
.x
) / xterm_hints
.width_inc
);
6492 if (row
== prev_row
&& col
== prev_col
)
6495 STRCPY(buf
, mouse_code
);
6496 strp
= buf
+ STRLEN(buf
);
6497 *strp
++ = (xterm_button
| MOUSE_DRAG
) & ~0x20;
6498 *strp
++ = (char_u
)(col
+ ' ' + 1);
6499 *strp
++ = (char_u
)(row
+ ' ' + 1);
6501 add_to_input_buf(buf
, STRLEN(buf
));
6508 # if defined(FEAT_GUI) || defined(PROTO)
6510 * Destroy the display, window and app_context. Required for GTK.
6515 if (xterm_Shell
!= (Widget
)0)
6517 XtDestroyWidget(xterm_Shell
);
6518 xterm_Shell
= (Widget
)0;
6520 if (xterm_dpy
!= NULL
)
6523 /* Lesstif and Solaris crash here, lose some memory */
6524 XtCloseDisplay(xterm_dpy
);
6526 if (x11_display
== xterm_dpy
)
6531 if (app_context
!= (XtAppContext
)NULL
)
6533 /* Lesstif and Solaris crash here, lose some memory */
6534 XtDestroyApplicationContext(app_context
);
6535 app_context
= (XtAppContext
)NULL
;
6542 * Catch up with any queued X events. This may put keyboard input into the
6543 * input buffer, call resize call-backs, trigger timers etc. If there is
6544 * nothing in the X event queue (& no timers pending), then we return
6552 while (XtAppPending(app_context
) && !vim_is_input_buf_full())
6554 XtAppNextEvent(app_context
, &event
);
6555 #ifdef FEAT_CLIENTSERVER
6557 XPropertyEvent
*e
= (XPropertyEvent
*)&event
;
6559 if (e
->type
== PropertyNotify
&& e
->window
== commWindow
6560 && e
->atom
== commProperty
&& e
->state
== PropertyNewValue
)
6561 serverEventProc(xterm_dpy
, &event
);
6564 XtDispatchEvent(&event
);
6569 clip_xterm_own_selection(cbd
)
6572 if (xterm_Shell
!= (Widget
)0)
6573 return clip_x11_own_selection(xterm_Shell
, cbd
);
6578 clip_xterm_lose_selection(cbd
)
6581 if (xterm_Shell
!= (Widget
)0)
6582 clip_x11_lose_selection(xterm_Shell
, cbd
);
6586 clip_xterm_request_selection(cbd
)
6589 if (xterm_Shell
!= (Widget
)0)
6590 clip_x11_request_selection(xterm_Shell
, xterm_dpy
, cbd
);
6594 clip_xterm_set_selection(cbd
)
6597 clip_x11_set_selection(cbd
);
6602 #if defined(USE_XSMP) || defined(PROTO)
6604 * Code for X Session Management Protocol.
6606 static void xsmp_handle_save_yourself
__ARGS((SmcConn smc_conn
, SmPointer client_data
, int save_type
, Bool shutdown
, int interact_style
, Bool fast
));
6607 static void xsmp_die
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6608 static void xsmp_save_complete
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6609 static void xsmp_shutdown_cancelled
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6610 static void xsmp_ice_connection
__ARGS((IceConn iceConn
, IcePointer clientData
, Bool opening
, IcePointer
*watchData
));
6613 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6614 static void xsmp_handle_interaction
__ARGS((SmcConn smc_conn
, SmPointer client_data
));
6617 * This is our chance to ask the user if they want to save,
6618 * or abort the logout
6621 xsmp_handle_interaction(smc_conn
, client_data
)
6623 SmPointer client_data UNUSED
;
6625 cmdmod_T save_cmdmod
;
6626 int cancel_shutdown
= False
;
6628 save_cmdmod
= cmdmod
;
6629 cmdmod
.confirm
= TRUE
;
6630 if (check_changed_any(FALSE
))
6631 /* Mustn't logout */
6632 cancel_shutdown
= True
;
6633 cmdmod
= save_cmdmod
;
6634 setcursor(); /* position cursor */
6637 /* Done interaction */
6638 SmcInteractDone(smc_conn
, cancel_shutdown
);
6641 * Only end save-yourself here if we're not cancelling shutdown;
6642 * we'll get a cancelled callback later in which we'll end it.
6643 * Hopefully get around glitchy SMs (like GNOME-1)
6645 if (!cancel_shutdown
)
6647 xsmp
.save_yourself
= False
;
6648 SmcSaveYourselfDone(smc_conn
, True
);
6654 * Callback that starts save-yourself.
6657 xsmp_handle_save_yourself(smc_conn
, client_data
, save_type
,
6658 shutdown
, interact_style
, fast
)
6660 SmPointer client_data UNUSED
;
6661 int save_type UNUSED
;
6663 int interact_style UNUSED
;
6666 /* Handle already being in saveyourself */
6667 if (xsmp
.save_yourself
)
6668 SmcSaveYourselfDone(smc_conn
, True
);
6669 xsmp
.save_yourself
= True
;
6670 xsmp
.shutdown
= shutdown
;
6672 /* First up, preserve all files */
6674 ml_sync_all(FALSE
, FALSE
); /* preserve all swap files */
6677 verb_msg((char_u
*)_("XSMP handling save-yourself request"));
6679 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6680 /* Now see if we can ask about unsaved files */
6681 if (shutdown
&& !fast
&& gui
.in_use
)
6682 /* Need to interact with user, but need SM's permission */
6683 SmcInteractRequest(smc_conn
, SmDialogError
,
6684 xsmp_handle_interaction
, client_data
);
6688 /* Can stop the cycle here */
6689 SmcSaveYourselfDone(smc_conn
, True
);
6690 xsmp
.save_yourself
= False
;
6696 * Callback to warn us of imminent death.
6699 xsmp_die(smc_conn
, client_data
)
6700 SmcConn smc_conn UNUSED
;
6701 SmPointer client_data UNUSED
;
6705 /* quit quickly leaving swapfiles for modified buffers behind */
6706 getout_preserve_modified(0);
6711 * Callback to tell us that save-yourself has completed.
6714 xsmp_save_complete(smc_conn
, client_data
)
6715 SmcConn smc_conn UNUSED
;
6716 SmPointer client_data UNUSED
;
6718 xsmp
.save_yourself
= False
;
6723 * Callback to tell us that an instigated shutdown was cancelled
6724 * (maybe even by us)
6727 xsmp_shutdown_cancelled(smc_conn
, client_data
)
6729 SmPointer client_data UNUSED
;
6731 if (xsmp
.save_yourself
)
6732 SmcSaveYourselfDone(smc_conn
, True
);
6733 xsmp
.save_yourself
= False
;
6734 xsmp
.shutdown
= False
;
6739 * Callback to tell us that a new ICE connection has been established.
6742 xsmp_ice_connection(iceConn
, clientData
, opening
, watchData
)
6744 IcePointer clientData UNUSED
;
6746 IcePointer
*watchData UNUSED
;
6748 /* Intercept creation of ICE connection fd */
6751 xsmp_icefd
= IceConnectionNumber(iceConn
);
6752 IceRemoveConnectionWatch(xsmp_ice_connection
, NULL
);
6757 /* Handle any ICE processing that's required; return FAIL if SM lost */
6759 xsmp_handle_requests()
6763 if (IceProcessMessages(xsmp
.iceconn
, NULL
, &rep
)
6764 == IceProcessMessagesIOError
)
6768 verb_msg((char_u
*)_("XSMP lost ICE connection"));
6778 /* Set up X Session Management Protocol */
6782 char errorstring
[80];
6783 SmcCallbacks smcallbacks
;
6791 verb_msg((char_u
*)_("XSMP opening connection"));
6793 xsmp
.save_yourself
= xsmp
.shutdown
= False
;
6795 /* Set up SM callbacks - must have all, even if they're not used */
6796 smcallbacks
.save_yourself
.callback
= xsmp_handle_save_yourself
;
6797 smcallbacks
.save_yourself
.client_data
= NULL
;
6798 smcallbacks
.die
.callback
= xsmp_die
;
6799 smcallbacks
.die
.client_data
= NULL
;
6800 smcallbacks
.save_complete
.callback
= xsmp_save_complete
;
6801 smcallbacks
.save_complete
.client_data
= NULL
;
6802 smcallbacks
.shutdown_cancelled
.callback
= xsmp_shutdown_cancelled
;
6803 smcallbacks
.shutdown_cancelled
.client_data
= NULL
;
6805 /* Set up a watch on ICE connection creations. The "dummy" argument is
6806 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6807 if (IceAddConnectionWatch(xsmp_ice_connection
, &dummy
) == 0)
6810 verb_msg((char_u
*)_("XSMP ICE connection watch failed"));
6814 /* Create an SM connection */
6815 xsmp
.smcconn
= SmcOpenConnection(
6820 SmcSaveYourselfProcMask
| SmcDieProcMask
6821 | SmcSaveCompleteProcMask
| SmcShutdownCancelledProcMask
,
6825 sizeof(errorstring
),
6827 if (xsmp
.smcconn
== NULL
)
6829 char errorreport
[132];
6833 vim_snprintf(errorreport
, sizeof(errorreport
),
6834 _("XSMP SmcOpenConnection failed: %s"), errorstring
);
6835 verb_msg((char_u
*)errorreport
);
6839 xsmp
.iceconn
= SmcGetIceConnection(xsmp
.smcconn
);
6843 smname
.value
= "vim";
6845 smnameprop
.name
= "SmProgram";
6846 smnameprop
.type
= "SmARRAY8";
6847 smnameprop
.num_vals
= 1;
6848 smnameprop
.vals
= &smname
;
6850 smprops
[0] = &smnameprop
;
6851 SmcSetProperties(xsmp
.smcconn
, 1, smprops
);
6856 /* Shut down XSMP comms. */
6860 if (xsmp_icefd
!= -1)
6862 SmcCloseConnection(xsmp
.smcconn
, 0, NULL
);
6863 if (xsmp
.clientid
!= NULL
)
6864 free(xsmp
.clientid
);
6865 xsmp
.clientid
= NULL
;
6869 #endif /* USE_XSMP */
6873 /* Translate character to its CTRL- value */
6877 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6878 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6881 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6882 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6886 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6889 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6900 0, 0, 0, 0, 0, 0, 0,
6911 0, 0, 0, 0, 0, 0, 0, 0,
6924 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6926 /* BE - C0 */ 0, 0, 0,
6936 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6946 /* DA - DF */ 0, 0, 0, 0, 0, 0,
6957 /* EA - FF*/ 0, 0, 0, 0, 0, 0,
6958 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6961 char MetaCharTable
[]=
6962 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6963 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6964 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6965 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6966 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6970 /* TODO: Use characters NOT numbers!!! */
6971 char CtrlCharTable
[]=
6972 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6973 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6974 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6975 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6976 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,