Mercurial > vim
annotate src/os_unix.c @ 10820:37ad103a548a
Added tag v8.0.0299 for changeset cd179d7d0b5dc665169fa98eb8fba164670fb515
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 03 Feb 2017 22:15:04 +0100 |
parents | 2198b53b9ffe |
children | fb2bcfa6a8de |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
10019
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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)()); |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
214 #ifdef HAVE_SIGPROCMASK |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
215 # define SIGSET_DECL(set) sigset_t set; |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
216 # define BLOCK_SIGNALS(set) block_signals(set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
217 # define UNBLOCK_SIGNALS(set) unblock_signals(set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
218 #else |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
219 # define SIGSET_DECL(set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
220 # define BLOCK_SIGNALS(set) do { /**/ } while (0) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
221 # define UNBLOCK_SIGNALS(set) do { /**/ } while (0) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
222 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
223 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
|
224 static int have_dollars(int, char_u **); |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
225 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
226 static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file); |
7 | 227 |
228 #ifndef SIG_ERR | |
1879 | 229 # define SIG_ERR ((RETSIGTYPE (*)())-1) |
7 | 230 #endif |
231 | |
1832 | 232 /* volatile because it is used in signal handler sig_winch(). */ |
233 static volatile int do_resize = FALSE; | |
7 | 234 static char_u *extra_shell_arg = NULL; |
235 static int show_shell_mess = TRUE; | |
1832 | 236 /* volatile because it is used in signal handler deathtrap(). */ |
237 static volatile int deadly_signal = 0; /* The signal we caught */ | |
238 /* volatile because it is used in signal handler deathtrap(). */ | |
239 static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */ | |
7 | 240 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
241 #if defined(FEAT_JOB_CHANNEL) && !defined(USE_SYSTEM) |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
242 static int dont_check_job_ended = 0; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
243 #endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
244 |
7 | 245 static int curr_tmode = TMODE_COOK; /* contains current terminal mode */ |
246 | |
247 #ifdef USE_XSMP | |
248 typedef struct | |
249 { | |
250 SmcConn smcconn; /* The SM connection ID */ | |
251 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
|
252 char *clientid; /* The client ID for the current smc session */ |
7 | 253 Bool save_yourself; /* If we're in the middle of a save_yourself */ |
254 Bool shutdown; /* If we're in shutdown mode */ | |
255 } xsmp_config_T; | |
256 | |
257 static xsmp_config_T xsmp; | |
258 #endif | |
259 | |
260 #ifdef SYS_SIGLIST_DECLARED | |
261 /* | |
262 * I have seen | |
263 * extern char *_sys_siglist[NSIG]; | |
264 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings | |
265 * that describe the signals. That is nearly what we want here. But | |
266 * autoconf does only check for sys_siglist (without the underscore), I | |
267 * do not want to change everything today.... jw. | |
10375
2055d3722c5b
commit https://github.com/vim/vim/commit/3f7d0907269558cb3ea184a3083640f9e20bb21e
Christian Brabandt <cb@256bit.org>
parents:
10353
diff
changeset
|
268 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac. |
7 | 269 */ |
270 #endif | |
271 | |
272 static struct signalinfo | |
273 { | |
274 int sig; /* Signal number, eg. SIGSEGV etc */ | |
275 char *name; /* Signal name (not char_u!). */ | |
276 char deadly; /* Catch as a deadly signal? */ | |
277 } signal_info[] = | |
278 { | |
279 #ifdef SIGHUP | |
280 {SIGHUP, "HUP", TRUE}, | |
281 #endif | |
282 #ifdef SIGQUIT | |
283 {SIGQUIT, "QUIT", TRUE}, | |
284 #endif | |
285 #ifdef SIGILL | |
286 {SIGILL, "ILL", TRUE}, | |
287 #endif | |
288 #ifdef SIGTRAP | |
289 {SIGTRAP, "TRAP", TRUE}, | |
290 #endif | |
291 #ifdef SIGABRT | |
292 {SIGABRT, "ABRT", TRUE}, | |
293 #endif | |
294 #ifdef SIGEMT | |
295 {SIGEMT, "EMT", TRUE}, | |
296 #endif | |
297 #ifdef SIGFPE | |
298 {SIGFPE, "FPE", TRUE}, | |
299 #endif | |
300 #ifdef SIGBUS | |
301 {SIGBUS, "BUS", TRUE}, | |
302 #endif | |
4074 | 303 #if defined(SIGSEGV) && !defined(FEAT_MZSCHEME) |
304 /* MzScheme uses SEGV in its garbage collector */ | |
7 | 305 {SIGSEGV, "SEGV", TRUE}, |
306 #endif | |
307 #ifdef SIGSYS | |
308 {SIGSYS, "SYS", TRUE}, | |
309 #endif | |
310 #ifdef SIGALRM | |
311 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */ | |
312 #endif | |
313 #ifdef SIGTERM | |
314 {SIGTERM, "TERM", TRUE}, | |
315 #endif | |
2701 | 316 #if defined(SIGVTALRM) && !defined(FEAT_RUBY) |
7 | 317 {SIGVTALRM, "VTALRM", TRUE}, |
318 #endif | |
1560 | 319 #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING) |
320 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling | |
321 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */ | |
7 | 322 {SIGPROF, "PROF", TRUE}, |
323 #endif | |
324 #ifdef SIGXCPU | |
325 {SIGXCPU, "XCPU", TRUE}, | |
326 #endif | |
327 #ifdef SIGXFSZ | |
328 {SIGXFSZ, "XFSZ", TRUE}, | |
329 #endif | |
330 #ifdef SIGUSR1 | |
331 {SIGUSR1, "USR1", TRUE}, | |
332 #endif | |
1620 | 333 #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE) |
334 /* Used for sysmouse handling */ | |
7 | 335 {SIGUSR2, "USR2", TRUE}, |
336 #endif | |
337 #ifdef SIGINT | |
338 {SIGINT, "INT", FALSE}, | |
339 #endif | |
340 #ifdef SIGWINCH | |
341 {SIGWINCH, "WINCH", FALSE}, | |
342 #endif | |
343 #ifdef SIGTSTP | |
344 {SIGTSTP, "TSTP", FALSE}, | |
345 #endif | |
346 #ifdef SIGPIPE | |
347 {SIGPIPE, "PIPE", FALSE}, | |
348 #endif | |
349 {-1, "Unknown!", FALSE} | |
350 }; | |
351 | |
1935 | 352 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
353 mch_chdir(char *path) |
1935 | 354 { |
355 if (p_verbose >= 5) | |
356 { | |
357 verbose_enter(); | |
358 smsg((char_u *)"chdir(%s)", path); | |
359 verbose_leave(); | |
360 } | |
361 # ifdef VMS | |
362 return chdir(vms_fixfilename(path)); | |
363 # else | |
364 return chdir(path); | |
365 # endif | |
366 } | |
367 | |
1757 | 368 /* |
369 * Write s[len] to the screen. | |
370 */ | |
7 | 371 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
372 mch_write(char_u *s, int len) |
7 | 373 { |
1757 | 374 ignored = (int)write(1, (char *)s, len); |
7 | 375 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
|
376 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL); |
7 | 377 } |
378 | |
379 /* | |
1450 | 380 * mch_inchar(): low level input function. |
7 | 381 * Get a characters from the keyboard. |
382 * Return the number of characters that are available. | |
383 * If wtime == 0 do not wait for characters. | |
384 * If wtime == n wait a short time for characters. | |
385 * If wtime == -1 wait forever for characters. | |
386 */ | |
387 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
388 mch_inchar( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
389 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
390 int maxlen, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
391 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
|
392 int tb_change_cnt) |
7 | 393 { |
394 int len; | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
395 int interrupted = FALSE; |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
396 int did_start_blocking = FALSE; |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
397 long wait_time; |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
398 long elapsed_time = 0; |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
399 #ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
400 ELAPSED_TYPE start_tv; |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
401 |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
402 ELAPSED_INIT(start_tv); |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
403 #endif |
7 | 404 |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
405 /* repeat until we got a character or waited long enough */ |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
406 for (;;) |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
407 { |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
408 /* Check if window changed size while we were busy, perhaps the ":set |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
409 * columns=99" command was used. */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
410 while (do_resize) |
7 | 411 handle_resize(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
412 |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
413 #ifdef MESSAGE_QUEUE |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
414 parse_queued_messages(); |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
415 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
416 if (wtime < 0 && did_start_blocking) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
417 /* blocking and already waited for p_ut */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
418 wait_time = -1; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
419 else |
9189
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
420 { |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
421 if (wtime >= 0) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
422 wait_time = wtime; |
9189
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
423 else |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
424 /* going to block after p_ut */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
425 wait_time = p_ut; |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
426 #ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
427 elapsed_time = ELAPSED_FUNC(start_tv); |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
428 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
429 wait_time -= elapsed_time; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
430 if (wait_time < 0) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
431 { |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
432 if (wtime >= 0) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
433 /* no character available within "wtime" */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
434 return 0; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
435 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
436 if (wtime < 0) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
437 { |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
438 /* no character available within 'updatetime' */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
439 did_start_blocking = TRUE; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
440 #ifdef FEAT_AUTOCMD |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
441 if (trigger_cursorhold() && maxlen >= 3 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
442 && !typebuf_changed(tb_change_cnt)) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
443 { |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
444 buf[0] = K_SPECIAL; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
445 buf[1] = KS_EXTRA; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
446 buf[2] = (int)KE_CURSORHOLD; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
447 return 3; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
448 } |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
449 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
450 /* |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
451 * If there is no character available within 'updatetime' |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
452 * seconds flush all the swap files to disk. |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
453 * Also done when interrupted by SIGWINCH. |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
454 */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
455 before_blocking(); |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
456 continue; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
457 } |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
458 } |
9189
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
459 } |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
460 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
461 #ifdef FEAT_JOB_CHANNEL |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
462 /* Checking if a job ended requires polling. Do this every 100 msec. */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
463 if (has_pending_job() && (wait_time < 0 || wait_time > 100L)) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
464 wait_time = 100L; |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
465 /* If there is readahead then parse_queued_messages() timed out and we |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
466 * should call it again soon. */ |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
467 if ((wait_time < 0 || wait_time > 100L) && channel_any_readahead()) |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
468 wait_time = 10L; |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
469 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
470 |
7 | 471 /* |
2436 | 472 * We want to be interrupted by the winch signal |
473 * or by an event on the monitored file descriptors. | |
7 | 474 */ |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
475 if (WaitForChar(wait_time, &interrupted)) |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
476 { |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
477 /* If input was put directly in typeahead buffer bail out here. */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
478 if (typebuf_changed(tb_change_cnt)) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
479 return 0; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
480 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
481 /* |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
482 * For some terminals we only get one character at a time. |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
483 * We want the get all available characters, so we could keep on |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
484 * trying until none is available |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
485 * For some other terminals this is quite slow, that's why we don't |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
486 * do it. |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
487 */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
488 len = read_from_input_buf(buf, (long)maxlen); |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
489 if (len > 0) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
490 return len; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
491 continue; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
492 } |
7 | 493 |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
494 /* no character available */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
495 #if !(defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
496 /* estimate the elapsed time */ |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
497 elapsed_time += wait_time; |
10309
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
498 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
499 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
500 if (do_resize /* interrupted by SIGWINCH signal */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
501 #ifdef FEAT_CLIENTSERVER |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
502 || server_waiting() |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
503 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
504 #ifdef MESSAGE_QUEUE |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
505 || interrupted |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
506 #endif |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
507 || wait_time > 0 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
508 || !did_start_blocking) |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
509 continue; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
510 |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
511 /* no character available or interrupted */ |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
512 break; |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
513 } |
88331ee68367
commit https://github.com/vim/vim/commit/01688ad545ff0809ddad5c8fa6b149dc5d67312b
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
514 return 0; |
7 | 515 } |
516 | |
517 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
518 handle_resize(void) |
7 | 519 { |
520 do_resize = FALSE; | |
521 shell_resized(); | |
522 } | |
523 | |
524 /* | |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
525 * Return non-zero if a character is available. |
7 | 526 */ |
527 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
528 mch_char_avail(void) |
7 | 529 { |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
530 return WaitForChar(0L, NULL); |
7 | 531 } |
532 | |
533 #if defined(HAVE_TOTAL_MEM) || defined(PROTO) | |
534 # ifdef HAVE_SYS_RESOURCE_H | |
1879 | 535 # include <sys/resource.h> |
7 | 536 # endif |
537 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) | |
538 # include <sys/sysctl.h> | |
539 # endif | |
540 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) | |
541 # include <sys/sysinfo.h> | |
542 # endif | |
543 | |
544 /* | |
1110 | 545 * Return total amount of memory available in Kbyte. |
546 * Doesn't change when memory has been allocated. | |
7 | 547 */ |
548 long_u | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
549 mch_total_mem(int special UNUSED) |
7 | 550 { |
551 long_u mem = 0; | |
1110 | 552 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */ |
7 | 553 |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
554 # ifdef HAVE_SYSCTL |
7 | 555 int mib[2], physmem; |
556 size_t len; | |
557 | |
558 /* BSD way of getting the amount of RAM available. */ | |
559 mib[0] = CTL_HW; | |
560 mib[1] = HW_USERMEM; | |
561 len = sizeof(physmem); | |
562 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0) | |
563 mem = (long_u)physmem; | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
564 # endif |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
565 |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
566 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) |
7 | 567 if (mem == 0) |
568 { | |
569 struct sysinfo sinfo; | |
570 | |
571 /* Linux way of getting amount of RAM available */ | |
572 if (sysinfo(&sinfo) == 0) | |
1110 | 573 { |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
574 # ifdef HAVE_SYSINFO_MEM_UNIT |
1110 | 575 /* avoid overflow as much as possible */ |
576 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0) | |
577 { | |
578 sinfo.mem_unit = sinfo.mem_unit >> 1; | |
579 --shiftright; | |
580 } | |
581 mem = sinfo.totalram * sinfo.mem_unit; | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
582 # else |
7 | 583 mem = sinfo.totalram; |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
584 # endif |
1110 | 585 } |
7 | 586 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
587 # endif |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
588 |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
589 # ifdef HAVE_SYSCONF |
7 | 590 if (mem == 0) |
591 { | |
592 long pagesize, pagecount; | |
593 | |
594 /* Solaris way of getting amount of RAM available */ | |
595 pagesize = sysconf(_SC_PAGESIZE); | |
596 pagecount = sysconf(_SC_PHYS_PAGES); | |
597 if (pagesize > 0 && pagecount > 0) | |
1110 | 598 { |
599 /* avoid overflow as much as possible */ | |
600 while (shiftright > 0 && (pagesize & 1) == 0) | |
601 { | |
1204 | 602 pagesize = (long_u)pagesize >> 1; |
1110 | 603 --shiftright; |
604 } | |
7 | 605 mem = (long_u)pagesize * pagecount; |
1110 | 606 } |
7 | 607 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
608 # endif |
7 | 609 |
610 /* Return the minimum of the physical memory and the user limit, because | |
611 * using more than the user limit may cause Vim to be terminated. */ | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
612 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) |
7 | 613 { |
614 struct rlimit rlp; | |
615 | |
616 if (getrlimit(RLIMIT_DATA, &rlp) == 0 | |
617 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
618 # ifdef RLIM_INFINITY |
7 | 619 && rlp.rlim_cur != RLIM_INFINITY |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
620 # endif |
1110 | 621 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright) |
7 | 622 ) |
1110 | 623 { |
624 mem = (long_u)rlp.rlim_cur; | |
625 shiftright = 10; | |
626 } | |
7 | 627 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
628 # endif |
7 | 629 |
630 if (mem > 0) | |
1110 | 631 return mem >> shiftright; |
632 return (long_u)0x1fffff; | |
7 | 633 } |
634 #endif | |
635 | |
636 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
637 mch_delay(long msec, int ignoreinput) |
7 | 638 { |
639 int old_tmode; | |
14 | 640 #ifdef FEAT_MZSCHEME |
641 long total = msec; /* remember original value */ | |
642 #endif | |
7 | 643 |
644 if (ignoreinput) | |
645 { | |
646 /* Go to cooked mode without echo, to allow SIGINT interrupting us | |
1530 | 647 * here. But we don't want QUIT to kill us (CTRL-\ used in a |
648 * shell may produce SIGQUIT). */ | |
649 in_mch_delay = TRUE; | |
7 | 650 old_tmode = curr_tmode; |
651 if (curr_tmode == TMODE_RAW) | |
652 settmode(TMODE_SLEEP); | |
653 | |
654 /* | |
655 * Everybody sleeps in a different way... | |
656 * Prefer nanosleep(), some versions of usleep() can only sleep up to | |
657 * one second. | |
658 */ | |
14 | 659 #ifdef FEAT_MZSCHEME |
660 do | |
661 { | |
662 /* if total is large enough, wait by portions in p_mzq */ | |
663 if (total > p_mzq) | |
664 msec = p_mzq; | |
665 else | |
666 msec = total; | |
667 total -= msec; | |
668 #endif | |
7 | 669 #ifdef HAVE_NANOSLEEP |
670 { | |
671 struct timespec ts; | |
672 | |
673 ts.tv_sec = msec / 1000; | |
674 ts.tv_nsec = (msec % 1000) * 1000000; | |
675 (void)nanosleep(&ts, NULL); | |
676 } | |
677 #else | |
678 # ifdef HAVE_USLEEP | |
679 while (msec >= 1000) | |
680 { | |
681 usleep((unsigned int)(999 * 1000)); | |
682 msec -= 999; | |
683 } | |
684 usleep((unsigned int)(msec * 1000)); | |
685 # else | |
686 # ifndef HAVE_SELECT | |
687 poll(NULL, 0, (int)msec); | |
688 # else | |
689 { | |
690 struct timeval tv; | |
691 | |
692 tv.tv_sec = msec / 1000; | |
693 tv.tv_usec = (msec % 1000) * 1000; | |
694 /* | |
695 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get | |
696 * a patch from Sun to fix this. Reported by Gunnar Pedersen. | |
697 */ | |
698 select(0, NULL, NULL, NULL, &tv); | |
699 } | |
700 # endif /* HAVE_SELECT */ | |
701 # endif /* HAVE_NANOSLEEP */ | |
702 #endif /* HAVE_USLEEP */ | |
14 | 703 #ifdef FEAT_MZSCHEME |
704 } | |
705 while (total > 0); | |
706 #endif | |
7 | 707 |
708 settmode(old_tmode); | |
1530 | 709 in_mch_delay = FALSE; |
7 | 710 } |
711 else | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
712 WaitForChar(msec, NULL); |
7 | 713 } |
714 | |
180 | 715 #if defined(HAVE_STACK_LIMIT) \ |
7 | 716 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK)) |
717 # define HAVE_CHECK_STACK_GROWTH | |
718 /* | |
719 * Support for checking for an almost-out-of-stack-space situation. | |
720 */ | |
721 | |
722 /* | |
723 * Return a pointer to an item on the stack. Used to find out if the stack | |
724 * grows up or down. | |
725 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
726 static void check_stack_growth(char *p); |
7 | 727 static int stack_grows_downwards; |
728 | |
729 /* | |
730 * Find out if the stack grows upwards or downwards. | |
731 * "p" points to a variable on the stack of the caller. | |
732 */ | |
733 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
734 check_stack_growth(char *p) |
7 | 735 { |
736 int i; | |
737 | |
738 stack_grows_downwards = (p > (char *)&i); | |
739 } | |
740 #endif | |
741 | |
180 | 742 #if defined(HAVE_STACK_LIMIT) || defined(PROTO) |
7 | 743 static char *stack_limit = NULL; |
744 | |
745 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) | |
746 # include <pthread.h> | |
747 # include <pthread_np.h> | |
748 #endif | |
749 | |
750 /* | |
751 * Find out until how var the stack can grow without getting into trouble. | |
752 * Called when starting up and when switching to the signal stack in | |
753 * deathtrap(). | |
754 */ | |
755 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
756 get_stack_limit(void) |
7 | 757 { |
758 struct rlimit rlp; | |
759 int i; | |
760 long lim; | |
761 | |
762 /* Set the stack limit to 15/16 of the allowable size. Skip this when the | |
763 * limit doesn't fit in a long (rlim_cur might be "long long"). */ | |
764 if (getrlimit(RLIMIT_STACK, &rlp) == 0 | |
765 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) | |
766 # ifdef RLIM_INFINITY | |
767 && rlp.rlim_cur != RLIM_INFINITY | |
768 # endif | |
769 ) | |
770 { | |
771 lim = (long)rlp.rlim_cur; | |
772 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) | |
773 { | |
774 pthread_attr_t attr; | |
775 size_t size; | |
776 | |
777 /* On FreeBSD the initial thread always has a fixed stack size, no | |
778 * matter what the limits are set to. Normally it's 1 Mbyte. */ | |
779 pthread_attr_init(&attr); | |
780 if (pthread_attr_get_np(pthread_self(), &attr) == 0) | |
781 { | |
782 pthread_attr_getstacksize(&attr, &size); | |
783 if (lim > (long)size) | |
784 lim = (long)size; | |
785 } | |
786 pthread_attr_destroy(&attr); | |
787 } | |
788 #endif | |
789 if (stack_grows_downwards) | |
790 { | |
791 stack_limit = (char *)((long)&i - (lim / 16L * 15L)); | |
792 if (stack_limit >= (char *)&i) | |
793 /* overflow, set to 1/16 of current stack position */ | |
794 stack_limit = (char *)((long)&i / 16L); | |
795 } | |
796 else | |
797 { | |
798 stack_limit = (char *)((long)&i + (lim / 16L * 15L)); | |
799 if (stack_limit <= (char *)&i) | |
800 stack_limit = NULL; /* overflow */ | |
801 } | |
802 } | |
803 } | |
804 | |
805 /* | |
806 * Return FAIL when running out of stack space. | |
807 * "p" must point to any variable local to the caller that's on the stack. | |
808 */ | |
809 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
810 mch_stackcheck(char *p) |
7 | 811 { |
812 if (stack_limit != NULL) | |
813 { | |
814 if (stack_grows_downwards) | |
815 { | |
816 if (p < stack_limit) | |
817 return FAIL; | |
818 } | |
819 else if (p > stack_limit) | |
820 return FAIL; | |
821 } | |
822 return OK; | |
823 } | |
824 #endif | |
825 | |
826 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
827 /* | |
828 * Support for using the signal stack. | |
829 * This helps when we run out of stack space, which causes a SIGSEGV. The | |
830 * signal handler then must run on another stack, since the normal stack is | |
831 * completely full. | |
832 */ | |
833 | |
5421 | 834 #if defined(HAVE_AVAILABILITYMACROS_H) |
5411 | 835 # include <AvailabilityMacros.h> |
836 #endif | |
837 | |
7 | 838 #ifndef SIGSTKSZ |
839 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */ | |
840 #endif | |
841 | |
842 # ifdef HAVE_SIGALTSTACK | |
843 static stack_t sigstk; /* for sigaltstack() */ | |
844 # else | |
845 static struct sigstack sigstk; /* for sigstack() */ | |
846 # endif | |
847 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
848 static void init_signal_stack(void); |
7 | 849 static char *signal_stack; |
850 | |
851 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
852 init_signal_stack(void) |
7 | 853 { |
854 if (signal_stack != NULL) | |
855 { | |
856 # ifdef HAVE_SIGALTSTACK | |
1375 | 857 # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \ |
858 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040) | |
7 | 859 /* missing prototype. Adding it to osdef?.h.in doesn't work, because |
860 * "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
|
861 extern int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss); |
7 | 862 # endif |
863 | |
864 # ifdef HAVE_SS_BASE | |
865 sigstk.ss_base = signal_stack; | |
866 # else | |
867 sigstk.ss_sp = signal_stack; | |
868 # endif | |
869 sigstk.ss_size = SIGSTKSZ; | |
870 sigstk.ss_flags = 0; | |
871 (void)sigaltstack(&sigstk, NULL); | |
872 # else | |
873 sigstk.ss_sp = signal_stack; | |
874 if (stack_grows_downwards) | |
875 sigstk.ss_sp += SIGSTKSZ - 1; | |
876 sigstk.ss_onstack = 0; | |
877 (void)sigstack(&sigstk, NULL); | |
878 # endif | |
879 } | |
880 } | |
881 #endif | |
882 | |
883 /* | |
1832 | 884 * We need correct prototypes for a signal function, otherwise mean compilers |
7 | 885 * will barf when the second argument to signal() is ``wrong''. |
886 * Let me try it with a few tricky defines from my own osdef.h (jw). | |
887 */ | |
888 #if defined(SIGWINCH) | |
889 static RETSIGTYPE | |
890 sig_winch SIGDEFARG(sigarg) | |
891 { | |
892 /* this is not required on all systems, but it doesn't hurt anybody */ | |
893 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); | |
894 do_resize = TRUE; | |
895 SIGRETURN; | |
896 } | |
897 #endif | |
898 | |
899 #if defined(SIGINT) | |
900 static RETSIGTYPE | |
901 catch_sigint SIGDEFARG(sigarg) | |
902 { | |
903 /* this is not required on all systems, but it doesn't hurt anybody */ | |
904 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); | |
905 got_int = TRUE; | |
906 SIGRETURN; | |
907 } | |
908 #endif | |
909 | |
910 #if defined(SIGPWR) | |
911 static RETSIGTYPE | |
912 catch_sigpwr SIGDEFARG(sigarg) | |
913 { | |
37 | 914 /* this is not required on all systems, but it doesn't hurt anybody */ |
915 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); | |
7 | 916 /* |
917 * I'm not sure we get the SIGPWR signal when the system is really going | |
918 * down or when the batteries are almost empty. Just preserve the swap | |
919 * files and don't exit, that can't do any harm. | |
920 */ | |
921 ml_sync_all(FALSE, FALSE); | |
922 SIGRETURN; | |
923 } | |
924 #endif | |
925 | |
926 #ifdef SET_SIG_ALARM | |
927 /* | |
928 * signal function for alarm(). | |
929 */ | |
930 static RETSIGTYPE | |
931 sig_alarm SIGDEFARG(sigarg) | |
932 { | |
933 /* doesn't do anything, just to break a system call */ | |
934 sig_alarm_called = TRUE; | |
935 SIGRETURN; | |
936 } | |
937 #endif | |
938 | |
188 | 939 #if (defined(HAVE_SETJMP_H) \ |
940 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \ | |
941 || defined(FEAT_LIBCALL))) \ | |
942 || defined(PROTO) | |
7 | 943 /* |
944 * A simplistic version of setjmp() that only allows one level of using. | |
945 * Don't call twice before calling mch_endjmp()!. | |
946 * Usage: | |
947 * mch_startjmp(); | |
948 * if (SETJMP(lc_jump_env) != 0) | |
949 * { | |
950 * mch_didjmp(); | |
951 * EMSG("crash!"); | |
952 * } | |
953 * else | |
954 * { | |
955 * do_the_work; | |
956 * mch_endjmp(); | |
957 * } | |
958 * Note: Can't move SETJMP() here, because a function calling setjmp() must | |
959 * not return before the saved environment is used. | |
960 * Returns OK for normal return, FAIL when the protected code caused a | |
961 * problem and LONGJMP() was used. | |
962 */ | |
963 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
964 mch_startjmp(void) |
7 | 965 { |
966 #ifdef SIGHASARG | |
967 lc_signal = 0; | |
968 #endif | |
969 lc_active = TRUE; | |
970 } | |
971 | |
972 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
973 mch_endjmp(void) |
7 | 974 { |
975 lc_active = FALSE; | |
976 } | |
977 | |
978 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
979 mch_didjmp(void) |
7 | 980 { |
981 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
982 /* On FreeBSD the signal stack has to be reset after using siglongjmp(), | |
983 * otherwise catching the signal only works once. */ | |
984 init_signal_stack(); | |
985 # endif | |
986 } | |
987 #endif | |
988 | |
989 /* | |
990 * This function handles deadly signals. | |
5338 | 991 * It tries to preserve any swap files and exit properly. |
7 | 992 * (partly from Elvis). |
5338 | 993 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in |
994 * a deadlock. | |
7 | 995 */ |
996 static RETSIGTYPE | |
997 deathtrap SIGDEFARG(sigarg) | |
998 { | |
999 static int entered = 0; /* count the number of times we got here. | |
1000 Note: when memory has been corrupted | |
1001 this may get an arbitrary value! */ | |
1002 #ifdef SIGHASARG | |
1003 int i; | |
1004 #endif | |
1005 | |
1006 #if defined(HAVE_SETJMP_H) | |
1007 /* | |
1008 * Catch a crash in protected code. | |
1009 * Restores the environment saved in lc_jump_env, which looks like | |
1010 * SETJMP() returns 1. | |
1011 */ | |
1012 if (lc_active) | |
1013 { | |
1014 # if defined(SIGHASARG) | |
1015 lc_signal = sigarg; | |
1016 # endif | |
1017 lc_active = FALSE; /* don't jump again */ | |
1018 LONGJMP(lc_jump_env, 1); | |
1019 /* NOTREACHED */ | |
1020 } | |
1021 #endif | |
1022 | |
36 | 1023 #ifdef SIGHASARG |
1530 | 1024 # ifdef SIGQUIT |
1025 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to | |
1026 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when | |
1027 * pressing CTRL-\, but we don't want Vim to exit then. */ | |
1028 if (in_mch_delay && sigarg == SIGQUIT) | |
1029 SIGRETURN; | |
1030 # endif | |
1031 | |
37 | 1032 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return |
1033 * here. This avoids that a non-reentrant function is interrupted, e.g., | |
1034 * free(). Calling free() again may then cause a crash. */ | |
1035 if (entered == 0 | |
1036 && (0 | |
1037 # ifdef SIGHUP | |
1038 || sigarg == SIGHUP | |
1039 # endif | |
1040 # ifdef SIGQUIT | |
1041 || sigarg == SIGQUIT | |
1042 # endif | |
1043 # ifdef SIGTERM | |
1044 || sigarg == SIGTERM | |
1045 # endif | |
1046 # ifdef SIGPWR | |
1047 || sigarg == SIGPWR | |
1048 # endif | |
1049 # ifdef SIGUSR1 | |
1050 || sigarg == SIGUSR1 | |
1051 # endif | |
1052 # ifdef SIGUSR2 | |
1053 || sigarg == SIGUSR2 | |
1054 # endif | |
1055 ) | |
413 | 1056 && !vim_handle_signal(sigarg)) |
36 | 1057 SIGRETURN; |
1058 #endif | |
1059 | |
7 | 1060 /* Remember how often we have been called. */ |
1061 ++entered; | |
1062 | |
9262
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1063 #ifdef FEAT_AUTOCMD |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1064 /* 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
|
1065 * available in the signal stack. */ |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1066 block_autocmds(); |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1067 #endif |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1068 |
7 | 1069 #ifdef FEAT_EVAL |
1070 /* Set the v:dying variable. */ | |
1071 set_vim_var_nr(VV_DYING, (long)entered); | |
1072 #endif | |
1073 | |
180 | 1074 #ifdef HAVE_STACK_LIMIT |
7 | 1075 /* Since we are now using the signal stack, need to reset the stack |
1076 * limit. Otherwise using a regexp will fail. */ | |
1077 get_stack_limit(); | |
1078 #endif | |
1079 | |
758 | 1080 #if 0 |
1081 /* This is for opening gdb the moment Vim crashes. | |
1082 * You need to manually adjust the file name and Vim executable name. | |
1083 * Suggested by SungHyun Nam. */ | |
1084 { | |
1085 # define VI_GDB_FILE "/tmp/vimgdb" | |
1086 # define VIM_NAME "/usr/bin/vim" | |
1087 FILE *fp = fopen(VI_GDB_FILE, "w"); | |
1088 if (fp) | |
1089 { | |
1090 fprintf(fp, | |
1091 "file %s\n" | |
1092 "attach %d\n" | |
1093 "set height 1000\n" | |
1094 "bt full\n" | |
1095 , VIM_NAME, getpid()); | |
1096 fclose(fp); | |
1097 system("xterm -e gdb -x "VI_GDB_FILE); | |
1098 unlink(VI_GDB_FILE); | |
1099 } | |
1100 } | |
1101 #endif | |
1102 | |
7 | 1103 #ifdef SIGHASARG |
1104 /* try to find the name of this signal */ | |
1105 for (i = 0; signal_info[i].sig != -1; i++) | |
1106 if (sigarg == signal_info[i].sig) | |
1107 break; | |
1108 deadly_signal = sigarg; | |
1109 #endif | |
1110 | |
1111 full_screen = FALSE; /* don't write message to the GUI, it might be | |
1112 * part of the problem... */ | |
1113 /* | |
1114 * If something goes wrong after entering here, we may get here again. | |
1115 * When this happens, give a message and try to exit nicely (resetting the | |
1116 * terminal mode, etc.) | |
1117 * When this happens twice, just exit, don't even try to give a message, | |
1118 * stack may be corrupt or something weird. | |
1119 * When this still happens again (or memory was corrupted in such a way | |
1120 * that "entered" was clobbered) use _exit(), don't try freeing resources. | |
1121 */ | |
1122 if (entered >= 3) | |
1123 { | |
1124 reset_signals(); /* don't catch any signals anymore */ | |
1125 may_core_dump(); | |
1126 if (entered >= 4) | |
1127 _exit(8); | |
1128 exit(7); | |
1129 } | |
1130 if (entered == 2) | |
1131 { | |
5338 | 1132 /* No translation, it may call malloc(). */ |
1133 OUT_STR("Vim: Double signal, exiting\n"); | |
7 | 1134 out_flush(); |
1135 getout(1); | |
1136 } | |
1137 | |
5338 | 1138 /* No translation, it may call malloc(). */ |
7 | 1139 #ifdef SIGHASARG |
5338 | 1140 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n", |
7 | 1141 signal_info[i].name); |
1142 #else | |
5338 | 1143 sprintf((char *)IObuff, "Vim: Caught deadly signal\n"); |
1144 #endif | |
1145 | |
1146 /* Preserve files and exit. This sets the really_exiting flag to prevent | |
1147 * calling free(). */ | |
1148 preserve_exit(); | |
7 | 1149 |
9262
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1150 /* NOTREACHED */ |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1151 |
33 | 1152 #ifdef NBDEBUG |
1153 reset_signals(); | |
1154 may_core_dump(); | |
1155 abort(); | |
1156 #endif | |
1157 | |
7 | 1158 SIGRETURN; |
1159 } | |
1160 | |
1832 | 1161 #if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1162 /* |
1163 * On Solaris with multi-threading, suspending might not work immediately. | |
1164 * Catch the SIGCONT signal, which will be used as an indication whether the | |
1165 * suspending has been done or not. | |
1832 | 1166 * |
1167 * On Linux, signal is not always handled immediately either. | |
1168 * See https://bugs.launchpad.net/bugs/291373 | |
1169 * | |
2701 | 1170 * volatile because it is used in signal handler sigcont_handler(). |
7 | 1171 */ |
1832 | 1172 static volatile int sigcont_received; |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1173 static RETSIGTYPE sigcont_handler SIGPROTOARG; |
7 | 1174 |
1175 /* | |
1176 * signal handler for SIGCONT | |
1177 */ | |
1178 static RETSIGTYPE | |
1179 sigcont_handler SIGDEFARG(sigarg) | |
1180 { | |
1181 sigcont_received = TRUE; | |
1182 SIGRETURN; | |
1183 } | |
1184 #endif | |
1185 | |
2586 | 1186 # 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
|
1187 static void loose_clipboard(void); |
4230 | 1188 # ifdef USE_SYSTEM |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1189 static void save_clipboard(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1190 static void restore_clipboard(void); |
4209 | 1191 |
1192 static void *clip_star_save = NULL; | |
1193 static void *clip_plus_save = NULL; | |
4230 | 1194 # endif |
2586 | 1195 |
1196 /* | |
1197 * Called when Vim is going to sleep or execute a shell command. | |
1198 * We can't respond to requests for the X selections. Lose them, otherwise | |
1199 * other applications will hang. But first copy the text to cut buffer 0. | |
1200 */ | |
1201 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1202 loose_clipboard(void) |
2586 | 1203 { |
1204 if (clip_star.owned || clip_plus.owned) | |
1205 { | |
1206 x11_export_final_selection(); | |
1207 if (clip_star.owned) | |
1208 clip_lose_selection(&clip_star); | |
1209 if (clip_plus.owned) | |
1210 clip_lose_selection(&clip_plus); | |
1211 if (x11_display != NULL) | |
1212 XFlush(x11_display); | |
1213 } | |
1214 } | |
4209 | 1215 |
4230 | 1216 # ifdef USE_SYSTEM |
4209 | 1217 /* |
1218 * Save clipboard text to restore later. | |
1219 */ | |
1220 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1221 save_clipboard(void) |
4209 | 1222 { |
1223 if (clip_star.owned) | |
1224 clip_star_save = get_register('*', TRUE); | |
1225 if (clip_plus.owned) | |
1226 clip_plus_save = get_register('+', TRUE); | |
1227 } | |
1228 | |
1229 /* | |
1230 * Restore clipboard text if no one own the X selection. | |
1231 */ | |
1232 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1233 restore_clipboard(void) |
4209 | 1234 { |
1235 if (clip_star_save != NULL) | |
1236 { | |
1237 if (!clip_gen_owner_exists(&clip_star)) | |
1238 put_register('*', clip_star_save); | |
1239 else | |
1240 free_register(clip_star_save); | |
1241 clip_star_save = NULL; | |
1242 } | |
1243 if (clip_plus_save != NULL) | |
1244 { | |
1245 if (!clip_gen_owner_exists(&clip_plus)) | |
1246 put_register('+', clip_plus_save); | |
1247 else | |
1248 free_register(clip_plus_save); | |
1249 clip_plus_save = NULL; | |
1250 } | |
1251 } | |
4230 | 1252 # endif |
2586 | 1253 #endif |
1254 | |
7 | 1255 /* |
1256 * If the machine has job control, use it to suspend the program, | |
1257 * otherwise fake it by starting a new shell. | |
1258 */ | |
1259 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1260 mch_suspend(void) |
7 | 1261 { |
1262 /* BeOS does have SIGTSTP, but it doesn't work. */ | |
1263 #if defined(SIGTSTP) && !defined(__BEOS__) | |
1264 out_flush(); /* needed to make cursor visible on some systems */ | |
1265 settmode(TMODE_COOK); | |
1266 out_flush(); /* needed to disable mouse on some systems */ | |
1267 | |
1268 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) | |
2586 | 1269 loose_clipboard(); |
7 | 1270 # endif |
1271 | |
1832 | 1272 # if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1273 sigcont_received = FALSE; |
1274 # endif | |
1275 kill(0, SIGTSTP); /* send ourselves a STOP signal */ | |
1832 | 1276 # if defined(_REENTRANT) && defined(SIGCONT) |
1277 /* | |
1278 * Wait for the SIGCONT signal to be handled. It generally happens | |
1279 * immediately, but somehow not all the time. Do not call pause() | |
1280 * because there would be race condition which would hang Vim if | |
1281 * signal happened in between the test of sigcont_received and the | |
1282 * call to pause(). If signal is not yet received, call sleep(0) | |
1283 * to just yield CPU. Signal should then be received. If somehow | |
1284 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting | |
1285 * further if signal is not received after 1+2+3+4 ms (not expected | |
1286 * to happen). | |
1287 */ | |
1288 { | |
1932 | 1289 long wait_time; |
1290 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) | |
1832 | 1291 /* Loop is not entered most of the time */ |
1932 | 1292 mch_delay(wait_time, FALSE); |
1832 | 1293 } |
7 | 1294 # endif |
1295 | |
1296 # ifdef FEAT_TITLE | |
1297 /* | |
1298 * Set oldtitle to NULL, so the current title is obtained again. | |
1299 */ | |
1300 vim_free(oldtitle); | |
1301 oldtitle = NULL; | |
1302 # endif | |
1303 settmode(TMODE_RAW); | |
1304 need_check_timestamps = TRUE; | |
1305 did_check_timestamps = FALSE; | |
1306 #else | |
1307 suspend_shell(); | |
1308 #endif | |
1309 } | |
1310 | |
1311 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1312 mch_init(void) |
7 | 1313 { |
1314 Columns = 80; | |
1315 Rows = 24; | |
1316 | |
1317 out_flush(); | |
1318 set_signals(); | |
167 | 1319 |
765 | 1320 #ifdef MACOS_CONVERT |
167 | 1321 mac_conv_init(); |
1322 #endif | |
4168 | 1323 #ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
1324 win_clip_init(); | |
1325 #endif | |
7 | 1326 } |
1327 | |
1328 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1329 set_signals(void) |
7 | 1330 { |
1331 #if defined(SIGWINCH) | |
1332 /* | |
1333 * WINDOW CHANGE signal is handled with sig_winch(). | |
1334 */ | |
1335 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); | |
1336 #endif | |
1337 | |
1338 /* | |
1339 * We want the STOP signal to work, to make mch_suspend() work. | |
1340 * For "rvim" the STOP signal is ignored. | |
1341 */ | |
1342 #ifdef SIGTSTP | |
1343 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); | |
1344 #endif | |
1832 | 1345 #if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1346 signal(SIGCONT, sigcont_handler); |
1347 #endif | |
1348 | |
1349 /* | |
1350 * We want to ignore breaking of PIPEs. | |
1351 */ | |
1352 #ifdef SIGPIPE | |
1353 signal(SIGPIPE, SIG_IGN); | |
1354 #endif | |
1355 | |
1356 #ifdef SIGINT | |
167 | 1357 catch_int_signal(); |
7 | 1358 #endif |
1359 | |
1360 /* | |
1361 * Ignore alarm signals (Perl's alarm() generates it). | |
1362 */ | |
1363 #ifdef SIGALRM | |
1364 signal(SIGALRM, SIG_IGN); | |
1365 #endif | |
1366 | |
1367 /* | |
1368 * Catch SIGPWR (power failure?) to preserve the swap files, so that no | |
1369 * work will be lost. | |
1370 */ | |
1371 #ifdef SIGPWR | |
1372 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); | |
1373 #endif | |
1374 | |
1375 /* | |
1376 * Arrange for other signals to gracefully shutdown Vim. | |
1377 */ | |
1378 catch_signals(deathtrap, SIG_ERR); | |
1379 | |
1380 #if defined(FEAT_GUI) && defined(SIGHUP) | |
1381 /* | |
1382 * When the GUI is running, ignore the hangup signal. | |
1383 */ | |
1384 if (gui.in_use) | |
1385 signal(SIGHUP, SIG_IGN); | |
1386 #endif | |
1387 } | |
1388 | |
167 | 1389 #if defined(SIGINT) || defined(PROTO) |
1390 /* | |
1391 * Catch CTRL-C (only works while in Cooked mode). | |
1392 */ | |
1393 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1394 catch_int_signal(void) |
167 | 1395 { |
1396 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); | |
1397 } | |
1398 #endif | |
1399 | |
7 | 1400 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1401 reset_signals(void) |
7 | 1402 { |
1403 catch_signals(SIG_DFL, SIG_DFL); | |
1832 | 1404 #if defined(_REENTRANT) && defined(SIGCONT) |
7 | 1405 /* SIGCONT isn't in the list, because its default action is ignore */ |
1406 signal(SIGCONT, SIG_DFL); | |
1407 #endif | |
1408 } | |
1409 | |
1410 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1411 catch_signals( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1412 RETSIGTYPE (*func_deadly)(), |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1413 RETSIGTYPE (*func_other)()) |
7 | 1414 { |
1415 int i; | |
1416 | |
1417 for (i = 0; signal_info[i].sig != -1; i++) | |
1418 if (signal_info[i].deadly) | |
1419 { | |
1420 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) | |
1421 struct sigaction sa; | |
1422 | |
1423 /* Setup to use the alternate stack for the signal function. */ | |
1424 sa.sa_handler = func_deadly; | |
1425 sigemptyset(&sa.sa_mask); | |
1426 # if defined(__linux__) && defined(_REENTRANT) | |
1427 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in | |
1428 * thread handling in combination with using the alternate stack: | |
1429 * pthread library functions try to use the stack pointer to | |
1430 * identify the current thread, causing a SEGV signal, which | |
1431 * recursively calls deathtrap() and hangs. */ | |
1432 sa.sa_flags = 0; | |
1433 # else | |
1434 sa.sa_flags = SA_ONSTACK; | |
1435 # endif | |
1436 sigaction(signal_info[i].sig, &sa, NULL); | |
1437 #else | |
1438 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC) | |
1439 struct sigvec sv; | |
1440 | |
1441 /* Setup to use the alternate stack for the signal function. */ | |
1442 sv.sv_handler = func_deadly; | |
1443 sv.sv_mask = 0; | |
1444 sv.sv_flags = SV_ONSTACK; | |
1445 sigvec(signal_info[i].sig, &sv, NULL); | |
1446 # else | |
1447 signal(signal_info[i].sig, func_deadly); | |
1448 # endif | |
1449 #endif | |
1450 } | |
1451 else if (func_other != SIG_ERR) | |
1452 signal(signal_info[i].sig, func_other); | |
1453 } | |
1454 | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1455 #ifdef HAVE_SIGPROCMASK |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1456 static void |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1457 block_signals(sigset_t *set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1458 { |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1459 sigset_t newset; |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1460 int i; |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1461 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1462 sigemptyset(&newset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1463 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1464 for (i = 0; signal_info[i].sig != -1; i++) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1465 sigaddset(&newset, signal_info[i].sig); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1466 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1467 # if defined(_REENTRANT) && defined(SIGCONT) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1468 /* SIGCONT isn't in the list, because its default action is ignore */ |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1469 sigaddset(&newset, SIGCONT); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1470 # endif |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1471 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1472 sigprocmask(SIG_BLOCK, &newset, set); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1473 } |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1474 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1475 static void |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1476 unblock_signals(sigset_t *set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1477 { |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1478 sigprocmask(SIG_SETMASK, set, NULL); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1479 } |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1480 #endif |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1481 |
7 | 1482 /* |
37 | 1483 * Handling of SIGHUP, SIGQUIT and SIGTERM: |
1146 | 1484 * "when" == a signal: when busy, postpone and return FALSE, otherwise |
1485 * return TRUE | |
1486 * "when" == SIGNAL_BLOCK: Going to be busy, block signals | |
1487 * "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
|
1488 * signal |
36 | 1489 * Returns TRUE when Vim should exit. |
1490 */ | |
1491 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1492 vim_handle_signal(int sig) |
36 | 1493 { |
37 | 1494 static int got_signal = 0; |
1495 static int blocked = TRUE; | |
1496 | |
1497 switch (sig) | |
36 | 1498 { |
37 | 1499 case SIGNAL_BLOCK: blocked = TRUE; |
1500 break; | |
1501 | |
1502 case SIGNAL_UNBLOCK: blocked = FALSE; | |
1503 if (got_signal != 0) | |
1504 { | |
1505 kill(getpid(), got_signal); | |
1506 got_signal = 0; | |
1507 } | |
1508 break; | |
1509 | |
1510 default: if (!blocked) | |
36 | 1511 return TRUE; /* exit! */ |
37 | 1512 got_signal = sig; |
1513 #ifdef SIGPWR | |
1514 if (sig != SIGPWR) | |
1515 #endif | |
1516 got_int = TRUE; /* break any loops */ | |
36 | 1517 break; |
1518 } | |
1519 return FALSE; | |
1520 } | |
1521 | |
1522 /* | |
7 | 1523 * Check_win checks whether we have an interactive stdout. |
1524 */ | |
1525 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1526 mch_check_win(int argc UNUSED, char **argv UNUSED) |
7 | 1527 { |
1528 if (isatty(1)) | |
1529 return OK; | |
1530 return FAIL; | |
1531 } | |
1532 | |
1533 /* | |
1534 * Return TRUE if the input comes from a terminal, FALSE otherwise. | |
1535 */ | |
1536 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1537 mch_input_isatty(void) |
7 | 1538 { |
1539 if (isatty(read_cmd_fd)) | |
1540 return TRUE; | |
1541 return FALSE; | |
1542 } | |
1543 | |
1544 #ifdef FEAT_X11 | |
1545 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1546 # if defined(ELAPSED_TIMEVAL) \ |
7 | 1547 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)) |
1548 | |
1549 /* | |
1550 * Give a message about the elapsed time for opening the X window. | |
1551 */ | |
1552 static void | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1553 xopen_message(long elapsed_msec) |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1554 { |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1555 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed_msec); |
7 | 1556 } |
1557 # endif | |
1558 #endif | |
1559 | |
1560 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD)) | |
1561 /* | |
1562 * A few functions shared by X11 title and clipboard code. | |
1563 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1564 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
|
1565 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
|
1566 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
|
1567 static int test_x11_window(Display *dpy); |
7 | 1568 |
1569 static int got_x_error = FALSE; | |
1570 | |
1571 /* | |
1572 * X Error handler, otherwise X just exits! (very rude) -- webb | |
1573 */ | |
1574 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1575 x_error_handler(Display *dpy, XErrorEvent *error_event) |
7 | 1576 { |
42 | 1577 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE); |
7 | 1578 STRCAT(IObuff, _("\nVim: Got X error\n")); |
1579 | |
1580 /* We cannot print a message and continue, because no X calls are allowed | |
1581 * here (causes my system to hang). Silently continuing might be an | |
1582 * alternative... */ | |
1583 preserve_exit(); /* preserve files and exit */ | |
1584 | |
1585 return 0; /* NOTREACHED */ | |
1586 } | |
1587 | |
1588 /* | |
1589 * Another X Error handler, just used to check for errors. | |
1590 */ | |
1591 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1592 x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED) |
7 | 1593 { |
1594 got_x_error = TRUE; | |
1595 return 0; | |
1596 } | |
1597 | |
1598 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) | |
1599 # if defined(HAVE_SETJMP_H) | |
1600 /* | |
1601 * An X IO Error handler, used to catch error while opening the display. | |
1602 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1603 static int x_IOerror_check(Display *dpy); |
7 | 1604 |
1605 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1606 x_IOerror_check(Display *dpy UNUSED) |
7 | 1607 { |
1608 /* This function should not return, it causes exit(). Longjump instead. */ | |
1609 LONGJMP(lc_jump_env, 1); | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
1610 # if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__) |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1611 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
|
1612 # endif |
7 | 1613 } |
1614 # endif | |
1615 | |
1616 /* | |
1617 * An X IO Error handler, used to catch terminal errors. | |
1618 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1619 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
|
1620 static void may_restore_clipboard(void); |
6383 | 1621 static int xterm_dpy_was_reset = FALSE; |
7 | 1622 |
1623 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1624 x_IOerror_handler(Display *dpy UNUSED) |
7 | 1625 { |
1626 xterm_dpy = NULL; | |
6383 | 1627 xterm_dpy_was_reset = TRUE; |
7 | 1628 x11_window = 0; |
1629 x11_display = NULL; | |
1630 xterm_Shell = (Widget)0; | |
1631 | |
1632 /* This function should not return, it causes exit(). Longjump instead. */ | |
1633 LONGJMP(x_jump_env, 1); | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
1634 # if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__) |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1635 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
|
1636 # endif |
7 | 1637 } |
6383 | 1638 |
1639 /* | |
1640 * If the X11 connection was lost try to restore it. | |
1641 * Helps when the X11 server was stopped and restarted while Vim was inactive | |
6448 | 1642 * (e.g. through tmux). |
6383 | 1643 */ |
1644 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1645 may_restore_clipboard(void) |
6383 | 1646 { |
1647 if (xterm_dpy_was_reset) | |
1648 { | |
1649 xterm_dpy_was_reset = FALSE; | |
6458 | 1650 |
1651 # ifndef LESSTIF_VERSION | |
1652 /* This has been reported to avoid Vim getting stuck. */ | |
1653 if (app_context != (XtAppContext)NULL) | |
1654 { | |
1655 XtDestroyApplicationContext(app_context); | |
1656 app_context = (XtAppContext)NULL; | |
1657 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
1658 } | |
1659 # endif | |
1660 | |
6383 | 1661 setup_term_clip(); |
1662 get_x11_title(FALSE); | |
1663 } | |
1664 } | |
7 | 1665 #endif |
1666 | |
1667 /* | |
1668 * Return TRUE when connection to the X server is desired. | |
1669 */ | |
1670 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1671 x_connect_to_server(void) |
7 | 1672 { |
1673 #if defined(FEAT_CLIENTSERVER) | |
1674 if (x_force_connect) | |
1675 return TRUE; | |
1676 #endif | |
1677 if (x_no_connect) | |
1678 return FALSE; | |
1679 | |
1680 /* Check for a match with "exclude:" from 'clipboard'. */ | |
1681 if (clip_exclude_prog != NULL) | |
1682 { | |
6375 | 1683 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0)) |
7 | 1684 return FALSE; |
1685 } | |
1686 return TRUE; | |
1687 } | |
1688 | |
1689 /* | |
1690 * Test if "dpy" and x11_window are valid by getting the window title. | |
1691 * I don't actually want it yet, so there may be a simpler call to use, but | |
1692 * this will cause the error handler x_error_check() to be called if anything | |
1693 * is wrong, such as the window pointer being invalid (as can happen when the | |
1694 * user changes his DISPLAY, but not his WINDOWID) -- webb | |
1695 */ | |
1696 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1697 test_x11_window(Display *dpy) |
7 | 1698 { |
1699 int (*old_handler)(); | |
1700 XTextProperty text_prop; | |
1701 | |
1702 old_handler = XSetErrorHandler(x_error_check); | |
1703 got_x_error = FALSE; | |
1704 if (XGetWMName(dpy, x11_window, &text_prop)) | |
1705 XFree((void *)text_prop.value); | |
1706 XSync(dpy, False); | |
1707 (void)XSetErrorHandler(old_handler); | |
1708 | |
1709 if (p_verbose > 0 && got_x_error) | |
292 | 1710 verb_msg((char_u *)_("Testing the X display failed")); |
7 | 1711 |
1712 return (got_x_error ? FAIL : OK); | |
1713 } | |
1714 #endif | |
1715 | |
1716 #ifdef FEAT_TITLE | |
1717 | |
1718 #ifdef FEAT_X11 | |
1719 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1720 static int get_x11_thing(int get_title, int test_only); |
7 | 1721 |
1722 /* | |
1723 * try to get x11 window and display | |
1724 * | |
1725 * return FAIL for failure, OK otherwise | |
1726 */ | |
1727 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1728 get_x11_windis(void) |
7 | 1729 { |
1730 char *winid; | |
1731 static int result = -1; | |
1732 #define XD_NONE 0 /* x11_display not set here */ | |
1733 #define XD_HERE 1 /* x11_display opened here */ | |
1734 #define XD_GUI 2 /* x11_display used from gui.dpy */ | |
1735 #define XD_XTERM 3 /* x11_display used from xterm_dpy */ | |
1736 static int x11_display_from = XD_NONE; | |
1737 static int did_set_error_handler = FALSE; | |
1738 | |
1739 if (!did_set_error_handler) | |
1740 { | |
1741 /* X just exits if it finds an error otherwise! */ | |
1742 (void)XSetErrorHandler(x_error_handler); | |
1743 did_set_error_handler = TRUE; | |
1744 } | |
1745 | |
574 | 1746 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
7 | 1747 if (gui.in_use) |
1748 { | |
1749 /* | |
1750 * If the X11 display was opened here before, for the window where Vim | |
1751 * was started, close that one now to avoid a memory leak. | |
1752 */ | |
1753 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1754 { | |
1755 XCloseDisplay(x11_display); | |
1756 x11_display_from = XD_NONE; | |
1757 } | |
1758 if (gui_get_x11_windis(&x11_window, &x11_display) == OK) | |
1759 { | |
1760 x11_display_from = XD_GUI; | |
1761 return OK; | |
1762 } | |
1763 x11_display = NULL; | |
1764 return FAIL; | |
1765 } | |
1766 else if (x11_display_from == XD_GUI) | |
1767 { | |
1768 /* GUI must have stopped somehow, clear x11_display */ | |
1769 x11_window = 0; | |
1770 x11_display = NULL; | |
1771 x11_display_from = XD_NONE; | |
1772 } | |
1773 #endif | |
1774 | |
1775 /* When started with the "-X" argument, don't try connecting. */ | |
1776 if (!x_connect_to_server()) | |
1777 return FAIL; | |
1778 | |
1779 /* | |
1780 * If WINDOWID not set, should try another method to find out | |
1781 * what the current window number is. The only code I know for | |
1782 * this is very complicated. | |
1783 * We assume that zero is invalid for WINDOWID. | |
1784 */ | |
1785 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL) | |
1786 x11_window = (Window)atol(winid); | |
1787 | |
1788 #ifdef FEAT_XCLIPBOARD | |
1789 if (xterm_dpy != NULL && x11_window != 0) | |
1790 { | |
1450 | 1791 /* We may have checked it already, but Gnome terminal can move us to |
1792 * another window, so we need to check every time. */ | |
1793 if (x11_display_from != XD_XTERM) | |
1794 { | |
1795 /* | |
1796 * If the X11 display was opened here before, for the window where | |
1797 * Vim was started, close that one now to avoid a memory leak. | |
1798 */ | |
1799 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1800 XCloseDisplay(x11_display); | |
1801 x11_display = xterm_dpy; | |
1802 x11_display_from = XD_XTERM; | |
1803 } | |
7 | 1804 if (test_x11_window(x11_display) == FAIL) |
1805 { | |
1806 /* probably bad $WINDOWID */ | |
1807 x11_window = 0; | |
1808 x11_display = NULL; | |
1809 x11_display_from = XD_NONE; | |
1810 return FAIL; | |
1811 } | |
1812 return OK; | |
1813 } | |
1814 #endif | |
1815 | |
1816 if (x11_window == 0 || x11_display == NULL) | |
1817 result = -1; | |
1818 | |
1819 if (result != -1) /* Have already been here and set this */ | |
1820 return result; /* Don't do all these X calls again */ | |
1821 | |
1822 if (x11_window != 0 && x11_display == NULL) | |
1823 { | |
1824 #ifdef SET_SIG_ALARM | |
1825 RETSIGTYPE (*sig_save)(); | |
1826 #endif | |
1827 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) | |
1828 struct timeval start_tv; | |
1829 | |
1830 if (p_verbose > 0) | |
1831 gettimeofday(&start_tv, NULL); | |
1832 #endif | |
1833 | |
1834 #ifdef SET_SIG_ALARM | |
1835 /* | |
1836 * Opening the Display may hang if the DISPLAY setting is wrong, or | |
1837 * the network connection is bad. Set an alarm timer to get out. | |
1838 */ | |
1839 sig_alarm_called = FALSE; | |
1840 sig_save = (RETSIGTYPE (*)())signal(SIGALRM, | |
1841 (RETSIGTYPE (*)())sig_alarm); | |
1842 alarm(2); | |
1843 #endif | |
1844 x11_display = XOpenDisplay(NULL); | |
1845 | |
1846 #ifdef SET_SIG_ALARM | |
1847 alarm(0); | |
1848 signal(SIGALRM, (RETSIGTYPE (*)())sig_save); | |
1849 if (p_verbose > 0 && sig_alarm_called) | |
292 | 1850 verb_msg((char_u *)_("Opening the X display timed out")); |
7 | 1851 #endif |
1852 if (x11_display != NULL) | |
1853 { | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1854 # ifdef ELAPSED_FUNC |
7 | 1855 if (p_verbose > 0) |
292 | 1856 { |
1857 verbose_enter(); | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1858 xopen_message(ELAPSED_FUNC(start_tv)); |
292 | 1859 verbose_leave(); |
1860 } | |
7 | 1861 # endif |
1862 if (test_x11_window(x11_display) == FAIL) | |
1863 { | |
1864 /* Maybe window id is bad */ | |
1865 x11_window = 0; | |
1866 XCloseDisplay(x11_display); | |
1867 x11_display = NULL; | |
1868 } | |
1869 else | |
1870 x11_display_from = XD_HERE; | |
1871 } | |
1872 } | |
1873 if (x11_window == 0 || x11_display == NULL) | |
1874 return (result = FAIL); | |
2609 | 1875 |
1876 # ifdef FEAT_EVAL | |
1877 set_vim_var_nr(VV_WINDOWID, (long)x11_window); | |
1878 # endif | |
1879 | |
7 | 1880 return (result = OK); |
1881 } | |
1882 | |
1883 /* | |
1884 * Determine original x11 Window Title | |
1885 */ | |
1886 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1887 get_x11_title(int test_only) |
7 | 1888 { |
32 | 1889 return get_x11_thing(TRUE, test_only); |
7 | 1890 } |
1891 | |
1892 /* | |
1893 * Determine original x11 Window icon | |
1894 */ | |
1895 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1896 get_x11_icon(int test_only) |
7 | 1897 { |
1898 int retval = FALSE; | |
1899 | |
1900 retval = get_x11_thing(FALSE, test_only); | |
1901 | |
1902 /* could not get old icon, use terminal name */ | |
1903 if (oldicon == NULL && !test_only) | |
1904 { | |
1905 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 1906 oldicon = vim_strsave(T_NAME + 8); |
7 | 1907 else |
1940 | 1908 oldicon = vim_strsave(T_NAME); |
7 | 1909 } |
1910 | |
1911 return retval; | |
1912 } | |
1913 | |
1914 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1915 get_x11_thing( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1916 int get_title, /* get title string */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1917 int test_only) |
7 | 1918 { |
1919 XTextProperty text_prop; | |
1920 int retval = FALSE; | |
1921 Status status; | |
1922 | |
1923 if (get_x11_windis() == OK) | |
1924 { | |
1925 /* Get window/icon name if any */ | |
1926 if (get_title) | |
1927 status = XGetWMName(x11_display, x11_window, &text_prop); | |
1928 else | |
1929 status = XGetWMIconName(x11_display, x11_window, &text_prop); | |
1930 | |
1931 /* | |
1932 * If terminal is xterm, then x11_window may be a child window of the | |
1933 * outer xterm window that actually contains the window/icon name, so | |
1934 * keep traversing up the tree until a window with a title/icon is | |
1935 * found. | |
1936 */ | |
1937 /* Previously this was only done for xterm and alikes. I don't see a | |
1938 * reason why it would fail for other terminal emulators. | |
1939 * if (term_is_xterm) */ | |
1940 { | |
1941 Window root; | |
1942 Window parent; | |
1943 Window win = x11_window; | |
1944 Window *children; | |
1945 unsigned int num_children; | |
1946 | |
1947 while (!status || text_prop.value == NULL) | |
1948 { | |
1949 if (!XQueryTree(x11_display, win, &root, &parent, &children, | |
1950 &num_children)) | |
1951 break; | |
1952 if (children) | |
1953 XFree((void *)children); | |
1954 if (parent == root || parent == 0) | |
1955 break; | |
1956 | |
1957 win = parent; | |
1958 if (get_title) | |
1959 status = XGetWMName(x11_display, win, &text_prop); | |
1960 else | |
1961 status = XGetWMIconName(x11_display, win, &text_prop); | |
1962 } | |
1963 } | |
1964 if (status && text_prop.value != NULL) | |
1965 { | |
1966 retval = TRUE; | |
1967 if (!test_only) | |
1968 { | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1969 #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
|
1970 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
|
1971 # ifdef FEAT_MBYTE |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1972 && !has_mbyte |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1973 # endif |
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1974 ) |
7 | 1975 { |
1976 #endif | |
1977 if (get_title) | |
1978 oldtitle = vim_strsave((char_u *)text_prop.value); | |
1979 else | |
1980 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
|
1981 #if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE) |
7 | 1982 } |
1983 else | |
1984 { | |
1985 char **cl; | |
1986 Status transform_status; | |
1987 int n = 0; | |
1988 | |
1989 transform_status = XmbTextPropertyToTextList(x11_display, | |
1990 &text_prop, | |
1991 &cl, &n); | |
1992 if (transform_status >= Success && n > 0 && cl[0]) | |
1993 { | |
1994 if (get_title) | |
1995 oldtitle = vim_strsave((char_u *) cl[0]); | |
1996 else | |
1997 oldicon = vim_strsave((char_u *) cl[0]); | |
1998 XFreeStringList(cl); | |
1999 } | |
2000 else | |
2001 { | |
2002 if (get_title) | |
2003 oldtitle = vim_strsave((char_u *)text_prop.value); | |
2004 else | |
2005 oldicon = vim_strsave((char_u *)text_prop.value); | |
2006 } | |
2007 } | |
2008 #endif | |
2009 } | |
2010 XFree((void *)text_prop.value); | |
2011 } | |
2012 } | |
2013 return retval; | |
2014 } | |
2015 | |
6282 | 2016 /* Xutf8 functions are not avaialble on older systems. Note that on some |
2017 * systems X_HAVE_UTF8_STRING may be defined in a header file but | |
2018 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for | |
2019 * that and defines HAVE_XUTF8SETWMPROPERTIES. */ | |
7 | 2020 #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE) |
6282 | 2021 # if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES |
7 | 2022 # define USE_UTF8_STRING |
2023 # endif | |
2024 #endif | |
2025 | |
2026 /* | |
2027 * Set x11 Window Title | |
2028 * | |
2029 * get_x11_windis() must be called before this and have returned OK | |
2030 */ | |
2031 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2032 set_x11_title(char_u *title) |
7 | 2033 { |
2034 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING | |
2035 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't | |
2036 * supported everywhere and STRING doesn't work for multi-byte titles. | |
2037 */ | |
2038 #ifdef USE_UTF8_STRING | |
2039 if (enc_utf8) | |
2040 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title, | |
2041 NULL, NULL, 0, NULL, NULL, NULL); | |
2042 else | |
2043 #endif | |
2044 { | |
2045 #if XtSpecificationRelease >= 4 | |
2046 # ifdef FEAT_XFONTSET | |
2047 XmbSetWMProperties(x11_display, x11_window, (const char *)title, | |
2048 NULL, NULL, 0, NULL, NULL, NULL); | |
2049 # else | |
2050 XTextProperty text_prop; | |
129 | 2051 char *c_title = (char *)title; |
7 | 2052 |
2053 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */ | |
129 | 2054 (void)XStringListToTextProperty(&c_title, 1, &text_prop); |
7 | 2055 XSetWMProperties(x11_display, x11_window, &text_prop, |
2056 NULL, NULL, 0, NULL, NULL, NULL); | |
2057 # endif | |
2058 #else | |
2059 XStoreName(x11_display, x11_window, (char *)title); | |
2060 #endif | |
2061 } | |
2062 XFlush(x11_display); | |
2063 } | |
2064 | |
2065 /* | |
2066 * Set x11 Window icon | |
2067 * | |
2068 * get_x11_windis() must be called before this and have returned OK | |
2069 */ | |
2070 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2071 set_x11_icon(char_u *icon) |
7 | 2072 { |
2073 /* See above for comments about using X*SetWMProperties(). */ | |
2074 #ifdef USE_UTF8_STRING | |
2075 if (enc_utf8) | |
2076 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2077 NULL, 0, NULL, NULL, NULL); | |
2078 else | |
2079 #endif | |
2080 { | |
2081 #if XtSpecificationRelease >= 4 | |
2082 # ifdef FEAT_XFONTSET | |
2083 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2084 NULL, 0, NULL, NULL, NULL); | |
2085 # else | |
2086 XTextProperty text_prop; | |
129 | 2087 char *c_icon = (char *)icon; |
2088 | |
2089 (void)XStringListToTextProperty(&c_icon, 1, &text_prop); | |
7 | 2090 XSetWMProperties(x11_display, x11_window, NULL, &text_prop, |
2091 NULL, 0, NULL, NULL, NULL); | |
2092 # endif | |
2093 #else | |
2094 XSetIconName(x11_display, x11_window, (char *)icon); | |
2095 #endif | |
2096 } | |
2097 XFlush(x11_display); | |
2098 } | |
2099 | |
2100 #else /* FEAT_X11 */ | |
2101 | |
2102 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2103 get_x11_title(int test_only UNUSED) |
7 | 2104 { |
2105 return FALSE; | |
2106 } | |
2107 | |
2108 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2109 get_x11_icon(int test_only) |
7 | 2110 { |
2111 if (!test_only) | |
2112 { | |
2113 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 2114 oldicon = vim_strsave(T_NAME + 8); |
7 | 2115 else |
1940 | 2116 oldicon = vim_strsave(T_NAME); |
7 | 2117 } |
2118 return FALSE; | |
2119 } | |
2120 | |
2121 #endif /* FEAT_X11 */ | |
2122 | |
2123 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2124 mch_can_restore_title(void) |
7 | 2125 { |
2126 return get_x11_title(TRUE); | |
2127 } | |
2128 | |
2129 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2130 mch_can_restore_icon(void) |
7 | 2131 { |
2132 return get_x11_icon(TRUE); | |
2133 } | |
2134 | |
2135 /* | |
2136 * Set the window title and icon. | |
2137 */ | |
2138 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2139 mch_settitle(char_u *title, char_u *icon) |
7 | 2140 { |
2141 int type = 0; | |
2142 static int recursive = 0; | |
2143 | |
2144 if (T_NAME == NULL) /* no terminal name (yet) */ | |
2145 return; | |
2146 if (title == NULL && icon == NULL) /* nothing to do */ | |
2147 return; | |
2148 | |
2149 /* When one of the X11 functions causes a deadly signal, we get here again | |
2150 * recursively. Avoid hanging then (something is probably locked). */ | |
2151 if (recursive) | |
2152 return; | |
2153 ++recursive; | |
2154 | |
2155 /* | |
2156 * if the window ID and the display is known, we may use X11 calls | |
2157 */ | |
2158 #ifdef FEAT_X11 | |
2159 if (get_x11_windis() == OK) | |
2160 type = 1; | |
2161 #else | |
2162 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) | |
2163 if (gui.in_use) | |
2164 type = 1; | |
2165 # endif | |
2166 #endif | |
2167 | |
2168 /* | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2169 * Note: if "t_ts" is set, title is set with escape sequence rather |
7 | 2170 * than x11 calls, because the x11 calls don't always work |
2171 */ | |
2172 if ((type || *T_TS != NUL) && title != NULL) | |
2173 { | |
2174 if (oldtitle == NULL | |
2175 #ifdef FEAT_GUI | |
2176 && !gui.in_use | |
2177 #endif | |
2178 ) /* first call but not in GUI, save title */ | |
2179 (void)get_x11_title(FALSE); | |
2180 | |
2181 if (*T_TS != NUL) /* it's OK if t_fs is empty */ | |
2182 term_settitle(title); | |
2183 #ifdef FEAT_X11 | |
2184 else | |
2185 # ifdef FEAT_GUI_GTK | |
2186 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2187 # endif | |
2188 set_x11_title(title); /* x11 */ | |
2189 #endif | |
64 | 2190 #if defined(FEAT_GUI_GTK) \ |
7 | 2191 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) |
2192 else | |
2193 gui_mch_settitle(title, icon); | |
2194 #endif | |
2195 did_set_title = TRUE; | |
2196 } | |
2197 | |
2198 if ((type || *T_CIS != NUL) && icon != NULL) | |
2199 { | |
2200 if (oldicon == NULL | |
2201 #ifdef FEAT_GUI | |
2202 && !gui.in_use | |
2203 #endif | |
2204 ) /* first call, save icon */ | |
2205 get_x11_icon(FALSE); | |
2206 | |
2207 if (*T_CIS != NUL) | |
2208 { | |
2209 out_str(T_CIS); /* set icon start */ | |
2210 out_str_nf(icon); | |
2211 out_str(T_CIE); /* set icon end */ | |
2212 out_flush(); | |
2213 } | |
2214 #ifdef FEAT_X11 | |
2215 else | |
2216 # ifdef FEAT_GUI_GTK | |
2217 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2218 # endif | |
2219 set_x11_icon(icon); /* x11 */ | |
2220 #endif | |
2221 did_set_icon = TRUE; | |
2222 } | |
2223 --recursive; | |
2224 } | |
2225 | |
2226 /* | |
2227 * Restore the window/icon title. | |
2228 * "which" is one of: | |
2229 * 1 only restore title | |
2230 * 2 only restore icon | |
2231 * 3 restore title and icon | |
2232 */ | |
2233 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2234 mch_restore_title(int which) |
7 | 2235 { |
2236 /* only restore the title or icon when it has been set */ | |
2237 mch_settitle(((which & 1) && did_set_title) ? | |
2238 (oldtitle ? oldtitle : p_titleold) : NULL, | |
2239 ((which & 2) && did_set_icon) ? oldicon : NULL); | |
2240 } | |
2241 | |
2242 #endif /* FEAT_TITLE */ | |
2243 | |
2244 /* | |
2245 * Return TRUE if "name" looks like some xterm name. | |
158 | 2246 * Seiichi Sato mentioned that "mlterm" works like xterm. |
7 | 2247 */ |
2248 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2249 vim_is_xterm(char_u *name) |
7 | 2250 { |
2251 if (name == NULL) | |
2252 return FALSE; | |
2253 return (STRNICMP(name, "xterm", 5) == 0 | |
2254 || STRNICMP(name, "nxterm", 6) == 0 | |
2255 || STRNICMP(name, "kterm", 5) == 0 | |
158 | 2256 || STRNICMP(name, "mlterm", 6) == 0 |
7 | 2257 || STRNICMP(name, "rxvt", 4) == 0 |
2258 || STRCMP(name, "builtin_xterm") == 0); | |
2259 } | |
2260 | |
1620 | 2261 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO) |
2262 /* | |
2263 * Return TRUE if "name" appears to be that of a terminal | |
2264 * known to support the xterm-style mouse protocol. | |
2265 * Relies on term_is_xterm having been set to its correct value. | |
2266 */ | |
2267 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2268 use_xterm_like_mouse(char_u *name) |
1620 | 2269 { |
2270 return (name != NULL | |
9873
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2271 && (term_is_xterm |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2272 || STRNICMP(name, "screen", 6) == 0 |
10266
e86f23a078ca
commit https://github.com/vim/vim/commit/0ba407012c63064f03f1a5677677d4da423e5a73
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2273 || STRNICMP(name, "tmux", 4) == 0 |
9873
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2274 || STRICMP(name, "st") == 0 |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2275 || STRNICMP(name, "st-", 3) == 0 |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2276 || STRNICMP(name, "stterm", 6) == 0)); |
1620 | 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 | |
10266
e86f23a078ca
commit https://github.com/vim/vim/commit/0ba407012c63064f03f1a5677677d4da423e5a73
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2337 || STRNICMP(name, "tmux", 4) == 0 |
7 | 2338 || STRNICMP(name, "dtterm", 6) == 0); |
2339 } | |
2340 | |
2341 /* | |
2342 * Insert user name in s[len]. | |
2343 * Return OK if a name found. | |
2344 */ | |
2345 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2346 mch_get_user_name(char_u *s, int len) |
7 | 2347 { |
2348 #ifdef VMS | |
509 | 2349 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1); |
7 | 2350 return OK; |
2351 #else | |
2352 return mch_get_uname(getuid(), s, len); | |
2353 #endif | |
2354 } | |
2355 | |
2356 /* | |
2357 * Insert user name for "uid" in s[len]. | |
2358 * Return OK if a name found. | |
2359 */ | |
2360 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2361 mch_get_uname(uid_t uid, char_u *s, int len) |
7 | 2362 { |
2363 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) | |
2364 struct passwd *pw; | |
2365 | |
2366 if ((pw = getpwuid(uid)) != NULL | |
2367 && pw->pw_name != NULL && *(pw->pw_name) != NUL) | |
2368 { | |
418 | 2369 vim_strncpy(s, (char_u *)pw->pw_name, len - 1); |
7 | 2370 return OK; |
2371 } | |
2372 #endif | |
2373 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */ | |
2374 return FAIL; /* a number is not a name */ | |
2375 } | |
2376 | |
2377 /* | |
2378 * Insert host name is s[len]. | |
2379 */ | |
2380 | |
2381 #ifdef HAVE_SYS_UTSNAME_H | |
2382 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2383 mch_get_host_name(char_u *s, int len) |
7 | 2384 { |
2385 struct utsname vutsname; | |
2386 | |
2387 if (uname(&vutsname) < 0) | |
2388 *s = NUL; | |
2389 else | |
418 | 2390 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1); |
7 | 2391 } |
2392 #else /* HAVE_SYS_UTSNAME_H */ | |
2393 | |
2394 # ifdef HAVE_SYS_SYSTEMINFO_H | |
2395 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len) | |
2396 # endif | |
2397 | |
2398 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2399 mch_get_host_name(char_u *s, int len) |
7 | 2400 { |
2401 # ifdef VAXC | |
2402 vaxc$gethostname((char *)s, len); | |
2403 # else | |
2404 gethostname((char *)s, len); | |
2405 # endif | |
2406 s[len - 1] = NUL; /* make sure it's terminated */ | |
2407 } | |
2408 #endif /* HAVE_SYS_UTSNAME_H */ | |
2409 | |
2410 /* | |
2411 * return process ID | |
2412 */ | |
2413 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2414 mch_get_pid(void) |
7 | 2415 { |
2416 return (long)getpid(); | |
2417 } | |
2418 | |
2419 #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
|
2420 static char *strerror(int); |
7 | 2421 |
2422 static char * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2423 strerror(int err) |
7 | 2424 { |
2425 extern int sys_nerr; | |
2426 extern char *sys_errlist[]; | |
2427 static char er[20]; | |
2428 | |
2429 if (err > 0 && err < sys_nerr) | |
2430 return (sys_errlist[err]); | |
2431 sprintf(er, "Error %d", err); | |
2432 return er; | |
2433 } | |
2434 #endif | |
2435 | |
2436 /* | |
2437 * Get name of current directory into buffer 'buf' of length 'len' bytes. | |
2438 * Return OK for success, FAIL for failure. | |
2439 */ | |
2440 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2441 mch_dirname(char_u *buf, int len) |
7 | 2442 { |
2443 #if defined(USE_GETCWD) | |
2444 if (getcwd((char *)buf, len) == NULL) | |
2445 { | |
2446 STRCPY(buf, strerror(errno)); | |
2447 return FAIL; | |
2448 } | |
2449 return OK; | |
2450 #else | |
2451 return (getwd((char *)buf) != NULL ? OK : FAIL); | |
2452 #endif | |
2453 } | |
2454 | |
2455 /* | |
1045 | 2456 * Get absolute file name into "buf[len]". |
7 | 2457 * |
2458 * return FAIL for failure, OK for success | |
2459 */ | |
2460 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2461 mch_FullName( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2462 char_u *fname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2463 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2464 int len, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2465 int force) /* also expand when already absolute path */ |
7 | 2466 { |
2467 int l; | |
1082 | 2468 #ifdef HAVE_FCHDIR |
7 | 2469 int fd = -1; |
2470 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */ | |
1082 | 2471 #endif |
7 | 2472 char_u olddir[MAXPATHL]; |
2473 char_u *p; | |
2474 int retval = OK; | |
1615 | 2475 #ifdef __CYGWIN__ |
1620 | 2476 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but |
2477 it's not always defined */ | |
2478 #endif | |
7 | 2479 |
1082 | 2480 #ifdef VMS |
2481 fname = vms_fixfilename(fname); | |
2482 #endif | |
2483 | |
1102 | 2484 #ifdef __CYGWIN__ |
2485 /* | |
2486 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts". | |
2487 */ | |
1657 | 2488 # 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
|
2489 /* 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
|
2490 * a forward slash. */ |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2491 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
|
2492 fname, posix_fname, MAXPATHL); |
1657 | 2493 # else |
1615 | 2494 cygwin_conv_to_posix_path(fname, posix_fname); |
1657 | 2495 # endif |
1615 | 2496 fname = posix_fname; |
1102 | 2497 #endif |
2498 | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2499 /* 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
|
2500 * 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
|
2501 if ((force || !mch_isFullName(fname)) |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2502 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname)) |
7 | 2503 { |
2504 /* | |
2505 * If the file name has a path, change to that directory for a moment, | |
2506 * and then do the getwd() (and get back to where we were). | |
2507 * This will get the correct path name with "../" things. | |
2508 */ | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2509 if (p != NULL) |
7 | 2510 { |
1082 | 2511 #ifdef HAVE_FCHDIR |
7 | 2512 /* |
2513 * Use fchdir() if possible, it's said to be faster and more | |
2514 * reliable. But on SunOS 4 it might not work. Check this by | |
2515 * doing a fchdir() right now. | |
2516 */ | |
2517 if (!dont_fchdir) | |
2518 { | |
2519 fd = open(".", O_RDONLY | O_EXTRA, 0); | |
2520 if (fd >= 0 && fchdir(fd) < 0) | |
2521 { | |
2522 close(fd); | |
2523 fd = -1; | |
2524 dont_fchdir = TRUE; /* don't try again */ | |
2525 } | |
2526 } | |
1082 | 2527 #endif |
7 | 2528 |
2529 /* Only change directory when we are sure we can return to where | |
2530 * we are now. After doing "su" chdir(".") might not work. */ | |
2531 if ( | |
1082 | 2532 #ifdef HAVE_FCHDIR |
7 | 2533 fd < 0 && |
1082 | 2534 #endif |
7 | 2535 (mch_dirname(olddir, MAXPATHL) == FAIL |
2536 || mch_chdir((char *)olddir) != 0)) | |
2537 { | |
2538 p = NULL; /* can't get current dir: don't chdir */ | |
2539 retval = FAIL; | |
2540 } | |
2541 else | |
2542 { | |
2543 /* The directory is copied into buf[], to be able to remove | |
2544 * the file name without changing it (could be a string in | |
2545 * read-only memory) */ | |
2546 if (p - fname >= len) | |
2547 retval = FAIL; | |
2548 else | |
2549 { | |
418 | 2550 vim_strncpy(buf, fname, p - fname); |
7 | 2551 if (mch_chdir((char *)buf)) |
2552 retval = FAIL; | |
2553 else | |
2554 fname = p + 1; | |
2555 *buf = NUL; | |
2556 } | |
2557 } | |
2558 } | |
2559 if (mch_dirname(buf, len) == FAIL) | |
2560 { | |
2561 retval = FAIL; | |
2562 *buf = NUL; | |
2563 } | |
2564 if (p != NULL) | |
2565 { | |
1082 | 2566 #ifdef HAVE_FCHDIR |
7 | 2567 if (fd >= 0) |
2568 { | |
1935 | 2569 if (p_verbose >= 5) |
2570 { | |
2571 verbose_enter(); | |
2572 MSG("fchdir() to previous dir"); | |
2573 verbose_leave(); | |
2574 } | |
7 | 2575 l = fchdir(fd); |
2576 close(fd); | |
2577 } | |
2578 else | |
1082 | 2579 #endif |
7 | 2580 l = mch_chdir((char *)olddir); |
2581 if (l != 0) | |
2582 EMSG(_(e_prev_dir)); | |
2583 } | |
2584 | |
2585 l = STRLEN(buf); | |
3867 | 2586 if (l >= len - 1) |
2587 retval = FAIL; /* no space for trailing "/" */ | |
1082 | 2588 #ifndef VMS |
3867 | 2589 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL |
7 | 2590 && STRCMP(fname, ".") != 0) |
3867 | 2591 STRCAT(buf, "/"); |
1082 | 2592 #endif |
7 | 2593 } |
1045 | 2594 |
7 | 2595 /* Catch file names which are too long. */ |
1877 | 2596 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len) |
7 | 2597 return FAIL; |
2598 | |
2599 /* Do not append ".", "/dir/." is equal to "/dir". */ | |
2600 if (STRCMP(fname, ".") != 0) | |
2601 STRCAT(buf, fname); | |
2602 | |
2603 return OK; | |
2604 } | |
2605 | |
2606 /* | |
2607 * Return TRUE if "fname" does not depend on the current directory. | |
2608 */ | |
2609 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2610 mch_isFullName(char_u *fname) |
7 | 2611 { |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
2612 #ifdef VMS |
7 | 2613 return ( fname[0] == '/' || fname[0] == '.' || |
2614 strchr((char *)fname,':') || strchr((char *)fname,'"') || | |
2615 (strchr((char *)fname,'[') && strchr((char *)fname,']'))|| | |
2616 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) ); | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
2617 #else |
7 | 2618 return (*fname == '/' || *fname == '~'); |
2619 #endif | |
2620 } | |
2621 | |
585 | 2622 #if defined(USE_FNAME_CASE) || defined(PROTO) |
2623 /* | |
2624 * Set the case of the file name, if it already exists. This will cause the | |
2625 * file name to remain exactly the same. | |
1450 | 2626 * Only required for file systems where case is ignored and preserved. |
585 | 2627 */ |
2628 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2629 fname_case( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2630 char_u *name, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2631 int len UNUSED) /* buffer size, only used when name gets longer */ |
585 | 2632 { |
2633 struct stat st; | |
2634 char_u *slash, *tail; | |
2635 DIR *dirp; | |
2636 struct dirent *dp; | |
2637 | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
2638 if (mch_lstat((char *)name, &st) >= 0) |
585 | 2639 { |
2640 /* Open the directory where the file is located. */ | |
2641 slash = vim_strrchr(name, '/'); | |
2642 if (slash == NULL) | |
2643 { | |
2644 dirp = opendir("."); | |
2645 tail = name; | |
2646 } | |
2647 else | |
2648 { | |
2649 *slash = NUL; | |
2650 dirp = opendir((char *)name); | |
2651 *slash = '/'; | |
2652 tail = slash + 1; | |
2653 } | |
2654 | |
2655 if (dirp != NULL) | |
2656 { | |
2657 while ((dp = readdir(dirp)) != NULL) | |
2658 { | |
2659 /* Only accept names that differ in case and are the same byte | |
2660 * length. TODO: accept different length name. */ | |
2661 if (STRICMP(tail, dp->d_name) == 0 | |
2662 && STRLEN(tail) == STRLEN(dp->d_name)) | |
2663 { | |
2664 char_u newname[MAXPATHL + 1]; | |
2665 struct stat st2; | |
2666 | |
2667 /* Verify the inode is equal. */ | |
2668 vim_strncpy(newname, name, MAXPATHL); | |
2669 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name, | |
2670 MAXPATHL - (tail - name)); | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
2671 if (mch_lstat((char *)newname, &st2) >= 0 |
585 | 2672 && st.st_ino == st2.st_ino |
2673 && st.st_dev == st2.st_dev) | |
2674 { | |
2675 STRCPY(tail, dp->d_name); | |
2676 break; | |
2677 } | |
2678 } | |
2679 } | |
2680 | |
2681 closedir(dirp); | |
2682 } | |
2683 } | |
2684 } | |
2685 #endif | |
2686 | |
7 | 2687 /* |
2688 * Get file permissions for 'name'. | |
2689 * Returns -1 when it doesn't exist. | |
2690 */ | |
2691 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2692 mch_getperm(char_u *name) |
7 | 2693 { |
2694 struct stat statb; | |
2695 | |
2696 /* Keep the #ifdef outside of stat(), it may be a macro. */ | |
2697 #ifdef VMS | |
2698 if (stat((char *)vms_fixfilename(name), &statb)) | |
2699 #else | |
2700 if (stat((char *)name, &statb)) | |
2701 #endif | |
2702 return -1; | |
1350 | 2703 #ifdef __INTERIX |
2704 /* The top bit makes the value negative, which means the file doesn't | |
2705 * exist. Remove the bit, we don't use it. */ | |
2706 return statb.st_mode & ~S_ADDACE; | |
2707 #else | |
7 | 2708 return statb.st_mode; |
1350 | 2709 #endif |
7 | 2710 } |
2711 | |
2712 /* | |
2713 * set file permission for 'name' to 'perm' | |
2714 * | |
2715 * return FAIL for failure, OK otherwise | |
2716 */ | |
2717 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2718 mch_setperm(char_u *name, long perm) |
7 | 2719 { |
2720 return (chmod((char *) | |
2721 #ifdef VMS | |
2722 vms_fixfilename(name), | |
2723 #else | |
2724 name, | |
2725 #endif | |
2726 (mode_t)perm) == 0 ? OK : FAIL); | |
2727 } | |
2728 | |
2729 #if defined(HAVE_ACL) || defined(PROTO) | |
2730 # ifdef HAVE_SYS_ACL_H | |
2731 # include <sys/acl.h> | |
2732 # endif | |
2733 # ifdef HAVE_SYS_ACCESS_H | |
2734 # include <sys/access.h> | |
2735 # endif | |
2736 | |
2737 # ifdef HAVE_SOLARIS_ACL | |
2738 typedef struct vim_acl_solaris_T { | |
2739 int acl_cnt; | |
2740 aclent_t *acl_entry; | |
2741 } vim_acl_solaris_T; | |
2742 # endif | |
2743 | |
1583 | 2744 #if defined(HAVE_SELINUX) || defined(PROTO) |
2745 /* | |
2746 * Copy security info from "from_file" to "to_file". | |
2747 */ | |
2748 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2749 mch_copy_sec(char_u *from_file, char_u *to_file) |
1583 | 2750 { |
2751 if (from_file == NULL) | |
2752 return; | |
2753 | |
2754 if (selinux_enabled == -1) | |
2755 selinux_enabled = is_selinux_enabled(); | |
2756 | |
2757 if (selinux_enabled > 0) | |
2758 { | |
2759 security_context_t from_context = NULL; | |
2760 security_context_t to_context = NULL; | |
2761 | |
2762 if (getfilecon((char *)from_file, &from_context) < 0) | |
2763 { | |
2764 /* If the filesystem doesn't support extended attributes, | |
2765 the original had no special security context and the | |
2766 target cannot have one either. */ | |
2767 if (errno == EOPNOTSUPP) | |
2768 return; | |
2769 | |
2770 MSG_PUTS(_("\nCould not get security context for ")); | |
2771 msg_outtrans(from_file); | |
2772 msg_putchar('\n'); | |
2773 return; | |
2774 } | |
2775 if (getfilecon((char *)to_file, &to_context) < 0) | |
2776 { | |
2777 MSG_PUTS(_("\nCould not get security context for ")); | |
2778 msg_outtrans(to_file); | |
2779 msg_putchar('\n'); | |
2780 freecon (from_context); | |
2781 return ; | |
2782 } | |
2783 if (strcmp(from_context, to_context) != 0) | |
2784 { | |
2785 if (setfilecon((char *)to_file, from_context) < 0) | |
2786 { | |
2787 MSG_PUTS(_("\nCould not set security context for ")); | |
2788 msg_outtrans(to_file); | |
2789 msg_putchar('\n'); | |
2790 } | |
2791 } | |
2792 freecon(to_context); | |
2793 freecon(from_context); | |
2794 } | |
2795 } | |
2796 #endif /* HAVE_SELINUX */ | |
2797 | |
5788 | 2798 #if defined(HAVE_SMACK) && !defined(PROTO) |
2799 /* | |
2800 * Copy security info from "from_file" to "to_file". | |
2801 */ | |
2802 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2803 mch_copy_sec(char_u *from_file, char_u *to_file) |
5788 | 2804 { |
5832 | 2805 static const char * const smack_copied_attributes[] = |
5788 | 2806 { |
2807 XATTR_NAME_SMACK, | |
2808 XATTR_NAME_SMACKEXEC, | |
2809 XATTR_NAME_SMACKMMAP | |
2810 }; | |
2811 | |
2812 char buffer[SMACK_LABEL_LEN]; | |
2813 const char *name; | |
2814 int index; | |
2815 int ret; | |
2816 ssize_t size; | |
2817 | |
2818 if (from_file == NULL) | |
2819 return; | |
2820 | |
2821 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes) | |
2822 / sizeof(smack_copied_attributes)[0]) ; index++) | |
2823 { | |
2824 /* get the name of the attribute to copy */ | |
2825 name = smack_copied_attributes[index]; | |
2826 | |
2827 /* get the value of the attribute in buffer */ | |
2828 size = getxattr((char*)from_file, name, buffer, sizeof(buffer)); | |
2829 if (size >= 0) | |
2830 { | |
2831 /* copy the attribute value of buffer */ | |
2832 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0); | |
2833 if (ret < 0) | |
2834 { | |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2835 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2836 _("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
|
2837 name, to_file); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2838 msg_outtrans(IObuff); |
5788 | 2839 msg_putchar('\n'); |
2840 } | |
2841 } | |
2842 else | |
2843 { | |
2844 /* what reason of not having the attribute value? */ | |
2845 switch (errno) | |
2846 { | |
2847 case ENOTSUP: | |
2848 /* extended attributes aren't supported or enabled */ | |
2849 /* should a message be echoed? not sure... */ | |
2850 return; /* leave because it isn't usefull to continue */ | |
2851 | |
2852 case ERANGE: | |
2853 default: | |
2854 /* 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
|
2855 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2856 _("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
|
2857 name, from_file); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2858 msg_puts(IObuff); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2859 msg_putchar('\n'); |
5788 | 2860 /* FALLTHROUGH to remove the attribute */ |
2861 | |
2862 case ENODATA: | |
2863 /* no attribute of this name */ | |
2864 ret = removexattr((char*)to_file, name); | |
5800 | 2865 /* Silently ignore errors, apparently this happens when |
2866 * smack is not actually being used. */ | |
5788 | 2867 break; |
2868 } | |
2869 } | |
2870 } | |
2871 } | |
2872 #endif /* HAVE_SMACK */ | |
2873 | |
7 | 2874 /* |
2875 * Return a pointer to the ACL of file "fname" in allocated memory. | |
2876 * Return NULL if the ACL is not available for whatever reason. | |
2877 */ | |
2878 vim_acl_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2879 mch_get_acl(char_u *fname UNUSED) |
7 | 2880 { |
2881 vim_acl_T ret = NULL; | |
2882 #ifdef HAVE_POSIX_ACL | |
2883 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS); | |
2884 #else | |
3330 | 2885 #ifdef HAVE_SOLARIS_ZFS_ACL |
2886 acl_t *aclent; | |
2887 | |
2888 if (acl_get((char *)fname, 0, &aclent) < 0) | |
2889 return NULL; | |
2890 ret = (vim_acl_T)aclent; | |
2891 #else | |
7 | 2892 #ifdef HAVE_SOLARIS_ACL |
2893 vim_acl_solaris_T *aclent; | |
2894 | |
2895 aclent = malloc(sizeof(vim_acl_solaris_T)); | |
2896 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0) | |
2897 { | |
2898 free(aclent); | |
2899 return NULL; | |
2900 } | |
2901 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t)); | |
2902 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0) | |
2903 { | |
2904 free(aclent->acl_entry); | |
2905 free(aclent); | |
2906 return NULL; | |
2907 } | |
2908 ret = (vim_acl_T)aclent; | |
2909 #else | |
2910 #if defined(HAVE_AIX_ACL) | |
2911 int aclsize; | |
2912 struct acl *aclent; | |
2913 | |
2914 aclsize = sizeof(struct acl); | |
2915 aclent = malloc(aclsize); | |
2916 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2917 { | |
2918 if (errno == ENOSPC) | |
2919 { | |
2920 aclsize = aclent->acl_len; | |
2921 aclent = realloc(aclent, aclsize); | |
2922 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2923 { | |
2924 free(aclent); | |
2925 return NULL; | |
2926 } | |
2927 } | |
2928 else | |
2929 { | |
2930 free(aclent); | |
2931 return NULL; | |
2932 } | |
2933 } | |
2934 ret = (vim_acl_T)aclent; | |
2935 #endif /* HAVE_AIX_ACL */ | |
2936 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2937 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2938 #endif /* HAVE_POSIX_ACL */ |
2939 return ret; | |
2940 } | |
2941 | |
2942 /* | |
2943 * Set the ACL of file "fname" to "acl" (unless it's NULL). | |
2944 */ | |
2945 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2946 mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent) |
7 | 2947 { |
2948 if (aclent == NULL) | |
2949 return; | |
2950 #ifdef HAVE_POSIX_ACL | |
2951 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent); | |
2952 #else | |
3330 | 2953 #ifdef HAVE_SOLARIS_ZFS_ACL |
2954 acl_set((char *)fname, (acl_t *)aclent); | |
2955 #else | |
7 | 2956 #ifdef HAVE_SOLARIS_ACL |
2957 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt, | |
2958 ((vim_acl_solaris_T *)aclent)->acl_entry); | |
2959 #else | |
2960 #ifdef HAVE_AIX_ACL | |
2961 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len); | |
2962 #endif /* HAVE_AIX_ACL */ | |
2963 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2964 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2965 #endif /* HAVE_POSIX_ACL */ |
2966 } | |
2967 | |
2968 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2969 mch_free_acl(vim_acl_T aclent) |
7 | 2970 { |
2971 if (aclent == NULL) | |
2972 return; | |
2973 #ifdef HAVE_POSIX_ACL | |
2974 acl_free((acl_t)aclent); | |
2975 #else | |
3330 | 2976 #ifdef HAVE_SOLARIS_ZFS_ACL |
2977 acl_free((acl_t *)aclent); | |
2978 #else | |
7 | 2979 #ifdef HAVE_SOLARIS_ACL |
2980 free(((vim_acl_solaris_T *)aclent)->acl_entry); | |
2981 free(aclent); | |
2982 #else | |
2983 #ifdef HAVE_AIX_ACL | |
2984 free(aclent); | |
2985 #endif /* HAVE_AIX_ACL */ | |
2986 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2987 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2988 #endif /* HAVE_POSIX_ACL */ |
2989 } | |
2990 #endif | |
2991 | |
2992 /* | |
2993 * Set hidden flag for "name". | |
2994 */ | |
2995 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2996 mch_hide(char_u *name UNUSED) |
7 | 2997 { |
2998 /* can't hide a file */ | |
2999 } | |
3000 | |
3001 /* | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3002 * return TRUE if "name" is a directory or a symlink to a directory |
7 | 3003 * return FALSE if "name" is not a directory |
3004 * return FALSE for error | |
3005 */ | |
3006 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3007 mch_isdir(char_u *name) |
7 | 3008 { |
3009 struct stat statb; | |
3010 | |
3011 if (*name == NUL) /* Some stat()s don't flag "" as an error. */ | |
3012 return FALSE; | |
3013 if (stat((char *)name, &statb)) | |
3014 return FALSE; | |
3015 #ifdef _POSIX_SOURCE | |
3016 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); | |
3017 #else | |
3018 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE); | |
3019 #endif | |
3020 } | |
3021 | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3022 /* |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3023 * 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
|
3024 * 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
|
3025 * return FALSE for error |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3026 */ |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3027 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3028 mch_isrealdir(char_u *name) |
7629
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 struct stat statb; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3031 |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3032 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
|
3033 return FALSE; |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
3034 if (mch_lstat((char *)name, &statb)) |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3035 return FALSE; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3036 #ifdef _POSIX_SOURCE |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3037 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
|
3038 #else |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3039 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
|
3040 #endif |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3041 } |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3042 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
3043 static int executable_file(char_u *name); |
7 | 3044 |
3045 /* | |
3046 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist. | |
3047 */ | |
3048 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3049 executable_file(char_u *name) |
7 | 3050 { |
3051 struct stat st; | |
3052 | |
3053 if (stat((char *)name, &st)) | |
3054 return 0; | |
5704 | 3055 #ifdef VMS |
3056 /* Like on Unix system file can have executable rights but not necessarily | |
3057 * be an executable, but on Unix is not a default for an ordianry file to | |
3058 * have an executable flag - on VMS it is in most cases. | |
3059 * Therefore, this check does not have any sense - let keep us to the | |
3060 * conventions instead: | |
3061 * *.COM and *.EXE files are the executables - the rest are not. This is | |
3062 * not ideal but better then it was. | |
3063 */ | |
3064 int vms_executable = 0; | |
3065 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0) | |
3066 { | |
3067 if (strstr(vms_tolower((char*)name),".exe") != NULL | |
3068 || strstr(vms_tolower((char*)name),".com")!= NULL) | |
3069 vms_executable = 1; | |
3070 } | |
3071 return vms_executable; | |
3072 #else | |
7 | 3073 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0; |
5704 | 3074 #endif |
7 | 3075 } |
3076 | |
3077 /* | |
3078 * Return 1 if "name" can be found in $PATH and executed, 0 if not. | |
6695 | 3079 * If "use_path" is FALSE only check if "name" is executable. |
7 | 3080 * Return -1 if unknown. |
3081 */ | |
3082 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3083 mch_can_exe(char_u *name, char_u **path, int use_path) |
7 | 3084 { |
3085 char_u *buf; | |
3086 char_u *p, *e; | |
3087 int retval; | |
3088 | |
6695 | 3089 /* When "use_path" is false and if it's an absolute or relative path don't |
3090 * need to use $PATH. */ | |
3091 if (!use_path || mch_isFullName(name) || (name[0] == '.' | |
3092 && (name[1] == '/' || (name[1] == '.' && name[2] == '/')))) | |
5704 | 3093 { |
6695 | 3094 /* There must be a path separator, files in the current directory |
3095 * can't be executed. */ | |
3096 if (gettail(name) != name && executable_file(name)) | |
5782 | 3097 { |
3098 if (path != NULL) | |
3099 { | |
3100 if (name[0] == '.') | |
3101 *path = FullName_save(name, TRUE); | |
3102 else | |
3103 *path = vim_strsave(name); | |
3104 } | |
3105 return TRUE; | |
3106 } | |
3107 return FALSE; | |
5704 | 3108 } |
7 | 3109 |
3110 p = (char_u *)getenv("PATH"); | |
3111 if (p == NULL || *p == NUL) | |
3112 return -1; | |
3113 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2)); | |
3114 if (buf == NULL) | |
3115 return -1; | |
3116 | |
3117 /* | |
3118 * Walk through all entries in $PATH to check if "name" exists there and | |
3119 * is an executable file. | |
3120 */ | |
3121 for (;;) | |
3122 { | |
3123 e = (char_u *)strchr((char *)p, ':'); | |
3124 if (e == NULL) | |
3125 e = p + STRLEN(p); | |
3126 if (e - p <= 1) /* empty entry means current dir */ | |
3127 STRCPY(buf, "./"); | |
3128 else | |
3129 { | |
418 | 3130 vim_strncpy(buf, p, e - p); |
7 | 3131 add_pathsep(buf); |
3132 } | |
3133 STRCAT(buf, name); | |
3134 retval = executable_file(buf); | |
3135 if (retval == 1) | |
5782 | 3136 { |
3137 if (path != NULL) | |
3138 { | |
3139 if (buf[0] == '.') | |
3140 *path = FullName_save(buf, TRUE); | |
3141 else | |
3142 *path = vim_strsave(buf); | |
3143 } | |
7 | 3144 break; |
5782 | 3145 } |
7 | 3146 |
3147 if (*e != ':') | |
3148 break; | |
3149 p = e + 1; | |
3150 } | |
3151 | |
3152 vim_free(buf); | |
3153 return retval; | |
3154 } | |
3155 | |
3156 /* | |
3157 * Check what "name" is: | |
3158 * NODE_NORMAL: file or directory (or doesn't exist) | |
3159 * NODE_WRITABLE: writable device, socket, fifo, etc. | |
3160 * NODE_OTHER: non-writable things | |
3161 */ | |
3162 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3163 mch_nodetype(char_u *name) |
7 | 3164 { |
3165 struct stat st; | |
3166 | |
3167 if (stat((char *)name, &st)) | |
3168 return NODE_NORMAL; | |
3169 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)) | |
3170 return NODE_NORMAL; | |
3171 if (S_ISBLK(st.st_mode)) /* block device isn't writable */ | |
3172 return NODE_OTHER; | |
3173 /* Everything else is writable? */ | |
3174 return NODE_WRITABLE; | |
3175 } | |
3176 | |
3177 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3178 mch_early_init(void) |
7 | 3179 { |
3180 #ifdef HAVE_CHECK_STACK_GROWTH | |
3181 int i; | |
180 | 3182 |
7 | 3183 check_stack_growth((char *)&i); |
3184 | |
180 | 3185 # ifdef HAVE_STACK_LIMIT |
7 | 3186 get_stack_limit(); |
3187 # endif | |
3188 | |
3189 #endif | |
3190 | |
3191 /* | |
3192 * Setup an alternative stack for signals. Helps to catch signals when | |
3193 * running out of stack space. | |
3194 * Use of sigaltstack() is preferred, it's more portable. | |
3195 * Ignore any errors. | |
3196 */ | |
3197 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
1737 | 3198 signal_stack = (char *)alloc(SIGSTKSZ); |
7 | 3199 init_signal_stack(); |
3200 #endif | |
3201 } | |
3202 | |
355 | 3203 #if defined(EXITFREE) || defined(PROTO) |
3204 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3205 mch_free_mem(void) |
355 | 3206 { |
359 | 3207 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
3208 if (clip_star.owned) | |
3209 clip_lose_selection(&clip_star); | |
3210 if (clip_plus.owned) | |
3211 clip_lose_selection(&clip_plus); | |
355 | 3212 # endif |
1605 | 3213 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
355 | 3214 if (xterm_Shell != (Widget)0) |
3215 XtDestroyWidget(xterm_Shell); | |
1605 | 3216 # ifndef LESSTIF_VERSION |
3217 /* Lesstif crashes here, lose some memory */ | |
355 | 3218 if (xterm_dpy != NULL) |
3219 XtCloseDisplay(xterm_dpy); | |
3220 if (app_context != (XtAppContext)NULL) | |
1605 | 3221 { |
355 | 3222 XtDestroyApplicationContext(app_context); |
1605 | 3223 # ifdef FEAT_X11 |
3224 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
3225 # endif | |
3226 } | |
3227 # endif | |
355 | 3228 # endif |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
3229 # if defined(FEAT_X11) |
1605 | 3230 if (x11_display != NULL |
3231 # ifdef FEAT_XCLIPBOARD | |
3232 && x11_display != xterm_dpy | |
3233 # endif | |
3234 ) | |
359 | 3235 XCloseDisplay(x11_display); |
3236 # endif | |
3237 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
3238 vim_free(signal_stack); | |
3239 signal_stack = NULL; | |
3240 # endif | |
3241 # ifdef FEAT_TITLE | |
3242 vim_free(oldtitle); | |
3243 vim_free(oldicon); | |
3244 # endif | |
355 | 3245 } |
3246 #endif | |
3247 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
3248 static void exit_scroll(void); |
7 | 3249 |
3250 /* | |
3251 * Output a newline when exiting. | |
3252 * Make sure the newline goes to the same stream as the text. | |
3253 */ | |
3254 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3255 exit_scroll(void) |
7 | 3256 { |
167 | 3257 if (silent_mode) |
3258 return; | |
7 | 3259 if (newline_on_exit || msg_didout) |
3260 { | |
3261 if (msg_use_printf()) | |
3262 { | |
3263 if (info_message) | |
3264 mch_msg("\n"); | |
3265 else | |
3266 mch_errmsg("\r\n"); | |
3267 } | |
3268 else | |
3269 out_char('\n'); | |
3270 } | |
3271 else | |
3272 { | |
3273 restore_cterm_colors(); /* get original colors back */ | |
3274 msg_clr_eos_force(); /* clear the rest of the display */ | |
3275 windgoto((int)Rows - 1, 0); /* may have moved the cursor */ | |
3276 } | |
3277 } | |
3278 | |
3279 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3280 mch_exit(int r) |
7 | 3281 { |
3282 exiting = TRUE; | |
3283 | |
3284 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD) | |
3285 x11_export_final_selection(); | |
3286 #endif | |
3287 | |
3288 #ifdef FEAT_GUI | |
3289 if (!gui.in_use) | |
3290 #endif | |
3291 { | |
3292 settmode(TMODE_COOK); | |
3293 #ifdef FEAT_TITLE | |
3294 mch_restore_title(3); /* restore xterm title and icon name */ | |
3295 #endif | |
3296 /* | |
3297 * When t_ti is not empty but it doesn't cause swapping terminal | |
3298 * pages, need to output a newline when msg_didout is set. But when | |
3299 * t_ti does swap pages it should not go to the shell page. Do this | |
3300 * before stoptermcap(). | |
3301 */ | |
3302 if (swapping_screen() && !newline_on_exit) | |
3303 exit_scroll(); | |
3304 | |
3305 /* Stop termcap: May need to check for T_CRV response, which | |
3306 * requires RAW mode. */ | |
3307 stoptermcap(); | |
3308 | |
3309 /* | |
3310 * A newline is only required after a message in the alternate screen. | |
3311 * This is set to TRUE by wait_return(). | |
3312 */ | |
3313 if (!swapping_screen() || newline_on_exit) | |
3314 exit_scroll(); | |
3315 | |
3316 /* Cursor may have been switched off without calling starttermcap() | |
3317 * when doing "vim -u vimrc" and vimrc contains ":q". */ | |
3318 if (full_screen) | |
3319 cursor_on(); | |
3320 } | |
3321 out_flush(); | |
3322 ml_close_all(TRUE); /* remove all memfiles */ | |
3323 may_core_dump(); | |
3324 #ifdef FEAT_GUI | |
3325 if (gui.in_use) | |
3326 gui_exit(r); | |
3327 #endif | |
167 | 3328 |
765 | 3329 #ifdef MACOS_CONVERT |
167 | 3330 mac_conv_cleanup(); |
3331 #endif | |
3332 | |
7 | 3333 #ifdef __QNX__ |
3334 /* A core dump won't be created if the signal handler | |
3335 * doesn't return, so we can't call exit() */ | |
3336 if (deadly_signal != 0) | |
3337 return; | |
3338 #endif | |
3339 | |
33 | 3340 #ifdef FEAT_NETBEANS_INTG |
2210 | 3341 netbeans_send_disconnect(); |
33 | 3342 #endif |
355 | 3343 |
3344 #ifdef EXITFREE | |
3345 free_all_mem(); | |
3346 #endif | |
3347 | |
7 | 3348 exit(r); |
3349 } | |
3350 | |
3351 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3352 may_core_dump(void) |
7 | 3353 { |
3354 if (deadly_signal != 0) | |
3355 { | |
3356 signal(deadly_signal, SIG_DFL); | |
3357 kill(getpid(), deadly_signal); /* Die using the signal we caught */ | |
3358 } | |
3359 } | |
3360 | |
3361 #ifndef VMS | |
3362 | |
3363 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3364 mch_settmode(int tmode) |
7 | 3365 { |
3366 static int first = TRUE; | |
3367 | |
3368 /* Why is NeXT excluded here (and not in os_unixx.h)? */ | |
3369 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__) | |
3370 /* | |
3371 * for "new" tty systems | |
3372 */ | |
3373 # ifdef HAVE_TERMIOS_H | |
3374 static struct termios told; | |
3375 struct termios tnew; | |
3376 # else | |
3377 static struct termio told; | |
3378 struct termio tnew; | |
3379 # endif | |
3380 | |
3381 if (first) | |
3382 { | |
3383 first = FALSE; | |
3384 # if defined(HAVE_TERMIOS_H) | |
3385 tcgetattr(read_cmd_fd, &told); | |
3386 # else | |
3387 ioctl(read_cmd_fd, TCGETA, &told); | |
3388 # endif | |
3389 } | |
3390 | |
3391 tnew = told; | |
3392 if (tmode == TMODE_RAW) | |
3393 { | |
3394 /* | |
3395 * ~ICRNL enables typing ^V^M | |
3396 */ | |
3397 tnew.c_iflag &= ~ICRNL; | |
3398 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE | |
3399 # if defined(IEXTEN) && !defined(__MINT__) | |
3400 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */ | |
3401 /* but it breaks function keys on MINT */ | |
3402 # endif | |
3403 ); | |
3404 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */ | |
3405 tnew.c_oflag &= ~ONLCR; | |
3406 # endif | |
3407 tnew.c_cc[VMIN] = 1; /* return after 1 char */ | |
3408 tnew.c_cc[VTIME] = 0; /* don't wait */ | |
3409 } | |
3410 else if (tmode == TMODE_SLEEP) | |
9381
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3411 { |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3412 /* Also reset ICANON here, otherwise on Solaris select() won't see |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3413 * typeahead characters. */ |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3414 tnew.c_lflag &= ~(ICANON | ECHO); |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3415 tnew.c_cc[VMIN] = 1; /* return after 1 char */ |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3416 tnew.c_cc[VTIME] = 0; /* don't wait */ |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3417 } |
7 | 3418 |
3419 # if defined(HAVE_TERMIOS_H) | |
3420 { | |
3421 int n = 10; | |
3422 | |
3423 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a | |
3424 * few times. */ | |
3425 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1 | |
3426 && errno == EINTR && n > 0) | |
3427 --n; | |
3428 } | |
3429 # else | |
3430 ioctl(read_cmd_fd, TCSETA, &tnew); | |
3431 # endif | |
3432 | |
3433 #else | |
3434 | |
3435 /* | |
3436 * for "old" tty systems | |
3437 */ | |
3438 # ifndef TIOCSETN | |
3439 # define TIOCSETN TIOCSETP /* for hpux 9.0 */ | |
3440 # endif | |
3441 static struct sgttyb ttybold; | |
3442 struct sgttyb ttybnew; | |
3443 | |
3444 if (first) | |
3445 { | |
3446 first = FALSE; | |
3447 ioctl(read_cmd_fd, TIOCGETP, &ttybold); | |
3448 } | |
3449 | |
3450 ttybnew = ttybold; | |
3451 if (tmode == TMODE_RAW) | |
3452 { | |
3453 ttybnew.sg_flags &= ~(CRMOD | ECHO); | |
3454 ttybnew.sg_flags |= RAW; | |
3455 } | |
3456 else if (tmode == TMODE_SLEEP) | |
3457 ttybnew.sg_flags &= ~(ECHO); | |
3458 ioctl(read_cmd_fd, TIOCSETN, &ttybnew); | |
3459 #endif | |
3460 curr_tmode = tmode; | |
3461 } | |
3462 | |
3463 /* | |
3464 * Try to get the code for "t_kb" from the stty setting | |
3465 * | |
3466 * Even if termcap claims a backspace key, the user's setting *should* | |
3467 * prevail. stty knows more about reality than termcap does, and if | |
3468 * somebody's usual erase key is DEL (which, for most BSD users, it will | |
3469 * be), they're going to get really annoyed if their erase key starts | |
3470 * doing forward deletes for no reason. (Eric Fischer) | |
3471 */ | |
3472 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3473 get_stty(void) |
7 | 3474 { |
3475 char_u buf[2]; | |
3476 char_u *p; | |
3477 | |
3478 /* Why is NeXT excluded here (and not in os_unixx.h)? */ | |
3479 #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__) | |
3480 /* for "new" tty systems */ | |
3481 # ifdef HAVE_TERMIOS_H | |
3482 struct termios keys; | |
3483 # else | |
3484 struct termio keys; | |
3485 # endif | |
3486 | |
3487 # if defined(HAVE_TERMIOS_H) | |
3488 if (tcgetattr(read_cmd_fd, &keys) != -1) | |
3489 # else | |
3490 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1) | |
3491 # endif | |
3492 { | |
3493 buf[0] = keys.c_cc[VERASE]; | |
3494 intr_char = keys.c_cc[VINTR]; | |
3495 #else | |
3496 /* for "old" tty systems */ | |
3497 struct sgttyb keys; | |
3498 | |
3499 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1) | |
3500 { | |
3501 buf[0] = keys.sg_erase; | |
3502 intr_char = keys.sg_kill; | |
3503 #endif | |
3504 buf[1] = NUL; | |
3505 add_termcode((char_u *)"kb", buf, FALSE); | |
3506 | |
3507 /* | |
3508 * If <BS> and <DEL> are now the same, redefine <DEL>. | |
3509 */ | |
3510 p = find_termcode((char_u *)"kD"); | |
3511 if (p != NULL && p[0] == buf[0] && p[1] == buf[1]) | |
3512 do_fixdel(NULL); | |
3513 } | |
3514 #if 0 | |
3515 } /* to keep cindent happy */ | |
3516 #endif | |
3517 } | |
3518 | |
3519 #endif /* VMS */ | |
3520 | |
3521 #if defined(FEAT_MOUSE_TTY) || defined(PROTO) | |
3522 /* | |
3523 * Set mouse clicks on or off. | |
3524 */ | |
3525 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3526 mch_setmouse(int on) |
7 | 3527 { |
3528 static int ison = FALSE; | |
3529 int xterm_mouse_vers; | |
3530 | |
3531 if (on == ison) /* return quickly if nothing to do */ | |
3532 return; | |
3533 | |
3534 xterm_mouse_vers = use_xterm_mouse(); | |
3145 | 3535 |
3536 # ifdef FEAT_MOUSE_URXVT | |
3746 | 3537 if (ttym_flags == TTYM_URXVT) |
3538 { | |
3145 | 3539 out_str_nf((char_u *) |
3540 (on | |
3541 ? IF_EB("\033[?1015h", ESC_STR "[?1015h") | |
3542 : IF_EB("\033[?1015l", ESC_STR "[?1015l"))); | |
3543 ison = on; | |
3544 } | |
3545 # endif | |
3546 | |
3746 | 3547 # ifdef FEAT_MOUSE_SGR |
3548 if (ttym_flags == TTYM_SGR) | |
3549 { | |
3550 out_str_nf((char_u *) | |
3551 (on | |
3552 ? IF_EB("\033[?1006h", ESC_STR "[?1006h") | |
3553 : IF_EB("\033[?1006l", ESC_STR "[?1006l"))); | |
3554 ison = on; | |
3555 } | |
3556 # endif | |
3557 | |
7 | 3558 if (xterm_mouse_vers > 0) |
3559 { | |
3560 if (on) /* enable mouse events, use mouse tracking if available */ | |
3561 out_str_nf((char_u *) | |
3562 (xterm_mouse_vers > 1 | |
3563 ? IF_EB("\033[?1002h", ESC_STR "[?1002h") | |
3564 : IF_EB("\033[?1000h", ESC_STR "[?1000h"))); | |
3565 else /* disable mouse events, could probably always send the same */ | |
3566 out_str_nf((char_u *) | |
3567 (xterm_mouse_vers > 1 | |
3568 ? IF_EB("\033[?1002l", ESC_STR "[?1002l") | |
3569 : IF_EB("\033[?1000l", ESC_STR "[?1000l"))); | |
3570 ison = on; | |
3571 } | |
3572 | |
3573 # ifdef FEAT_MOUSE_DEC | |
3574 else if (ttym_flags == TTYM_DEC) | |
3575 { | |
3576 if (on) /* enable mouse events */ | |
3577 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{"); | |
3578 else /* disable mouse events */ | |
3579 out_str_nf((char_u *)"\033['z"); | |
3580 ison = on; | |
3581 } | |
3582 # endif | |
3583 | |
3584 # ifdef FEAT_MOUSE_GPM | |
3585 else | |
3586 { | |
3587 if (on) | |
3588 { | |
3589 if (gpm_open()) | |
3590 ison = TRUE; | |
3591 } | |
3592 else | |
3593 { | |
3594 gpm_close(); | |
3595 ison = FALSE; | |
3596 } | |
3597 } | |
3598 # endif | |
3599 | |
1620 | 3600 # ifdef FEAT_SYSMOUSE |
3601 else | |
3602 { | |
3603 if (on) | |
3604 { | |
3605 if (sysmouse_open() == OK) | |
3606 ison = TRUE; | |
3607 } | |
3608 else | |
3609 { | |
3610 sysmouse_close(); | |
3611 ison = FALSE; | |
3612 } | |
3613 } | |
3614 # endif | |
3615 | |
7 | 3616 # ifdef FEAT_MOUSE_JSB |
3617 else | |
3618 { | |
3619 if (on) | |
3620 { | |
3621 /* D - Enable Mouse up/down messages | |
3622 * L - Enable Left Button Reporting | |
3623 * M - Enable Middle Button Reporting | |
3624 * R - Enable Right Button Reporting | |
3625 * K - Enable SHIFT and CTRL key Reporting | |
3626 * + - Enable Advanced messaging of mouse moves and up/down messages | |
3627 * Q - Quiet No Ack | |
3628 * # - Numeric value of mouse pointer required | |
3629 * 0 = Multiview 2000 cursor, used as standard | |
3630 * 1 = Windows Arrow | |
3631 * 2 = Windows I Beam | |
3632 * 3 = Windows Hour Glass | |
3633 * 4 = Windows Cross Hair | |
3634 * 5 = Windows UP Arrow | |
3635 */ | |
4299 | 3636 # ifdef JSBTERM_MOUSE_NONADVANCED |
3637 /* Disables full feedback of pointer movements */ | |
7 | 3638 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\", |
3639 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\")); | |
4299 | 3640 # else |
7 | 3641 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\", |
3642 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\")); | |
4299 | 3643 # endif |
7 | 3644 ison = TRUE; |
3645 } | |
3646 else | |
3647 { | |
3648 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\", | |
3649 ESC_STR "[0~ZwQ" ESC_STR "\\")); | |
3650 ison = FALSE; | |
3651 } | |
3652 } | |
3653 # endif | |
3654 # ifdef FEAT_MOUSE_PTERM | |
3655 else | |
3656 { | |
3657 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */ | |
3658 if (on) | |
3659 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l"); | |
3660 else | |
3661 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h"); | |
3662 ison = on; | |
3663 } | |
3664 # endif | |
3665 } | |
3666 | |
3667 /* | |
3668 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options. | |
3669 */ | |
3670 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3671 check_mouse_termcode(void) |
7 | 3672 { |
3673 # ifdef FEAT_MOUSE_XTERM | |
3674 if (use_xterm_mouse() | |
3145 | 3675 # ifdef FEAT_MOUSE_URXVT |
3676 && use_xterm_mouse() != 3 | |
3677 # endif | |
7 | 3678 # ifdef FEAT_GUI |
3679 && !gui.in_use | |
3680 # endif | |
3681 ) | |
3682 { | |
3683 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
180 | 3684 ? IF_EB("\233M", CSI_STR "M") |
3685 : IF_EB("\033[M", ESC_STR "[M"))); | |
7 | 3686 if (*p_mouse != NUL) |
3687 { | |
3688 /* force mouse off and maybe on to send possibly new mouse | |
3689 * activation sequence to the xterm, with(out) drag tracing. */ | |
3690 mch_setmouse(FALSE); | |
3691 setmouse(); | |
3692 } | |
3693 } | |
3694 else | |
3695 del_mouse_termcode(KS_MOUSE); | |
3696 # endif | |
3697 | |
3698 # ifdef FEAT_MOUSE_GPM | |
3699 if (!use_xterm_mouse() | |
3700 # ifdef FEAT_GUI | |
3701 && !gui.in_use | |
3702 # endif | |
3703 ) | |
3704 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG")); | |
3705 # endif | |
3706 | |
1620 | 3707 # ifdef FEAT_SYSMOUSE |
3708 if (!use_xterm_mouse() | |
3709 # ifdef FEAT_GUI | |
3710 && !gui.in_use | |
3711 # endif | |
3712 ) | |
3713 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS")); | |
3714 # endif | |
3715 | |
7 | 3716 # ifdef FEAT_MOUSE_JSB |
6102 | 3717 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */ |
7 | 3718 if (!use_xterm_mouse() |
3719 # ifdef FEAT_GUI | |
3720 && !gui.in_use | |
3721 # endif | |
3722 ) | |
3723 set_mouse_termcode(KS_JSBTERM_MOUSE, | |
3724 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw")); | |
3725 else | |
3726 del_mouse_termcode(KS_JSBTERM_MOUSE); | |
3727 # endif | |
3728 | |
3729 # ifdef FEAT_MOUSE_NET | |
180 | 3730 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't |
7 | 3731 * define it in the GUI or when using an xterm. */ |
3732 if (!use_xterm_mouse() | |
3733 # ifdef FEAT_GUI | |
3734 && !gui.in_use | |
3735 # endif | |
3736 ) | |
3737 set_mouse_termcode(KS_NETTERM_MOUSE, | |
3738 (char_u *)IF_EB("\033}", ESC_STR "}")); | |
3739 else | |
3740 del_mouse_termcode(KS_NETTERM_MOUSE); | |
3741 # endif | |
3742 | |
3743 # ifdef FEAT_MOUSE_DEC | |
6102 | 3744 /* Conflicts with xterm mouse: "\033[" and "\033[M" */ |
5932 | 3745 if (!use_xterm_mouse() |
7 | 3746 # ifdef FEAT_GUI |
3747 && !gui.in_use | |
3748 # endif | |
3749 ) | |
180 | 3750 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
3751 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "["))); | |
7 | 3752 else |
3753 del_mouse_termcode(KS_DEC_MOUSE); | |
3754 # endif | |
3755 # ifdef FEAT_MOUSE_PTERM | |
6102 | 3756 /* same conflict as the dec mouse */ |
5932 | 3757 if (!use_xterm_mouse() |
7 | 3758 # ifdef FEAT_GUI |
3759 && !gui.in_use | |
3760 # endif | |
3761 ) | |
3762 set_mouse_termcode(KS_PTERM_MOUSE, | |
3763 (char_u *) IF_EB("\033[", ESC_STR "[")); | |
3764 else | |
3765 del_mouse_termcode(KS_PTERM_MOUSE); | |
3766 # endif | |
3145 | 3767 # ifdef FEAT_MOUSE_URXVT |
6102 | 3768 /* same conflict as the dec mouse */ |
5932 | 3769 if (use_xterm_mouse() == 3 |
3145 | 3770 # ifdef FEAT_GUI |
3771 && !gui.in_use | |
3772 # endif | |
3773 ) | |
3774 { | |
3775 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
3776 ? IF_EB("\233", CSI_STR) | |
3777 : IF_EB("\033[", ESC_STR "["))); | |
3778 | |
3779 if (*p_mouse != NUL) | |
3780 { | |
3781 mch_setmouse(FALSE); | |
3782 setmouse(); | |
3783 } | |
3784 } | |
3785 else | |
3786 del_mouse_termcode(KS_URXVT_MOUSE); | |
3787 # endif | |
3746 | 3788 # ifdef FEAT_MOUSE_SGR |
5905 | 3789 /* There is no conflict with xterm mouse */ |
3746 | 3790 if (use_xterm_mouse() == 4 |
3791 # ifdef FEAT_GUI | |
3792 && !gui.in_use | |
3793 # endif | |
3794 ) | |
3795 { | |
3796 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
3797 ? IF_EB("\233<", CSI_STR "<") | |
3798 : IF_EB("\033[<", ESC_STR "[<"))); | |
3799 | |
3800 if (*p_mouse != NUL) | |
3801 { | |
3802 mch_setmouse(FALSE); | |
3803 setmouse(); | |
3804 } | |
3805 } | |
3806 else | |
3807 del_mouse_termcode(KS_SGR_MOUSE); | |
3808 # endif | |
7 | 3809 } |
3810 #endif | |
3811 | |
3812 /* | |
3813 * set screen mode, always fails. | |
3814 */ | |
3815 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3816 mch_screenmode(char_u *arg UNUSED) |
7 | 3817 { |
3818 EMSG(_(e_screenmode)); | |
3819 return FAIL; | |
3820 } | |
3821 | |
3822 #ifndef VMS | |
3823 | |
3824 /* | |
3825 * Try to get the current window size: | |
3826 * 1. with an ioctl(), most accurate method | |
3827 * 2. from the environment variables LINES and COLUMNS | |
3828 * 3. from the termcap | |
3829 * 4. keep using the old values | |
3830 * Return OK when size could be determined, FAIL otherwise. | |
3831 */ | |
3832 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3833 mch_get_shellsize(void) |
7 | 3834 { |
3835 long rows = 0; | |
3836 long columns = 0; | |
3837 char_u *p; | |
3838 | |
3839 /* | |
3840 * 1. try using an ioctl. It is the most accurate method. | |
3841 * | |
3842 * Try using TIOCGWINSZ first, some systems that have it also define | |
3843 * TIOCGSIZE but don't have a struct ttysize. | |
3844 */ | |
3845 # ifdef TIOCGWINSZ | |
3846 { | |
3847 struct winsize ws; | |
3848 int fd = 1; | |
3849 | |
3850 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3851 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3852 fd = read_cmd_fd; | |
3853 if (ioctl(fd, TIOCGWINSZ, &ws) == 0) | |
3854 { | |
3855 columns = ws.ws_col; | |
3856 rows = ws.ws_row; | |
3857 } | |
3858 } | |
3859 # else /* TIOCGWINSZ */ | |
3860 # ifdef TIOCGSIZE | |
3861 { | |
3862 struct ttysize ts; | |
3863 int fd = 1; | |
3864 | |
3865 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3866 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3867 fd = read_cmd_fd; | |
3868 if (ioctl(fd, TIOCGSIZE, &ts) == 0) | |
3869 { | |
3870 columns = ts.ts_cols; | |
3871 rows = ts.ts_lines; | |
3872 } | |
3873 } | |
3874 # endif /* TIOCGSIZE */ | |
3875 # endif /* TIOCGWINSZ */ | |
3876 | |
3877 /* | |
3878 * 2. get size from environment | |
164 | 3879 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules |
3880 * the ioctl() values! | |
7 | 3881 */ |
164 | 3882 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL) |
7 | 3883 { |
3884 if ((p = (char_u *)getenv("LINES"))) | |
3885 rows = atoi((char *)p); | |
3886 if ((p = (char_u *)getenv("COLUMNS"))) | |
3887 columns = atoi((char *)p); | |
3888 } | |
3889 | |
3890 #ifdef HAVE_TGETENT | |
3891 /* | |
3892 * 3. try reading "co" and "li" entries from termcap | |
3893 */ | |
3894 if (columns == 0 || rows == 0) | |
3895 getlinecol(&columns, &rows); | |
3896 #endif | |
3897 | |
3898 /* | |
3899 * 4. If everything fails, use the old values | |
3900 */ | |
3901 if (columns <= 0 || rows <= 0) | |
3902 return FAIL; | |
3903 | |
3904 Rows = rows; | |
3905 Columns = columns; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5037
diff
changeset
|
3906 limit_screen_size(); |
7 | 3907 return OK; |
3908 } | |
3909 | |
3910 /* | |
3911 * Try to set the window size to Rows and Columns. | |
3912 */ | |
3913 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3914 mch_set_shellsize(void) |
7 | 3915 { |
3916 if (*T_CWS) | |
3917 { | |
3918 /* | |
3919 * NOTE: if you get an error here that term_set_winsize() is | |
3920 * undefined, check the output of configure. It could probably not | |
3921 * find a ncurses, termcap or termlib library. | |
3922 */ | |
3923 term_set_winsize((int)Rows, (int)Columns); | |
3924 out_flush(); | |
3925 screen_start(); /* don't know where cursor is now */ | |
3926 } | |
3927 } | |
3928 | |
3929 #endif /* VMS */ | |
3930 | |
3931 /* | |
3932 * Rows and/or Columns has changed. | |
3933 */ | |
3934 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3935 mch_new_shellsize(void) |
7 | 3936 { |
3937 /* Nothing to do. */ | |
3938 } | |
3939 | |
3048 | 3940 /* |
3941 * Wait for process "child" to end. | |
3942 * Return "child" if it exited properly, <= 0 on error. | |
3943 */ | |
3944 static pid_t | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3945 wait4pid(pid_t child, waitstatus *status) |
3048 | 3946 { |
3947 pid_t wait_pid = 0; | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
3948 long delay_msec = 1; |
3048 | 3949 |
3950 while (wait_pid != child) | |
3951 { | |
3470 | 3952 /* When compiled with Python threads are probably used, in which case |
3953 * wait() sometimes hangs for no obvious reason. Use waitpid() | |
3954 * instead and loop (like the GUI). Also needed for other interfaces, | |
3955 * they might call system(). */ | |
3956 # ifdef __NeXT__ | |
3048 | 3957 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0); |
3470 | 3958 # else |
3048 | 3959 wait_pid = waitpid(child, status, WNOHANG); |
3470 | 3960 # endif |
3048 | 3961 if (wait_pid == 0) |
3962 { | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
3963 /* Wait for 1 to 10 msec before trying again. */ |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
3964 mch_delay(delay_msec, TRUE); |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
3965 if (++delay_msec > 10) |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
3966 delay_msec = 10; |
3048 | 3967 continue; |
3968 } | |
3969 if (wait_pid <= 0 | |
3970 # ifdef ECHILD | |
3971 && errno == ECHILD | |
3972 # endif | |
3973 ) | |
3974 break; | |
3975 } | |
3976 return wait_pid; | |
3977 } | |
3978 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
3979 #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
|
3980 /* |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3981 * 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
|
3982 * "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
|
3983 * Returns FAIL when out of memory. |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
3984 */ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3985 int |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3986 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
|
3987 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3988 int i; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3989 char_u *p; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3990 int inquote; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3991 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3992 /* |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3993 * Do this loop twice: |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3994 * 1: find number of arguments |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3995 * 2: separate them and build argv[] |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3996 */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3997 for (i = 0; i < 2; ++i) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
3998 { |
9009
149d976650a1
commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5
Christian Brabandt <cb@256bit.org>
parents:
8958
diff
changeset
|
3999 p = skipwhite(cmd); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4000 inquote = FALSE; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4001 *argc = 0; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4002 for (;;) |
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 if (i == 1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4005 (*argv)[*argc] = (char *)p; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4006 ++*argc; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4007 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
|
4008 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4009 if (*p == '"') |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4010 inquote = !inquote; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4011 ++p; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4012 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4013 if (*p == NUL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4014 break; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4015 if (i == 1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4016 *p++ = NUL; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4017 p = skipwhite(p); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4018 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4019 if (*argv == NULL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4020 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4021 if (use_shcf) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4022 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4023 /* 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
|
4024 p = p_shcf; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4025 for (;;) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4026 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4027 p = skiptowhite(p); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4028 if (*p == NUL) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4029 break; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4030 ++*argc; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4031 p = skipwhite(p); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4032 } |
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 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4035 *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
|
4036 if (*argv == NULL) /* out of memory */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4037 return FAIL; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4038 } |
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 return OK; |
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 #endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4043 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
4044 #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
|
4045 static void |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4046 set_child_environment(void) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4047 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4048 # ifdef HAVE_SETENV |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4049 char envbuf[50]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4050 # else |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4051 static char envbuf_Rows[20]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4052 static char envbuf_Columns[20]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4053 # endif |
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 /* 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
|
4056 # ifdef HAVE_SETENV |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4057 setenv("TERM", "dumb", 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4058 sprintf((char *)envbuf, "%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4059 setenv("ROWS", (char *)envbuf, 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4060 sprintf((char *)envbuf, "%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4061 setenv("LINES", (char *)envbuf, 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4062 sprintf((char *)envbuf, "%ld", Columns); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4063 setenv("COLUMNS", (char *)envbuf, 1); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4064 # else |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4065 /* |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4066 * 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
|
4067 * 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
|
4068 */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4069 putenv("TERM=dumb"); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4070 sprintf(envbuf_Rows, "ROWS=%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4071 putenv(envbuf_Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4072 sprintf(envbuf_Rows, "LINES=%ld", Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4073 putenv(envbuf_Rows); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4074 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4075 putenv(envbuf_Columns); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4076 # endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4077 } |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4078 #endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4079 |
7 | 4080 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4081 mch_call_shell( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4082 char_u *cmd, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4083 int options) /* SHELL_*, see vim.h */ |
7 | 4084 { |
4085 #ifdef VMS | |
4086 char *ifn = NULL; | |
4087 char *ofn = NULL; | |
4088 #endif | |
4089 int tmode = cur_tmode; | |
4090 #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */ | |
9552
49512aba8e32
commit https://github.com/vim/vim/commit/b2b050ab16565c117f0e7e411ffef3700d99203b
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
4091 char_u *newcmd; /* only needed for unix */ |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
4092 int x; |
7 | 4093 |
4094 out_flush(); | |
4095 | |
4096 if (options & SHELL_COOKED) | |
4097 settmode(TMODE_COOK); /* set to normal mode */ | |
4098 | |
2586 | 4099 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4209 | 4100 save_clipboard(); |
2586 | 4101 loose_clipboard(); |
4102 # endif | |
4103 | |
7 | 4104 if (cmd == NULL) |
4105 x = system((char *)p_sh); | |
4106 else | |
4107 { | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4108 # ifdef VMS |
7 | 4109 if (ofn = strchr((char *)cmd, '>')) |
4110 *ofn++ = '\0'; | |
4111 if (ifn = strchr((char *)cmd, '<')) | |
4112 { | |
4113 char *p; | |
4114 | |
4115 *ifn++ = '\0'; | |
4116 p = strchr(ifn,' '); /* chop off any trailing spaces */ | |
4117 if (p) | |
4118 *p = '\0'; | |
4119 } | |
4120 if (ofn) | |
4121 x = vms_sys((char *)cmd, ofn, ifn); | |
4122 else | |
4123 x = system((char *)cmd); | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4124 # else |
7 | 4125 newcmd = lalloc(STRLEN(p_sh) |
4126 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg)) | |
4127 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE); | |
4128 if (newcmd == NULL) | |
4129 x = 0; | |
4130 else | |
4131 { | |
4132 sprintf((char *)newcmd, "%s %s %s %s", p_sh, | |
4133 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg, | |
4134 (char *)p_shcf, | |
4135 (char *)cmd); | |
4136 x = system((char *)newcmd); | |
4137 vim_free(newcmd); | |
4138 } | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4139 # endif |
7 | 4140 } |
4141 # ifdef VMS | |
4142 x = vms_sys_status(x); | |
4143 # endif | |
4144 if (emsg_silent) | |
4145 ; | |
4146 else if (x == 127) | |
4147 MSG_PUTS(_("\nCannot execute shell sh\n")); | |
4148 else if (x && !(options & SHELL_SILENT)) | |
4149 { | |
4150 MSG_PUTS(_("\nshell returned ")); | |
4151 msg_outnum((long)x); | |
4152 msg_putchar('\n'); | |
4153 } | |
4154 | |
4155 if (tmode == TMODE_RAW) | |
4156 settmode(TMODE_RAW); /* set to raw mode */ | |
4157 # ifdef FEAT_TITLE | |
4158 resettitle(); | |
4159 # endif | |
4209 | 4160 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4161 restore_clipboard(); | |
4162 # endif | |
7 | 4163 return x; |
4164 | |
4165 #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */ | |
4166 | |
167 | 4167 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use |
4168 127, some shells use that already */ | |
7 | 4169 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4170 char_u *newcmd; |
7 | 4171 pid_t pid; |
167 | 4172 pid_t wpid = 0; |
7 | 4173 pid_t wait_pid = 0; |
4174 # ifdef HAVE_UNION_WAIT | |
4175 union wait status; | |
4176 # else | |
4177 int status = -1; | |
4178 # endif | |
4179 int retval = -1; | |
4180 char **argv = NULL; | |
4181 int argc; | |
2994 | 4182 char_u *p_shcf_copy = NULL; |
7 | 4183 int i; |
4184 char_u *p; | |
167 | 4185 int pty_master_fd = -1; /* for pty's */ |
7 | 4186 # ifdef FEAT_GUI |
4187 int pty_slave_fd = -1; | |
4188 char *tty_name; | |
167 | 4189 # endif |
602 | 4190 int fd_toshell[2]; /* for pipes */ |
7 | 4191 int fd_fromshell[2]; |
4192 int pipe_error = FALSE; | |
602 | 4193 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */ |
7 | 4194 |
2586 | 4195 newcmd = vim_strsave(p_sh); |
4196 if (newcmd == NULL) /* out of memory */ | |
4197 goto error; | |
4198 | |
7 | 4199 out_flush(); |
4200 if (options & SHELL_COOKED) | |
4201 settmode(TMODE_COOK); /* set to normal mode */ | |
4202 | |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4203 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
|
4204 goto error; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4205 |
7 | 4206 if (cmd != NULL) |
4207 { | |
3263 | 4208 char_u *s; |
4209 | |
7 | 4210 if (extra_shell_arg != NULL) |
4211 argv[argc++] = (char *)extra_shell_arg; | |
2994 | 4212 |
4213 /* Break 'shellcmdflag' into white separated parts. This doesn't | |
4214 * handle quoted strings, they are very unlikely to appear. */ | |
4215 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1); | |
4216 if (p_shcf_copy == NULL) /* out of memory */ | |
4217 goto error; | |
4218 s = p_shcf_copy; | |
4219 p = p_shcf; | |
4220 while (*p != NUL) | |
4221 { | |
4222 argv[argc++] = (char *)s; | |
4223 while (*p && *p != ' ' && *p != TAB) | |
4224 *s++ = *p++; | |
4225 *s++ = NUL; | |
4226 p = skipwhite(p); | |
4227 } | |
4228 | |
7 | 4229 argv[argc++] = (char *)cmd; |
4230 } | |
4231 argv[argc] = NULL; | |
4232 | |
167 | 4233 /* |
4234 * For the GUI, when writing the output into the buffer and when reading | |
4235 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout | |
4236 * of the executed command into the Vim window. Or use a pipe. | |
4237 */ | |
4238 if ((options & (SHELL_READ|SHELL_WRITE)) | |
7 | 4239 # ifdef FEAT_GUI |
167 | 4240 || (gui.in_use && show_shell_mess) |
4241 # endif | |
4242 ) | |
7 | 4243 { |
167 | 4244 # ifdef FEAT_GUI |
7 | 4245 /* |
4246 * Try to open a master pty. | |
4247 * If this works, open the slave pty. | |
4248 * If the slave can't be opened, close the master pty. | |
4249 */ | |
167 | 4250 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE))) |
7 | 4251 { |
4252 pty_master_fd = OpenPTY(&tty_name); /* open pty */ | |
2992 | 4253 if (pty_master_fd >= 0) |
7 | 4254 { |
2992 | 4255 /* Leaving out O_NOCTTY may lead to waitpid() always returning |
4256 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume | |
4257 * adding O_NOCTTY always works when defined. */ | |
4258 #ifdef O_NOCTTY | |
4259 pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0); | |
4260 #else | |
4261 pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0); | |
4262 #endif | |
4263 if (pty_slave_fd < 0) | |
4264 { | |
4265 close(pty_master_fd); | |
4266 pty_master_fd = -1; | |
4267 } | |
7 | 4268 } |
4269 } | |
4270 /* | |
4271 * If not opening a pty or it didn't work, try using pipes. | |
4272 */ | |
4273 if (pty_master_fd < 0) | |
167 | 4274 # endif |
7 | 4275 { |
4276 pipe_error = (pipe(fd_toshell) < 0); | |
4277 if (!pipe_error) /* pipe create OK */ | |
4278 { | |
4279 pipe_error = (pipe(fd_fromshell) < 0); | |
4280 if (pipe_error) /* pipe create failed */ | |
4281 { | |
4282 close(fd_toshell[0]); | |
4283 close(fd_toshell[1]); | |
4284 } | |
4285 } | |
4286 if (pipe_error) | |
4287 { | |
4288 MSG_PUTS(_("\nCannot create pipes\n")); | |
4289 out_flush(); | |
4290 } | |
4291 } | |
4292 } | |
4293 | |
4294 if (!pipe_error) /* pty or pipe opened or not used */ | |
4295 { | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4296 SIGSET_DECL(curset) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4297 |
7 | 4298 # ifdef __BEOS__ |
4299 beos_cleanup_read_thread(); | |
4300 # endif | |
602 | 4301 |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4302 BLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4303 pid = fork(); /* maybe we should use vfork() */ |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4304 if (pid == -1) |
7 | 4305 { |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4306 UNBLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4307 |
7 | 4308 MSG_PUTS(_("\nCannot fork\n")); |
167 | 4309 if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4310 # ifdef FEAT_GUI |
167 | 4311 || (gui.in_use && show_shell_mess) |
4312 # endif | |
4313 ) | |
7 | 4314 { |
167 | 4315 # ifdef FEAT_GUI |
7 | 4316 if (pty_master_fd >= 0) /* close the pseudo tty */ |
4317 { | |
4318 close(pty_master_fd); | |
4319 close(pty_slave_fd); | |
4320 } | |
4321 else /* close the pipes */ | |
167 | 4322 # endif |
7 | 4323 { |
4324 close(fd_toshell[0]); | |
4325 close(fd_toshell[1]); | |
4326 close(fd_fromshell[0]); | |
4327 close(fd_fromshell[1]); | |
4328 } | |
4329 } | |
4330 } | |
4331 else if (pid == 0) /* child */ | |
4332 { | |
4333 reset_signals(); /* handle signals normally */ | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4334 UNBLOCK_SIGNALS(&curset); |
7 | 4335 |
4336 if (!show_shell_mess || (options & SHELL_EXPAND)) | |
4337 { | |
4338 int fd; | |
4339 | |
4340 /* | |
4341 * Don't want to show any message from the shell. Can't just | |
4342 * close stdout and stderr though, because some systems will | |
4343 * break if you try to write to them after that, so we must | |
4344 * use dup() to replace them with something else -- webb | |
4345 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang, | |
4346 * waiting for input. | |
4347 */ | |
4348 fd = open("/dev/null", O_RDWR | O_EXTRA, 0); | |
4349 fclose(stdin); | |
4350 fclose(stdout); | |
4351 fclose(stderr); | |
4352 | |
4353 /* | |
4354 * If any of these open()'s and dup()'s fail, we just continue | |
4355 * anyway. It's not fatal, and on most systems it will make | |
4356 * no difference at all. On a few it will cause the execvp() | |
4357 * to exit with a non-zero status even when the completion | |
4358 * could be done, which is nothing too serious. If the open() | |
4359 * or dup() failed we'd just do the same thing ourselves | |
4360 * anyway -- webb | |
4361 */ | |
4362 if (fd >= 0) | |
4363 { | |
1757 | 4364 ignored = dup(fd); /* To replace stdin (fd 0) */ |
4365 ignored = dup(fd); /* To replace stdout (fd 1) */ | |
4366 ignored = dup(fd); /* To replace stderr (fd 2) */ | |
7 | 4367 |
4368 /* Don't need this now that we've duplicated it */ | |
4369 close(fd); | |
4370 } | |
4371 } | |
167 | 4372 else if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4373 # ifdef FEAT_GUI |
167 | 4374 || gui.in_use |
4375 # endif | |
4376 ) | |
7 | 4377 { |
4378 | |
167 | 4379 # ifdef HAVE_SETSID |
602 | 4380 /* Create our own process group, so that the child and all its |
4381 * children can be kill()ed. Don't do this when using pipes, | |
1698 | 4382 * because stdin is not a tty, we would lose /dev/tty. */ |
602 | 4383 if (p_stmp) |
1799 | 4384 { |
602 | 4385 (void)setsid(); |
1799 | 4386 # if defined(SIGHUP) |
4387 /* When doing "!xterm&" and 'shell' is bash: the shell | |
4388 * will exit and send SIGHUP to all processes in its | |
4389 * group, killing the just started process. Ignore SIGHUP | |
4390 * to avoid that. (suggested by Simon Schubert) | |
4391 */ | |
4392 signal(SIGHUP, SIG_IGN); | |
4393 # endif | |
4394 } | |
167 | 4395 # endif |
4396 # ifdef FEAT_GUI | |
602 | 4397 if (pty_slave_fd >= 0) |
4398 { | |
4399 /* push stream discipline modules */ | |
4400 if (options & SHELL_COOKED) | |
4401 SetupSlavePTY(pty_slave_fd); | |
7 | 4402 # ifdef TIOCSCTTY |
602 | 4403 /* Try to become controlling tty (probably doesn't work, |
4404 * unless run by root) */ | |
4405 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); | |
7 | 4406 # endif |
602 | 4407 } |
167 | 4408 # endif |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4409 set_child_environment(); |
167 | 4410 |
557 | 4411 /* |
4412 * stderr is only redirected when using the GUI, so that a | |
4413 * program like gpg can still access the terminal to get a | |
4414 * passphrase using stderr. | |
4415 */ | |
167 | 4416 # ifdef FEAT_GUI |
7 | 4417 if (pty_master_fd >= 0) |
4418 { | |
4419 close(pty_master_fd); /* close master side of pty */ | |
4420 | |
4421 /* set up stdin/stdout/stderr for the child */ | |
4422 close(0); | |
1757 | 4423 ignored = dup(pty_slave_fd); |
7 | 4424 close(1); |
1757 | 4425 ignored = dup(pty_slave_fd); |
557 | 4426 if (gui.in_use) |
4427 { | |
4428 close(2); | |
1757 | 4429 ignored = dup(pty_slave_fd); |
557 | 4430 } |
7 | 4431 |
4432 close(pty_slave_fd); /* has been dupped, close it now */ | |
4433 } | |
4434 else | |
167 | 4435 # endif |
7 | 4436 { |
4437 /* set up stdin for the child */ | |
4438 close(fd_toshell[1]); | |
4439 close(0); | |
1757 | 4440 ignored = dup(fd_toshell[0]); |
7 | 4441 close(fd_toshell[0]); |
4442 | |
4443 /* set up stdout for the child */ | |
4444 close(fd_fromshell[0]); | |
4445 close(1); | |
1757 | 4446 ignored = dup(fd_fromshell[1]); |
7 | 4447 close(fd_fromshell[1]); |
4448 | |
557 | 4449 # ifdef FEAT_GUI |
4450 if (gui.in_use) | |
4451 { | |
4452 /* set up stderr for the child */ | |
4453 close(2); | |
1757 | 4454 ignored = dup(1); |
557 | 4455 } |
4456 # endif | |
7 | 4457 } |
4458 } | |
167 | 4459 |
7 | 4460 /* |
4461 * There is no type cast for the argv, because the type may be | |
4462 * different on different machines. This may cause a warning | |
4463 * message with strict compilers, don't worry about it. | |
4464 * Call _exit() instead of exit() to avoid closing the connection | |
4465 * to the X server (esp. with GTK, which uses atexit()). | |
4466 */ | |
4467 execvp(argv[0], argv); | |
4468 _exit(EXEC_FAILED); /* exec failed, return failure code */ | |
4469 } | |
4470 else /* parent */ | |
4471 { | |
4472 /* | |
4473 * While child is running, ignore terminating signals. | |
167 | 4474 * Do catch CTRL-C, so that "got_int" is set. |
7 | 4475 */ |
4476 catch_signals(SIG_IGN, SIG_ERR); | |
167 | 4477 catch_int_signal(); |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4478 UNBLOCK_SIGNALS(&curset); |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4479 # ifdef FEAT_JOB_CHANNEL |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4480 ++dont_check_job_ended; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4481 # endif |
7 | 4482 /* |
4483 * For the GUI we redirect stdin, stdout and stderr to our window. | |
167 | 4484 * This is also used to pipe stdin/stdout to/from the external |
4485 * command. | |
7 | 4486 */ |
167 | 4487 if ((options & (SHELL_READ|SHELL_WRITE)) |
4488 # ifdef FEAT_GUI | |
4489 || (gui.in_use && show_shell_mess) | |
4490 # endif | |
4491 ) | |
7 | 4492 { |
167 | 4493 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */ |
7 | 4494 char_u buffer[BUFLEN + 1]; |
167 | 4495 # ifdef FEAT_MBYTE |
7 | 4496 int buffer_off = 0; /* valid bytes in buffer[] */ |
167 | 4497 # endif |
7 | 4498 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ |
4499 int ta_len = 0; /* valid bytes in ta_buf[] */ | |
4500 int len; | |
4501 int p_more_save; | |
4502 int old_State; | |
4503 int c; | |
4504 int toshell_fd; | |
4505 int fromshell_fd; | |
167 | 4506 garray_T ga; |
4507 int noread_cnt; | |
1823 | 4508 # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
4509 struct timeval start_tv; | |
4510 # endif | |
167 | 4511 |
4512 # ifdef FEAT_GUI | |
7 | 4513 if (pty_master_fd >= 0) |
4514 { | |
4515 fromshell_fd = pty_master_fd; | |
4516 toshell_fd = dup(pty_master_fd); | |
4517 } | |
4518 else | |
167 | 4519 # endif |
7 | 4520 { |
4521 close(fd_toshell[0]); | |
4522 close(fd_fromshell[1]); | |
4523 toshell_fd = fd_toshell[1]; | |
4524 fromshell_fd = fd_fromshell[0]; | |
4525 } | |
4526 | |
4527 /* | |
4528 * Write to the child if there are typed characters. | |
4529 * Read from the child if there are characters available. | |
4530 * Repeat the reading a few times if more characters are | |
4531 * available. Need to check for typed keys now and then, but | |
4532 * not too often (delays when no chars are available). | |
4533 * This loop is quit if no characters can be read from the pty | |
4534 * (WaitForChar detected special condition), or there are no | |
4535 * characters available and the child has exited. | |
4536 * Only check if the child has exited when there is no more | |
4537 * output. The child may exit before all the output has | |
4538 * been printed. | |
4539 * | |
4540 * Currently this busy loops! | |
4541 * This can probably dead-lock when the write blocks! | |
4542 */ | |
4543 p_more_save = p_more; | |
4544 p_more = FALSE; | |
4545 old_State = State; | |
4546 State = EXTERNCMD; /* don't redraw at window resize */ | |
4547 | |
602 | 4548 if ((options & SHELL_WRITE) && toshell_fd >= 0) |
167 | 4549 { |
4550 /* Fork a process that will write the lines to the | |
4551 * external program. */ | |
4552 if ((wpid = fork()) == -1) | |
4553 { | |
4554 MSG_PUTS(_("\nCannot fork\n")); | |
4555 } | |
3048 | 4556 else if (wpid == 0) /* child */ |
167 | 4557 { |
4558 linenr_T lnum = curbuf->b_op_start.lnum; | |
4559 int written = 0; | |
944 | 4560 char_u *lp = ml_get(lnum); |
167 | 4561 size_t l; |
4562 | |
177 | 4563 close(fromshell_fd); |
167 | 4564 for (;;) |
4565 { | |
944 | 4566 l = STRLEN(lp + written); |
167 | 4567 if (l == 0) |
4568 len = 0; | |
944 | 4569 else if (lp[written] == NL) |
167 | 4570 /* NL -> NUL translation */ |
4571 len = write(toshell_fd, "", (size_t)1); | |
4572 else | |
4573 { | |
3263 | 4574 char_u *s = vim_strchr(lp + written, NL); |
4575 | |
944 | 4576 len = write(toshell_fd, (char *)lp + written, |
1877 | 4577 s == NULL ? l |
4578 : (size_t)(s - (lp + written))); | |
167 | 4579 } |
1877 | 4580 if (len == (int)l) |
167 | 4581 { |
4582 /* Finished a line, add a NL, unless this line | |
4583 * should not have one. */ | |
4584 if (lnum != curbuf->b_op_end.lnum | |
6933 | 4585 || (!curbuf->b_p_bin |
4586 && curbuf->b_p_fixeol) | |
2707 | 4587 || (lnum != curbuf->b_no_eol_lnum |
167 | 4588 && (lnum != |
4589 curbuf->b_ml.ml_line_count | |
4590 || curbuf->b_p_eol))) | |
1757 | 4591 ignored = write(toshell_fd, "\n", |
4592 (size_t)1); | |
167 | 4593 ++lnum; |
4594 if (lnum > curbuf->b_op_end.lnum) | |
4595 { | |
4596 /* finished all the lines, close pipe */ | |
4597 close(toshell_fd); | |
4598 toshell_fd = -1; | |
4599 break; | |
4600 } | |
944 | 4601 lp = ml_get(lnum); |
167 | 4602 written = 0; |
4603 } | |
4604 else if (len > 0) | |
4605 written += len; | |
4606 } | |
4607 _exit(0); | |
4608 } | |
3048 | 4609 else /* parent */ |
167 | 4610 { |
4611 close(toshell_fd); | |
4612 toshell_fd = -1; | |
4613 } | |
4614 } | |
4615 | |
4616 if (options & SHELL_READ) | |
4617 ga_init2(&ga, 1, BUFLEN); | |
4618 | |
4619 noread_cnt = 0; | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4620 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4621 ELAPSED_INIT(start_tv); |
1823 | 4622 # endif |
7 | 4623 for (;;) |
4624 { | |
4625 /* | |
4626 * Check if keys have been typed, write them to the child | |
592 | 4627 * if there are any. |
4628 * Don't do this if we are expanding wild cards (would eat | |
4629 * typeahead). | |
4630 * Don't do this when filtering and terminal is in cooked | |
4631 * mode, the shell command will handle the I/O. Avoids | |
4632 * that a typed password is echoed for ssh or gpg command. | |
602 | 4633 * Don't get characters when the child has already |
4634 * finished (wait_pid == 0). | |
167 | 4635 * Don't read characters unless we didn't get output for a |
1823 | 4636 * while (noread_cnt > 4), avoids that ":r !ls" eats |
4637 * typeahead. | |
7 | 4638 */ |
4639 len = 0; | |
4640 if (!(options & SHELL_EXPAND) | |
592 | 4641 && ((options & |
4642 (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) | |
4643 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) | |
1823 | 4644 # ifdef FEAT_GUI |
592 | 4645 || gui.in_use |
1823 | 4646 # endif |
592 | 4647 ) |
602 | 4648 && wait_pid == 0 |
1823 | 4649 && (ta_len > 0 || noread_cnt > 4)) |
7 | 4650 { |
1823 | 4651 if (ta_len == 0) |
4652 { | |
4653 /* Get extra characters when we don't have any. | |
4654 * Reset the counter and timer. */ | |
4655 noread_cnt = 0; | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4656 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4657 ELAPSED_INIT(start_tv); |
1823 | 4658 # endif |
4659 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); | |
4660 } | |
4661 if (ta_len > 0 || len > 0) | |
4662 { | |
7 | 4663 /* |
4664 * For pipes: | |
4665 * Check for CTRL-C: send interrupt signal to child. | |
4666 * Check for CTRL-D: EOF, close pipe to child. | |
4667 */ | |
4668 if (len == 1 && (pty_master_fd < 0 || cmd != NULL)) | |
4669 { | |
167 | 4670 # ifdef SIGINT |
7 | 4671 /* |
4672 * Send SIGINT to the child's group or all | |
4673 * processes in our group. | |
4674 */ | |
4675 if (ta_buf[ta_len] == Ctrl_C | |
4676 || ta_buf[ta_len] == intr_char) | |
167 | 4677 { |
4678 # ifdef HAVE_SETSID | |
7 | 4679 kill(-pid, SIGINT); |
167 | 4680 # else |
7 | 4681 kill(0, SIGINT); |
4682 # endif | |
167 | 4683 if (wpid > 0) |
4684 kill(wpid, SIGINT); | |
4685 } | |
4686 # endif | |
7 | 4687 if (pty_master_fd < 0 && toshell_fd >= 0 |
4688 && ta_buf[ta_len] == Ctrl_D) | |
4689 { | |
4690 close(toshell_fd); | |
4691 toshell_fd = -1; | |
4692 } | |
4693 } | |
4694 | |
4695 /* replace K_BS by <BS> and K_DEL by <DEL> */ | |
4696 for (i = ta_len; i < ta_len + len; ++i) | |
4697 { | |
4698 if (ta_buf[i] == CSI && len - i > 2) | |
4699 { | |
4700 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); | |
4701 if (c == K_DEL || c == K_KDEL || c == K_BS) | |
4702 { | |
4703 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, | |
4704 (size_t)(len - i - 2)); | |
4705 if (c == K_DEL || c == K_KDEL) | |
4706 ta_buf[i] = DEL; | |
4707 else | |
4708 ta_buf[i] = Ctrl_H; | |
4709 len -= 2; | |
4710 } | |
4711 } | |
4712 else if (ta_buf[i] == '\r') | |
4713 ta_buf[i] = '\n'; | |
167 | 4714 # ifdef FEAT_MBYTE |
7 | 4715 if (has_mbyte) |
1903 | 4716 i += (*mb_ptr2len_len)(ta_buf + i, |
4717 ta_len + len - i) - 1; | |
167 | 4718 # endif |
7 | 4719 } |
4720 | |
4721 /* | |
4722 * For pipes: echo the typed characters. | |
4723 * For a pty this does not seem to work. | |
4724 */ | |
4725 if (pty_master_fd < 0) | |
4726 { | |
4727 for (i = ta_len; i < ta_len + len; ++i) | |
4728 { | |
4729 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') | |
4730 msg_putchar(ta_buf[i]); | |
167 | 4731 # ifdef FEAT_MBYTE |
7 | 4732 else if (has_mbyte) |
4733 { | |
474 | 4734 int l = (*mb_ptr2len)(ta_buf + i); |
7 | 4735 |
4736 msg_outtrans_len(ta_buf + i, l); | |
4737 i += l - 1; | |
4738 } | |
167 | 4739 # endif |
7 | 4740 else |
4741 msg_outtrans_len(ta_buf + i, 1); | |
4742 } | |
4743 windgoto(msg_row, msg_col); | |
4744 out_flush(); | |
4745 } | |
4746 | |
4747 ta_len += len; | |
4748 | |
4749 /* | |
4750 * Write the characters to the child, unless EOF has | |
4751 * been typed for pipes. Write one character at a | |
1698 | 4752 * time, to avoid losing too much typeahead. |
167 | 4753 * When writing buffer lines, drop the typed |
4754 * characters (only check for CTRL-C). | |
7 | 4755 */ |
167 | 4756 if (options & SHELL_WRITE) |
4757 ta_len = 0; | |
4758 else if (toshell_fd >= 0) | |
7 | 4759 { |
4760 len = write(toshell_fd, (char *)ta_buf, (size_t)1); | |
4761 if (len > 0) | |
4762 { | |
4763 ta_len -= len; | |
4764 mch_memmove(ta_buf, ta_buf + len, ta_len); | |
4765 } | |
4766 } | |
1823 | 4767 } |
7 | 4768 } |
4769 | |
167 | 4770 if (got_int) |
4771 { | |
4772 /* CTRL-C sends a signal to the child, we ignore it | |
4773 * ourselves */ | |
4774 # ifdef HAVE_SETSID | |
4775 kill(-pid, SIGINT); | |
4776 # else | |
4777 kill(0, SIGINT); | |
4778 # endif | |
4779 if (wpid > 0) | |
4780 kill(wpid, SIGINT); | |
4781 got_int = FALSE; | |
4782 } | |
4783 | |
7 | 4784 /* |
4785 * Check if the child has any characters to be printed. | |
4786 * Read them and write them to our window. Repeat this as | |
4787 * long as there is something to do, avoid the 10ms wait | |
4788 * for mch_inchar(), or sending typeahead characters to | |
4789 * the external process. | |
4790 * TODO: This should handle escape sequences, compatible | |
4791 * to some terminal (vt52?). | |
4792 */ | |
167 | 4793 ++noread_cnt; |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
4794 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL)) |
7 | 4795 { |
2664 | 4796 len = read_eintr(fromshell_fd, buffer |
167 | 4797 # ifdef FEAT_MBYTE |
7 | 4798 + buffer_off, (size_t)(BUFLEN - buffer_off) |
167 | 4799 # else |
7 | 4800 , (size_t)BUFLEN |
167 | 4801 # endif |
7 | 4802 ); |
4803 if (len <= 0) /* end of file or error */ | |
4804 goto finished; | |
167 | 4805 |
4806 noread_cnt = 0; | |
4807 if (options & SHELL_READ) | |
4808 { | |
4809 /* Do NUL -> NL translation, append NL separated | |
4810 * lines to the current buffer. */ | |
4811 for (i = 0; i < len; ++i) | |
4812 { | |
4813 if (buffer[i] == NL) | |
4814 append_ga_line(&ga); | |
4815 else if (buffer[i] == NUL) | |
4816 ga_append(&ga, NL); | |
4817 else | |
4818 ga_append(&ga, buffer[i]); | |
4819 } | |
4820 } | |
4821 # ifdef FEAT_MBYTE | |
4822 else if (has_mbyte) | |
7 | 4823 { |
4824 int l; | |
4825 | |
167 | 4826 len += buffer_off; |
4827 buffer[len] = NUL; | |
4828 | |
7 | 4829 /* Check if the last character in buffer[] is |
4830 * incomplete, keep these bytes for the next | |
4831 * round. */ | |
4832 for (p = buffer; p < buffer + len; p += l) | |
4833 { | |
9898
bff8a09016a5
commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents:
9873
diff
changeset
|
4834 l = MB_CPTR2LEN(p); |
7 | 4835 if (l == 0) |
4836 l = 1; /* NUL byte? */ | |
4837 else if (MB_BYTE2LEN(*p) != l) | |
4838 break; | |
4839 } | |
4840 if (p == buffer) /* no complete character */ | |
4841 { | |
4842 /* avoid getting stuck at an illegal byte */ | |
4843 if (len >= 12) | |
4844 ++p; | |
4845 else | |
4846 { | |
4847 buffer_off = len; | |
4848 continue; | |
4849 } | |
4850 } | |
4851 c = *p; | |
4852 *p = NUL; | |
4853 msg_puts(buffer); | |
4854 if (p < buffer + len) | |
4855 { | |
4856 *p = c; | |
4857 buffer_off = (buffer + len) - p; | |
4858 mch_memmove(buffer, p, buffer_off); | |
4859 continue; | |
4860 } | |
4861 buffer_off = 0; | |
4862 } | |
167 | 4863 # endif /* FEAT_MBYTE */ |
7 | 4864 else |
4865 { | |
4866 buffer[len] = NUL; | |
4867 msg_puts(buffer); | |
4868 } | |
4869 | |
4870 windgoto(msg_row, msg_col); | |
4871 cursor_on(); | |
4872 out_flush(); | |
4873 if (got_int) | |
4874 break; | |
1823 | 4875 |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4876 # ifdef ELAPSED_FUNC |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4877 if (wait_pid == 0) |
1823 | 4878 { |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4879 long msec = ELAPSED_FUNC(start_tv); |
1823 | 4880 |
4881 /* Avoid that we keep looping here without | |
4882 * checking for a CTRL-C for a long time. Don't | |
4883 * break out too often to avoid losing typeahead. */ | |
4884 if (msec > 2000) | |
4885 { | |
4886 noread_cnt = 5; | |
4887 break; | |
4888 } | |
4889 } | |
4890 # endif | |
7 | 4891 } |
4892 | |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4893 /* 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
|
4894 * 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
|
4895 * buffered. */ |
602 | 4896 if (wait_pid == pid) |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4897 { |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4898 if (noread_cnt < 5) |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4899 continue; |
602 | 4900 break; |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
4901 } |
602 | 4902 |
7 | 4903 /* |
4904 * Check if the child still exists, before checking for | |
1698 | 4905 * typed characters (otherwise we would lose typeahead). |
7 | 4906 */ |
167 | 4907 # ifdef __NeXT__ |
3048 | 4908 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); |
167 | 4909 # else |
7 | 4910 wait_pid = waitpid(pid, &status, WNOHANG); |
167 | 4911 # endif |
7 | 4912 if ((wait_pid == (pid_t)-1 && errno == ECHILD) |
4913 || (wait_pid == pid && WIFEXITED(status))) | |
4914 { | |
602 | 4915 /* Don't break the loop yet, try reading more |
4916 * characters from "fromshell_fd" first. When using | |
4917 * pipes there might still be something to read and | |
4918 * then we'll break the loop at the "break" above. */ | |
7 | 4919 wait_pid = pid; |
4920 } | |
602 | 4921 else |
4922 wait_pid = 0; | |
4230 | 4923 |
4248 | 4924 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 4925 /* Handle any X events, e.g. serving the clipboard. */ |
4926 clip_update(); | |
4927 # endif | |
7 | 4928 } |
4929 finished: | |
4930 p_more = p_more_save; | |
167 | 4931 if (options & SHELL_READ) |
4932 { | |
4933 if (ga.ga_len > 0) | |
4934 { | |
4935 append_ga_line(&ga); | |
4936 /* remember that the NL was missing */ | |
2707 | 4937 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; |
167 | 4938 } |
4939 else | |
2707 | 4940 curbuf->b_no_eol_lnum = 0; |
167 | 4941 ga_clear(&ga); |
4942 } | |
4943 | |
7 | 4944 /* |
4945 * Give all typeahead that wasn't used back to ui_inchar(). | |
4946 */ | |
4947 if (ta_len) | |
4948 ui_inchar_undo(ta_buf, ta_len); | |
4949 State = old_State; | |
4950 if (toshell_fd >= 0) | |
4951 close(toshell_fd); | |
4952 close(fromshell_fd); | |
4953 } | |
4248 | 4954 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 4955 else |
4956 { | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4957 long delay_msec = 1; |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4958 |
4230 | 4959 /* |
4960 * Similar to the loop above, but only handle X events, no | |
4961 * I/O. | |
4962 */ | |
4963 for (;;) | |
4964 { | |
4965 if (got_int) | |
4966 { | |
4967 /* CTRL-C sends a signal to the child, we ignore it | |
4968 * ourselves */ | |
4969 # ifdef HAVE_SETSID | |
4970 kill(-pid, SIGINT); | |
4971 # else | |
4972 kill(0, SIGINT); | |
4973 # endif | |
4974 got_int = FALSE; | |
4975 } | |
4976 # ifdef __NeXT__ | |
4977 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); | |
4978 # else | |
4979 wait_pid = waitpid(pid, &status, WNOHANG); | |
4980 # endif | |
4981 if ((wait_pid == (pid_t)-1 && errno == ECHILD) | |
4982 || (wait_pid == pid && WIFEXITED(status))) | |
4983 { | |
4984 wait_pid = pid; | |
4985 break; | |
4986 } | |
4987 | |
4988 /* Handle any X events, e.g. serving the clipboard. */ | |
4989 clip_update(); | |
4990 | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4991 /* Wait for 1 to 10 msec. 1 is faster but gives the child |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4992 * less time. */ |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4993 mch_delay(delay_msec, TRUE); |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4994 if (++delay_msec > 10) |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4995 delay_msec = 10; |
4230 | 4996 } |
4997 } | |
4998 # endif | |
7 | 4999 |
5000 /* | |
5001 * Wait until our child has exited. | |
5002 * Ignore wait() returning pids of other children and returning | |
5003 * because of some signal like SIGWINCH. | |
5004 * Don't wait if wait_pid was already set above, indicating the | |
5005 * child already exited. | |
5006 */ | |
3048 | 5007 if (wait_pid != pid) |
5008 wait_pid = wait4pid(pid, &status); | |
7 | 5009 |
2600 | 5010 # ifdef FEAT_GUI |
5011 /* Close slave side of pty. Only do this after the child has | |
5012 * exited, otherwise the child may hang when it tries to write on | |
5013 * the pty. */ | |
5014 if (pty_master_fd >= 0) | |
5015 close(pty_slave_fd); | |
5016 # endif | |
5017 | |
167 | 5018 /* Make sure the child that writes to the external program is |
5019 * dead. */ | |
5020 if (wpid > 0) | |
3048 | 5021 { |
167 | 5022 kill(wpid, SIGKILL); |
3048 | 5023 wait4pid(wpid, NULL); |
5024 } | |
167 | 5025 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5026 # ifdef FEAT_JOB_CHANNEL |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5027 --dont_check_job_ended; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5028 # endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5029 |
7 | 5030 /* |
5031 * Set to raw mode right now, otherwise a CTRL-C after | |
5032 * catch_signals() will kill Vim. | |
5033 */ | |
5034 if (tmode == TMODE_RAW) | |
5035 settmode(TMODE_RAW); | |
5036 did_settmode = TRUE; | |
5037 set_signals(); | |
5038 | |
5039 if (WIFEXITED(status)) | |
5040 { | |
129 | 5041 /* LINTED avoid "bitwise operation on signed value" */ |
7 | 5042 retval = WEXITSTATUS(status); |
4074 | 5043 if (retval != 0 && !emsg_silent) |
7 | 5044 { |
5045 if (retval == EXEC_FAILED) | |
5046 { | |
5047 MSG_PUTS(_("\nCannot execute shell ")); | |
5048 msg_outtrans(p_sh); | |
5049 msg_putchar('\n'); | |
5050 } | |
5051 else if (!(options & SHELL_SILENT)) | |
5052 { | |
5053 MSG_PUTS(_("\nshell returned ")); | |
5054 msg_outnum((long)retval); | |
5055 msg_putchar('\n'); | |
5056 } | |
5057 } | |
5058 } | |
5059 else | |
5060 MSG_PUTS(_("\nCommand terminated\n")); | |
5061 } | |
5062 } | |
5063 vim_free(argv); | |
2994 | 5064 vim_free(p_shcf_copy); |
7 | 5065 |
5066 error: | |
5067 if (!did_settmode) | |
5068 if (tmode == TMODE_RAW) | |
5069 settmode(TMODE_RAW); /* set to raw mode */ | |
5070 # ifdef FEAT_TITLE | |
5071 resettitle(); | |
5072 # endif | |
5073 vim_free(newcmd); | |
5074 | |
5075 return retval; | |
5076 | |
5077 #endif /* USE_SYSTEM */ | |
5078 } | |
5079 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5080 #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
|
5081 void |
8408
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5082 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
|
5083 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5084 pid_t pid; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5085 int fd_in[2]; /* for stdin */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5086 int fd_out[2]; /* for stdout */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5087 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
|
5088 channel_T *channel = NULL; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5089 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
|
5090 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
|
5091 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
|
5092 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
|
5093 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
|
5094 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
|
5095 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT; |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5096 SIGSET_DECL(curset) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5097 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5098 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
|
5099 use_null_for_err = TRUE; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5100 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5101 /* default is to fail */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5102 job->jv_status = JOB_FAILED; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5103 fd_in[0] = -1; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5104 fd_in[1] = -1; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5105 fd_out[0] = -1; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5106 fd_out[1] = -1; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5107 fd_err[0] = -1; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5108 fd_err[1] = -1; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5109 |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
5110 /* 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
|
5111 /* 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
|
5112 if (use_file_for_in) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5113 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5114 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
|
5115 |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5116 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
|
5117 if (fd_in[0] < 0) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5118 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5119 EMSG2(_(e_notopen), fname); |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5120 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5121 } |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5122 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5123 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
|
5124 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5125 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5126 if (use_file_for_out) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5127 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5128 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
|
5129 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5130 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
|
5131 if (fd_out[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5132 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5133 EMSG2(_(e_notopen), fname); |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5134 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5135 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5136 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5137 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
|
5138 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5139 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5140 if (use_file_for_err) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5141 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5142 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
|
5143 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5144 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
|
5145 if (fd_err[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5146 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5147 EMSG2(_(e_notopen), fname); |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5148 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5149 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5150 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5151 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
|
5152 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5153 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5154 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
|
5155 { |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5156 if (options->jo_set & JO_CHANNEL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5157 { |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5158 channel = options->jo_channel; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5159 if (channel != NULL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5160 ++channel->ch_refcount; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5161 } |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5162 else |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5163 channel = add_channel(); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5164 if (channel == NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5165 goto failed; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5166 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5167 |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5168 BLOCK_SIGNALS(&curset); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5169 pid = fork(); /* maybe we should use vfork() */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5170 if (pid == -1) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5171 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5172 /* failed to fork */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5173 UNBLOCK_SIGNALS(&curset); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5174 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5175 } |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5176 if (pid == 0) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5177 { |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5178 int null_fd = -1; |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5179 int stderr_works = TRUE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5180 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5181 /* child */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5182 reset_signals(); /* handle signals normally */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5183 UNBLOCK_SIGNALS(&curset); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5184 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5185 # ifdef HAVE_SETSID |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5186 /* 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
|
5187 * 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
|
5188 * 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
|
5189 (void)setsid(); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5190 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5191 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5192 set_child_environment(); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5193 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5194 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
|
5195 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
|
5196 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5197 /* 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
|
5198 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
|
5199 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5200 close(0); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5201 ignored = dup(null_fd); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5202 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5203 else |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5204 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5205 if (!use_file_for_in) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5206 close(fd_in[1]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5207 close(0); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5208 ignored = dup(fd_in[0]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5209 close(fd_in[0]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5210 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5211 |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5212 /* 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
|
5213 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
|
5214 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5215 close(2); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5216 ignored = dup(null_fd); |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5217 stderr_works = FALSE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5218 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5219 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
|
5220 { |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5221 close(2); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5222 ignored = dup(fd_out[1]); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5223 } |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5224 else |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5225 { |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5226 if (!use_file_for_err) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5227 close(fd_err[0]); |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5228 close(2); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5229 ignored = dup(fd_err[1]); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5230 close(fd_err[1]); |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5231 } |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5232 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5233 /* 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
|
5234 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
|
5235 { |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
5236 close(1); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5237 ignored = dup(null_fd); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5238 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5239 else |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5240 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5241 if (!use_file_for_out) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5242 close(fd_out[0]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5243 close(1); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5244 ignored = dup(fd_out[1]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5245 close(fd_out[1]); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5246 } |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
5247 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5248 if (null_fd >= 0) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5249 close(null_fd); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5250 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5251 /* See above for type of argv. */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5252 execvp(argv[0], argv); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5253 |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5254 if (stderr_works) |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5255 perror("executing job failed"); |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5256 #ifdef EXITFREE |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5257 /* 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
|
5258 * reporting possibly leaked memory. */ |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5259 #endif |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5260 _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
|
5261 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5262 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5263 /* parent */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5264 UNBLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5265 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5266 job->jv_pid = pid; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5267 job->jv_status = JOB_STARTED; |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5268 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
|
5269 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5270 /* child stdin, stdout and stderr */ |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
5271 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
|
5272 close(fd_in[0]); |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
5273 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
|
5274 close(fd_out[1]); |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
5275 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
|
5276 close(fd_err[1]); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5277 if (channel != NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5278 { |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5279 channel_set_pipes(channel, |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5280 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
|
5281 ? INVALID_FD : fd_in[1], |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5282 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
|
5283 ? INVALID_FD : fd_out[0], |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5284 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
|
5285 ? INVALID_FD : fd_err[0]); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5286 channel_set_job(channel, job, options); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5287 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5288 |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5289 /* success! */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5290 return; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5291 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5292 failed: |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5293 channel_unref(channel); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5294 if (fd_in[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5295 close(fd_in[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5296 if (fd_in[1] >= 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5297 close(fd_in[1]); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5298 if (fd_out[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5299 close(fd_out[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5300 if (fd_out[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5301 close(fd_out[1]); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5302 if (fd_err[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5303 close(fd_err[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5304 if (fd_err[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5305 close(fd_err[1]); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5306 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5307 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5308 char * |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5309 mch_job_status(job_T *job) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5310 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5311 # ifdef HAVE_UNION_WAIT |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5312 union wait status; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5313 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5314 int status = -1; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5315 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5316 pid_t wait_pid = 0; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5317 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5318 # ifdef __NeXT__ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5319 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
|
5320 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5321 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
|
5322 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5323 if (wait_pid == -1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5324 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5325 /* process must have exited */ |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5326 goto return_dead; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5327 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5328 if (wait_pid == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5329 return "run"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5330 if (WIFEXITED(status)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5331 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5332 /* 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
|
5333 job->jv_exitval = WEXITSTATUS(status); |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5334 goto return_dead; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5335 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5336 if (WIFSIGNALED(status)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5337 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5338 job->jv_exitval = -1; |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5339 goto return_dead; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5340 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5341 return "run"; |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5342 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5343 return_dead: |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10375
diff
changeset
|
5344 if (job->jv_status < JOB_ENDED) |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5345 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5346 ch_log(job->jv_channel, "Job ended"); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5347 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5348 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5349 return "dead"; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5350 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5351 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5352 job_T * |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5353 mch_detect_ended_job(job_T *job_list) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5354 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5355 # ifdef HAVE_UNION_WAIT |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5356 union wait status; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5357 # else |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5358 int status = -1; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5359 # endif |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5360 pid_t wait_pid = 0; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5361 job_T *job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5362 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5363 # ifndef USE_SYSTEM |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5364 /* Do not do this when waiting for a shell command to finish, we would get |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5365 * the exit value here (and discard it), the exit value obtained there |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5366 * would then be wrong. */ |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5367 if (dont_check_job_ended > 0) |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5368 return NULL; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5369 # endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5370 |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5371 # ifdef __NeXT__ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5372 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5373 # else |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5374 wait_pid = waitpid(-1, &status, WNOHANG); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5375 # endif |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5376 if (wait_pid <= 0) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5377 /* no process ended */ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5378 return NULL; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5379 for (job = job_list; job != NULL; job = job->jv_next) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5380 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5381 if (job->jv_pid == wait_pid) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5382 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5383 if (WIFEXITED(status)) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5384 /* LINTED avoid "bitwise operation on signed value" */ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5385 job->jv_exitval = WEXITSTATUS(status); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5386 else if (WIFSIGNALED(status)) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5387 job->jv_exitval = -1; |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10375
diff
changeset
|
5388 if (job->jv_status < JOB_ENDED) |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5389 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5390 ch_log(job->jv_channel, "Job ended"); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5391 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5392 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5393 return job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5394 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5395 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5396 return NULL; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5397 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5398 |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5399 /* |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5400 * Send a (deadly) signal to "job". |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5401 * Return FAIL if "how" is not a valid name. |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5402 */ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5403 int |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5404 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
|
5405 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5406 int sig = -1; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5407 pid_t job_pid; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5408 |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5409 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
|
5410 sig = SIGTERM; |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5411 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
|
5412 sig = SIGHUP; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5413 else if (STRCMP(how, "quit") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5414 sig = SIGQUIT; |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5415 else if (STRCMP(how, "int") == 0) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5416 sig = SIGINT; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5417 else if (STRCMP(how, "kill") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5418 sig = SIGKILL; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5419 else if (isdigit(*how)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5420 sig = atoi((char *)how); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5421 else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5422 return FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5423 |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
5424 /* 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
|
5425 job_pid = job->jv_pid; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5426 if (job_pid == getpgid(job_pid)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5427 job_pid = -job_pid; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5428 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5429 kill(job_pid, sig); |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5430 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5431 return OK; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5432 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5433 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5434 /* |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5435 * Clear the data related to "job". |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5436 */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5437 void |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5438 mch_clear_job(job_T *job) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5439 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5440 /* 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
|
5441 # ifdef __NeXT__ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5442 (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
|
5443 # else |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5444 (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
|
5445 # endif |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5446 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5447 #endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5448 |
7 | 5449 /* |
5450 * Check for CTRL-C typed by reading all available characters. | |
5451 * In cooked mode we should get SIGINT, no need to check. | |
5452 */ | |
5453 void | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5454 mch_breakcheck(int force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5455 { |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5456 if ((curr_tmode == TMODE_RAW || force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5457 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL)) |
7 | 5458 fill_input_buf(FALSE); |
5459 } | |
5460 | |
5461 /* | |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5462 * 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
|
5463 * from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5464 * "msec" == -1 will block forever. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5465 * Invokes timer callbacks when needed. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5466 * "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
|
5467 * 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
|
5468 * Returns TRUE when a character is available. |
7 | 5469 * When a GUI is being used, this will never get called -- webb |
5470 */ | |
5471 static int | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5472 WaitForChar(long msec, int *interrupted) |
7 | 5473 { |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5474 #ifdef FEAT_TIMERS |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5475 long due_time; |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5476 long remaining = msec; |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5477 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
|
5478 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5479 /* 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
|
5480 if (msec >= 0 && msec < 10L) |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5481 return WaitForCharOrMouse(msec, NULL); |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5482 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5483 while (msec < 0 || remaining > 0) |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5484 { |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5485 /* 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
|
5486 * due. Wait up to that time. */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5487 due_time = check_due_timer(); |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5488 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
|
5489 { |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5490 /* timer may have used feedkeys() */ |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5491 return FALSE; |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
5492 } |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5493 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
|
5494 due_time = remaining; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5495 if (WaitForCharOrMouse(due_time, interrupted)) |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5496 return TRUE; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5497 if (interrupted != NULL && *interrupted) |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5498 /* 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
|
5499 * 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
|
5500 return FALSE; |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5501 if (msec > 0) |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5502 remaining -= due_time; |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5503 } |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5504 return FALSE; |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5505 #else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5506 return WaitForCharOrMouse(msec, interrupted); |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5507 #endif |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5508 } |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5509 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5510 /* |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5511 * 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
|
5512 * or from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5513 * "msec" == -1 will block forever. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5514 * "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
|
5515 * 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
|
5516 * 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
|
5517 */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5518 static int |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5519 WaitForCharOrMouse(long msec, int *interrupted) |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5520 { |
7 | 5521 #ifdef FEAT_MOUSE_GPM |
5522 int gpm_process_wanted; | |
5523 #endif | |
5524 #ifdef FEAT_XCLIPBOARD | |
5525 int rest; | |
5526 #endif | |
5527 int avail; | |
5528 | |
5529 if (input_available()) /* something in inbuf[] */ | |
5530 return 1; | |
5531 | |
5532 #if defined(FEAT_MOUSE_DEC) | |
5533 /* May need to query the mouse position. */ | |
5534 if (WantQueryMouse) | |
5535 { | |
227 | 5536 WantQueryMouse = FALSE; |
7 | 5537 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5); |
5538 } | |
5539 #endif | |
5540 | |
5541 /* | |
5542 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse | |
5543 * events. This is a bit complicated, because they might both be defined. | |
5544 */ | |
5545 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD) | |
5546 # ifdef FEAT_XCLIPBOARD | |
5547 rest = 0; | |
5548 if (do_xterm_trace()) | |
5549 rest = msec; | |
5550 # endif | |
5551 do | |
5552 { | |
5553 # ifdef FEAT_XCLIPBOARD | |
5554 if (rest != 0) | |
5555 { | |
5556 msec = XT_TRACE_DELAY; | |
5557 if (rest >= 0 && rest < XT_TRACE_DELAY) | |
5558 msec = rest; | |
5559 if (rest >= 0) | |
5560 rest -= msec; | |
5561 } | |
5562 # endif | |
5563 # ifdef FEAT_MOUSE_GPM | |
5564 gpm_process_wanted = 0; | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5565 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
|
5566 &gpm_process_wanted, interrupted); |
7 | 5567 # else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5568 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 5569 # endif |
5570 if (!avail) | |
5571 { | |
5572 if (input_available()) | |
5573 return 1; | |
5574 # ifdef FEAT_XCLIPBOARD | |
5575 if (rest == 0 || !do_xterm_trace()) | |
5576 # endif | |
5577 break; | |
5578 } | |
5579 } | |
5580 while (FALSE | |
5581 # ifdef FEAT_MOUSE_GPM | |
5582 || (gpm_process_wanted && mch_gpm_process() == 0) | |
5583 # endif | |
5584 # ifdef FEAT_XCLIPBOARD | |
5585 || (!avail && rest != 0) | |
5586 # endif | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5587 ) |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5588 ; |
7 | 5589 |
5590 #else | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5591 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 5592 #endif |
5593 return avail; | |
5594 } | |
5595 | |
5541 | 5596 #ifndef VMS |
7 | 5597 /* |
5598 * Wait "msec" msec until a character is available from file descriptor "fd". | |
3046 | 5599 * "msec" == 0 will check for characters once. |
5600 * "msec" == -1 will block until a character is available. | |
7 | 5601 * When a GUI is being used, this will not be used for input -- webb |
5602 * 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
|
5603 * 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
|
5604 * "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
|
5605 * but something else needs to be done. |
7 | 5606 */ |
5607 #if defined(__BEOS__) | |
5608 int | |
5609 #else | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5610 static int |
7 | 5611 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5612 RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) |
7 | 5613 { |
5614 int ret; | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5615 int result; |
14 | 5616 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) |
7 | 5617 static int busy = FALSE; |
5618 | |
5619 /* May retry getting characters after an event was handled. */ | |
5620 # define MAY_LOOP | |
5621 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5622 # ifdef ELAPSED_FUNC |
7 | 5623 /* Remember at what time we started, so that we know how much longer we |
5624 * should wait after being interrupted. */ | |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
5625 long start_msec = msec; |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5626 ELAPSED_TYPE start_tv; |
7 | 5627 |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
5628 if (msec > 0) |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5629 ELAPSED_INIT(start_tv); |
7 | 5630 # endif |
5631 | |
5632 /* Handle being called recursively. This may happen for the session | |
5633 * manager stuff, it may save the file, which does a breakcheck. */ | |
5634 if (busy) | |
5635 return 0; | |
5636 #endif | |
5637 | |
5638 #ifdef MAY_LOOP | |
407 | 5639 for (;;) |
7 | 5640 #endif |
5641 { | |
5642 #ifdef MAY_LOOP | |
5643 int finished = TRUE; /* default is to 'loop' just once */ | |
14 | 5644 # ifdef FEAT_MZSCHEME |
5645 int mzquantum_used = FALSE; | |
5646 # endif | |
7 | 5647 #endif |
5648 #ifndef HAVE_SELECT | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5649 /* 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
|
5650 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS]; |
7 | 5651 int nfd; |
5652 # ifdef FEAT_XCLIPBOARD | |
5653 int xterm_idx = -1; | |
5654 # endif | |
5655 # ifdef FEAT_MOUSE_GPM | |
5656 int gpm_idx = -1; | |
5657 # endif | |
5658 # ifdef USE_XSMP | |
5659 int xsmp_idx = -1; | |
5660 # endif | |
14 | 5661 int towait = (int)msec; |
5662 | |
5663 # ifdef FEAT_MZSCHEME | |
5664 mzvim_check_threads(); | |
5665 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
5666 { | |
5667 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */ | |
5668 mzquantum_used = TRUE; | |
5669 } | |
5670 # endif | |
7 | 5671 fds[0].fd = fd; |
5672 fds[0].events = POLLIN; | |
5673 nfd = 1; | |
5674 | |
5675 # ifdef FEAT_XCLIPBOARD | |
6383 | 5676 may_restore_clipboard(); |
7 | 5677 if (xterm_Shell != (Widget)0) |
5678 { | |
5679 xterm_idx = nfd; | |
5680 fds[nfd].fd = ConnectionNumber(xterm_dpy); | |
5681 fds[nfd].events = POLLIN; | |
5682 nfd++; | |
5683 } | |
5684 # endif | |
5685 # ifdef FEAT_MOUSE_GPM | |
5686 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
5687 { | |
5688 gpm_idx = nfd; | |
5689 fds[nfd].fd = gpm_fd; | |
5690 fds[nfd].events = POLLIN; | |
5691 nfd++; | |
5692 } | |
5693 # endif | |
5694 # ifdef USE_XSMP | |
5695 if (xsmp_icefd != -1) | |
5696 { | |
5697 xsmp_idx = nfd; | |
5698 fds[nfd].fd = xsmp_icefd; | |
5699 fds[nfd].events = POLLIN; | |
5700 nfd++; | |
5701 } | |
5702 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5703 #ifdef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5704 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
|
5705 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5706 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5707 *interrupted = FALSE; |
7 | 5708 |
14 | 5709 ret = poll(fds, nfd, towait); |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5710 |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5711 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
|
5712 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
|
5713 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5714 |
14 | 5715 # ifdef FEAT_MZSCHEME |
5716 if (ret == 0 && mzquantum_used) | |
1450 | 5717 /* MzThreads scheduling is required and timeout occurred */ |
14 | 5718 finished = FALSE; |
5719 # endif | |
7 | 5720 |
5721 # ifdef FEAT_XCLIPBOARD | |
5722 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN)) | |
5723 { | |
5724 xterm_update(); /* Maybe we should hand out clipboard */ | |
5725 if (--ret == 0 && !input_available()) | |
5726 /* Try again */ | |
5727 finished = FALSE; | |
5728 } | |
5729 # endif | |
5730 # ifdef FEAT_MOUSE_GPM | |
5731 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN)) | |
5732 { | |
5733 *check_for_gpm = 1; | |
5734 } | |
5735 # endif | |
5736 # ifdef USE_XSMP | |
5737 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP))) | |
5738 { | |
5739 if (fds[xsmp_idx].revents & POLLIN) | |
5740 { | |
5741 busy = TRUE; | |
5742 xsmp_handle_requests(); | |
5743 busy = FALSE; | |
5744 } | |
5745 else if (fds[xsmp_idx].revents & POLLHUP) | |
5746 { | |
5747 if (p_verbose > 0) | |
292 | 5748 verb_msg((char_u *)_("XSMP lost ICE connection")); |
7 | 5749 xsmp_close(); |
5750 } | |
5751 if (--ret == 0) | |
14 | 5752 finished = FALSE; /* Try again */ |
7 | 5753 } |
5754 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5755 #ifdef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5756 if (ret > 0) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5757 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
|
5758 #endif |
7 | 5759 |
5760 #else /* HAVE_SELECT */ | |
5761 | |
5762 struct timeval tv; | |
14 | 5763 struct timeval *tvp; |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5764 fd_set rfds, wfds, efds; |
7 | 5765 int maxfd; |
14 | 5766 long towait = msec; |
5767 | |
5768 # ifdef FEAT_MZSCHEME | |
5769 mzvim_check_threads(); | |
5770 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
5771 { | |
5772 towait = p_mzq; /* don't wait longer than 'mzquantum' */ | |
5773 mzquantum_used = TRUE; | |
5774 } | |
5775 # endif | |
7 | 5776 |
14 | 5777 if (towait >= 0) |
7 | 5778 { |
14 | 5779 tv.tv_sec = towait / 1000; |
5780 tv.tv_usec = (towait % 1000) * (1000000/1000); | |
5781 tvp = &tv; | |
7 | 5782 } |
14 | 5783 else |
5784 tvp = NULL; | |
7 | 5785 |
5786 /* | |
5787 * Select on ready for reading and exceptional condition (end of file). | |
5788 */ | |
3046 | 5789 select_eintr: |
5790 FD_ZERO(&rfds); | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5791 FD_ZERO(&wfds); |
7 | 5792 FD_ZERO(&efds); |
5793 FD_SET(fd, &rfds); | |
5794 # if !defined(__QNX__) && !defined(__CYGWIN32__) | |
5795 /* For QNX select() always returns 1 if this is set. Why? */ | |
5796 FD_SET(fd, &efds); | |
5797 # endif | |
5798 maxfd = fd; | |
5799 | |
5800 # ifdef FEAT_XCLIPBOARD | |
6383 | 5801 may_restore_clipboard(); |
7 | 5802 if (xterm_Shell != (Widget)0) |
5803 { | |
5804 FD_SET(ConnectionNumber(xterm_dpy), &rfds); | |
5805 if (maxfd < ConnectionNumber(xterm_dpy)) | |
5806 maxfd = ConnectionNumber(xterm_dpy); | |
3748 | 5807 |
5808 /* An event may have already been read but not handled. In | |
5809 * particulary, XFlush may cause this. */ | |
5810 xterm_update(); | |
7 | 5811 } |
5812 # endif | |
5813 # ifdef FEAT_MOUSE_GPM | |
5814 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
5815 { | |
5816 FD_SET(gpm_fd, &rfds); | |
5817 FD_SET(gpm_fd, &efds); | |
5818 if (maxfd < gpm_fd) | |
5819 maxfd = gpm_fd; | |
5820 } | |
5821 # endif | |
5822 # ifdef USE_XSMP | |
5823 if (xsmp_icefd != -1) | |
5824 { | |
5825 FD_SET(xsmp_icefd, &rfds); | |
5826 FD_SET(xsmp_icefd, &efds); | |
5827 if (maxfd < xsmp_icefd) | |
5828 maxfd = xsmp_icefd; | |
5829 } | |
5830 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5831 # ifdef FEAT_JOB_CHANNEL |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5832 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
|
5833 # endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5834 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5835 *interrupted = FALSE; |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5836 |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5837 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
|
5838 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
|
5839 if (result) |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5840 --ret; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5841 else if (interrupted != NULL && ret > 0) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5842 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5843 |
3046 | 5844 # ifdef EINTR |
5845 if (ret == -1 && errno == EINTR) | |
3133 | 5846 { |
5847 /* Check whether window has been resized, EINTR may be caused by | |
5848 * SIGWINCH. */ | |
5849 if (do_resize) | |
5850 handle_resize(); | |
5851 | |
3046 | 5852 /* Interrupted by a signal, need to try again. We ignore msec |
5853 * here, because we do want to check even after a timeout if | |
5854 * characters are available. Needed for reading output of an | |
5855 * external command after the process has finished. */ | |
5856 goto select_eintr; | |
3133 | 5857 } |
3046 | 5858 # endif |
1076 | 5859 # ifdef __TANDEM |
5860 if (ret == -1 && errno == ENOTSUP) | |
5861 { | |
5862 FD_ZERO(&rfds); | |
5863 FD_ZERO(&efds); | |
5864 ret = 0; | |
5865 } | |
3046 | 5866 # endif |
14 | 5867 # ifdef FEAT_MZSCHEME |
5868 if (ret == 0 && mzquantum_used) | |
1450 | 5869 /* loop if MzThreads must be scheduled and timeout occurred */ |
14 | 5870 finished = FALSE; |
7 | 5871 # endif |
5872 | |
5873 # ifdef FEAT_XCLIPBOARD | |
5874 if (ret > 0 && xterm_Shell != (Widget)0 | |
5875 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds)) | |
5876 { | |
5877 xterm_update(); /* Maybe we should hand out clipboard */ | |
5878 /* continue looping when we only got the X event and the input | |
5879 * buffer is empty */ | |
5880 if (--ret == 0 && !input_available()) | |
5881 { | |
5882 /* Try again */ | |
5883 finished = FALSE; | |
5884 } | |
5885 } | |
5886 # endif | |
5887 # ifdef FEAT_MOUSE_GPM | |
5888 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0) | |
5889 { | |
5890 if (FD_ISSET(gpm_fd, &efds)) | |
5891 gpm_close(); | |
5892 else if (FD_ISSET(gpm_fd, &rfds)) | |
5893 *check_for_gpm = 1; | |
5894 } | |
5895 # endif | |
5896 # ifdef USE_XSMP | |
5897 if (ret > 0 && xsmp_icefd != -1) | |
5898 { | |
5899 if (FD_ISSET(xsmp_icefd, &efds)) | |
5900 { | |
5901 if (p_verbose > 0) | |
292 | 5902 verb_msg((char_u *)_("XSMP lost ICE connection")); |
7 | 5903 xsmp_close(); |
5904 if (--ret == 0) | |
5905 finished = FALSE; /* keep going if event was only one */ | |
5906 } | |
5907 else if (FD_ISSET(xsmp_icefd, &rfds)) | |
5908 { | |
5909 busy = TRUE; | |
5910 xsmp_handle_requests(); | |
5911 busy = FALSE; | |
5912 if (--ret == 0) | |
5913 finished = FALSE; /* keep going if event was only one */ | |
5914 } | |
5915 } | |
5916 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5917 #ifdef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
5918 if (ret > 0) |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
5919 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
|
5920 #endif |
7 | 5921 |
5922 #endif /* HAVE_SELECT */ | |
5923 | |
5924 #ifdef MAY_LOOP | |
5925 if (finished || msec == 0) | |
5926 break; | |
5927 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5928 # ifdef FEAT_CLIENTSERVER |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5929 if (server_waiting()) |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5930 break; |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5931 # endif |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
5932 |
7 | 5933 /* We're going to loop around again, find out for how long */ |
5934 if (msec > 0) | |
5935 { | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5936 # ifdef ELAPSED_FUNC |
7 | 5937 /* Compute remaining wait time. */ |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5938 msec = start_msec - ELAPSED_FUNC(start_tv); |
7 | 5939 # else |
5940 /* Guess we got interrupted halfway. */ | |
5941 msec = msec / 2; | |
5942 # endif | |
5943 if (msec <= 0) | |
5944 break; /* waited long enough */ | |
5945 } | |
5946 #endif | |
5947 } | |
5948 | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
5949 return result; |
7 | 5950 } |
5951 | |
5952 #ifndef NO_EXPANDPATH | |
5953 /* | |
444 | 5954 * Expand a path into all matching files and/or directories. Handles "*", |
5955 * "?", "[a-z]", "**", etc. | |
5956 * "path" has backslashes before chars that are not to be expanded. | |
5957 * Returns the number of matches found. | |
7 | 5958 */ |
5959 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5960 mch_expandpath( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5961 garray_T *gap, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5962 char_u *path, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5963 int flags) /* EW_* flags */ |
7 | 5964 { |
444 | 5965 return unix_expandpath(gap, path, 0, flags, FALSE); |
7 | 5966 } |
5967 #endif | |
5968 | |
5969 /* | |
5970 * mch_expand_wildcards() - this code does wild-card pattern matching using | |
5971 * the shell | |
5972 * | |
5973 * return OK for success, FAIL for error (you may lose some memory) and put | |
5974 * an error message in *file. | |
5975 * | |
5976 * num_pat is number of input patterns | |
5977 * pat is array of pointers to input patterns | |
5978 * num_file is pointer to number of matched file names | |
5979 * file is pointer to array of pointers to matched file names | |
5980 */ | |
5981 | |
5982 #ifndef SEEK_SET | |
5983 # define SEEK_SET 0 | |
5984 #endif | |
5985 #ifndef SEEK_END | |
5986 # define SEEK_END 2 | |
5987 #endif | |
5988 | |
822 | 5989 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|" |
628 | 5990 |
7 | 5991 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5992 mch_expand_wildcards( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5993 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5994 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5995 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5996 char_u ***file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5997 int flags) /* EW_* flags */ |
7 | 5998 { |
5999 int i; | |
6000 size_t len; | |
6001 char_u *p; | |
6002 int dir; | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
6003 |
1508 | 6004 /* |
6005 * This is the non-OS/2 implementation (really Unix). | |
6006 */ | |
7 | 6007 int j; |
6008 char_u *tempname; | |
6009 char_u *command; | |
6010 FILE *fd; | |
6011 char_u *buffer; | |
1508 | 6012 #define STYLE_ECHO 0 /* use "echo", the default */ |
6013 #define STYLE_GLOB 1 /* use "glob", for csh */ | |
6014 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */ | |
6015 #define STYLE_PRINT 3 /* use "print -N", for zsh */ | |
6016 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern | |
6017 * directly */ | |
7 | 6018 int shell_style = STYLE_ECHO; |
6019 int check_spaces; | |
6020 static int did_find_nul = FALSE; | |
6021 int ampersent = FALSE; | |
1508 | 6022 /* vimglob() function to define for Posix shell */ |
1620 | 6023 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >"; |
7 | 6024 |
6025 *num_file = 0; /* default: no files found */ | |
6026 *file = NULL; | |
6027 | |
6028 /* | |
6029 * If there are no wildcards, just copy the names to allocated memory. | |
6030 * Saves a lot of time, because we don't have to start a new shell. | |
6031 */ | |
6032 if (!have_wildcard(num_pat, pat)) | |
6033 return save_patterns(num_pat, pat, num_file, file); | |
6034 | |
428 | 6035 # ifdef HAVE_SANDBOX |
6036 /* Don't allow any shell command in the sandbox. */ | |
6037 if (sandbox != 0 && check_secure()) | |
6038 return FAIL; | |
6039 # endif | |
6040 | |
7 | 6041 /* |
6042 * Don't allow the use of backticks in secure and restricted mode. | |
6043 */ | |
428 | 6044 if (secure || restricted) |
7 | 6045 for (i = 0; i < num_pat; ++i) |
6046 if (vim_strchr(pat[i], '`') != NULL | |
6047 && (check_restricted() || check_secure())) | |
6048 return FAIL; | |
6049 | |
6050 /* | |
6051 * get a name for the temp file | |
6052 */ | |
6721 | 6053 if ((tempname = vim_tempname('o', FALSE)) == NULL) |
7 | 6054 { |
6055 EMSG(_(e_notmp)); | |
6056 return FAIL; | |
6057 } | |
6058 | |
6059 /* | |
6060 * Let the shell expand the patterns and write the result into the temp | |
1508 | 6061 * file. |
6062 * STYLE_BT: NL separated | |
6063 * If expanding `cmd` execute it directly. | |
6064 * STYLE_GLOB: NUL separated | |
6065 * If we use *csh, "glob" will work better than "echo". | |
6066 * STYLE_PRINT: NL or NUL separated | |
6067 * If we use *zsh, "print -N" will work better than "glob". | |
6068 * STYLE_VIMGLOB: NL separated | |
6069 * If we use *sh*, we define "vimglob()". | |
6070 * STYLE_ECHO: space separated. | |
6071 * A shell we don't know, stay safe and use "echo". | |
7 | 6072 */ |
6073 if (num_pat == 1 && *pat[0] == '`' | |
6074 && (len = STRLEN(pat[0])) > 2 | |
6075 && *(pat[0] + len - 1) == '`') | |
6076 shell_style = STYLE_BT; | |
6077 else if ((len = STRLEN(p_sh)) >= 3) | |
6078 { | |
6079 if (STRCMP(p_sh + len - 3, "csh") == 0) | |
6080 shell_style = STYLE_GLOB; | |
6081 else if (STRCMP(p_sh + len - 3, "zsh") == 0) | |
6082 shell_style = STYLE_PRINT; | |
6083 } | |
1508 | 6084 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh), |
6085 "sh") != NULL) | |
6086 shell_style = STYLE_VIMGLOB; | |
6087 | |
6088 /* Compute the length of the command. We need 2 extra bytes: for the | |
6089 * optional '&' and for the NUL. | |
6090 * Worst case: "unset nonomatch; print -N >" plus two is 29 */ | |
7 | 6091 len = STRLEN(tempname) + 29; |
1508 | 6092 if (shell_style == STYLE_VIMGLOB) |
6093 len += STRLEN(sh_vimglob_func); | |
6094 | |
147 | 6095 for (i = 0; i < num_pat; ++i) |
6096 { | |
6097 /* Count the length of the patterns in the same way as they are put in | |
6098 * "command" below. */ | |
6099 #ifdef USE_SYSTEM | |
7 | 6100 len += STRLEN(pat[i]) + 3; /* add space and two quotes */ |
147 | 6101 #else |
6102 ++len; /* add space */ | |
628 | 6103 for (j = 0; pat[i][j] != NUL; ++j) |
6104 { | |
6105 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
6106 ++len; /* may add a backslash */ | |
6107 ++len; | |
6108 } | |
147 | 6109 #endif |
6110 } | |
7 | 6111 command = alloc(len); |
6112 if (command == NULL) | |
6113 { | |
6114 /* out of memory */ | |
6115 vim_free(tempname); | |
6116 return FAIL; | |
6117 } | |
6118 | |
6119 /* | |
6120 * Build the shell command: | |
6121 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell | |
6122 * recognizes this). | |
6123 * - Add the shell command to print the expanded names. | |
6124 * - Add the temp file name. | |
6125 * - Add the file name patterns. | |
6126 */ | |
6127 if (shell_style == STYLE_BT) | |
6128 { | |
628 | 6129 /* change `command; command& ` to (command; command ) */ |
6130 STRCPY(command, "("); | |
6131 STRCAT(command, pat[0] + 1); /* exclude first backtick */ | |
7 | 6132 p = command + STRLEN(command) - 1; |
628 | 6133 *p-- = ')'; /* remove last backtick */ |
7 | 6134 while (p > command && vim_iswhite(*p)) |
6135 --p; | |
6136 if (*p == '&') /* remove trailing '&' */ | |
6137 { | |
6138 ampersent = TRUE; | |
6139 *p = ' '; | |
6140 } | |
6141 STRCAT(command, ">"); | |
6142 } | |
6143 else | |
6144 { | |
6145 if (flags & EW_NOTFOUND) | |
6146 STRCPY(command, "set nonomatch; "); | |
6147 else | |
6148 STRCPY(command, "unset nonomatch; "); | |
6149 if (shell_style == STYLE_GLOB) | |
6150 STRCAT(command, "glob >"); | |
6151 else if (shell_style == STYLE_PRINT) | |
6152 STRCAT(command, "print -N >"); | |
1508 | 6153 else if (shell_style == STYLE_VIMGLOB) |
6154 STRCAT(command, sh_vimglob_func); | |
7 | 6155 else |
6156 STRCAT(command, "echo >"); | |
6157 } | |
1508 | 6158 |
7 | 6159 STRCAT(command, tempname); |
1508 | 6160 |
7 | 6161 if (shell_style != STYLE_BT) |
6162 for (i = 0; i < num_pat; ++i) | |
6163 { | |
6164 /* When using system() always add extra quotes, because the shell | |
628 | 6165 * is started twice. Otherwise put a backslash before special |
1450 | 6166 * characters, except inside ``. */ |
7 | 6167 #ifdef USE_SYSTEM |
6168 STRCAT(command, " \""); | |
6169 STRCAT(command, pat[i]); | |
6170 STRCAT(command, "\""); | |
6171 #else | |
233 | 6172 int intick = FALSE; |
6173 | |
7 | 6174 p = command + STRLEN(command); |
6175 *p++ = ' '; | |
628 | 6176 for (j = 0; pat[i][j] != NUL; ++j) |
233 | 6177 { |
6178 if (pat[i][j] == '`') | |
6179 intick = !intick; | |
628 | 6180 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL) |
6181 { | |
644 | 6182 /* Remove a backslash, take char literally. But keep |
652 | 6183 * backslash inside backticks, before a special character |
6184 * and before a backtick. */ | |
644 | 6185 if (intick |
652 | 6186 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL |
6187 || pat[i][j + 1] == '`') | |
644 | 6188 *p++ = '\\'; |
648 | 6189 ++j; |
628 | 6190 } |
6174 | 6191 else if (!intick |
6192 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$') | |
6193 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
628 | 6194 /* Put a backslash before a special character, but not |
6174 | 6195 * when inside ``. And not for $var when EW_KEEPDOLLAR is |
6196 * set. */ | |
628 | 6197 *p++ = '\\'; |
648 | 6198 |
6199 /* Copy one character. */ | |
6200 *p++ = pat[i][j]; | |
233 | 6201 } |
7 | 6202 *p = NUL; |
6203 #endif | |
6204 } | |
6205 if (flags & EW_SILENT) | |
6206 show_shell_mess = FALSE; | |
6207 if (ampersent) | |
1508 | 6208 STRCAT(command, "&"); /* put the '&' after the redirection */ |
7 | 6209 |
6210 /* | |
6211 * Using zsh -G: If a pattern has no matches, it is just deleted from | |
6212 * the argument list, otherwise zsh gives an error message and doesn't | |
6213 * expand any other pattern. | |
6214 */ | |
6215 if (shell_style == STYLE_PRINT) | |
6216 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */ | |
6217 | |
6218 /* | |
6219 * If we use -f then shell variables set in .cshrc won't get expanded. | |
6220 * vi can do it, so we will too, but it is only necessary if there is a "$" | |
6221 * in one of the patterns, otherwise we can still use the fast option. | |
6222 */ | |
6223 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat)) | |
6224 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */ | |
6225 | |
6226 /* | |
6227 * execute the shell command | |
6228 */ | |
6229 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT); | |
6230 | |
6231 /* When running in the background, give it some time to create the temp | |
6232 * file, but don't wait for it to finish. */ | |
6233 if (ampersent) | |
6234 mch_delay(10L, TRUE); | |
6235 | |
6236 extra_shell_arg = NULL; /* cleanup */ | |
6237 show_shell_mess = TRUE; | |
6238 vim_free(command); | |
6239 | |
1508 | 6240 if (i != 0) /* mch_call_shell() failed */ |
7 | 6241 { |
6242 mch_remove(tempname); | |
6243 vim_free(tempname); | |
6244 /* | |
6245 * With interactive completion, the error message is not printed. | |
6246 * However with USE_SYSTEM, I don't know how to turn off error messages | |
6247 * from the shell, so screen may still get messed up -- webb. | |
6248 */ | |
6249 #ifndef USE_SYSTEM | |
6250 if (!(flags & EW_SILENT)) | |
6251 #endif | |
6252 { | |
6253 redraw_later_clear(); /* probably messed up screen */ | |
6254 msg_putchar('\n'); /* clear bottom line quickly */ | |
6255 cmdline_row = Rows - 1; /* continue on last line */ | |
6256 #ifdef USE_SYSTEM | |
6257 if (!(flags & EW_SILENT)) | |
6258 #endif | |
6259 { | |
6260 MSG(_(e_wildexpand)); | |
6261 msg_start(); /* don't overwrite this message */ | |
6262 } | |
6263 } | |
6264 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when | |
6265 * EW_NOTFOUND is given */ | |
6266 if (shell_style == STYLE_BT) | |
6267 return FAIL; | |
6268 goto notfound; | |
6269 } | |
6270 | |
6271 /* | |
6272 * read the names from the file into memory | |
6273 */ | |
6274 fd = fopen((char *)tempname, READBIN); | |
6275 if (fd == NULL) | |
6276 { | |
6277 /* Something went wrong, perhaps a file name with a special char. */ | |
6278 if (!(flags & EW_SILENT)) | |
6279 { | |
6280 MSG(_(e_wildexpand)); | |
6281 msg_start(); /* don't overwrite this message */ | |
6282 } | |
6283 vim_free(tempname); | |
6284 goto notfound; | |
6285 } | |
6286 fseek(fd, 0L, SEEK_END); | |
6287 len = ftell(fd); /* get size of temp file */ | |
6288 fseek(fd, 0L, SEEK_SET); | |
6289 buffer = alloc(len + 1); | |
6290 if (buffer == NULL) | |
6291 { | |
6292 /* out of memory */ | |
6293 mch_remove(tempname); | |
6294 vim_free(tempname); | |
6295 fclose(fd); | |
6296 return FAIL; | |
6297 } | |
6298 i = fread((char *)buffer, 1, len, fd); | |
6299 fclose(fd); | |
6300 mch_remove(tempname); | |
1877 | 6301 if (i != (int)len) |
7 | 6302 { |
6303 /* unexpected read error */ | |
6304 EMSG2(_(e_notread), tempname); | |
6305 vim_free(tempname); | |
6306 vim_free(buffer); | |
6307 return FAIL; | |
6308 } | |
6309 vim_free(tempname); | |
6310 | |
1508 | 6311 # if defined(__CYGWIN__) || defined(__CYGWIN32__) |
7 | 6312 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */ |
6313 p = buffer; | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
6314 for (i = 0; i < (int)len; ++i) |
7 | 6315 if (!(buffer[i] == CAR && buffer[i + 1] == NL)) |
6316 *p++ = buffer[i]; | |
6317 len = p - buffer; | |
6318 # endif | |
6319 | |
6320 | |
6321 /* file names are separated with Space */ | |
6322 if (shell_style == STYLE_ECHO) | |
6323 { | |
6324 buffer[len] = '\n'; /* make sure the buffer ends in NL */ | |
6325 p = buffer; | |
6326 for (i = 0; *p != '\n'; ++i) /* count number of entries */ | |
6327 { | |
6328 while (*p != ' ' && *p != '\n') | |
6329 ++p; | |
6330 p = skipwhite(p); /* skip to next entry */ | |
6331 } | |
6332 } | |
6333 /* file names are separated with NL */ | |
1508 | 6334 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB) |
7 | 6335 { |
6336 buffer[len] = NUL; /* make sure the buffer ends in NUL */ | |
6337 p = buffer; | |
6338 for (i = 0; *p != NUL; ++i) /* count number of entries */ | |
6339 { | |
6340 while (*p != '\n' && *p != NUL) | |
6341 ++p; | |
6342 if (*p != NUL) | |
6343 ++p; | |
6344 p = skipwhite(p); /* skip leading white space */ | |
6345 } | |
6346 } | |
6347 /* file names are separated with NUL */ | |
6348 else | |
6349 { | |
6350 /* | |
6351 * Some versions of zsh use spaces instead of NULs to separate | |
6352 * results. Only do this when there is no NUL before the end of the | |
6353 * buffer, otherwise we would never be able to use file names with | |
6354 * embedded spaces when zsh does use NULs. | |
6355 * When we found a NUL once, we know zsh is OK, set did_find_nul and | |
6356 * don't check for spaces again. | |
6357 */ | |
6358 check_spaces = FALSE; | |
6359 if (shell_style == STYLE_PRINT && !did_find_nul) | |
6360 { | |
6361 /* If there is a NUL, set did_find_nul, else set check_spaces */ | |
2768 | 6362 buffer[len] = NUL; |
5533 | 6363 if (len && (int)STRLEN(buffer) < (int)len) |
7 | 6364 did_find_nul = TRUE; |
6365 else | |
6366 check_spaces = TRUE; | |
6367 } | |
6368 | |
6369 /* | |
6370 * Make sure the buffer ends with a NUL. For STYLE_PRINT there | |
6371 * already is one, for STYLE_GLOB it needs to be added. | |
6372 */ | |
6373 if (len && buffer[len - 1] == NUL) | |
6374 --len; | |
6375 else | |
6376 buffer[len] = NUL; | |
6377 i = 0; | |
6378 for (p = buffer; p < buffer + len; ++p) | |
6379 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */ | |
6380 { | |
6381 ++i; | |
6382 *p = NUL; | |
6383 } | |
6384 if (len) | |
6385 ++i; /* count last entry */ | |
6386 } | |
6387 if (i == 0) | |
6388 { | |
6389 /* | |
6390 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I". | |
6391 * /bin/sh will happily expand it to nothing rather than returning an | |
6392 * error; and hey, it's good to check anyway -- webb. | |
6393 */ | |
6394 vim_free(buffer); | |
6395 goto notfound; | |
6396 } | |
6397 *num_file = i; | |
6398 *file = (char_u **)alloc(sizeof(char_u *) * i); | |
6399 if (*file == NULL) | |
6400 { | |
6401 /* out of memory */ | |
6402 vim_free(buffer); | |
6403 return FAIL; | |
6404 } | |
6405 | |
6406 /* | |
6407 * Isolate the individual file names. | |
6408 */ | |
6409 p = buffer; | |
6410 for (i = 0; i < *num_file; ++i) | |
6411 { | |
6412 (*file)[i] = p; | |
6413 /* Space or NL separates */ | |
1508 | 6414 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT |
6415 || shell_style == STYLE_VIMGLOB) | |
7 | 6416 { |
652 | 6417 while (!(shell_style == STYLE_ECHO && *p == ' ') |
6418 && *p != '\n' && *p != NUL) | |
7 | 6419 ++p; |
6420 if (p == buffer + len) /* last entry */ | |
6421 *p = NUL; | |
6422 else | |
6423 { | |
6424 *p++ = NUL; | |
6425 p = skipwhite(p); /* skip to next entry */ | |
6426 } | |
6427 } | |
6428 else /* NUL separates */ | |
6429 { | |
6430 while (*p && p < buffer + len) /* skip entry */ | |
6431 ++p; | |
6432 ++p; /* skip NUL */ | |
6433 } | |
6434 } | |
6435 | |
6436 /* | |
6437 * Move the file names to allocated memory. | |
6438 */ | |
6439 for (j = 0, i = 0; i < *num_file; ++i) | |
6440 { | |
6441 /* Require the files to exist. Helps when using /bin/sh */ | |
6442 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0) | |
6443 continue; | |
6444 | |
6445 /* check if this entry should be included */ | |
6446 dir = (mch_isdir((*file)[i])); | |
6447 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE))) | |
6448 continue; | |
6449 | |
715 | 6450 /* Skip files that are not executable if we check for that. */ |
6695 | 6451 if (!dir && (flags & EW_EXEC) |
6452 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD))) | |
715 | 6453 continue; |
6454 | |
7 | 6455 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir)); |
6456 if (p) | |
6457 { | |
6458 STRCPY(p, (*file)[i]); | |
6459 if (dir) | |
1479 | 6460 add_pathsep(p); /* add '/' to a directory name */ |
7 | 6461 (*file)[j++] = p; |
6462 } | |
6463 } | |
6464 vim_free(buffer); | |
6465 *num_file = j; | |
6466 | |
6467 if (*num_file == 0) /* rejected all entries */ | |
6468 { | |
6469 vim_free(*file); | |
6470 *file = NULL; | |
6471 goto notfound; | |
6472 } | |
6473 | |
6474 return OK; | |
6475 | |
6476 notfound: | |
6477 if (flags & EW_NOTFOUND) | |
6478 return save_patterns(num_pat, pat, num_file, file); | |
6479 return FAIL; | |
6480 } | |
6481 | |
6482 #endif /* VMS */ | |
6483 | |
6484 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6485 save_patterns( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6486 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6487 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6488 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6489 char_u ***file) |
7 | 6490 { |
6491 int i; | |
99 | 6492 char_u *s; |
7 | 6493 |
6494 *file = (char_u **)alloc(num_pat * sizeof(char_u *)); | |
6495 if (*file == NULL) | |
6496 return FAIL; | |
6497 for (i = 0; i < num_pat; i++) | |
99 | 6498 { |
6499 s = vim_strsave(pat[i]); | |
6500 if (s != NULL) | |
6501 /* Be compatible with expand_filename(): halve the number of | |
6502 * backslashes. */ | |
6503 backslash_halve(s); | |
6504 (*file)[i] = s; | |
6505 } | |
7 | 6506 *num_file = num_pat; |
6507 return OK; | |
6508 } | |
6509 | |
6510 /* | |
6511 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can | |
6512 * expand. | |
6513 */ | |
6514 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6515 mch_has_exp_wildcard(char_u *p) |
7 | 6516 { |
39 | 6517 for ( ; *p; mb_ptr_adv(p)) |
7 | 6518 { |
6519 if (*p == '\\' && p[1] != NUL) | |
6520 ++p; | |
6521 else | |
6522 if (vim_strchr((char_u *) | |
6523 #ifdef VMS | |
6524 "*?%" | |
6525 #else | |
6526 "*?[{'" | |
6527 #endif | |
6528 , *p) != NULL) | |
6529 return TRUE; | |
6530 } | |
6531 return FALSE; | |
6532 } | |
6533 | |
6534 /* | |
6535 * Return TRUE if the string "p" contains a wildcard. | |
6536 * Don't recognize '~' at the end as a wildcard. | |
6537 */ | |
6538 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6539 mch_has_wildcard(char_u *p) |
7 | 6540 { |
39 | 6541 for ( ; *p; mb_ptr_adv(p)) |
7 | 6542 { |
6543 if (*p == '\\' && p[1] != NUL) | |
6544 ++p; | |
6545 else | |
6546 if (vim_strchr((char_u *) | |
6547 #ifdef VMS | |
6548 "*?%$" | |
6549 #else | |
6550 "*?[{`'$" | |
6551 #endif | |
6552 , *p) != NULL | |
6553 || (*p == '~' && p[1] != NUL)) | |
6554 return TRUE; | |
6555 } | |
6556 return FALSE; | |
6557 } | |
6558 | |
6559 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6560 have_wildcard(int num, char_u **file) |
7 | 6561 { |
6562 int i; | |
6563 | |
6564 for (i = 0; i < num; i++) | |
6565 if (mch_has_wildcard(file[i])) | |
6566 return 1; | |
6567 return 0; | |
6568 } | |
6569 | |
6570 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6571 have_dollars(int num, char_u **file) |
7 | 6572 { |
6573 int i; | |
6574 | |
6575 for (i = 0; i < num; i++) | |
6576 if (vim_strchr(file[i], '$') != NULL) | |
6577 return TRUE; | |
6578 return FALSE; | |
6579 } | |
6580 | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6581 #if !defined(HAVE_RENAME) || defined(PROTO) |
7 | 6582 /* |
6583 * Scaled-down version of rename(), which is missing in Xenix. | |
6584 * This version can only move regular files and will fail if the | |
6585 * destination exists. | |
6586 */ | |
6587 int | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6588 mch_rename(const char *src, const char *dest) |
7 | 6589 { |
6590 struct stat st; | |
6591 | |
6592 if (stat(dest, &st) >= 0) /* fail if destination exists */ | |
6593 return -1; | |
6594 if (link(src, dest) != 0) /* link file to new name */ | |
6595 return -1; | |
6596 if (mch_remove(src) == 0) /* delete link to old name */ | |
6597 return 0; | |
6598 return -1; | |
6599 } | |
6600 #endif /* !HAVE_RENAME */ | |
6601 | |
6602 #ifdef FEAT_MOUSE_GPM | |
6603 /* | |
6604 * Initializes connection with gpm (if it isn't already opened) | |
6605 * Return 1 if succeeded (or connection already opened), 0 if failed | |
6606 */ | |
6607 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6608 gpm_open(void) |
7 | 6609 { |
6610 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */ | |
6611 | |
6612 if (!gpm_flag) | |
6613 { | |
6614 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN); | |
6615 gpm_connect.defaultMask = ~GPM_HARD; | |
6616 /* Default handling for mouse move*/ | |
6617 gpm_connect.minMod = 0; /* Handle any modifier keys */ | |
6618 gpm_connect.maxMod = 0xffff; | |
6619 if (Gpm_Open(&gpm_connect, 0) > 0) | |
6620 { | |
6621 /* gpm library tries to handling TSTP causes | |
6622 * problems. Anyways, we close connection to Gpm whenever | |
6623 * we are going to suspend or starting an external process | |
1450 | 6624 * so we shouldn't have problem with this |
7 | 6625 */ |
1832 | 6626 # ifdef SIGTSTP |
7 | 6627 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); |
1832 | 6628 # endif |
7 | 6629 return 1; /* succeed */ |
6630 } | |
6631 if (gpm_fd == -2) | |
6632 Gpm_Close(); /* We don't want to talk to xterm via gpm */ | |
6633 return 0; | |
6634 } | |
6635 return 1; /* already open */ | |
6636 } | |
6637 | |
6638 /* | |
6639 * Closes connection to gpm | |
6640 */ | |
6641 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6642 gpm_close(void) |
7 | 6643 { |
6644 if (gpm_flag && gpm_fd >= 0) /* if Open */ | |
6645 Gpm_Close(); | |
6646 } | |
6647 | |
6648 /* Reads gpm event and adds special keys to input buf. Returns length of | |
6649 * generated key sequence. | |
5782 | 6650 * This function is styled after gui_send_mouse_event(). |
7 | 6651 */ |
6652 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6653 mch_gpm_process(void) |
7 | 6654 { |
6655 int button; | |
6656 static Gpm_Event gpm_event; | |
6657 char_u string[6]; | |
6658 int_u vim_modifiers; | |
6659 int row,col; | |
6660 unsigned char buttons_mask; | |
6661 unsigned char gpm_modifiers; | |
6662 static unsigned char old_buttons = 0; | |
6663 | |
6664 Gpm_GetEvent(&gpm_event); | |
6665 | |
6666 #ifdef FEAT_GUI | |
6667 /* Don't put events in the input queue now. */ | |
6668 if (hold_gui_events) | |
6669 return 0; | |
6670 #endif | |
6671 | |
6672 row = gpm_event.y - 1; | |
6673 col = gpm_event.x - 1; | |
6674 | |
6675 string[0] = ESC; /* Our termcode */ | |
6676 string[1] = 'M'; | |
6677 string[2] = 'G'; | |
6678 switch (GPM_BARE_EVENTS(gpm_event.type)) | |
6679 { | |
6680 case GPM_DRAG: | |
6681 string[3] = MOUSE_DRAG; | |
6682 break; | |
6683 case GPM_DOWN: | |
6684 buttons_mask = gpm_event.buttons & ~old_buttons; | |
6685 old_buttons = gpm_event.buttons; | |
6686 switch (buttons_mask) | |
6687 { | |
6688 case GPM_B_LEFT: | |
6689 button = MOUSE_LEFT; | |
6690 break; | |
6691 case GPM_B_MIDDLE: | |
6692 button = MOUSE_MIDDLE; | |
6693 break; | |
6694 case GPM_B_RIGHT: | |
6695 button = MOUSE_RIGHT; | |
6696 break; | |
6697 default: | |
6698 return 0; | |
6699 /*Don't know what to do. Can more than one button be | |
6700 * reported in one event? */ | |
6701 } | |
6702 string[3] = (char_u)(button | 0x20); | |
6703 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1); | |
6704 break; | |
6705 case GPM_UP: | |
6706 string[3] = MOUSE_RELEASE; | |
6707 old_buttons &= ~gpm_event.buttons; | |
6708 break; | |
6709 default: | |
6710 return 0; | |
6711 } | |
6712 /*This code is based on gui_x11_mouse_cb in gui_x11.c */ | |
6713 gpm_modifiers = gpm_event.modifiers; | |
6714 vim_modifiers = 0x0; | |
6715 /* I ignore capslock stats. Aren't we all just hate capslock mixing with | |
6716 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and | |
6717 * K_CAPSSHIFT is defined 8, so it probably isn't even reported | |
6718 */ | |
6719 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL))) | |
6720 vim_modifiers |= MOUSE_SHIFT; | |
6721 | |
6722 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL))) | |
6723 vim_modifiers |= MOUSE_CTRL; | |
6724 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR))) | |
6725 vim_modifiers |= MOUSE_ALT; | |
6726 string[3] |= vim_modifiers; | |
6727 string[4] = (char_u)(col + ' ' + 1); | |
6728 string[5] = (char_u)(row + ' ' + 1); | |
6729 add_to_input_buf(string, 6); | |
6730 return 6; | |
6731 } | |
6732 #endif /* FEAT_MOUSE_GPM */ | |
6733 | |
1620 | 6734 #ifdef FEAT_SYSMOUSE |
6735 /* | |
6736 * Initialize connection with sysmouse. | |
6737 * Let virtual console inform us with SIGUSR2 for pending sysmouse | |
6738 * output, any sysmouse output than will be processed via sig_sysmouse(). | |
6739 * Return OK if succeeded, FAIL if failed. | |
6740 */ | |
6741 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6742 sysmouse_open(void) |
1620 | 6743 { |
6744 struct mouse_info mouse; | |
6745 | |
6746 mouse.operation = MOUSE_MODE; | |
6747 mouse.u.mode.mode = 0; | |
6748 mouse.u.mode.signal = SIGUSR2; | |
6749 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1) | |
6750 { | |
6751 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse); | |
6752 mouse.operation = MOUSE_SHOW; | |
6753 ioctl(1, CONS_MOUSECTL, &mouse); | |
6754 return OK; | |
6755 } | |
6756 return FAIL; | |
6757 } | |
6758 | |
6759 /* | |
6760 * Stop processing SIGUSR2 signals, and also make sure that | |
6761 * virtual console do not send us any sysmouse related signal. | |
6762 */ | |
6763 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6764 sysmouse_close(void) |
1620 | 6765 { |
6766 struct mouse_info mouse; | |
6767 | |
6768 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL); | |
6769 mouse.operation = MOUSE_MODE; | |
6770 mouse.u.mode.mode = 0; | |
6771 mouse.u.mode.signal = 0; | |
6772 ioctl(1, CONS_MOUSECTL, &mouse); | |
6773 } | |
6774 | |
6775 /* | |
6776 * Gets info from sysmouse and adds special keys to input buf. | |
6777 */ | |
6778 static RETSIGTYPE | |
6779 sig_sysmouse SIGDEFARG(sigarg) | |
6780 { | |
6781 struct mouse_info mouse; | |
6782 struct video_info video; | |
6783 char_u string[6]; | |
6784 int row, col; | |
6785 int button; | |
6786 int buttons; | |
6787 static int oldbuttons = 0; | |
6788 | |
6789 #ifdef FEAT_GUI | |
6790 /* Don't put events in the input queue now. */ | |
6791 if (hold_gui_events) | |
6792 return; | |
6793 #endif | |
6794 | |
6795 mouse.operation = MOUSE_GETINFO; | |
6796 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1 | |
6797 && ioctl(1, FBIO_MODEINFO, &video) != -1 | |
6798 && ioctl(1, CONS_MOUSECTL, &mouse) != -1 | |
6799 && video.vi_cheight > 0 && video.vi_cwidth > 0) | |
6800 { | |
6801 row = mouse.u.data.y / video.vi_cheight; | |
6802 col = mouse.u.data.x / video.vi_cwidth; | |
6803 buttons = mouse.u.data.buttons; | |
6804 string[0] = ESC; /* Our termcode */ | |
6805 string[1] = 'M'; | |
6806 string[2] = 'S'; | |
6807 if (oldbuttons == buttons && buttons != 0) | |
6808 { | |
6809 button = MOUSE_DRAG; | |
6810 } | |
6811 else | |
6812 { | |
6813 switch (buttons) | |
6814 { | |
6815 case 0: | |
6816 button = MOUSE_RELEASE; | |
6817 break; | |
6818 case 1: | |
6819 button = MOUSE_LEFT; | |
6820 break; | |
6821 case 2: | |
6822 button = MOUSE_MIDDLE; | |
6823 break; | |
6824 case 4: | |
6825 button = MOUSE_RIGHT; | |
6826 break; | |
6827 default: | |
6828 return; | |
6829 } | |
6830 oldbuttons = buttons; | |
6831 } | |
6832 string[3] = (char_u)(button); | |
6833 string[4] = (char_u)(col + ' ' + 1); | |
6834 string[5] = (char_u)(row + ' ' + 1); | |
6835 add_to_input_buf(string, 6); | |
6836 } | |
6837 return; | |
6838 } | |
6839 #endif /* FEAT_SYSMOUSE */ | |
6840 | |
7 | 6841 #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
|
6842 typedef char_u * (*STRPROCSTR)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6843 typedef char_u * (*INTPROCSTR)(int); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6844 typedef int (*STRPROCINT)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6845 typedef int (*INTPROCINT)(int); |
7 | 6846 |
6847 /* | |
6848 * Call a DLL routine which takes either a string or int param | |
6849 * and returns an allocated string. | |
6850 */ | |
6851 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6852 mch_libcall( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6853 char_u *libname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6854 char_u *funcname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6855 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
|
6856 int argint, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6857 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
|
6858 int *number_result) |
7 | 6859 { |
6860 # if defined(USE_DLOPEN) | |
6861 void *hinstLib; | |
12 | 6862 char *dlerr = NULL; |
7 | 6863 # else |
6864 shl_t hinstLib; | |
6865 # endif | |
6866 STRPROCSTR ProcAdd; | |
6867 INTPROCSTR ProcAddI; | |
6868 char_u *retval_str = NULL; | |
6869 int retval_int = 0; | |
6870 int success = FALSE; | |
6871 | |
900 | 6872 /* |
6873 * Get a handle to the DLL module. | |
6874 */ | |
7 | 6875 # if defined(USE_DLOPEN) |
900 | 6876 /* First clear any error, it's not cleared by the dlopen() call. */ |
6877 (void)dlerror(); | |
6878 | |
7 | 6879 hinstLib = dlopen((char *)libname, RTLD_LAZY |
6880 # ifdef RTLD_LOCAL | |
6881 | RTLD_LOCAL | |
6882 # endif | |
6883 ); | |
12 | 6884 if (hinstLib == NULL) |
6885 { | |
6886 /* "dlerr" must be used before dlclose() */ | |
6887 dlerr = (char *)dlerror(); | |
6888 if (dlerr != NULL) | |
6889 EMSG2(_("dlerror = \"%s\""), dlerr); | |
6890 } | |
7 | 6891 # else |
6892 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L); | |
6893 # endif | |
6894 | |
6895 /* If the handle is valid, try to get the function address. */ | |
6896 if (hinstLib != NULL) | |
6897 { | |
6898 # ifdef HAVE_SETJMP_H | |
6899 /* | |
6900 * Catch a crash when calling the library function. For example when | |
6901 * using a number where a string pointer is expected. | |
6902 */ | |
6903 mch_startjmp(); | |
6904 if (SETJMP(lc_jump_env) != 0) | |
6905 { | |
6906 success = FALSE; | |
857 | 6907 # if defined(USE_DLOPEN) |
12 | 6908 dlerr = NULL; |
857 | 6909 # endif |
7 | 6910 mch_didjmp(); |
6911 } | |
6912 else | |
6913 # endif | |
6914 { | |
6915 retval_str = NULL; | |
6916 retval_int = 0; | |
6917 | |
6918 if (argstring != NULL) | |
6919 { | |
6920 # if defined(USE_DLOPEN) | |
10620
2198b53b9ffe
patch 8.0.0199: compiler warnings for libcall
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
6921 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname); |
12 | 6922 dlerr = (char *)dlerror(); |
7 | 6923 # else |
6924 if (shl_findsym(&hinstLib, (const char *)funcname, | |
6925 TYPE_PROCEDURE, (void *)&ProcAdd) < 0) | |
6926 ProcAdd = NULL; | |
6927 # endif | |
12 | 6928 if ((success = (ProcAdd != NULL |
6929 # if defined(USE_DLOPEN) | |
6930 && dlerr == NULL | |
6931 # endif | |
6932 ))) | |
7 | 6933 { |
6934 if (string_result == NULL) | |
6935 retval_int = ((STRPROCINT)ProcAdd)(argstring); | |
6936 else | |
6937 retval_str = (ProcAdd)(argstring); | |
6938 } | |
6939 } | |
6940 else | |
6941 { | |
6942 # if defined(USE_DLOPEN) | |
10620
2198b53b9ffe
patch 8.0.0199: compiler warnings for libcall
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
6943 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname); |
12 | 6944 dlerr = (char *)dlerror(); |
7 | 6945 # else |
6946 if (shl_findsym(&hinstLib, (const char *)funcname, | |
6947 TYPE_PROCEDURE, (void *)&ProcAddI) < 0) | |
6948 ProcAddI = NULL; | |
6949 # endif | |
12 | 6950 if ((success = (ProcAddI != NULL |
6951 # if defined(USE_DLOPEN) | |
6952 && dlerr == NULL | |
6953 # endif | |
6954 ))) | |
7 | 6955 { |
6956 if (string_result == NULL) | |
6957 retval_int = ((INTPROCINT)ProcAddI)(argint); | |
6958 else | |
6959 retval_str = (ProcAddI)(argint); | |
6960 } | |
6961 } | |
6962 | |
6963 /* Save the string before we free the library. */ | |
6964 /* Assume that a "1" or "-1" result is an illegal pointer. */ | |
6965 if (string_result == NULL) | |
6966 *number_result = retval_int; | |
6967 else if (retval_str != NULL | |
6968 && retval_str != (char_u *)1 | |
6969 && retval_str != (char_u *)-1) | |
6970 *string_result = vim_strsave(retval_str); | |
6971 } | |
6972 | |
6973 # ifdef HAVE_SETJMP_H | |
6974 mch_endjmp(); | |
6975 # ifdef SIGHASARG | |
6976 if (lc_signal != 0) | |
6977 { | |
6978 int i; | |
6979 | |
6980 /* try to find the name of this signal */ | |
6981 for (i = 0; signal_info[i].sig != -1; i++) | |
6982 if (lc_signal == signal_info[i].sig) | |
6983 break; | |
6984 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name); | |
6985 } | |
6986 # endif | |
6987 # endif | |
6988 | |
12 | 6989 # if defined(USE_DLOPEN) |
6990 /* "dlerr" must be used before dlclose() */ | |
6991 if (dlerr != NULL) | |
6992 EMSG2(_("dlerror = \"%s\""), dlerr); | |
6993 | |
7 | 6994 /* Free the DLL module. */ |
6995 (void)dlclose(hinstLib); | |
6996 # else | |
6997 (void)shl_unload(hinstLib); | |
6998 # endif | |
6999 } | |
7000 | |
7001 if (!success) | |
7002 { | |
7003 EMSG2(_(e_libcall), funcname); | |
7004 return FAIL; | |
7005 } | |
7006 | |
7007 return OK; | |
7008 } | |
7009 #endif | |
7010 | |
7011 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO) | |
7012 static int xterm_trace = -1; /* default: disabled */ | |
7013 static int xterm_button; | |
7014 | |
7015 /* | |
7016 * Setup a dummy window for X selections in a terminal. | |
7017 */ | |
7018 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7019 setup_term_clip(void) |
7 | 7020 { |
7021 int z = 0; | |
7022 char *strp = ""; | |
7023 Widget AppShell; | |
7024 | |
7025 if (!x_connect_to_server()) | |
7026 return; | |
7027 | |
7028 open_app_context(); | |
7029 if (app_context != NULL && xterm_Shell == (Widget)0) | |
7030 { | |
7031 int (*oldhandler)(); | |
7032 #if defined(HAVE_SETJMP_H) | |
7033 int (*oldIOhandler)(); | |
7034 #endif | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7035 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7036 ELAPSED_TYPE start_tv; |
7 | 7037 |
7038 if (p_verbose > 0) | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7039 ELAPSED_INIT(start_tv); |
7 | 7040 # endif |
7041 | |
7042 /* Ignore X errors while opening the display */ | |
7043 oldhandler = XSetErrorHandler(x_error_check); | |
7044 | |
7045 #if defined(HAVE_SETJMP_H) | |
7046 /* Ignore X IO errors while opening the display */ | |
7047 oldIOhandler = XSetIOErrorHandler(x_IOerror_check); | |
7048 mch_startjmp(); | |
7049 if (SETJMP(lc_jump_env) != 0) | |
7050 { | |
7051 mch_didjmp(); | |
7052 xterm_dpy = NULL; | |
7053 } | |
7054 else | |
7055 #endif | |
7056 { | |
7057 xterm_dpy = XtOpenDisplay(app_context, xterm_display, | |
7058 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp); | |
7059 #if defined(HAVE_SETJMP_H) | |
7060 mch_endjmp(); | |
7061 #endif | |
7062 } | |
7063 | |
7064 #if defined(HAVE_SETJMP_H) | |
7065 /* Now handle X IO errors normally. */ | |
7066 (void)XSetIOErrorHandler(oldIOhandler); | |
7067 #endif | |
7068 /* Now handle X errors normally. */ | |
7069 (void)XSetErrorHandler(oldhandler); | |
7070 | |
7071 if (xterm_dpy == NULL) | |
7072 { | |
7073 if (p_verbose > 0) | |
292 | 7074 verb_msg((char_u *)_("Opening the X display failed")); |
7 | 7075 return; |
7076 } | |
7077 | |
7078 /* Catch terminating error of the X server connection. */ | |
7079 (void)XSetIOErrorHandler(x_IOerror_handler); | |
7080 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7081 # ifdef ELAPSED_FUNC |
7 | 7082 if (p_verbose > 0) |
292 | 7083 { |
7084 verbose_enter(); | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7085 xopen_message(ELAPSED_FUNC(start_tv)); |
292 | 7086 verbose_leave(); |
7087 } | |
7 | 7088 # endif |
7089 | |
7090 /* Create a Shell to make converters work. */ | |
7091 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm", | |
7092 applicationShellWidgetClass, xterm_dpy, | |
7093 NULL); | |
7094 if (AppShell == (Widget)0) | |
7095 return; | |
7096 xterm_Shell = XtVaCreatePopupShell("VIM", | |
7097 topLevelShellWidgetClass, AppShell, | |
7098 XtNmappedWhenManaged, 0, | |
7099 XtNwidth, 1, | |
7100 XtNheight, 1, | |
7101 NULL); | |
7102 if (xterm_Shell == (Widget)0) | |
7103 return; | |
7104 | |
7105 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
|
7106 x11_setup_selection(xterm_Shell); |
7 | 7107 if (x11_display == NULL) |
7108 x11_display = xterm_dpy; | |
7109 | |
7110 XtRealizeWidget(xterm_Shell); | |
7111 XSync(xterm_dpy, False); | |
7112 xterm_update(); | |
7113 } | |
7114 if (xterm_Shell != (Widget)0) | |
7115 { | |
7116 clip_init(TRUE); | |
7117 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL) | |
7118 x11_window = (Window)atol(strp); | |
7119 /* Check if $WINDOWID is valid. */ | |
7120 if (test_x11_window(xterm_dpy) == FAIL) | |
7121 x11_window = 0; | |
7122 if (x11_window != 0) | |
7123 xterm_trace = 0; | |
7124 } | |
7125 } | |
7126 | |
7127 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7128 start_xterm_trace(int button) |
7 | 7129 { |
7130 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0) | |
7131 return; | |
7132 xterm_trace = 1; | |
7133 xterm_button = button; | |
7134 do_xterm_trace(); | |
7135 } | |
7136 | |
7137 | |
7138 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7139 stop_xterm_trace(void) |
7 | 7140 { |
7141 if (xterm_trace < 0) | |
7142 return; | |
7143 xterm_trace = 0; | |
7144 } | |
7145 | |
7146 /* | |
7147 * Query the xterm pointer and generate mouse termcodes if necessary | |
7148 * return TRUE if dragging is active, else FALSE | |
7149 */ | |
7150 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7151 do_xterm_trace(void) |
7 | 7152 { |
7153 Window root, child; | |
7154 int root_x, root_y; | |
7155 int win_x, win_y; | |
7156 int row, col; | |
7157 int_u mask_return; | |
7158 char_u buf[50]; | |
7159 char_u *strp; | |
7160 long got_hints; | |
7161 static char_u *mouse_code; | |
7162 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER}; | |
7163 static int prev_row = 0, prev_col = 0; | |
7164 static XSizeHints xterm_hints; | |
7165 | |
7166 if (xterm_trace <= 0) | |
7167 return FALSE; | |
7168 | |
7169 if (xterm_trace == 1) | |
7170 { | |
7171 /* Get the hints just before tracking starts. The font size might | |
1510 | 7172 * have changed recently. */ |
7173 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints) | |
7174 || !(got_hints & PResizeInc) | |
7 | 7175 || xterm_hints.width_inc <= 1 |
7176 || xterm_hints.height_inc <= 1) | |
7177 { | |
7178 xterm_trace = -1; /* Not enough data -- disable tracing */ | |
7179 return FALSE; | |
7180 } | |
7181 | |
7182 /* Rely on the same mouse code for the duration of this */ | |
7183 mouse_code = find_termcode(mouse_name); | |
7184 prev_row = mouse_row; | |
7009 | 7185 prev_col = mouse_col; |
7 | 7186 xterm_trace = 2; |
7187 | |
7188 /* Find the offset of the chars, there might be a scrollbar on the | |
7189 * left of the window and/or a menu on the top (eterm etc.) */ | |
7190 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7191 &win_x, &win_y, &mask_return); | |
7192 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row) | |
7193 - (xterm_hints.height_inc / 2); | |
7194 if (xterm_hints.y <= xterm_hints.height_inc / 2) | |
7195 xterm_hints.y = 2; | |
7196 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col) | |
7197 - (xterm_hints.width_inc / 2); | |
7198 if (xterm_hints.x <= xterm_hints.width_inc / 2) | |
7199 xterm_hints.x = 2; | |
7200 return TRUE; | |
7201 } | |
2768 | 7202 if (mouse_code == NULL || STRLEN(mouse_code) > 45) |
7 | 7203 { |
7204 xterm_trace = 0; | |
7205 return FALSE; | |
7206 } | |
7207 | |
7208 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7209 &win_x, &win_y, &mask_return); | |
7210 | |
7211 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc); | |
7212 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc); | |
7213 if (row == prev_row && col == prev_col) | |
7214 return TRUE; | |
7215 | |
7216 STRCPY(buf, mouse_code); | |
7217 strp = buf + STRLEN(buf); | |
7218 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20; | |
7219 *strp++ = (char_u)(col + ' ' + 1); | |
7220 *strp++ = (char_u)(row + ' ' + 1); | |
7221 *strp = 0; | |
7222 add_to_input_buf(buf, STRLEN(buf)); | |
7223 | |
7224 prev_row = row; | |
7225 prev_col = col; | |
7226 return TRUE; | |
7227 } | |
7228 | |
7229 # if defined(FEAT_GUI) || defined(PROTO) | |
7230 /* | |
7231 * Destroy the display, window and app_context. Required for GTK. | |
7232 */ | |
7233 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7234 clear_xterm_clip(void) |
7 | 7235 { |
7236 if (xterm_Shell != (Widget)0) | |
7237 { | |
7238 XtDestroyWidget(xterm_Shell); | |
7239 xterm_Shell = (Widget)0; | |
7240 } | |
7241 if (xterm_dpy != NULL) | |
7242 { | |
1605 | 7243 # if 0 |
7 | 7244 /* Lesstif and Solaris crash here, lose some memory */ |
7245 XtCloseDisplay(xterm_dpy); | |
1605 | 7246 # endif |
7 | 7247 if (x11_display == xterm_dpy) |
7248 x11_display = NULL; | |
7249 xterm_dpy = NULL; | |
7250 } | |
1605 | 7251 # if 0 |
7 | 7252 if (app_context != (XtAppContext)NULL) |
7253 { | |
7254 /* Lesstif and Solaris crash here, lose some memory */ | |
7255 XtDestroyApplicationContext(app_context); | |
7256 app_context = (XtAppContext)NULL; | |
7257 } | |
1605 | 7258 # endif |
7 | 7259 } |
7260 # endif | |
7261 | |
7262 /* | |
4230 | 7263 * Catch up with GUI or X events. |
7264 */ | |
7265 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7266 clip_update(void) |
4230 | 7267 { |
7268 # ifdef FEAT_GUI | |
7269 if (gui.in_use) | |
7270 gui_mch_update(); | |
7271 else | |
7272 # endif | |
7273 if (xterm_Shell != (Widget)0) | |
7274 xterm_update(); | |
7275 } | |
7276 | |
7277 /* | |
7 | 7278 * Catch up with any queued X events. This may put keyboard input into the |
7279 * input buffer, call resize call-backs, trigger timers etc. If there is | |
7280 * nothing in the X event queue (& no timers pending), then we return | |
7281 * immediately. | |
7282 */ | |
7283 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7284 xterm_update(void) |
7 | 7285 { |
7286 XEvent event; | |
7287 | |
6683 | 7288 for (;;) |
7 | 7289 { |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7290 XtInputMask mask = XtAppPending(app_context); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7291 |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7292 if (mask == 0 || vim_is_input_buf_full()) |
6683 | 7293 break; |
7294 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7295 if (mask & XtIMXEvent) |
7 | 7296 { |
6683 | 7297 /* 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
|
7298 XtAppNextEvent(app_context, &event); |
6683 | 7299 #ifdef FEAT_CLIENTSERVER |
7300 { | |
7301 XPropertyEvent *e = (XPropertyEvent *)&event; | |
7302 | |
7303 if (e->type == PropertyNotify && e->window == commWindow | |
7 | 7304 && 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
|
7305 serverEventProc(xterm_dpy, &event, 0); |
6683 | 7306 } |
7307 #endif | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7308 XtDispatchEvent(&event); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7309 } |
6683 | 7310 else |
7311 { | |
7312 /* 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
|
7313 XtAppProcessEvent(app_context, mask); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7314 } |
7 | 7315 } |
7316 } | |
7317 | |
7318 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7319 clip_xterm_own_selection(VimClipboard *cbd) |
7 | 7320 { |
7321 if (xterm_Shell != (Widget)0) | |
7322 return clip_x11_own_selection(xterm_Shell, cbd); | |
7323 return FAIL; | |
7324 } | |
7325 | |
7326 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7327 clip_xterm_lose_selection(VimClipboard *cbd) |
7 | 7328 { |
7329 if (xterm_Shell != (Widget)0) | |
7330 clip_x11_lose_selection(xterm_Shell, cbd); | |
7331 } | |
7332 | |
7333 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7334 clip_xterm_request_selection(VimClipboard *cbd) |
7 | 7335 { |
7336 if (xterm_Shell != (Widget)0) | |
7337 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd); | |
7338 } | |
7339 | |
7340 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7341 clip_xterm_set_selection(VimClipboard *cbd) |
7 | 7342 { |
7343 clip_x11_set_selection(cbd); | |
7344 } | |
7345 #endif | |
7346 | |
7347 | |
7348 #if defined(USE_XSMP) || defined(PROTO) | |
7349 /* | |
7350 * Code for X Session Management Protocol. | |
7351 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
7352 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
|
7353 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
|
7354 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
|
7355 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
|
7356 static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData); |
7 | 7357 |
7358 | |
7359 # 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
|
7360 static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data); |
7 | 7361 |
7362 /* | |
7363 * This is our chance to ask the user if they want to save, | |
7364 * or abort the logout | |
7365 */ | |
7366 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7367 xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED) |
7 | 7368 { |
7369 cmdmod_T save_cmdmod; | |
7370 int cancel_shutdown = False; | |
7371 | |
7372 save_cmdmod = cmdmod; | |
7373 cmdmod.confirm = TRUE; | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
7374 if (check_changed_any(FALSE, FALSE)) |
7 | 7375 /* Mustn't logout */ |
7376 cancel_shutdown = True; | |
7377 cmdmod = save_cmdmod; | |
7378 setcursor(); /* position cursor */ | |
7379 out_flush(); | |
7380 | |
7381 /* Done interaction */ | |
7382 SmcInteractDone(smc_conn, cancel_shutdown); | |
7383 | |
7384 /* Finish off | |
7385 * Only end save-yourself here if we're not cancelling shutdown; | |
7386 * we'll get a cancelled callback later in which we'll end it. | |
7387 * Hopefully get around glitchy SMs (like GNOME-1) | |
7388 */ | |
7389 if (!cancel_shutdown) | |
7390 { | |
7391 xsmp.save_yourself = False; | |
7392 SmcSaveYourselfDone(smc_conn, True); | |
7393 } | |
7394 } | |
7395 # endif | |
7396 | |
7397 /* | |
7398 * Callback that starts save-yourself. | |
7399 */ | |
7400 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7401 xsmp_handle_save_yourself( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7402 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7403 SmPointer client_data UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7404 int save_type UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7405 Bool shutdown, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7406 int interact_style UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7407 Bool fast UNUSED) |
7 | 7408 { |
7409 /* Handle already being in saveyourself */ | |
7410 if (xsmp.save_yourself) | |
7411 SmcSaveYourselfDone(smc_conn, True); | |
7412 xsmp.save_yourself = True; | |
7413 xsmp.shutdown = shutdown; | |
7414 | |
7415 /* First up, preserve all files */ | |
7416 out_flush(); | |
7417 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
7418 | |
7419 if (p_verbose > 0) | |
292 | 7420 verb_msg((char_u *)_("XSMP handling save-yourself request")); |
7 | 7421 |
7422 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7423 /* Now see if we can ask about unsaved files */ | |
7424 if (shutdown && !fast && gui.in_use) | |
7425 /* Need to interact with user, but need SM's permission */ | |
7426 SmcInteractRequest(smc_conn, SmDialogError, | |
7427 xsmp_handle_interaction, client_data); | |
7428 else | |
7429 # endif | |
7430 { | |
7431 /* Can stop the cycle here */ | |
7432 SmcSaveYourselfDone(smc_conn, True); | |
7433 xsmp.save_yourself = False; | |
7434 } | |
7435 } | |
7436 | |
7437 | |
7438 /* | |
7439 * Callback to warn us of imminent death. | |
7440 */ | |
7441 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7442 xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED) |
7 | 7443 { |
7444 xsmp_close(); | |
7445 | |
7446 /* quit quickly leaving swapfiles for modified buffers behind */ | |
7447 getout_preserve_modified(0); | |
7448 } | |
7449 | |
7450 | |
7451 /* | |
7452 * Callback to tell us that save-yourself has completed. | |
7453 */ | |
7454 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7455 xsmp_save_complete( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7456 SmcConn smc_conn UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7457 SmPointer client_data UNUSED) |
7 | 7458 { |
7459 xsmp.save_yourself = False; | |
7460 } | |
7461 | |
7462 | |
7463 /* | |
7464 * Callback to tell us that an instigated shutdown was cancelled | |
7465 * (maybe even by us) | |
7466 */ | |
7467 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7468 xsmp_shutdown_cancelled( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7469 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7470 SmPointer client_data UNUSED) |
7 | 7471 { |
7472 if (xsmp.save_yourself) | |
7473 SmcSaveYourselfDone(smc_conn, True); | |
7474 xsmp.save_yourself = False; | |
7475 xsmp.shutdown = False; | |
7476 } | |
7477 | |
7478 | |
7479 /* | |
7480 * Callback to tell us that a new ICE connection has been established. | |
7481 */ | |
7482 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7483 xsmp_ice_connection( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7484 IceConn iceConn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7485 IcePointer clientData UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7486 Bool opening, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7487 IcePointer *watchData UNUSED) |
7 | 7488 { |
7489 /* Intercept creation of ICE connection fd */ | |
7490 if (opening) | |
7491 { | |
7492 xsmp_icefd = IceConnectionNumber(iceConn); | |
7493 IceRemoveConnectionWatch(xsmp_ice_connection, NULL); | |
7494 } | |
7495 } | |
7496 | |
7497 | |
7498 /* Handle any ICE processing that's required; return FAIL if SM lost */ | |
7499 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7500 xsmp_handle_requests(void) |
7 | 7501 { |
7502 Bool rep; | |
7503 | |
7504 if (IceProcessMessages(xsmp.iceconn, NULL, &rep) | |
7505 == IceProcessMessagesIOError) | |
7506 { | |
7507 /* Lost ICE */ | |
7508 if (p_verbose > 0) | |
292 | 7509 verb_msg((char_u *)_("XSMP lost ICE connection")); |
7 | 7510 xsmp_close(); |
7511 return FAIL; | |
7512 } | |
7513 else | |
7514 return OK; | |
7515 } | |
7516 | |
7517 static int dummy; | |
7518 | |
7519 /* Set up X Session Management Protocol */ | |
7520 void | |
7521 xsmp_init(void) | |
7522 { | |
7523 char errorstring[80]; | |
7524 SmcCallbacks smcallbacks; | |
7525 #if 0 | |
7526 SmPropValue smname; | |
7527 SmProp smnameprop; | |
7528 SmProp *smprops[1]; | |
7529 #endif | |
7530 | |
7531 if (p_verbose > 0) | |
292 | 7532 verb_msg((char_u *)_("XSMP opening connection")); |
7 | 7533 |
7534 xsmp.save_yourself = xsmp.shutdown = False; | |
7535 | |
7536 /* Set up SM callbacks - must have all, even if they're not used */ | |
7537 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself; | |
7538 smcallbacks.save_yourself.client_data = NULL; | |
7539 smcallbacks.die.callback = xsmp_die; | |
7540 smcallbacks.die.client_data = NULL; | |
7541 smcallbacks.save_complete.callback = xsmp_save_complete; | |
7542 smcallbacks.save_complete.client_data = NULL; | |
7543 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled; | |
7544 smcallbacks.shutdown_cancelled.client_data = NULL; | |
7545 | |
7546 /* Set up a watch on ICE connection creations. The "dummy" argument is | |
7547 * apparently required for FreeBSD (we get a BUS error when using NULL). */ | |
7548 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0) | |
7549 { | |
7550 if (p_verbose > 0) | |
292 | 7551 verb_msg((char_u *)_("XSMP ICE connection watch failed")); |
7 | 7552 return; |
7553 } | |
7554 | |
7555 /* Create an SM connection */ | |
7556 xsmp.smcconn = SmcOpenConnection( | |
7557 NULL, | |
7558 NULL, | |
7559 SmProtoMajor, | |
7560 SmProtoMinor, | |
7561 SmcSaveYourselfProcMask | SmcDieProcMask | |
7562 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask, | |
7563 &smcallbacks, | |
7564 NULL, | |
1605 | 7565 &xsmp.clientid, |
7 | 7566 sizeof(errorstring), |
7567 errorstring); | |
7568 if (xsmp.smcconn == NULL) | |
7569 { | |
7570 char errorreport[132]; | |
273 | 7571 |
292 | 7572 if (p_verbose > 0) |
7573 { | |
7574 vim_snprintf(errorreport, sizeof(errorreport), | |
273 | 7575 _("XSMP SmcOpenConnection failed: %s"), errorstring); |
292 | 7576 verb_msg((char_u *)errorreport); |
7577 } | |
7 | 7578 return; |
7579 } | |
7580 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn); | |
7581 | |
7582 #if 0 | |
7583 /* ID ourselves */ | |
7584 smname.value = "vim"; | |
7585 smname.length = 3; | |
7586 smnameprop.name = "SmProgram"; | |
7587 smnameprop.type = "SmARRAY8"; | |
7588 smnameprop.num_vals = 1; | |
7589 smnameprop.vals = &smname; | |
7590 | |
7591 smprops[0] = &smnameprop; | |
7592 SmcSetProperties(xsmp.smcconn, 1, smprops); | |
7593 #endif | |
7594 } | |
7595 | |
7596 | |
7597 /* Shut down XSMP comms. */ | |
7598 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7599 xsmp_close(void) |
7 | 7600 { |
7601 if (xsmp_icefd != -1) | |
7602 { | |
7603 SmcCloseConnection(xsmp.smcconn, 0, NULL); | |
1737 | 7604 if (xsmp.clientid != NULL) |
7605 free(xsmp.clientid); | |
1605 | 7606 xsmp.clientid = NULL; |
7 | 7607 xsmp_icefd = -1; |
7608 } | |
7609 } | |
7610 #endif /* USE_XSMP */ | |
7611 | |
7612 | |
7613 #ifdef EBCDIC | |
7614 /* Translate character to its CTRL- value */ | |
7615 char CtrlTable[] = | |
7616 { | |
7617 /* 00 - 5E */ | |
7618 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7619 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7620 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7621 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7622 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7623 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7624 /* ^ */ 0x1E, | |
7625 /* - */ 0x1F, | |
7626 /* 61 - 6C */ | |
7627 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7628 /* _ */ 0x1F, | |
7629 /* 6E - 80 */ | |
7630 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7631 /* a */ 0x01, | |
7632 /* b */ 0x02, | |
7633 /* c */ 0x03, | |
7634 /* d */ 0x37, | |
7635 /* e */ 0x2D, | |
7636 /* f */ 0x2E, | |
7637 /* g */ 0x2F, | |
7638 /* h */ 0x16, | |
7639 /* i */ 0x05, | |
7640 /* 8A - 90 */ | |
7641 0, 0, 0, 0, 0, 0, 0, | |
7642 /* j */ 0x15, | |
7643 /* k */ 0x0B, | |
7644 /* l */ 0x0C, | |
7645 /* m */ 0x0D, | |
7646 /* n */ 0x0E, | |
7647 /* o */ 0x0F, | |
7648 /* p */ 0x10, | |
7649 /* q */ 0x11, | |
7650 /* r */ 0x12, | |
7651 /* 9A - A1 */ | |
7652 0, 0, 0, 0, 0, 0, 0, 0, | |
7653 /* s */ 0x13, | |
7654 /* t */ 0x3C, | |
7655 /* u */ 0x3D, | |
7656 /* v */ 0x32, | |
7657 /* w */ 0x26, | |
7658 /* x */ 0x18, | |
7659 /* y */ 0x19, | |
7660 /* z */ 0x3F, | |
7661 /* AA - AC */ | |
7662 0, 0, 0, | |
7663 /* [ */ 0x27, | |
7664 /* AE - BC */ | |
7665 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7666 /* ] */ 0x1D, | |
7667 /* BE - C0 */ 0, 0, 0, | |
7668 /* A */ 0x01, | |
7669 /* B */ 0x02, | |
7670 /* C */ 0x03, | |
7671 /* D */ 0x37, | |
7672 /* E */ 0x2D, | |
7673 /* F */ 0x2E, | |
7674 /* G */ 0x2F, | |
7675 /* H */ 0x16, | |
7676 /* I */ 0x05, | |
7677 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0, | |
7678 /* J */ 0x15, | |
7679 /* K */ 0x0B, | |
7680 /* L */ 0x0C, | |
7681 /* M */ 0x0D, | |
7682 /* N */ 0x0E, | |
7683 /* O */ 0x0F, | |
7684 /* P */ 0x10, | |
7685 /* Q */ 0x11, | |
7686 /* R */ 0x12, | |
7687 /* DA - DF */ 0, 0, 0, 0, 0, 0, | |
7688 /* \ */ 0x1C, | |
7689 /* E1 */ 0, | |
7690 /* S */ 0x13, | |
7691 /* T */ 0x3C, | |
7692 /* U */ 0x3D, | |
7693 /* V */ 0x32, | |
7694 /* W */ 0x26, | |
7695 /* X */ 0x18, | |
7696 /* Y */ 0x19, | |
7697 /* Z */ 0x3F, | |
7698 /* EA - FF*/ 0, 0, 0, 0, 0, 0, | |
7699 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
7700 }; | |
7701 | |
7702 char MetaCharTable[]= | |
7703 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
7704 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0, | |
7705 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0, | |
7706 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0, | |
7707 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0 | |
7708 }; | |
7709 | |
7710 | |
7711 /* TODO: Use characters NOT numbers!!! */ | |
7712 char CtrlCharTable[]= | |
7713 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
7714 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214, | |
7715 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109, | |
7716 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199, | |
7717 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233, | |
7718 }; | |
7719 | |
7720 | |
7721 #endif |