Mercurial > vim
annotate src/os_unix.c @ 9313:c0760b25f31d v7.4.1939
commit https://github.com/vim/vim/commit/28607ba2b82668503f8406bc13690d59af46deb3
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jun 15 21:44:51 2016 +0200
patch 7.4.1939
Problem: Memory access error when reading viminfo. (Dominique Pelle)
Solution: Correct index in jumplist when at the end.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 15 Jun 2016 21:45:05 +0200 |
parents | c9f2b70feac0 |
children | c665cc3292e0 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * OS/2 port by Paul Slootman | |
5 * VMS merge by Zoltan Arpadffy | |
6 * | |
7 * Do ":help uganda" in Vim to read copying and usage conditions. | |
8 * Do ":help credits" in Vim to see a list of people who contributed. | |
9 * See README.txt for an overview of the Vim source code. | |
10 */ | |
11 | |
12 /* | |
13 * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...) | |
14 * Also for OS/2, using the excellent EMX package!!! | |
15 * Also for BeOS and Atari MiNT. | |
16 * | |
17 * A lot of this file was originally written by Juergen Weigert and later | |
18 * changed beyond recognition. | |
19 */ | |
20 | |
21 /* | |
22 * Some systems have a prototype for select() that has (int *) instead of | |
23 * (fd_set *), which is wrong. This define removes that prototype. We define | |
24 * our own prototype below. | |
25 * Don't use it for the Mac, it causes a warning for precompiled headers. | |
26 * TODO: use a configure check for precompiled headers? | |
27 */ | |
1076 | 28 #if !defined(__APPLE__) && !defined(__TANDEM) |
7 | 29 # define select select_declared_wrong |
30 #endif | |
31 | |
32 #include "vim.h" | |
33 | |
14 | 34 #ifdef FEAT_MZSCHEME |
35 # include "if_mzsch.h" | |
36 #endif | |
37 | |
7 | 38 #include "os_unixx.h" /* unix includes for os_unix.c only */ |
39 | |
40 #ifdef USE_XSMP | |
41 # include <X11/SM/SMlib.h> | |
42 #endif | |
43 | |
1583 | 44 #ifdef HAVE_SELINUX |
45 # include <selinux/selinux.h> | |
46 static int selinux_enabled = -1; | |
47 #endif | |
48 | |
5788 | 49 #ifdef HAVE_SMACK |
50 # include <attr/xattr.h> | |
51 # include <linux/xattr.h> | |
52 # ifndef SMACK_LABEL_LEN | |
53 # define SMACK_LABEL_LEN 1024 | |
54 # endif | |
55 #endif | |
56 | |
7 | 57 /* |
58 * Use this prototype for select, some include files have a wrong prototype | |
59 */ | |
1076 | 60 #ifndef __TANDEM |
61 # undef select | |
62 # ifdef __BEOS__ | |
63 # define select beos_select | |
64 # endif | |
7 | 65 #endif |
66 | |
1102 | 67 #ifdef __CYGWIN__ |
68 # ifndef WIN32 | |
1657 | 69 # include <cygwin/version.h> |
70 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or | |
71 * for cygwin_conv_path() */ | |
4168 | 72 # ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
73 # define WIN32_LEAN_AND_MEAN | |
74 # include <windows.h> | |
75 # include "winclip.pro" | |
76 # endif | |
1102 | 77 # endif |
78 #endif | |
79 | |
7 | 80 #if defined(HAVE_SELECT) |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
81 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *); |
7 | 82 #endif |
83 | |
84 #ifdef FEAT_MOUSE_GPM | |
85 # include <gpm.h> | |
86 /* <linux/keyboard.h> contains defines conflicting with "keymap.h", | |
87 * I just copied relevant defines here. A cleaner solution would be to put gpm | |
88 * code into separate file and include there linux/keyboard.h | |
89 */ | |
90 /* #include <linux/keyboard.h> */ | |
91 # define KG_SHIFT 0 | |
92 # define KG_CTRL 2 | |
93 # define KG_ALT 3 | |
94 # define KG_ALTGR 1 | |
95 # define KG_SHIFTL 4 | |
96 # define KG_SHIFTR 5 | |
97 # define KG_CTRLL 6 | |
98 # define KG_CTRLR 7 | |
99 # define KG_CAPSSHIFT 8 | |
100 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
101 static void gpm_close(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
102 static int gpm_open(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
103 static int mch_gpm_process(void); |
7 | 104 #endif |
105 | |
1620 | 106 #ifdef FEAT_SYSMOUSE |
107 # include <sys/consio.h> | |
108 # include <sys/fbio.h> | |
109 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
110 static int sysmouse_open(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
111 static void sysmouse_close(void); |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
112 static RETSIGTYPE sig_sysmouse SIGPROTOARG; |
1620 | 113 #endif |
114 | |
7 | 115 /* |
116 * end of autoconf section. To be extended... | |
117 */ | |
118 | |
119 /* Are the following #ifdefs still required? And why? Is that for X11? */ | |
120 | |
121 #if defined(ESIX) || defined(M_UNIX) && !defined(SCO) | |
122 # ifdef SIGWINCH | |
123 # undef SIGWINCH | |
124 # endif | |
125 # ifdef TIOCGWINSZ | |
126 # undef TIOCGWINSZ | |
127 # endif | |
128 #endif | |
129 | |
130 #if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */ | |
131 # define SIGWINCH SIGWINDOW | |
132 #endif | |
133 | |
134 #ifdef FEAT_X11 | |
135 # include <X11/Xlib.h> | |
136 # include <X11/Xutil.h> | |
137 # include <X11/Xatom.h> | |
138 # ifdef FEAT_XCLIPBOARD | |
139 # include <X11/Intrinsic.h> | |
140 # include <X11/Shell.h> | |
141 # include <X11/StringDefs.h> | |
142 static Widget xterm_Shell = (Widget)0; | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
143 static void clip_update(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
144 static void xterm_update(void); |
7 | 145 # endif |
146 | |
147 # if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE) | |
148 Window x11_window = 0; | |
149 # endif | |
150 Display *x11_display = NULL; | |
151 | |
152 # ifdef FEAT_TITLE | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
153 static int get_x11_windis(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
154 static void set_x11_title(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
155 static void set_x11_icon(char_u *); |
7 | 156 # endif |
157 #endif | |
158 | |
159 #ifdef FEAT_TITLE | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
160 static int get_x11_title(int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
161 static int get_x11_icon(int); |
7 | 162 |
163 static char_u *oldtitle = NULL; | |
164 static int did_set_title = FALSE; | |
165 static char_u *oldicon = NULL; | |
166 static int did_set_icon = FALSE; | |
167 #endif | |
168 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
169 static void may_core_dump(void); |
7 | 170 |
3048 | 171 #ifdef HAVE_UNION_WAIT |
172 typedef union wait waitstatus; | |
173 #else | |
174 typedef int waitstatus; | |
175 #endif | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
176 static pid_t wait4pid(pid_t, waitstatus *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
177 |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
178 static int WaitForChar(long msec, int *interrupted); |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
179 static int WaitForCharOrMouse(long msec, int *interrupted); |
5541 | 180 #if defined(__BEOS__) || defined(VMS) |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
181 int RealWaitForChar(int, long, int *, int *interrupted); |
7 | 182 #else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
183 static int RealWaitForChar(int, long, int *, int *interrupted); |
7 | 184 #endif |
185 | |
186 #ifdef FEAT_XCLIPBOARD | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
187 static int do_xterm_trace(void); |
331 | 188 # define XT_TRACE_DELAY 50 /* delay for xterm tracing */ |
7 | 189 #endif |
190 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
191 static void handle_resize(void); |
7 | 192 |
193 #if defined(SIGWINCH) | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
194 static RETSIGTYPE sig_winch SIGPROTOARG; |
7 | 195 #endif |
196 #if defined(SIGINT) | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
197 static RETSIGTYPE catch_sigint SIGPROTOARG; |
7 | 198 #endif |
199 #if defined(SIGPWR) | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
200 static RETSIGTYPE catch_sigpwr SIGPROTOARG; |
7 | 201 #endif |
202 #if defined(SIGALRM) && defined(FEAT_X11) \ | |
203 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK) | |
204 # define SET_SIG_ALARM | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
205 static RETSIGTYPE sig_alarm SIGPROTOARG; |
1832 | 206 /* volatile because it is used in signal handler sig_alarm(). */ |
207 static volatile int sig_alarm_called; | |
7 | 208 #endif |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
209 static RETSIGTYPE deathtrap SIGPROTOARG; |
7 | 210 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
211 static void catch_int_signal(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
212 static void set_signals(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
213 static void catch_signals(RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()); |
7 | 214 #ifndef __EMX__ |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
215 static int have_wildcard(int, char_u **); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
216 static int have_dollars(int, char_u **); |
7 | 217 #endif |
218 | |
219 #ifndef __EMX__ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
220 static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file); |
7 | 221 #endif |
222 | |
223 #ifndef SIG_ERR | |
1879 | 224 # define SIG_ERR ((RETSIGTYPE (*)())-1) |
7 | 225 #endif |
226 | |
1832 | 227 /* volatile because it is used in signal handler sig_winch(). */ |
228 static volatile int do_resize = FALSE; | |
7 | 229 #ifndef __EMX__ |
230 static char_u *extra_shell_arg = NULL; | |
231 static int show_shell_mess = TRUE; | |
232 #endif | |
1832 | 233 /* volatile because it is used in signal handler deathtrap(). */ |
234 static volatile int deadly_signal = 0; /* The signal we caught */ | |
235 /* volatile because it is used in signal handler deathtrap(). */ | |
236 static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */ | |
7 | 237 |
238 static int curr_tmode = TMODE_COOK; /* contains current terminal mode */ | |
239 | |
240 #ifdef USE_XSMP | |
241 typedef struct | |
242 { | |
243 SmcConn smcconn; /* The SM connection ID */ | |
244 IceConn iceconn; /* The ICE connection ID */ | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
245 char *clientid; /* The client ID for the current smc session */ |
7 | 246 Bool save_yourself; /* If we're in the middle of a save_yourself */ |
247 Bool shutdown; /* If we're in shutdown mode */ | |
248 } xsmp_config_T; | |
249 | |
250 static xsmp_config_T xsmp; | |
251 #endif | |
252 | |
253 #ifdef SYS_SIGLIST_DECLARED | |
254 /* | |
255 * I have seen | |
256 * extern char *_sys_siglist[NSIG]; | |
257 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings | |
258 * that describe the signals. That is nearly what we want here. But | |
259 * autoconf does only check for sys_siglist (without the underscore), I | |
260 * do not want to change everything today.... jw. | |
261 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in | |
262 */ | |
263 #endif | |
264 | |
265 static struct signalinfo | |
266 { | |
267 int sig; /* Signal number, eg. SIGSEGV etc */ | |
268 char *name; /* Signal name (not char_u!). */ | |
269 char deadly; /* Catch as a deadly signal? */ | |
270 } signal_info[] = | |
271 { | |
272 #ifdef SIGHUP | |
273 {SIGHUP, "HUP", TRUE}, | |
274 #endif | |
275 #ifdef SIGQUIT | |
276 {SIGQUIT, "QUIT", TRUE}, | |
277 #endif | |
278 #ifdef SIGILL | |
279 {SIGILL, "ILL", TRUE}, | |
280 #endif | |
281 #ifdef SIGTRAP | |
282 {SIGTRAP, "TRAP", TRUE}, | |
283 #endif | |
284 #ifdef SIGABRT | |
285 {SIGABRT, "ABRT", TRUE}, | |
286 #endif | |
287 #ifdef SIGEMT | |
288 {SIGEMT, "EMT", TRUE}, | |
289 #endif | |
290 #ifdef SIGFPE | |
291 {SIGFPE, "FPE", TRUE}, | |
292 #endif | |
293 #ifdef SIGBUS | |
294 {SIGBUS, "BUS", TRUE}, | |
295 #endif | |
4074 | 296 #if defined(SIGSEGV) && !defined(FEAT_MZSCHEME) |
297 /* MzScheme uses SEGV in its garbage collector */ | |
7 | 298 {SIGSEGV, "SEGV", TRUE}, |
299 #endif | |
300 #ifdef SIGSYS | |
301 {SIGSYS, "SYS", TRUE}, | |
302 #endif | |
303 #ifdef SIGALRM | |
304 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */ | |
305 #endif | |
306 #ifdef SIGTERM | |
307 {SIGTERM, "TERM", TRUE}, | |
308 #endif | |
2701 | 309 #if defined(SIGVTALRM) && !defined(FEAT_RUBY) |
7 | 310 {SIGVTALRM, "VTALRM", TRUE}, |
311 #endif | |
1560 | 312 #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING) |
313 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling | |
314 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */ | |
7 | 315 {SIGPROF, "PROF", TRUE}, |
316 #endif | |
317 #ifdef SIGXCPU | |
318 {SIGXCPU, "XCPU", TRUE}, | |
319 #endif | |
320 #ifdef SIGXFSZ | |
321 {SIGXFSZ, "XFSZ", TRUE}, | |
322 #endif | |
323 #ifdef SIGUSR1 | |
324 {SIGUSR1, "USR1", TRUE}, | |
325 #endif | |
1620 | 326 #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE) |
327 /* Used for sysmouse handling */ | |
7 | 328 {SIGUSR2, "USR2", TRUE}, |
329 #endif | |
330 #ifdef SIGINT | |
331 {SIGINT, "INT", FALSE}, | |
332 #endif | |
333 #ifdef SIGWINCH | |
334 {SIGWINCH, "WINCH", FALSE}, | |
335 #endif | |
336 #ifdef SIGTSTP | |
337 {SIGTSTP, "TSTP", FALSE}, | |
338 #endif | |
339 #ifdef SIGPIPE | |
340 {SIGPIPE, "PIPE", FALSE}, | |
341 #endif | |
342 {-1, "Unknown!", FALSE} | |
343 }; | |
344 | |
1935 | 345 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
346 mch_chdir(char *path) |
1935 | 347 { |
348 if (p_verbose >= 5) | |
349 { | |
350 verbose_enter(); | |
351 smsg((char_u *)"chdir(%s)", path); | |
352 verbose_leave(); | |
353 } | |
354 # ifdef VMS | |
355 return chdir(vms_fixfilename(path)); | |
356 # else | |
357 return chdir(path); | |
358 # endif | |
359 } | |
360 | |
1757 | 361 /* |
362 * Write s[len] to the screen. | |
363 */ | |
7 | 364 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
365 mch_write(char_u *s, int len) |
7 | 366 { |
1757 | 367 ignored = (int)write(1, (char *)s, len); |
7 | 368 if (p_wd) /* Unix is too fast, slow down a bit more */ |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
369 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL); |
7 | 370 } |
371 | |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
372 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
373 /* |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
374 * Return time in msec since "start_tv". |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
375 */ |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
376 static long |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
377 elapsed(struct timeval *start_tv) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
378 { |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
379 struct timeval now_tv; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
380 |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
381 gettimeofday(&now_tv, NULL); |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
382 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
383 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
384 } |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
385 #endif |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
386 |
7 | 387 /* |
1450 | 388 * mch_inchar(): low level input function. |
7 | 389 * Get a characters from the keyboard. |
390 * Return the number of characters that are available. | |
391 * If wtime == 0 do not wait for characters. | |
392 * If wtime == n wait a short time for characters. | |
393 * If wtime == -1 wait forever for characters. | |
394 */ | |
395 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
396 mch_inchar( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
397 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
398 int maxlen, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
399 long wtime, /* don't use "time", MIPS cannot handle it */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
400 int tb_change_cnt) |
7 | 401 { |
402 int len; | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
403 int interrupted = FALSE; |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
404 long wait_time; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
405 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
406 struct timeval start_tv; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
407 |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
408 gettimeofday(&start_tv, NULL); |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
409 #endif |
7 | 410 |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
411 #ifdef MESSAGE_QUEUE |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
412 parse_queued_messages(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
413 #endif |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
414 |
7 | 415 /* Check if window changed size while we were busy, perhaps the ":set |
416 * columns=99" command was used. */ | |
417 while (do_resize) | |
418 handle_resize(); | |
419 | |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
420 for (;;) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
421 { |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
422 if (wtime >= 0) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
423 wait_time = wtime; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
424 else |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
425 wait_time = p_ut; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
426 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
427 wait_time -= elapsed(&start_tv); |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
428 if (wait_time >= 0) |
7 | 429 { |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
430 #endif |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
431 if (WaitForChar(wait_time, &interrupted)) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
432 break; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
433 |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
434 /* no character available */ |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
435 if (do_resize) |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
436 { |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
437 handle_resize(); |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
438 continue; |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
439 } |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
440 #ifdef FEAT_CLIENTSERVER |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
441 if (server_waiting()) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
442 { |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
443 parse_queued_messages(); |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
444 continue; |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
445 } |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
446 #endif |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
447 #ifdef MESSAGE_QUEUE |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
448 if (interrupted) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
449 { |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
450 parse_queued_messages(); |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
451 continue; |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
452 } |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
453 #endif |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
454 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
7 | 455 } |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
456 #endif |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
457 if (wtime >= 0) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
458 /* no character available within "wtime" */ |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
459 return 0; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
460 |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
461 /* wtime == -1: no character available within 'updatetime' */ |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
462 #ifdef FEAT_AUTOCMD |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
463 if (trigger_cursorhold() && maxlen >= 3 |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
464 && !typebuf_changed(tb_change_cnt)) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
465 { |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
466 buf[0] = K_SPECIAL; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
467 buf[1] = KS_EXTRA; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
468 buf[2] = (int)KE_CURSORHOLD; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
469 return 3; |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
470 } |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
471 #endif |
7 | 472 /* |
473 * If there is no character available within 'updatetime' seconds | |
216 | 474 * flush all the swap files to disk. |
7 | 475 * Also done when interrupted by SIGWINCH. |
476 */ | |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
477 before_blocking(); |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
478 break; |
7 | 479 } |
480 | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
481 /* repeat until we got a character */ |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
482 for (;;) |
7 | 483 { |
9189
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
484 long wtime_now = -1L; |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
485 |
7 | 486 while (do_resize) /* window changed size */ |
487 handle_resize(); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
488 |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
489 #ifdef MESSAGE_QUEUE |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
490 parse_queued_messages(); |
9189
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
491 |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
492 # ifdef FEAT_JOB_CHANNEL |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
493 if (has_pending_job()) |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
494 { |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
495 /* Don't wait longer than a few seconds, checking for a finished |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
496 * job requires polling. */ |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
497 if (p_ut > 9000L) |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
498 wtime_now = 1000L; |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
499 else |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
500 wtime_now = 10000L - p_ut; |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
501 } |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
502 # endif |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
503 #endif |
7 | 504 /* |
2436 | 505 * We want to be interrupted by the winch signal |
506 * or by an event on the monitored file descriptors. | |
7 | 507 */ |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
508 if (!WaitForChar(wtime_now, &interrupted)) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
509 { |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
510 if (do_resize) /* interrupted by SIGWINCH signal */ |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
511 continue; |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
512 #ifdef MESSAGE_QUEUE |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
513 if (interrupted || wtime_now > 0) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
514 { |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
515 parse_queued_messages(); |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
516 continue; |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
517 } |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
518 #endif |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
519 return 0; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
520 } |
7 | 521 |
522 /* If input was put directly in typeahead buffer bail out here. */ | |
523 if (typebuf_changed(tb_change_cnt)) | |
524 return 0; | |
525 | |
526 /* | |
527 * For some terminals we only get one character at a time. | |
528 * We want the get all available characters, so we could keep on | |
529 * trying until none is available | |
530 * For some other terminals this is quite slow, that's why we don't do | |
531 * it. | |
532 */ | |
533 len = read_from_input_buf(buf, (long)maxlen); | |
534 if (len > 0) | |
535 return len; | |
536 } | |
537 } | |
538 | |
539 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
540 handle_resize(void) |
7 | 541 { |
542 do_resize = FALSE; | |
543 shell_resized(); | |
544 } | |
545 | |
546 /* | |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
547 * Return non-zero if a character is available. |
7 | 548 */ |
549 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
550 mch_char_avail(void) |
7 | 551 { |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
552 return WaitForChar(0L, NULL); |
7 | 553 } |
554 | |
555 #if defined(HAVE_TOTAL_MEM) || defined(PROTO) | |
556 # ifdef HAVE_SYS_RESOURCE_H | |
1879 | 557 # include <sys/resource.h> |
7 | 558 # endif |
559 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) | |
560 # include <sys/sysctl.h> | |
561 # endif | |
562 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) | |
563 # include <sys/sysinfo.h> | |
564 # endif | |
565 | |
566 /* | |
1110 | 567 * Return total amount of memory available in Kbyte. |
568 * Doesn't change when memory has been allocated. | |
7 | 569 */ |
570 long_u | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
571 mch_total_mem(int special UNUSED) |
7 | 572 { |
573 # ifdef __EMX__ | |
1110 | 574 return ulimit(3, 0L) >> 10; /* always 32MB? */ |
7 | 575 # else |
576 long_u mem = 0; | |
1110 | 577 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */ |
7 | 578 |
579 # ifdef HAVE_SYSCTL | |
580 int mib[2], physmem; | |
581 size_t len; | |
582 | |
583 /* BSD way of getting the amount of RAM available. */ | |
584 mib[0] = CTL_HW; | |
585 mib[1] = HW_USERMEM; | |
586 len = sizeof(physmem); | |
587 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0) | |
588 mem = (long_u)physmem; | |
589 # endif | |
590 | |
591 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) | |
592 if (mem == 0) | |
593 { | |
594 struct sysinfo sinfo; | |
595 | |
596 /* Linux way of getting amount of RAM available */ | |
597 if (sysinfo(&sinfo) == 0) | |
1110 | 598 { |
599 # ifdef HAVE_SYSINFO_MEM_UNIT | |
600 /* avoid overflow as much as possible */ | |
601 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0) | |
602 { | |
603 sinfo.mem_unit = sinfo.mem_unit >> 1; | |
604 --shiftright; | |
605 } | |
606 mem = sinfo.totalram * sinfo.mem_unit; | |
607 # else | |
7 | 608 mem = sinfo.totalram; |
1110 | 609 # endif |
610 } | |
7 | 611 } |
612 # endif | |
613 | |
614 # ifdef HAVE_SYSCONF | |
615 if (mem == 0) | |
616 { | |
617 long pagesize, pagecount; | |
618 | |
619 /* Solaris way of getting amount of RAM available */ | |
620 pagesize = sysconf(_SC_PAGESIZE); | |
621 pagecount = sysconf(_SC_PHYS_PAGES); | |
622 if (pagesize > 0 && pagecount > 0) | |
1110 | 623 { |
624 /* avoid overflow as much as possible */ | |
625 while (shiftright > 0 && (pagesize & 1) == 0) | |
626 { | |
1204 | 627 pagesize = (long_u)pagesize >> 1; |
1110 | 628 --shiftright; |
629 } | |
7 | 630 mem = (long_u)pagesize * pagecount; |
1110 | 631 } |
7 | 632 } |
633 # endif | |
634 | |
635 /* Return the minimum of the physical memory and the user limit, because | |
636 * using more than the user limit may cause Vim to be terminated. */ | |
637 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) | |
638 { | |
639 struct rlimit rlp; | |
640 | |
641 if (getrlimit(RLIMIT_DATA, &rlp) == 0 | |
642 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) | |
643 # ifdef RLIM_INFINITY | |
644 && rlp.rlim_cur != RLIM_INFINITY | |
645 # endif | |
1110 | 646 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright) |
7 | 647 ) |
1110 | 648 { |
649 mem = (long_u)rlp.rlim_cur; | |
650 shiftright = 10; | |
651 } | |
7 | 652 } |
653 # endif | |
654 | |
655 if (mem > 0) | |
1110 | 656 return mem >> shiftright; |
657 return (long_u)0x1fffff; | |
7 | 658 # endif |
659 } | |
660 #endif | |
661 | |
662 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
663 mch_delay(long msec, int ignoreinput) |
7 | 664 { |
665 int old_tmode; | |
14 | 666 #ifdef FEAT_MZSCHEME |
667 long total = msec; /* remember original value */ | |
668 #endif | |
7 | 669 |
670 if (ignoreinput) | |
671 { | |
672 /* Go to cooked mode without echo, to allow SIGINT interrupting us | |
1530 | 673 * here. But we don't want QUIT to kill us (CTRL-\ used in a |
674 * shell may produce SIGQUIT). */ | |
675 in_mch_delay = TRUE; | |
7 | 676 old_tmode = curr_tmode; |
677 if (curr_tmode == TMODE_RAW) | |
678 settmode(TMODE_SLEEP); | |
679 | |
680 /* | |
681 * Everybody sleeps in a different way... | |
682 * Prefer nanosleep(), some versions of usleep() can only sleep up to | |
683 * one second. | |
684 */ | |
14 | 685 #ifdef FEAT_MZSCHEME |
686 do | |
687 { | |
688 /* if total is large enough, wait by portions in p_mzq */ | |
689 if (total > p_mzq) | |
690 msec = p_mzq; | |
691 else | |
692 msec = total; | |
693 total -= msec; | |
694 #endif | |
7 | 695 #ifdef HAVE_NANOSLEEP |
696 { | |
697 struct timespec ts; | |
698 | |
699 ts.tv_sec = msec / 1000; | |
700 ts.tv_nsec = (msec % 1000) * 1000000; | |
701 (void)nanosleep(&ts, NULL); | |
702 } | |
703 #else | |
704 # ifdef HAVE_USLEEP | |
705 while (msec >= 1000) | |
706 { | |
707 usleep((unsigned int)(999 * 1000)); | |
708 msec -= 999; | |
709 } | |
710 usleep((unsigned int)(msec * 1000)); | |
711 # else | |
712 # ifndef HAVE_SELECT | |
713 poll(NULL, 0, (int)msec); | |
714 # else | |
715 # ifdef __EMX__ | |
716 _sleep2(msec); | |
717 # else | |
718 { | |
719 struct timeval tv; | |
720 | |
721 tv.tv_sec = msec / 1000; | |
722 tv.tv_usec = (msec % 1000) * 1000; | |
723 /* | |
724 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get | |
725 * a patch from Sun to fix this. Reported by Gunnar Pedersen. | |
726 */ | |
727 select(0, NULL, NULL, NULL, &tv); | |
728 } | |
729 # endif /* __EMX__ */ | |
730 # endif /* HAVE_SELECT */ | |
731 # endif /* HAVE_NANOSLEEP */ | |
732 #endif /* HAVE_USLEEP */ | |
14 | 733 #ifdef FEAT_MZSCHEME |
734 } | |
735 while (total > 0); | |
736 #endif | |
7 | 737 |
738 settmode(old_tmode); | |
1530 | 739 in_mch_delay = FALSE; |
7 | 740 } |
741 else | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
742 WaitForChar(msec, NULL); |
7 | 743 } |
744 | |
180 | 745 #if defined(HAVE_STACK_LIMIT) \ |
7 | 746 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK)) |
747 # define HAVE_CHECK_STACK_GROWTH | |
748 /* | |
749 * Support for checking for an almost-out-of-stack-space situation. | |
750 */ | |
751 | |
752 /* | |
753 * Return a pointer to an item on the stack. Used to find out if the stack | |
754 * grows up or down. | |
755 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
756 static void check_stack_growth(char *p); |
7 | 757 static int stack_grows_downwards; |
758 | |
759 /* | |
760 * Find out if the stack grows upwards or downwards. | |
761 * "p" points to a variable on the stack of the caller. | |
762 */ | |
763 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
764 check_stack_growth(char *p) |
7 | 765 { |
766 int i; | |
767 | |
768 stack_grows_downwards = (p > (char *)&i); | |
769 } | |
770 #endif | |
771 | |
180 | 772 #if defined(HAVE_STACK_LIMIT) || defined(PROTO) |
7 | 773 static char *stack_limit = NULL; |
774 | |
775 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) | |
776 # include <pthread.h> | |
777 # include <pthread_np.h> | |
778 #endif | |
779 | |
780 /* | |
781 * Find out until how var the stack can grow without getting into trouble. | |
782 * Called when starting up and when switching to the signal stack in | |
783 * deathtrap(). | |
784 */ | |
785 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
786 get_stack_limit(void) |
7 | 787 { |
788 struct rlimit rlp; | |
789 int i; | |
790 long lim; | |
791 | |
792 /* Set the stack limit to 15/16 of the allowable size. Skip this when the | |
793 * limit doesn't fit in a long (rlim_cur might be "long long"). */ | |
794 if (getrlimit(RLIMIT_STACK, &rlp) == 0 | |
795 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) | |
796 # ifdef RLIM_INFINITY | |
797 && rlp.rlim_cur != RLIM_INFINITY | |
798 # endif | |
799 ) | |
800 { | |
801 lim = (long)rlp.rlim_cur; | |
802 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) | |
803 { | |
804 pthread_attr_t attr; | |
805 size_t size; | |
806 | |
807 /* On FreeBSD the initial thread always has a fixed stack size, no | |
808 * matter what the limits are set to. Normally it's 1 Mbyte. */ | |
809 pthread_attr_init(&attr); | |
810 if (pthread_attr_get_np(pthread_self(), &attr) == 0) | |
811 { | |
812 pthread_attr_getstacksize(&attr, &size); | |
813 if (lim > (long)size) | |
814 lim = (long)size; | |
815 } | |
816 pthread_attr_destroy(&attr); | |
817 } | |
818 #endif | |
819 if (stack_grows_downwards) | |
820 { | |
821 stack_limit = (char *)((long)&i - (lim / 16L * 15L)); | |
822 if (stack_limit >= (char *)&i) | |
823 /* overflow, set to 1/16 of current stack position */ | |
824 stack_limit = (char *)((long)&i / 16L); | |
825 } | |
826 else | |
827 { | |
828 stack_limit = (char *)((long)&i + (lim / 16L * 15L)); | |
829 if (stack_limit <= (char *)&i) | |
830 stack_limit = NULL; /* overflow */ | |
831 } | |
832 } | |
833 } | |
834 | |
835 /* | |
836 * Return FAIL when running out of stack space. | |
837 * "p" must point to any variable local to the caller that's on the stack. | |
838 */ | |
839 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
840 mch_stackcheck(char *p) |
7 | 841 { |
842 if (stack_limit != NULL) | |
843 { | |
844 if (stack_grows_downwards) | |
845 { | |
846 if (p < stack_limit) | |
847 return FAIL; | |
848 } | |
849 else if (p > stack_limit) | |
850 return FAIL; | |
851 } | |
852 return OK; | |
853 } | |
854 #endif | |
855 | |
856 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
857 /* | |
858 * Support for using the signal stack. | |
859 * This helps when we run out of stack space, which causes a SIGSEGV. The | |
860 * signal handler then must run on another stack, since the normal stack is | |
861 * completely full. | |
862 */ | |
863 | |
5421 | 864 #if defined(HAVE_AVAILABILITYMACROS_H) |
5411 | 865 # include <AvailabilityMacros.h> |
866 #endif | |
867 | |
7 | 868 #ifndef SIGSTKSZ |
869 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */ | |
870 #endif | |
871 | |
872 # ifdef HAVE_SIGALTSTACK | |
873 static stack_t sigstk; /* for sigaltstack() */ | |
874 # else | |
875 static struct sigstack sigstk; /* for sigstack() */ | |
876 # endif | |
877 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
878 static void init_signal_stack(void); |
7 | 879 static char *signal_stack; |
880 | |
881 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
882 init_signal_stack(void) |
7 | 883 { |
884 if (signal_stack != NULL) | |
885 { | |
886 # ifdef HAVE_SIGALTSTACK | |
1375 | 887 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \ |
888 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040) | |
7 | 889 /* missing prototype. Adding it to osdef?.h.in doesn't work, because |
890 * "struct sigaltstack" needs to be declared. */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
891 extern int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss); |
7 | 892 # endif |
893 | |
894 # ifdef HAVE_SS_BASE | |
895 sigstk.ss_base = signal_stack; | |
896 # else | |
897 sigstk.ss_sp = signal_stack; | |
898 # endif | |
899 sigstk.ss_size = SIGSTKSZ; | |
900 sigstk.ss_flags = 0; | |
901 (void)sigaltstack(&sigstk, NULL); | |
902 # else | |
903 sigstk.ss_sp = signal_stack; | |
904 if (stack_grows_downwards) | |
905 sigstk.ss_sp += SIGSTKSZ - 1; | |
906 sigstk.ss_onstack = 0; | |
907 (void)sigstack(&sigstk, NULL); | |
908 # endif | |
909 } | |
910 } | |
911 #endif | |
912 | |
913 /* | |
1832 | 914 * We need correct prototypes for a signal function, otherwise mean compilers |
7 | 915 * will barf when the second argument to signal() is ``wrong''. |
916 * Let me try it with a few tricky defines from my own osdef.h (jw). | |
917 */ | |
918 #if defined(SIGWINCH) | |
919 static RETSIGTYPE | |
920 sig_winch SIGDEFARG(sigarg) | |
921 { | |
922 /* this is not required on all systems, but it doesn't hurt anybody */ | |
923 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); | |
924 do_resize = TRUE; | |
925 SIGRETURN; | |
926 } | |
927 #endif | |
928 | |
929 #if defined(SIGINT) | |
930 static RETSIGTYPE | |
931 catch_sigint SIGDEFARG(sigarg) | |
932 { | |
933 /* this is not required on all systems, but it doesn't hurt anybody */ | |
934 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); | |
935 got_int = TRUE; | |
936 SIGRETURN; | |
937 } | |
938 #endif | |
939 | |
940 #if defined(SIGPWR) | |
941 static RETSIGTYPE | |
942 catch_sigpwr SIGDEFARG(sigarg) | |
943 { | |
37 | 944 /* this is not required on all systems, but it doesn't hurt anybody */ |
945 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); | |
7 | 946 /* |
947 * I'm not sure we get the SIGPWR signal when the system is really going | |
948 * down or when the batteries are almost empty. Just preserve the swap | |
949 * files and don't exit, that can't do any harm. | |
950 */ | |
951 ml_sync_all(FALSE, FALSE); | |
952 SIGRETURN; | |
953 } | |
954 #endif | |
955 | |
956 #ifdef SET_SIG_ALARM | |
957 /* | |
958 * signal function for alarm(). | |
959 */ | |
960 static RETSIGTYPE | |
961 sig_alarm SIGDEFARG(sigarg) | |
962 { | |
963 /* doesn't do anything, just to break a system call */ | |
964 sig_alarm_called = TRUE; | |
965 SIGRETURN; | |
966 } | |
967 #endif | |
968 | |
188 | 969 #if (defined(HAVE_SETJMP_H) \ |
970 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \ | |
971 || defined(FEAT_LIBCALL))) \ | |
972 || defined(PROTO) | |
7 | 973 /* |
974 * A simplistic version of setjmp() that only allows one level of using. | |
975 * Don't call twice before calling mch_endjmp()!. | |
976 * Usage: | |
977 * mch_startjmp(); | |
978 * if (SETJMP(lc_jump_env) != 0) | |
979 * { | |
980 * mch_didjmp(); | |
981 * EMSG("crash!"); | |
982 * } | |
983 * else | |
984 * { | |
985 * do_the_work; | |
986 * mch_endjmp(); | |
987 * } | |
988 * Note: Can't move SETJMP() here, because a function calling setjmp() must | |
989 * not return before the saved environment is used. | |
990 * Returns OK for normal return, FAIL when the protected code caused a | |
991 * problem and LONGJMP() was used. | |
992 */ | |
993 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
994 mch_startjmp(void) |
7 | 995 { |
996 #ifdef SIGHASARG | |
997 lc_signal = 0; | |
998 #endif | |
999 lc_active = TRUE; | |
1000 } | |
1001 | |
1002 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1003 mch_endjmp(void) |
7 | 1004 { |
1005 lc_active = FALSE; | |
1006 } | |
1007 | |
1008 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1009 mch_didjmp(void) |
7 | 1010 { |
1011 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
1012 /* On FreeBSD the signal stack has to be reset after using siglongjmp(), | |
1013 * otherwise catching the signal only works once. */ | |
1014 init_signal_stack(); | |
1015 # endif | |
1016 } | |
1017 #endif | |
1018 | |
1019 /* | |
1020 * This function handles deadly signals. | |
5338 | 1021 * It tries to preserve any swap files and exit properly. |
7 | 1022 * (partly from Elvis). |
5338 | 1023 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in |
1024 * a deadlock. | |
7 | 1025 */ |
1026 static RETSIGTYPE | |
1027 deathtrap SIGDEFARG(sigarg) | |
1028 { | |
1029 static int entered = 0; /* count the number of times we got here. | |
1030 Note: when memory has been corrupted | |
1031 this may get an arbitrary value! */ | |
1032 #ifdef SIGHASARG | |
1033 int i; | |
1034 #endif | |
1035 | |
1036 #if defined(HAVE_SETJMP_H) | |
1037 /* | |
1038 * Catch a crash in protected code. | |
1039 * Restores the environment saved in lc_jump_env, which looks like | |
1040 * SETJMP() returns 1. | |
1041 */ | |
1042 if (lc_active) | |
1043 { | |
1044 # if defined(SIGHASARG) | |
1045 lc_signal = sigarg; | |
1046 # endif | |
1047 lc_active = FALSE; /* don't jump again */ | |
1048 LONGJMP(lc_jump_env, 1); | |
1049 /* NOTREACHED */ | |
1050 } | |
1051 #endif | |
1052 | |
36 | 1053 #ifdef SIGHASARG |
1530 | 1054 # ifdef SIGQUIT |
1055 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to | |
1056 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when | |
1057 * pressing CTRL-\, but we don't want Vim to exit then. */ | |
1058 if (in_mch_delay && sigarg == SIGQUIT) | |
1059 SIGRETURN; | |
1060 # endif | |
1061 | |
37 | 1062 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return |
1063 * here. This avoids that a non-reentrant function is interrupted, e.g., | |
1064 * free(). Calling free() again may then cause a crash. */ | |
1065 if (entered == 0 | |
1066 && (0 | |
1067 # ifdef SIGHUP | |
1068 || sigarg == SIGHUP | |
1069 # endif | |
1070 # ifdef SIGQUIT | |
1071 || sigarg == SIGQUIT | |
1072 # endif | |
1073 # ifdef SIGTERM | |
1074 || sigarg == SIGTERM | |
1075 # endif | |
1076 # ifdef SIGPWR | |
1077 || sigarg == SIGPWR | |
1078 # endif | |
1079 # ifdef SIGUSR1 | |
1080 || sigarg == SIGUSR1 | |
1081 # endif | |
1082 # ifdef SIGUSR2 | |
1083 || sigarg == SIGUSR2 | |
1084 # endif | |
1085 ) | |
413 | 1086 && !vim_handle_signal(sigarg)) |
36 | 1087 SIGRETURN; |
1088 #endif | |
1089 | |
7 | 1090 /* Remember how often we have been called. */ |
1091 ++entered; | |
1092 | |
9262
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1093 #ifdef FEAT_AUTOCMD |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1094 /* Executing autocommands is likely to use more stack space than we have |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1095 * available in the signal stack. */ |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1096 block_autocmds(); |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1097 #endif |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1098 |
7 | 1099 #ifdef FEAT_EVAL |
1100 /* Set the v:dying variable. */ | |
1101 set_vim_var_nr(VV_DYING, (long)entered); | |
1102 #endif | |
1103 | |
180 | 1104 #ifdef HAVE_STACK_LIMIT |
7 | 1105 /* Since we are now using the signal stack, need to reset the stack |
1106 * limit. Otherwise using a regexp will fail. */ | |
1107 get_stack_limit(); | |
1108 #endif | |
1109 | |
758 | 1110 #if 0 |
1111 /* This is for opening gdb the moment Vim crashes. | |
1112 * You need to manually adjust the file name and Vim executable name. | |
1113 * Suggested by SungHyun Nam. */ | |
1114 { | |
1115 # define VI_GDB_FILE "/tmp/vimgdb" | |
1116 # define VIM_NAME "/usr/bin/vim" | |
1117 FILE *fp = fopen(VI_GDB_FILE, "w"); | |
1118 if (fp) | |
1119 { | |
1120 fprintf(fp, | |
1121 "file %s\n" | |
1122 "attach %d\n" | |
1123 "set height 1000\n" | |
1124 "bt full\n" | |
1125 , VIM_NAME, getpid()); | |
1126 fclose(fp); | |
1127 system("xterm -e gdb -x "VI_GDB_FILE); | |
1128 unlink(VI_GDB_FILE); | |
1129 } | |
1130 } | |
1131 #endif | |
1132 | |
7 | 1133 #ifdef SIGHASARG |
1134 /* try to find the name of this signal */ | |
1135 for (i = 0; signal_info[i].sig != -1; i++) | |
1136 if (sigarg == signal_info[i].sig) | |
1137 break; | |
1138 deadly_signal = sigarg; | |
1139 #endif | |
1140 | |
1141 full_screen = FALSE; /* don't write message to the GUI, it might be | |
1142 * part of the problem... */ | |
1143 /* | |
1144 * If something goes wrong after entering here, we may get here again. | |
1145 * When this happens, give a message and try to exit nicely (resetting the | |
1146 * terminal mode, etc.) | |
1147 * When this happens twice, just exit, don't even try to give a message, | |
1148 * stack may be corrupt or something weird. | |
1149 * When this still happens again (or memory was corrupted in such a way | |
1150 * that "entered" was clobbered) use _exit(), don't try freeing resources. | |
1151 */ | |
1152 if (entered >= 3) | |
1153 { | |
1154 reset_signals(); /* don't catch any signals anymore */ | |
1155 may_core_dump(); | |
1156 if (entered >= 4) | |
1157 _exit(8); | |
1158 exit(7); | |
1159 } | |
1160 if (entered == 2) | |
1161 { | |
5338 | 1162 /* No translation, it may call malloc(). */ |
1163 OUT_STR("Vim: Double signal, exiting\n"); | |
7 | 1164 out_flush(); |
1165 getout(1); | |
1166 } | |
1167 | |
5338 | 1168 /* No translation, it may call malloc(). */ |
7 | 1169 #ifdef SIGHASARG |
5338 | 1170 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n", |
7 | 1171 signal_info[i].name); |
1172 #else | |
5338 | 1173 sprintf((char *)IObuff, "Vim: Caught deadly signal\n"); |
1174 #endif | |
1175 | |
1176 /* Preserve files and exit. This sets the really_exiting flag to prevent | |
1177 * calling free(). */ | |
1178 preserve_exit(); | |
7 | 1179 |
9262
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1180 /* NOTREACHED */ |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1181 |
33 | 1182 #ifdef NBDEBUG |
1183 reset_signals(); | |
1184 may_core_dump(); | |
1185 abort(); | |
1186 #endif | |
1187 | |
7 | 1188 SIGRETURN; |
1189 } | |
1190 | |
1832 | 1191 #if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1192 /* |
1193 * On Solaris with multi-threading, suspending might not work immediately. | |
1194 * Catch the SIGCONT signal, which will be used as an indication whether the | |
1195 * suspending has been done or not. | |
1832 | 1196 * |
1197 * On Linux, signal is not always handled immediately either. | |
1198 * See https://bugs.launchpad.net/bugs/291373 | |
1199 * | |
2701 | 1200 * volatile because it is used in signal handler sigcont_handler(). |
7 | 1201 */ |
1832 | 1202 static volatile int sigcont_received; |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1203 static RETSIGTYPE sigcont_handler SIGPROTOARG; |
7 | 1204 |
1205 /* | |
1206 * signal handler for SIGCONT | |
1207 */ | |
1208 static RETSIGTYPE | |
1209 sigcont_handler SIGDEFARG(sigarg) | |
1210 { | |
1211 sigcont_received = TRUE; | |
1212 SIGRETURN; | |
1213 } | |
1214 #endif | |
1215 | |
2586 | 1216 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1217 static void loose_clipboard(void); |
4230 | 1218 # ifdef USE_SYSTEM |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1219 static void save_clipboard(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1220 static void restore_clipboard(void); |
4209 | 1221 |
1222 static void *clip_star_save = NULL; | |
1223 static void *clip_plus_save = NULL; | |
4230 | 1224 # endif |
2586 | 1225 |
1226 /* | |
1227 * Called when Vim is going to sleep or execute a shell command. | |
1228 * We can't respond to requests for the X selections. Lose them, otherwise | |
1229 * other applications will hang. But first copy the text to cut buffer 0. | |
1230 */ | |
1231 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1232 loose_clipboard(void) |
2586 | 1233 { |
1234 if (clip_star.owned || clip_plus.owned) | |
1235 { | |
1236 x11_export_final_selection(); | |
1237 if (clip_star.owned) | |
1238 clip_lose_selection(&clip_star); | |
1239 if (clip_plus.owned) | |
1240 clip_lose_selection(&clip_plus); | |
1241 if (x11_display != NULL) | |
1242 XFlush(x11_display); | |
1243 } | |
1244 } | |
4209 | 1245 |
4230 | 1246 # ifdef USE_SYSTEM |
4209 | 1247 /* |
1248 * Save clipboard text to restore later. | |
1249 */ | |
1250 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1251 save_clipboard(void) |
4209 | 1252 { |
1253 if (clip_star.owned) | |
1254 clip_star_save = get_register('*', TRUE); | |
1255 if (clip_plus.owned) | |
1256 clip_plus_save = get_register('+', TRUE); | |
1257 } | |
1258 | |
1259 /* | |
1260 * Restore clipboard text if no one own the X selection. | |
1261 */ | |
1262 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1263 restore_clipboard(void) |
4209 | 1264 { |
1265 if (clip_star_save != NULL) | |
1266 { | |
1267 if (!clip_gen_owner_exists(&clip_star)) | |
1268 put_register('*', clip_star_save); | |
1269 else | |
1270 free_register(clip_star_save); | |
1271 clip_star_save = NULL; | |
1272 } | |
1273 if (clip_plus_save != NULL) | |
1274 { | |
1275 if (!clip_gen_owner_exists(&clip_plus)) | |
1276 put_register('+', clip_plus_save); | |
1277 else | |
1278 free_register(clip_plus_save); | |
1279 clip_plus_save = NULL; | |
1280 } | |
1281 } | |
4230 | 1282 # endif |
2586 | 1283 #endif |
1284 | |
7 | 1285 /* |
1286 * If the machine has job control, use it to suspend the program, | |
1287 * otherwise fake it by starting a new shell. | |
1288 */ | |
1289 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1290 mch_suspend(void) |
7 | 1291 { |
1292 /* BeOS does have SIGTSTP, but it doesn't work. */ | |
1293 #if defined(SIGTSTP) && !defined(__BEOS__) | |
1294 out_flush(); /* needed to make cursor visible on some systems */ | |
1295 settmode(TMODE_COOK); | |
1296 out_flush(); /* needed to disable mouse on some systems */ | |
1297 | |
1298 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) | |
2586 | 1299 loose_clipboard(); |
7 | 1300 # endif |
1301 | |
1832 | 1302 # if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1303 sigcont_received = FALSE; |
1304 # endif | |
1305 kill(0, SIGTSTP); /* send ourselves a STOP signal */ | |
1832 | 1306 # if defined(_REENTRANT) && defined(SIGCONT) |
1307 /* | |
1308 * Wait for the SIGCONT signal to be handled. It generally happens | |
1309 * immediately, but somehow not all the time. Do not call pause() | |
1310 * because there would be race condition which would hang Vim if | |
1311 * signal happened in between the test of sigcont_received and the | |
1312 * call to pause(). If signal is not yet received, call sleep(0) | |
1313 * to just yield CPU. Signal should then be received. If somehow | |
1314 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting | |
1315 * further if signal is not received after 1+2+3+4 ms (not expected | |
1316 * to happen). | |
1317 */ | |
1318 { | |
1932 | 1319 long wait_time; |
1320 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) | |
1832 | 1321 /* Loop is not entered most of the time */ |
1932 | 1322 mch_delay(wait_time, FALSE); |
1832 | 1323 } |
7 | 1324 # endif |
1325 | |
1326 # ifdef FEAT_TITLE | |
1327 /* | |
1328 * Set oldtitle to NULL, so the current title is obtained again. | |
1329 */ | |
1330 vim_free(oldtitle); | |
1331 oldtitle = NULL; | |
1332 # endif | |
1333 settmode(TMODE_RAW); | |
1334 need_check_timestamps = TRUE; | |
1335 did_check_timestamps = FALSE; | |
1336 #else | |
1337 suspend_shell(); | |
1338 #endif | |
1339 } | |
1340 | |
1341 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1342 mch_init(void) |
7 | 1343 { |
1344 Columns = 80; | |
1345 Rows = 24; | |
1346 | |
1347 out_flush(); | |
1348 set_signals(); | |
167 | 1349 |
765 | 1350 #ifdef MACOS_CONVERT |
167 | 1351 mac_conv_init(); |
1352 #endif | |
4168 | 1353 #ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
1354 win_clip_init(); | |
1355 #endif | |
7 | 1356 } |
1357 | |
1358 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1359 set_signals(void) |
7 | 1360 { |
1361 #if defined(SIGWINCH) | |
1362 /* | |
1363 * WINDOW CHANGE signal is handled with sig_winch(). | |
1364 */ | |
1365 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); | |
1366 #endif | |
1367 | |
1368 /* | |
1369 * We want the STOP signal to work, to make mch_suspend() work. | |
1370 * For "rvim" the STOP signal is ignored. | |
1371 */ | |
1372 #ifdef SIGTSTP | |
1373 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); | |
1374 #endif | |
1832 | 1375 #if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1376 signal(SIGCONT, sigcont_handler); |
1377 #endif | |
1378 | |
1379 /* | |
1380 * We want to ignore breaking of PIPEs. | |
1381 */ | |
1382 #ifdef SIGPIPE | |
1383 signal(SIGPIPE, SIG_IGN); | |
1384 #endif | |
1385 | |
1386 #ifdef SIGINT | |
167 | 1387 catch_int_signal(); |
7 | 1388 #endif |
1389 | |
1390 /* | |
1391 * Ignore alarm signals (Perl's alarm() generates it). | |
1392 */ | |
1393 #ifdef SIGALRM | |
1394 signal(SIGALRM, SIG_IGN); | |
1395 #endif | |
1396 | |
1397 /* | |
1398 * Catch SIGPWR (power failure?) to preserve the swap files, so that no | |
1399 * work will be lost. | |
1400 */ | |
1401 #ifdef SIGPWR | |
1402 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); | |
1403 #endif | |
1404 | |
1405 /* | |
1406 * Arrange for other signals to gracefully shutdown Vim. | |
1407 */ | |
1408 catch_signals(deathtrap, SIG_ERR); | |
1409 | |
1410 #if defined(FEAT_GUI) && defined(SIGHUP) | |
1411 /* | |
1412 * When the GUI is running, ignore the hangup signal. | |
1413 */ | |
1414 if (gui.in_use) | |
1415 signal(SIGHUP, SIG_IGN); | |
1416 #endif | |
1417 } | |
1418 | |
167 | 1419 #if defined(SIGINT) || defined(PROTO) |
1420 /* | |
1421 * Catch CTRL-C (only works while in Cooked mode). | |
1422 */ | |
1423 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1424 catch_int_signal(void) |
167 | 1425 { |
1426 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); | |
1427 } | |
1428 #endif | |
1429 | |
7 | 1430 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1431 reset_signals(void) |
7 | 1432 { |
1433 catch_signals(SIG_DFL, SIG_DFL); | |
1832 | 1434 #if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1435 /* SIGCONT isn't in the list, because its default action is ignore */ |
1436 signal(SIGCONT, SIG_DFL); | |
1437 #endif | |
1438 } | |
1439 | |
1440 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1441 catch_signals( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1442 RETSIGTYPE (*func_deadly)(), |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1443 RETSIGTYPE (*func_other)()) |
7 | 1444 { |
1445 int i; | |
1446 | |
1447 for (i = 0; signal_info[i].sig != -1; i++) | |
1448 if (signal_info[i].deadly) | |
1449 { | |
1450 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) | |
1451 struct sigaction sa; | |
1452 | |
1453 /* Setup to use the alternate stack for the signal function. */ | |
1454 sa.sa_handler = func_deadly; | |
1455 sigemptyset(&sa.sa_mask); | |
1456 # if defined(__linux__) && defined(_REENTRANT) | |
1457 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in | |
1458 * thread handling in combination with using the alternate stack: | |
1459 * pthread library functions try to use the stack pointer to | |
1460 * identify the current thread, causing a SEGV signal, which | |
1461 * recursively calls deathtrap() and hangs. */ | |
1462 sa.sa_flags = 0; | |
1463 # else | |
1464 sa.sa_flags = SA_ONSTACK; | |
1465 # endif | |
1466 sigaction(signal_info[i].sig, &sa, NULL); | |
1467 #else | |
1468 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC) | |
1469 struct sigvec sv; | |
1470 | |
1471 /* Setup to use the alternate stack for the signal function. */ | |
1472 sv.sv_handler = func_deadly; | |
1473 sv.sv_mask = 0; | |
1474 sv.sv_flags = SV_ONSTACK; | |
1475 sigvec(signal_info[i].sig, &sv, NULL); | |
1476 # else | |
1477 signal(signal_info[i].sig, func_deadly); | |
1478 # endif | |
1479 #endif | |
1480 } | |
1481 else if (func_other != SIG_ERR) | |
1482 signal(signal_info[i].sig, func_other); | |
1483 } | |
1484 | |
1485 /* | |
37 | 1486 * Handling of SIGHUP, SIGQUIT and SIGTERM: |
1146 | 1487 * "when" == a signal: when busy, postpone and return FALSE, otherwise |
1488 * return TRUE | |
1489 * "when" == SIGNAL_BLOCK: Going to be busy, block signals | |
1490 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
1491 * signal |
36 | 1492 * Returns TRUE when Vim should exit. |
1493 */ | |
1494 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1495 vim_handle_signal(int sig) |
36 | 1496 { |
37 | 1497 static int got_signal = 0; |
1498 static int blocked = TRUE; | |
1499 | |
1500 switch (sig) | |
36 | 1501 { |
37 | 1502 case SIGNAL_BLOCK: blocked = TRUE; |
1503 break; | |
1504 | |
1505 case SIGNAL_UNBLOCK: blocked = FALSE; | |
1506 if (got_signal != 0) | |
1507 { | |
1508 kill(getpid(), got_signal); | |
1509 got_signal = 0; | |
1510 } | |
1511 break; | |
1512 | |
1513 default: if (!blocked) | |
36 | 1514 return TRUE; /* exit! */ |
37 | 1515 got_signal = sig; |
1516 #ifdef SIGPWR | |
1517 if (sig != SIGPWR) | |
1518 #endif | |
1519 got_int = TRUE; /* break any loops */ | |
36 | 1520 break; |
1521 } | |
1522 return FALSE; | |
1523 } | |
1524 | |
1525 /* | |
7 | 1526 * Check_win checks whether we have an interactive stdout. |
1527 */ | |
1528 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1529 mch_check_win(int argc UNUSED, char **argv UNUSED) |
7 | 1530 { |
1531 if (isatty(1)) | |
1532 return OK; | |
1533 return FAIL; | |
1534 } | |
1535 | |
1536 /* | |
1537 * Return TRUE if the input comes from a terminal, FALSE otherwise. | |
1538 */ | |
1539 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1540 mch_input_isatty(void) |
7 | 1541 { |
1542 if (isatty(read_cmd_fd)) | |
1543 return TRUE; | |
1544 return FALSE; | |
1545 } | |
1546 | |
1547 #ifdef FEAT_X11 | |
1548 | |
1549 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \ | |
1550 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)) | |
1551 | |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
1552 static void xopen_message(struct timeval *start_tv); |
7 | 1553 |
1554 /* | |
1555 * Give a message about the elapsed time for opening the X window. | |
1556 */ | |
1557 static void | |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
1558 xopen_message(struct timeval *start_tv) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
1559 { |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
1560 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed(start_tv)); |
7 | 1561 } |
1562 # endif | |
1563 #endif | |
1564 | |
1565 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD)) | |
1566 /* | |
1567 * A few functions shared by X11 title and clipboard code. | |
1568 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1569 static int x_error_handler(Display *dpy, XErrorEvent *error_event); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1570 static int x_error_check(Display *dpy, XErrorEvent *error_event); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1571 static int x_connect_to_server(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1572 static int test_x11_window(Display *dpy); |
7 | 1573 |
1574 static int got_x_error = FALSE; | |
1575 | |
1576 /* | |
1577 * X Error handler, otherwise X just exits! (very rude) -- webb | |
1578 */ | |
1579 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1580 x_error_handler(Display *dpy, XErrorEvent *error_event) |
7 | 1581 { |
42 | 1582 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE); |
7 | 1583 STRCAT(IObuff, _("\nVim: Got X error\n")); |
1584 | |
1585 /* We cannot print a message and continue, because no X calls are allowed | |
1586 * here (causes my system to hang). Silently continuing might be an | |
1587 * alternative... */ | |
1588 preserve_exit(); /* preserve files and exit */ | |
1589 | |
1590 return 0; /* NOTREACHED */ | |
1591 } | |
1592 | |
1593 /* | |
1594 * Another X Error handler, just used to check for errors. | |
1595 */ | |
1596 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1597 x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED) |
7 | 1598 { |
1599 got_x_error = TRUE; | |
1600 return 0; | |
1601 } | |
1602 | |
1603 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) | |
1604 # if defined(HAVE_SETJMP_H) | |
1605 /* | |
1606 * An X IO Error handler, used to catch error while opening the display. | |
1607 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1608 static int x_IOerror_check(Display *dpy); |
7 | 1609 |
1610 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1611 x_IOerror_check(Display *dpy UNUSED) |
7 | 1612 { |
1613 /* This function should not return, it causes exit(). Longjump instead. */ | |
1614 LONGJMP(lc_jump_env, 1); | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
1615 # if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__) |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1616 return 0; /* avoid the compiler complains about missing return value */ |
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1617 # endif |
7 | 1618 } |
1619 # endif | |
1620 | |
1621 /* | |
1622 * An X IO Error handler, used to catch terminal errors. | |
1623 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1624 static int x_IOerror_handler(Display *dpy); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1625 static void may_restore_clipboard(void); |
6383 | 1626 static int xterm_dpy_was_reset = FALSE; |
7 | 1627 |
1628 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1629 x_IOerror_handler(Display *dpy UNUSED) |
7 | 1630 { |
1631 xterm_dpy = NULL; | |
6383 | 1632 xterm_dpy_was_reset = TRUE; |
7 | 1633 x11_window = 0; |
1634 x11_display = NULL; | |
1635 xterm_Shell = (Widget)0; | |
1636 | |
1637 /* This function should not return, it causes exit(). Longjump instead. */ | |
1638 LONGJMP(x_jump_env, 1); | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
1639 # if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__) |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1640 return 0; /* avoid the compiler complains about missing return value */ |
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1641 # endif |
7 | 1642 } |
6383 | 1643 |
1644 /* | |
1645 * If the X11 connection was lost try to restore it. | |
1646 * Helps when the X11 server was stopped and restarted while Vim was inactive | |
6448 | 1647 * (e.g. through tmux). |
6383 | 1648 */ |
1649 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1650 may_restore_clipboard(void) |
6383 | 1651 { |
1652 if (xterm_dpy_was_reset) | |
1653 { | |
1654 xterm_dpy_was_reset = FALSE; | |
6458 | 1655 |
1656 # ifndef LESSTIF_VERSION | |
1657 /* This has been reported to avoid Vim getting stuck. */ | |
1658 if (app_context != (XtAppContext)NULL) | |
1659 { | |
1660 XtDestroyApplicationContext(app_context); | |
1661 app_context = (XtAppContext)NULL; | |
1662 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
1663 } | |
1664 # endif | |
1665 | |
6383 | 1666 setup_term_clip(); |
1667 get_x11_title(FALSE); | |
1668 } | |
1669 } | |
7 | 1670 #endif |
1671 | |
1672 /* | |
1673 * Return TRUE when connection to the X server is desired. | |
1674 */ | |
1675 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1676 x_connect_to_server(void) |
7 | 1677 { |
1678 #if defined(FEAT_CLIENTSERVER) | |
1679 if (x_force_connect) | |
1680 return TRUE; | |
1681 #endif | |
1682 if (x_no_connect) | |
1683 return FALSE; | |
1684 | |
1685 /* Check for a match with "exclude:" from 'clipboard'. */ | |
1686 if (clip_exclude_prog != NULL) | |
1687 { | |
6375 | 1688 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0)) |
7 | 1689 return FALSE; |
1690 } | |
1691 return TRUE; | |
1692 } | |
1693 | |
1694 /* | |
1695 * Test if "dpy" and x11_window are valid by getting the window title. | |
1696 * I don't actually want it yet, so there may be a simpler call to use, but | |
1697 * this will cause the error handler x_error_check() to be called if anything | |
1698 * is wrong, such as the window pointer being invalid (as can happen when the | |
1699 * user changes his DISPLAY, but not his WINDOWID) -- webb | |
1700 */ | |
1701 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1702 test_x11_window(Display *dpy) |
7 | 1703 { |
1704 int (*old_handler)(); | |
1705 XTextProperty text_prop; | |
1706 | |
1707 old_handler = XSetErrorHandler(x_error_check); | |
1708 got_x_error = FALSE; | |
1709 if (XGetWMName(dpy, x11_window, &text_prop)) | |
1710 XFree((void *)text_prop.value); | |
1711 XSync(dpy, False); | |
1712 (void)XSetErrorHandler(old_handler); | |
1713 | |
1714 if (p_verbose > 0 && got_x_error) | |
292 | 1715 verb_msg((char_u *)_("Testing the X display failed")); |
7 | 1716 |
1717 return (got_x_error ? FAIL : OK); | |
1718 } | |
1719 #endif | |
1720 | |
1721 #ifdef FEAT_TITLE | |
1722 | |
1723 #ifdef FEAT_X11 | |
1724 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1725 static int get_x11_thing(int get_title, int test_only); |
7 | 1726 |
1727 /* | |
1728 * try to get x11 window and display | |
1729 * | |
1730 * return FAIL for failure, OK otherwise | |
1731 */ | |
1732 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1733 get_x11_windis(void) |
7 | 1734 { |
1735 char *winid; | |
1736 static int result = -1; | |
1737 #define XD_NONE 0 /* x11_display not set here */ | |
1738 #define XD_HERE 1 /* x11_display opened here */ | |
1739 #define XD_GUI 2 /* x11_display used from gui.dpy */ | |
1740 #define XD_XTERM 3 /* x11_display used from xterm_dpy */ | |
1741 static int x11_display_from = XD_NONE; | |
1742 static int did_set_error_handler = FALSE; | |
1743 | |
1744 if (!did_set_error_handler) | |
1745 { | |
1746 /* X just exits if it finds an error otherwise! */ | |
1747 (void)XSetErrorHandler(x_error_handler); | |
1748 did_set_error_handler = TRUE; | |
1749 } | |
1750 | |
574 | 1751 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
7 | 1752 if (gui.in_use) |
1753 { | |
1754 /* | |
1755 * If the X11 display was opened here before, for the window where Vim | |
1756 * was started, close that one now to avoid a memory leak. | |
1757 */ | |
1758 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1759 { | |
1760 XCloseDisplay(x11_display); | |
1761 x11_display_from = XD_NONE; | |
1762 } | |
1763 if (gui_get_x11_windis(&x11_window, &x11_display) == OK) | |
1764 { | |
1765 x11_display_from = XD_GUI; | |
1766 return OK; | |
1767 } | |
1768 x11_display = NULL; | |
1769 return FAIL; | |
1770 } | |
1771 else if (x11_display_from == XD_GUI) | |
1772 { | |
1773 /* GUI must have stopped somehow, clear x11_display */ | |
1774 x11_window = 0; | |
1775 x11_display = NULL; | |
1776 x11_display_from = XD_NONE; | |
1777 } | |
1778 #endif | |
1779 | |
1780 /* When started with the "-X" argument, don't try connecting. */ | |
1781 if (!x_connect_to_server()) | |
1782 return FAIL; | |
1783 | |
1784 /* | |
1785 * If WINDOWID not set, should try another method to find out | |
1786 * what the current window number is. The only code I know for | |
1787 * this is very complicated. | |
1788 * We assume that zero is invalid for WINDOWID. | |
1789 */ | |
1790 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL) | |
1791 x11_window = (Window)atol(winid); | |
1792 | |
1793 #ifdef FEAT_XCLIPBOARD | |
1794 if (xterm_dpy != NULL && x11_window != 0) | |
1795 { | |
1450 | 1796 /* We may have checked it already, but Gnome terminal can move us to |
1797 * another window, so we need to check every time. */ | |
1798 if (x11_display_from != XD_XTERM) | |
1799 { | |
1800 /* | |
1801 * If the X11 display was opened here before, for the window where | |
1802 * Vim was started, close that one now to avoid a memory leak. | |
1803 */ | |
1804 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1805 XCloseDisplay(x11_display); | |
1806 x11_display = xterm_dpy; | |
1807 x11_display_from = XD_XTERM; | |
1808 } | |
7 | 1809 if (test_x11_window(x11_display) == FAIL) |
1810 { | |
1811 /* probably bad $WINDOWID */ | |
1812 x11_window = 0; | |
1813 x11_display = NULL; | |
1814 x11_display_from = XD_NONE; | |
1815 return FAIL; | |
1816 } | |
1817 return OK; | |
1818 } | |
1819 #endif | |
1820 | |
1821 if (x11_window == 0 || x11_display == NULL) | |
1822 result = -1; | |
1823 | |
1824 if (result != -1) /* Have already been here and set this */ | |
1825 return result; /* Don't do all these X calls again */ | |
1826 | |
1827 if (x11_window != 0 && x11_display == NULL) | |
1828 { | |
1829 #ifdef SET_SIG_ALARM | |
1830 RETSIGTYPE (*sig_save)(); | |
1831 #endif | |
1832 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
1833 struct timeval start_tv; | |
1834 | |
1835 if (p_verbose > 0) | |
1836 gettimeofday(&start_tv, NULL); | |
1837 #endif | |
1838 | |
1839 #ifdef SET_SIG_ALARM | |
1840 /* | |
1841 * Opening the Display may hang if the DISPLAY setting is wrong, or | |
1842 * the network connection is bad. Set an alarm timer to get out. | |
1843 */ | |
1844 sig_alarm_called = FALSE; | |
1845 sig_save = (RETSIGTYPE (*)())signal(SIGALRM, | |
1846 (RETSIGTYPE (*)())sig_alarm); | |
1847 alarm(2); | |
1848 #endif | |
1849 x11_display = XOpenDisplay(NULL); | |
1850 | |
1851 #ifdef SET_SIG_ALARM | |
1852 alarm(0); | |
1853 signal(SIGALRM, (RETSIGTYPE (*)())sig_save); | |
1854 if (p_verbose > 0 && sig_alarm_called) | |
292 | 1855 verb_msg((char_u *)_("Opening the X display timed out")); |
7 | 1856 #endif |
1857 if (x11_display != NULL) | |
1858 { | |
1859 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
1860 if (p_verbose > 0) | |
292 | 1861 { |
1862 verbose_enter(); | |
7 | 1863 xopen_message(&start_tv); |
292 | 1864 verbose_leave(); |
1865 } | |
7 | 1866 # endif |
1867 if (test_x11_window(x11_display) == FAIL) | |
1868 { | |
1869 /* Maybe window id is bad */ | |
1870 x11_window = 0; | |
1871 XCloseDisplay(x11_display); | |
1872 x11_display = NULL; | |
1873 } | |
1874 else | |
1875 x11_display_from = XD_HERE; | |
1876 } | |
1877 } | |
1878 if (x11_window == 0 || x11_display == NULL) | |
1879 return (result = FAIL); | |
2609 | 1880 |
1881 # ifdef FEAT_EVAL | |
1882 set_vim_var_nr(VV_WINDOWID, (long)x11_window); | |
1883 # endif | |
1884 | |
7 | 1885 return (result = OK); |
1886 } | |
1887 | |
1888 /* | |
1889 * Determine original x11 Window Title | |
1890 */ | |
1891 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1892 get_x11_title(int test_only) |
7 | 1893 { |
32 | 1894 return get_x11_thing(TRUE, test_only); |
7 | 1895 } |
1896 | |
1897 /* | |
1898 * Determine original x11 Window icon | |
1899 */ | |
1900 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1901 get_x11_icon(int test_only) |
7 | 1902 { |
1903 int retval = FALSE; | |
1904 | |
1905 retval = get_x11_thing(FALSE, test_only); | |
1906 | |
1907 /* could not get old icon, use terminal name */ | |
1908 if (oldicon == NULL && !test_only) | |
1909 { | |
1910 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 1911 oldicon = vim_strsave(T_NAME + 8); |
7 | 1912 else |
1940 | 1913 oldicon = vim_strsave(T_NAME); |
7 | 1914 } |
1915 | |
1916 return retval; | |
1917 } | |
1918 | |
1919 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1920 get_x11_thing( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1921 int get_title, /* get title string */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1922 int test_only) |
7 | 1923 { |
1924 XTextProperty text_prop; | |
1925 int retval = FALSE; | |
1926 Status status; | |
1927 | |
1928 if (get_x11_windis() == OK) | |
1929 { | |
1930 /* Get window/icon name if any */ | |
1931 if (get_title) | |
1932 status = XGetWMName(x11_display, x11_window, &text_prop); | |
1933 else | |
1934 status = XGetWMIconName(x11_display, x11_window, &text_prop); | |
1935 | |
1936 /* | |
1937 * If terminal is xterm, then x11_window may be a child window of the | |
1938 * outer xterm window that actually contains the window/icon name, so | |
1939 * keep traversing up the tree until a window with a title/icon is | |
1940 * found. | |
1941 */ | |
1942 /* Previously this was only done for xterm and alikes. I don't see a | |
1943 * reason why it would fail for other terminal emulators. | |
1944 * if (term_is_xterm) */ | |
1945 { | |
1946 Window root; | |
1947 Window parent; | |
1948 Window win = x11_window; | |
1949 Window *children; | |
1950 unsigned int num_children; | |
1951 | |
1952 while (!status || text_prop.value == NULL) | |
1953 { | |
1954 if (!XQueryTree(x11_display, win, &root, &parent, &children, | |
1955 &num_children)) | |
1956 break; | |
1957 if (children) | |
1958 XFree((void *)children); | |
1959 if (parent == root || parent == 0) | |
1960 break; | |
1961 | |
1962 win = parent; | |
1963 if (get_title) | |
1964 status = XGetWMName(x11_display, win, &text_prop); | |
1965 else | |
1966 status = XGetWMIconName(x11_display, win, &text_prop); | |
1967 } | |
1968 } | |
1969 if (status && text_prop.value != NULL) | |
1970 { | |
1971 retval = TRUE; | |
1972 if (!test_only) | |
1973 { | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1974 #if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE) |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1975 if (text_prop.encoding == XA_STRING |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1976 # ifdef FEAT_MBYTE |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1977 && !has_mbyte |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1978 # endif |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1979 ) |
7 | 1980 { |
1981 #endif | |
1982 if (get_title) | |
1983 oldtitle = vim_strsave((char_u *)text_prop.value); | |
1984 else | |
1985 oldicon = vim_strsave((char_u *)text_prop.value); | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1986 #if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE) |
7 | 1987 } |
1988 else | |
1989 { | |
1990 char **cl; | |
1991 Status transform_status; | |
1992 int n = 0; | |
1993 | |
1994 transform_status = XmbTextPropertyToTextList(x11_display, | |
1995 &text_prop, | |
1996 &cl, &n); | |
1997 if (transform_status >= Success && n > 0 && cl[0]) | |
1998 { | |
1999 if (get_title) | |
2000 oldtitle = vim_strsave((char_u *) cl[0]); | |
2001 else | |
2002 oldicon = vim_strsave((char_u *) cl[0]); | |
2003 XFreeStringList(cl); | |
2004 } | |
2005 else | |
2006 { | |
2007 if (get_title) | |
2008 oldtitle = vim_strsave((char_u *)text_prop.value); | |
2009 else | |
2010 oldicon = vim_strsave((char_u *)text_prop.value); | |
2011 } | |
2012 } | |
2013 #endif | |
2014 } | |
2015 XFree((void *)text_prop.value); | |
2016 } | |
2017 } | |
2018 return retval; | |
2019 } | |
2020 | |
6282 | 2021 /* Xutf8 functions are not avaialble on older systems. Note that on some |
2022 * systems X_HAVE_UTF8_STRING may be defined in a header file but | |
2023 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for | |
2024 * that and defines HAVE_XUTF8SETWMPROPERTIES. */ | |
7 | 2025 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE) |
6282 | 2026 # if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES |
7 | 2027 # define USE_UTF8_STRING |
2028 # endif | |
2029 #endif | |
2030 | |
2031 /* | |
2032 * Set x11 Window Title | |
2033 * | |
2034 * get_x11_windis() must be called before this and have returned OK | |
2035 */ | |
2036 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2037 set_x11_title(char_u *title) |
7 | 2038 { |
2039 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING | |
2040 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't | |
2041 * supported everywhere and STRING doesn't work for multi-byte titles. | |
2042 */ | |
2043 #ifdef USE_UTF8_STRING | |
2044 if (enc_utf8) | |
2045 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title, | |
2046 NULL, NULL, 0, NULL, NULL, NULL); | |
2047 else | |
2048 #endif | |
2049 { | |
2050 #if XtSpecificationRelease >= 4 | |
2051 # ifdef FEAT_XFONTSET | |
2052 XmbSetWMProperties(x11_display, x11_window, (const char *)title, | |
2053 NULL, NULL, 0, NULL, NULL, NULL); | |
2054 # else | |
2055 XTextProperty text_prop; | |
129 | 2056 char *c_title = (char *)title; |
7 | 2057 |
2058 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */ | |
129 | 2059 (void)XStringListToTextProperty(&c_title, 1, &text_prop); |
7 | 2060 XSetWMProperties(x11_display, x11_window, &text_prop, |
2061 NULL, NULL, 0, NULL, NULL, NULL); | |
2062 # endif | |
2063 #else | |
2064 XStoreName(x11_display, x11_window, (char *)title); | |
2065 #endif | |
2066 } | |
2067 XFlush(x11_display); | |
2068 } | |
2069 | |
2070 /* | |
2071 * Set x11 Window icon | |
2072 * | |
2073 * get_x11_windis() must be called before this and have returned OK | |
2074 */ | |
2075 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2076 set_x11_icon(char_u *icon) |
7 | 2077 { |
2078 /* See above for comments about using X*SetWMProperties(). */ | |
2079 #ifdef USE_UTF8_STRING | |
2080 if (enc_utf8) | |
2081 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2082 NULL, 0, NULL, NULL, NULL); | |
2083 else | |
2084 #endif | |
2085 { | |
2086 #if XtSpecificationRelease >= 4 | |
2087 # ifdef FEAT_XFONTSET | |
2088 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2089 NULL, 0, NULL, NULL, NULL); | |
2090 # else | |
2091 XTextProperty text_prop; | |
129 | 2092 char *c_icon = (char *)icon; |
2093 | |
2094 (void)XStringListToTextProperty(&c_icon, 1, &text_prop); | |
7 | 2095 XSetWMProperties(x11_display, x11_window, NULL, &text_prop, |
2096 NULL, 0, NULL, NULL, NULL); | |
2097 # endif | |
2098 #else | |
2099 XSetIconName(x11_display, x11_window, (char *)icon); | |
2100 #endif | |
2101 } | |
2102 XFlush(x11_display); | |
2103 } | |
2104 | |
2105 #else /* FEAT_X11 */ | |
2106 | |
2107 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2108 get_x11_title(int test_only UNUSED) |
7 | 2109 { |
2110 return FALSE; | |
2111 } | |
2112 | |
2113 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2114 get_x11_icon(int test_only) |
7 | 2115 { |
2116 if (!test_only) | |
2117 { | |
2118 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 2119 oldicon = vim_strsave(T_NAME + 8); |
7 | 2120 else |
1940 | 2121 oldicon = vim_strsave(T_NAME); |
7 | 2122 } |
2123 return FALSE; | |
2124 } | |
2125 | |
2126 #endif /* FEAT_X11 */ | |
2127 | |
2128 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2129 mch_can_restore_title(void) |
7 | 2130 { |
2131 return get_x11_title(TRUE); | |
2132 } | |
2133 | |
2134 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2135 mch_can_restore_icon(void) |
7 | 2136 { |
2137 return get_x11_icon(TRUE); | |
2138 } | |
2139 | |
2140 /* | |
2141 * Set the window title and icon. | |
2142 */ | |
2143 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2144 mch_settitle(char_u *title, char_u *icon) |
7 | 2145 { |
2146 int type = 0; | |
2147 static int recursive = 0; | |
2148 | |
2149 if (T_NAME == NULL) /* no terminal name (yet) */ | |
2150 return; | |
2151 if (title == NULL && icon == NULL) /* nothing to do */ | |
2152 return; | |
2153 | |
2154 /* When one of the X11 functions causes a deadly signal, we get here again | |
2155 * recursively. Avoid hanging then (something is probably locked). */ | |
2156 if (recursive) | |
2157 return; | |
2158 ++recursive; | |
2159 | |
2160 /* | |
2161 * if the window ID and the display is known, we may use X11 calls | |
2162 */ | |
2163 #ifdef FEAT_X11 | |
2164 if (get_x11_windis() == OK) | |
2165 type = 1; | |
2166 #else | |
2167 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) | |
2168 if (gui.in_use) | |
2169 type = 1; | |
2170 # endif | |
2171 #endif | |
2172 | |
2173 /* | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2174 * Note: if "t_ts" is set, title is set with escape sequence rather |
7 | 2175 * than x11 calls, because the x11 calls don't always work |
2176 */ | |
2177 if ((type || *T_TS != NUL) && title != NULL) | |
2178 { | |
2179 if (oldtitle == NULL | |
2180 #ifdef FEAT_GUI | |
2181 && !gui.in_use | |
2182 #endif | |
2183 ) /* first call but not in GUI, save title */ | |
2184 (void)get_x11_title(FALSE); | |
2185 | |
2186 if (*T_TS != NUL) /* it's OK if t_fs is empty */ | |
2187 term_settitle(title); | |
2188 #ifdef FEAT_X11 | |
2189 else | |
2190 # ifdef FEAT_GUI_GTK | |
2191 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2192 # endif | |
2193 set_x11_title(title); /* x11 */ | |
2194 #endif | |
64 | 2195 #if defined(FEAT_GUI_GTK) \ |
7 | 2196 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) |
2197 else | |
2198 gui_mch_settitle(title, icon); | |
2199 #endif | |
2200 did_set_title = TRUE; | |
2201 } | |
2202 | |
2203 if ((type || *T_CIS != NUL) && icon != NULL) | |
2204 { | |
2205 if (oldicon == NULL | |
2206 #ifdef FEAT_GUI | |
2207 && !gui.in_use | |
2208 #endif | |
2209 ) /* first call, save icon */ | |
2210 get_x11_icon(FALSE); | |
2211 | |
2212 if (*T_CIS != NUL) | |
2213 { | |
2214 out_str(T_CIS); /* set icon start */ | |
2215 out_str_nf(icon); | |
2216 out_str(T_CIE); /* set icon end */ | |
2217 out_flush(); | |
2218 } | |
2219 #ifdef FEAT_X11 | |
2220 else | |
2221 # ifdef FEAT_GUI_GTK | |
2222 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2223 # endif | |
2224 set_x11_icon(icon); /* x11 */ | |
2225 #endif | |
2226 did_set_icon = TRUE; | |
2227 } | |
2228 --recursive; | |
2229 } | |
2230 | |
2231 /* | |
2232 * Restore the window/icon title. | |
2233 * "which" is one of: | |
2234 * 1 only restore title | |
2235 * 2 only restore icon | |
2236 * 3 restore title and icon | |
2237 */ | |
2238 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2239 mch_restore_title(int which) |
7 | 2240 { |
2241 /* only restore the title or icon when it has been set */ | |
2242 mch_settitle(((which & 1) && did_set_title) ? | |
2243 (oldtitle ? oldtitle : p_titleold) : NULL, | |
2244 ((which & 2) && did_set_icon) ? oldicon : NULL); | |
2245 } | |
2246 | |
2247 #endif /* FEAT_TITLE */ | |
2248 | |
2249 /* | |
2250 * Return TRUE if "name" looks like some xterm name. | |
158 | 2251 * Seiichi Sato mentioned that "mlterm" works like xterm. |
7 | 2252 */ |
2253 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2254 vim_is_xterm(char_u *name) |
7 | 2255 { |
2256 if (name == NULL) | |
2257 return FALSE; | |
2258 return (STRNICMP(name, "xterm", 5) == 0 | |
2259 || STRNICMP(name, "nxterm", 6) == 0 | |
2260 || STRNICMP(name, "kterm", 5) == 0 | |
158 | 2261 || STRNICMP(name, "mlterm", 6) == 0 |
7 | 2262 || STRNICMP(name, "rxvt", 4) == 0 |
2263 || STRCMP(name, "builtin_xterm") == 0); | |
2264 } | |
2265 | |
1620 | 2266 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO) |
2267 /* | |
2268 * Return TRUE if "name" appears to be that of a terminal | |
2269 * known to support the xterm-style mouse protocol. | |
2270 * Relies on term_is_xterm having been set to its correct value. | |
2271 */ | |
2272 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2273 use_xterm_like_mouse(char_u *name) |
1620 | 2274 { |
2275 return (name != NULL | |
2276 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0)); | |
2277 } | |
2278 #endif | |
2279 | |
7 | 2280 #if defined(FEAT_MOUSE_TTY) || defined(PROTO) |
2281 /* | |
2282 * Return non-zero when using an xterm mouse, according to 'ttymouse'. | |
2283 * Return 1 for "xterm". | |
2284 * Return 2 for "xterm2". | |
3145 | 2285 * Return 3 for "urxvt". |
3746 | 2286 * Return 4 for "sgr". |
7 | 2287 */ |
2288 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2289 use_xterm_mouse(void) |
7 | 2290 { |
3746 | 2291 if (ttym_flags == TTYM_SGR) |
2292 return 4; | |
3145 | 2293 if (ttym_flags == TTYM_URXVT) |
2294 return 3; | |
7 | 2295 if (ttym_flags == TTYM_XTERM2) |
2296 return 2; | |
2297 if (ttym_flags == TTYM_XTERM) | |
2298 return 1; | |
2299 return 0; | |
2300 } | |
2301 #endif | |
2302 | |
2303 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2304 vim_is_iris(char_u *name) |
7 | 2305 { |
2306 if (name == NULL) | |
2307 return FALSE; | |
2308 return (STRNICMP(name, "iris-ansi", 9) == 0 | |
2309 || STRCMP(name, "builtin_iris-ansi") == 0); | |
2310 } | |
2311 | |
2312 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2313 vim_is_vt300(char_u *name) |
7 | 2314 { |
2315 if (name == NULL) | |
2316 return FALSE; /* actually all ANSI comp. terminals should be here */ | |
22 | 2317 /* catch VT100 - VT5xx */ |
2318 return ((STRNICMP(name, "vt", 2) == 0 | |
2319 && vim_strchr((char_u *)"12345", name[2]) != NULL) | |
7 | 2320 || STRCMP(name, "builtin_vt320") == 0); |
2321 } | |
2322 | |
2323 /* | |
2324 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set. | |
2325 * This should include all windowed terminal emulators. | |
2326 */ | |
2327 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2328 vim_is_fastterm(char_u *name) |
7 | 2329 { |
2330 if (name == NULL) | |
2331 return FALSE; | |
2332 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name)) | |
2333 return TRUE; | |
2334 return ( STRNICMP(name, "hpterm", 6) == 0 | |
2335 || STRNICMP(name, "sun-cmd", 7) == 0 | |
2336 || STRNICMP(name, "screen", 6) == 0 | |
2337 || STRNICMP(name, "dtterm", 6) == 0); | |
2338 } | |
2339 | |
2340 /* | |
2341 * Insert user name in s[len]. | |
2342 * Return OK if a name found. | |
2343 */ | |
2344 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2345 mch_get_user_name(char_u *s, int len) |
7 | 2346 { |
2347 #ifdef VMS | |
509 | 2348 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1); |
7 | 2349 return OK; |
2350 #else | |
2351 return mch_get_uname(getuid(), s, len); | |
2352 #endif | |
2353 } | |
2354 | |
2355 /* | |
2356 * Insert user name for "uid" in s[len]. | |
2357 * Return OK if a name found. | |
2358 */ | |
2359 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2360 mch_get_uname(uid_t uid, char_u *s, int len) |
7 | 2361 { |
2362 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) | |
2363 struct passwd *pw; | |
2364 | |
2365 if ((pw = getpwuid(uid)) != NULL | |
2366 && pw->pw_name != NULL && *(pw->pw_name) != NUL) | |
2367 { | |
418 | 2368 vim_strncpy(s, (char_u *)pw->pw_name, len - 1); |
7 | 2369 return OK; |
2370 } | |
2371 #endif | |
2372 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */ | |
2373 return FAIL; /* a number is not a name */ | |
2374 } | |
2375 | |
2376 /* | |
2377 * Insert host name is s[len]. | |
2378 */ | |
2379 | |
2380 #ifdef HAVE_SYS_UTSNAME_H | |
2381 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2382 mch_get_host_name(char_u *s, int len) |
7 | 2383 { |
2384 struct utsname vutsname; | |
2385 | |
2386 if (uname(&vutsname) < 0) | |
2387 *s = NUL; | |
2388 else | |
418 | 2389 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1); |
7 | 2390 } |
2391 #else /* HAVE_SYS_UTSNAME_H */ | |
2392 | |
2393 # ifdef HAVE_SYS_SYSTEMINFO_H | |
2394 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len) | |
2395 # endif | |
2396 | |
2397 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2398 mch_get_host_name(char_u *s, int len) |
7 | 2399 { |
2400 # ifdef VAXC | |
2401 vaxc$gethostname((char *)s, len); | |
2402 # else | |
2403 gethostname((char *)s, len); | |
2404 # endif | |
2405 s[len - 1] = NUL; /* make sure it's terminated */ | |
2406 } | |
2407 #endif /* HAVE_SYS_UTSNAME_H */ | |
2408 | |
2409 /* | |
2410 * return process ID | |
2411 */ | |
2412 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2413 mch_get_pid(void) |
7 | 2414 { |
2415 return (long)getpid(); | |
2416 } | |
2417 | |
2418 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
2419 static char *strerror(int); |
7 | 2420 |
2421 static char * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2422 strerror(int err) |
7 | 2423 { |
2424 extern int sys_nerr; | |
2425 extern char *sys_errlist[]; | |
2426 static char er[20]; | |
2427 | |
2428 if (err > 0 && err < sys_nerr) | |
2429 return (sys_errlist[err]); | |
2430 sprintf(er, "Error %d", err); | |
2431 return er; | |
2432 } | |
2433 #endif | |
2434 | |
2435 /* | |
2436 * Get name of current directory into buffer 'buf' of length 'len' bytes. | |
2437 * Return OK for success, FAIL for failure. | |
2438 */ | |
2439 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2440 mch_dirname(char_u *buf, int len) |
7 | 2441 { |
2442 #if defined(USE_GETCWD) | |
2443 if (getcwd((char *)buf, len) == NULL) | |
2444 { | |
2445 STRCPY(buf, strerror(errno)); | |
2446 return FAIL; | |
2447 } | |
2448 return OK; | |
2449 #else | |
2450 return (getwd((char *)buf) != NULL ? OK : FAIL); | |
2451 #endif | |
2452 } | |
2453 | |
2454 /* | |
1045 | 2455 * Get absolute file name into "buf[len]". |
7 | 2456 * |
2457 * return FAIL for failure, OK for success | |
2458 */ | |
2459 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2460 mch_FullName( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2461 char_u *fname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2462 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2463 int len, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2464 int force) /* also expand when already absolute path */ |
7 | 2465 { |
2466 int l; | |
1082 | 2467 #ifdef HAVE_FCHDIR |
7 | 2468 int fd = -1; |
2469 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */ | |
1082 | 2470 #endif |
7 | 2471 char_u olddir[MAXPATHL]; |
2472 char_u *p; | |
2473 int retval = OK; | |
1615 | 2474 #ifdef __CYGWIN__ |
1620 | 2475 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but |
2476 it's not always defined */ | |
2477 #endif | |
7 | 2478 |
1082 | 2479 #ifdef VMS |
2480 fname = vms_fixfilename(fname); | |
2481 #endif | |
2482 | |
1102 | 2483 #ifdef __CYGWIN__ |
2484 /* | |
2485 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts". | |
2486 */ | |
1657 | 2487 # if CYGWIN_VERSION_DLL_MAJOR >= 1007 |
7420
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2488 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2489 * a forward slash. */ |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2490 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE, |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2491 fname, posix_fname, MAXPATHL); |
1657 | 2492 # else |
1615 | 2493 cygwin_conv_to_posix_path(fname, posix_fname); |
1657 | 2494 # endif |
1615 | 2495 fname = posix_fname; |
1102 | 2496 #endif |
2497 | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2498 /* Expand it if forced or not an absolute path. |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2499 * Do not do it for "/file", the result is always "/". */ |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2500 if ((force || !mch_isFullName(fname)) |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2501 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname)) |
7 | 2502 { |
2503 /* | |
2504 * If the file name has a path, change to that directory for a moment, | |
2505 * and then do the getwd() (and get back to where we were). | |
2506 * This will get the correct path name with "../" things. | |
2507 */ | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2508 if (p != NULL) |
7 | 2509 { |
1082 | 2510 #ifdef HAVE_FCHDIR |
7 | 2511 /* |
2512 * Use fchdir() if possible, it's said to be faster and more | |
2513 * reliable. But on SunOS 4 it might not work. Check this by | |
2514 * doing a fchdir() right now. | |
2515 */ | |
2516 if (!dont_fchdir) | |
2517 { | |
2518 fd = open(".", O_RDONLY | O_EXTRA, 0); | |
2519 if (fd >= 0 && fchdir(fd) < 0) | |
2520 { | |
2521 close(fd); | |
2522 fd = -1; | |
2523 dont_fchdir = TRUE; /* don't try again */ | |
2524 } | |
2525 } | |
1082 | 2526 #endif |
7 | 2527 |
2528 /* Only change directory when we are sure we can return to where | |
2529 * we are now. After doing "su" chdir(".") might not work. */ | |
2530 if ( | |
1082 | 2531 #ifdef HAVE_FCHDIR |
7 | 2532 fd < 0 && |
1082 | 2533 #endif |
7 | 2534 (mch_dirname(olddir, MAXPATHL) == FAIL |
2535 || mch_chdir((char *)olddir) != 0)) | |
2536 { | |
2537 p = NULL; /* can't get current dir: don't chdir */ | |
2538 retval = FAIL; | |
2539 } | |
2540 else | |
2541 { | |
2542 /* The directory is copied into buf[], to be able to remove | |
2543 * the file name without changing it (could be a string in | |
2544 * read-only memory) */ | |
2545 if (p - fname >= len) | |
2546 retval = FAIL; | |
2547 else | |
2548 { | |
418 | 2549 vim_strncpy(buf, fname, p - fname); |
7 | 2550 if (mch_chdir((char *)buf)) |
2551 retval = FAIL; | |
2552 else | |
2553 fname = p + 1; | |
2554 *buf = NUL; | |
2555 } | |
2556 } | |
2557 } | |
2558 if (mch_dirname(buf, len) == FAIL) | |
2559 { | |
2560 retval = FAIL; | |
2561 *buf = NUL; | |
2562 } | |
2563 if (p != NULL) | |
2564 { | |
1082 | 2565 #ifdef HAVE_FCHDIR |
7 | 2566 if (fd >= 0) |
2567 { | |
1935 | 2568 if (p_verbose >= 5) |
2569 { | |
2570 verbose_enter(); | |
2571 MSG("fchdir() to previous dir"); | |
2572 verbose_leave(); | |
2573 } | |
7 | 2574 l = fchdir(fd); |
2575 close(fd); | |
2576 } | |
2577 else | |
1082 | 2578 #endif |
7 | 2579 l = mch_chdir((char *)olddir); |
2580 if (l != 0) | |
2581 EMSG(_(e_prev_dir)); | |
2582 } | |
2583 | |
2584 l = STRLEN(buf); | |
3867 | 2585 if (l >= len - 1) |
2586 retval = FAIL; /* no space for trailing "/" */ | |
1082 | 2587 #ifndef VMS |
3867 | 2588 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL |
7 | 2589 && STRCMP(fname, ".") != 0) |
3867 | 2590 STRCAT(buf, "/"); |
1082 | 2591 #endif |
7 | 2592 } |
1045 | 2593 |
7 | 2594 /* Catch file names which are too long. */ |
1877 | 2595 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len) |
7 | 2596 return FAIL; |
2597 | |
2598 /* Do not append ".", "/dir/." is equal to "/dir". */ | |
2599 if (STRCMP(fname, ".") != 0) | |
2600 STRCAT(buf, fname); | |
2601 | |
2602 return OK; | |
2603 } | |
2604 | |
2605 /* | |
2606 * Return TRUE if "fname" does not depend on the current directory. | |
2607 */ | |
2608 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2609 mch_isFullName(char_u *fname) |
7 | 2610 { |
2611 #ifdef __EMX__ | |
2612 return _fnisabs(fname); | |
2613 #else | |
2614 # ifdef VMS | |
2615 return ( fname[0] == '/' || fname[0] == '.' || | |
2616 strchr((char *)fname,':') || strchr((char *)fname,'"') || | |
2617 (strchr((char *)fname,'[') && strchr((char *)fname,']'))|| | |
2618 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) ); | |
2619 # else | |
2620 return (*fname == '/' || *fname == '~'); | |
2621 # endif | |
2622 #endif | |
2623 } | |
2624 | |
585 | 2625 #if defined(USE_FNAME_CASE) || defined(PROTO) |
2626 /* | |
2627 * Set the case of the file name, if it already exists. This will cause the | |
2628 * file name to remain exactly the same. | |
1450 | 2629 * Only required for file systems where case is ignored and preserved. |
585 | 2630 */ |
2631 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2632 fname_case( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2633 char_u *name, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2634 int len UNUSED) /* buffer size, only used when name gets longer */ |
585 | 2635 { |
2636 struct stat st; | |
2637 char_u *slash, *tail; | |
2638 DIR *dirp; | |
2639 struct dirent *dp; | |
2640 | |
2641 if (lstat((char *)name, &st) >= 0) | |
2642 { | |
2643 /* Open the directory where the file is located. */ | |
2644 slash = vim_strrchr(name, '/'); | |
2645 if (slash == NULL) | |
2646 { | |
2647 dirp = opendir("."); | |
2648 tail = name; | |
2649 } | |
2650 else | |
2651 { | |
2652 *slash = NUL; | |
2653 dirp = opendir((char *)name); | |
2654 *slash = '/'; | |
2655 tail = slash + 1; | |
2656 } | |
2657 | |
2658 if (dirp != NULL) | |
2659 { | |
2660 while ((dp = readdir(dirp)) != NULL) | |
2661 { | |
2662 /* Only accept names that differ in case and are the same byte | |
2663 * length. TODO: accept different length name. */ | |
2664 if (STRICMP(tail, dp->d_name) == 0 | |
2665 && STRLEN(tail) == STRLEN(dp->d_name)) | |
2666 { | |
2667 char_u newname[MAXPATHL + 1]; | |
2668 struct stat st2; | |
2669 | |
2670 /* Verify the inode is equal. */ | |
2671 vim_strncpy(newname, name, MAXPATHL); | |
2672 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name, | |
2673 MAXPATHL - (tail - name)); | |
2674 if (lstat((char *)newname, &st2) >= 0 | |
2675 && st.st_ino == st2.st_ino | |
2676 && st.st_dev == st2.st_dev) | |
2677 { | |
2678 STRCPY(tail, dp->d_name); | |
2679 break; | |
2680 } | |
2681 } | |
2682 } | |
2683 | |
2684 closedir(dirp); | |
2685 } | |
2686 } | |
2687 } | |
2688 #endif | |
2689 | |
7 | 2690 /* |
2691 * Get file permissions for 'name'. | |
2692 * Returns -1 when it doesn't exist. | |
2693 */ | |
2694 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2695 mch_getperm(char_u *name) |
7 | 2696 { |
2697 struct stat statb; | |
2698 | |
2699 /* Keep the #ifdef outside of stat(), it may be a macro. */ | |
2700 #ifdef VMS | |
2701 if (stat((char *)vms_fixfilename(name), &statb)) | |
2702 #else | |
2703 if (stat((char *)name, &statb)) | |
2704 #endif | |
2705 return -1; | |
1350 | 2706 #ifdef __INTERIX |
2707 /* The top bit makes the value negative, which means the file doesn't | |
2708 * exist. Remove the bit, we don't use it. */ | |
2709 return statb.st_mode & ~S_ADDACE; | |
2710 #else | |
7 | 2711 return statb.st_mode; |
1350 | 2712 #endif |
7 | 2713 } |
2714 | |
2715 /* | |
2716 * set file permission for 'name' to 'perm' | |
2717 * | |
2718 * return FAIL for failure, OK otherwise | |
2719 */ | |
2720 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2721 mch_setperm(char_u *name, long perm) |
7 | 2722 { |
2723 return (chmod((char *) | |
2724 #ifdef VMS | |
2725 vms_fixfilename(name), | |
2726 #else | |
2727 name, | |
2728 #endif | |
2729 (mode_t)perm) == 0 ? OK : FAIL); | |
2730 } | |
2731 | |
2732 #if defined(HAVE_ACL) || defined(PROTO) | |
2733 # ifdef HAVE_SYS_ACL_H | |
2734 # include <sys/acl.h> | |
2735 # endif | |
2736 # ifdef HAVE_SYS_ACCESS_H | |
2737 # include <sys/access.h> | |
2738 # endif | |
2739 | |
2740 # ifdef HAVE_SOLARIS_ACL | |
2741 typedef struct vim_acl_solaris_T { | |
2742 int acl_cnt; | |
2743 aclent_t *acl_entry; | |
2744 } vim_acl_solaris_T; | |
2745 # endif | |
2746 | |
1583 | 2747 #if defined(HAVE_SELINUX) || defined(PROTO) |
2748 /* | |
2749 * Copy security info from "from_file" to "to_file". | |
2750 */ | |
2751 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2752 mch_copy_sec(char_u *from_file, char_u *to_file) |
1583 | 2753 { |
2754 if (from_file == NULL) | |
2755 return; | |
2756 | |
2757 if (selinux_enabled == -1) | |
2758 selinux_enabled = is_selinux_enabled(); | |
2759 | |
2760 if (selinux_enabled > 0) | |
2761 { | |
2762 security_context_t from_context = NULL; | |
2763 security_context_t to_context = NULL; | |
2764 | |
2765 if (getfilecon((char *)from_file, &from_context) < 0) | |
2766 { | |
2767 /* If the filesystem doesn't support extended attributes, | |
2768 the original had no special security context and the | |
2769 target cannot have one either. */ | |
2770 if (errno == EOPNOTSUPP) | |
2771 return; | |
2772 | |
2773 MSG_PUTS(_("\nCould not get security context for ")); | |
2774 msg_outtrans(from_file); | |
2775 msg_putchar('\n'); | |
2776 return; | |
2777 } | |
2778 if (getfilecon((char *)to_file, &to_context) < 0) | |
2779 { | |
2780 MSG_PUTS(_("\nCould not get security context for ")); | |
2781 msg_outtrans(to_file); | |
2782 msg_putchar('\n'); | |
2783 freecon (from_context); | |
2784 return ; | |
2785 } | |
2786 if (strcmp(from_context, to_context) != 0) | |
2787 { | |
2788 if (setfilecon((char *)to_file, from_context) < 0) | |
2789 { | |
2790 MSG_PUTS(_("\nCould not set security context for ")); | |
2791 msg_outtrans(to_file); | |
2792 msg_putchar('\n'); | |
2793 } | |
2794 } | |
2795 freecon(to_context); | |
2796 freecon(from_context); | |
2797 } | |
2798 } | |
2799 #endif /* HAVE_SELINUX */ | |
2800 | |
5788 | 2801 #if defined(HAVE_SMACK) && !defined(PROTO) |
2802 /* | |
2803 * Copy security info from "from_file" to "to_file". | |
2804 */ | |
2805 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2806 mch_copy_sec(char_u *from_file, char_u *to_file) |
5788 | 2807 { |
5832 | 2808 static const char * const smack_copied_attributes[] = |
5788 | 2809 { |
2810 XATTR_NAME_SMACK, | |
2811 XATTR_NAME_SMACKEXEC, | |
2812 XATTR_NAME_SMACKMMAP | |
2813 }; | |
2814 | |
2815 char buffer[SMACK_LABEL_LEN]; | |
2816 const char *name; | |
2817 int index; | |
2818 int ret; | |
2819 ssize_t size; | |
2820 | |
2821 if (from_file == NULL) | |
2822 return; | |
2823 | |
2824 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes) | |
2825 / sizeof(smack_copied_attributes)[0]) ; index++) | |
2826 { | |
2827 /* get the name of the attribute to copy */ | |
2828 name = smack_copied_attributes[index]; | |
2829 | |
2830 /* get the value of the attribute in buffer */ | |
2831 size = getxattr((char*)from_file, name, buffer, sizeof(buffer)); | |
2832 if (size >= 0) | |
2833 { | |
2834 /* copy the attribute value of buffer */ | |
2835 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0); | |
2836 if (ret < 0) | |
2837 { | |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2838 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2839 _("Could not set security context %s for %s"), |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2840 name, to_file); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2841 msg_outtrans(IObuff); |
5788 | 2842 msg_putchar('\n'); |
2843 } | |
2844 } | |
2845 else | |
2846 { | |
2847 /* what reason of not having the attribute value? */ | |
2848 switch (errno) | |
2849 { | |
2850 case ENOTSUP: | |
2851 /* extended attributes aren't supported or enabled */ | |
2852 /* should a message be echoed? not sure... */ | |
2853 return; /* leave because it isn't usefull to continue */ | |
2854 | |
2855 case ERANGE: | |
2856 default: | |
2857 /* no enough size OR unexpected error */ | |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2858 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2859 _("Could not get security context %s for %s. Removing it!"), |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2860 name, from_file); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2861 msg_puts(IObuff); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2862 msg_putchar('\n'); |
5788 | 2863 /* FALLTHROUGH to remove the attribute */ |
2864 | |
2865 case ENODATA: | |
2866 /* no attribute of this name */ | |
2867 ret = removexattr((char*)to_file, name); | |
5800 | 2868 /* Silently ignore errors, apparently this happens when |
2869 * smack is not actually being used. */ | |
5788 | 2870 break; |
2871 } | |
2872 } | |
2873 } | |
2874 } | |
2875 #endif /* HAVE_SMACK */ | |
2876 | |
7 | 2877 /* |
2878 * Return a pointer to the ACL of file "fname" in allocated memory. | |
2879 * Return NULL if the ACL is not available for whatever reason. | |
2880 */ | |
2881 vim_acl_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2882 mch_get_acl(char_u *fname UNUSED) |
7 | 2883 { |
2884 vim_acl_T ret = NULL; | |
2885 #ifdef HAVE_POSIX_ACL | |
2886 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS); | |
2887 #else | |
3330 | 2888 #ifdef HAVE_SOLARIS_ZFS_ACL |
2889 acl_t *aclent; | |
2890 | |
2891 if (acl_get((char *)fname, 0, &aclent) < 0) | |
2892 return NULL; | |
2893 ret = (vim_acl_T)aclent; | |
2894 #else | |
7 | 2895 #ifdef HAVE_SOLARIS_ACL |
2896 vim_acl_solaris_T *aclent; | |
2897 | |
2898 aclent = malloc(sizeof(vim_acl_solaris_T)); | |
2899 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0) | |
2900 { | |
2901 free(aclent); | |
2902 return NULL; | |
2903 } | |
2904 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t)); | |
2905 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0) | |
2906 { | |
2907 free(aclent->acl_entry); | |
2908 free(aclent); | |
2909 return NULL; | |
2910 } | |
2911 ret = (vim_acl_T)aclent; | |
2912 #else | |
2913 #if defined(HAVE_AIX_ACL) | |
2914 int aclsize; | |
2915 struct acl *aclent; | |
2916 | |
2917 aclsize = sizeof(struct acl); | |
2918 aclent = malloc(aclsize); | |
2919 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2920 { | |
2921 if (errno == ENOSPC) | |
2922 { | |
2923 aclsize = aclent->acl_len; | |
2924 aclent = realloc(aclent, aclsize); | |
2925 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2926 { | |
2927 free(aclent); | |
2928 return NULL; | |
2929 } | |
2930 } | |
2931 else | |
2932 { | |
2933 free(aclent); | |
2934 return NULL; | |
2935 } | |
2936 } | |
2937 ret = (vim_acl_T)aclent; | |
2938 #endif /* HAVE_AIX_ACL */ | |
2939 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2940 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2941 #endif /* HAVE_POSIX_ACL */ |
2942 return ret; | |
2943 } | |
2944 | |
2945 /* | |
2946 * Set the ACL of file "fname" to "acl" (unless it's NULL). | |
2947 */ | |
2948 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2949 mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent) |
7 | 2950 { |
2951 if (aclent == NULL) | |
2952 return; | |
2953 #ifdef HAVE_POSIX_ACL | |
2954 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent); | |
2955 #else | |
3330 | 2956 #ifdef HAVE_SOLARIS_ZFS_ACL |
2957 acl_set((char *)fname, (acl_t *)aclent); | |
2958 #else | |
7 | 2959 #ifdef HAVE_SOLARIS_ACL |
2960 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt, | |
2961 ((vim_acl_solaris_T *)aclent)->acl_entry); | |
2962 #else | |
2963 #ifdef HAVE_AIX_ACL | |
2964 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len); | |
2965 #endif /* HAVE_AIX_ACL */ | |
2966 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2967 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2968 #endif /* HAVE_POSIX_ACL */ |
2969 } | |
2970 | |
2971 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2972 mch_free_acl(vim_acl_T aclent) |
7 | 2973 { |
2974 if (aclent == NULL) | |
2975 return; | |
2976 #ifdef HAVE_POSIX_ACL | |
2977 acl_free((acl_t)aclent); | |
2978 #else | |
3330 | 2979 #ifdef HAVE_SOLARIS_ZFS_ACL |
2980 acl_free((acl_t *)aclent); | |
2981 #else | |
7 | 2982 #ifdef HAVE_SOLARIS_ACL |
2983 free(((vim_acl_solaris_T *)aclent)->acl_entry); | |
2984 free(aclent); | |
2985 #else | |
2986 #ifdef HAVE_AIX_ACL | |
2987 free(aclent); | |
2988 #endif /* HAVE_AIX_ACL */ | |
2989 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2990 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2991 #endif /* HAVE_POSIX_ACL */ |
2992 } | |
2993 #endif | |
2994 | |
2995 /* | |
2996 * Set hidden flag for "name". | |
2997 */ | |
2998 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2999 mch_hide(char_u *name UNUSED) |
7 | 3000 { |
3001 /* can't hide a file */ | |
3002 } | |
3003 | |
3004 /* | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3005 * return TRUE if "name" is a directory or a symlink to a directory |
7 | 3006 * return FALSE if "name" is not a directory |
3007 * return FALSE for error | |
3008 */ | |
3009 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3010 mch_isdir(char_u *name) |
7 | 3011 { |
3012 struct stat statb; | |
3013 | |
3014 if (*name == NUL) /* Some stat()s don't flag "" as an error. */ | |
3015 return FALSE; | |
3016 if (stat((char *)name, &statb)) | |
3017 return FALSE; | |
3018 #ifdef _POSIX_SOURCE | |
3019 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); | |
3020 #else | |
3021 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE); | |
3022 #endif | |
3023 } | |
3024 | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3025 /* |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3026 * return TRUE if "name" is a directory, NOT a symlink to a directory |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3027 * return FALSE if "name" is not a directory |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3028 * return FALSE for error |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3029 */ |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3030 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3031 mch_isrealdir(char_u *name) |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3032 { |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3033 struct stat statb; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3034 |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3035 if (*name == NUL) /* Some stat()s don't flag "" as an error. */ |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3036 return FALSE; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3037 if (lstat((char *)name, &statb)) |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3038 return FALSE; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3039 #ifdef _POSIX_SOURCE |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3040 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3041 #else |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3042 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE); |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3043 #endif |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3044 } |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3045 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
3046 static int executable_file(char_u *name); |
7 | 3047 |
3048 /* | |
3049 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist. | |
3050 */ | |
3051 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3052 executable_file(char_u *name) |
7 | 3053 { |
3054 struct stat st; | |
3055 | |
3056 if (stat((char *)name, &st)) | |
3057 return 0; | |
5704 | 3058 #ifdef VMS |
3059 /* Like on Unix system file can have executable rights but not necessarily | |
3060 * be an executable, but on Unix is not a default for an ordianry file to | |
3061 * have an executable flag - on VMS it is in most cases. | |
3062 * Therefore, this check does not have any sense - let keep us to the | |
3063 * conventions instead: | |
3064 * *.COM and *.EXE files are the executables - the rest are not. This is | |
3065 * not ideal but better then it was. | |
3066 */ | |
3067 int vms_executable = 0; | |
3068 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0) | |
3069 { | |
3070 if (strstr(vms_tolower((char*)name),".exe") != NULL | |
3071 || strstr(vms_tolower((char*)name),".com")!= NULL) | |
3072 vms_executable = 1; | |
3073 } | |
3074 return vms_executable; | |
3075 #else | |
7 | 3076 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0; |
5704 | 3077 #endif |
7 | 3078 } |
3079 | |
3080 /* | |
3081 * Return 1 if "name" can be found in $PATH and executed, 0 if not. | |
6695 | 3082 * If "use_path" is FALSE only check if "name" is executable. |
7 | 3083 * Return -1 if unknown. |
3084 */ | |
3085 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3086 mch_can_exe(char_u *name, char_u **path, int use_path) |
7 | 3087 { |
3088 char_u *buf; | |
3089 char_u *p, *e; | |
3090 int retval; | |
3091 | |
6695 | 3092 /* When "use_path" is false and if it's an absolute or relative path don't |
3093 * need to use $PATH. */ | |
3094 if (!use_path || mch_isFullName(name) || (name[0] == '.' | |
3095 && (name[1] == '/' || (name[1] == '.' && name[2] == '/')))) | |
5704 | 3096 { |
6695 | 3097 /* There must be a path separator, files in the current directory |
3098 * can't be executed. */ | |
3099 if (gettail(name) != name && executable_file(name)) | |
5782 | 3100 { |
3101 if (path != NULL) | |
3102 { | |
3103 if (name[0] == '.') | |
3104 *path = FullName_save(name, TRUE); | |
3105 else | |
3106 *path = vim_strsave(name); | |
3107 } | |
3108 return TRUE; | |
3109 } | |
3110 return FALSE; | |
5704 | 3111 } |
7 | 3112 |
3113 p = (char_u *)getenv("PATH"); | |
3114 if (p == NULL || *p == NUL) | |
3115 return -1; | |
3116 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2)); | |
3117 if (buf == NULL) | |
3118 return -1; | |
3119 | |
3120 /* | |
3121 * Walk through all entries in $PATH to check if "name" exists there and | |
3122 * is an executable file. | |
3123 */ | |
3124 for (;;) | |
3125 { | |
3126 e = (char_u *)strchr((char *)p, ':'); | |
3127 if (e == NULL) | |
3128 e = p + STRLEN(p); | |
3129 if (e - p <= 1) /* empty entry means current dir */ | |
3130 STRCPY(buf, "./"); | |
3131 else | |
3132 { | |
418 | 3133 vim_strncpy(buf, p, e - p); |
7 | 3134 add_pathsep(buf); |
3135 } | |
3136 STRCAT(buf, name); | |
3137 retval = executable_file(buf); | |
3138 if (retval == 1) | |
5782 | 3139 { |
3140 if (path != NULL) | |
3141 { | |
3142 if (buf[0] == '.') | |
3143 *path = FullName_save(buf, TRUE); | |
3144 else | |
3145 *path = vim_strsave(buf); | |
3146 } | |
7 | 3147 break; |
5782 | 3148 } |
7 | 3149 |
3150 if (*e != ':') | |
3151 break; | |
3152 p = e + 1; | |
3153 } | |
3154 | |
3155 vim_free(buf); | |
3156 return retval; | |
3157 } | |
3158 | |
3159 /* | |
3160 * Check what "name" is: | |
3161 * NODE_NORMAL: file or directory (or doesn't exist) | |
3162 * NODE_WRITABLE: writable device, socket, fifo, etc. | |
3163 * NODE_OTHER: non-writable things | |
3164 */ | |
3165 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3166 mch_nodetype(char_u *name) |
7 | 3167 { |
3168 struct stat st; | |
3169 | |
3170 if (stat((char *)name, &st)) | |
3171 return NODE_NORMAL; | |
3172 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)) | |
3173 return NODE_NORMAL; | |
3174 if (S_ISBLK(st.st_mode)) /* block device isn't writable */ | |
3175 return NODE_OTHER; | |
3176 /* Everything else is writable? */ | |
3177 return NODE_WRITABLE; | |
3178 } | |
3179 | |
3180 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3181 mch_early_init(void) |
7 | 3182 { |
3183 #ifdef HAVE_CHECK_STACK_GROWTH | |
3184 int i; | |
180 | 3185 |
7 | 3186 check_stack_growth((char *)&i); |
3187 | |
180 | 3188 # ifdef HAVE_STACK_LIMIT |
7 | 3189 get_stack_limit(); |
3190 # endif | |
3191 | |
3192 #endif | |
3193 | |
3194 /* | |
3195 * Setup an alternative stack for signals. Helps to catch signals when | |
3196 * running out of stack space. | |
3197 * Use of sigaltstack() is preferred, it's more portable. | |
3198 * Ignore any errors. | |
3199 */ | |
3200 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
1737 | 3201 signal_stack = (char *)alloc(SIGSTKSZ); |
7 | 3202 init_signal_stack(); |
3203 #endif | |
3204 } | |
3205 | |
355 | 3206 #if defined(EXITFREE) || defined(PROTO) |
3207 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3208 mch_free_mem(void) |
355 | 3209 { |
359 | 3210 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
3211 if (clip_star.owned) | |
3212 clip_lose_selection(&clip_star); | |
3213 if (clip_plus.owned) | |
3214 clip_lose_selection(&clip_plus); | |
355 | 3215 # endif |
1605 | 3216 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
355 | 3217 if (xterm_Shell != (Widget)0) |
3218 XtDestroyWidget(xterm_Shell); | |
1605 | 3219 # ifndef LESSTIF_VERSION |
3220 /* Lesstif crashes here, lose some memory */ | |
355 | 3221 if (xterm_dpy != NULL) |
3222 XtCloseDisplay(xterm_dpy); | |
3223 if (app_context != (XtAppContext)NULL) | |
1605 | 3224 { |
355 | 3225 XtDestroyApplicationContext(app_context); |
1605 | 3226 # ifdef FEAT_X11 |
3227 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
3228 # endif | |
3229 } | |
3230 # endif | |
355 | 3231 # endif |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
3232 # if defined(FEAT_X11) |
1605 | 3233 if (x11_display != NULL |
3234 # ifdef FEAT_XCLIPBOARD | |
3235 && x11_display != xterm_dpy | |
3236 # endif | |
3237 ) | |
359 | 3238 XCloseDisplay(x11_display); |
3239 # endif | |
3240 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
3241 vim_free(signal_stack); | |
3242 signal_stack = NULL; | |
3243 # endif | |
3244 # ifdef FEAT_TITLE | |
3245 vim_free(oldtitle); | |
3246 vim_free(oldicon); | |
3247 # endif | |
355 | 3248 } |
3249 #endif | |
3250 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
3251 static void exit_scroll(void); |
7 | 3252 |
3253 /* | |
3254 * Output a newline when exiting. | |
3255 * Make sure the newline goes to the same stream as the text. | |
3256 */ | |
3257 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3258 exit_scroll(void) |
7 | 3259 { |
167 | 3260 if (silent_mode) |
3261 return; | |
7 | 3262 if (newline_on_exit || msg_didout) |
3263 { | |
3264 if (msg_use_printf()) | |
3265 { | |
3266 if (info_message) | |
3267 mch_msg("\n"); | |
3268 else | |
3269 mch_errmsg("\r\n"); | |
3270 } | |
3271 else | |
3272 out_char('\n'); | |
3273 } | |
3274 else | |
3275 { | |
3276 restore_cterm_colors(); /* get original colors back */ | |
3277 msg_clr_eos_force(); /* clear the rest of the display */ | |
3278 windgoto((int)Rows - 1, 0); /* may have moved the cursor */ | |
3279 } | |
3280 } | |
3281 | |
3282 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3283 mch_exit(int r) |
7 | 3284 { |
3285 exiting = TRUE; | |
3286 | |
3287 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD) | |
3288 x11_export_final_selection(); | |
3289 #endif | |
3290 | |
3291 #ifdef FEAT_GUI | |
3292 if (!gui.in_use) | |
3293 #endif | |
3294 { | |
3295 settmode(TMODE_COOK); | |
3296 #ifdef FEAT_TITLE | |
3297 mch_restore_title(3); /* restore xterm title and icon name */ | |
3298 #endif | |
3299 /* | |
3300 * When t_ti is not empty but it doesn't cause swapping terminal | |
3301 * pages, need to output a newline when msg_didout is set. But when | |
3302 * t_ti does swap pages it should not go to the shell page. Do this | |
3303 * before stoptermcap(). | |
3304 */ | |
3305 if (swapping_screen() && !newline_on_exit) | |
3306 exit_scroll(); | |
3307 | |
3308 /* Stop termcap: May need to check for T_CRV response, which | |
3309 * requires RAW mode. */ | |
3310 stoptermcap(); | |
3311 | |
3312 /* | |
3313 * A newline is only required after a message in the alternate screen. | |
3314 * This is set to TRUE by wait_return(). | |
3315 */ | |
3316 if (!swapping_screen() || newline_on_exit) | |
3317 exit_scroll(); | |
3318 | |
3319 /* Cursor may have been switched off without calling starttermcap() | |
3320 * when doing "vim -u vimrc" and vimrc contains ":q". */ | |
3321 if (full_screen) | |
3322 cursor_on(); | |
3323 } | |
3324 out_flush(); | |
3325 ml_close_all(TRUE); /* remove all memfiles */ | |
3326 may_core_dump(); | |
3327 #ifdef FEAT_GUI | |
3328 if (gui.in_use) | |
3329 gui_exit(r); | |
3330 #endif | |
167 | 3331 |
765 | 3332 #ifdef MACOS_CONVERT |
167 | 3333 mac_conv_cleanup(); |
3334 #endif | |
3335 | |
7 | 3336 #ifdef __QNX__ |
3337 /* A core dump won't be created if the signal handler | |
3338 * doesn't return, so we can't call exit() */ | |
3339 if (deadly_signal != 0) | |
3340 return; | |
3341 #endif | |
3342 | |
33 | 3343 #ifdef FEAT_NETBEANS_INTG |
2210 | 3344 netbeans_send_disconnect(); |
33 | 3345 #endif |
355 | 3346 |
3347 #ifdef EXITFREE | |
3348 free_all_mem(); | |
3349 #endif | |
3350 | |
7 | 3351 exit(r); |
3352 } | |
3353 | |
3354 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3355 may_core_dump(void) |
7 | 3356 { |
3357 if (deadly_signal != 0) | |
3358 { | |
3359 signal(deadly_signal, SIG_DFL); | |
3360 kill(getpid(), deadly_signal); /* Die using the signal we caught */ | |
3361 } | |
3362 } | |
3363 | |
3364 #ifndef VMS | |
3365 | |
3366 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3367 mch_settmode(int tmode) |
7 | 3368 { |
3369 static int first = TRUE; | |
3370 | |
3371 /* Why is NeXT excluded here (and not in os_unixx.h)? */ | |
3372 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__) | |
3373 /* | |
3374 * for "new" tty systems | |
3375 */ | |
3376 # ifdef HAVE_TERMIOS_H | |
3377 static struct termios told; | |
3378 struct termios tnew; | |
3379 # else | |
3380 static struct termio told; | |
3381 struct termio tnew; | |
3382 # endif | |
3383 | |
3384 if (first) | |
3385 { | |
3386 first = FALSE; | |
3387 # if defined(HAVE_TERMIOS_H) | |
3388 tcgetattr(read_cmd_fd, &told); | |
3389 # else | |
3390 ioctl(read_cmd_fd, TCGETA, &told); | |
3391 # endif | |
3392 } | |
3393 | |
3394 tnew = told; | |
3395 if (tmode == TMODE_RAW) | |
3396 { | |
3397 /* | |
3398 * ~ICRNL enables typing ^V^M | |
3399 */ | |
3400 tnew.c_iflag &= ~ICRNL; | |
3401 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE | |
3402 # if defined(IEXTEN) && !defined(__MINT__) | |
3403 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */ | |
3404 /* but it breaks function keys on MINT */ | |
3405 # endif | |
3406 ); | |
3407 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */ | |
3408 tnew.c_oflag &= ~ONLCR; | |
3409 # endif | |
3410 tnew.c_cc[VMIN] = 1; /* return after 1 char */ | |
3411 tnew.c_cc[VTIME] = 0; /* don't wait */ | |
3412 } | |
3413 else if (tmode == TMODE_SLEEP) | |
3414 tnew.c_lflag &= ~(ECHO); | |
3415 | |
3416 # if defined(HAVE_TERMIOS_H) | |
3417 { | |
3418 int n = 10; | |
3419 | |
3420 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a | |
3421 * few times. */ | |
3422 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1 | |
3423 && errno == EINTR && n > 0) | |
3424 --n; | |
3425 } | |
3426 # else | |
3427 ioctl(read_cmd_fd, TCSETA, &tnew); | |
3428 # endif | |
3429 | |
3430 #else | |
3431 | |
3432 /* | |
3433 * for "old" tty systems | |
3434 */ | |
3435 # ifndef TIOCSETN | |
3436 # define TIOCSETN TIOCSETP /* for hpux 9.0 */ | |
3437 # endif | |
3438 static struct sgttyb ttybold; | |
3439 struct sgttyb ttybnew; | |
3440 | |
3441 if (first) | |
3442 { | |
3443 first = FALSE; | |
3444 ioctl(read_cmd_fd, TIOCGETP, &ttybold); | |
3445 } | |
3446 | |
3447 ttybnew = ttybold; | |
3448 if (tmode == TMODE_RAW) | |
3449 { | |
3450 ttybnew.sg_flags &= ~(CRMOD | ECHO); | |
3451 ttybnew.sg_flags |= RAW; | |
3452 } | |
3453 else if (tmode == TMODE_SLEEP) | |
3454 ttybnew.sg_flags &= ~(ECHO); | |
3455 ioctl(read_cmd_fd, TIOCSETN, &ttybnew); | |
3456 #endif | |
3457 curr_tmode = tmode; | |
3458 } | |
3459 | |
3460 /* | |
3461 * Try to get the code for "t_kb" from the stty setting | |
3462 * | |
3463 * Even if termcap claims a backspace key, the user's setting *should* | |
3464 * prevail. stty knows more about reality than termcap does, and if | |
3465 * somebody's usual erase key is DEL (which, for most BSD users, it will | |
3466 * be), they're going to get really annoyed if their erase key starts | |
3467 * doing forward deletes for no reason. (Eric Fischer) | |
3468 */ | |
3469 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3470 get_stty(void) |
7 | 3471 { |
3472 char_u buf[2]; | |
3473 char_u *p; | |
3474 | |
3475 /* Why is NeXT excluded here (and not in os_unixx.h)? */ | |
3476 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__) | |
3477 /* for "new" tty systems */ | |
3478 # ifdef HAVE_TERMIOS_H | |
3479 struct termios keys; | |
3480 # else | |
3481 struct termio keys; | |
3482 # endif | |
3483 | |
3484 # if defined(HAVE_TERMIOS_H) | |
3485 if (tcgetattr(read_cmd_fd, &keys) != -1) | |
3486 # else | |
3487 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1) | |
3488 # endif | |
3489 { | |
3490 buf[0] = keys.c_cc[VERASE]; | |
3491 intr_char = keys.c_cc[VINTR]; | |
3492 #else | |
3493 /* for "old" tty systems */ | |
3494 struct sgttyb keys; | |
3495 | |
3496 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1) | |
3497 { | |
3498 buf[0] = keys.sg_erase; | |
3499 intr_char = keys.sg_kill; | |
3500 #endif | |
3501 buf[1] = NUL; | |
3502 add_termcode((char_u *)"kb", buf, FALSE); | |
3503 | |
3504 /* | |
3505 * If <BS> and <DEL> are now the same, redefine <DEL>. | |
3506 */ | |
3507 p = find_termcode((char_u *)"kD"); | |
3508 if (p != NULL && p[0] == buf[0] && p[1] == buf[1]) | |
3509 do_fixdel(NULL); | |
3510 } | |
3511 #if 0 | |
3512 } /* to keep cindent happy */ | |
3513 #endif | |
3514 } | |
3515 | |
3516 #endif /* VMS */ | |
3517 | |
3518 #if defined(FEAT_MOUSE_TTY) || defined(PROTO) | |
3519 /* | |
3520 * Set mouse clicks on or off. | |
3521 */ | |
3522 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3523 mch_setmouse(int on) |
7 | 3524 { |
3525 static int ison = FALSE; | |
3526 int xterm_mouse_vers; | |
3527 | |
3528 if (on == ison) /* return quickly if nothing to do */ | |
3529 return; | |
3530 | |
3531 xterm_mouse_vers = use_xterm_mouse(); | |
3145 | 3532 |
3533 # ifdef FEAT_MOUSE_URXVT | |
3746 | 3534 if (ttym_flags == TTYM_URXVT) |
3535 { | |
3145 | 3536 out_str_nf((char_u *) |
3537 (on | |
3538 ? IF_EB("\033[?1015h", ESC_STR "[?1015h") | |
3539 : IF_EB("\033[?1015l", ESC_STR "[?1015l"))); | |
3540 ison = on; | |
3541 } | |
3542 # endif | |
3543 | |
3746 | 3544 # ifdef FEAT_MOUSE_SGR |
3545 if (ttym_flags == TTYM_SGR) | |
3546 { | |
3547 out_str_nf((char_u *) | |
3548 (on | |
3549 ? IF_EB("\033[?1006h", ESC_STR "[?1006h") | |
3550 : IF_EB("\033[?1006l", ESC_STR "[?1006l"))); | |
3551 ison = on; | |
3552 } | |
3553 # endif | |
3554 | |
7 | 3555 if (xterm_mouse_vers > 0) |
3556 { | |
3557 if (on) /* enable mouse events, use mouse tracking if available */ | |
3558 out_str_nf((char_u *) | |
3559 (xterm_mouse_vers > 1 | |
3560 ? IF_EB("\033[?1002h", ESC_STR "[?1002h") | |
3561 : IF_EB("\033[?1000h", ESC_STR "[?1000h"))); | |
3562 else /* disable mouse events, could probably always send the same */ | |
3563 out_str_nf((char_u *) | |
3564 (xterm_mouse_vers > 1 | |
3565 ? IF_EB("\033[?1002l", ESC_STR "[?1002l") | |
3566 : IF_EB("\033[?1000l", ESC_STR "[?1000l"))); | |
3567 ison = on; | |
3568 } | |
3569 | |
3570 # ifdef FEAT_MOUSE_DEC | |
3571 else if (ttym_flags == TTYM_DEC) | |
3572 { | |
3573 if (on) /* enable mouse events */ | |
3574 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{"); | |
3575 else /* disable mouse events */ | |
3576 out_str_nf((char_u *)"\033['z"); | |
3577 ison = on; | |
3578 } | |
3579 # endif | |
3580 | |
3581 # ifdef FEAT_MOUSE_GPM | |
3582 else | |
3583 { | |
3584 if (on) | |
3585 { | |
3586 if (gpm_open()) | |
3587 ison = TRUE; | |
3588 } | |
3589 else | |
3590 { | |
3591 gpm_close(); | |
3592 ison = FALSE; | |
3593 } | |
3594 } | |
3595 # endif | |
3596 | |
1620 | 3597 # ifdef FEAT_SYSMOUSE |
3598 else | |
3599 { | |
3600 if (on) | |
3601 { | |
3602 if (sysmouse_open() == OK) | |
3603 ison = TRUE; | |
3604 } | |
3605 else | |
3606 { | |
3607 sysmouse_close(); | |
3608 ison = FALSE; | |
3609 } | |
3610 } | |
3611 # endif | |
3612 | |
7 | 3613 # ifdef FEAT_MOUSE_JSB |
3614 else | |
3615 { | |
3616 if (on) | |
3617 { | |
3618 /* D - Enable Mouse up/down messages | |
3619 * L - Enable Left Button Reporting | |
3620 * M - Enable Middle Button Reporting | |
3621 * R - Enable Right Button Reporting | |
3622 * K - Enable SHIFT and CTRL key Reporting | |
3623 * + - Enable Advanced messaging of mouse moves and up/down messages | |
3624 * Q - Quiet No Ack | |
3625 * # - Numeric value of mouse pointer required | |
3626 * 0 = Multiview 2000 cursor, used as standard | |
3627 * 1 = Windows Arrow | |
3628 * 2 = Windows I Beam | |
3629 * 3 = Windows Hour Glass | |
3630 * 4 = Windows Cross Hair | |
3631 * 5 = Windows UP Arrow | |
3632 */ | |
4299 | 3633 # ifdef JSBTERM_MOUSE_NONADVANCED |
3634 /* Disables full feedback of pointer movements */ | |
7 | 3635 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\", |
3636 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\")); | |
4299 | 3637 # else |
7 | 3638 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\", |
3639 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\")); | |
4299 | 3640 # endif |
7 | 3641 ison = TRUE; |
3642 } | |
3643 else | |
3644 { | |
3645 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\", | |
3646 ESC_STR "[0~ZwQ" ESC_STR "\\")); | |
3647 ison = FALSE; | |
3648 } | |
3649 } | |
3650 # endif | |
3651 # ifdef FEAT_MOUSE_PTERM | |
3652 else | |
3653 { | |
3654 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */ | |
3655 if (on) | |
3656 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l"); | |
3657 else | |
3658 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h"); | |
3659 ison = on; | |
3660 } | |
3661 # endif | |
3662 } | |
3663 | |
3664 /* | |
3665 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options. | |
3666 */ | |
3667 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3668 check_mouse_termcode(void) |
7 | 3669 { |
3670 # ifdef FEAT_MOUSE_XTERM | |
3671 if (use_xterm_mouse() | |
3145 | 3672 # ifdef FEAT_MOUSE_URXVT |
3673 && use_xterm_mouse() != 3 | |
3674 # endif | |
7 | 3675 # ifdef FEAT_GUI |
3676 && !gui.in_use | |
3677 # endif | |
3678 ) | |
3679 { | |
3680 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
180 | 3681 ? IF_EB("\233M", CSI_STR "M") |
3682 : IF_EB("\033[M", ESC_STR "[M"))); | |
7 | 3683 if (*p_mouse != NUL) |
3684 { | |
3685 /* force mouse off and maybe on to send possibly new mouse | |
3686 * activation sequence to the xterm, with(out) drag tracing. */ | |
3687 mch_setmouse(FALSE); | |
3688 setmouse(); | |
3689 } | |
3690 } | |
3691 else | |
3692 del_mouse_termcode(KS_MOUSE); | |
3693 # endif | |
3694 | |
3695 # ifdef FEAT_MOUSE_GPM | |
3696 if (!use_xterm_mouse() | |
3697 # ifdef FEAT_GUI | |
3698 && !gui.in_use | |
3699 # endif | |
3700 ) | |
3701 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG")); | |
3702 # endif | |
3703 | |
1620 | 3704 # ifdef FEAT_SYSMOUSE |
3705 if (!use_xterm_mouse() | |
3706 # ifdef FEAT_GUI | |
3707 && !gui.in_use | |
3708 # endif | |
3709 ) | |
3710 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS")); | |
3711 # endif | |
3712 | |
7 | 3713 # ifdef FEAT_MOUSE_JSB |
6102 | 3714 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */ |
7 | 3715 if (!use_xterm_mouse() |
3716 # ifdef FEAT_GUI | |
3717 && !gui.in_use | |
3718 # endif | |
3719 ) | |
3720 set_mouse_termcode(KS_JSBTERM_MOUSE, | |
3721 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw")); | |
3722 else | |
3723 del_mouse_termcode(KS_JSBTERM_MOUSE); | |
3724 # endif | |
3725 | |
3726 # ifdef FEAT_MOUSE_NET | |
180 | 3727 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't |
7 | 3728 * define it in the GUI or when using an xterm. */ |
3729 if (!use_xterm_mouse() | |
3730 # ifdef FEAT_GUI | |
3731 && !gui.in_use | |
3732 # endif | |
3733 ) | |
3734 set_mouse_termcode(KS_NETTERM_MOUSE, | |
3735 (char_u *)IF_EB("\033}", ESC_STR "}")); | |
3736 else | |
3737 del_mouse_termcode(KS_NETTERM_MOUSE); | |
3738 # endif | |
3739 | |
3740 # ifdef FEAT_MOUSE_DEC | |
6102 | 3741 /* Conflicts with xterm mouse: "\033[" and "\033[M" */ |
5932 | 3742 if (!use_xterm_mouse() |
7 | 3743 # ifdef FEAT_GUI |
3744 && !gui.in_use | |
3745 # endif | |
3746 ) | |
180 | 3747 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
3748 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "["))); | |
7 | 3749 else |
3750 del_mouse_termcode(KS_DEC_MOUSE); | |
3751 # endif | |
3752 # ifdef FEAT_MOUSE_PTERM | |
6102 | 3753 /* same conflict as the dec mouse */ |
5932 | 3754 if (!use_xterm_mouse() |
7 | 3755 # ifdef FEAT_GUI |
3756 && !gui.in_use | |
3757 # endif | |
3758 ) | |
3759 set_mouse_termcode(KS_PTERM_MOUSE, | |
3760 (char_u *) IF_EB("\033[", ESC_STR "[")); | |
3761 else | |
3762 del_mouse_termcode(KS_PTERM_MOUSE); | |
3763 # endif | |
3145 | 3764 # ifdef FEAT_MOUSE_URXVT |
6102 | 3765 /* same conflict as the dec mouse */ |
5932 | 3766 if (use_xterm_mouse() == 3 |
3145 | 3767 # ifdef FEAT_GUI |
3768 && !gui.in_use | |
3769 # endif | |
3770 ) | |
3771 { | |
3772 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
3773 ? IF_EB("\233", CSI_STR) | |
3774 : IF_EB("\033[", ESC_STR "["))); | |
3775 | |
3776 if (*p_mouse != NUL) | |
3777 { | |
3778 mch_setmouse(FALSE); | |
3779 setmouse(); | |
3780 } | |
3781 } | |
3782 else | |
3783 del_mouse_termcode(KS_URXVT_MOUSE); | |
3784 # endif | |
3746 | 3785 # ifdef FEAT_MOUSE_SGR |
5905 | 3786 /* There is no conflict with xterm mouse */ |
3746 | 3787 if (use_xterm_mouse() == 4 |
3788 # ifdef FEAT_GUI | |
3789 && !gui.in_use | |
3790 # endif | |
3791 ) | |
3792 { | |
3793 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
3794 ? IF_EB("\233<", CSI_STR "<") | |
3795 : IF_EB("\033[<", ESC_STR "[<"))); | |
3796 | |
3797 if (*p_mouse != NUL) | |
3798 { | |
3799 mch_setmouse(FALSE); | |
3800 setmouse(); | |
3801 } | |
3802 } | |
3803 else | |
3804 del_mouse_termcode(KS_SGR_MOUSE); | |
3805 # endif | |
7 | 3806 } |
3807 #endif | |
3808 | |
3809 /* | |
3810 * set screen mode, always fails. | |
3811 */ | |
3812 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3813 mch_screenmode(char_u *arg UNUSED) |
7 | 3814 { |
3815 EMSG(_(e_screenmode)); | |
3816 return FAIL; | |
3817 } | |
3818 | |
3819 #ifndef VMS | |
3820 | |
3821 /* | |
3822 * Try to get the current window size: | |
3823 * 1. with an ioctl(), most accurate method | |
3824 * 2. from the environment variables LINES and COLUMNS | |
3825 * 3. from the termcap | |
3826 * 4. keep using the old values | |
3827 * Return OK when size could be determined, FAIL otherwise. | |
3828 */ | |
3829 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3830 mch_get_shellsize(void) |
7 | 3831 { |
3832 long rows = 0; | |
3833 long columns = 0; | |
3834 char_u *p; | |
3835 | |
3836 /* | |
3837 * For OS/2 use _scrsize(). | |
3838 */ | |
3839 # ifdef __EMX__ | |
3840 { | |
3841 int s[2]; | |
3842 | |
3843 _scrsize(s); | |
3844 columns = s[0]; | |
3845 rows = s[1]; | |
3846 } | |
3847 # endif | |
3848 | |
3849 /* | |
3850 * 1. try using an ioctl. It is the most accurate method. | |
3851 * | |
3852 * Try using TIOCGWINSZ first, some systems that have it also define | |
3853 * TIOCGSIZE but don't have a struct ttysize. | |
3854 */ | |
3855 # ifdef TIOCGWINSZ | |
3856 { | |
3857 struct winsize ws; | |
3858 int fd = 1; | |
3859 | |
3860 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3861 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3862 fd = read_cmd_fd; | |
3863 if (ioctl(fd, TIOCGWINSZ, &ws) == 0) | |
3864 { | |
3865 columns = ws.ws_col; | |
3866 rows = ws.ws_row; | |
3867 } | |
3868 } | |
3869 # else /* TIOCGWINSZ */ | |
3870 # ifdef TIOCGSIZE | |
3871 { | |
3872 struct ttysize ts; | |
3873 int fd = 1; | |
3874 | |
3875 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3876 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3877 fd = read_cmd_fd; | |
3878 if (ioctl(fd, TIOCGSIZE, &ts) == 0) | |
3879 { | |
3880 columns = ts.ts_cols; | |
3881 rows = ts.ts_lines; | |
3882 } | |
3883 } | |
3884 # endif /* TIOCGSIZE */ | |
3885 # endif /* TIOCGWINSZ */ | |
3886 | |
3887 /* | |
3888 * 2. get size from environment | |
164 | 3889 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules |
3890 * the ioctl() values! | |
7 | 3891 */ |
164 | 3892 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL) |
7 | 3893 { |
3894 if ((p = (char_u *)getenv("LINES"))) | |
3895 rows = atoi((char *)p); | |
3896 if ((p = (char_u *)getenv("COLUMNS"))) | |
3897 columns = atoi((char *)p); | |
3898 } | |
3899 | |
3900 #ifdef HAVE_TGETENT | |
3901 /* | |
3902 * 3. try reading "co" and "li" entries from termcap | |
3903 */ | |
3904 if (columns == 0 || rows == 0) | |
3905 getlinecol(&columns, &rows); | |
3906 #endif | |
3907 | |
3908 /* | |
3909 * 4. If everything fails, use the old values | |
3910 */ | |
3911 if (columns <= 0 || rows <= 0) | |
3912 return FAIL; | |
3913 | |
3914 Rows = rows; | |
3915 Columns = columns; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5037
diff
changeset
|
3916 limit_screen_size(); |
7 | 3917 return OK; |
3918 } | |
3919 | |
3920 /* | |
3921 * Try to set the window size to Rows and Columns. | |
3922 */ | |
3923 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3924 mch_set_shellsize(void) |
7 | 3925 { |
3926 if (*T_CWS) | |
3927 { | |
3928 /* | |
3929 * NOTE: if you get an error here that term_set_winsize() is | |
3930 * undefined, check the output of configure. It could probably not | |
3931 * find a ncurses, termcap or termlib library. | |
3932 */ | |
3933 term_set_winsize((int)Rows, (int)Columns); | |
3934 out_flush(); | |
3935 screen_start(); /* don't know where cursor is now */ | |
3936 } | |
3937 } | |
3938 | |
3939 #endif /* VMS */ | |
3940 | |
3941 /* | |
3942 * Rows and/or Columns has changed. | |
3943 */ | |
3944 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3945 mch_new_shellsize(void) |
7 | 3946 { |
3947 /* Nothing to do. */ | |
3948 } | |
3949 | |
3048 | 3950 /* |
3951 * Wait for process "child" to end. | |
3952 * Return "child" if it exited properly, <= 0 on error. | |
3953 */ | |
3954 static pid_t | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3955 wait4pid(pid_t child, waitstatus *status) |
3048 | 3956 { |
3957 pid_t wait_pid = 0; | |
3958 | |
3959 while (wait_pid != child) | |
3960 { | |
3470 | 3961 /* When compiled with Python threads are probably used, in which case |
3962 * wait() sometimes hangs for no obvious reason. Use waitpid() | |
3963 * instead and loop (like the GUI). Also needed for other interfaces, | |
3964 * they might call system(). */ | |
3965 # ifdef __NeXT__ | |
3048 | 3966 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0); |
3470 | 3967 # else |
3048 | 3968 wait_pid = waitpid(child, status, WNOHANG); |
3470 | 3969 # endif |
3048 | 3970 if (wait_pid == 0) |
3971 { | |
4074 | 3972 /* Wait for 10 msec before trying again. */ |
3048 | 3973 mch_delay(10L, TRUE); |
3974 continue; | |
3975 } | |
3976 if (wait_pid <= 0 | |
3977 # ifdef ECHILD | |
3978 && errno == ECHILD | |
3979 # endif | |
3980 ) | |
3981 break; | |
3982 } | |
3983 return wait_pid; | |
3984 } | |
3985 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
3986 #if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO) |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3987 /* |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3988 * Parse "cmd" and put the white-separated parts in "argv". |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3989 * "argv" is an allocated array with "argc" entries. |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3990 * Returns FAIL when out of memory. |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3991 */ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3992 int |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3993 mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3994 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3995 int i; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3996 char_u *p; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3997 int inquote; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3998 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3999 /* |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4000 * Do this loop twice: |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4001 * 1: find number of arguments |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4002 * 2: separate them and build argv[] |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4003 */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4004 for (i = 0; i < 2; ++i) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4005 { |
9009
149d976650a1
commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5
Christian Brabandt <cb@256bit.org>
parents:
8958
diff
changeset
|
4006 p = skipwhite(cmd); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4007 inquote = FALSE; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4008 *argc = 0; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4009 for (;;) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4010 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4011 if (i == 1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4012 (*argv)[*argc] = (char *)p; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4013 ++*argc; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4014 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB))) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4015 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4016 if (*p == '"') |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4017 inquote = !inquote; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4018 ++p; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4019 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4020 if (*p == NUL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4021 break; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4022 if (i == 1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4023 *p++ = NUL; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4024 p = skipwhite(p); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4025 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4026 if (*argv == NULL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4027 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4028 if (use_shcf) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4029 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4030 /* Account for possible multiple args in p_shcf. */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4031 p = p_shcf; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4032 for (;;) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4033 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4034 p = skiptowhite(p); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4035 if (*p == NUL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4036 break; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4037 ++*argc; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4038 p = skipwhite(p); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4039 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4040 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4041 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4042 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *))); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4043 if (*argv == NULL) /* out of memory */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4044 return FAIL; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4045 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4046 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4047 return OK; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4048 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4049 #endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4050 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
4051 #if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4052 static void |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4053 set_child_environment(void) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4054 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4055 # ifdef HAVE_SETENV |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4056 char envbuf[50]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4057 # else |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4058 static char envbuf_Rows[20]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4059 static char envbuf_Columns[20]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4060 # endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4061 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4062 /* Simulate to have a dumb terminal (for now) */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4063 # ifdef HAVE_SETENV |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4064 setenv("TERM", "dumb", 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4065 sprintf((char *)envbuf, "%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4066 setenv("ROWS", (char *)envbuf, 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4067 sprintf((char *)envbuf, "%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4068 setenv("LINES", (char *)envbuf, 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4069 sprintf((char *)envbuf, "%ld", Columns); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4070 setenv("COLUMNS", (char *)envbuf, 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4071 # else |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4072 /* |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4073 * Putenv does not copy the string, it has to remain valid. |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4074 * Use a static array to avoid losing allocated memory. |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4075 */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4076 putenv("TERM=dumb"); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4077 sprintf(envbuf_Rows, "ROWS=%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4078 putenv(envbuf_Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4079 sprintf(envbuf_Rows, "LINES=%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4080 putenv(envbuf_Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4081 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4082 putenv(envbuf_Columns); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4083 # endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4084 } |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4085 #endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4086 |
7 | 4087 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4088 mch_call_shell( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4089 char_u *cmd, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4090 int options) /* SHELL_*, see vim.h */ |
7 | 4091 { |
4092 #ifdef VMS | |
4093 char *ifn = NULL; | |
4094 char *ofn = NULL; | |
4095 #endif | |
4096 int tmode = cur_tmode; | |
4097 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */ | |
4098 int x; | |
4099 # ifndef __EMX__ | |
4100 char_u *newcmd; /* only needed for unix */ | |
4101 # else | |
4102 /* | |
4103 * Set the preferred shell in the EMXSHELL environment variable (but | |
4104 * only if it is different from what is already in the environment). | |
4105 * Emx then takes care of whether to use "/c" or "-c" in an | |
4106 * intelligent way. Simply pass the whole thing to emx's system() call. | |
4107 * Emx also starts an interactive shell if system() is passed an empty | |
4108 * string. | |
4109 */ | |
4110 char_u *p, *old; | |
4111 | |
4112 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh)) | |
4113 { | |
4114 /* should check HAVE_SETENV, but I know we don't have it. */ | |
4115 p = alloc(10 + strlen(p_sh)); | |
4116 if (p) | |
4117 { | |
4118 sprintf((char *)p, "EMXSHELL=%s", p_sh); | |
4119 putenv((char *)p); /* don't free the pointer! */ | |
4120 } | |
4121 } | |
4122 # endif | |
4123 | |
4124 out_flush(); | |
4125 | |
4126 if (options & SHELL_COOKED) | |
4127 settmode(TMODE_COOK); /* set to normal mode */ | |
4128 | |
2586 | 4129 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4209 | 4130 save_clipboard(); |
2586 | 4131 loose_clipboard(); |
4132 # endif | |
4133 | |
7 | 4134 # ifdef __EMX__ |
4135 if (cmd == NULL) | |
4136 x = system(""); /* this starts an interactive shell in emx */ | |
4137 else | |
4138 x = system((char *)cmd); | |
4139 /* system() returns -1 when error occurs in starting shell */ | |
4140 if (x == -1 && !emsg_silent) | |
4141 { | |
4142 MSG_PUTS(_("\nCannot execute shell ")); | |
4143 msg_outtrans(p_sh); | |
4144 msg_putchar('\n'); | |
4145 } | |
4146 # else /* not __EMX__ */ | |
4147 if (cmd == NULL) | |
4148 x = system((char *)p_sh); | |
4149 else | |
4150 { | |
4151 # ifdef VMS | |
4152 if (ofn = strchr((char *)cmd, '>')) | |
4153 *ofn++ = '\0'; | |
4154 if (ifn = strchr((char *)cmd, '<')) | |
4155 { | |
4156 char *p; | |
4157 | |
4158 *ifn++ = '\0'; | |
4159 p = strchr(ifn,' '); /* chop off any trailing spaces */ | |
4160 if (p) | |
4161 *p = '\0'; | |
4162 } | |
4163 if (ofn) | |
4164 x = vms_sys((char *)cmd, ofn, ifn); | |
4165 else | |
4166 x = system((char *)cmd); | |
4167 # else | |
4168 newcmd = lalloc(STRLEN(p_sh) | |
4169 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg)) | |
4170 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE); | |
4171 if (newcmd == NULL) | |
4172 x = 0; | |
4173 else | |
4174 { | |
4175 sprintf((char *)newcmd, "%s %s %s %s", p_sh, | |
4176 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg, | |
4177 (char *)p_shcf, | |
4178 (char *)cmd); | |
4179 x = system((char *)newcmd); | |
4180 vim_free(newcmd); | |
4181 } | |
4182 # endif | |
4183 } | |
4184 # ifdef VMS | |
4185 x = vms_sys_status(x); | |
4186 # endif | |
4187 if (emsg_silent) | |
4188 ; | |
4189 else if (x == 127) | |
4190 MSG_PUTS(_("\nCannot execute shell sh\n")); | |
4191 # endif /* __EMX__ */ | |
4192 else if (x && !(options & SHELL_SILENT)) | |
4193 { | |
4194 MSG_PUTS(_("\nshell returned ")); | |
4195 msg_outnum((long)x); | |
4196 msg_putchar('\n'); | |
4197 } | |
4198 | |
4199 if (tmode == TMODE_RAW) | |
4200 settmode(TMODE_RAW); /* set to raw mode */ | |
4201 # ifdef FEAT_TITLE | |
4202 resettitle(); | |
4203 # endif | |
4209 | 4204 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4205 restore_clipboard(); | |
4206 # endif | |
7 | 4207 return x; |
4208 | |
4209 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */ | |
4210 | |
167 | 4211 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use |
4212 127, some shells use that already */ | |
7 | 4213 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4214 char_u *newcmd; |
7 | 4215 pid_t pid; |
167 | 4216 pid_t wpid = 0; |
7 | 4217 pid_t wait_pid = 0; |
4218 # ifdef HAVE_UNION_WAIT | |
4219 union wait status; | |
4220 # else | |
4221 int status = -1; | |
4222 # endif | |
4223 int retval = -1; | |
4224 char **argv = NULL; | |
4225 int argc; | |
2994 | 4226 char_u *p_shcf_copy = NULL; |
7 | 4227 int i; |
4228 char_u *p; | |
167 | 4229 int pty_master_fd = -1; /* for pty's */ |
7 | 4230 # ifdef FEAT_GUI |
4231 int pty_slave_fd = -1; | |
4232 char *tty_name; | |
167 | 4233 # endif |
602 | 4234 int fd_toshell[2]; /* for pipes */ |
7 | 4235 int fd_fromshell[2]; |
4236 int pipe_error = FALSE; | |
602 | 4237 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */ |
7 | 4238 |
2586 | 4239 newcmd = vim_strsave(p_sh); |
4240 if (newcmd == NULL) /* out of memory */ | |
4241 goto error; | |
4242 | |
7 | 4243 out_flush(); |
4244 if (options & SHELL_COOKED) | |
4245 settmode(TMODE_COOK); /* set to normal mode */ | |
4246 | |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4247 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4248 goto error; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4249 |
7 | 4250 if (cmd != NULL) |
4251 { | |
3263 | 4252 char_u *s; |
4253 | |
7 | 4254 if (extra_shell_arg != NULL) |
4255 argv[argc++] = (char *)extra_shell_arg; | |
2994 | 4256 |
4257 /* Break 'shellcmdflag' into white separated parts. This doesn't | |
4258 * handle quoted strings, they are very unlikely to appear. */ | |
4259 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1); | |
4260 if (p_shcf_copy == NULL) /* out of memory */ | |
4261 goto error; | |
4262 s = p_shcf_copy; | |
4263 p = p_shcf; | |
4264 while (*p != NUL) | |
4265 { | |
4266 argv[argc++] = (char *)s; | |
4267 while (*p && *p != ' ' && *p != TAB) | |
4268 *s++ = *p++; | |
4269 *s++ = NUL; | |
4270 p = skipwhite(p); | |
4271 } | |
4272 | |
7 | 4273 argv[argc++] = (char *)cmd; |
4274 } | |
4275 argv[argc] = NULL; | |
4276 | |
167 | 4277 /* |
4278 * For the GUI, when writing the output into the buffer and when reading | |
4279 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout | |
4280 * of the executed command into the Vim window. Or use a pipe. | |
4281 */ | |
4282 if ((options & (SHELL_READ|SHELL_WRITE)) | |
7 | 4283 # ifdef FEAT_GUI |
167 | 4284 || (gui.in_use && show_shell_mess) |
4285 # endif | |
4286 ) | |
7 | 4287 { |
167 | 4288 # ifdef FEAT_GUI |
7 | 4289 /* |
4290 * Try to open a master pty. | |
4291 * If this works, open the slave pty. | |
4292 * If the slave can't be opened, close the master pty. | |
4293 */ | |
167 | 4294 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE))) |
7 | 4295 { |
4296 pty_master_fd = OpenPTY(&tty_name); /* open pty */ | |
2992 | 4297 if (pty_master_fd >= 0) |
7 | 4298 { |
2992 | 4299 /* Leaving out O_NOCTTY may lead to waitpid() always returning |
4300 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume | |
4301 * adding O_NOCTTY always works when defined. */ | |
4302 #ifdef O_NOCTTY | |
4303 pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0); | |
4304 #else | |
4305 pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0); | |
4306 #endif | |
4307 if (pty_slave_fd < 0) | |
4308 { | |
4309 close(pty_master_fd); | |
4310 pty_master_fd = -1; | |
4311 } | |
7 | 4312 } |
4313 } | |
4314 /* | |
4315 * If not opening a pty or it didn't work, try using pipes. | |
4316 */ | |
4317 if (pty_master_fd < 0) | |
167 | 4318 # endif |
7 | 4319 { |
4320 pipe_error = (pipe(fd_toshell) < 0); | |
4321 if (!pipe_error) /* pipe create OK */ | |
4322 { | |
4323 pipe_error = (pipe(fd_fromshell) < 0); | |
4324 if (pipe_error) /* pipe create failed */ | |
4325 { | |
4326 close(fd_toshell[0]); | |
4327 close(fd_toshell[1]); | |
4328 } | |
4329 } | |
4330 if (pipe_error) | |
4331 { | |
4332 MSG_PUTS(_("\nCannot create pipes\n")); | |
4333 out_flush(); | |
4334 } | |
4335 } | |
4336 } | |
4337 | |
4338 if (!pipe_error) /* pty or pipe opened or not used */ | |
4339 { | |
4340 # ifdef __BEOS__ | |
4341 beos_cleanup_read_thread(); | |
4342 # endif | |
602 | 4343 |
7 | 4344 if ((pid = fork()) == -1) /* maybe we should use vfork() */ |
4345 { | |
4346 MSG_PUTS(_("\nCannot fork\n")); | |
167 | 4347 if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4348 # ifdef FEAT_GUI |
167 | 4349 || (gui.in_use && show_shell_mess) |
4350 # endif | |
4351 ) | |
7 | 4352 { |
167 | 4353 # ifdef FEAT_GUI |
7 | 4354 if (pty_master_fd >= 0) /* close the pseudo tty */ |
4355 { | |
4356 close(pty_master_fd); | |
4357 close(pty_slave_fd); | |
4358 } | |
4359 else /* close the pipes */ | |
167 | 4360 # endif |
7 | 4361 { |
4362 close(fd_toshell[0]); | |
4363 close(fd_toshell[1]); | |
4364 close(fd_fromshell[0]); | |
4365 close(fd_fromshell[1]); | |
4366 } | |
4367 } | |
4368 } | |
4369 else if (pid == 0) /* child */ | |
4370 { | |
4371 reset_signals(); /* handle signals normally */ | |
4372 | |
4373 if (!show_shell_mess || (options & SHELL_EXPAND)) | |
4374 { | |
4375 int fd; | |
4376 | |
4377 /* | |
4378 * Don't want to show any message from the shell. Can't just | |
4379 * close stdout and stderr though, because some systems will | |
4380 * break if you try to write to them after that, so we must | |
4381 * use dup() to replace them with something else -- webb | |
4382 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang, | |
4383 * waiting for input. | |
4384 */ | |
4385 fd = open("/dev/null", O_RDWR | O_EXTRA, 0); | |
4386 fclose(stdin); | |
4387 fclose(stdout); | |
4388 fclose(stderr); | |
4389 | |
4390 /* | |
4391 * If any of these open()'s and dup()'s fail, we just continue | |
4392 * anyway. It's not fatal, and on most systems it will make | |
4393 * no difference at all. On a few it will cause the execvp() | |
4394 * to exit with a non-zero status even when the completion | |
4395 * could be done, which is nothing too serious. If the open() | |
4396 * or dup() failed we'd just do the same thing ourselves | |
4397 * anyway -- webb | |
4398 */ | |
4399 if (fd >= 0) | |
4400 { | |
1757 | 4401 ignored = dup(fd); /* To replace stdin (fd 0) */ |
4402 ignored = dup(fd); /* To replace stdout (fd 1) */ | |
4403 ignored = dup(fd); /* To replace stderr (fd 2) */ | |
7 | 4404 |
4405 /* Don't need this now that we've duplicated it */ | |
4406 close(fd); | |
4407 } | |
4408 } | |
167 | 4409 else if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4410 # ifdef FEAT_GUI |
167 | 4411 || gui.in_use |
4412 # endif | |
4413 ) | |
7 | 4414 { |
4415 | |
167 | 4416 # ifdef HAVE_SETSID |
602 | 4417 /* Create our own process group, so that the child and all its |
4418 * children can be kill()ed. Don't do this when using pipes, | |
1698 | 4419 * because stdin is not a tty, we would lose /dev/tty. */ |
602 | 4420 if (p_stmp) |
1799 | 4421 { |
602 | 4422 (void)setsid(); |
1799 | 4423 # if defined(SIGHUP) |
4424 /* When doing "!xterm&" and 'shell' is bash: the shell | |
4425 * will exit and send SIGHUP to all processes in its | |
4426 * group, killing the just started process. Ignore SIGHUP | |
4427 * to avoid that. (suggested by Simon Schubert) | |
4428 */ | |
4429 signal(SIGHUP, SIG_IGN); | |
4430 # endif | |
4431 } | |
167 | 4432 # endif |
4433 # ifdef FEAT_GUI | |
602 | 4434 if (pty_slave_fd >= 0) |
4435 { | |
4436 /* push stream discipline modules */ | |
4437 if (options & SHELL_COOKED) | |
4438 SetupSlavePTY(pty_slave_fd); | |
7 | 4439 # ifdef TIOCSCTTY |
602 | 4440 /* Try to become controlling tty (probably doesn't work, |
4441 * unless run by root) */ | |
4442 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); | |
7 | 4443 # endif |
602 | 4444 } |
167 | 4445 # endif |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4446 set_child_environment(); |
167 | 4447 |
557 | 4448 /* |
4449 * stderr is only redirected when using the GUI, so that a | |
4450 * program like gpg can still access the terminal to get a | |
4451 * passphrase using stderr. | |
4452 */ | |
167 | 4453 # ifdef FEAT_GUI |
7 | 4454 if (pty_master_fd >= 0) |
4455 { | |
4456 close(pty_master_fd); /* close master side of pty */ | |
4457 | |
4458 /* set up stdin/stdout/stderr for the child */ | |
4459 close(0); | |
1757 | 4460 ignored = dup(pty_slave_fd); |
7 | 4461 close(1); |
1757 | 4462 ignored = dup(pty_slave_fd); |
557 | 4463 if (gui.in_use) |
4464 { | |
4465 close(2); | |
1757 | 4466 ignored = dup(pty_slave_fd); |
557 | 4467 } |
7 | 4468 |
4469 close(pty_slave_fd); /* has been dupped, close it now */ | |
4470 } | |
4471 else | |
167 | 4472 # endif |
7 | 4473 { |
4474 /* set up stdin for the child */ | |
4475 close(fd_toshell[1]); | |
4476 close(0); | |
1757 | 4477 ignored = dup(fd_toshell[0]); |
7 | 4478 close(fd_toshell[0]); |
4479 | |
4480 /* set up stdout for the child */ | |
4481 close(fd_fromshell[0]); | |
4482 close(1); | |
1757 | 4483 ignored = dup(fd_fromshell[1]); |
7 | 4484 close(fd_fromshell[1]); |
4485 | |
557 | 4486 # ifdef FEAT_GUI |
4487 if (gui.in_use) | |
4488 { | |
4489 /* set up stderr for the child */ | |
4490 close(2); | |
1757 | 4491 ignored = dup(1); |
557 | 4492 } |
4493 # endif | |
7 | 4494 } |
4495 } | |
167 | 4496 |
7 | 4497 /* |
4498 * There is no type cast for the argv, because the type may be | |
4499 * different on different machines. This may cause a warning | |
4500 * message with strict compilers, don't worry about it. | |
4501 * Call _exit() instead of exit() to avoid closing the connection | |
4502 * to the X server (esp. with GTK, which uses atexit()). | |
4503 */ | |
4504 execvp(argv[0], argv); | |
4505 _exit(EXEC_FAILED); /* exec failed, return failure code */ | |
4506 } | |
4507 else /* parent */ | |
4508 { | |
4509 /* | |
4510 * While child is running, ignore terminating signals. | |
167 | 4511 * Do catch CTRL-C, so that "got_int" is set. |
7 | 4512 */ |
4513 catch_signals(SIG_IGN, SIG_ERR); | |
167 | 4514 catch_int_signal(); |
7 | 4515 |
4516 /* | |
4517 * For the GUI we redirect stdin, stdout and stderr to our window. | |
167 | 4518 * This is also used to pipe stdin/stdout to/from the external |
4519 * command. | |
7 | 4520 */ |
167 | 4521 if ((options & (SHELL_READ|SHELL_WRITE)) |
4522 # ifdef FEAT_GUI | |
4523 || (gui.in_use && show_shell_mess) | |
4524 # endif | |
4525 ) | |
7 | 4526 { |
167 | 4527 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */ |
7 | 4528 char_u buffer[BUFLEN + 1]; |
167 | 4529 # ifdef FEAT_MBYTE |
7 | 4530 int buffer_off = 0; /* valid bytes in buffer[] */ |
167 | 4531 # endif |
7 | 4532 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ |
4533 int ta_len = 0; /* valid bytes in ta_buf[] */ | |
4534 int len; | |
4535 int p_more_save; | |
4536 int old_State; | |
4537 int c; | |
4538 int toshell_fd; | |
4539 int fromshell_fd; | |
167 | 4540 garray_T ga; |
4541 int noread_cnt; | |
1823 | 4542 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
4543 struct timeval start_tv; | |
4544 # endif | |
167 | 4545 |
4546 # ifdef FEAT_GUI | |
7 | 4547 if (pty_master_fd >= 0) |
4548 { | |
4549 fromshell_fd = pty_master_fd; | |
4550 toshell_fd = dup(pty_master_fd); | |
4551 } | |
4552 else | |
167 | 4553 # endif |
7 | 4554 { |
4555 close(fd_toshell[0]); | |
4556 close(fd_fromshell[1]); | |
4557 toshell_fd = fd_toshell[1]; | |
4558 fromshell_fd = fd_fromshell[0]; | |
4559 } | |
4560 | |
4561 /* | |
4562 * Write to the child if there are typed characters. | |
4563 * Read from the child if there are characters available. | |
4564 * Repeat the reading a few times if more characters are | |
4565 * available. Need to check for typed keys now and then, but | |
4566 * not too often (delays when no chars are available). | |
4567 * This loop is quit if no characters can be read from the pty | |
4568 * (WaitForChar detected special condition), or there are no | |
4569 * characters available and the child has exited. | |
4570 * Only check if the child has exited when there is no more | |
4571 * output. The child may exit before all the output has | |
4572 * been printed. | |
4573 * | |
4574 * Currently this busy loops! | |
4575 * This can probably dead-lock when the write blocks! | |
4576 */ | |
4577 p_more_save = p_more; | |
4578 p_more = FALSE; | |
4579 old_State = State; | |
4580 State = EXTERNCMD; /* don't redraw at window resize */ | |
4581 | |
602 | 4582 if ((options & SHELL_WRITE) && toshell_fd >= 0) |
167 | 4583 { |
4584 /* Fork a process that will write the lines to the | |
4585 * external program. */ | |
4586 if ((wpid = fork()) == -1) | |
4587 { | |
4588 MSG_PUTS(_("\nCannot fork\n")); | |
4589 } | |
3048 | 4590 else if (wpid == 0) /* child */ |
167 | 4591 { |
4592 linenr_T lnum = curbuf->b_op_start.lnum; | |
4593 int written = 0; | |
944 | 4594 char_u *lp = ml_get(lnum); |
167 | 4595 size_t l; |
4596 | |
177 | 4597 close(fromshell_fd); |
167 | 4598 for (;;) |
4599 { | |
944 | 4600 l = STRLEN(lp + written); |
167 | 4601 if (l == 0) |
4602 len = 0; | |
944 | 4603 else if (lp[written] == NL) |
167 | 4604 /* NL -> NUL translation */ |
4605 len = write(toshell_fd, "", (size_t)1); | |
4606 else | |
4607 { | |
3263 | 4608 char_u *s = vim_strchr(lp + written, NL); |
4609 | |
944 | 4610 len = write(toshell_fd, (char *)lp + written, |
1877 | 4611 s == NULL ? l |
4612 : (size_t)(s - (lp + written))); | |
167 | 4613 } |
1877 | 4614 if (len == (int)l) |
167 | 4615 { |
4616 /* Finished a line, add a NL, unless this line | |
4617 * should not have one. */ | |
4618 if (lnum != curbuf->b_op_end.lnum | |
6933 | 4619 || (!curbuf->b_p_bin |
4620 && curbuf->b_p_fixeol) | |
2707 | 4621 || (lnum != curbuf->b_no_eol_lnum |
167 | 4622 && (lnum != |
4623 curbuf->b_ml.ml_line_count | |
4624 || curbuf->b_p_eol))) | |
1757 | 4625 ignored = write(toshell_fd, "\n", |
4626 (size_t)1); | |
167 | 4627 ++lnum; |
4628 if (lnum > curbuf->b_op_end.lnum) | |
4629 { | |
4630 /* finished all the lines, close pipe */ | |
4631 close(toshell_fd); | |
4632 toshell_fd = -1; | |
4633 break; | |
4634 } | |
944 | 4635 lp = ml_get(lnum); |
167 | 4636 written = 0; |
4637 } | |
4638 else if (len > 0) | |
4639 written += len; | |
4640 } | |
4641 _exit(0); | |
4642 } | |
3048 | 4643 else /* parent */ |
167 | 4644 { |
4645 close(toshell_fd); | |
4646 toshell_fd = -1; | |
4647 } | |
4648 } | |
4649 | |
4650 if (options & SHELL_READ) | |
4651 ga_init2(&ga, 1, BUFLEN); | |
4652 | |
4653 noread_cnt = 0; | |
1823 | 4654 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
4655 gettimeofday(&start_tv, NULL); | |
4656 # endif | |
7 | 4657 for (;;) |
4658 { | |
4659 /* | |
4660 * Check if keys have been typed, write them to the child | |
592 | 4661 * if there are any. |
4662 * Don't do this if we are expanding wild cards (would eat | |
4663 * typeahead). | |
4664 * Don't do this when filtering and terminal is in cooked | |
4665 * mode, the shell command will handle the I/O. Avoids | |
4666 * that a typed password is echoed for ssh or gpg command. | |
602 | 4667 * Don't get characters when the child has already |
4668 * finished (wait_pid == 0). | |
167 | 4669 * Don't read characters unless we didn't get output for a |
1823 | 4670 * while (noread_cnt > 4), avoids that ":r !ls" eats |
4671 * typeahead. | |
7 | 4672 */ |
4673 len = 0; | |
4674 if (!(options & SHELL_EXPAND) | |
592 | 4675 && ((options & |
4676 (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) | |
4677 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) | |
1823 | 4678 # ifdef FEAT_GUI |
592 | 4679 || gui.in_use |
1823 | 4680 # endif |
592 | 4681 ) |
602 | 4682 && wait_pid == 0 |
1823 | 4683 && (ta_len > 0 || noread_cnt > 4)) |
7 | 4684 { |
1823 | 4685 if (ta_len == 0) |
4686 { | |
4687 /* Get extra characters when we don't have any. | |
4688 * Reset the counter and timer. */ | |
4689 noread_cnt = 0; | |
4690 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
4691 gettimeofday(&start_tv, NULL); | |
4692 # endif | |
4693 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); | |
4694 } | |
4695 if (ta_len > 0 || len > 0) | |
4696 { | |
7 | 4697 /* |
4698 * For pipes: | |
4699 * Check for CTRL-C: send interrupt signal to child. | |
4700 * Check for CTRL-D: EOF, close pipe to child. | |
4701 */ | |
4702 if (len == 1 && (pty_master_fd < 0 || cmd != NULL)) | |
4703 { | |
167 | 4704 # ifdef SIGINT |
7 | 4705 /* |
4706 * Send SIGINT to the child's group or all | |
4707 * processes in our group. | |
4708 */ | |
4709 if (ta_buf[ta_len] == Ctrl_C | |
4710 || ta_buf[ta_len] == intr_char) | |
167 | 4711 { |
4712 # ifdef HAVE_SETSID | |
7 | 4713 kill(-pid, SIGINT); |
167 | 4714 # else |
7 | 4715 kill(0, SIGINT); |
4716 # endif | |
167 | 4717 if (wpid > 0) |
4718 kill(wpid, SIGINT); | |
4719 } | |
4720 # endif | |
7 | 4721 if (pty_master_fd < 0 && toshell_fd >= 0 |
4722 && ta_buf[ta_len] == Ctrl_D) | |
4723 { | |
4724 close(toshell_fd); | |
4725 toshell_fd = -1; | |
4726 } | |
4727 } | |
4728 | |
4729 /* replace K_BS by <BS> and K_DEL by <DEL> */ | |
4730 for (i = ta_len; i < ta_len + len; ++i) | |
4731 { | |
4732 if (ta_buf[i] == CSI && len - i > 2) | |
4733 { | |
4734 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); | |
4735 if (c == K_DEL || c == K_KDEL || c == K_BS) | |
4736 { | |
4737 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, | |
4738 (size_t)(len - i - 2)); | |
4739 if (c == K_DEL || c == K_KDEL) | |
4740 ta_buf[i] = DEL; | |
4741 else | |
4742 ta_buf[i] = Ctrl_H; | |
4743 len -= 2; | |
4744 } | |
4745 } | |
4746 else if (ta_buf[i] == '\r') | |
4747 ta_buf[i] = '\n'; | |
167 | 4748 # ifdef FEAT_MBYTE |
7 | 4749 if (has_mbyte) |
1903 | 4750 i += (*mb_ptr2len_len)(ta_buf + i, |
4751 ta_len + len - i) - 1; | |
167 | 4752 # endif |
7 | 4753 } |
4754 | |
4755 /* | |
4756 * For pipes: echo the typed characters. | |
4757 * For a pty this does not seem to work. | |
4758 */ | |
4759 if (pty_master_fd < 0) | |
4760 { | |
4761 for (i = ta_len; i < ta_len + len; ++i) | |
4762 { | |
4763 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') | |
4764 msg_putchar(ta_buf[i]); | |
167 | 4765 # ifdef FEAT_MBYTE |
7 | 4766 else if (has_mbyte) |
4767 { | |
474 | 4768 int l = (*mb_ptr2len)(ta_buf + i); |
7 | 4769 |
4770 msg_outtrans_len(ta_buf + i, l); | |
4771 i += l - 1; | |
4772 } | |
167 | 4773 # endif |
7 | 4774 else |
4775 msg_outtrans_len(ta_buf + i, 1); | |
4776 } | |
4777 windgoto(msg_row, msg_col); | |
4778 out_flush(); | |
4779 } | |
4780 | |
4781 ta_len += len; | |
4782 | |
4783 /* | |
4784 * Write the characters to the child, unless EOF has | |
4785 * been typed for pipes. Write one character at a | |
1698 | 4786 * time, to avoid losing too much typeahead. |
167 | 4787 * When writing buffer lines, drop the typed |
4788 * characters (only check for CTRL-C). | |
7 | 4789 */ |
167 | 4790 if (options & SHELL_WRITE) |
4791 ta_len = 0; | |
4792 else if (toshell_fd >= 0) | |
7 | 4793 { |
4794 len = write(toshell_fd, (char *)ta_buf, (size_t)1); | |
4795 if (len > 0) | |
4796 { | |
4797 ta_len -= len; | |
4798 mch_memmove(ta_buf, ta_buf + len, ta_len); | |
4799 } | |
4800 } | |
1823 | 4801 } |
7 | 4802 } |
4803 | |
167 | 4804 if (got_int) |
4805 { | |
4806 /* CTRL-C sends a signal to the child, we ignore it | |
4807 * ourselves */ | |
4808 # ifdef HAVE_SETSID | |
4809 kill(-pid, SIGINT); | |
4810 # else | |
4811 kill(0, SIGINT); | |
4812 # endif | |
4813 if (wpid > 0) | |
4814 kill(wpid, SIGINT); | |
4815 got_int = FALSE; | |
4816 } | |
4817 | |
7 | 4818 /* |
4819 * Check if the child has any characters to be printed. | |
4820 * Read them and write them to our window. Repeat this as | |
4821 * long as there is something to do, avoid the 10ms wait | |
4822 * for mch_inchar(), or sending typeahead characters to | |
4823 * the external process. | |
4824 * TODO: This should handle escape sequences, compatible | |
4825 * to some terminal (vt52?). | |
4826 */ | |
167 | 4827 ++noread_cnt; |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
4828 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL)) |
7 | 4829 { |
2664 | 4830 len = read_eintr(fromshell_fd, buffer |
167 | 4831 # ifdef FEAT_MBYTE |
7 | 4832 + buffer_off, (size_t)(BUFLEN - buffer_off) |
167 | 4833 # else |
7 | 4834 , (size_t)BUFLEN |
167 | 4835 # endif |
7 | 4836 ); |
4837 if (len <= 0) /* end of file or error */ | |
4838 goto finished; | |
167 | 4839 |
4840 noread_cnt = 0; | |
4841 if (options & SHELL_READ) | |
4842 { | |
4843 /* Do NUL -> NL translation, append NL separated | |
4844 * lines to the current buffer. */ | |
4845 for (i = 0; i < len; ++i) | |
4846 { | |
4847 if (buffer[i] == NL) | |
4848 append_ga_line(&ga); | |
4849 else if (buffer[i] == NUL) | |
4850 ga_append(&ga, NL); | |
4851 else | |
4852 ga_append(&ga, buffer[i]); | |
4853 } | |
4854 } | |
4855 # ifdef FEAT_MBYTE | |
4856 else if (has_mbyte) | |
7 | 4857 { |
4858 int l; | |
4859 | |
167 | 4860 len += buffer_off; |
4861 buffer[len] = NUL; | |
4862 | |
7 | 4863 /* Check if the last character in buffer[] is |
4864 * incomplete, keep these bytes for the next | |
4865 * round. */ | |
4866 for (p = buffer; p < buffer + len; p += l) | |
4867 { | |
474 | 4868 l = mb_cptr2len(p); |
7 | 4869 if (l == 0) |
4870 l = 1; /* NUL byte? */ | |
4871 else if (MB_BYTE2LEN(*p) != l) | |
4872 break; | |
4873 } | |
4874 if (p == buffer) /* no complete character */ | |
4875 { | |
4876 /* avoid getting stuck at an illegal byte */ | |
4877 if (len >= 12) | |
4878 ++p; | |
4879 else | |
4880 { | |
4881 buffer_off = len; | |
4882 continue; | |
4883 } | |
4884 } | |
4885 c = *p; | |
4886 *p = NUL; | |
4887 msg_puts(buffer); | |
4888 if (p < buffer + len) | |
4889 { | |
4890 *p = c; | |
4891 buffer_off = (buffer + len) - p; | |
4892 mch_memmove(buffer, p, buffer_off); | |
4893 continue; | |
4894 } | |
4895 buffer_off = 0; | |
4896 } | |
167 | 4897 # endif /* FEAT_MBYTE */ |
7 | 4898 else |
4899 { | |
4900 buffer[len] = NUL; | |
4901 msg_puts(buffer); | |
4902 } | |
4903 | |
4904 windgoto(msg_row, msg_col); | |
4905 cursor_on(); | |
4906 out_flush(); | |
4907 if (got_int) | |
4908 break; | |
1823 | 4909 |
4910 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4911 if (wait_pid == 0) |
1823 | 4912 { |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
4913 long msec = elapsed(&start_tv); |
1823 | 4914 |
4915 /* Avoid that we keep looping here without | |
4916 * checking for a CTRL-C for a long time. Don't | |
4917 * break out too often to avoid losing typeahead. */ | |
4918 if (msec > 2000) | |
4919 { | |
4920 noread_cnt = 5; | |
4921 break; | |
4922 } | |
4923 } | |
4924 # endif | |
7 | 4925 } |
4926 | |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4927 /* If we already detected the child has finished, continue |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4928 * reading output for a short while. Some text may be |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4929 * buffered. */ |
602 | 4930 if (wait_pid == pid) |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4931 { |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4932 if (noread_cnt < 5) |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4933 continue; |
602 | 4934 break; |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4935 } |
602 | 4936 |
7 | 4937 /* |
4938 * Check if the child still exists, before checking for | |
1698 | 4939 * typed characters (otherwise we would lose typeahead). |
7 | 4940 */ |
167 | 4941 # ifdef __NeXT__ |
3048 | 4942 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); |
167 | 4943 # else |
7 | 4944 wait_pid = waitpid(pid, &status, WNOHANG); |
167 | 4945 # endif |
7 | 4946 if ((wait_pid == (pid_t)-1 && errno == ECHILD) |
4947 || (wait_pid == pid && WIFEXITED(status))) | |
4948 { | |
602 | 4949 /* Don't break the loop yet, try reading more |
4950 * characters from "fromshell_fd" first. When using | |
4951 * pipes there might still be something to read and | |
4952 * then we'll break the loop at the "break" above. */ | |
7 | 4953 wait_pid = pid; |
4954 } | |
602 | 4955 else |
4956 wait_pid = 0; | |
4230 | 4957 |
4248 | 4958 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 4959 /* Handle any X events, e.g. serving the clipboard. */ |
4960 clip_update(); | |
4961 # endif | |
7 | 4962 } |
4963 finished: | |
4964 p_more = p_more_save; | |
167 | 4965 if (options & SHELL_READ) |
4966 { | |
4967 if (ga.ga_len > 0) | |
4968 { | |
4969 append_ga_line(&ga); | |
4970 /* remember that the NL was missing */ | |
2707 | 4971 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; |
167 | 4972 } |
4973 else | |
2707 | 4974 curbuf->b_no_eol_lnum = 0; |
167 | 4975 ga_clear(&ga); |
4976 } | |
4977 | |
7 | 4978 /* |
4979 * Give all typeahead that wasn't used back to ui_inchar(). | |
4980 */ | |
4981 if (ta_len) | |
4982 ui_inchar_undo(ta_buf, ta_len); | |
4983 State = old_State; | |
4984 if (toshell_fd >= 0) | |
4985 close(toshell_fd); | |
4986 close(fromshell_fd); | |
4987 } | |
4248 | 4988 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 4989 else |
4990 { | |
4991 /* | |
4992 * Similar to the loop above, but only handle X events, no | |
4993 * I/O. | |
4994 */ | |
4995 for (;;) | |
4996 { | |
4997 if (got_int) | |
4998 { | |
4999 /* CTRL-C sends a signal to the child, we ignore it | |
5000 * ourselves */ | |
5001 # ifdef HAVE_SETSID | |
5002 kill(-pid, SIGINT); | |
5003 # else | |
5004 kill(0, SIGINT); | |
5005 # endif | |
5006 got_int = FALSE; | |
5007 } | |
5008 # ifdef __NeXT__ | |
5009 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); | |
5010 # else | |
5011 wait_pid = waitpid(pid, &status, WNOHANG); | |
5012 # endif | |
5013 if ((wait_pid == (pid_t)-1 && errno == ECHILD) | |
5014 || (wait_pid == pid && WIFEXITED(status))) | |
5015 { | |
5016 wait_pid = pid; | |
5017 break; | |
5018 } | |
5019 | |
5020 /* Handle any X events, e.g. serving the clipboard. */ | |
5021 clip_update(); | |
5022 | |
5023 mch_delay(10L, TRUE); | |
5024 } | |
5025 } | |
5026 # endif | |
7 | 5027 |
5028 /* | |
5029 * Wait until our child has exited. | |
5030 * Ignore wait() returning pids of other children and returning | |
5031 * because of some signal like SIGWINCH. | |
5032 * Don't wait if wait_pid was already set above, indicating the | |
5033 * child already exited. | |
5034 */ | |
3048 | 5035 if (wait_pid != pid) |
5036 wait_pid = wait4pid(pid, &status); | |
7 | 5037 |
2600 | 5038 # ifdef FEAT_GUI |
5039 /* Close slave side of pty. Only do this after the child has | |
5040 * exited, otherwise the child may hang when it tries to write on | |
5041 * the pty. */ | |
5042 if (pty_master_fd >= 0) | |
5043 close(pty_slave_fd); | |
5044 # endif | |
5045 | |
167 | 5046 /* Make sure the child that writes to the external program is |
5047 * dead. */ | |
5048 if (wpid > 0) | |
3048 | 5049 { |
167 | 5050 kill(wpid, SIGKILL); |
3048 | 5051 wait4pid(wpid, NULL); |
5052 } | |
167 | 5053 |
7 | 5054 /* |
5055 * Set to raw mode right now, otherwise a CTRL-C after | |
5056 * catch_signals() will kill Vim. | |
5057 */ | |
5058 if (tmode == TMODE_RAW) | |
5059 settmode(TMODE_RAW); | |
5060 did_settmode = TRUE; | |
5061 set_signals(); | |
5062 | |
5063 if (WIFEXITED(status)) | |
5064 { | |
129 | 5065 /* LINTED avoid "bitwise operation on signed value" */ |
7 | 5066 retval = WEXITSTATUS(status); |
4074 | 5067 if (retval != 0 && !emsg_silent) |
7 | 5068 { |
5069 if (retval == EXEC_FAILED) | |
5070 { | |
5071 MSG_PUTS(_("\nCannot execute shell ")); | |
5072 msg_outtrans(p_sh); | |
5073 msg_putchar('\n'); | |
5074 } | |
5075 else if (!(options & SHELL_SILENT)) | |
5076 { | |
5077 MSG_PUTS(_("\nshell returned ")); | |
5078 msg_outnum((long)retval); | |
5079 msg_putchar('\n'); | |
5080 } | |
5081 } | |
5082 } | |
5083 else | |
5084 MSG_PUTS(_("\nCommand terminated\n")); | |
5085 } | |
5086 } | |
5087 vim_free(argv); | |
2994 | 5088 vim_free(p_shcf_copy); |
7 | 5089 |
5090 error: | |
5091 if (!did_settmode) | |
5092 if (tmode == TMODE_RAW) | |
5093 settmode(TMODE_RAW); /* set to raw mode */ | |
5094 # ifdef FEAT_TITLE | |
5095 resettitle(); | |
5096 # endif | |
5097 vim_free(newcmd); | |
5098 | |
5099 return retval; | |
5100 | |
5101 #endif /* USE_SYSTEM */ | |
5102 } | |
5103 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5104 #if defined(FEAT_JOB_CHANNEL) || defined(PROTO) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5105 void |
8408
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5106 mch_start_job(char **argv, job_T *job, jobopt_T *options UNUSED) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5107 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5108 pid_t pid; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5109 int fd_in[2]; /* for stdin */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5110 int fd_out[2]; /* for stdout */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5111 int fd_err[2]; /* for stderr */ |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
5112 channel_T *channel = NULL; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5113 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5114 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5115 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL; |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5116 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5117 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5118 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE; |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5119 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5120 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5121 if (use_out_for_err && use_null_for_out) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5122 use_null_for_err = TRUE; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5123 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5124 /* default is to fail */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5125 job->jv_status = JOB_FAILED; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5126 fd_in[0] = -1; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5127 fd_in[1] = -1; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5128 fd_out[0] = -1; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5129 fd_out[1] = -1; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5130 fd_err[0] = -1; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5131 fd_err[1] = -1; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5132 |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
5133 /* TODO: without the channel feature connect the child to /dev/null? */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5134 /* Open pipes for stdin, stdout, stderr. */ |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5135 if (use_file_for_in) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5136 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5137 char_u *fname = options->jo_io_name[PART_IN]; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5138 |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5139 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0); |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5140 if (fd_in[0] < 0) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5141 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5142 EMSG2(_(e_notopen), fname); |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5143 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5144 } |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5145 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5146 else if (!use_null_for_in && pipe(fd_in) < 0) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5147 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5148 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5149 if (use_file_for_out) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5150 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5151 char_u *fname = options->jo_io_name[PART_OUT]; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5152 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5153 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644); |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5154 if (fd_out[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5155 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5156 EMSG2(_(e_notopen), fname); |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5157 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5158 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5159 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5160 else if (!use_null_for_out && pipe(fd_out) < 0) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5161 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5162 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5163 if (use_file_for_err) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5164 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5165 char_u *fname = options->jo_io_name[PART_ERR]; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5166 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5167 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600); |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5168 if (fd_err[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5169 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5170 EMSG2(_(e_notopen), fname); |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5171 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5172 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5173 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5174 else if (!use_out_for_err && !use_null_for_err && pipe(fd_err) < 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5175 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5176 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5177 if (!use_null_for_in || !use_null_for_out || !use_null_for_err) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5178 { |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5179 if (options->jo_set & JO_CHANNEL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5180 { |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5181 channel = options->jo_channel; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5182 if (channel != NULL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5183 ++channel->ch_refcount; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5184 } |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5185 else |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5186 channel = add_channel(); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5187 if (channel == NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5188 goto failed; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5189 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5190 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5191 pid = fork(); /* maybe we should use vfork() */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5192 if (pid == -1) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5193 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5194 /* failed to fork */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5195 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5196 } |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5197 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5198 if (pid == 0) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5199 { |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5200 int null_fd = -1; |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5201 int stderr_works = TRUE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5202 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5203 /* child */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5204 reset_signals(); /* handle signals normally */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5205 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5206 # ifdef HAVE_SETSID |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5207 /* Create our own process group, so that the child and all its |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5208 * children can be kill()ed. Don't do this when using pipes, |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5209 * because stdin is not a tty, we would lose /dev/tty. */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5210 (void)setsid(); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5211 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5212 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5213 set_child_environment(); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5214 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5215 if (use_null_for_in || use_null_for_out || use_null_for_err) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5216 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5217 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5218 /* set up stdin for the child */ |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5219 if (use_null_for_in && null_fd >= 0) |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5220 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5221 close(0); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5222 ignored = dup(null_fd); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5223 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5224 else |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5225 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5226 if (!use_file_for_in) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5227 close(fd_in[1]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5228 close(0); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5229 ignored = dup(fd_in[0]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5230 close(fd_in[0]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5231 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5232 |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5233 /* set up stderr for the child */ |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5234 if (use_null_for_err && null_fd >= 0) |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5235 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5236 close(2); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5237 ignored = dup(null_fd); |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5238 stderr_works = FALSE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5239 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5240 else if (use_out_for_err) |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5241 { |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5242 close(2); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5243 ignored = dup(fd_out[1]); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5244 } |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5245 else |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5246 { |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5247 if (!use_file_for_err) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5248 close(fd_err[0]); |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5249 close(2); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5250 ignored = dup(fd_err[1]); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5251 close(fd_err[1]); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5252 } |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5253 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5254 /* set up stdout for the child */ |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5255 if (use_null_for_out && null_fd >= 0) |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5256 { |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
5257 close(1); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5258 ignored = dup(null_fd); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5259 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5260 else |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5261 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5262 if (!use_file_for_out) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5263 close(fd_out[0]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5264 close(1); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5265 ignored = dup(fd_out[1]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5266 close(fd_out[1]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5267 } |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
5268 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5269 if (null_fd >= 0) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5270 close(null_fd); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5271 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5272 /* See above for type of argv. */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5273 execvp(argv[0], argv); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5274 |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5275 if (stderr_works) |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5276 perror("executing job failed"); |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5277 #ifdef EXITFREE |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5278 /* calling free_all_mem() here causes problems. Ignore valgrind |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5279 * reporting possibly leaked memory. */ |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5280 #endif |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5281 _exit(EXEC_FAILED); /* exec failed, return failure code */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5282 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5283 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5284 /* parent */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5285 job->jv_pid = pid; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5286 job->jv_status = JOB_STARTED; |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5287 job->jv_channel = channel; /* ch_refcount was set above */ |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5288 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5289 /* child stdin, stdout and stderr */ |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
5290 if (!use_file_for_in && fd_in[0] >= 0) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5291 close(fd_in[0]); |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
5292 if (!use_file_for_out && fd_out[1] >= 0) |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5293 close(fd_out[1]); |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
5294 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0) |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5295 close(fd_err[1]); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5296 if (channel != NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5297 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5298 channel_set_pipes(channel, |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5299 use_file_for_in || use_null_for_in |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5300 ? INVALID_FD : fd_in[1], |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5301 use_file_for_out || use_null_for_out |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5302 ? INVALID_FD : fd_out[0], |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5303 use_out_for_err || use_file_for_err || use_null_for_err |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5304 ? INVALID_FD : fd_err[0]); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5305 channel_set_job(channel, job, options); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5306 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5307 |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5308 /* success! */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5309 return; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5310 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5311 failed: |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5312 channel_unref(channel); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5313 if (fd_in[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5314 close(fd_in[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5315 if (fd_in[1] >= 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5316 close(fd_in[1]); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5317 if (fd_out[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5318 close(fd_out[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5319 if (fd_out[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5320 close(fd_out[1]); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5321 if (fd_err[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5322 close(fd_err[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5323 if (fd_err[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5324 close(fd_err[1]); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5325 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5326 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5327 char * |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5328 mch_job_status(job_T *job) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5329 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5330 # ifdef HAVE_UNION_WAIT |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5331 union wait status; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5332 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5333 int status = -1; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5334 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5335 pid_t wait_pid = 0; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5336 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5337 # ifdef __NeXT__ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5338 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5339 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5340 wait_pid = waitpid(job->jv_pid, &status, WNOHANG); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5341 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5342 if (wait_pid == -1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5343 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5344 /* process must have exited */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5345 job->jv_status = JOB_ENDED; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5346 return "dead"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5347 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5348 if (wait_pid == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5349 return "run"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5350 if (WIFEXITED(status)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5351 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5352 /* LINTED avoid "bitwise operation on signed value" */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5353 job->jv_exitval = WEXITSTATUS(status); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5354 job->jv_status = JOB_ENDED; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5355 return "dead"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5356 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5357 if (WIFSIGNALED(status)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5358 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5359 job->jv_exitval = -1; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5360 job->jv_status = JOB_ENDED; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5361 return "dead"; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5362 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5363 return "run"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5364 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5365 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5366 int |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5367 mch_stop_job(job_T *job, char_u *how) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5368 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5369 int sig = -1; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5370 pid_t job_pid; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5371 |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5372 if (*how == NUL || STRCMP(how, "term") == 0) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5373 sig = SIGTERM; |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5374 else if (STRCMP(how, "hup") == 0) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5375 sig = SIGHUP; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5376 else if (STRCMP(how, "quit") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5377 sig = SIGQUIT; |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5378 else if (STRCMP(how, "int") == 0) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5379 sig = SIGINT; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5380 else if (STRCMP(how, "kill") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5381 sig = SIGKILL; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5382 else if (isdigit(*how)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5383 sig = atoi((char *)how); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5384 else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5385 return FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5386 |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
5387 /* TODO: have an option to only kill the process, not the group? */ |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5388 job_pid = job->jv_pid; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5389 if (job_pid == getpgid(job_pid)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5390 job_pid = -job_pid; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5391 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5392 kill(job_pid, sig); |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5393 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5394 return OK; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5395 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5396 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5397 /* |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5398 * Clear the data related to "job". |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5399 */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5400 void |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5401 mch_clear_job(job_T *job) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5402 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5403 /* call waitpid because child process may become zombie */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5404 # ifdef __NeXT__ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5405 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0); |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5406 # else |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5407 (void)waitpid(job->jv_pid, NULL, WNOHANG); |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5408 # endif |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5409 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5410 #endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5411 |
7 | 5412 /* |
5413 * Check for CTRL-C typed by reading all available characters. | |
5414 * In cooked mode we should get SIGINT, no need to check. | |
5415 */ | |
5416 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5417 mch_breakcheck(void) |
7 | 5418 { |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5419 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL)) |
7 | 5420 fill_input_buf(FALSE); |
5421 } | |
5422 | |
5423 /* | |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5424 * Wait "msec" msec until a character is available from the mouse, keyboard, |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5425 * from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5426 * "msec" == -1 will block forever. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5427 * Invokes timer callbacks when needed. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5428 * "interrupted" (if not NULL) is set to TRUE when no character is available |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5429 * but something else needs to be done. |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5430 * Returns TRUE when a character is available. |
7 | 5431 * When a GUI is being used, this will never get called -- webb |
5432 */ | |
5433 static int | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5434 WaitForChar(long msec, int *interrupted) |
7 | 5435 { |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5436 #ifdef FEAT_TIMERS |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5437 long due_time; |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5438 long remaining = msec; |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5439 int tb_change_cnt = typebuf.tb_change_cnt; |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5440 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5441 /* When waiting very briefly don't trigger timers. */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5442 if (msec >= 0 && msec < 10L) |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5443 return WaitForCharOrMouse(msec, NULL); |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5444 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5445 while (msec < 0 || remaining > 0) |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5446 { |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5447 /* Trigger timers and then get the time in msec until the next one is |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5448 * due. Wait up to that time. */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5449 due_time = check_due_timer(); |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5450 if (typebuf.tb_change_cnt != tb_change_cnt) |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5451 { |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5452 /* timer may have used feedkeys() */ |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5453 return FALSE; |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5454 } |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5455 if (due_time <= 0 || (msec > 0 && due_time > remaining)) |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5456 due_time = remaining; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5457 if (WaitForCharOrMouse(due_time, interrupted)) |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5458 return TRUE; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5459 if (interrupted != NULL && *interrupted) |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5460 /* Nothing available, but need to return so that side effects get |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5461 * handled, such as handling a message on a channel. */ |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5462 return FALSE; |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5463 if (msec > 0) |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5464 remaining -= due_time; |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5465 } |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5466 return FALSE; |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5467 #else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5468 return WaitForCharOrMouse(msec, interrupted); |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5469 #endif |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5470 } |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5471 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5472 /* |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5473 * Wait "msec" msec until a character is available from the mouse or keyboard |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5474 * or from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5475 * "msec" == -1 will block forever. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5476 * "interrupted" (if not NULL) is set to TRUE when no character is available |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5477 * but something else needs to be done. |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5478 * When a GUI is being used, this will never get called -- webb |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5479 */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5480 static int |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5481 WaitForCharOrMouse(long msec, int *interrupted) |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5482 { |
7 | 5483 #ifdef FEAT_MOUSE_GPM |
5484 int gpm_process_wanted; | |
5485 #endif | |
5486 #ifdef FEAT_XCLIPBOARD | |
5487 int rest; | |
5488 #endif | |
5489 int avail; | |
5490 | |
5491 if (input_available()) /* something in inbuf[] */ | |
5492 return 1; | |
5493 | |
5494 #if defined(FEAT_MOUSE_DEC) | |
5495 /* May need to query the mouse position. */ | |
5496 if (WantQueryMouse) | |
5497 { | |
227 | 5498 WantQueryMouse = FALSE; |
7 | 5499 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5); |
5500 } | |
5501 #endif | |
5502 | |
5503 /* | |
5504 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse | |
5505 * events. This is a bit complicated, because they might both be defined. | |
5506 */ | |
5507 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD) | |
5508 # ifdef FEAT_XCLIPBOARD | |
5509 rest = 0; | |
5510 if (do_xterm_trace()) | |
5511 rest = msec; | |
5512 # endif | |
5513 do | |
5514 { | |
5515 # ifdef FEAT_XCLIPBOARD | |
5516 if (rest != 0) | |
5517 { | |
5518 msec = XT_TRACE_DELAY; | |
5519 if (rest >= 0 && rest < XT_TRACE_DELAY) | |
5520 msec = rest; | |
5521 if (rest >= 0) | |
5522 rest -= msec; | |
5523 } | |
5524 # endif | |
5525 # ifdef FEAT_MOUSE_GPM | |
5526 gpm_process_wanted = 0; | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5527 avail = RealWaitForChar(read_cmd_fd, msec, |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5528 &gpm_process_wanted, interrupted); |
7 | 5529 # else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5530 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 5531 # endif |
5532 if (!avail) | |
5533 { | |
5534 if (input_available()) | |
5535 return 1; | |
5536 # ifdef FEAT_XCLIPBOARD | |
5537 if (rest == 0 || !do_xterm_trace()) | |
5538 # endif | |
5539 break; | |
5540 } | |
5541 } | |
5542 while (FALSE | |
5543 # ifdef FEAT_MOUSE_GPM | |
5544 || (gpm_process_wanted && mch_gpm_process() == 0) | |
5545 # endif | |
5546 # ifdef FEAT_XCLIPBOARD | |
5547 || (!avail && rest != 0) | |
5548 # endif | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5549 ) |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5550 ; |
7 | 5551 |
5552 #else | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5553 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 5554 #endif |
5555 return avail; | |
5556 } | |
5557 | |
5541 | 5558 #ifndef VMS |
7 | 5559 /* |
5560 * Wait "msec" msec until a character is available from file descriptor "fd". | |
3046 | 5561 * "msec" == 0 will check for characters once. |
5562 * "msec" == -1 will block until a character is available. | |
7 | 5563 * When a GUI is being used, this will not be used for input -- webb |
5564 * Or when a Linux GPM mouse event is waiting. | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5565 * Or when a clientserver message is on the queue. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5566 * "interrupted" (if not NULL) is set to TRUE when no character is available |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5567 * but something else needs to be done. |
7 | 5568 */ |
5569 #if defined(__BEOS__) | |
5570 int | |
5571 #else | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5572 static int |
7 | 5573 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5574 RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) |
7 | 5575 { |
5576 int ret; | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5577 int result; |
14 | 5578 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) |
7 | 5579 static int busy = FALSE; |
5580 | |
5581 /* May retry getting characters after an event was handled. */ | |
5582 # define MAY_LOOP | |
5583 | |
5584 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
5585 /* Remember at what time we started, so that we know how much longer we | |
5586 * should wait after being interrupted. */ | |
5587 # define USE_START_TV | |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
5588 long start_msec = msec; |
7 | 5589 struct timeval start_tv; |
5590 | |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
5591 if (msec > 0) |
7 | 5592 gettimeofday(&start_tv, NULL); |
5593 # endif | |
5594 | |
5595 /* Handle being called recursively. This may happen for the session | |
5596 * manager stuff, it may save the file, which does a breakcheck. */ | |
5597 if (busy) | |
5598 return 0; | |
5599 #endif | |
5600 | |
5601 #ifdef MAY_LOOP | |
407 | 5602 for (;;) |
7 | 5603 #endif |
5604 { | |
5605 #ifdef MAY_LOOP | |
5606 int finished = TRUE; /* default is to 'loop' just once */ | |
14 | 5607 # ifdef FEAT_MZSCHEME |
5608 int mzquantum_used = FALSE; | |
5609 # endif | |
7 | 5610 #endif |
5611 #ifndef HAVE_SELECT | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5612 /* each channel may use in, out and err */ |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5613 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS]; |
7 | 5614 int nfd; |
5615 # ifdef FEAT_XCLIPBOARD | |
5616 int xterm_idx = -1; | |
5617 # endif | |
5618 # ifdef FEAT_MOUSE_GPM | |
5619 int gpm_idx = -1; | |
5620 # endif | |
5621 # ifdef USE_XSMP | |
5622 int xsmp_idx = -1; | |
5623 # endif | |
14 | 5624 int towait = (int)msec; |
5625 | |
5626 # ifdef FEAT_MZSCHEME | |
5627 mzvim_check_threads(); | |
5628 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
5629 { | |
5630 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */ | |
5631 mzquantum_used = TRUE; | |
5632 } | |
5633 # endif | |
7 | 5634 fds[0].fd = fd; |
5635 fds[0].events = POLLIN; | |
5636 nfd = 1; | |
5637 | |
5638 # ifdef FEAT_XCLIPBOARD | |
6383 | 5639 may_restore_clipboard(); |
7 | 5640 if (xterm_Shell != (Widget)0) |
5641 { | |
5642 xterm_idx = nfd; | |
5643 fds[nfd].fd = ConnectionNumber(xterm_dpy); | |
5644 fds[nfd].events = POLLIN; | |
5645 nfd++; | |
5646 } | |
5647 # endif | |
5648 # ifdef FEAT_MOUSE_GPM | |
5649 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
5650 { | |
5651 gpm_idx = nfd; | |
5652 fds[nfd].fd = gpm_fd; | |
5653 fds[nfd].events = POLLIN; | |
5654 nfd++; | |
5655 } | |
5656 # endif | |
5657 # ifdef USE_XSMP | |
5658 if (xsmp_icefd != -1) | |
5659 { | |
5660 xsmp_idx = nfd; | |
5661 fds[nfd].fd = xsmp_icefd; | |
5662 fds[nfd].events = POLLIN; | |
5663 nfd++; | |
5664 } | |
5665 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5666 #ifdef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5667 nfd = channel_poll_setup(nfd, &fds); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
5668 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5669 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5670 *interrupted = FALSE; |
7 | 5671 |
14 | 5672 ret = poll(fds, nfd, towait); |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5673 |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5674 result = ret > 0 && (fds[0].revents & POLLIN); |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5675 if (result == 0 && interrupted != NULL && ret > 0) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5676 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5677 |
14 | 5678 # ifdef FEAT_MZSCHEME |
5679 if (ret == 0 && mzquantum_used) | |
1450 | 5680 /* MzThreads scheduling is required and timeout occurred */ |
14 | 5681 finished = FALSE; |
5682 # endif | |
7 | 5683 |
5684 # ifdef FEAT_XCLIPBOARD | |
5685 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN)) | |
5686 { | |
5687 xterm_update(); /* Maybe we should hand out clipboard */ | |
5688 if (--ret == 0 && !input_available()) | |
5689 /* Try again */ | |
5690 finished = FALSE; | |
5691 } | |
5692 # endif | |
5693 # ifdef FEAT_MOUSE_GPM | |
5694 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN)) | |
5695 { | |
5696 *check_for_gpm = 1; | |
5697 } | |
5698 # endif | |
5699 # ifdef USE_XSMP | |
5700 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP))) | |
5701 { | |
5702 if (fds[xsmp_idx].revents & POLLIN) | |
5703 { | |
5704 busy = TRUE; | |
5705 xsmp_handle_requests(); | |
5706 busy = FALSE; | |
5707 } | |
5708 else if (fds[xsmp_idx].revents & POLLHUP) | |
5709 { | |
5710 if (p_verbose > 0) | |
292 | 5711 verb_msg((char_u *)_("XSMP lost ICE connection")); |
7 | 5712 xsmp_close(); |
5713 } | |
5714 if (--ret == 0) | |
14 | 5715 finished = FALSE; /* Try again */ |
7 | 5716 } |
5717 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5718 #ifdef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5719 if (ret > 0) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5720 ret = channel_poll_check(ret, &fds); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
5721 #endif |
7 | 5722 |
5723 #else /* HAVE_SELECT */ | |
5724 | |
5725 struct timeval tv; | |
14 | 5726 struct timeval *tvp; |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5727 fd_set rfds, wfds, efds; |
7 | 5728 int maxfd; |
14 | 5729 long towait = msec; |
5730 | |
5731 # ifdef FEAT_MZSCHEME | |
5732 mzvim_check_threads(); | |
5733 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
5734 { | |
5735 towait = p_mzq; /* don't wait longer than 'mzquantum' */ | |
5736 mzquantum_used = TRUE; | |
5737 } | |
5738 # endif | |
7 | 5739 # ifdef __EMX__ |
5740 /* don't check for incoming chars if not in raw mode, because select() | |
5741 * always returns TRUE then (in some version of emx.dll) */ | |
5742 if (curr_tmode != TMODE_RAW) | |
5743 return 0; | |
5744 # endif | |
5745 | |
14 | 5746 if (towait >= 0) |
7 | 5747 { |
14 | 5748 tv.tv_sec = towait / 1000; |
5749 tv.tv_usec = (towait % 1000) * (1000000/1000); | |
5750 tvp = &tv; | |
7 | 5751 } |
14 | 5752 else |
5753 tvp = NULL; | |
7 | 5754 |
5755 /* | |
5756 * Select on ready for reading and exceptional condition (end of file). | |
5757 */ | |
3046 | 5758 select_eintr: |
5759 FD_ZERO(&rfds); | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5760 FD_ZERO(&wfds); |
7 | 5761 FD_ZERO(&efds); |
5762 FD_SET(fd, &rfds); | |
5763 # if !defined(__QNX__) && !defined(__CYGWIN32__) | |
5764 /* For QNX select() always returns 1 if this is set. Why? */ | |
5765 FD_SET(fd, &efds); | |
5766 # endif | |
5767 maxfd = fd; | |
5768 | |
5769 # ifdef FEAT_XCLIPBOARD | |
6383 | 5770 may_restore_clipboard(); |
7 | 5771 if (xterm_Shell != (Widget)0) |
5772 { | |
5773 FD_SET(ConnectionNumber(xterm_dpy), &rfds); | |
5774 if (maxfd < ConnectionNumber(xterm_dpy)) | |
5775 maxfd = ConnectionNumber(xterm_dpy); | |
3748 | 5776 |
5777 /* An event may have already been read but not handled. In | |
5778 * particulary, XFlush may cause this. */ | |
5779 xterm_update(); | |
7 | 5780 } |
5781 # endif | |
5782 # ifdef FEAT_MOUSE_GPM | |
5783 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
5784 { | |
5785 FD_SET(gpm_fd, &rfds); | |
5786 FD_SET(gpm_fd, &efds); | |
5787 if (maxfd < gpm_fd) | |
5788 maxfd = gpm_fd; | |
5789 } | |
5790 # endif | |
5791 # ifdef USE_XSMP | |
5792 if (xsmp_icefd != -1) | |
5793 { | |
5794 FD_SET(xsmp_icefd, &rfds); | |
5795 FD_SET(xsmp_icefd, &efds); | |
5796 if (maxfd < xsmp_icefd) | |
5797 maxfd = xsmp_icefd; | |
5798 } | |
5799 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5800 # ifdef FEAT_JOB_CHANNEL |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5801 maxfd = channel_select_setup(maxfd, &rfds, &wfds); |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5802 # endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5803 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5804 *interrupted = FALSE; |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5805 |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5806 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp); |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5807 result = ret > 0 && FD_ISSET(fd, &rfds); |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5808 if (result) |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5809 --ret; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5810 else if (interrupted != NULL && ret > 0) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5811 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5812 |
3046 | 5813 # ifdef EINTR |
5814 if (ret == -1 && errno == EINTR) | |
3133 | 5815 { |
5816 /* Check whether window has been resized, EINTR may be caused by | |
5817 * SIGWINCH. */ | |
5818 if (do_resize) | |
5819 handle_resize(); | |
5820 | |
3046 | 5821 /* Interrupted by a signal, need to try again. We ignore msec |
5822 * here, because we do want to check even after a timeout if | |
5823 * characters are available. Needed for reading output of an | |
5824 * external command after the process has finished. */ | |
5825 goto select_eintr; | |
3133 | 5826 } |
3046 | 5827 # endif |
1076 | 5828 # ifdef __TANDEM |
5829 if (ret == -1 && errno == ENOTSUP) | |
5830 { | |
5831 FD_ZERO(&rfds); | |
5832 FD_ZERO(&efds); | |
5833 ret = 0; | |
5834 } | |
3046 | 5835 # endif |
14 | 5836 # ifdef FEAT_MZSCHEME |
5837 if (ret == 0 && mzquantum_used) | |
1450 | 5838 /* loop if MzThreads must be scheduled and timeout occurred */ |
14 | 5839 finished = FALSE; |
7 | 5840 # endif |
5841 | |
5842 # ifdef FEAT_XCLIPBOARD | |
5843 if (ret > 0 && xterm_Shell != (Widget)0 | |
5844 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds)) | |
5845 { | |
5846 xterm_update(); /* Maybe we should hand out clipboard */ | |
5847 /* continue looping when we only got the X event and the input | |
5848 * buffer is empty */ | |
5849 if (--ret == 0 && !input_available()) | |
5850 { | |
5851 /* Try again */ | |
5852 finished = FALSE; | |
5853 } | |
5854 } | |
5855 # endif | |
5856 # ifdef FEAT_MOUSE_GPM | |
5857 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0) | |
5858 { | |
5859 if (FD_ISSET(gpm_fd, &efds)) | |
5860 gpm_close(); | |
5861 else if (FD_ISSET(gpm_fd, &rfds)) | |
5862 *check_for_gpm = 1; | |
5863 } | |
5864 # endif | |
5865 # ifdef USE_XSMP | |
5866 if (ret > 0 && xsmp_icefd != -1) | |
5867 { | |
5868 if (FD_ISSET(xsmp_icefd, &efds)) | |
5869 { | |
5870 if (p_verbose > 0) | |
292 | 5871 verb_msg((char_u *)_("XSMP lost ICE connection")); |
7 | 5872 xsmp_close(); |
5873 if (--ret == 0) | |
5874 finished = FALSE; /* keep going if event was only one */ | |
5875 } | |
5876 else if (FD_ISSET(xsmp_icefd, &rfds)) | |
5877 { | |
5878 busy = TRUE; | |
5879 xsmp_handle_requests(); | |
5880 busy = FALSE; | |
5881 if (--ret == 0) | |
5882 finished = FALSE; /* keep going if event was only one */ | |
5883 } | |
5884 } | |
5885 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5886 #ifdef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5887 if (ret > 0) |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5888 ret = channel_select_check(ret, &rfds, &wfds); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
5889 #endif |
7 | 5890 |
5891 #endif /* HAVE_SELECT */ | |
5892 | |
5893 #ifdef MAY_LOOP | |
5894 if (finished || msec == 0) | |
5895 break; | |
5896 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5897 # ifdef FEAT_CLIENTSERVER |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5898 if (server_waiting()) |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5899 break; |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5900 # endif |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5901 |
7 | 5902 /* We're going to loop around again, find out for how long */ |
5903 if (msec > 0) | |
5904 { | |
5905 # ifdef USE_START_TV | |
5906 /* Compute remaining wait time. */ | |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
5907 msec = start_msec - elapsed(&start_tv); |
7 | 5908 # else |
5909 /* Guess we got interrupted halfway. */ | |
5910 msec = msec / 2; | |
5911 # endif | |
5912 if (msec <= 0) | |
5913 break; /* waited long enough */ | |
5914 } | |
5915 #endif | |
5916 } | |
5917 | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5918 return result; |
7 | 5919 } |
5920 | |
5921 #ifndef NO_EXPANDPATH | |
5922 /* | |
444 | 5923 * Expand a path into all matching files and/or directories. Handles "*", |
5924 * "?", "[a-z]", "**", etc. | |
5925 * "path" has backslashes before chars that are not to be expanded. | |
5926 * Returns the number of matches found. | |
7 | 5927 */ |
5928 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5929 mch_expandpath( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5930 garray_T *gap, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5931 char_u *path, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5932 int flags) /* EW_* flags */ |
7 | 5933 { |
444 | 5934 return unix_expandpath(gap, path, 0, flags, FALSE); |
7 | 5935 } |
5936 #endif | |
5937 | |
5938 /* | |
5939 * mch_expand_wildcards() - this code does wild-card pattern matching using | |
5940 * the shell | |
5941 * | |
5942 * return OK for success, FAIL for error (you may lose some memory) and put | |
5943 * an error message in *file. | |
5944 * | |
5945 * num_pat is number of input patterns | |
5946 * pat is array of pointers to input patterns | |
5947 * num_file is pointer to number of matched file names | |
5948 * file is pointer to array of pointers to matched file names | |
5949 */ | |
5950 | |
5951 #ifndef SEEK_SET | |
5952 # define SEEK_SET 0 | |
5953 #endif | |
5954 #ifndef SEEK_END | |
5955 # define SEEK_END 2 | |
5956 #endif | |
5957 | |
822 | 5958 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|" |
628 | 5959 |
7 | 5960 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5961 mch_expand_wildcards( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5962 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5963 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5964 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5965 char_u ***file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5966 int flags) /* EW_* flags */ |
7 | 5967 { |
5968 int i; | |
5969 size_t len; | |
5970 char_u *p; | |
5971 int dir; | |
5972 #ifdef __EMX__ | |
1508 | 5973 /* |
5974 * This is the OS/2 implementation. | |
5975 */ | |
7 | 5976 # define EXPL_ALLOC_INC 16 |
5977 char_u **expl_files; | |
5978 size_t files_alloced, files_free; | |
5979 char_u *buf; | |
5980 int has_wildcard; | |
5981 | |
5982 *num_file = 0; /* default: no files found */ | |
5983 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */ | |
5984 files_free = EXPL_ALLOC_INC; /* how much space is not used */ | |
5985 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced); | |
5986 if (*file == NULL) | |
5987 return FAIL; | |
5988 | |
5989 for (; num_pat > 0; num_pat--, pat++) | |
5990 { | |
5991 expl_files = NULL; | |
5992 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~')) | |
5993 /* expand environment var or home dir */ | |
5994 buf = expand_env_save(*pat); | |
5995 else | |
5996 buf = vim_strsave(*pat); | |
5997 expl_files = NULL; | |
99 | 5998 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */ |
7 | 5999 if (has_wildcard) /* yes, so expand them */ |
6000 expl_files = (char_u **)_fnexplode(buf); | |
6001 | |
6002 /* | |
6003 * return value of buf if no wildcards left, | |
6004 * OR if no match AND EW_NOTFOUND is set. | |
6005 */ | |
6006 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0)) | |
6007 || (expl_files == NULL && (flags & EW_NOTFOUND))) | |
6008 { /* simply save the current contents of *buf */ | |
6009 expl_files = (char_u **)alloc(sizeof(char_u **) * 2); | |
6010 if (expl_files != NULL) | |
6011 { | |
6012 expl_files[0] = vim_strsave(buf); | |
6013 expl_files[1] = NULL; | |
6014 } | |
6015 } | |
6016 vim_free(buf); | |
6017 | |
6018 /* | |
6019 * Count number of names resulting from expansion, | |
6020 * At the same time add a backslash to the end of names that happen to | |
6021 * be directories, and replace slashes with backslashes. | |
6022 */ | |
6023 if (expl_files) | |
6024 { | |
6025 for (i = 0; (p = expl_files[i]) != NULL; i++) | |
6026 { | |
6027 dir = mch_isdir(p); | |
6028 /* If we don't want dirs and this is one, skip it */ | |
6029 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE))) | |
6030 continue; | |
6031 | |
715 | 6032 /* Skip files that are not executable if we check for that. */ |
6695 | 6033 if (!dir && (flags & EW_EXEC) |
6034 && !mch_can_exe(p, NULL, !(flags & EW_SHELLCMD))) | |
715 | 6035 continue; |
6036 | |
7 | 6037 if (--files_free == 0) |
6038 { | |
6039 /* need more room in table of pointers */ | |
6040 files_alloced += EXPL_ALLOC_INC; | |
6041 *file = (char_u **)vim_realloc(*file, | |
6042 sizeof(char_u **) * files_alloced); | |
6043 if (*file == NULL) | |
6044 { | |
6045 EMSG(_(e_outofmem)); | |
6046 *num_file = 0; | |
6047 return FAIL; | |
6048 } | |
6049 files_free = EXPL_ALLOC_INC; | |
6050 } | |
6051 slash_adjust(p); | |
6052 if (dir) | |
6053 { | |
6054 /* For a directory we add a '/', unless it's already | |
6055 * there. */ | |
6056 len = STRLEN(p); | |
6057 if (((*file)[*num_file] = alloc(len + 2)) != NULL) | |
6058 { | |
6059 STRCPY((*file)[*num_file], p); | |
902 | 6060 if (!after_pathsep((*file)[*num_file], |
6061 (*file)[*num_file] + len)) | |
7 | 6062 { |
6063 (*file)[*num_file][len] = psepc; | |
39 | 6064 (*file)[*num_file][len + 1] = NUL; |
7 | 6065 } |
6066 } | |
6067 } | |
6068 else | |
6069 { | |
6070 (*file)[*num_file] = vim_strsave(p); | |
6071 } | |
6072 | |
6073 /* | |
6074 * Error message already given by either alloc or vim_strsave. | |
6075 * Should return FAIL, but returning OK works also. | |
6076 */ | |
6077 if ((*file)[*num_file] == NULL) | |
6078 break; | |
6079 (*num_file)++; | |
6080 } | |
6081 _fnexplodefree((char **)expl_files); | |
6082 } | |
6083 } | |
6084 return OK; | |
6085 | |
6086 #else /* __EMX__ */ | |
1508 | 6087 /* |
6088 * This is the non-OS/2 implementation (really Unix). | |
6089 */ | |
7 | 6090 int j; |
6091 char_u *tempname; | |
6092 char_u *command; | |
6093 FILE *fd; | |
6094 char_u *buffer; | |
1508 | 6095 #define STYLE_ECHO 0 /* use "echo", the default */ |
6096 #define STYLE_GLOB 1 /* use "glob", for csh */ | |
6097 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */ | |
6098 #define STYLE_PRINT 3 /* use "print -N", for zsh */ | |
6099 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern | |
6100 * directly */ | |
7 | 6101 int shell_style = STYLE_ECHO; |
6102 int check_spaces; | |
6103 static int did_find_nul = FALSE; | |
6104 int ampersent = FALSE; | |
1508 | 6105 /* vimglob() function to define for Posix shell */ |
1620 | 6106 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >"; |
7 | 6107 |
6108 *num_file = 0; /* default: no files found */ | |
6109 *file = NULL; | |
6110 | |
6111 /* | |
6112 * If there are no wildcards, just copy the names to allocated memory. | |
6113 * Saves a lot of time, because we don't have to start a new shell. | |
6114 */ | |
6115 if (!have_wildcard(num_pat, pat)) | |
6116 return save_patterns(num_pat, pat, num_file, file); | |
6117 | |
428 | 6118 # ifdef HAVE_SANDBOX |
6119 /* Don't allow any shell command in the sandbox. */ | |
6120 if (sandbox != 0 && check_secure()) | |
6121 return FAIL; | |
6122 # endif | |
6123 | |
7 | 6124 /* |
6125 * Don't allow the use of backticks in secure and restricted mode. | |
6126 */ | |
428 | 6127 if (secure || restricted) |
7 | 6128 for (i = 0; i < num_pat; ++i) |
6129 if (vim_strchr(pat[i], '`') != NULL | |
6130 && (check_restricted() || check_secure())) | |
6131 return FAIL; | |
6132 | |
6133 /* | |
6134 * get a name for the temp file | |
6135 */ | |
6721 | 6136 if ((tempname = vim_tempname('o', FALSE)) == NULL) |
7 | 6137 { |
6138 EMSG(_(e_notmp)); | |
6139 return FAIL; | |
6140 } | |
6141 | |
6142 /* | |
6143 * Let the shell expand the patterns and write the result into the temp | |
1508 | 6144 * file. |
6145 * STYLE_BT: NL separated | |
6146 * If expanding `cmd` execute it directly. | |
6147 * STYLE_GLOB: NUL separated | |
6148 * If we use *csh, "glob" will work better than "echo". | |
6149 * STYLE_PRINT: NL or NUL separated | |
6150 * If we use *zsh, "print -N" will work better than "glob". | |
6151 * STYLE_VIMGLOB: NL separated | |
6152 * If we use *sh*, we define "vimglob()". | |
6153 * STYLE_ECHO: space separated. | |
6154 * A shell we don't know, stay safe and use "echo". | |
7 | 6155 */ |
6156 if (num_pat == 1 && *pat[0] == '`' | |
6157 && (len = STRLEN(pat[0])) > 2 | |
6158 && *(pat[0] + len - 1) == '`') | |
6159 shell_style = STYLE_BT; | |
6160 else if ((len = STRLEN(p_sh)) >= 3) | |
6161 { | |
6162 if (STRCMP(p_sh + len - 3, "csh") == 0) | |
6163 shell_style = STYLE_GLOB; | |
6164 else if (STRCMP(p_sh + len - 3, "zsh") == 0) | |
6165 shell_style = STYLE_PRINT; | |
6166 } | |
1508 | 6167 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh), |
6168 "sh") != NULL) | |
6169 shell_style = STYLE_VIMGLOB; | |
6170 | |
6171 /* Compute the length of the command. We need 2 extra bytes: for the | |
6172 * optional '&' and for the NUL. | |
6173 * Worst case: "unset nonomatch; print -N >" plus two is 29 */ | |
7 | 6174 len = STRLEN(tempname) + 29; |
1508 | 6175 if (shell_style == STYLE_VIMGLOB) |
6176 len += STRLEN(sh_vimglob_func); | |
6177 | |
147 | 6178 for (i = 0; i < num_pat; ++i) |
6179 { | |
6180 /* Count the length of the patterns in the same way as they are put in | |
6181 * "command" below. */ | |
6182 #ifdef USE_SYSTEM | |
7 | 6183 len += STRLEN(pat[i]) + 3; /* add space and two quotes */ |
147 | 6184 #else |
6185 ++len; /* add space */ | |
628 | 6186 for (j = 0; pat[i][j] != NUL; ++j) |
6187 { | |
6188 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
6189 ++len; /* may add a backslash */ | |
6190 ++len; | |
6191 } | |
147 | 6192 #endif |
6193 } | |
7 | 6194 command = alloc(len); |
6195 if (command == NULL) | |
6196 { | |
6197 /* out of memory */ | |
6198 vim_free(tempname); | |
6199 return FAIL; | |
6200 } | |
6201 | |
6202 /* | |
6203 * Build the shell command: | |
6204 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell | |
6205 * recognizes this). | |
6206 * - Add the shell command to print the expanded names. | |
6207 * - Add the temp file name. | |
6208 * - Add the file name patterns. | |
6209 */ | |
6210 if (shell_style == STYLE_BT) | |
6211 { | |
628 | 6212 /* change `command; command& ` to (command; command ) */ |
6213 STRCPY(command, "("); | |
6214 STRCAT(command, pat[0] + 1); /* exclude first backtick */ | |
7 | 6215 p = command + STRLEN(command) - 1; |
628 | 6216 *p-- = ')'; /* remove last backtick */ |
7 | 6217 while (p > command && vim_iswhite(*p)) |
6218 --p; | |
6219 if (*p == '&') /* remove trailing '&' */ | |
6220 { | |
6221 ampersent = TRUE; | |
6222 *p = ' '; | |
6223 } | |
6224 STRCAT(command, ">"); | |
6225 } | |
6226 else | |
6227 { | |
6228 if (flags & EW_NOTFOUND) | |
6229 STRCPY(command, "set nonomatch; "); | |
6230 else | |
6231 STRCPY(command, "unset nonomatch; "); | |
6232 if (shell_style == STYLE_GLOB) | |
6233 STRCAT(command, "glob >"); | |
6234 else if (shell_style == STYLE_PRINT) | |
6235 STRCAT(command, "print -N >"); | |
1508 | 6236 else if (shell_style == STYLE_VIMGLOB) |
6237 STRCAT(command, sh_vimglob_func); | |
7 | 6238 else |
6239 STRCAT(command, "echo >"); | |
6240 } | |
1508 | 6241 |
7 | 6242 STRCAT(command, tempname); |
1508 | 6243 |
7 | 6244 if (shell_style != STYLE_BT) |
6245 for (i = 0; i < num_pat; ++i) | |
6246 { | |
6247 /* When using system() always add extra quotes, because the shell | |
628 | 6248 * is started twice. Otherwise put a backslash before special |
1450 | 6249 * characters, except inside ``. */ |
7 | 6250 #ifdef USE_SYSTEM |
6251 STRCAT(command, " \""); | |
6252 STRCAT(command, pat[i]); | |
6253 STRCAT(command, "\""); | |
6254 #else | |
233 | 6255 int intick = FALSE; |
6256 | |
7 | 6257 p = command + STRLEN(command); |
6258 *p++ = ' '; | |
628 | 6259 for (j = 0; pat[i][j] != NUL; ++j) |
233 | 6260 { |
6261 if (pat[i][j] == '`') | |
6262 intick = !intick; | |
628 | 6263 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL) |
6264 { | |
644 | 6265 /* Remove a backslash, take char literally. But keep |
652 | 6266 * backslash inside backticks, before a special character |
6267 * and before a backtick. */ | |
644 | 6268 if (intick |
652 | 6269 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL |
6270 || pat[i][j + 1] == '`') | |
644 | 6271 *p++ = '\\'; |
648 | 6272 ++j; |
628 | 6273 } |
6174 | 6274 else if (!intick |
6275 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$') | |
6276 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
628 | 6277 /* Put a backslash before a special character, but not |
6174 | 6278 * when inside ``. And not for $var when EW_KEEPDOLLAR is |
6279 * set. */ | |
628 | 6280 *p++ = '\\'; |
648 | 6281 |
6282 /* Copy one character. */ | |
6283 *p++ = pat[i][j]; | |
233 | 6284 } |
7 | 6285 *p = NUL; |
6286 #endif | |
6287 } | |
6288 if (flags & EW_SILENT) | |
6289 show_shell_mess = FALSE; | |
6290 if (ampersent) | |
1508 | 6291 STRCAT(command, "&"); /* put the '&' after the redirection */ |
7 | 6292 |
6293 /* | |
6294 * Using zsh -G: If a pattern has no matches, it is just deleted from | |
6295 * the argument list, otherwise zsh gives an error message and doesn't | |
6296 * expand any other pattern. | |
6297 */ | |
6298 if (shell_style == STYLE_PRINT) | |
6299 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */ | |
6300 | |
6301 /* | |
6302 * If we use -f then shell variables set in .cshrc won't get expanded. | |
6303 * vi can do it, so we will too, but it is only necessary if there is a "$" | |
6304 * in one of the patterns, otherwise we can still use the fast option. | |
6305 */ | |
6306 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat)) | |
6307 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */ | |
6308 | |
6309 /* | |
6310 * execute the shell command | |
6311 */ | |
6312 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT); | |
6313 | |
6314 /* When running in the background, give it some time to create the temp | |
6315 * file, but don't wait for it to finish. */ | |
6316 if (ampersent) | |
6317 mch_delay(10L, TRUE); | |
6318 | |
6319 extra_shell_arg = NULL; /* cleanup */ | |
6320 show_shell_mess = TRUE; | |
6321 vim_free(command); | |
6322 | |
1508 | 6323 if (i != 0) /* mch_call_shell() failed */ |
7 | 6324 { |
6325 mch_remove(tempname); | |
6326 vim_free(tempname); | |
6327 /* | |
6328 * With interactive completion, the error message is not printed. | |
6329 * However with USE_SYSTEM, I don't know how to turn off error messages | |
6330 * from the shell, so screen may still get messed up -- webb. | |
6331 */ | |
6332 #ifndef USE_SYSTEM | |
6333 if (!(flags & EW_SILENT)) | |
6334 #endif | |
6335 { | |
6336 redraw_later_clear(); /* probably messed up screen */ | |
6337 msg_putchar('\n'); /* clear bottom line quickly */ | |
6338 cmdline_row = Rows - 1; /* continue on last line */ | |
6339 #ifdef USE_SYSTEM | |
6340 if (!(flags & EW_SILENT)) | |
6341 #endif | |
6342 { | |
6343 MSG(_(e_wildexpand)); | |
6344 msg_start(); /* don't overwrite this message */ | |
6345 } | |
6346 } | |
6347 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when | |
6348 * EW_NOTFOUND is given */ | |
6349 if (shell_style == STYLE_BT) | |
6350 return FAIL; | |
6351 goto notfound; | |
6352 } | |
6353 | |
6354 /* | |
6355 * read the names from the file into memory | |
6356 */ | |
6357 fd = fopen((char *)tempname, READBIN); | |
6358 if (fd == NULL) | |
6359 { | |
6360 /* Something went wrong, perhaps a file name with a special char. */ | |
6361 if (!(flags & EW_SILENT)) | |
6362 { | |
6363 MSG(_(e_wildexpand)); | |
6364 msg_start(); /* don't overwrite this message */ | |
6365 } | |
6366 vim_free(tempname); | |
6367 goto notfound; | |
6368 } | |
6369 fseek(fd, 0L, SEEK_END); | |
6370 len = ftell(fd); /* get size of temp file */ | |
6371 fseek(fd, 0L, SEEK_SET); | |
6372 buffer = alloc(len + 1); | |
6373 if (buffer == NULL) | |
6374 { | |
6375 /* out of memory */ | |
6376 mch_remove(tempname); | |
6377 vim_free(tempname); | |
6378 fclose(fd); | |
6379 return FAIL; | |
6380 } | |
6381 i = fread((char *)buffer, 1, len, fd); | |
6382 fclose(fd); | |
6383 mch_remove(tempname); | |
1877 | 6384 if (i != (int)len) |
7 | 6385 { |
6386 /* unexpected read error */ | |
6387 EMSG2(_(e_notread), tempname); | |
6388 vim_free(tempname); | |
6389 vim_free(buffer); | |
6390 return FAIL; | |
6391 } | |
6392 vim_free(tempname); | |
6393 | |
1508 | 6394 # if defined(__CYGWIN__) || defined(__CYGWIN32__) |
7 | 6395 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */ |
6396 p = buffer; | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
6397 for (i = 0; i < (int)len; ++i) |
7 | 6398 if (!(buffer[i] == CAR && buffer[i + 1] == NL)) |
6399 *p++ = buffer[i]; | |
6400 len = p - buffer; | |
6401 # endif | |
6402 | |
6403 | |
6404 /* file names are separated with Space */ | |
6405 if (shell_style == STYLE_ECHO) | |
6406 { | |
6407 buffer[len] = '\n'; /* make sure the buffer ends in NL */ | |
6408 p = buffer; | |
6409 for (i = 0; *p != '\n'; ++i) /* count number of entries */ | |
6410 { | |
6411 while (*p != ' ' && *p != '\n') | |
6412 ++p; | |
6413 p = skipwhite(p); /* skip to next entry */ | |
6414 } | |
6415 } | |
6416 /* file names are separated with NL */ | |
1508 | 6417 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB) |
7 | 6418 { |
6419 buffer[len] = NUL; /* make sure the buffer ends in NUL */ | |
6420 p = buffer; | |
6421 for (i = 0; *p != NUL; ++i) /* count number of entries */ | |
6422 { | |
6423 while (*p != '\n' && *p != NUL) | |
6424 ++p; | |
6425 if (*p != NUL) | |
6426 ++p; | |
6427 p = skipwhite(p); /* skip leading white space */ | |
6428 } | |
6429 } | |
6430 /* file names are separated with NUL */ | |
6431 else | |
6432 { | |
6433 /* | |
6434 * Some versions of zsh use spaces instead of NULs to separate | |
6435 * results. Only do this when there is no NUL before the end of the | |
6436 * buffer, otherwise we would never be able to use file names with | |
6437 * embedded spaces when zsh does use NULs. | |
6438 * When we found a NUL once, we know zsh is OK, set did_find_nul and | |
6439 * don't check for spaces again. | |
6440 */ | |
6441 check_spaces = FALSE; | |
6442 if (shell_style == STYLE_PRINT && !did_find_nul) | |
6443 { | |
6444 /* If there is a NUL, set did_find_nul, else set check_spaces */ | |
2768 | 6445 buffer[len] = NUL; |
5533 | 6446 if (len && (int)STRLEN(buffer) < (int)len) |
7 | 6447 did_find_nul = TRUE; |
6448 else | |
6449 check_spaces = TRUE; | |
6450 } | |
6451 | |
6452 /* | |
6453 * Make sure the buffer ends with a NUL. For STYLE_PRINT there | |
6454 * already is one, for STYLE_GLOB it needs to be added. | |
6455 */ | |
6456 if (len && buffer[len - 1] == NUL) | |
6457 --len; | |
6458 else | |
6459 buffer[len] = NUL; | |
6460 i = 0; | |
6461 for (p = buffer; p < buffer + len; ++p) | |
6462 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */ | |
6463 { | |
6464 ++i; | |
6465 *p = NUL; | |
6466 } | |
6467 if (len) | |
6468 ++i; /* count last entry */ | |
6469 } | |
6470 if (i == 0) | |
6471 { | |
6472 /* | |
6473 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I". | |
6474 * /bin/sh will happily expand it to nothing rather than returning an | |
6475 * error; and hey, it's good to check anyway -- webb. | |
6476 */ | |
6477 vim_free(buffer); | |
6478 goto notfound; | |
6479 } | |
6480 *num_file = i; | |
6481 *file = (char_u **)alloc(sizeof(char_u *) * i); | |
6482 if (*file == NULL) | |
6483 { | |
6484 /* out of memory */ | |
6485 vim_free(buffer); | |
6486 return FAIL; | |
6487 } | |
6488 | |
6489 /* | |
6490 * Isolate the individual file names. | |
6491 */ | |
6492 p = buffer; | |
6493 for (i = 0; i < *num_file; ++i) | |
6494 { | |
6495 (*file)[i] = p; | |
6496 /* Space or NL separates */ | |
1508 | 6497 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT |
6498 || shell_style == STYLE_VIMGLOB) | |
7 | 6499 { |
652 | 6500 while (!(shell_style == STYLE_ECHO && *p == ' ') |
6501 && *p != '\n' && *p != NUL) | |
7 | 6502 ++p; |
6503 if (p == buffer + len) /* last entry */ | |
6504 *p = NUL; | |
6505 else | |
6506 { | |
6507 *p++ = NUL; | |
6508 p = skipwhite(p); /* skip to next entry */ | |
6509 } | |
6510 } | |
6511 else /* NUL separates */ | |
6512 { | |
6513 while (*p && p < buffer + len) /* skip entry */ | |
6514 ++p; | |
6515 ++p; /* skip NUL */ | |
6516 } | |
6517 } | |
6518 | |
6519 /* | |
6520 * Move the file names to allocated memory. | |
6521 */ | |
6522 for (j = 0, i = 0; i < *num_file; ++i) | |
6523 { | |
6524 /* Require the files to exist. Helps when using /bin/sh */ | |
6525 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0) | |
6526 continue; | |
6527 | |
6528 /* check if this entry should be included */ | |
6529 dir = (mch_isdir((*file)[i])); | |
6530 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE))) | |
6531 continue; | |
6532 | |
715 | 6533 /* Skip files that are not executable if we check for that. */ |
6695 | 6534 if (!dir && (flags & EW_EXEC) |
6535 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD))) | |
715 | 6536 continue; |
6537 | |
7 | 6538 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir)); |
6539 if (p) | |
6540 { | |
6541 STRCPY(p, (*file)[i]); | |
6542 if (dir) | |
1479 | 6543 add_pathsep(p); /* add '/' to a directory name */ |
7 | 6544 (*file)[j++] = p; |
6545 } | |
6546 } | |
6547 vim_free(buffer); | |
6548 *num_file = j; | |
6549 | |
6550 if (*num_file == 0) /* rejected all entries */ | |
6551 { | |
6552 vim_free(*file); | |
6553 *file = NULL; | |
6554 goto notfound; | |
6555 } | |
6556 | |
6557 return OK; | |
6558 | |
6559 notfound: | |
6560 if (flags & EW_NOTFOUND) | |
6561 return save_patterns(num_pat, pat, num_file, file); | |
6562 return FAIL; | |
6563 | |
6564 #endif /* __EMX__ */ | |
6565 } | |
6566 | |
6567 #endif /* VMS */ | |
6568 | |
6569 #ifndef __EMX__ | |
6570 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6571 save_patterns( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6572 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6573 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6574 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6575 char_u ***file) |
7 | 6576 { |
6577 int i; | |
99 | 6578 char_u *s; |
7 | 6579 |
6580 *file = (char_u **)alloc(num_pat * sizeof(char_u *)); | |
6581 if (*file == NULL) | |
6582 return FAIL; | |
6583 for (i = 0; i < num_pat; i++) | |
99 | 6584 { |
6585 s = vim_strsave(pat[i]); | |
6586 if (s != NULL) | |
6587 /* Be compatible with expand_filename(): halve the number of | |
6588 * backslashes. */ | |
6589 backslash_halve(s); | |
6590 (*file)[i] = s; | |
6591 } | |
7 | 6592 *num_file = num_pat; |
6593 return OK; | |
6594 } | |
6595 #endif | |
6596 | |
6597 /* | |
6598 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can | |
6599 * expand. | |
6600 */ | |
6601 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6602 mch_has_exp_wildcard(char_u *p) |
7 | 6603 { |
39 | 6604 for ( ; *p; mb_ptr_adv(p)) |
7 | 6605 { |
6606 if (*p == '\\' && p[1] != NUL) | |
6607 ++p; | |
6608 else | |
6609 if (vim_strchr((char_u *) | |
6610 #ifdef VMS | |
6611 "*?%" | |
6612 #else | |
6613 "*?[{'" | |
6614 #endif | |
6615 , *p) != NULL) | |
6616 return TRUE; | |
6617 } | |
6618 return FALSE; | |
6619 } | |
6620 | |
6621 /* | |
6622 * Return TRUE if the string "p" contains a wildcard. | |
6623 * Don't recognize '~' at the end as a wildcard. | |
6624 */ | |
6625 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6626 mch_has_wildcard(char_u *p) |
7 | 6627 { |
39 | 6628 for ( ; *p; mb_ptr_adv(p)) |
7 | 6629 { |
6630 if (*p == '\\' && p[1] != NUL) | |
6631 ++p; | |
6632 else | |
6633 if (vim_strchr((char_u *) | |
6634 #ifdef VMS | |
6635 "*?%$" | |
6636 #else | |
6637 "*?[{`'$" | |
6638 #endif | |
6639 , *p) != NULL | |
6640 || (*p == '~' && p[1] != NUL)) | |
6641 return TRUE; | |
6642 } | |
6643 return FALSE; | |
6644 } | |
6645 | |
6646 #ifndef __EMX__ | |
6647 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6648 have_wildcard(int num, char_u **file) |
7 | 6649 { |
6650 int i; | |
6651 | |
6652 for (i = 0; i < num; i++) | |
6653 if (mch_has_wildcard(file[i])) | |
6654 return 1; | |
6655 return 0; | |
6656 } | |
6657 | |
6658 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6659 have_dollars(int num, char_u **file) |
7 | 6660 { |
6661 int i; | |
6662 | |
6663 for (i = 0; i < num; i++) | |
6664 if (vim_strchr(file[i], '$') != NULL) | |
6665 return TRUE; | |
6666 return FALSE; | |
6667 } | |
6668 #endif /* ifndef __EMX__ */ | |
6669 | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6670 #if !defined(HAVE_RENAME) || defined(PROTO) |
7 | 6671 /* |
6672 * Scaled-down version of rename(), which is missing in Xenix. | |
6673 * This version can only move regular files and will fail if the | |
6674 * destination exists. | |
6675 */ | |
6676 int | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6677 mch_rename(const char *src, const char *dest) |
7 | 6678 { |
6679 struct stat st; | |
6680 | |
6681 if (stat(dest, &st) >= 0) /* fail if destination exists */ | |
6682 return -1; | |
6683 if (link(src, dest) != 0) /* link file to new name */ | |
6684 return -1; | |
6685 if (mch_remove(src) == 0) /* delete link to old name */ | |
6686 return 0; | |
6687 return -1; | |
6688 } | |
6689 #endif /* !HAVE_RENAME */ | |
6690 | |
6691 #ifdef FEAT_MOUSE_GPM | |
6692 /* | |
6693 * Initializes connection with gpm (if it isn't already opened) | |
6694 * Return 1 if succeeded (or connection already opened), 0 if failed | |
6695 */ | |
6696 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6697 gpm_open(void) |
7 | 6698 { |
6699 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */ | |
6700 | |
6701 if (!gpm_flag) | |
6702 { | |
6703 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN); | |
6704 gpm_connect.defaultMask = ~GPM_HARD; | |
6705 /* Default handling for mouse move*/ | |
6706 gpm_connect.minMod = 0; /* Handle any modifier keys */ | |
6707 gpm_connect.maxMod = 0xffff; | |
6708 if (Gpm_Open(&gpm_connect, 0) > 0) | |
6709 { | |
6710 /* gpm library tries to handling TSTP causes | |
6711 * problems. Anyways, we close connection to Gpm whenever | |
6712 * we are going to suspend or starting an external process | |
1450 | 6713 * so we shouldn't have problem with this |
7 | 6714 */ |
1832 | 6715 # ifdef SIGTSTP |
7 | 6716 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); |
1832 | 6717 # endif |
7 | 6718 return 1; /* succeed */ |
6719 } | |
6720 if (gpm_fd == -2) | |
6721 Gpm_Close(); /* We don't want to talk to xterm via gpm */ | |
6722 return 0; | |
6723 } | |
6724 return 1; /* already open */ | |
6725 } | |
6726 | |
6727 /* | |
6728 * Closes connection to gpm | |
6729 */ | |
6730 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6731 gpm_close(void) |
7 | 6732 { |
6733 if (gpm_flag && gpm_fd >= 0) /* if Open */ | |
6734 Gpm_Close(); | |
6735 } | |
6736 | |
6737 /* Reads gpm event and adds special keys to input buf. Returns length of | |
6738 * generated key sequence. | |
5782 | 6739 * This function is styled after gui_send_mouse_event(). |
7 | 6740 */ |
6741 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6742 mch_gpm_process(void) |
7 | 6743 { |
6744 int button; | |
6745 static Gpm_Event gpm_event; | |
6746 char_u string[6]; | |
6747 int_u vim_modifiers; | |
6748 int row,col; | |
6749 unsigned char buttons_mask; | |
6750 unsigned char gpm_modifiers; | |
6751 static unsigned char old_buttons = 0; | |
6752 | |
6753 Gpm_GetEvent(&gpm_event); | |
6754 | |
6755 #ifdef FEAT_GUI | |
6756 /* Don't put events in the input queue now. */ | |
6757 if (hold_gui_events) | |
6758 return 0; | |
6759 #endif | |
6760 | |
6761 row = gpm_event.y - 1; | |
6762 col = gpm_event.x - 1; | |
6763 | |
6764 string[0] = ESC; /* Our termcode */ | |
6765 string[1] = 'M'; | |
6766 string[2] = 'G'; | |
6767 switch (GPM_BARE_EVENTS(gpm_event.type)) | |
6768 { | |
6769 case GPM_DRAG: | |
6770 string[3] = MOUSE_DRAG; | |
6771 break; | |
6772 case GPM_DOWN: | |
6773 buttons_mask = gpm_event.buttons & ~old_buttons; | |
6774 old_buttons = gpm_event.buttons; | |
6775 switch (buttons_mask) | |
6776 { | |
6777 case GPM_B_LEFT: | |
6778 button = MOUSE_LEFT; | |
6779 break; | |
6780 case GPM_B_MIDDLE: | |
6781 button = MOUSE_MIDDLE; | |
6782 break; | |
6783 case GPM_B_RIGHT: | |
6784 button = MOUSE_RIGHT; | |
6785 break; | |
6786 default: | |
6787 return 0; | |
6788 /*Don't know what to do. Can more than one button be | |
6789 * reported in one event? */ | |
6790 } | |
6791 string[3] = (char_u)(button | 0x20); | |
6792 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1); | |
6793 break; | |
6794 case GPM_UP: | |
6795 string[3] = MOUSE_RELEASE; | |
6796 old_buttons &= ~gpm_event.buttons; | |
6797 break; | |
6798 default: | |
6799 return 0; | |
6800 } | |
6801 /*This code is based on gui_x11_mouse_cb in gui_x11.c */ | |
6802 gpm_modifiers = gpm_event.modifiers; | |
6803 vim_modifiers = 0x0; | |
6804 /* I ignore capslock stats. Aren't we all just hate capslock mixing with | |
6805 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and | |
6806 * K_CAPSSHIFT is defined 8, so it probably isn't even reported | |
6807 */ | |
6808 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL))) | |
6809 vim_modifiers |= MOUSE_SHIFT; | |
6810 | |
6811 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL))) | |
6812 vim_modifiers |= MOUSE_CTRL; | |
6813 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR))) | |
6814 vim_modifiers |= MOUSE_ALT; | |
6815 string[3] |= vim_modifiers; | |
6816 string[4] = (char_u)(col + ' ' + 1); | |
6817 string[5] = (char_u)(row + ' ' + 1); | |
6818 add_to_input_buf(string, 6); | |
6819 return 6; | |
6820 } | |
6821 #endif /* FEAT_MOUSE_GPM */ | |
6822 | |
1620 | 6823 #ifdef FEAT_SYSMOUSE |
6824 /* | |
6825 * Initialize connection with sysmouse. | |
6826 * Let virtual console inform us with SIGUSR2 for pending sysmouse | |
6827 * output, any sysmouse output than will be processed via sig_sysmouse(). | |
6828 * Return OK if succeeded, FAIL if failed. | |
6829 */ | |
6830 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6831 sysmouse_open(void) |
1620 | 6832 { |
6833 struct mouse_info mouse; | |
6834 | |
6835 mouse.operation = MOUSE_MODE; | |
6836 mouse.u.mode.mode = 0; | |
6837 mouse.u.mode.signal = SIGUSR2; | |
6838 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1) | |
6839 { | |
6840 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse); | |
6841 mouse.operation = MOUSE_SHOW; | |
6842 ioctl(1, CONS_MOUSECTL, &mouse); | |
6843 return OK; | |
6844 } | |
6845 return FAIL; | |
6846 } | |
6847 | |
6848 /* | |
6849 * Stop processing SIGUSR2 signals, and also make sure that | |
6850 * virtual console do not send us any sysmouse related signal. | |
6851 */ | |
6852 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6853 sysmouse_close(void) |
1620 | 6854 { |
6855 struct mouse_info mouse; | |
6856 | |
6857 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL); | |
6858 mouse.operation = MOUSE_MODE; | |
6859 mouse.u.mode.mode = 0; | |
6860 mouse.u.mode.signal = 0; | |
6861 ioctl(1, CONS_MOUSECTL, &mouse); | |
6862 } | |
6863 | |
6864 /* | |
6865 * Gets info from sysmouse and adds special keys to input buf. | |
6866 */ | |
6867 static RETSIGTYPE | |
6868 sig_sysmouse SIGDEFARG(sigarg) | |
6869 { | |
6870 struct mouse_info mouse; | |
6871 struct video_info video; | |
6872 char_u string[6]; | |
6873 int row, col; | |
6874 int button; | |
6875 int buttons; | |
6876 static int oldbuttons = 0; | |
6877 | |
6878 #ifdef FEAT_GUI | |
6879 /* Don't put events in the input queue now. */ | |
6880 if (hold_gui_events) | |
6881 return; | |
6882 #endif | |
6883 | |
6884 mouse.operation = MOUSE_GETINFO; | |
6885 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1 | |
6886 && ioctl(1, FBIO_MODEINFO, &video) != -1 | |
6887 && ioctl(1, CONS_MOUSECTL, &mouse) != -1 | |
6888 && video.vi_cheight > 0 && video.vi_cwidth > 0) | |
6889 { | |
6890 row = mouse.u.data.y / video.vi_cheight; | |
6891 col = mouse.u.data.x / video.vi_cwidth; | |
6892 buttons = mouse.u.data.buttons; | |
6893 string[0] = ESC; /* Our termcode */ | |
6894 string[1] = 'M'; | |
6895 string[2] = 'S'; | |
6896 if (oldbuttons == buttons && buttons != 0) | |
6897 { | |
6898 button = MOUSE_DRAG; | |
6899 } | |
6900 else | |
6901 { | |
6902 switch (buttons) | |
6903 { | |
6904 case 0: | |
6905 button = MOUSE_RELEASE; | |
6906 break; | |
6907 case 1: | |
6908 button = MOUSE_LEFT; | |
6909 break; | |
6910 case 2: | |
6911 button = MOUSE_MIDDLE; | |
6912 break; | |
6913 case 4: | |
6914 button = MOUSE_RIGHT; | |
6915 break; | |
6916 default: | |
6917 return; | |
6918 } | |
6919 oldbuttons = buttons; | |
6920 } | |
6921 string[3] = (char_u)(button); | |
6922 string[4] = (char_u)(col + ' ' + 1); | |
6923 string[5] = (char_u)(row + ' ' + 1); | |
6924 add_to_input_buf(string, 6); | |
6925 } | |
6926 return; | |
6927 } | |
6928 #endif /* FEAT_SYSMOUSE */ | |
6929 | |
7 | 6930 #if defined(FEAT_LIBCALL) || defined(PROTO) |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6931 typedef char_u * (*STRPROCSTR)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6932 typedef char_u * (*INTPROCSTR)(int); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6933 typedef int (*STRPROCINT)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6934 typedef int (*INTPROCINT)(int); |
7 | 6935 |
6936 /* | |
6937 * Call a DLL routine which takes either a string or int param | |
6938 * and returns an allocated string. | |
6939 */ | |
6940 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6941 mch_libcall( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6942 char_u *libname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6943 char_u *funcname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6944 char_u *argstring, /* NULL when using a argint */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6945 int argint, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6946 char_u **string_result,/* NULL when using number_result */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6947 int *number_result) |
7 | 6948 { |
6949 # if defined(USE_DLOPEN) | |
6950 void *hinstLib; | |
12 | 6951 char *dlerr = NULL; |
7 | 6952 # else |
6953 shl_t hinstLib; | |
6954 # endif | |
6955 STRPROCSTR ProcAdd; | |
6956 INTPROCSTR ProcAddI; | |
6957 char_u *retval_str = NULL; | |
6958 int retval_int = 0; | |
6959 int success = FALSE; | |
6960 | |
900 | 6961 /* |
6962 * Get a handle to the DLL module. | |
6963 */ | |
7 | 6964 # if defined(USE_DLOPEN) |
900 | 6965 /* First clear any error, it's not cleared by the dlopen() call. */ |
6966 (void)dlerror(); | |
6967 | |
7 | 6968 hinstLib = dlopen((char *)libname, RTLD_LAZY |
6969 # ifdef RTLD_LOCAL | |
6970 | RTLD_LOCAL | |
6971 # endif | |
6972 ); | |
12 | 6973 if (hinstLib == NULL) |
6974 { | |
6975 /* "dlerr" must be used before dlclose() */ | |
6976 dlerr = (char *)dlerror(); | |
6977 if (dlerr != NULL) | |
6978 EMSG2(_("dlerror = \"%s\""), dlerr); | |
6979 } | |
7 | 6980 # else |
6981 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L); | |
6982 # endif | |
6983 | |
6984 /* If the handle is valid, try to get the function address. */ | |
6985 if (hinstLib != NULL) | |
6986 { | |
6987 # ifdef HAVE_SETJMP_H | |
6988 /* | |
6989 * Catch a crash when calling the library function. For example when | |
6990 * using a number where a string pointer is expected. | |
6991 */ | |
6992 mch_startjmp(); | |
6993 if (SETJMP(lc_jump_env) != 0) | |
6994 { | |
6995 success = FALSE; | |
857 | 6996 # if defined(USE_DLOPEN) |
12 | 6997 dlerr = NULL; |
857 | 6998 # endif |
7 | 6999 mch_didjmp(); |
7000 } | |
7001 else | |
7002 # endif | |
7003 { | |
7004 retval_str = NULL; | |
7005 retval_int = 0; | |
7006 | |
7007 if (argstring != NULL) | |
7008 { | |
7009 # if defined(USE_DLOPEN) | |
7010 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname); | |
12 | 7011 dlerr = (char *)dlerror(); |
7 | 7012 # else |
7013 if (shl_findsym(&hinstLib, (const char *)funcname, | |
7014 TYPE_PROCEDURE, (void *)&ProcAdd) < 0) | |
7015 ProcAdd = NULL; | |
7016 # endif | |
12 | 7017 if ((success = (ProcAdd != NULL |
7018 # if defined(USE_DLOPEN) | |
7019 && dlerr == NULL | |
7020 # endif | |
7021 ))) | |
7 | 7022 { |
7023 if (string_result == NULL) | |
7024 retval_int = ((STRPROCINT)ProcAdd)(argstring); | |
7025 else | |
7026 retval_str = (ProcAdd)(argstring); | |
7027 } | |
7028 } | |
7029 else | |
7030 { | |
7031 # if defined(USE_DLOPEN) | |
7032 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname); | |
12 | 7033 dlerr = (char *)dlerror(); |
7 | 7034 # else |
7035 if (shl_findsym(&hinstLib, (const char *)funcname, | |
7036 TYPE_PROCEDURE, (void *)&ProcAddI) < 0) | |
7037 ProcAddI = NULL; | |
7038 # endif | |
12 | 7039 if ((success = (ProcAddI != NULL |
7040 # if defined(USE_DLOPEN) | |
7041 && dlerr == NULL | |
7042 # endif | |
7043 ))) | |
7 | 7044 { |
7045 if (string_result == NULL) | |
7046 retval_int = ((INTPROCINT)ProcAddI)(argint); | |
7047 else | |
7048 retval_str = (ProcAddI)(argint); | |
7049 } | |
7050 } | |
7051 | |
7052 /* Save the string before we free the library. */ | |
7053 /* Assume that a "1" or "-1" result is an illegal pointer. */ | |
7054 if (string_result == NULL) | |
7055 *number_result = retval_int; | |
7056 else if (retval_str != NULL | |
7057 && retval_str != (char_u *)1 | |
7058 && retval_str != (char_u *)-1) | |
7059 *string_result = vim_strsave(retval_str); | |
7060 } | |
7061 | |
7062 # ifdef HAVE_SETJMP_H | |
7063 mch_endjmp(); | |
7064 # ifdef SIGHASARG | |
7065 if (lc_signal != 0) | |
7066 { | |
7067 int i; | |
7068 | |
7069 /* try to find the name of this signal */ | |
7070 for (i = 0; signal_info[i].sig != -1; i++) | |
7071 if (lc_signal == signal_info[i].sig) | |
7072 break; | |
7073 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name); | |
7074 } | |
7075 # endif | |
7076 # endif | |
7077 | |
12 | 7078 # if defined(USE_DLOPEN) |
7079 /* "dlerr" must be used before dlclose() */ | |
7080 if (dlerr != NULL) | |
7081 EMSG2(_("dlerror = \"%s\""), dlerr); | |
7082 | |
7 | 7083 /* Free the DLL module. */ |
7084 (void)dlclose(hinstLib); | |
7085 # else | |
7086 (void)shl_unload(hinstLib); | |
7087 # endif | |
7088 } | |
7089 | |
7090 if (!success) | |
7091 { | |
7092 EMSG2(_(e_libcall), funcname); | |
7093 return FAIL; | |
7094 } | |
7095 | |
7096 return OK; | |
7097 } | |
7098 #endif | |
7099 | |
7100 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO) | |
7101 static int xterm_trace = -1; /* default: disabled */ | |
7102 static int xterm_button; | |
7103 | |
7104 /* | |
7105 * Setup a dummy window for X selections in a terminal. | |
7106 */ | |
7107 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7108 setup_term_clip(void) |
7 | 7109 { |
7110 int z = 0; | |
7111 char *strp = ""; | |
7112 Widget AppShell; | |
7113 | |
7114 if (!x_connect_to_server()) | |
7115 return; | |
7116 | |
7117 open_app_context(); | |
7118 if (app_context != NULL && xterm_Shell == (Widget)0) | |
7119 { | |
7120 int (*oldhandler)(); | |
7121 #if defined(HAVE_SETJMP_H) | |
7122 int (*oldIOhandler)(); | |
7123 #endif | |
7124 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
7125 struct timeval start_tv; | |
7126 | |
7127 if (p_verbose > 0) | |
7128 gettimeofday(&start_tv, NULL); | |
7129 # endif | |
7130 | |
7131 /* Ignore X errors while opening the display */ | |
7132 oldhandler = XSetErrorHandler(x_error_check); | |
7133 | |
7134 #if defined(HAVE_SETJMP_H) | |
7135 /* Ignore X IO errors while opening the display */ | |
7136 oldIOhandler = XSetIOErrorHandler(x_IOerror_check); | |
7137 mch_startjmp(); | |
7138 if (SETJMP(lc_jump_env) != 0) | |
7139 { | |
7140 mch_didjmp(); | |
7141 xterm_dpy = NULL; | |
7142 } | |
7143 else | |
7144 #endif | |
7145 { | |
7146 xterm_dpy = XtOpenDisplay(app_context, xterm_display, | |
7147 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp); | |
7148 #if defined(HAVE_SETJMP_H) | |
7149 mch_endjmp(); | |
7150 #endif | |
7151 } | |
7152 | |
7153 #if defined(HAVE_SETJMP_H) | |
7154 /* Now handle X IO errors normally. */ | |
7155 (void)XSetIOErrorHandler(oldIOhandler); | |
7156 #endif | |
7157 /* Now handle X errors normally. */ | |
7158 (void)XSetErrorHandler(oldhandler); | |
7159 | |
7160 if (xterm_dpy == NULL) | |
7161 { | |
7162 if (p_verbose > 0) | |
292 | 7163 verb_msg((char_u *)_("Opening the X display failed")); |
7 | 7164 return; |
7165 } | |
7166 | |
7167 /* Catch terminating error of the X server connection. */ | |
7168 (void)XSetIOErrorHandler(x_IOerror_handler); | |
7169 | |
7170 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
7171 if (p_verbose > 0) | |
292 | 7172 { |
7173 verbose_enter(); | |
7 | 7174 xopen_message(&start_tv); |
292 | 7175 verbose_leave(); |
7176 } | |
7 | 7177 # endif |
7178 | |
7179 /* Create a Shell to make converters work. */ | |
7180 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm", | |
7181 applicationShellWidgetClass, xterm_dpy, | |
7182 NULL); | |
7183 if (AppShell == (Widget)0) | |
7184 return; | |
7185 xterm_Shell = XtVaCreatePopupShell("VIM", | |
7186 topLevelShellWidgetClass, AppShell, | |
7187 XtNmappedWhenManaged, 0, | |
7188 XtNwidth, 1, | |
7189 XtNheight, 1, | |
7190 NULL); | |
7191 if (xterm_Shell == (Widget)0) | |
7192 return; | |
7193 | |
7194 x11_setup_atoms(xterm_dpy); | |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
7195 x11_setup_selection(xterm_Shell); |
7 | 7196 if (x11_display == NULL) |
7197 x11_display = xterm_dpy; | |
7198 | |
7199 XtRealizeWidget(xterm_Shell); | |
7200 XSync(xterm_dpy, False); | |
7201 xterm_update(); | |
7202 } | |
7203 if (xterm_Shell != (Widget)0) | |
7204 { | |
7205 clip_init(TRUE); | |
7206 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL) | |
7207 x11_window = (Window)atol(strp); | |
7208 /* Check if $WINDOWID is valid. */ | |
7209 if (test_x11_window(xterm_dpy) == FAIL) | |
7210 x11_window = 0; | |
7211 if (x11_window != 0) | |
7212 xterm_trace = 0; | |
7213 } | |
7214 } | |
7215 | |
7216 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7217 start_xterm_trace(int button) |
7 | 7218 { |
7219 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0) | |
7220 return; | |
7221 xterm_trace = 1; | |
7222 xterm_button = button; | |
7223 do_xterm_trace(); | |
7224 } | |
7225 | |
7226 | |
7227 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7228 stop_xterm_trace(void) |
7 | 7229 { |
7230 if (xterm_trace < 0) | |
7231 return; | |
7232 xterm_trace = 0; | |
7233 } | |
7234 | |
7235 /* | |
7236 * Query the xterm pointer and generate mouse termcodes if necessary | |
7237 * return TRUE if dragging is active, else FALSE | |
7238 */ | |
7239 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7240 do_xterm_trace(void) |
7 | 7241 { |
7242 Window root, child; | |
7243 int root_x, root_y; | |
7244 int win_x, win_y; | |
7245 int row, col; | |
7246 int_u mask_return; | |
7247 char_u buf[50]; | |
7248 char_u *strp; | |
7249 long got_hints; | |
7250 static char_u *mouse_code; | |
7251 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER}; | |
7252 static int prev_row = 0, prev_col = 0; | |
7253 static XSizeHints xterm_hints; | |
7254 | |
7255 if (xterm_trace <= 0) | |
7256 return FALSE; | |
7257 | |
7258 if (xterm_trace == 1) | |
7259 { | |
7260 /* Get the hints just before tracking starts. The font size might | |
1510 | 7261 * have changed recently. */ |
7262 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints) | |
7263 || !(got_hints & PResizeInc) | |
7 | 7264 || xterm_hints.width_inc <= 1 |
7265 || xterm_hints.height_inc <= 1) | |
7266 { | |
7267 xterm_trace = -1; /* Not enough data -- disable tracing */ | |
7268 return FALSE; | |
7269 } | |
7270 | |
7271 /* Rely on the same mouse code for the duration of this */ | |
7272 mouse_code = find_termcode(mouse_name); | |
7273 prev_row = mouse_row; | |
7009 | 7274 prev_col = mouse_col; |
7 | 7275 xterm_trace = 2; |
7276 | |
7277 /* Find the offset of the chars, there might be a scrollbar on the | |
7278 * left of the window and/or a menu on the top (eterm etc.) */ | |
7279 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7280 &win_x, &win_y, &mask_return); | |
7281 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row) | |
7282 - (xterm_hints.height_inc / 2); | |
7283 if (xterm_hints.y <= xterm_hints.height_inc / 2) | |
7284 xterm_hints.y = 2; | |
7285 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col) | |
7286 - (xterm_hints.width_inc / 2); | |
7287 if (xterm_hints.x <= xterm_hints.width_inc / 2) | |
7288 xterm_hints.x = 2; | |
7289 return TRUE; | |
7290 } | |
2768 | 7291 if (mouse_code == NULL || STRLEN(mouse_code) > 45) |
7 | 7292 { |
7293 xterm_trace = 0; | |
7294 return FALSE; | |
7295 } | |
7296 | |
7297 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7298 &win_x, &win_y, &mask_return); | |
7299 | |
7300 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc); | |
7301 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc); | |
7302 if (row == prev_row && col == prev_col) | |
7303 return TRUE; | |
7304 | |
7305 STRCPY(buf, mouse_code); | |
7306 strp = buf + STRLEN(buf); | |
7307 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20; | |
7308 *strp++ = (char_u)(col + ' ' + 1); | |
7309 *strp++ = (char_u)(row + ' ' + 1); | |
7310 *strp = 0; | |
7311 add_to_input_buf(buf, STRLEN(buf)); | |
7312 | |
7313 prev_row = row; | |
7314 prev_col = col; | |
7315 return TRUE; | |
7316 } | |
7317 | |
7318 # if defined(FEAT_GUI) || defined(PROTO) | |
7319 /* | |
7320 * Destroy the display, window and app_context. Required for GTK. | |
7321 */ | |
7322 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7323 clear_xterm_clip(void) |
7 | 7324 { |
7325 if (xterm_Shell != (Widget)0) | |
7326 { | |
7327 XtDestroyWidget(xterm_Shell); | |
7328 xterm_Shell = (Widget)0; | |
7329 } | |
7330 if (xterm_dpy != NULL) | |
7331 { | |
1605 | 7332 # if 0 |
7 | 7333 /* Lesstif and Solaris crash here, lose some memory */ |
7334 XtCloseDisplay(xterm_dpy); | |
1605 | 7335 # endif |
7 | 7336 if (x11_display == xterm_dpy) |
7337 x11_display = NULL; | |
7338 xterm_dpy = NULL; | |
7339 } | |
1605 | 7340 # if 0 |
7 | 7341 if (app_context != (XtAppContext)NULL) |
7342 { | |
7343 /* Lesstif and Solaris crash here, lose some memory */ | |
7344 XtDestroyApplicationContext(app_context); | |
7345 app_context = (XtAppContext)NULL; | |
7346 } | |
1605 | 7347 # endif |
7 | 7348 } |
7349 # endif | |
7350 | |
7351 /* | |
4230 | 7352 * Catch up with GUI or X events. |
7353 */ | |
7354 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7355 clip_update(void) |
4230 | 7356 { |
7357 # ifdef FEAT_GUI | |
7358 if (gui.in_use) | |
7359 gui_mch_update(); | |
7360 else | |
7361 # endif | |
7362 if (xterm_Shell != (Widget)0) | |
7363 xterm_update(); | |
7364 } | |
7365 | |
7366 /* | |
7 | 7367 * Catch up with any queued X events. This may put keyboard input into the |
7368 * input buffer, call resize call-backs, trigger timers etc. If there is | |
7369 * nothing in the X event queue (& no timers pending), then we return | |
7370 * immediately. | |
7371 */ | |
7372 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7373 xterm_update(void) |
7 | 7374 { |
7375 XEvent event; | |
7376 | |
6683 | 7377 for (;;) |
7 | 7378 { |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7379 XtInputMask mask = XtAppPending(app_context); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7380 |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7381 if (mask == 0 || vim_is_input_buf_full()) |
6683 | 7382 break; |
7383 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7384 if (mask & XtIMXEvent) |
7 | 7385 { |
6683 | 7386 /* There is an event to process. */ |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7387 XtAppNextEvent(app_context, &event); |
6683 | 7388 #ifdef FEAT_CLIENTSERVER |
7389 { | |
7390 XPropertyEvent *e = (XPropertyEvent *)&event; | |
7391 | |
7392 if (e->type == PropertyNotify && e->window == commWindow | |
7 | 7393 && e->atom == commProperty && e->state == PropertyNewValue) |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7394 serverEventProc(xterm_dpy, &event, 0); |
6683 | 7395 } |
7396 #endif | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7397 XtDispatchEvent(&event); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7398 } |
6683 | 7399 else |
7400 { | |
7401 /* There is something else than an event to process. */ | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7402 XtAppProcessEvent(app_context, mask); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7403 } |
7 | 7404 } |
7405 } | |
7406 | |
7407 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7408 clip_xterm_own_selection(VimClipboard *cbd) |
7 | 7409 { |
7410 if (xterm_Shell != (Widget)0) | |
7411 return clip_x11_own_selection(xterm_Shell, cbd); | |
7412 return FAIL; | |
7413 } | |
7414 | |
7415 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7416 clip_xterm_lose_selection(VimClipboard *cbd) |
7 | 7417 { |
7418 if (xterm_Shell != (Widget)0) | |
7419 clip_x11_lose_selection(xterm_Shell, cbd); | |
7420 } | |
7421 | |
7422 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7423 clip_xterm_request_selection(VimClipboard *cbd) |
7 | 7424 { |
7425 if (xterm_Shell != (Widget)0) | |
7426 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd); | |
7427 } | |
7428 | |
7429 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7430 clip_xterm_set_selection(VimClipboard *cbd) |
7 | 7431 { |
7432 clip_x11_set_selection(cbd); | |
7433 } | |
7434 #endif | |
7435 | |
7436 | |
7437 #if defined(USE_XSMP) || defined(PROTO) | |
7438 /* | |
7439 * Code for X Session Management Protocol. | |
7440 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7441 static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7442 static void xsmp_die(SmcConn smc_conn, SmPointer client_data); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7443 static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7444 static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7445 static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData); |
7 | 7446 |
7447 | |
7448 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7449 static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data); |
7 | 7450 |
7451 /* | |
7452 * This is our chance to ask the user if they want to save, | |
7453 * or abort the logout | |
7454 */ | |
7455 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7456 xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED) |
7 | 7457 { |
7458 cmdmod_T save_cmdmod; | |
7459 int cancel_shutdown = False; | |
7460 | |
7461 save_cmdmod = cmdmod; | |
7462 cmdmod.confirm = TRUE; | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
7463 if (check_changed_any(FALSE, FALSE)) |
7 | 7464 /* Mustn't logout */ |
7465 cancel_shutdown = True; | |
7466 cmdmod = save_cmdmod; | |
7467 setcursor(); /* position cursor */ | |
7468 out_flush(); | |
7469 | |
7470 /* Done interaction */ | |
7471 SmcInteractDone(smc_conn, cancel_shutdown); | |
7472 | |
7473 /* Finish off | |
7474 * Only end save-yourself here if we're not cancelling shutdown; | |
7475 * we'll get a cancelled callback later in which we'll end it. | |
7476 * Hopefully get around glitchy SMs (like GNOME-1) | |
7477 */ | |
7478 if (!cancel_shutdown) | |
7479 { | |
7480 xsmp.save_yourself = False; | |
7481 SmcSaveYourselfDone(smc_conn, True); | |
7482 } | |
7483 } | |
7484 # endif | |
7485 | |
7486 /* | |
7487 * Callback that starts save-yourself. | |
7488 */ | |
7489 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7490 xsmp_handle_save_yourself( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7491 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7492 SmPointer client_data UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7493 int save_type UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7494 Bool shutdown, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7495 int interact_style UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7496 Bool fast UNUSED) |
7 | 7497 { |
7498 /* Handle already being in saveyourself */ | |
7499 if (xsmp.save_yourself) | |
7500 SmcSaveYourselfDone(smc_conn, True); | |
7501 xsmp.save_yourself = True; | |
7502 xsmp.shutdown = shutdown; | |
7503 | |
7504 /* First up, preserve all files */ | |
7505 out_flush(); | |
7506 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
7507 | |
7508 if (p_verbose > 0) | |
292 | 7509 verb_msg((char_u *)_("XSMP handling save-yourself request")); |
7 | 7510 |
7511 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7512 /* Now see if we can ask about unsaved files */ | |
7513 if (shutdown && !fast && gui.in_use) | |
7514 /* Need to interact with user, but need SM's permission */ | |
7515 SmcInteractRequest(smc_conn, SmDialogError, | |
7516 xsmp_handle_interaction, client_data); | |
7517 else | |
7518 # endif | |
7519 { | |
7520 /* Can stop the cycle here */ | |
7521 SmcSaveYourselfDone(smc_conn, True); | |
7522 xsmp.save_yourself = False; | |
7523 } | |
7524 } | |
7525 | |
7526 | |
7527 /* | |
7528 * Callback to warn us of imminent death. | |
7529 */ | |
7530 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7531 xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED) |
7 | 7532 { |
7533 xsmp_close(); | |
7534 | |
7535 /* quit quickly leaving swapfiles for modified buffers behind */ | |
7536 getout_preserve_modified(0); | |
7537 } | |
7538 | |
7539 | |
7540 /* | |
7541 * Callback to tell us that save-yourself has completed. | |
7542 */ | |
7543 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7544 xsmp_save_complete( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7545 SmcConn smc_conn UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7546 SmPointer client_data UNUSED) |
7 | 7547 { |
7548 xsmp.save_yourself = False; | |
7549 } | |
7550 | |
7551 | |
7552 /* | |
7553 * Callback to tell us that an instigated shutdown was cancelled | |
7554 * (maybe even by us) | |
7555 */ | |
7556 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7557 xsmp_shutdown_cancelled( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7558 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7559 SmPointer client_data UNUSED) |
7 | 7560 { |
7561 if (xsmp.save_yourself) | |
7562 SmcSaveYourselfDone(smc_conn, True); | |
7563 xsmp.save_yourself = False; | |
7564 xsmp.shutdown = False; | |
7565 } | |
7566 | |
7567 | |
7568 /* | |
7569 * Callback to tell us that a new ICE connection has been established. | |
7570 */ | |
7571 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7572 xsmp_ice_connection( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7573 IceConn iceConn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7574 IcePointer clientData UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7575 Bool opening, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7576 IcePointer *watchData UNUSED) |
7 | 7577 { |
7578 /* Intercept creation of ICE connection fd */ | |
7579 if (opening) | |
7580 { | |
7581 xsmp_icefd = IceConnectionNumber(iceConn); | |
7582 IceRemoveConnectionWatch(xsmp_ice_connection, NULL); | |
7583 } | |
7584 } | |
7585 | |
7586 | |
7587 /* Handle any ICE processing that's required; return FAIL if SM lost */ | |
7588 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7589 xsmp_handle_requests(void) |
7 | 7590 { |
7591 Bool rep; | |
7592 | |
7593 if (IceProcessMessages(xsmp.iceconn, NULL, &rep) | |
7594 == IceProcessMessagesIOError) | |
7595 { | |
7596 /* Lost ICE */ | |
7597 if (p_verbose > 0) | |
292 | 7598 verb_msg((char_u *)_("XSMP lost ICE connection")); |
7 | 7599 xsmp_close(); |
7600 return FAIL; | |
7601 } | |
7602 else | |
7603 return OK; | |
7604 } | |
7605 | |
7606 static int dummy; | |
7607 | |
7608 /* Set up X Session Management Protocol */ | |
7609 void | |
7610 xsmp_init(void) | |
7611 { | |
7612 char errorstring[80]; | |
7613 SmcCallbacks smcallbacks; | |
7614 #if 0 | |
7615 SmPropValue smname; | |
7616 SmProp smnameprop; | |
7617 SmProp *smprops[1]; | |
7618 #endif | |
7619 | |
7620 if (p_verbose > 0) | |
292 | 7621 verb_msg((char_u *)_("XSMP opening connection")); |
7 | 7622 |
7623 xsmp.save_yourself = xsmp.shutdown = False; | |
7624 | |
7625 /* Set up SM callbacks - must have all, even if they're not used */ | |
7626 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself; | |
7627 smcallbacks.save_yourself.client_data = NULL; | |
7628 smcallbacks.die.callback = xsmp_die; | |
7629 smcallbacks.die.client_data = NULL; | |
7630 smcallbacks.save_complete.callback = xsmp_save_complete; | |
7631 smcallbacks.save_complete.client_data = NULL; | |
7632 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled; | |
7633 smcallbacks.shutdown_cancelled.client_data = NULL; | |
7634 | |
7635 /* Set up a watch on ICE connection creations. The "dummy" argument is | |
7636 * apparently required for FreeBSD (we get a BUS error when using NULL). */ | |
7637 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0) | |
7638 { | |
7639 if (p_verbose > 0) | |
292 | 7640 verb_msg((char_u *)_("XSMP ICE connection watch failed")); |
7 | 7641 return; |
7642 } | |
7643 | |
7644 /* Create an SM connection */ | |
7645 xsmp.smcconn = SmcOpenConnection( | |
7646 NULL, | |
7647 NULL, | |
7648 SmProtoMajor, | |
7649 SmProtoMinor, | |
7650 SmcSaveYourselfProcMask | SmcDieProcMask | |
7651 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask, | |
7652 &smcallbacks, | |
7653 NULL, | |
1605 | 7654 &xsmp.clientid, |
7 | 7655 sizeof(errorstring), |
7656 errorstring); | |
7657 if (xsmp.smcconn == NULL) | |
7658 { | |
7659 char errorreport[132]; | |
273 | 7660 |
292 | 7661 if (p_verbose > 0) |
7662 { | |
7663 vim_snprintf(errorreport, sizeof(errorreport), | |
273 | 7664 _("XSMP SmcOpenConnection failed: %s"), errorstring); |
292 | 7665 verb_msg((char_u *)errorreport); |
7666 } | |
7 | 7667 return; |
7668 } | |
7669 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn); | |
7670 | |
7671 #if 0 | |
7672 /* ID ourselves */ | |
7673 smname.value = "vim"; | |
7674 smname.length = 3; | |
7675 smnameprop.name = "SmProgram"; | |
7676 smnameprop.type = "SmARRAY8"; | |
7677 smnameprop.num_vals = 1; | |
7678 smnameprop.vals = &smname; | |
7679 | |
7680 smprops[0] = &smnameprop; | |
7681 SmcSetProperties(xsmp.smcconn, 1, smprops); | |
7682 #endif | |
7683 } | |
7684 | |
7685 | |
7686 /* Shut down XSMP comms. */ | |
7687 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7688 xsmp_close(void) |
7 | 7689 { |
7690 if (xsmp_icefd != -1) | |
7691 { | |
7692 SmcCloseConnection(xsmp.smcconn, 0, NULL); | |
1737 | 7693 if (xsmp.clientid != NULL) |
7694 free(xsmp.clientid); | |
1605 | 7695 xsmp.clientid = NULL; |
7 | 7696 xsmp_icefd = -1; |
7697 } | |
7698 } | |
7699 #endif /* USE_XSMP */ | |
7700 | |
7701 | |
7702 #ifdef EBCDIC | |
7703 /* Translate character to its CTRL- value */ | |
7704 char CtrlTable[] = | |
7705 { | |
7706 /* 00 - 5E */ | |
7707 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7708 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7709 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7710 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7711 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7712 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7713 /* ^ */ 0x1E, | |
7714 /* - */ 0x1F, | |
7715 /* 61 - 6C */ | |
7716 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7717 /* _ */ 0x1F, | |
7718 /* 6E - 80 */ | |
7719 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7720 /* a */ 0x01, | |
7721 /* b */ 0x02, | |
7722 /* c */ 0x03, | |
7723 /* d */ 0x37, | |
7724 /* e */ 0x2D, | |
7725 /* f */ 0x2E, | |
7726 /* g */ 0x2F, | |
7727 /* h */ 0x16, | |
7728 /* i */ 0x05, | |
7729 /* 8A - 90 */ | |
7730 0, 0, 0, 0, 0, 0, 0, | |
7731 /* j */ 0x15, | |
7732 /* k */ 0x0B, | |
7733 /* l */ 0x0C, | |
7734 /* m */ 0x0D, | |
7735 /* n */ 0x0E, | |
7736 /* o */ 0x0F, | |
7737 /* p */ 0x10, | |
7738 /* q */ 0x11, | |
7739 /* r */ 0x12, | |
7740 /* 9A - A1 */ | |
7741 0, 0, 0, 0, 0, 0, 0, 0, | |
7742 /* s */ 0x13, | |
7743 /* t */ 0x3C, | |
7744 /* u */ 0x3D, | |
7745 /* v */ 0x32, | |
7746 /* w */ 0x26, | |
7747 /* x */ 0x18, | |
7748 /* y */ 0x19, | |
7749 /* z */ 0x3F, | |
7750 /* AA - AC */ | |
7751 0, 0, 0, | |
7752 /* [ */ 0x27, | |
7753 /* AE - BC */ | |
7754 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7755 /* ] */ 0x1D, | |
7756 /* BE - C0 */ 0, 0, 0, | |
7757 /* A */ 0x01, | |
7758 /* B */ 0x02, | |
7759 /* C */ 0x03, | |
7760 /* D */ 0x37, | |
7761 /* E */ 0x2D, | |
7762 /* F */ 0x2E, | |
7763 /* G */ 0x2F, | |
7764 /* H */ 0x16, | |
7765 /* I */ 0x05, | |
7766 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0, | |
7767 /* J */ 0x15, | |
7768 /* K */ 0x0B, | |
7769 /* L */ 0x0C, | |
7770 /* M */ 0x0D, | |
7771 /* N */ 0x0E, | |
7772 /* O */ 0x0F, | |
7773 /* P */ 0x10, | |
7774 /* Q */ 0x11, | |
7775 /* R */ 0x12, | |
7776 /* DA - DF */ 0, 0, 0, 0, 0, 0, | |
7777 /* \ */ 0x1C, | |
7778 /* E1 */ 0, | |
7779 /* S */ 0x13, | |
7780 /* T */ 0x3C, | |
7781 /* U */ 0x3D, | |
7782 /* V */ 0x32, | |
7783 /* W */ 0x26, | |
7784 /* X */ 0x18, | |
7785 /* Y */ 0x19, | |
7786 /* Z */ 0x3F, | |
7787 /* EA - FF*/ 0, 0, 0, 0, 0, 0, | |
7788 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7789 }; | |
7790 | |
7791 char MetaCharTable[]= | |
7792 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
7793 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0, | |
7794 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0, | |
7795 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0, | |
7796 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0 | |
7797 }; | |
7798 | |
7799 | |
7800 /* TODO: Use characters NOT numbers!!! */ | |
7801 char CtrlCharTable[]= | |
7802 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
7803 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214, | |
7804 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109, | |
7805 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199, | |
7806 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233, | |
7807 }; | |
7808 | |
7809 | |
7810 #endif |