Mercurial > vim
annotate src/os_unix.c @ 16357:38c863160f94
Added tag v8.1.1183 for changeset 1759d0ec0a6fb11b96f0ec98d1d9eeb06d943010
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 17 Apr 2019 18:45:05 +0200 |
parents | a70f0d6686c4 |
children | 4e9bea9b8025 |
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 #include "vim.h" | |
22 | |
14 | 23 #ifdef FEAT_MZSCHEME |
24 # include "if_mzsch.h" | |
25 #endif | |
26 | |
7 | 27 #include "os_unixx.h" /* unix includes for os_unix.c only */ |
28 | |
29 #ifdef USE_XSMP | |
30 # include <X11/SM/SMlib.h> | |
31 #endif | |
32 | |
1583 | 33 #ifdef HAVE_SELINUX |
34 # include <selinux/selinux.h> | |
35 static int selinux_enabled = -1; | |
36 #endif | |
37 | |
5788 | 38 #ifdef HAVE_SMACK |
39 # include <attr/xattr.h> | |
40 # include <linux/xattr.h> | |
41 # ifndef SMACK_LABEL_LEN | |
42 # define SMACK_LABEL_LEN 1024 | |
43 # endif | |
44 #endif | |
45 | |
14718
cf33c47d66aa
patch 8.1.0371: argument types for select() may be wrong
Christian Brabandt <cb@256bit.org>
parents:
14673
diff
changeset
|
46 #ifdef __BEOS__ |
1076 | 47 # undef select |
14718
cf33c47d66aa
patch 8.1.0371: argument types for select() may be wrong
Christian Brabandt <cb@256bit.org>
parents:
14673
diff
changeset
|
48 # define select beos_select |
7 | 49 #endif |
50 | |
1102 | 51 #ifdef __CYGWIN__ |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15766
diff
changeset
|
52 # ifndef MSWIN |
1657 | 53 # include <cygwin/version.h> |
54 # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or | |
55 * for cygwin_conv_path() */ | |
4168 | 56 # ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
57 # define WIN32_LEAN_AND_MEAN | |
58 # include <windows.h> | |
59 # include "winclip.pro" | |
60 # endif | |
1102 | 61 # endif |
62 #endif | |
63 | |
7 | 64 #ifdef FEAT_MOUSE_GPM |
65 # include <gpm.h> | |
66 /* <linux/keyboard.h> contains defines conflicting with "keymap.h", | |
67 * I just copied relevant defines here. A cleaner solution would be to put gpm | |
68 * code into separate file and include there linux/keyboard.h | |
69 */ | |
70 /* #include <linux/keyboard.h> */ | |
71 # define KG_SHIFT 0 | |
72 # define KG_CTRL 2 | |
73 # define KG_ALT 3 | |
74 # define KG_ALTGR 1 | |
75 # define KG_SHIFTL 4 | |
76 # define KG_SHIFTR 5 | |
77 # define KG_CTRLL 6 | |
78 # define KG_CTRLR 7 | |
79 # define KG_CAPSSHIFT 8 | |
80 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
81 static void gpm_close(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
82 static int gpm_open(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
83 static int mch_gpm_process(void); |
7 | 84 #endif |
85 | |
1620 | 86 #ifdef FEAT_SYSMOUSE |
87 # include <sys/consio.h> | |
88 # include <sys/fbio.h> | |
89 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
90 static int sysmouse_open(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
91 static void sysmouse_close(void); |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
92 static RETSIGTYPE sig_sysmouse SIGPROTOARG; |
1620 | 93 #endif |
94 | |
7 | 95 /* |
96 * end of autoconf section. To be extended... | |
97 */ | |
98 | |
99 /* Are the following #ifdefs still required? And why? Is that for X11? */ | |
100 | |
101 #if defined(ESIX) || defined(M_UNIX) && !defined(SCO) | |
102 # ifdef SIGWINCH | |
103 # undef SIGWINCH | |
104 # endif | |
105 # ifdef TIOCGWINSZ | |
106 # undef TIOCGWINSZ | |
107 # endif | |
108 #endif | |
109 | |
110 #if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */ | |
111 # define SIGWINCH SIGWINDOW | |
112 #endif | |
113 | |
114 #ifdef FEAT_X11 | |
115 # include <X11/Xlib.h> | |
116 # include <X11/Xutil.h> | |
117 # include <X11/Xatom.h> | |
118 # ifdef FEAT_XCLIPBOARD | |
119 # include <X11/Intrinsic.h> | |
120 # include <X11/Shell.h> | |
121 # include <X11/StringDefs.h> | |
122 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
|
123 static void clip_update(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
124 static void xterm_update(void); |
7 | 125 # endif |
126 | |
127 # if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE) | |
128 Window x11_window = 0; | |
129 # endif | |
130 Display *x11_display = NULL; | |
131 #endif | |
132 | |
133 #ifdef FEAT_TITLE | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
134 static int get_x11_title(int); |
7 | 135 |
136 static char_u *oldtitle = NULL; | |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
137 static volatile sig_atomic_t oldtitle_outdated = FALSE; |
7 | 138 static int did_set_title = FALSE; |
139 static char_u *oldicon = NULL; | |
140 static int did_set_icon = FALSE; | |
141 #endif | |
142 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
143 static void may_core_dump(void); |
7 | 144 |
3048 | 145 #ifdef HAVE_UNION_WAIT |
146 typedef union wait waitstatus; | |
147 #else | |
148 typedef int waitstatus; | |
149 #endif | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
150 static int WaitForChar(long msec, int *interrupted, int ignore_input); |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
151 static int WaitForCharOrMouse(long msec, int *interrupted, int ignore_input); |
5541 | 152 #if defined(__BEOS__) || defined(VMS) |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
153 int RealWaitForChar(int, long, int *, int *interrupted); |
7 | 154 #else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
155 static int RealWaitForChar(int, long, int *, int *interrupted); |
7 | 156 #endif |
157 | |
158 #ifdef FEAT_XCLIPBOARD | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
159 static int do_xterm_trace(void); |
331 | 160 # define XT_TRACE_DELAY 50 /* delay for xterm tracing */ |
7 | 161 #endif |
162 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
163 static void handle_resize(void); |
7 | 164 |
165 #if defined(SIGWINCH) | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
166 static RETSIGTYPE sig_winch SIGPROTOARG; |
7 | 167 #endif |
168 #if defined(SIGINT) | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
169 static RETSIGTYPE catch_sigint SIGPROTOARG; |
7 | 170 #endif |
171 #if defined(SIGPWR) | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
172 static RETSIGTYPE catch_sigpwr SIGPROTOARG; |
7 | 173 #endif |
174 #if defined(SIGALRM) && defined(FEAT_X11) \ | |
175 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK) | |
176 # define SET_SIG_ALARM | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
177 static RETSIGTYPE sig_alarm SIGPROTOARG; |
1832 | 178 /* volatile because it is used in signal handler sig_alarm(). */ |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
179 static volatile sig_atomic_t sig_alarm_called; |
7 | 180 #endif |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
181 static RETSIGTYPE deathtrap SIGPROTOARG; |
7 | 182 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
183 static void catch_int_signal(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
184 static void set_signals(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
185 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
|
186 #ifdef HAVE_SIGPROCMASK |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
187 # 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
|
188 # 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
|
189 # 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
|
190 #else |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
191 # define SIGSET_DECL(set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
192 # 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
|
193 # 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
|
194 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
195 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
|
196 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
|
197 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
198 static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file); |
7 | 199 |
200 #ifndef SIG_ERR | |
1879 | 201 # define SIG_ERR ((RETSIGTYPE (*)())-1) |
7 | 202 #endif |
203 | |
1832 | 204 /* volatile because it is used in signal handler sig_winch(). */ |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
205 static volatile sig_atomic_t do_resize = FALSE; |
7 | 206 static char_u *extra_shell_arg = NULL; |
207 static int show_shell_mess = TRUE; | |
1832 | 208 /* volatile because it is used in signal handler deathtrap(). */ |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
209 static volatile sig_atomic_t deadly_signal = 0; /* The signal we caught */ |
1832 | 210 /* volatile because it is used in signal handler deathtrap(). */ |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
211 static volatile sig_atomic_t in_mch_delay = FALSE; /* sleeping in mch_delay() */ |
7 | 212 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
213 #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
|
214 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
|
215 #endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
216 |
7 | 217 static int curr_tmode = TMODE_COOK; /* contains current terminal mode */ |
218 | |
219 #ifdef USE_XSMP | |
220 typedef struct | |
221 { | |
222 SmcConn smcconn; /* The SM connection ID */ | |
223 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
|
224 char *clientid; /* The client ID for the current smc session */ |
7 | 225 Bool save_yourself; /* If we're in the middle of a save_yourself */ |
226 Bool shutdown; /* If we're in shutdown mode */ | |
227 } xsmp_config_T; | |
228 | |
229 static xsmp_config_T xsmp; | |
230 #endif | |
231 | |
232 #ifdef SYS_SIGLIST_DECLARED | |
233 /* | |
234 * I have seen | |
235 * extern char *_sys_siglist[NSIG]; | |
236 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings | |
237 * that describe the signals. That is nearly what we want here. But | |
238 * autoconf does only check for sys_siglist (without the underscore), I | |
239 * 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
|
240 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac. |
7 | 241 */ |
242 #endif | |
243 | |
244 static struct signalinfo | |
245 { | |
246 int sig; /* Signal number, eg. SIGSEGV etc */ | |
247 char *name; /* Signal name (not char_u!). */ | |
248 char deadly; /* Catch as a deadly signal? */ | |
249 } signal_info[] = | |
250 { | |
251 #ifdef SIGHUP | |
252 {SIGHUP, "HUP", TRUE}, | |
253 #endif | |
254 #ifdef SIGQUIT | |
255 {SIGQUIT, "QUIT", TRUE}, | |
256 #endif | |
257 #ifdef SIGILL | |
258 {SIGILL, "ILL", TRUE}, | |
259 #endif | |
260 #ifdef SIGTRAP | |
261 {SIGTRAP, "TRAP", TRUE}, | |
262 #endif | |
263 #ifdef SIGABRT | |
264 {SIGABRT, "ABRT", TRUE}, | |
265 #endif | |
266 #ifdef SIGEMT | |
267 {SIGEMT, "EMT", TRUE}, | |
268 #endif | |
269 #ifdef SIGFPE | |
270 {SIGFPE, "FPE", TRUE}, | |
271 #endif | |
272 #ifdef SIGBUS | |
273 {SIGBUS, "BUS", TRUE}, | |
274 #endif | |
4074 | 275 #if defined(SIGSEGV) && !defined(FEAT_MZSCHEME) |
276 /* MzScheme uses SEGV in its garbage collector */ | |
7 | 277 {SIGSEGV, "SEGV", TRUE}, |
278 #endif | |
279 #ifdef SIGSYS | |
280 {SIGSYS, "SYS", TRUE}, | |
281 #endif | |
282 #ifdef SIGALRM | |
283 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */ | |
284 #endif | |
285 #ifdef SIGTERM | |
286 {SIGTERM, "TERM", TRUE}, | |
287 #endif | |
2701 | 288 #if defined(SIGVTALRM) && !defined(FEAT_RUBY) |
7 | 289 {SIGVTALRM, "VTALRM", TRUE}, |
290 #endif | |
1560 | 291 #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING) |
292 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling | |
293 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */ | |
7 | 294 {SIGPROF, "PROF", TRUE}, |
295 #endif | |
296 #ifdef SIGXCPU | |
297 {SIGXCPU, "XCPU", TRUE}, | |
298 #endif | |
299 #ifdef SIGXFSZ | |
300 {SIGXFSZ, "XFSZ", TRUE}, | |
301 #endif | |
302 #ifdef SIGUSR1 | |
303 {SIGUSR1, "USR1", TRUE}, | |
304 #endif | |
1620 | 305 #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE) |
306 /* Used for sysmouse handling */ | |
7 | 307 {SIGUSR2, "USR2", TRUE}, |
308 #endif | |
309 #ifdef SIGINT | |
310 {SIGINT, "INT", FALSE}, | |
311 #endif | |
312 #ifdef SIGWINCH | |
313 {SIGWINCH, "WINCH", FALSE}, | |
314 #endif | |
315 #ifdef SIGTSTP | |
316 {SIGTSTP, "TSTP", FALSE}, | |
317 #endif | |
318 #ifdef SIGPIPE | |
319 {SIGPIPE, "PIPE", FALSE}, | |
320 #endif | |
321 {-1, "Unknown!", FALSE} | |
322 }; | |
323 | |
1935 | 324 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
325 mch_chdir(char *path) |
1935 | 326 { |
327 if (p_verbose >= 5) | |
328 { | |
329 verbose_enter(); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
330 smsg("chdir(%s)", path); |
1935 | 331 verbose_leave(); |
332 } | |
333 # ifdef VMS | |
334 return chdir(vms_fixfilename(path)); | |
335 # else | |
336 return chdir(path); | |
337 # endif | |
338 } | |
339 | |
12104
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
340 /* Why is NeXT excluded here (and not in os_unixx.h)? */ |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
341 #if defined(ECHOE) && defined(ICANON) \ |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
342 && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) \ |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
343 && !defined(__NeXT__) |
12104
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
344 # define NEW_TTY_SYSTEM |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
345 #endif |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
346 |
1757 | 347 /* |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
348 * Write s[len] to the screen (stdout). |
1757 | 349 */ |
7 | 350 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
351 mch_write(char_u *s, int len) |
7 | 352 { |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
353 vim_ignored = (int)write(1, (char *)s, len); |
7 | 354 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
|
355 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL); |
7 | 356 } |
357 | |
358 /* | |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
359 * Function passed to inchar_loop() to handle window resizing. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
360 * If "check_only" is TRUE: Return whether there was a resize. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
361 * If "check_only" is FALSE: Deal with the window resized. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
362 */ |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
363 static int |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
364 resize_func(int check_only) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
365 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
366 if (check_only) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
367 return do_resize; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
368 while (do_resize) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
369 handle_resize(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
370 return FALSE; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
371 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
372 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
373 /* |
1450 | 374 * mch_inchar(): low level input function. |
7 | 375 * Get a characters from the keyboard. |
376 * Return the number of characters that are available. | |
377 * If wtime == 0 do not wait for characters. | |
378 * If wtime == n wait a short time for characters. | |
379 * If wtime == -1 wait forever for characters. | |
380 */ | |
381 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
382 mch_inchar( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
383 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
384 int maxlen, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
385 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
|
386 int tb_change_cnt) |
7 | 387 { |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
388 return inchar_loop(buf, maxlen, wtime, tb_change_cnt, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15632
diff
changeset
|
389 WaitForChar, resize_func); |
7 | 390 } |
391 | |
392 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
393 handle_resize(void) |
7 | 394 { |
395 do_resize = FALSE; | |
396 shell_resized(); | |
397 } | |
398 | |
399 /* | |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
400 * Return non-zero if a character is available. |
7 | 401 */ |
402 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
403 mch_char_avail(void) |
7 | 404 { |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
405 return WaitForChar(0L, NULL, FALSE); |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
406 } |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
407 |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
408 #if defined(FEAT_TERMINAL) || defined(PROTO) |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
409 /* |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
410 * Check for any pending input or messages. |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
411 */ |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
412 int |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
413 mch_check_messages(void) |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
414 { |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
415 return WaitForChar(0L, NULL, TRUE); |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
416 } |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
417 #endif |
7 | 418 |
419 #if defined(HAVE_TOTAL_MEM) || defined(PROTO) | |
420 # ifdef HAVE_SYS_RESOURCE_H | |
1879 | 421 # include <sys/resource.h> |
7 | 422 # endif |
423 # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) | |
424 # include <sys/sysctl.h> | |
425 # endif | |
426 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) | |
427 # include <sys/sysinfo.h> | |
428 # endif | |
13396
5252ca53093a
patch 8.0.1572: Mac: getting memory size doesn't work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13388
diff
changeset
|
429 # ifdef MACOS_X |
13355
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
430 # include <mach/mach_host.h> |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
431 # include <mach/mach_port.h> |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
432 # endif |
7 | 433 |
434 /* | |
1110 | 435 * Return total amount of memory available in Kbyte. |
436 * Doesn't change when memory has been allocated. | |
7 | 437 */ |
438 long_u | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
439 mch_total_mem(int special UNUSED) |
7 | 440 { |
441 long_u mem = 0; | |
1110 | 442 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */ |
7 | 443 |
13396
5252ca53093a
patch 8.0.1572: Mac: getting memory size doesn't work everywhere
Christian Brabandt <cb@256bit.org>
parents:
13388
diff
changeset
|
444 # ifdef MACOS_X |
13355
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
445 { |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
446 /* Mac (Darwin) way of getting the amount of RAM available */ |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
447 mach_port_t host = mach_host_self(); |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
448 kern_return_t kret; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
449 # ifdef HOST_VM_INFO64 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
450 struct vm_statistics64 vm_stat; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
451 natural_t count = HOST_VM_INFO64_COUNT; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
452 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
453 kret = host_statistics64(host, HOST_VM_INFO64, |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
454 (host_info64_t)&vm_stat, &count); |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
455 # else |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
456 struct vm_statistics vm_stat; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
457 natural_t count = HOST_VM_INFO_COUNT; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
458 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
459 kret = host_statistics(host, HOST_VM_INFO, |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
460 (host_info_t)&vm_stat, &count); |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
461 # endif |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
462 if (kret == KERN_SUCCESS) |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
463 /* get the amount of user memory by summing each usage */ |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
464 mem = (long_u)(vm_stat.free_count + vm_stat.active_count |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
465 + vm_stat.inactive_count |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
466 # ifdef MAC_OS_X_VERSION_10_9 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
467 + vm_stat.compressor_page_count |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
468 # endif |
13511
8db9449b5c79
patch 8.0.1629: Mac: getpagesize() is deprecated
Christian Brabandt <cb@256bit.org>
parents:
13478
diff
changeset
|
469 ) * sysconf(_SC_PAGESIZE); |
13355
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
470 mach_port_deallocate(mach_task_self(), host); |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
471 } |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
472 # endif |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
473 |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
474 # ifdef HAVE_SYSCTL |
13355
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
475 if (mem == 0) |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
476 { |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
477 /* BSD way of getting the amount of RAM available. */ |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
478 int mib[2]; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
479 size_t len = sizeof(long_u); |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
480 # ifdef HW_USERMEM64 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
481 long_u physmem; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
482 # else |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
483 /* sysctl() may return 32 bit or 64 bit, accept both */ |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
484 union { |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
485 int_u u32; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
486 long_u u64; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
487 } physmem; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
488 # endif |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
489 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
490 mib[0] = CTL_HW; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
491 # ifdef HW_USERMEM64 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
492 mib[1] = HW_USERMEM64; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
493 # else |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
494 mib[1] = HW_USERMEM; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
495 # endif |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
496 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0) |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
497 { |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
498 # ifdef HW_USERMEM64 |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
499 mem = (long_u)physmem; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
500 # else |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
501 if (len == sizeof(physmem.u64)) |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
502 mem = (long_u)physmem.u64; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
503 else |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
504 mem = (long_u)physmem.u32; |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
505 # endif |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
506 } |
0bc67f4e2947
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
507 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
508 # endif |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
509 |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
510 # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) |
7 | 511 if (mem == 0) |
512 { | |
513 struct sysinfo sinfo; | |
514 | |
515 /* Linux way of getting amount of RAM available */ | |
516 if (sysinfo(&sinfo) == 0) | |
1110 | 517 { |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
518 # ifdef HAVE_SYSINFO_MEM_UNIT |
1110 | 519 /* avoid overflow as much as possible */ |
520 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0) | |
521 { | |
522 sinfo.mem_unit = sinfo.mem_unit >> 1; | |
523 --shiftright; | |
524 } | |
525 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
|
526 # else |
7 | 527 mem = sinfo.totalram; |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
528 # endif |
1110 | 529 } |
7 | 530 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
531 # endif |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
532 |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
533 # ifdef HAVE_SYSCONF |
7 | 534 if (mem == 0) |
535 { | |
536 long pagesize, pagecount; | |
537 | |
538 /* Solaris way of getting amount of RAM available */ | |
539 pagesize = sysconf(_SC_PAGESIZE); | |
540 pagecount = sysconf(_SC_PHYS_PAGES); | |
541 if (pagesize > 0 && pagecount > 0) | |
1110 | 542 { |
543 /* avoid overflow as much as possible */ | |
544 while (shiftright > 0 && (pagesize & 1) == 0) | |
545 { | |
1204 | 546 pagesize = (long_u)pagesize >> 1; |
1110 | 547 --shiftright; |
548 } | |
7 | 549 mem = (long_u)pagesize * pagecount; |
1110 | 550 } |
7 | 551 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
552 # endif |
7 | 553 |
554 /* Return the minimum of the physical memory and the user limit, because | |
555 * 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
|
556 # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) |
7 | 557 { |
558 struct rlimit rlp; | |
559 | |
560 if (getrlimit(RLIMIT_DATA, &rlp) == 0 | |
561 && 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
|
562 # ifdef RLIM_INFINITY |
7 | 563 && rlp.rlim_cur != RLIM_INFINITY |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
564 # endif |
1110 | 565 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright) |
7 | 566 ) |
1110 | 567 { |
568 mem = (long_u)rlp.rlim_cur; | |
569 shiftright = 10; | |
570 } | |
7 | 571 } |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
572 # endif |
7 | 573 |
574 if (mem > 0) | |
1110 | 575 return mem >> shiftright; |
576 return (long_u)0x1fffff; | |
7 | 577 } |
578 #endif | |
579 | |
580 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
581 mch_delay(long msec, int ignoreinput) |
7 | 582 { |
583 int old_tmode; | |
14 | 584 #ifdef FEAT_MZSCHEME |
585 long total = msec; /* remember original value */ | |
586 #endif | |
7 | 587 |
588 if (ignoreinput) | |
589 { | |
590 /* Go to cooked mode without echo, to allow SIGINT interrupting us | |
1530 | 591 * here. But we don't want QUIT to kill us (CTRL-\ used in a |
592 * shell may produce SIGQUIT). */ | |
593 in_mch_delay = TRUE; | |
7 | 594 old_tmode = curr_tmode; |
595 if (curr_tmode == TMODE_RAW) | |
596 settmode(TMODE_SLEEP); | |
597 | |
598 /* | |
599 * Everybody sleeps in a different way... | |
600 * Prefer nanosleep(), some versions of usleep() can only sleep up to | |
601 * one second. | |
602 */ | |
14 | 603 #ifdef FEAT_MZSCHEME |
604 do | |
605 { | |
606 /* if total is large enough, wait by portions in p_mzq */ | |
607 if (total > p_mzq) | |
608 msec = p_mzq; | |
609 else | |
610 msec = total; | |
611 total -= msec; | |
612 #endif | |
7 | 613 #ifdef HAVE_NANOSLEEP |
614 { | |
615 struct timespec ts; | |
616 | |
617 ts.tv_sec = msec / 1000; | |
618 ts.tv_nsec = (msec % 1000) * 1000000; | |
619 (void)nanosleep(&ts, NULL); | |
620 } | |
621 #else | |
622 # ifdef HAVE_USLEEP | |
623 while (msec >= 1000) | |
624 { | |
625 usleep((unsigned int)(999 * 1000)); | |
626 msec -= 999; | |
627 } | |
628 usleep((unsigned int)(msec * 1000)); | |
629 # else | |
630 # ifndef HAVE_SELECT | |
631 poll(NULL, 0, (int)msec); | |
632 # else | |
633 { | |
634 struct timeval tv; | |
635 | |
636 tv.tv_sec = msec / 1000; | |
637 tv.tv_usec = (msec % 1000) * 1000; | |
638 /* | |
639 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get | |
640 * a patch from Sun to fix this. Reported by Gunnar Pedersen. | |
641 */ | |
642 select(0, NULL, NULL, NULL, &tv); | |
643 } | |
644 # endif /* HAVE_SELECT */ | |
645 # endif /* HAVE_NANOSLEEP */ | |
646 #endif /* HAVE_USLEEP */ | |
14 | 647 #ifdef FEAT_MZSCHEME |
648 } | |
649 while (total > 0); | |
650 #endif | |
7 | 651 |
652 settmode(old_tmode); | |
1530 | 653 in_mch_delay = FALSE; |
7 | 654 } |
655 else | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
656 WaitForChar(msec, NULL, FALSE); |
7 | 657 } |
658 | |
180 | 659 #if defined(HAVE_STACK_LIMIT) \ |
7 | 660 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK)) |
661 # define HAVE_CHECK_STACK_GROWTH | |
662 /* | |
663 * Support for checking for an almost-out-of-stack-space situation. | |
664 */ | |
665 | |
666 /* | |
667 * Return a pointer to an item on the stack. Used to find out if the stack | |
668 * grows up or down. | |
669 */ | |
670 static int stack_grows_downwards; | |
671 | |
672 /* | |
673 * Find out if the stack grows upwards or downwards. | |
674 * "p" points to a variable on the stack of the caller. | |
675 */ | |
676 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
677 check_stack_growth(char *p) |
7 | 678 { |
679 int i; | |
680 | |
681 stack_grows_downwards = (p > (char *)&i); | |
682 } | |
683 #endif | |
684 | |
180 | 685 #if defined(HAVE_STACK_LIMIT) || defined(PROTO) |
7 | 686 static char *stack_limit = NULL; |
687 | |
688 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) | |
689 # include <pthread.h> | |
690 # include <pthread_np.h> | |
691 #endif | |
692 | |
693 /* | |
694 * Find out until how var the stack can grow without getting into trouble. | |
695 * Called when starting up and when switching to the signal stack in | |
696 * deathtrap(). | |
697 */ | |
698 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
699 get_stack_limit(void) |
7 | 700 { |
701 struct rlimit rlp; | |
702 int i; | |
703 long lim; | |
704 | |
705 /* Set the stack limit to 15/16 of the allowable size. Skip this when the | |
706 * limit doesn't fit in a long (rlim_cur might be "long long"). */ | |
707 if (getrlimit(RLIMIT_STACK, &rlp) == 0 | |
708 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) | |
709 # ifdef RLIM_INFINITY | |
710 && rlp.rlim_cur != RLIM_INFINITY | |
711 # endif | |
712 ) | |
713 { | |
714 lim = (long)rlp.rlim_cur; | |
715 #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) | |
716 { | |
717 pthread_attr_t attr; | |
718 size_t size; | |
719 | |
720 /* On FreeBSD the initial thread always has a fixed stack size, no | |
721 * matter what the limits are set to. Normally it's 1 Mbyte. */ | |
722 pthread_attr_init(&attr); | |
723 if (pthread_attr_get_np(pthread_self(), &attr) == 0) | |
724 { | |
725 pthread_attr_getstacksize(&attr, &size); | |
726 if (lim > (long)size) | |
727 lim = (long)size; | |
728 } | |
729 pthread_attr_destroy(&attr); | |
730 } | |
731 #endif | |
732 if (stack_grows_downwards) | |
733 { | |
734 stack_limit = (char *)((long)&i - (lim / 16L * 15L)); | |
735 if (stack_limit >= (char *)&i) | |
736 /* overflow, set to 1/16 of current stack position */ | |
737 stack_limit = (char *)((long)&i / 16L); | |
738 } | |
739 else | |
740 { | |
741 stack_limit = (char *)((long)&i + (lim / 16L * 15L)); | |
742 if (stack_limit <= (char *)&i) | |
743 stack_limit = NULL; /* overflow */ | |
744 } | |
745 } | |
746 } | |
747 | |
748 /* | |
749 * Return FAIL when running out of stack space. | |
750 * "p" must point to any variable local to the caller that's on the stack. | |
751 */ | |
752 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
753 mch_stackcheck(char *p) |
7 | 754 { |
755 if (stack_limit != NULL) | |
756 { | |
757 if (stack_grows_downwards) | |
758 { | |
759 if (p < stack_limit) | |
760 return FAIL; | |
761 } | |
762 else if (p > stack_limit) | |
763 return FAIL; | |
764 } | |
765 return OK; | |
766 } | |
767 #endif | |
768 | |
769 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
770 /* | |
771 * Support for using the signal stack. | |
772 * This helps when we run out of stack space, which causes a SIGSEGV. The | |
773 * signal handler then must run on another stack, since the normal stack is | |
774 * completely full. | |
775 */ | |
776 | |
777 #ifndef SIGSTKSZ | |
778 # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */ | |
779 #endif | |
780 | |
781 # ifdef HAVE_SIGALTSTACK | |
782 static stack_t sigstk; /* for sigaltstack() */ | |
783 # else | |
784 static struct sigstack sigstk; /* for sigstack() */ | |
785 # endif | |
786 | |
787 static char *signal_stack; | |
788 | |
789 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
790 init_signal_stack(void) |
7 | 791 { |
792 if (signal_stack != NULL) | |
793 { | |
794 # ifdef HAVE_SIGALTSTACK | |
795 # ifdef HAVE_SS_BASE | |
796 sigstk.ss_base = signal_stack; | |
797 # else | |
798 sigstk.ss_sp = signal_stack; | |
799 # endif | |
800 sigstk.ss_size = SIGSTKSZ; | |
801 sigstk.ss_flags = 0; | |
802 (void)sigaltstack(&sigstk, NULL); | |
803 # else | |
804 sigstk.ss_sp = signal_stack; | |
805 if (stack_grows_downwards) | |
806 sigstk.ss_sp += SIGSTKSZ - 1; | |
807 sigstk.ss_onstack = 0; | |
808 (void)sigstack(&sigstk, NULL); | |
809 # endif | |
810 } | |
811 } | |
812 #endif | |
813 | |
814 /* | |
1832 | 815 * We need correct prototypes for a signal function, otherwise mean compilers |
7 | 816 * will barf when the second argument to signal() is ``wrong''. |
817 * Let me try it with a few tricky defines from my own osdef.h (jw). | |
818 */ | |
819 #if defined(SIGWINCH) | |
820 static RETSIGTYPE | |
821 sig_winch SIGDEFARG(sigarg) | |
822 { | |
823 /* this is not required on all systems, but it doesn't hurt anybody */ | |
824 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); | |
825 do_resize = TRUE; | |
826 SIGRETURN; | |
827 } | |
828 #endif | |
829 | |
830 #if defined(SIGINT) | |
831 static RETSIGTYPE | |
832 catch_sigint SIGDEFARG(sigarg) | |
833 { | |
834 /* this is not required on all systems, but it doesn't hurt anybody */ | |
835 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); | |
836 got_int = TRUE; | |
837 SIGRETURN; | |
838 } | |
839 #endif | |
840 | |
841 #if defined(SIGPWR) | |
842 static RETSIGTYPE | |
843 catch_sigpwr SIGDEFARG(sigarg) | |
844 { | |
37 | 845 /* this is not required on all systems, but it doesn't hurt anybody */ |
846 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); | |
7 | 847 /* |
848 * I'm not sure we get the SIGPWR signal when the system is really going | |
849 * down or when the batteries are almost empty. Just preserve the swap | |
850 * files and don't exit, that can't do any harm. | |
851 */ | |
852 ml_sync_all(FALSE, FALSE); | |
853 SIGRETURN; | |
854 } | |
855 #endif | |
856 | |
857 #ifdef SET_SIG_ALARM | |
858 /* | |
859 * signal function for alarm(). | |
860 */ | |
861 static RETSIGTYPE | |
862 sig_alarm SIGDEFARG(sigarg) | |
863 { | |
864 /* doesn't do anything, just to break a system call */ | |
865 sig_alarm_called = TRUE; | |
866 SIGRETURN; | |
867 } | |
868 #endif | |
869 | |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
870 #if (defined(HAVE_SETJMP_H) \ |
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
871 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \ |
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
872 || defined(FEAT_LIBCALL))) \ |
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
873 || defined(PROTO) |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
874 # define USING_SETJMP 1 |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
875 |
15282
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
876 // argument to SETJMP() |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
877 static JMP_BUF lc_jump_env; |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
878 |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
879 # ifdef SIGHASARG |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
880 // Caught signal number, 0 when no was signal caught; used for mch_libcall(). |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
881 // Volatile because it is used in signal handlers. |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
882 static volatile sig_atomic_t lc_signal; |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
883 # endif |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
884 |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
885 // TRUE when lc_jump_env is valid. |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
886 // Volatile because it is used in signal handler deathtrap(). |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
887 static volatile sig_atomic_t lc_active INIT(= FALSE); |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
888 |
7 | 889 /* |
890 * A simplistic version of setjmp() that only allows one level of using. | |
15282
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
891 * Used to protect areas where we could crash. |
7 | 892 * Don't call twice before calling mch_endjmp()!. |
15282
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
893 * |
7 | 894 * Usage: |
895 * mch_startjmp(); | |
896 * if (SETJMP(lc_jump_env) != 0) | |
897 * { | |
898 * mch_didjmp(); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
899 * emsg("crash!"); |
7 | 900 * } |
901 * else | |
902 * { | |
903 * do_the_work; | |
904 * mch_endjmp(); | |
905 * } | |
906 * Note: Can't move SETJMP() here, because a function calling setjmp() must | |
907 * not return before the saved environment is used. | |
908 * Returns OK for normal return, FAIL when the protected code caused a | |
909 * problem and LONGJMP() was used. | |
910 */ | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
911 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
912 mch_startjmp(void) |
7 | 913 { |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
914 # ifdef SIGHASARG |
7 | 915 lc_signal = 0; |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
916 # endif |
7 | 917 lc_active = TRUE; |
918 } | |
919 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
920 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
921 mch_endjmp(void) |
7 | 922 { |
923 lc_active = FALSE; | |
924 } | |
925 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
926 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
927 mch_didjmp(void) |
7 | 928 { |
929 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
15282
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
930 // On FreeBSD the signal stack has to be reset after using siglongjmp(), |
186eebc31ec0
patch 8.1.0649: setjmp() variables defined globally are used in one file
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
931 // otherwise catching the signal only works once. |
7 | 932 init_signal_stack(); |
933 # endif | |
934 } | |
935 #endif | |
936 | |
937 /* | |
938 * This function handles deadly signals. | |
5338 | 939 * It tries to preserve any swap files and exit properly. |
7 | 940 * (partly from Elvis). |
5338 | 941 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in |
942 * a deadlock. | |
7 | 943 */ |
944 static RETSIGTYPE | |
945 deathtrap SIGDEFARG(sigarg) | |
946 { | |
947 static int entered = 0; /* count the number of times we got here. | |
948 Note: when memory has been corrupted | |
949 this may get an arbitrary value! */ | |
950 #ifdef SIGHASARG | |
951 int i; | |
952 #endif | |
953 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
954 #if defined(USING_SETJMP) |
7 | 955 /* |
956 * Catch a crash in protected code. | |
957 * Restores the environment saved in lc_jump_env, which looks like | |
958 * SETJMP() returns 1. | |
959 */ | |
960 if (lc_active) | |
961 { | |
962 # if defined(SIGHASARG) | |
963 lc_signal = sigarg; | |
964 # endif | |
965 lc_active = FALSE; /* don't jump again */ | |
966 LONGJMP(lc_jump_env, 1); | |
967 /* NOTREACHED */ | |
968 } | |
969 #endif | |
970 | |
36 | 971 #ifdef SIGHASARG |
1530 | 972 # ifdef SIGQUIT |
973 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to | |
974 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when | |
975 * pressing CTRL-\, but we don't want Vim to exit then. */ | |
976 if (in_mch_delay && sigarg == SIGQUIT) | |
977 SIGRETURN; | |
978 # endif | |
979 | |
37 | 980 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return |
981 * here. This avoids that a non-reentrant function is interrupted, e.g., | |
982 * free(). Calling free() again may then cause a crash. */ | |
983 if (entered == 0 | |
984 && (0 | |
985 # ifdef SIGHUP | |
986 || sigarg == SIGHUP | |
987 # endif | |
988 # ifdef SIGQUIT | |
989 || sigarg == SIGQUIT | |
990 # endif | |
991 # ifdef SIGTERM | |
992 || sigarg == SIGTERM | |
993 # endif | |
994 # ifdef SIGPWR | |
995 || sigarg == SIGPWR | |
996 # endif | |
997 # ifdef SIGUSR1 | |
998 || sigarg == SIGUSR1 | |
999 # endif | |
1000 # ifdef SIGUSR2 | |
1001 || sigarg == SIGUSR2 | |
1002 # endif | |
1003 ) | |
413 | 1004 && !vim_handle_signal(sigarg)) |
36 | 1005 SIGRETURN; |
1006 #endif | |
1007 | |
7 | 1008 /* Remember how often we have been called. */ |
1009 ++entered; | |
1010 | |
9262
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1011 /* 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
|
1012 * available in the signal stack. */ |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1013 block_autocmds(); |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1014 |
7 | 1015 #ifdef FEAT_EVAL |
1016 /* Set the v:dying variable. */ | |
1017 set_vim_var_nr(VV_DYING, (long)entered); | |
1018 #endif | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13357
diff
changeset
|
1019 v_dying = entered; |
7 | 1020 |
180 | 1021 #ifdef HAVE_STACK_LIMIT |
7 | 1022 /* Since we are now using the signal stack, need to reset the stack |
1023 * limit. Otherwise using a regexp will fail. */ | |
1024 get_stack_limit(); | |
1025 #endif | |
1026 | |
758 | 1027 #if 0 |
1028 /* This is for opening gdb the moment Vim crashes. | |
1029 * You need to manually adjust the file name and Vim executable name. | |
1030 * Suggested by SungHyun Nam. */ | |
1031 { | |
1032 # define VI_GDB_FILE "/tmp/vimgdb" | |
1033 # define VIM_NAME "/usr/bin/vim" | |
1034 FILE *fp = fopen(VI_GDB_FILE, "w"); | |
1035 if (fp) | |
1036 { | |
1037 fprintf(fp, | |
1038 "file %s\n" | |
1039 "attach %d\n" | |
1040 "set height 1000\n" | |
1041 "bt full\n" | |
1042 , VIM_NAME, getpid()); | |
1043 fclose(fp); | |
1044 system("xterm -e gdb -x "VI_GDB_FILE); | |
1045 unlink(VI_GDB_FILE); | |
1046 } | |
1047 } | |
1048 #endif | |
1049 | |
7 | 1050 #ifdef SIGHASARG |
1051 /* try to find the name of this signal */ | |
1052 for (i = 0; signal_info[i].sig != -1; i++) | |
1053 if (sigarg == signal_info[i].sig) | |
1054 break; | |
1055 deadly_signal = sigarg; | |
1056 #endif | |
1057 | |
1058 full_screen = FALSE; /* don't write message to the GUI, it might be | |
1059 * part of the problem... */ | |
1060 /* | |
1061 * If something goes wrong after entering here, we may get here again. | |
1062 * When this happens, give a message and try to exit nicely (resetting the | |
1063 * terminal mode, etc.) | |
1064 * When this happens twice, just exit, don't even try to give a message, | |
1065 * stack may be corrupt or something weird. | |
1066 * When this still happens again (or memory was corrupted in such a way | |
1067 * that "entered" was clobbered) use _exit(), don't try freeing resources. | |
1068 */ | |
1069 if (entered >= 3) | |
1070 { | |
1071 reset_signals(); /* don't catch any signals anymore */ | |
1072 may_core_dump(); | |
1073 if (entered >= 4) | |
1074 _exit(8); | |
1075 exit(7); | |
1076 } | |
1077 if (entered == 2) | |
1078 { | |
5338 | 1079 /* No translation, it may call malloc(). */ |
1080 OUT_STR("Vim: Double signal, exiting\n"); | |
7 | 1081 out_flush(); |
1082 getout(1); | |
1083 } | |
1084 | |
5338 | 1085 /* No translation, it may call malloc(). */ |
7 | 1086 #ifdef SIGHASARG |
5338 | 1087 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n", |
7 | 1088 signal_info[i].name); |
1089 #else | |
5338 | 1090 sprintf((char *)IObuff, "Vim: Caught deadly signal\n"); |
1091 #endif | |
1092 | |
1093 /* Preserve files and exit. This sets the really_exiting flag to prevent | |
1094 * calling free(). */ | |
1095 preserve_exit(); | |
7 | 1096 |
9262
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1097 /* NOTREACHED */ |
c9f2b70feac0
commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
1098 |
33 | 1099 #ifdef NBDEBUG |
1100 reset_signals(); | |
1101 may_core_dump(); | |
1102 abort(); | |
1103 #endif | |
1104 | |
7 | 1105 SIGRETURN; |
1106 } | |
1107 | |
1108 /* | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1109 * Invoked after receiving SIGCONT. We don't know what happened while |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1110 * sleeping, deal with part of that. |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1111 */ |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1112 static void |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1113 after_sigcont(void) |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1114 { |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1115 # ifdef FEAT_TITLE |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1116 // Don't change "oldtitle" in a signal handler, set a flag to obtain it |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1117 // again later. |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1118 oldtitle_outdated = TRUE; |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1119 # endif |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1120 settmode(TMODE_RAW); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1121 need_check_timestamps = TRUE; |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1122 did_check_timestamps = FALSE; |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1123 } |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1124 |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1125 #if defined(SIGCONT) |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1126 static RETSIGTYPE sigcont_handler SIGPROTOARG; |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
1127 static volatile sig_atomic_t in_mch_suspend = FALSE; |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1128 |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1129 /* |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1130 * With multi-threading, suspending might not work immediately. Catch the |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1131 * SIGCONT signal, which will be used as an indication whether the suspending |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1132 * has been done or not. |
1832 | 1133 * |
1134 * On Linux, signal is not always handled immediately either. | |
1135 * See https://bugs.launchpad.net/bugs/291373 | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1136 * Probably because the signal is handled in another thread. |
1832 | 1137 * |
2701 | 1138 * volatile because it is used in signal handler sigcont_handler(). |
7 | 1139 */ |
14597
27e814e21594
patch 8.1.0312: wrong type for flags used in signal handlers
Christian Brabandt <cb@256bit.org>
parents:
14581
diff
changeset
|
1140 static volatile sig_atomic_t sigcont_received; |
14577
33d751f40e4c
patch 8.1.0302: crash when using :suspend and "fg"
Christian Brabandt <cb@256bit.org>
parents:
14573
diff
changeset
|
1141 static RETSIGTYPE sigcont_handler SIGPROTOARG; |
7 | 1142 |
1143 /* | |
1144 * signal handler for SIGCONT | |
1145 */ | |
1146 static RETSIGTYPE | |
1147 sigcont_handler SIGDEFARG(sigarg) | |
1148 { | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1149 if (in_mch_suspend) |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1150 { |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1151 sigcont_received = TRUE; |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1152 } |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1153 else |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1154 { |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1155 // We didn't suspend ourselves, assume we were stopped by a SIGSTOP |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1156 // signal (which can't be intercepted) and get a SIGCONT. Need to get |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1157 // back to a sane mode. We should redraw, but we can't really do that |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1158 // in a signal handler, do a redraw later. |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1159 after_sigcont(); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1160 redraw_later(CLEAR); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1161 cursor_on_force(); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1162 out_flush(); |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1163 } |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1164 |
7 | 1165 SIGRETURN; |
1166 } | |
1167 #endif | |
1168 | |
14862
27b9a84395b5
patch 8.1.0443: unnecessary static function prototypes
Christian Brabandt <cb@256bit.org>
parents:
14828
diff
changeset
|
1169 #if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4230 | 1170 # ifdef USE_SYSTEM |
4209 | 1171 static void *clip_star_save = NULL; |
1172 static void *clip_plus_save = NULL; | |
4230 | 1173 # endif |
2586 | 1174 |
1175 /* | |
1176 * Called when Vim is going to sleep or execute a shell command. | |
1177 * We can't respond to requests for the X selections. Lose them, otherwise | |
1178 * other applications will hang. But first copy the text to cut buffer 0. | |
1179 */ | |
1180 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1181 loose_clipboard(void) |
2586 | 1182 { |
1183 if (clip_star.owned || clip_plus.owned) | |
1184 { | |
1185 x11_export_final_selection(); | |
1186 if (clip_star.owned) | |
1187 clip_lose_selection(&clip_star); | |
1188 if (clip_plus.owned) | |
1189 clip_lose_selection(&clip_plus); | |
1190 if (x11_display != NULL) | |
1191 XFlush(x11_display); | |
1192 } | |
1193 } | |
4209 | 1194 |
4230 | 1195 # ifdef USE_SYSTEM |
4209 | 1196 /* |
1197 * Save clipboard text to restore later. | |
1198 */ | |
1199 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1200 save_clipboard(void) |
4209 | 1201 { |
1202 if (clip_star.owned) | |
1203 clip_star_save = get_register('*', TRUE); | |
1204 if (clip_plus.owned) | |
1205 clip_plus_save = get_register('+', TRUE); | |
1206 } | |
1207 | |
1208 /* | |
1209 * Restore clipboard text if no one own the X selection. | |
1210 */ | |
1211 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1212 restore_clipboard(void) |
4209 | 1213 { |
1214 if (clip_star_save != NULL) | |
1215 { | |
1216 if (!clip_gen_owner_exists(&clip_star)) | |
1217 put_register('*', clip_star_save); | |
1218 else | |
1219 free_register(clip_star_save); | |
1220 clip_star_save = NULL; | |
1221 } | |
1222 if (clip_plus_save != NULL) | |
1223 { | |
1224 if (!clip_gen_owner_exists(&clip_plus)) | |
1225 put_register('+', clip_plus_save); | |
1226 else | |
1227 free_register(clip_plus_save); | |
1228 clip_plus_save = NULL; | |
1229 } | |
1230 } | |
4230 | 1231 # endif |
2586 | 1232 #endif |
1233 | |
7 | 1234 /* |
1235 * If the machine has job control, use it to suspend the program, | |
1236 * otherwise fake it by starting a new shell. | |
1237 */ | |
1238 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1239 mch_suspend(void) |
7 | 1240 { |
1241 /* BeOS does have SIGTSTP, but it doesn't work. */ | |
1242 #if defined(SIGTSTP) && !defined(__BEOS__) | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1243 in_mch_suspend = TRUE; |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1244 |
7 | 1245 out_flush(); /* needed to make cursor visible on some systems */ |
1246 settmode(TMODE_COOK); | |
1247 out_flush(); /* needed to disable mouse on some systems */ | |
1248 | |
1249 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) | |
2586 | 1250 loose_clipboard(); |
7 | 1251 # endif |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1252 # if defined(SIGCONT) |
7 | 1253 sigcont_received = FALSE; |
1254 # endif | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1255 |
7 | 1256 kill(0, SIGTSTP); /* send ourselves a STOP signal */ |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1257 |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1258 # if defined(SIGCONT) |
1832 | 1259 /* |
1260 * Wait for the SIGCONT signal to be handled. It generally happens | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1261 * immediately, but somehow not all the time, probably because it's handled |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1262 * in another thread. Do not call pause() because there would be race |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1263 * condition which would hang Vim if signal happened in between the test of |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1264 * sigcont_received and the call to pause(). If signal is not yet received, |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1265 * sleep 0, 1, 2, 3 ms. Don't bother waiting further if signal is not |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1266 * received after 1+2+3 ms (not expected to happen). |
1832 | 1267 */ |
1268 { | |
1932 | 1269 long wait_time; |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1270 |
1932 | 1271 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) |
1272 mch_delay(wait_time, FALSE); | |
1832 | 1273 } |
7 | 1274 # endif |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1275 in_mch_suspend = FALSE; |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1276 |
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1277 after_sigcont(); |
7 | 1278 #else |
1279 suspend_shell(); | |
1280 #endif | |
1281 } | |
1282 | |
1283 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1284 mch_init(void) |
7 | 1285 { |
1286 Columns = 80; | |
1287 Rows = 24; | |
1288 | |
1289 out_flush(); | |
1290 set_signals(); | |
167 | 1291 |
765 | 1292 #ifdef MACOS_CONVERT |
167 | 1293 mac_conv_init(); |
1294 #endif | |
4168 | 1295 #ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
1296 win_clip_init(); | |
1297 #endif | |
7 | 1298 } |
1299 | |
1300 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1301 set_signals(void) |
7 | 1302 { |
1303 #if defined(SIGWINCH) | |
1304 /* | |
1305 * WINDOW CHANGE signal is handled with sig_winch(). | |
1306 */ | |
1307 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); | |
1308 #endif | |
1309 | |
1310 /* | |
1311 * We want the STOP signal to work, to make mch_suspend() work. | |
1312 * For "rvim" the STOP signal is ignored. | |
1313 */ | |
1314 #ifdef SIGTSTP | |
1315 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); | |
1316 #endif | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1317 #if defined(SIGCONT) |
7 | 1318 signal(SIGCONT, sigcont_handler); |
1319 #endif | |
1320 | |
1321 /* | |
1322 * We want to ignore breaking of PIPEs. | |
1323 */ | |
1324 #ifdef SIGPIPE | |
1325 signal(SIGPIPE, SIG_IGN); | |
1326 #endif | |
1327 | |
1328 #ifdef SIGINT | |
167 | 1329 catch_int_signal(); |
7 | 1330 #endif |
1331 | |
1332 /* | |
1333 * Ignore alarm signals (Perl's alarm() generates it). | |
1334 */ | |
1335 #ifdef SIGALRM | |
1336 signal(SIGALRM, SIG_IGN); | |
1337 #endif | |
1338 | |
1339 /* | |
1340 * Catch SIGPWR (power failure?) to preserve the swap files, so that no | |
1341 * work will be lost. | |
1342 */ | |
1343 #ifdef SIGPWR | |
1344 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); | |
1345 #endif | |
1346 | |
1347 /* | |
1348 * Arrange for other signals to gracefully shutdown Vim. | |
1349 */ | |
1350 catch_signals(deathtrap, SIG_ERR); | |
1351 | |
1352 #if defined(FEAT_GUI) && defined(SIGHUP) | |
1353 /* | |
1354 * When the GUI is running, ignore the hangup signal. | |
1355 */ | |
1356 if (gui.in_use) | |
1357 signal(SIGHUP, SIG_IGN); | |
1358 #endif | |
1359 } | |
1360 | |
167 | 1361 #if defined(SIGINT) || defined(PROTO) |
1362 /* | |
1363 * Catch CTRL-C (only works while in Cooked mode). | |
1364 */ | |
1365 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1366 catch_int_signal(void) |
167 | 1367 { |
1368 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); | |
1369 } | |
1370 #endif | |
1371 | |
7 | 1372 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1373 reset_signals(void) |
7 | 1374 { |
1375 catch_signals(SIG_DFL, SIG_DFL); | |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1376 #if defined(SIGCONT) |
7 | 1377 /* SIGCONT isn't in the list, because its default action is ignore */ |
1378 signal(SIGCONT, SIG_DFL); | |
1379 #endif | |
1380 } | |
1381 | |
1382 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1383 catch_signals( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1384 RETSIGTYPE (*func_deadly)(), |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1385 RETSIGTYPE (*func_other)()) |
7 | 1386 { |
1387 int i; | |
1388 | |
1389 for (i = 0; signal_info[i].sig != -1; i++) | |
1390 if (signal_info[i].deadly) | |
1391 { | |
1392 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) | |
1393 struct sigaction sa; | |
1394 | |
1395 /* Setup to use the alternate stack for the signal function. */ | |
1396 sa.sa_handler = func_deadly; | |
1397 sigemptyset(&sa.sa_mask); | |
1398 # if defined(__linux__) && defined(_REENTRANT) | |
1399 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in | |
1400 * thread handling in combination with using the alternate stack: | |
1401 * pthread library functions try to use the stack pointer to | |
1402 * identify the current thread, causing a SEGV signal, which | |
1403 * recursively calls deathtrap() and hangs. */ | |
1404 sa.sa_flags = 0; | |
1405 # else | |
1406 sa.sa_flags = SA_ONSTACK; | |
1407 # endif | |
1408 sigaction(signal_info[i].sig, &sa, NULL); | |
1409 #else | |
1410 # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC) | |
1411 struct sigvec sv; | |
1412 | |
1413 /* Setup to use the alternate stack for the signal function. */ | |
1414 sv.sv_handler = func_deadly; | |
1415 sv.sv_mask = 0; | |
1416 sv.sv_flags = SV_ONSTACK; | |
1417 sigvec(signal_info[i].sig, &sv, NULL); | |
1418 # else | |
1419 signal(signal_info[i].sig, func_deadly); | |
1420 # endif | |
1421 #endif | |
1422 } | |
1423 else if (func_other != SIG_ERR) | |
1424 signal(signal_info[i].sig, func_other); | |
1425 } | |
1426 | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1427 #ifdef HAVE_SIGPROCMASK |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1428 static void |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1429 block_signals(sigset_t *set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1430 { |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1431 sigset_t newset; |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1432 int i; |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1433 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1434 sigemptyset(&newset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1435 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1436 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
|
1437 sigaddset(&newset, signal_info[i].sig); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1438 |
14581
bb02e9e33026
patch 8.1.0304: no redraw when using a STOP signal on Vim and then CONT
Christian Brabandt <cb@256bit.org>
parents:
14577
diff
changeset
|
1439 # if defined(SIGCONT) |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1440 /* 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
|
1441 sigaddset(&newset, SIGCONT); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1442 # endif |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1443 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1444 sigprocmask(SIG_BLOCK, &newset, set); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1445 } |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1446 |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1447 static void |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1448 unblock_signals(sigset_t *set) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1449 { |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1450 sigprocmask(SIG_SETMASK, set, NULL); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1451 } |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1452 #endif |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
1453 |
7 | 1454 /* |
37 | 1455 * Handling of SIGHUP, SIGQUIT and SIGTERM: |
1146 | 1456 * "when" == a signal: when busy, postpone and return FALSE, otherwise |
1457 * return TRUE | |
1458 * "when" == SIGNAL_BLOCK: Going to be busy, block signals | |
1459 * "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
|
1460 * signal |
36 | 1461 * Returns TRUE when Vim should exit. |
1462 */ | |
1463 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1464 vim_handle_signal(int sig) |
36 | 1465 { |
37 | 1466 static int got_signal = 0; |
1467 static int blocked = TRUE; | |
1468 | |
1469 switch (sig) | |
36 | 1470 { |
37 | 1471 case SIGNAL_BLOCK: blocked = TRUE; |
1472 break; | |
1473 | |
1474 case SIGNAL_UNBLOCK: blocked = FALSE; | |
1475 if (got_signal != 0) | |
1476 { | |
1477 kill(getpid(), got_signal); | |
1478 got_signal = 0; | |
1479 } | |
1480 break; | |
1481 | |
1482 default: if (!blocked) | |
36 | 1483 return TRUE; /* exit! */ |
37 | 1484 got_signal = sig; |
1485 #ifdef SIGPWR | |
1486 if (sig != SIGPWR) | |
1487 #endif | |
1488 got_int = TRUE; /* break any loops */ | |
36 | 1489 break; |
1490 } | |
1491 return FALSE; | |
1492 } | |
1493 | |
1494 /* | |
7 | 1495 * Check_win checks whether we have an interactive stdout. |
1496 */ | |
1497 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1498 mch_check_win(int argc UNUSED, char **argv UNUSED) |
7 | 1499 { |
1500 if (isatty(1)) | |
1501 return OK; | |
1502 return FAIL; | |
1503 } | |
1504 | |
1505 /* | |
1506 * Return TRUE if the input comes from a terminal, FALSE otherwise. | |
1507 */ | |
1508 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1509 mch_input_isatty(void) |
7 | 1510 { |
1511 if (isatty(read_cmd_fd)) | |
1512 return TRUE; | |
1513 return FALSE; | |
1514 } | |
1515 | |
1516 #ifdef FEAT_X11 | |
1517 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1518 # if defined(ELAPSED_TIMEVAL) \ |
7 | 1519 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)) |
1520 | |
1521 /* | |
1522 * Give a message about the elapsed time for opening the X window. | |
1523 */ | |
1524 static void | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1525 xopen_message(long elapsed_msec) |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1526 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
1527 smsg(_("Opening the X display took %ld msec"), elapsed_msec); |
7 | 1528 } |
1529 # endif | |
1530 #endif | |
1531 | |
1532 #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD)) | |
1533 /* | |
1534 * A few functions shared by X11 title and clipboard code. | |
1535 */ | |
1536 | |
1537 static int got_x_error = FALSE; | |
1538 | |
1539 /* | |
1540 * X Error handler, otherwise X just exits! (very rude) -- webb | |
1541 */ | |
1542 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1543 x_error_handler(Display *dpy, XErrorEvent *error_event) |
7 | 1544 { |
42 | 1545 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE); |
7 | 1546 STRCAT(IObuff, _("\nVim: Got X error\n")); |
1547 | |
1548 /* We cannot print a message and continue, because no X calls are allowed | |
1549 * here (causes my system to hang). Silently continuing might be an | |
1550 * alternative... */ | |
1551 preserve_exit(); /* preserve files and exit */ | |
1552 | |
1553 return 0; /* NOTREACHED */ | |
1554 } | |
1555 | |
1556 /* | |
1557 * Another X Error handler, just used to check for errors. | |
1558 */ | |
1559 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1560 x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED) |
7 | 1561 { |
1562 got_x_error = TRUE; | |
1563 return 0; | |
1564 } | |
1565 | |
15296
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1566 /* |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1567 * Return TRUE when connection to the X server is desired. |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1568 */ |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1569 static int |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1570 x_connect_to_server(void) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1571 { |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1572 // No point in connecting if we are exiting or dying. |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1573 if (exiting || v_dying) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1574 return FALSE; |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1575 |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1576 #if defined(FEAT_CLIENTSERVER) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1577 if (x_force_connect) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1578 return TRUE; |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1579 #endif |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1580 if (x_no_connect) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1581 return FALSE; |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1582 |
15306
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1583 // Check for a match with "exclude:" from 'clipboard'. |
15296
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1584 if (clip_exclude_prog != NULL) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1585 { |
15306
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1586 // Just in case we get called recursively, return FALSE. This could |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1587 // happen if vpeekc() is used while executing the prog and it causes a |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1588 // related callback to be invoked. |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1589 if (regprog_in_use(clip_exclude_prog)) |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1590 return FALSE; |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15298
diff
changeset
|
1591 |
15296
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1592 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0)) |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1593 return FALSE; |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1594 } |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1595 return TRUE; |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1596 } |
60e962106f8a
patch 8.1.0656: trying to reconnect to X server may cause problems
Bram Moolenaar <Bram@vim.org>
parents:
15282
diff
changeset
|
1597 |
7 | 1598 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
1599 # if defined(USING_SETJMP) |
7 | 1600 /* |
1601 * An X IO Error handler, used to catch error while opening the display. | |
1602 */ | |
1603 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1604 x_IOerror_check(Display *dpy UNUSED) |
7 | 1605 { |
1606 /* This function should not return, it causes exit(). Longjump instead. */ | |
1607 LONGJMP(lc_jump_env, 1); | |
15955
907481b9260f
patch 8.1.0983: checking __CYGWIN32__ unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1608 # if defined(VMS) || defined(__CYGWIN__) |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1609 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
|
1610 # endif |
7 | 1611 } |
1612 # endif | |
1613 | |
1614 /* | |
1615 * An X IO Error handler, used to catch terminal errors. | |
1616 */ | |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
1617 static int xterm_dpy_retry_count = 0; |
7 | 1618 |
1619 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1620 x_IOerror_handler(Display *dpy UNUSED) |
7 | 1621 { |
1622 xterm_dpy = NULL; | |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
1623 xterm_dpy_retry_count = 5; // Try reconnecting five times |
7 | 1624 x11_window = 0; |
1625 x11_display = NULL; | |
1626 xterm_Shell = (Widget)0; | |
1627 | |
1628 /* This function should not return, it causes exit(). Longjump instead. */ | |
1629 LONGJMP(x_jump_env, 1); | |
15955
907481b9260f
patch 8.1.0983: checking __CYGWIN32__ unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1630 # if defined(VMS) || defined(__CYGWIN__) |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
1940
diff
changeset
|
1631 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
|
1632 # endif |
7 | 1633 } |
6383 | 1634 |
1635 /* | |
1636 * If the X11 connection was lost try to restore it. | |
1637 * Helps when the X11 server was stopped and restarted while Vim was inactive | |
6448 | 1638 * (e.g. through tmux). |
6383 | 1639 */ |
1640 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1641 may_restore_clipboard(void) |
6383 | 1642 { |
15298
4aea6c2f56a8
patch 8.1.0657: get error for using regexp recursively
Bram Moolenaar <Bram@vim.org>
parents:
15296
diff
changeset
|
1643 // No point in restoring the connecting if we are exiting or dying. |
4aea6c2f56a8
patch 8.1.0657: get error for using regexp recursively
Bram Moolenaar <Bram@vim.org>
parents:
15296
diff
changeset
|
1644 if (!exiting && !v_dying && xterm_dpy_retry_count > 0) |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
1645 { |
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
1646 --xterm_dpy_retry_count; |
6458 | 1647 |
1648 # ifndef LESSTIF_VERSION | |
1649 /* This has been reported to avoid Vim getting stuck. */ | |
1650 if (app_context != (XtAppContext)NULL) | |
1651 { | |
1652 XtDestroyApplicationContext(app_context); | |
1653 app_context = (XtAppContext)NULL; | |
1654 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
1655 } | |
1656 # endif | |
1657 | |
6383 | 1658 setup_term_clip(); |
1659 get_x11_title(FALSE); | |
1660 } | |
1661 } | |
7 | 1662 #endif |
1663 | |
1664 /* | |
1665 * Test if "dpy" and x11_window are valid by getting the window title. | |
1666 * I don't actually want it yet, so there may be a simpler call to use, but | |
1667 * this will cause the error handler x_error_check() to be called if anything | |
1668 * is wrong, such as the window pointer being invalid (as can happen when the | |
1669 * user changes his DISPLAY, but not his WINDOWID) -- webb | |
1670 */ | |
1671 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1672 test_x11_window(Display *dpy) |
7 | 1673 { |
1674 int (*old_handler)(); | |
1675 XTextProperty text_prop; | |
1676 | |
1677 old_handler = XSetErrorHandler(x_error_check); | |
1678 got_x_error = FALSE; | |
1679 if (XGetWMName(dpy, x11_window, &text_prop)) | |
1680 XFree((void *)text_prop.value); | |
1681 XSync(dpy, False); | |
1682 (void)XSetErrorHandler(old_handler); | |
1683 | |
1684 if (p_verbose > 0 && got_x_error) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
1685 verb_msg(_("Testing the X display failed")); |
7 | 1686 |
1687 return (got_x_error ? FAIL : OK); | |
1688 } | |
1689 #endif | |
1690 | |
1691 #ifdef FEAT_TITLE | |
1692 | |
1693 #ifdef FEAT_X11 | |
1694 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1695 static int get_x11_thing(int get_title, int test_only); |
7 | 1696 |
1697 /* | |
1698 * try to get x11 window and display | |
1699 * | |
1700 * return FAIL for failure, OK otherwise | |
1701 */ | |
1702 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1703 get_x11_windis(void) |
7 | 1704 { |
1705 char *winid; | |
1706 static int result = -1; | |
1707 #define XD_NONE 0 /* x11_display not set here */ | |
1708 #define XD_HERE 1 /* x11_display opened here */ | |
1709 #define XD_GUI 2 /* x11_display used from gui.dpy */ | |
1710 #define XD_XTERM 3 /* x11_display used from xterm_dpy */ | |
1711 static int x11_display_from = XD_NONE; | |
1712 static int did_set_error_handler = FALSE; | |
1713 | |
1714 if (!did_set_error_handler) | |
1715 { | |
1716 /* X just exits if it finds an error otherwise! */ | |
1717 (void)XSetErrorHandler(x_error_handler); | |
1718 did_set_error_handler = TRUE; | |
1719 } | |
1720 | |
574 | 1721 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
7 | 1722 if (gui.in_use) |
1723 { | |
1724 /* | |
1725 * If the X11 display was opened here before, for the window where Vim | |
1726 * was started, close that one now to avoid a memory leak. | |
1727 */ | |
1728 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1729 { | |
1730 XCloseDisplay(x11_display); | |
1731 x11_display_from = XD_NONE; | |
1732 } | |
1733 if (gui_get_x11_windis(&x11_window, &x11_display) == OK) | |
1734 { | |
1735 x11_display_from = XD_GUI; | |
1736 return OK; | |
1737 } | |
1738 x11_display = NULL; | |
1739 return FAIL; | |
1740 } | |
1741 else if (x11_display_from == XD_GUI) | |
1742 { | |
1743 /* GUI must have stopped somehow, clear x11_display */ | |
1744 x11_window = 0; | |
1745 x11_display = NULL; | |
1746 x11_display_from = XD_NONE; | |
1747 } | |
1748 #endif | |
1749 | |
1750 /* When started with the "-X" argument, don't try connecting. */ | |
1751 if (!x_connect_to_server()) | |
1752 return FAIL; | |
1753 | |
1754 /* | |
1755 * If WINDOWID not set, should try another method to find out | |
1756 * what the current window number is. The only code I know for | |
1757 * this is very complicated. | |
1758 * We assume that zero is invalid for WINDOWID. | |
1759 */ | |
1760 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL) | |
1761 x11_window = (Window)atol(winid); | |
1762 | |
1763 #ifdef FEAT_XCLIPBOARD | |
1764 if (xterm_dpy != NULL && x11_window != 0) | |
1765 { | |
1450 | 1766 /* We may have checked it already, but Gnome terminal can move us to |
1767 * another window, so we need to check every time. */ | |
1768 if (x11_display_from != XD_XTERM) | |
1769 { | |
1770 /* | |
1771 * If the X11 display was opened here before, for the window where | |
1772 * Vim was started, close that one now to avoid a memory leak. | |
1773 */ | |
1774 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1775 XCloseDisplay(x11_display); | |
1776 x11_display = xterm_dpy; | |
1777 x11_display_from = XD_XTERM; | |
1778 } | |
7 | 1779 if (test_x11_window(x11_display) == FAIL) |
1780 { | |
1781 /* probably bad $WINDOWID */ | |
1782 x11_window = 0; | |
1783 x11_display = NULL; | |
1784 x11_display_from = XD_NONE; | |
1785 return FAIL; | |
1786 } | |
1787 return OK; | |
1788 } | |
1789 #endif | |
1790 | |
1791 if (x11_window == 0 || x11_display == NULL) | |
1792 result = -1; | |
1793 | |
1794 if (result != -1) /* Have already been here and set this */ | |
1795 return result; /* Don't do all these X calls again */ | |
1796 | |
1797 if (x11_window != 0 && x11_display == NULL) | |
1798 { | |
1799 #ifdef SET_SIG_ALARM | |
1800 RETSIGTYPE (*sig_save)(); | |
1801 #endif | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1802 #ifdef ELAPSED_FUNC |
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1803 elapsed_T start_tv; |
7 | 1804 |
1805 if (p_verbose > 0) | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1806 ELAPSED_INIT(start_tv); |
7 | 1807 #endif |
1808 | |
1809 #ifdef SET_SIG_ALARM | |
1810 /* | |
1811 * Opening the Display may hang if the DISPLAY setting is wrong, or | |
1812 * the network connection is bad. Set an alarm timer to get out. | |
1813 */ | |
1814 sig_alarm_called = FALSE; | |
1815 sig_save = (RETSIGTYPE (*)())signal(SIGALRM, | |
1816 (RETSIGTYPE (*)())sig_alarm); | |
1817 alarm(2); | |
1818 #endif | |
1819 x11_display = XOpenDisplay(NULL); | |
1820 | |
1821 #ifdef SET_SIG_ALARM | |
1822 alarm(0); | |
1823 signal(SIGALRM, (RETSIGTYPE (*)())sig_save); | |
1824 if (p_verbose > 0 && sig_alarm_called) | |
15567
c9230ee2b1ad
patch 8.1.0791: a few compiler warnings on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15561
diff
changeset
|
1825 verb_msg(_("Opening the X display timed out")); |
7 | 1826 #endif |
1827 if (x11_display != NULL) | |
1828 { | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1829 # ifdef ELAPSED_FUNC |
7 | 1830 if (p_verbose > 0) |
292 | 1831 { |
1832 verbose_enter(); | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1833 xopen_message(ELAPSED_FUNC(start_tv)); |
292 | 1834 verbose_leave(); |
1835 } | |
7 | 1836 # endif |
1837 if (test_x11_window(x11_display) == FAIL) | |
1838 { | |
1839 /* Maybe window id is bad */ | |
1840 x11_window = 0; | |
1841 XCloseDisplay(x11_display); | |
1842 x11_display = NULL; | |
1843 } | |
1844 else | |
1845 x11_display_from = XD_HERE; | |
1846 } | |
1847 } | |
1848 if (x11_window == 0 || x11_display == NULL) | |
1849 return (result = FAIL); | |
2609 | 1850 |
1851 # ifdef FEAT_EVAL | |
1852 set_vim_var_nr(VV_WINDOWID, (long)x11_window); | |
1853 # endif | |
1854 | |
7 | 1855 return (result = OK); |
1856 } | |
1857 | |
1858 /* | |
1859 * Determine original x11 Window Title | |
1860 */ | |
1861 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1862 get_x11_title(int test_only) |
7 | 1863 { |
32 | 1864 return get_x11_thing(TRUE, test_only); |
7 | 1865 } |
1866 | |
1867 /* | |
1868 * Determine original x11 Window icon | |
1869 */ | |
1870 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1871 get_x11_icon(int test_only) |
7 | 1872 { |
1873 int retval = FALSE; | |
1874 | |
1875 retval = get_x11_thing(FALSE, test_only); | |
1876 | |
1877 /* could not get old icon, use terminal name */ | |
1878 if (oldicon == NULL && !test_only) | |
1879 { | |
1880 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 1881 oldicon = vim_strsave(T_NAME + 8); |
7 | 1882 else |
1940 | 1883 oldicon = vim_strsave(T_NAME); |
7 | 1884 } |
1885 | |
1886 return retval; | |
1887 } | |
1888 | |
1889 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1890 get_x11_thing( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1891 int get_title, /* get title string */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1892 int test_only) |
7 | 1893 { |
1894 XTextProperty text_prop; | |
1895 int retval = FALSE; | |
1896 Status status; | |
1897 | |
1898 if (get_x11_windis() == OK) | |
1899 { | |
1900 /* Get window/icon name if any */ | |
1901 if (get_title) | |
1902 status = XGetWMName(x11_display, x11_window, &text_prop); | |
1903 else | |
1904 status = XGetWMIconName(x11_display, x11_window, &text_prop); | |
1905 | |
1906 /* | |
1907 * If terminal is xterm, then x11_window may be a child window of the | |
1908 * outer xterm window that actually contains the window/icon name, so | |
1909 * keep traversing up the tree until a window with a title/icon is | |
1910 * found. | |
1911 */ | |
1912 /* Previously this was only done for xterm and alikes. I don't see a | |
1913 * reason why it would fail for other terminal emulators. | |
1914 * if (term_is_xterm) */ | |
1915 { | |
1916 Window root; | |
1917 Window parent; | |
1918 Window win = x11_window; | |
1919 Window *children; | |
1920 unsigned int num_children; | |
1921 | |
1922 while (!status || text_prop.value == NULL) | |
1923 { | |
1924 if (!XQueryTree(x11_display, win, &root, &parent, &children, | |
1925 &num_children)) | |
1926 break; | |
1927 if (children) | |
1928 XFree((void *)children); | |
1929 if (parent == root || parent == 0) | |
1930 break; | |
1931 | |
1932 win = parent; | |
1933 if (get_title) | |
1934 status = XGetWMName(x11_display, win, &text_prop); | |
1935 else | |
1936 status = XGetWMIconName(x11_display, win, &text_prop); | |
1937 } | |
1938 } | |
1939 if (status && text_prop.value != NULL) | |
1940 { | |
1941 retval = TRUE; | |
1942 if (!test_only) | |
1943 { | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15567
diff
changeset
|
1944 if (text_prop.encoding == XA_STRING && !has_mbyte) |
7 | 1945 { |
1946 if (get_title) | |
1947 oldtitle = vim_strsave((char_u *)text_prop.value); | |
1948 else | |
1949 oldicon = vim_strsave((char_u *)text_prop.value); | |
1950 } | |
1951 else | |
1952 { | |
1953 char **cl; | |
1954 Status transform_status; | |
1955 int n = 0; | |
1956 | |
1957 transform_status = XmbTextPropertyToTextList(x11_display, | |
1958 &text_prop, | |
1959 &cl, &n); | |
1960 if (transform_status >= Success && n > 0 && cl[0]) | |
1961 { | |
1962 if (get_title) | |
1963 oldtitle = vim_strsave((char_u *) cl[0]); | |
1964 else | |
1965 oldicon = vim_strsave((char_u *) cl[0]); | |
1966 XFreeStringList(cl); | |
1967 } | |
1968 else | |
1969 { | |
1970 if (get_title) | |
1971 oldtitle = vim_strsave((char_u *)text_prop.value); | |
1972 else | |
1973 oldicon = vim_strsave((char_u *)text_prop.value); | |
1974 } | |
1975 } | |
1976 } | |
1977 XFree((void *)text_prop.value); | |
1978 } | |
1979 } | |
1980 return retval; | |
1981 } | |
1982 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
1983 /* Xutf8 functions are not available on older systems. Note that on some |
6282 | 1984 * systems X_HAVE_UTF8_STRING may be defined in a header file but |
1985 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for | |
1986 * that and defines HAVE_XUTF8SETWMPROPERTIES. */ | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15567
diff
changeset
|
1987 #if defined(X_HAVE_UTF8_STRING) |
6282 | 1988 # if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES |
7 | 1989 # define USE_UTF8_STRING |
1990 # endif | |
1991 #endif | |
1992 | |
1993 /* | |
1994 * Set x11 Window Title | |
1995 * | |
1996 * get_x11_windis() must be called before this and have returned OK | |
1997 */ | |
1998 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1999 set_x11_title(char_u *title) |
7 | 2000 { |
2001 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING | |
2002 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't | |
2003 * supported everywhere and STRING doesn't work for multi-byte titles. | |
2004 */ | |
2005 #ifdef USE_UTF8_STRING | |
2006 if (enc_utf8) | |
2007 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title, | |
2008 NULL, NULL, 0, NULL, NULL, NULL); | |
2009 else | |
2010 #endif | |
2011 { | |
2012 #if XtSpecificationRelease >= 4 | |
2013 # ifdef FEAT_XFONTSET | |
2014 XmbSetWMProperties(x11_display, x11_window, (const char *)title, | |
2015 NULL, NULL, 0, NULL, NULL, NULL); | |
2016 # else | |
2017 XTextProperty text_prop; | |
129 | 2018 char *c_title = (char *)title; |
7 | 2019 |
2020 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */ | |
129 | 2021 (void)XStringListToTextProperty(&c_title, 1, &text_prop); |
7 | 2022 XSetWMProperties(x11_display, x11_window, &text_prop, |
2023 NULL, NULL, 0, NULL, NULL, NULL); | |
2024 # endif | |
2025 #else | |
2026 XStoreName(x11_display, x11_window, (char *)title); | |
2027 #endif | |
2028 } | |
2029 XFlush(x11_display); | |
2030 } | |
2031 | |
2032 /* | |
2033 * Set x11 Window icon | |
2034 * | |
2035 * get_x11_windis() must be called before this and have returned OK | |
2036 */ | |
2037 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2038 set_x11_icon(char_u *icon) |
7 | 2039 { |
2040 /* See above for comments about using X*SetWMProperties(). */ | |
2041 #ifdef USE_UTF8_STRING | |
2042 if (enc_utf8) | |
2043 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2044 NULL, 0, NULL, NULL, NULL); | |
2045 else | |
2046 #endif | |
2047 { | |
2048 #if XtSpecificationRelease >= 4 | |
2049 # ifdef FEAT_XFONTSET | |
2050 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2051 NULL, 0, NULL, NULL, NULL); | |
2052 # else | |
2053 XTextProperty text_prop; | |
129 | 2054 char *c_icon = (char *)icon; |
2055 | |
2056 (void)XStringListToTextProperty(&c_icon, 1, &text_prop); | |
7 | 2057 XSetWMProperties(x11_display, x11_window, NULL, &text_prop, |
2058 NULL, 0, NULL, NULL, NULL); | |
2059 # endif | |
2060 #else | |
2061 XSetIconName(x11_display, x11_window, (char *)icon); | |
2062 #endif | |
2063 } | |
2064 XFlush(x11_display); | |
2065 } | |
2066 | |
2067 #else /* FEAT_X11 */ | |
2068 | |
2069 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2070 get_x11_title(int test_only UNUSED) |
7 | 2071 { |
2072 return FALSE; | |
2073 } | |
2074 | |
2075 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2076 get_x11_icon(int test_only) |
7 | 2077 { |
2078 if (!test_only) | |
2079 { | |
2080 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 2081 oldicon = vim_strsave(T_NAME + 8); |
7 | 2082 else |
1940 | 2083 oldicon = vim_strsave(T_NAME); |
7 | 2084 } |
2085 return FALSE; | |
2086 } | |
2087 | |
2088 #endif /* FEAT_X11 */ | |
2089 | |
2090 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2091 mch_can_restore_title(void) |
7 | 2092 { |
2093 return get_x11_title(TRUE); | |
2094 } | |
2095 | |
2096 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2097 mch_can_restore_icon(void) |
7 | 2098 { |
2099 return get_x11_icon(TRUE); | |
2100 } | |
2101 | |
2102 /* | |
2103 * Set the window title and icon. | |
2104 */ | |
2105 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2106 mch_settitle(char_u *title, char_u *icon) |
7 | 2107 { |
2108 int type = 0; | |
2109 static int recursive = 0; | |
2110 | |
2111 if (T_NAME == NULL) /* no terminal name (yet) */ | |
2112 return; | |
2113 if (title == NULL && icon == NULL) /* nothing to do */ | |
2114 return; | |
2115 | |
2116 /* When one of the X11 functions causes a deadly signal, we get here again | |
2117 * recursively. Avoid hanging then (something is probably locked). */ | |
2118 if (recursive) | |
2119 return; | |
2120 ++recursive; | |
2121 | |
2122 /* | |
2123 * if the window ID and the display is known, we may use X11 calls | |
2124 */ | |
2125 #ifdef FEAT_X11 | |
2126 if (get_x11_windis() == OK) | |
2127 type = 1; | |
2128 #else | |
2129 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) | |
2130 if (gui.in_use) | |
2131 type = 1; | |
2132 # endif | |
2133 #endif | |
2134 | |
2135 /* | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2136 * Note: if "t_ts" is set, title is set with escape sequence rather |
7 | 2137 * than x11 calls, because the x11 calls don't always work |
2138 */ | |
2139 if ((type || *T_TS != NUL) && title != NULL) | |
2140 { | |
14573
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2141 if (oldtitle_outdated) |
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2142 { |
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2143 oldtitle_outdated = FALSE; |
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2144 VIM_CLEAR(oldtitle); |
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2145 } |
7 | 2146 if (oldtitle == NULL |
2147 #ifdef FEAT_GUI | |
2148 && !gui.in_use | |
2149 #endif | |
2150 ) /* first call but not in GUI, save title */ | |
2151 (void)get_x11_title(FALSE); | |
2152 | |
2153 if (*T_TS != NUL) /* it's OK if t_fs is empty */ | |
2154 term_settitle(title); | |
2155 #ifdef FEAT_X11 | |
2156 else | |
2157 # ifdef FEAT_GUI_GTK | |
2158 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2159 # endif | |
2160 set_x11_title(title); /* x11 */ | |
2161 #endif | |
64 | 2162 #if defined(FEAT_GUI_GTK) \ |
7 | 2163 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) |
2164 else | |
2165 gui_mch_settitle(title, icon); | |
2166 #endif | |
2167 did_set_title = TRUE; | |
2168 } | |
2169 | |
2170 if ((type || *T_CIS != NUL) && icon != NULL) | |
2171 { | |
2172 if (oldicon == NULL | |
2173 #ifdef FEAT_GUI | |
2174 && !gui.in_use | |
2175 #endif | |
2176 ) /* first call, save icon */ | |
2177 get_x11_icon(FALSE); | |
2178 | |
2179 if (*T_CIS != NUL) | |
2180 { | |
2181 out_str(T_CIS); /* set icon start */ | |
2182 out_str_nf(icon); | |
2183 out_str(T_CIE); /* set icon end */ | |
2184 out_flush(); | |
2185 } | |
2186 #ifdef FEAT_X11 | |
2187 else | |
2188 # ifdef FEAT_GUI_GTK | |
2189 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2190 # endif | |
2191 set_x11_icon(icon); /* x11 */ | |
2192 #endif | |
2193 did_set_icon = TRUE; | |
2194 } | |
2195 --recursive; | |
2196 } | |
2197 | |
2198 /* | |
2199 * Restore the window/icon title. | |
2200 * "which" is one of: | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2201 * SAVE_RESTORE_TITLE only restore title |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2202 * SAVE_RESTORE_ICON only restore icon |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2203 * SAVE_RESTORE_BOTH restore title and icon |
7 | 2204 */ |
2205 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2206 mch_restore_title(int which) |
7 | 2207 { |
2208 /* only restore the title or icon when it has been set */ | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2209 mch_settitle(((which & SAVE_RESTORE_TITLE) && did_set_title) ? |
7 | 2210 (oldtitle ? oldtitle : p_titleold) : NULL, |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2211 ((which & SAVE_RESTORE_ICON) && did_set_icon) ? oldicon : NULL); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2212 |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2213 // pop and push from/to the stack |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2214 term_pop_title(which); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
2215 term_push_title(which); |
7 | 2216 } |
2217 | |
2218 #endif /* FEAT_TITLE */ | |
2219 | |
2220 /* | |
2221 * Return TRUE if "name" looks like some xterm name. | |
158 | 2222 * Seiichi Sato mentioned that "mlterm" works like xterm. |
7 | 2223 */ |
2224 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2225 vim_is_xterm(char_u *name) |
7 | 2226 { |
2227 if (name == NULL) | |
2228 return FALSE; | |
2229 return (STRNICMP(name, "xterm", 5) == 0 | |
2230 || STRNICMP(name, "nxterm", 6) == 0 | |
2231 || STRNICMP(name, "kterm", 5) == 0 | |
158 | 2232 || STRNICMP(name, "mlterm", 6) == 0 |
7 | 2233 || STRNICMP(name, "rxvt", 4) == 0 |
12307
50b0b3aaa545
patch 8.0.1033: detecting background color does not work in screen
Christian Brabandt <cb@256bit.org>
parents:
12240
diff
changeset
|
2234 || STRNICMP(name, "screen.xterm", 12) == 0 |
7 | 2235 || STRCMP(name, "builtin_xterm") == 0); |
2236 } | |
2237 | |
1620 | 2238 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO) |
2239 /* | |
2240 * Return TRUE if "name" appears to be that of a terminal | |
2241 * known to support the xterm-style mouse protocol. | |
2242 * Relies on term_is_xterm having been set to its correct value. | |
2243 */ | |
2244 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2245 use_xterm_like_mouse(char_u *name) |
1620 | 2246 { |
2247 return (name != NULL | |
9873
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2248 && (term_is_xterm |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2249 || STRNICMP(name, "screen", 6) == 0 |
10266
e86f23a078ca
commit https://github.com/vim/vim/commit/0ba407012c63064f03f1a5677677d4da423e5a73
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2250 || STRNICMP(name, "tmux", 4) == 0 |
9873
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2251 || STRICMP(name, "st") == 0 |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2252 || STRNICMP(name, "st-", 3) == 0 |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2253 || STRNICMP(name, "stterm", 6) == 0)); |
1620 | 2254 } |
2255 #endif | |
2256 | |
7 | 2257 #if defined(FEAT_MOUSE_TTY) || defined(PROTO) |
2258 /* | |
2259 * Return non-zero when using an xterm mouse, according to 'ttymouse'. | |
2260 * Return 1 for "xterm". | |
2261 * Return 2 for "xterm2". | |
3145 | 2262 * Return 3 for "urxvt". |
3746 | 2263 * Return 4 for "sgr". |
7 | 2264 */ |
2265 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2266 use_xterm_mouse(void) |
7 | 2267 { |
3746 | 2268 if (ttym_flags == TTYM_SGR) |
2269 return 4; | |
3145 | 2270 if (ttym_flags == TTYM_URXVT) |
2271 return 3; | |
7 | 2272 if (ttym_flags == TTYM_XTERM2) |
2273 return 2; | |
2274 if (ttym_flags == TTYM_XTERM) | |
2275 return 1; | |
2276 return 0; | |
2277 } | |
2278 #endif | |
2279 | |
2280 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2281 vim_is_iris(char_u *name) |
7 | 2282 { |
2283 if (name == NULL) | |
2284 return FALSE; | |
2285 return (STRNICMP(name, "iris-ansi", 9) == 0 | |
2286 || STRCMP(name, "builtin_iris-ansi") == 0); | |
2287 } | |
2288 | |
2289 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2290 vim_is_vt300(char_u *name) |
7 | 2291 { |
2292 if (name == NULL) | |
2293 return FALSE; /* actually all ANSI comp. terminals should be here */ | |
22 | 2294 /* catch VT100 - VT5xx */ |
2295 return ((STRNICMP(name, "vt", 2) == 0 | |
2296 && vim_strchr((char_u *)"12345", name[2]) != NULL) | |
7 | 2297 || STRCMP(name, "builtin_vt320") == 0); |
2298 } | |
2299 | |
2300 /* | |
2301 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set. | |
2302 * This should include all windowed terminal emulators. | |
2303 */ | |
2304 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2305 vim_is_fastterm(char_u *name) |
7 | 2306 { |
2307 if (name == NULL) | |
2308 return FALSE; | |
2309 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name)) | |
2310 return TRUE; | |
2311 return ( STRNICMP(name, "hpterm", 6) == 0 | |
2312 || STRNICMP(name, "sun-cmd", 7) == 0 | |
2313 || STRNICMP(name, "screen", 6) == 0 | |
10266
e86f23a078ca
commit https://github.com/vim/vim/commit/0ba407012c63064f03f1a5677677d4da423e5a73
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2314 || STRNICMP(name, "tmux", 4) == 0 |
7 | 2315 || STRNICMP(name, "dtterm", 6) == 0); |
2316 } | |
2317 | |
2318 /* | |
2319 * Insert user name in s[len]. | |
2320 * Return OK if a name found. | |
2321 */ | |
2322 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2323 mch_get_user_name(char_u *s, int len) |
7 | 2324 { |
2325 #ifdef VMS | |
509 | 2326 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1); |
7 | 2327 return OK; |
2328 #else | |
2329 return mch_get_uname(getuid(), s, len); | |
2330 #endif | |
2331 } | |
2332 | |
2333 /* | |
2334 * Insert user name for "uid" in s[len]. | |
2335 * Return OK if a name found. | |
2336 */ | |
2337 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2338 mch_get_uname(uid_t uid, char_u *s, int len) |
7 | 2339 { |
2340 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) | |
2341 struct passwd *pw; | |
2342 | |
2343 if ((pw = getpwuid(uid)) != NULL | |
2344 && pw->pw_name != NULL && *(pw->pw_name) != NUL) | |
2345 { | |
418 | 2346 vim_strncpy(s, (char_u *)pw->pw_name, len - 1); |
7 | 2347 return OK; |
2348 } | |
2349 #endif | |
2350 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */ | |
2351 return FAIL; /* a number is not a name */ | |
2352 } | |
2353 | |
2354 /* | |
2355 * Insert host name is s[len]. | |
2356 */ | |
2357 | |
2358 #ifdef HAVE_SYS_UTSNAME_H | |
2359 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2360 mch_get_host_name(char_u *s, int len) |
7 | 2361 { |
2362 struct utsname vutsname; | |
2363 | |
2364 if (uname(&vutsname) < 0) | |
2365 *s = NUL; | |
2366 else | |
418 | 2367 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1); |
7 | 2368 } |
2369 #else /* HAVE_SYS_UTSNAME_H */ | |
2370 | |
2371 # ifdef HAVE_SYS_SYSTEMINFO_H | |
2372 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len) | |
2373 # endif | |
2374 | |
2375 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2376 mch_get_host_name(char_u *s, int len) |
7 | 2377 { |
2378 # ifdef VAXC | |
2379 vaxc$gethostname((char *)s, len); | |
2380 # else | |
2381 gethostname((char *)s, len); | |
2382 # endif | |
2383 s[len - 1] = NUL; /* make sure it's terminated */ | |
2384 } | |
2385 #endif /* HAVE_SYS_UTSNAME_H */ | |
2386 | |
2387 /* | |
2388 * return process ID | |
2389 */ | |
2390 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2391 mch_get_pid(void) |
7 | 2392 { |
2393 return (long)getpid(); | |
2394 } | |
2395 | |
2396 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD) | |
2397 static char * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2398 strerror(int err) |
7 | 2399 { |
2400 extern int sys_nerr; | |
2401 extern char *sys_errlist[]; | |
2402 static char er[20]; | |
2403 | |
2404 if (err > 0 && err < sys_nerr) | |
2405 return (sys_errlist[err]); | |
2406 sprintf(er, "Error %d", err); | |
2407 return er; | |
2408 } | |
2409 #endif | |
2410 | |
2411 /* | |
2412 * Get name of current directory into buffer 'buf' of length 'len' bytes. | |
2413 * Return OK for success, FAIL for failure. | |
2414 */ | |
2415 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2416 mch_dirname(char_u *buf, int len) |
7 | 2417 { |
2418 #if defined(USE_GETCWD) | |
2419 if (getcwd((char *)buf, len) == NULL) | |
2420 { | |
2421 STRCPY(buf, strerror(errno)); | |
2422 return FAIL; | |
2423 } | |
2424 return OK; | |
2425 #else | |
2426 return (getwd((char *)buf) != NULL ? OK : FAIL); | |
2427 #endif | |
2428 } | |
2429 | |
2430 /* | |
1045 | 2431 * Get absolute file name into "buf[len]". |
7 | 2432 * |
2433 * return FAIL for failure, OK for success | |
2434 */ | |
2435 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2436 mch_FullName( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2437 char_u *fname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2438 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2439 int len, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2440 int force) /* also expand when already absolute path */ |
7 | 2441 { |
2442 int l; | |
1082 | 2443 #ifdef HAVE_FCHDIR |
7 | 2444 int fd = -1; |
2445 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */ | |
1082 | 2446 #endif |
7 | 2447 char_u olddir[MAXPATHL]; |
2448 char_u *p; | |
2449 int retval = OK; | |
1615 | 2450 #ifdef __CYGWIN__ |
1620 | 2451 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but |
2452 it's not always defined */ | |
2453 #endif | |
7 | 2454 |
1082 | 2455 #ifdef VMS |
2456 fname = vms_fixfilename(fname); | |
2457 #endif | |
2458 | |
1102 | 2459 #ifdef __CYGWIN__ |
2460 /* | |
2461 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts". | |
2462 */ | |
1657 | 2463 # 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
|
2464 /* 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
|
2465 * a forward slash. */ |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2466 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
|
2467 fname, posix_fname, MAXPATHL); |
1657 | 2468 # else |
1615 | 2469 cygwin_conv_to_posix_path(fname, posix_fname); |
1657 | 2470 # endif |
1615 | 2471 fname = posix_fname; |
1102 | 2472 #endif |
2473 | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2474 /* 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
|
2475 * 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
|
2476 if ((force || !mch_isFullName(fname)) |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2477 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname)) |
7 | 2478 { |
2479 /* | |
2480 * If the file name has a path, change to that directory for a moment, | |
2481 * and then do the getwd() (and get back to where we were). | |
2482 * This will get the correct path name with "../" things. | |
2483 */ | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2484 if (p != NULL) |
7 | 2485 { |
1082 | 2486 #ifdef HAVE_FCHDIR |
7 | 2487 /* |
2488 * Use fchdir() if possible, it's said to be faster and more | |
2489 * reliable. But on SunOS 4 it might not work. Check this by | |
2490 * doing a fchdir() right now. | |
2491 */ | |
2492 if (!dont_fchdir) | |
2493 { | |
2494 fd = open(".", O_RDONLY | O_EXTRA, 0); | |
2495 if (fd >= 0 && fchdir(fd) < 0) | |
2496 { | |
2497 close(fd); | |
2498 fd = -1; | |
2499 dont_fchdir = TRUE; /* don't try again */ | |
2500 } | |
2501 } | |
1082 | 2502 #endif |
7 | 2503 |
2504 /* Only change directory when we are sure we can return to where | |
2505 * we are now. After doing "su" chdir(".") might not work. */ | |
2506 if ( | |
1082 | 2507 #ifdef HAVE_FCHDIR |
7 | 2508 fd < 0 && |
1082 | 2509 #endif |
7 | 2510 (mch_dirname(olddir, MAXPATHL) == FAIL |
2511 || mch_chdir((char *)olddir) != 0)) | |
2512 { | |
2513 p = NULL; /* can't get current dir: don't chdir */ | |
2514 retval = FAIL; | |
2515 } | |
2516 else | |
2517 { | |
2518 /* The directory is copied into buf[], to be able to remove | |
2519 * the file name without changing it (could be a string in | |
2520 * read-only memory) */ | |
2521 if (p - fname >= len) | |
2522 retval = FAIL; | |
2523 else | |
2524 { | |
418 | 2525 vim_strncpy(buf, fname, p - fname); |
7 | 2526 if (mch_chdir((char *)buf)) |
2527 retval = FAIL; | |
2528 else | |
2529 fname = p + 1; | |
2530 *buf = NUL; | |
2531 } | |
2532 } | |
2533 } | |
2534 if (mch_dirname(buf, len) == FAIL) | |
2535 { | |
2536 retval = FAIL; | |
2537 *buf = NUL; | |
2538 } | |
2539 if (p != NULL) | |
2540 { | |
1082 | 2541 #ifdef HAVE_FCHDIR |
7 | 2542 if (fd >= 0) |
2543 { | |
1935 | 2544 if (p_verbose >= 5) |
2545 { | |
2546 verbose_enter(); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2547 msg("fchdir() to previous dir"); |
1935 | 2548 verbose_leave(); |
2549 } | |
7 | 2550 l = fchdir(fd); |
2551 close(fd); | |
2552 } | |
2553 else | |
1082 | 2554 #endif |
7 | 2555 l = mch_chdir((char *)olddir); |
2556 if (l != 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
2557 emsg(_(e_prev_dir)); |
7 | 2558 } |
2559 | |
2560 l = STRLEN(buf); | |
3867 | 2561 if (l >= len - 1) |
2562 retval = FAIL; /* no space for trailing "/" */ | |
1082 | 2563 #ifndef VMS |
3867 | 2564 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL |
7 | 2565 && STRCMP(fname, ".") != 0) |
3867 | 2566 STRCAT(buf, "/"); |
1082 | 2567 #endif |
7 | 2568 } |
1045 | 2569 |
7 | 2570 /* Catch file names which are too long. */ |
1877 | 2571 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len) |
7 | 2572 return FAIL; |
2573 | |
2574 /* Do not append ".", "/dir/." is equal to "/dir". */ | |
2575 if (STRCMP(fname, ".") != 0) | |
2576 STRCAT(buf, fname); | |
2577 | |
2578 return OK; | |
2579 } | |
2580 | |
2581 /* | |
2582 * Return TRUE if "fname" does not depend on the current directory. | |
2583 */ | |
2584 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2585 mch_isFullName(char_u *fname) |
7 | 2586 { |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
2587 #ifdef VMS |
7 | 2588 return ( fname[0] == '/' || fname[0] == '.' || |
2589 strchr((char *)fname,':') || strchr((char *)fname,'"') || | |
2590 (strchr((char *)fname,'[') && strchr((char *)fname,']'))|| | |
2591 (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
|
2592 #else |
7 | 2593 return (*fname == '/' || *fname == '~'); |
2594 #endif | |
2595 } | |
2596 | |
585 | 2597 #if defined(USE_FNAME_CASE) || defined(PROTO) |
2598 /* | |
2599 * Set the case of the file name, if it already exists. This will cause the | |
2600 * file name to remain exactly the same. | |
1450 | 2601 * Only required for file systems where case is ignored and preserved. |
585 | 2602 */ |
2603 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2604 fname_case( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2605 char_u *name, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2606 int len UNUSED) /* buffer size, only used when name gets longer */ |
585 | 2607 { |
2608 struct stat st; | |
2609 char_u *slash, *tail; | |
2610 DIR *dirp; | |
2611 struct dirent *dp; | |
2612 | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
2613 if (mch_lstat((char *)name, &st) >= 0) |
585 | 2614 { |
2615 /* Open the directory where the file is located. */ | |
2616 slash = vim_strrchr(name, '/'); | |
2617 if (slash == NULL) | |
2618 { | |
2619 dirp = opendir("."); | |
2620 tail = name; | |
2621 } | |
2622 else | |
2623 { | |
2624 *slash = NUL; | |
2625 dirp = opendir((char *)name); | |
2626 *slash = '/'; | |
2627 tail = slash + 1; | |
2628 } | |
2629 | |
2630 if (dirp != NULL) | |
2631 { | |
2632 while ((dp = readdir(dirp)) != NULL) | |
2633 { | |
2634 /* Only accept names that differ in case and are the same byte | |
2635 * length. TODO: accept different length name. */ | |
2636 if (STRICMP(tail, dp->d_name) == 0 | |
2637 && STRLEN(tail) == STRLEN(dp->d_name)) | |
2638 { | |
2639 char_u newname[MAXPATHL + 1]; | |
2640 struct stat st2; | |
2641 | |
2642 /* Verify the inode is equal. */ | |
2643 vim_strncpy(newname, name, MAXPATHL); | |
2644 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name, | |
2645 MAXPATHL - (tail - name)); | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
2646 if (mch_lstat((char *)newname, &st2) >= 0 |
585 | 2647 && st.st_ino == st2.st_ino |
2648 && st.st_dev == st2.st_dev) | |
2649 { | |
2650 STRCPY(tail, dp->d_name); | |
2651 break; | |
2652 } | |
2653 } | |
2654 } | |
2655 | |
2656 closedir(dirp); | |
2657 } | |
2658 } | |
2659 } | |
2660 #endif | |
2661 | |
7 | 2662 /* |
2663 * Get file permissions for 'name'. | |
2664 * Returns -1 when it doesn't exist. | |
2665 */ | |
2666 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2667 mch_getperm(char_u *name) |
7 | 2668 { |
2669 struct stat statb; | |
2670 | |
2671 /* Keep the #ifdef outside of stat(), it may be a macro. */ | |
2672 #ifdef VMS | |
2673 if (stat((char *)vms_fixfilename(name), &statb)) | |
2674 #else | |
2675 if (stat((char *)name, &statb)) | |
2676 #endif | |
2677 return -1; | |
1350 | 2678 #ifdef __INTERIX |
2679 /* The top bit makes the value negative, which means the file doesn't | |
2680 * exist. Remove the bit, we don't use it. */ | |
2681 return statb.st_mode & ~S_ADDACE; | |
2682 #else | |
7 | 2683 return statb.st_mode; |
1350 | 2684 #endif |
7 | 2685 } |
2686 | |
2687 /* | |
12847
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2688 * Set file permission for "name" to "perm". |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2689 * Return FAIL for failure, OK otherwise. |
7 | 2690 */ |
2691 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2692 mch_setperm(char_u *name, long perm) |
7 | 2693 { |
2694 return (chmod((char *) | |
2695 #ifdef VMS | |
2696 vms_fixfilename(name), | |
2697 #else | |
2698 name, | |
2699 #endif | |
2700 (mode_t)perm) == 0 ? OK : FAIL); | |
2701 } | |
2702 | |
12847
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2703 #if defined(HAVE_FCHMOD) || defined(PROTO) |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2704 /* |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2705 * Set file permission for open file "fd" to "perm". |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2706 * Return FAIL for failure, OK otherwise. |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2707 */ |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2708 int |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2709 mch_fsetperm(int fd, long perm) |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2710 { |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2711 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL); |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2712 } |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2713 #endif |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2714 |
7 | 2715 #if defined(HAVE_ACL) || defined(PROTO) |
2716 # ifdef HAVE_SYS_ACL_H | |
2717 # include <sys/acl.h> | |
2718 # endif | |
2719 # ifdef HAVE_SYS_ACCESS_H | |
2720 # include <sys/access.h> | |
2721 # endif | |
2722 | |
2723 # ifdef HAVE_SOLARIS_ACL | |
2724 typedef struct vim_acl_solaris_T { | |
2725 int acl_cnt; | |
2726 aclent_t *acl_entry; | |
2727 } vim_acl_solaris_T; | |
2728 # endif | |
2729 | |
1583 | 2730 #if defined(HAVE_SELINUX) || defined(PROTO) |
2731 /* | |
2732 * Copy security info from "from_file" to "to_file". | |
2733 */ | |
2734 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2735 mch_copy_sec(char_u *from_file, char_u *to_file) |
1583 | 2736 { |
2737 if (from_file == NULL) | |
2738 return; | |
2739 | |
2740 if (selinux_enabled == -1) | |
2741 selinux_enabled = is_selinux_enabled(); | |
2742 | |
2743 if (selinux_enabled > 0) | |
2744 { | |
2745 security_context_t from_context = NULL; | |
2746 security_context_t to_context = NULL; | |
2747 | |
2748 if (getfilecon((char *)from_file, &from_context) < 0) | |
2749 { | |
2750 /* If the filesystem doesn't support extended attributes, | |
2751 the original had no special security context and the | |
2752 target cannot have one either. */ | |
2753 if (errno == EOPNOTSUPP) | |
2754 return; | |
2755 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2756 msg_puts(_("\nCould not get security context for ")); |
1583 | 2757 msg_outtrans(from_file); |
2758 msg_putchar('\n'); | |
2759 return; | |
2760 } | |
2761 if (getfilecon((char *)to_file, &to_context) < 0) | |
2762 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2763 msg_puts(_("\nCould not get security context for ")); |
1583 | 2764 msg_outtrans(to_file); |
2765 msg_putchar('\n'); | |
2766 freecon (from_context); | |
2767 return ; | |
2768 } | |
2769 if (strcmp(from_context, to_context) != 0) | |
2770 { | |
2771 if (setfilecon((char *)to_file, from_context) < 0) | |
2772 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2773 msg_puts(_("\nCould not set security context for ")); |
1583 | 2774 msg_outtrans(to_file); |
2775 msg_putchar('\n'); | |
2776 } | |
2777 } | |
2778 freecon(to_context); | |
2779 freecon(from_context); | |
2780 } | |
2781 } | |
2782 #endif /* HAVE_SELINUX */ | |
2783 | |
5788 | 2784 #if defined(HAVE_SMACK) && !defined(PROTO) |
2785 /* | |
2786 * Copy security info from "from_file" to "to_file". | |
2787 */ | |
2788 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2789 mch_copy_sec(char_u *from_file, char_u *to_file) |
5788 | 2790 { |
5832 | 2791 static const char * const smack_copied_attributes[] = |
5788 | 2792 { |
2793 XATTR_NAME_SMACK, | |
2794 XATTR_NAME_SMACKEXEC, | |
2795 XATTR_NAME_SMACKMMAP | |
2796 }; | |
2797 | |
2798 char buffer[SMACK_LABEL_LEN]; | |
2799 const char *name; | |
2800 int index; | |
2801 int ret; | |
2802 ssize_t size; | |
2803 | |
2804 if (from_file == NULL) | |
2805 return; | |
2806 | |
2807 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes) | |
2808 / sizeof(smack_copied_attributes)[0]) ; index++) | |
2809 { | |
2810 /* get the name of the attribute to copy */ | |
2811 name = smack_copied_attributes[index]; | |
2812 | |
2813 /* get the value of the attribute in buffer */ | |
2814 size = getxattr((char*)from_file, name, buffer, sizeof(buffer)); | |
2815 if (size >= 0) | |
2816 { | |
2817 /* copy the attribute value of buffer */ | |
2818 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0); | |
2819 if (ret < 0) | |
2820 { | |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2821 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2822 _("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
|
2823 name, to_file); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2824 msg_outtrans(IObuff); |
5788 | 2825 msg_putchar('\n'); |
2826 } | |
2827 } | |
2828 else | |
2829 { | |
2830 /* what reason of not having the attribute value? */ | |
2831 switch (errno) | |
2832 { | |
2833 case ENOTSUP: | |
2834 /* extended attributes aren't supported or enabled */ | |
2835 /* should a message be echoed? not sure... */ | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
2836 return; /* leave because it isn't useful to continue */ |
5788 | 2837 |
2838 case ERANGE: | |
2839 default: | |
2840 /* 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
|
2841 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2842 _("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
|
2843 name, from_file); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2844 msg_puts((char *)IObuff); |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2845 msg_putchar('\n'); |
5788 | 2846 /* FALLTHROUGH to remove the attribute */ |
2847 | |
2848 case ENODATA: | |
2849 /* no attribute of this name */ | |
2850 ret = removexattr((char*)to_file, name); | |
5800 | 2851 /* Silently ignore errors, apparently this happens when |
2852 * smack is not actually being used. */ | |
5788 | 2853 break; |
2854 } | |
2855 } | |
2856 } | |
2857 } | |
2858 #endif /* HAVE_SMACK */ | |
2859 | |
7 | 2860 /* |
2861 * Return a pointer to the ACL of file "fname" in allocated memory. | |
2862 * Return NULL if the ACL is not available for whatever reason. | |
2863 */ | |
2864 vim_acl_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2865 mch_get_acl(char_u *fname UNUSED) |
7 | 2866 { |
2867 vim_acl_T ret = NULL; | |
2868 #ifdef HAVE_POSIX_ACL | |
2869 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS); | |
2870 #else | |
3330 | 2871 #ifdef HAVE_SOLARIS_ZFS_ACL |
2872 acl_t *aclent; | |
2873 | |
2874 if (acl_get((char *)fname, 0, &aclent) < 0) | |
2875 return NULL; | |
2876 ret = (vim_acl_T)aclent; | |
2877 #else | |
7 | 2878 #ifdef HAVE_SOLARIS_ACL |
2879 vim_acl_solaris_T *aclent; | |
2880 | |
2881 aclent = malloc(sizeof(vim_acl_solaris_T)); | |
2882 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0) | |
2883 { | |
2884 free(aclent); | |
2885 return NULL; | |
2886 } | |
2887 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t)); | |
2888 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0) | |
2889 { | |
2890 free(aclent->acl_entry); | |
2891 free(aclent); | |
2892 return NULL; | |
2893 } | |
2894 ret = (vim_acl_T)aclent; | |
2895 #else | |
2896 #if defined(HAVE_AIX_ACL) | |
2897 int aclsize; | |
2898 struct acl *aclent; | |
2899 | |
2900 aclsize = sizeof(struct acl); | |
2901 aclent = malloc(aclsize); | |
2902 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2903 { | |
2904 if (errno == ENOSPC) | |
2905 { | |
2906 aclsize = aclent->acl_len; | |
2907 aclent = realloc(aclent, aclsize); | |
2908 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2909 { | |
2910 free(aclent); | |
2911 return NULL; | |
2912 } | |
2913 } | |
2914 else | |
2915 { | |
2916 free(aclent); | |
2917 return NULL; | |
2918 } | |
2919 } | |
2920 ret = (vim_acl_T)aclent; | |
2921 #endif /* HAVE_AIX_ACL */ | |
2922 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2923 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2924 #endif /* HAVE_POSIX_ACL */ |
2925 return ret; | |
2926 } | |
2927 | |
2928 /* | |
2929 * Set the ACL of file "fname" to "acl" (unless it's NULL). | |
2930 */ | |
2931 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2932 mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent) |
7 | 2933 { |
2934 if (aclent == NULL) | |
2935 return; | |
2936 #ifdef HAVE_POSIX_ACL | |
2937 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent); | |
2938 #else | |
3330 | 2939 #ifdef HAVE_SOLARIS_ZFS_ACL |
2940 acl_set((char *)fname, (acl_t *)aclent); | |
2941 #else | |
7 | 2942 #ifdef HAVE_SOLARIS_ACL |
2943 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt, | |
2944 ((vim_acl_solaris_T *)aclent)->acl_entry); | |
2945 #else | |
2946 #ifdef HAVE_AIX_ACL | |
2947 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len); | |
2948 #endif /* HAVE_AIX_ACL */ | |
2949 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2950 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2951 #endif /* HAVE_POSIX_ACL */ |
2952 } | |
2953 | |
2954 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2955 mch_free_acl(vim_acl_T aclent) |
7 | 2956 { |
2957 if (aclent == NULL) | |
2958 return; | |
2959 #ifdef HAVE_POSIX_ACL | |
2960 acl_free((acl_t)aclent); | |
2961 #else | |
3330 | 2962 #ifdef HAVE_SOLARIS_ZFS_ACL |
2963 acl_free((acl_t *)aclent); | |
2964 #else | |
7 | 2965 #ifdef HAVE_SOLARIS_ACL |
2966 free(((vim_acl_solaris_T *)aclent)->acl_entry); | |
2967 free(aclent); | |
2968 #else | |
2969 #ifdef HAVE_AIX_ACL | |
2970 free(aclent); | |
2971 #endif /* HAVE_AIX_ACL */ | |
2972 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2973 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2974 #endif /* HAVE_POSIX_ACL */ |
2975 } | |
2976 #endif | |
2977 | |
2978 /* | |
2979 * Set hidden flag for "name". | |
2980 */ | |
2981 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2982 mch_hide(char_u *name UNUSED) |
7 | 2983 { |
2984 /* can't hide a file */ | |
2985 } | |
2986 | |
2987 /* | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2988 * return TRUE if "name" is a directory or a symlink to a directory |
7 | 2989 * return FALSE if "name" is not a directory |
2990 * return FALSE for error | |
2991 */ | |
2992 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2993 mch_isdir(char_u *name) |
7 | 2994 { |
2995 struct stat statb; | |
2996 | |
2997 if (*name == NUL) /* Some stat()s don't flag "" as an error. */ | |
2998 return FALSE; | |
2999 if (stat((char *)name, &statb)) | |
3000 return FALSE; | |
3001 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); | |
3002 } | |
3003 | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3004 /* |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3005 * return TRUE if "name" is a directory, NOT a symlink to a directory |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3006 * 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
|
3007 * return FALSE for error |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3008 */ |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3009 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3010 mch_isrealdir(char_u *name) |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3011 { |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3012 struct stat statb; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3013 |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3014 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
|
3015 return FALSE; |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
3016 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
|
3017 return FALSE; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3018 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
|
3019 } |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3020 |
7 | 3021 /* |
3022 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist. | |
3023 */ | |
3024 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3025 executable_file(char_u *name) |
7 | 3026 { |
3027 struct stat st; | |
3028 | |
3029 if (stat((char *)name, &st)) | |
3030 return 0; | |
5704 | 3031 #ifdef VMS |
3032 /* Like on Unix system file can have executable rights but not necessarily | |
3033 * be an executable, but on Unix is not a default for an ordianry file to | |
3034 * have an executable flag - on VMS it is in most cases. | |
3035 * Therefore, this check does not have any sense - let keep us to the | |
3036 * conventions instead: | |
3037 * *.COM and *.EXE files are the executables - the rest are not. This is | |
3038 * not ideal but better then it was. | |
3039 */ | |
3040 int vms_executable = 0; | |
3041 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0) | |
3042 { | |
3043 if (strstr(vms_tolower((char*)name),".exe") != NULL | |
3044 || strstr(vms_tolower((char*)name),".com")!= NULL) | |
3045 vms_executable = 1; | |
3046 } | |
3047 return vms_executable; | |
3048 #else | |
7 | 3049 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0; |
5704 | 3050 #endif |
7 | 3051 } |
3052 | |
3053 /* | |
11115
3b36da20ad73
patch 8.0.0445: getpgid is not supported on all systems
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3054 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not. |
6695 | 3055 * If "use_path" is FALSE only check if "name" is executable. |
7 | 3056 * Return -1 if unknown. |
3057 */ | |
3058 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3059 mch_can_exe(char_u *name, char_u **path, int use_path) |
7 | 3060 { |
3061 char_u *buf; | |
3062 char_u *p, *e; | |
3063 int retval; | |
3064 | |
6695 | 3065 /* When "use_path" is false and if it's an absolute or relative path don't |
3066 * need to use $PATH. */ | |
3067 if (!use_path || mch_isFullName(name) || (name[0] == '.' | |
3068 && (name[1] == '/' || (name[1] == '.' && name[2] == '/')))) | |
5704 | 3069 { |
6695 | 3070 /* There must be a path separator, files in the current directory |
3071 * can't be executed. */ | |
3072 if (gettail(name) != name && executable_file(name)) | |
5782 | 3073 { |
3074 if (path != NULL) | |
3075 { | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3076 if (name[0] != '/') |
5782 | 3077 *path = FullName_save(name, TRUE); |
3078 else | |
3079 *path = vim_strsave(name); | |
3080 } | |
3081 return TRUE; | |
3082 } | |
3083 return FALSE; | |
5704 | 3084 } |
7 | 3085 |
3086 p = (char_u *)getenv("PATH"); | |
3087 if (p == NULL || *p == NUL) | |
3088 return -1; | |
3089 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2)); | |
3090 if (buf == NULL) | |
3091 return -1; | |
3092 | |
3093 /* | |
3094 * Walk through all entries in $PATH to check if "name" exists there and | |
3095 * is an executable file. | |
3096 */ | |
3097 for (;;) | |
3098 { | |
3099 e = (char_u *)strchr((char *)p, ':'); | |
3100 if (e == NULL) | |
3101 e = p + STRLEN(p); | |
3102 if (e - p <= 1) /* empty entry means current dir */ | |
3103 STRCPY(buf, "./"); | |
3104 else | |
3105 { | |
418 | 3106 vim_strncpy(buf, p, e - p); |
7 | 3107 add_pathsep(buf); |
3108 } | |
3109 STRCAT(buf, name); | |
3110 retval = executable_file(buf); | |
3111 if (retval == 1) | |
5782 | 3112 { |
3113 if (path != NULL) | |
3114 { | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3115 if (buf[0] != '/') |
5782 | 3116 *path = FullName_save(buf, TRUE); |
3117 else | |
3118 *path = vim_strsave(buf); | |
3119 } | |
7 | 3120 break; |
5782 | 3121 } |
7 | 3122 |
3123 if (*e != ':') | |
3124 break; | |
3125 p = e + 1; | |
3126 } | |
3127 | |
3128 vim_free(buf); | |
3129 return retval; | |
3130 } | |
3131 | |
3132 /* | |
3133 * Check what "name" is: | |
3134 * NODE_NORMAL: file or directory (or doesn't exist) | |
3135 * NODE_WRITABLE: writable device, socket, fifo, etc. | |
3136 * NODE_OTHER: non-writable things | |
3137 */ | |
3138 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3139 mch_nodetype(char_u *name) |
7 | 3140 { |
3141 struct stat st; | |
3142 | |
3143 if (stat((char *)name, &st)) | |
3144 return NODE_NORMAL; | |
3145 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)) | |
3146 return NODE_NORMAL; | |
3147 if (S_ISBLK(st.st_mode)) /* block device isn't writable */ | |
3148 return NODE_OTHER; | |
3149 /* Everything else is writable? */ | |
3150 return NODE_WRITABLE; | |
3151 } | |
3152 | |
3153 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3154 mch_early_init(void) |
7 | 3155 { |
3156 #ifdef HAVE_CHECK_STACK_GROWTH | |
3157 int i; | |
180 | 3158 |
7 | 3159 check_stack_growth((char *)&i); |
3160 | |
180 | 3161 # ifdef HAVE_STACK_LIMIT |
7 | 3162 get_stack_limit(); |
3163 # endif | |
3164 | |
3165 #endif | |
3166 | |
3167 /* | |
3168 * Setup an alternative stack for signals. Helps to catch signals when | |
3169 * running out of stack space. | |
3170 * Use of sigaltstack() is preferred, it's more portable. | |
3171 * Ignore any errors. | |
3172 */ | |
3173 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
1737 | 3174 signal_stack = (char *)alloc(SIGSTKSZ); |
7 | 3175 init_signal_stack(); |
3176 #endif | |
3177 } | |
3178 | |
355 | 3179 #if defined(EXITFREE) || defined(PROTO) |
3180 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3181 mch_free_mem(void) |
355 | 3182 { |
359 | 3183 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
3184 if (clip_star.owned) | |
3185 clip_lose_selection(&clip_star); | |
3186 if (clip_plus.owned) | |
3187 clip_lose_selection(&clip_plus); | |
355 | 3188 # endif |
1605 | 3189 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
355 | 3190 if (xterm_Shell != (Widget)0) |
3191 XtDestroyWidget(xterm_Shell); | |
1605 | 3192 # ifndef LESSTIF_VERSION |
3193 /* Lesstif crashes here, lose some memory */ | |
355 | 3194 if (xterm_dpy != NULL) |
3195 XtCloseDisplay(xterm_dpy); | |
3196 if (app_context != (XtAppContext)NULL) | |
1605 | 3197 { |
355 | 3198 XtDestroyApplicationContext(app_context); |
1605 | 3199 # ifdef FEAT_X11 |
3200 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
3201 # endif | |
3202 } | |
3203 # endif | |
355 | 3204 # endif |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
3205 # if defined(FEAT_X11) |
1605 | 3206 if (x11_display != NULL |
3207 # ifdef FEAT_XCLIPBOARD | |
3208 && x11_display != xterm_dpy | |
3209 # endif | |
3210 ) | |
359 | 3211 XCloseDisplay(x11_display); |
3212 # endif | |
3213 # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
3214 VIM_CLEAR(signal_stack); |
359 | 3215 # endif |
3216 # ifdef FEAT_TITLE | |
3217 vim_free(oldtitle); | |
3218 vim_free(oldicon); | |
3219 # endif | |
355 | 3220 } |
3221 #endif | |
3222 | |
7 | 3223 /* |
3224 * Output a newline when exiting. | |
3225 * Make sure the newline goes to the same stream as the text. | |
3226 */ | |
3227 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3228 exit_scroll(void) |
7 | 3229 { |
167 | 3230 if (silent_mode) |
3231 return; | |
7 | 3232 if (newline_on_exit || msg_didout) |
3233 { | |
3234 if (msg_use_printf()) | |
3235 { | |
3236 if (info_message) | |
3237 mch_msg("\n"); | |
3238 else | |
3239 mch_errmsg("\r\n"); | |
3240 } | |
3241 else | |
3242 out_char('\n'); | |
3243 } | |
3244 else | |
3245 { | |
3246 restore_cterm_colors(); /* get original colors back */ | |
3247 msg_clr_eos_force(); /* clear the rest of the display */ | |
3248 windgoto((int)Rows - 1, 0); /* may have moved the cursor */ | |
3249 } | |
3250 } | |
3251 | |
3252 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3253 mch_exit(int r) |
7 | 3254 { |
3255 exiting = TRUE; | |
3256 | |
3257 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD) | |
3258 x11_export_final_selection(); | |
3259 #endif | |
3260 | |
3261 #ifdef FEAT_GUI | |
3262 if (!gui.in_use) | |
3263 #endif | |
3264 { | |
3265 settmode(TMODE_COOK); | |
3266 #ifdef FEAT_TITLE | |
14479
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3267 // restore xterm title and icon name |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3268 mch_restore_title(SAVE_RESTORE_BOTH); |
3375a8cbb442
patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents:
14461
diff
changeset
|
3269 term_pop_title(SAVE_RESTORE_BOTH); |
7 | 3270 #endif |
3271 /* | |
3272 * When t_ti is not empty but it doesn't cause swapping terminal | |
3273 * pages, need to output a newline when msg_didout is set. But when | |
3274 * t_ti does swap pages it should not go to the shell page. Do this | |
3275 * before stoptermcap(). | |
3276 */ | |
3277 if (swapping_screen() && !newline_on_exit) | |
3278 exit_scroll(); | |
3279 | |
3280 /* Stop termcap: May need to check for T_CRV response, which | |
3281 * requires RAW mode. */ | |
3282 stoptermcap(); | |
3283 | |
3284 /* | |
3285 * A newline is only required after a message in the alternate screen. | |
3286 * This is set to TRUE by wait_return(). | |
3287 */ | |
3288 if (!swapping_screen() || newline_on_exit) | |
3289 exit_scroll(); | |
3290 | |
3291 /* Cursor may have been switched off without calling starttermcap() | |
3292 * when doing "vim -u vimrc" and vimrc contains ":q". */ | |
3293 if (full_screen) | |
3294 cursor_on(); | |
3295 } | |
3296 out_flush(); | |
3297 ml_close_all(TRUE); /* remove all memfiles */ | |
3298 may_core_dump(); | |
3299 #ifdef FEAT_GUI | |
3300 if (gui.in_use) | |
3301 gui_exit(r); | |
3302 #endif | |
167 | 3303 |
765 | 3304 #ifdef MACOS_CONVERT |
167 | 3305 mac_conv_cleanup(); |
3306 #endif | |
3307 | |
7 | 3308 #ifdef __QNX__ |
3309 /* A core dump won't be created if the signal handler | |
3310 * doesn't return, so we can't call exit() */ | |
3311 if (deadly_signal != 0) | |
3312 return; | |
3313 #endif | |
3314 | |
33 | 3315 #ifdef FEAT_NETBEANS_INTG |
2210 | 3316 netbeans_send_disconnect(); |
33 | 3317 #endif |
355 | 3318 |
3319 #ifdef EXITFREE | |
3320 free_all_mem(); | |
3321 #endif | |
3322 | |
7 | 3323 exit(r); |
3324 } | |
3325 | |
3326 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3327 may_core_dump(void) |
7 | 3328 { |
3329 if (deadly_signal != 0) | |
3330 { | |
3331 signal(deadly_signal, SIG_DFL); | |
3332 kill(getpid(), deadly_signal); /* Die using the signal we caught */ | |
3333 } | |
3334 } | |
3335 | |
3336 #ifndef VMS | |
3337 | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3338 /* |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3339 * Get the file descriptor to use for tty operations. |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3340 */ |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3341 static int |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3342 get_tty_fd(int fd) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3343 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3344 int tty_fd = fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3345 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3346 #if defined(HAVE_SVR4_PTYS) && defined(SUN_SYSTEM) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3347 // On SunOS: Get the terminal parameters from "fd", or the slave device of |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3348 // "fd" when it is a master device. |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3349 if (mch_isatty(fd) > 1) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3350 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3351 char *name; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3352 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3353 name = ptsname(fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3354 if (name == NULL) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3355 return -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3356 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3357 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3358 if (tty_fd < 0) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3359 return -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3360 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3361 #endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3362 return tty_fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3363 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3364 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3365 static int |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3366 mch_tcgetattr(int fd, void *term) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3367 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3368 int tty_fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3369 int retval = -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3370 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3371 tty_fd = get_tty_fd(fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3372 if (tty_fd >= 0) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3373 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3374 #ifdef NEW_TTY_SYSTEM |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3375 # ifdef HAVE_TERMIOS_H |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3376 retval = tcgetattr(tty_fd, (struct termios *)term); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3377 # else |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3378 retval = ioctl(tty_fd, TCGETA, (struct termio *)term); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3379 # endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3380 #else |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3381 // for "old" tty systems |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3382 retval = ioctl(tty_fd, TIOCGETP, (struct sgttyb *)term); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3383 #endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3384 if (tty_fd != fd) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3385 close(tty_fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3386 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3387 return retval; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3388 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3389 |
7 | 3390 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3391 mch_settmode(int tmode) |
7 | 3392 { |
3393 static int first = TRUE; | |
3394 | |
12104
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3395 #ifdef NEW_TTY_SYSTEM |
7 | 3396 # ifdef HAVE_TERMIOS_H |
3397 static struct termios told; | |
3398 struct termios tnew; | |
3399 # else | |
3400 static struct termio told; | |
3401 struct termio tnew; | |
3402 # endif | |
3403 | |
3404 if (first) | |
3405 { | |
3406 first = FALSE; | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3407 mch_tcgetattr(read_cmd_fd, &told); |
7 | 3408 } |
3409 | |
3410 tnew = told; | |
3411 if (tmode == TMODE_RAW) | |
3412 { | |
3413 /* | |
3414 * ~ICRNL enables typing ^V^M | |
3415 */ | |
3416 tnew.c_iflag &= ~ICRNL; | |
3417 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE | |
3418 # if defined(IEXTEN) && !defined(__MINT__) | |
3419 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */ | |
3420 /* but it breaks function keys on MINT */ | |
3421 # endif | |
3422 ); | |
3423 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */ | |
3424 tnew.c_oflag &= ~ONLCR; | |
3425 # endif | |
3426 tnew.c_cc[VMIN] = 1; /* return after 1 char */ | |
3427 tnew.c_cc[VTIME] = 0; /* don't wait */ | |
3428 } | |
3429 else if (tmode == TMODE_SLEEP) | |
9381
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3430 { |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3431 /* 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
|
3432 * typeahead characters. */ |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3433 tnew.c_lflag &= ~(ICANON | ECHO); |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3434 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
|
3435 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
|
3436 } |
7 | 3437 |
3438 # if defined(HAVE_TERMIOS_H) | |
3439 { | |
3440 int n = 10; | |
3441 | |
3442 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a | |
3443 * few times. */ | |
3444 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1 | |
3445 && errno == EINTR && n > 0) | |
3446 --n; | |
3447 } | |
3448 # else | |
3449 ioctl(read_cmd_fd, TCSETA, &tnew); | |
3450 # endif | |
3451 | |
3452 #else | |
3453 /* | |
3454 * for "old" tty systems | |
3455 */ | |
3456 # ifndef TIOCSETN | |
3457 # define TIOCSETN TIOCSETP /* for hpux 9.0 */ | |
3458 # endif | |
3459 static struct sgttyb ttybold; | |
3460 struct sgttyb ttybnew; | |
3461 | |
3462 if (first) | |
3463 { | |
3464 first = FALSE; | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3465 mch_tcgetattr(read_cmd_fd, &ttybold); |
7 | 3466 } |
3467 | |
3468 ttybnew = ttybold; | |
3469 if (tmode == TMODE_RAW) | |
3470 { | |
3471 ttybnew.sg_flags &= ~(CRMOD | ECHO); | |
3472 ttybnew.sg_flags |= RAW; | |
3473 } | |
3474 else if (tmode == TMODE_SLEEP) | |
3475 ttybnew.sg_flags &= ~(ECHO); | |
3476 ioctl(read_cmd_fd, TIOCSETN, &ttybnew); | |
3477 #endif | |
3478 curr_tmode = tmode; | |
3479 } | |
3480 | |
3481 /* | |
3482 * Try to get the code for "t_kb" from the stty setting | |
3483 * | |
3484 * Even if termcap claims a backspace key, the user's setting *should* | |
3485 * prevail. stty knows more about reality than termcap does, and if | |
3486 * somebody's usual erase key is DEL (which, for most BSD users, it will | |
3487 * be), they're going to get really annoyed if their erase key starts | |
3488 * doing forward deletes for no reason. (Eric Fischer) | |
3489 */ | |
3490 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3491 get_stty(void) |
7 | 3492 { |
12104
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3493 ttyinfo_T info; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3494 char_u buf[2]; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3495 char_u *p; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3496 |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3497 if (get_tty_info(read_cmd_fd, &info) == OK) |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3498 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3499 intr_char = info.interrupt; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3500 buf[0] = info.backspace; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3501 buf[1] = NUL; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3502 add_termcode((char_u *)"kb", buf, FALSE); |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3503 |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3504 /* If <BS> and <DEL> are now the same, redefine <DEL>. */ |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3505 p = find_termcode((char_u *)"kD"); |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3506 if (p != NULL && p[0] == buf[0] && p[1] == buf[1]) |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3507 do_fixdel(NULL); |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3508 } |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3509 } |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3510 |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3511 /* |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3512 * Obtain the characters that Backspace and Enter produce on "fd". |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3513 * Returns OK or FAIL. |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3514 */ |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3515 int |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3516 get_tty_info(int fd, ttyinfo_T *info) |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3517 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3518 #ifdef NEW_TTY_SYSTEM |
7 | 3519 # ifdef HAVE_TERMIOS_H |
3520 struct termios keys; | |
3521 # else | |
3522 struct termio keys; | |
3523 # endif | |
3524 | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3525 if (mch_tcgetattr(fd, &keys) != -1) |
12104
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3526 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3527 info->backspace = keys.c_cc[VERASE]; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3528 info->interrupt = keys.c_cc[VINTR]; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3529 if (keys.c_iflag & ICRNL) |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3530 info->enter = NL; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3531 else |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3532 info->enter = CAR; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3533 if (keys.c_oflag & ONLCR) |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3534 info->nl_does_cr = TRUE; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3535 else |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3536 info->nl_does_cr = FALSE; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3537 return OK; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3538 } |
7 | 3539 #else |
3540 /* for "old" tty systems */ | |
3541 struct sgttyb keys; | |
3542 | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3543 if (mch_tcgetattr(fd, &keys) != -1) |
12104
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3544 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3545 info->backspace = keys.sg_erase; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3546 info->interrupt = keys.sg_kill; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3547 info->enter = CAR; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3548 info->nl_does_cr = TRUE; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3549 return OK; |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3550 } |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3551 #endif |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3552 return FAIL; |
7 | 3553 } |
3554 | |
3555 #endif /* VMS */ | |
3556 | |
3557 #if defined(FEAT_MOUSE_TTY) || defined(PROTO) | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3558 static int mouse_ison = FALSE; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3559 |
7 | 3560 /* |
3561 * Set mouse clicks on or off. | |
3562 */ | |
3563 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3564 mch_setmouse(int on) |
7 | 3565 { |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
3566 # ifdef FEAT_BEVAL_TERM |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3567 static int bevalterm_ison = FALSE; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3568 # endif |
7 | 3569 int xterm_mouse_vers; |
3570 | |
14631
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3571 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3572 if (!on) |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3573 // Make sure not tracing mouse movements. Important when a button-down |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3574 // was received but no release yet. |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3575 stop_xterm_trace(); |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3576 # endif |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3577 |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3578 if (on == mouse_ison |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
3579 # ifdef FEAT_BEVAL_TERM |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3580 && p_bevalterm == bevalterm_ison |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3581 # endif |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3582 ) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3583 /* return quickly if nothing to do */ |
7 | 3584 return; |
3585 | |
3586 xterm_mouse_vers = use_xterm_mouse(); | |
3145 | 3587 |
3588 # ifdef FEAT_MOUSE_URXVT | |
3746 | 3589 if (ttym_flags == TTYM_URXVT) |
3590 { | |
3145 | 3591 out_str_nf((char_u *) |
3592 (on | |
3593 ? IF_EB("\033[?1015h", ESC_STR "[?1015h") | |
3594 : IF_EB("\033[?1015l", ESC_STR "[?1015l"))); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3595 mouse_ison = on; |
3145 | 3596 } |
3597 # endif | |
3598 | |
3746 | 3599 if (ttym_flags == TTYM_SGR) |
3600 { | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3601 /* SGR mode supports columns above 223 */ |
3746 | 3602 out_str_nf((char_u *) |
3603 (on | |
3604 ? IF_EB("\033[?1006h", ESC_STR "[?1006h") | |
3605 : IF_EB("\033[?1006l", ESC_STR "[?1006l"))); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3606 mouse_ison = on; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3607 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3608 |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
3609 # ifdef FEAT_BEVAL_TERM |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3610 if (bevalterm_ison != (p_bevalterm && on)) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3611 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3612 bevalterm_ison = (p_bevalterm && on); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3613 if (xterm_mouse_vers > 1 && !bevalterm_ison) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3614 /* disable mouse movement events, enabling is below */ |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3615 out_str_nf((char_u *) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3616 (IF_EB("\033[?1003l", ESC_STR "[?1003l"))); |
3746 | 3617 } |
3618 # endif | |
3619 | |
7 | 3620 if (xterm_mouse_vers > 0) |
3621 { | |
3622 if (on) /* enable mouse events, use mouse tracking if available */ | |
3623 out_str_nf((char_u *) | |
3624 (xterm_mouse_vers > 1 | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3625 ? ( |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
3626 # ifdef FEAT_BEVAL_TERM |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3627 bevalterm_ison |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3628 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") : |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3629 # endif |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3630 IF_EB("\033[?1002h", ESC_STR "[?1002h")) |
7 | 3631 : IF_EB("\033[?1000h", ESC_STR "[?1000h"))); |
3632 else /* disable mouse events, could probably always send the same */ | |
3633 out_str_nf((char_u *) | |
3634 (xterm_mouse_vers > 1 | |
3635 ? IF_EB("\033[?1002l", ESC_STR "[?1002l") | |
3636 : IF_EB("\033[?1000l", ESC_STR "[?1000l"))); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3637 mouse_ison = on; |
7 | 3638 } |
3639 | |
3640 # ifdef FEAT_MOUSE_DEC | |
3641 else if (ttym_flags == TTYM_DEC) | |
3642 { | |
3643 if (on) /* enable mouse events */ | |
3644 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{"); | |
3645 else /* disable mouse events */ | |
3646 out_str_nf((char_u *)"\033['z"); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3647 mouse_ison = on; |
7 | 3648 } |
3649 # endif | |
3650 | |
3651 # ifdef FEAT_MOUSE_GPM | |
3652 else | |
3653 { | |
3654 if (on) | |
3655 { | |
3656 if (gpm_open()) | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3657 mouse_ison = TRUE; |
7 | 3658 } |
3659 else | |
3660 { | |
3661 gpm_close(); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3662 mouse_ison = FALSE; |
7 | 3663 } |
3664 } | |
3665 # endif | |
3666 | |
1620 | 3667 # ifdef FEAT_SYSMOUSE |
3668 else | |
3669 { | |
3670 if (on) | |
3671 { | |
3672 if (sysmouse_open() == OK) | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3673 mouse_ison = TRUE; |
1620 | 3674 } |
3675 else | |
3676 { | |
3677 sysmouse_close(); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3678 mouse_ison = FALSE; |
1620 | 3679 } |
3680 } | |
3681 # endif | |
3682 | |
7 | 3683 # ifdef FEAT_MOUSE_JSB |
3684 else | |
3685 { | |
3686 if (on) | |
3687 { | |
3688 /* D - Enable Mouse up/down messages | |
3689 * L - Enable Left Button Reporting | |
3690 * M - Enable Middle Button Reporting | |
3691 * R - Enable Right Button Reporting | |
3692 * K - Enable SHIFT and CTRL key Reporting | |
3693 * + - Enable Advanced messaging of mouse moves and up/down messages | |
3694 * Q - Quiet No Ack | |
3695 * # - Numeric value of mouse pointer required | |
3696 * 0 = Multiview 2000 cursor, used as standard | |
3697 * 1 = Windows Arrow | |
3698 * 2 = Windows I Beam | |
3699 * 3 = Windows Hour Glass | |
3700 * 4 = Windows Cross Hair | |
3701 * 5 = Windows UP Arrow | |
3702 */ | |
4299 | 3703 # ifdef JSBTERM_MOUSE_NONADVANCED |
3704 /* Disables full feedback of pointer movements */ | |
7 | 3705 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\", |
3706 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\")); | |
4299 | 3707 # else |
7 | 3708 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\", |
3709 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\")); | |
4299 | 3710 # endif |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3711 mouse_ison = TRUE; |
7 | 3712 } |
3713 else | |
3714 { | |
3715 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\", | |
3716 ESC_STR "[0~ZwQ" ESC_STR "\\")); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3717 mouse_ison = FALSE; |
7 | 3718 } |
3719 } | |
3720 # endif | |
3721 # ifdef FEAT_MOUSE_PTERM | |
3722 else | |
3723 { | |
3724 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */ | |
3725 if (on) | |
3726 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l"); | |
3727 else | |
3728 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h"); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3729 mouse_ison = on; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3730 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3731 # endif |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3732 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3733 |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
3734 #if defined(FEAT_BEVAL_TERM) || defined(PROTO) |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3735 /* |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3736 * Called when 'balloonevalterm' changed. |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3737 */ |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3738 void |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3739 mch_bevalterm_changed(void) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3740 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3741 mch_setmouse(mouse_ison); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3742 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3743 #endif |
7 | 3744 |
3745 /* | |
3746 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options. | |
3747 */ | |
3748 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3749 check_mouse_termcode(void) |
7 | 3750 { |
3751 # ifdef FEAT_MOUSE_XTERM | |
3752 if (use_xterm_mouse() | |
3145 | 3753 # ifdef FEAT_MOUSE_URXVT |
3754 && use_xterm_mouse() != 3 | |
3755 # endif | |
7 | 3756 # ifdef FEAT_GUI |
3757 && !gui.in_use | |
3758 # endif | |
3759 ) | |
3760 { | |
3761 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
180 | 3762 ? IF_EB("\233M", CSI_STR "M") |
3763 : IF_EB("\033[M", ESC_STR "[M"))); | |
7 | 3764 if (*p_mouse != NUL) |
3765 { | |
3766 /* force mouse off and maybe on to send possibly new mouse | |
3767 * activation sequence to the xterm, with(out) drag tracing. */ | |
3768 mch_setmouse(FALSE); | |
3769 setmouse(); | |
3770 } | |
3771 } | |
3772 else | |
3773 del_mouse_termcode(KS_MOUSE); | |
3774 # endif | |
3775 | |
3776 # ifdef FEAT_MOUSE_GPM | |
3777 if (!use_xterm_mouse() | |
3778 # ifdef FEAT_GUI | |
3779 && !gui.in_use | |
3780 # endif | |
3781 ) | |
3782 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG")); | |
3783 # endif | |
3784 | |
1620 | 3785 # ifdef FEAT_SYSMOUSE |
3786 if (!use_xterm_mouse() | |
3787 # ifdef FEAT_GUI | |
3788 && !gui.in_use | |
3789 # endif | |
3790 ) | |
3791 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS")); | |
3792 # endif | |
3793 | |
7 | 3794 # ifdef FEAT_MOUSE_JSB |
6102 | 3795 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */ |
7 | 3796 if (!use_xterm_mouse() |
3797 # ifdef FEAT_GUI | |
3798 && !gui.in_use | |
3799 # endif | |
3800 ) | |
3801 set_mouse_termcode(KS_JSBTERM_MOUSE, | |
3802 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw")); | |
3803 else | |
3804 del_mouse_termcode(KS_JSBTERM_MOUSE); | |
3805 # endif | |
3806 | |
3807 # ifdef FEAT_MOUSE_NET | |
180 | 3808 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't |
7 | 3809 * define it in the GUI or when using an xterm. */ |
3810 if (!use_xterm_mouse() | |
3811 # ifdef FEAT_GUI | |
3812 && !gui.in_use | |
3813 # endif | |
3814 ) | |
3815 set_mouse_termcode(KS_NETTERM_MOUSE, | |
3816 (char_u *)IF_EB("\033}", ESC_STR "}")); | |
3817 else | |
3818 del_mouse_termcode(KS_NETTERM_MOUSE); | |
3819 # endif | |
3820 | |
3821 # ifdef FEAT_MOUSE_DEC | |
6102 | 3822 /* Conflicts with xterm mouse: "\033[" and "\033[M" */ |
5932 | 3823 if (!use_xterm_mouse() |
7 | 3824 # ifdef FEAT_GUI |
3825 && !gui.in_use | |
3826 # endif | |
3827 ) | |
180 | 3828 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
3829 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "["))); | |
7 | 3830 else |
3831 del_mouse_termcode(KS_DEC_MOUSE); | |
3832 # endif | |
3833 # ifdef FEAT_MOUSE_PTERM | |
6102 | 3834 /* same conflict as the dec mouse */ |
5932 | 3835 if (!use_xterm_mouse() |
7 | 3836 # ifdef FEAT_GUI |
3837 && !gui.in_use | |
3838 # endif | |
3839 ) | |
3840 set_mouse_termcode(KS_PTERM_MOUSE, | |
3841 (char_u *) IF_EB("\033[", ESC_STR "[")); | |
3842 else | |
3843 del_mouse_termcode(KS_PTERM_MOUSE); | |
3844 # endif | |
3145 | 3845 # ifdef FEAT_MOUSE_URXVT |
5932 | 3846 if (use_xterm_mouse() == 3 |
3145 | 3847 # ifdef FEAT_GUI |
3848 && !gui.in_use | |
3849 # endif | |
3850 ) | |
3851 { | |
3852 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3853 ? IF_EB("\233*M", CSI_STR "*M") |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3854 : IF_EB("\033[*M", ESC_STR "[*M"))); |
3145 | 3855 |
3856 if (*p_mouse != NUL) | |
3857 { | |
3858 mch_setmouse(FALSE); | |
3859 setmouse(); | |
3860 } | |
3861 } | |
3862 else | |
3863 del_mouse_termcode(KS_URXVT_MOUSE); | |
3864 # endif | |
3746 | 3865 if (use_xterm_mouse() == 4 |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
3866 # ifdef FEAT_GUI |
3746 | 3867 && !gui.in_use |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
3868 # endif |
3746 | 3869 ) |
3870 { | |
3871 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3872 ? IF_EB("\233<*M", CSI_STR "<*M") |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3873 : IF_EB("\033[<*M", ESC_STR "[<*M"))); |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3874 |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3875 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME) |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3876 ? IF_EB("\233<*m", CSI_STR "<*m") |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3877 : IF_EB("\033[<*m", ESC_STR "[<*m"))); |
3746 | 3878 |
3879 if (*p_mouse != NUL) | |
3880 { | |
3881 mch_setmouse(FALSE); | |
3882 setmouse(); | |
3883 } | |
3884 } | |
3885 else | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3886 { |
3746 | 3887 del_mouse_termcode(KS_SGR_MOUSE); |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3888 del_mouse_termcode(KS_SGR_MOUSE_RELEASE); |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3889 } |
7 | 3890 } |
3891 #endif | |
3892 | |
3893 /* | |
3894 * set screen mode, always fails. | |
3895 */ | |
3896 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3897 mch_screenmode(char_u *arg UNUSED) |
7 | 3898 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
3899 emsg(_(e_screenmode)); |
7 | 3900 return FAIL; |
3901 } | |
3902 | |
3903 #ifndef VMS | |
3904 | |
3905 /* | |
3906 * Try to get the current window size: | |
3907 * 1. with an ioctl(), most accurate method | |
3908 * 2. from the environment variables LINES and COLUMNS | |
3909 * 3. from the termcap | |
3910 * 4. keep using the old values | |
3911 * Return OK when size could be determined, FAIL otherwise. | |
3912 */ | |
3913 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3914 mch_get_shellsize(void) |
7 | 3915 { |
3916 long rows = 0; | |
3917 long columns = 0; | |
3918 char_u *p; | |
3919 | |
3920 /* | |
3921 * 1. try using an ioctl. It is the most accurate method. | |
3922 * | |
3923 * Try using TIOCGWINSZ first, some systems that have it also define | |
3924 * TIOCGSIZE but don't have a struct ttysize. | |
3925 */ | |
3926 # ifdef TIOCGWINSZ | |
3927 { | |
3928 struct winsize ws; | |
3929 int fd = 1; | |
3930 | |
3931 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3932 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3933 fd = read_cmd_fd; | |
3934 if (ioctl(fd, TIOCGWINSZ, &ws) == 0) | |
3935 { | |
3936 columns = ws.ws_col; | |
3937 rows = ws.ws_row; | |
3938 } | |
3939 } | |
3940 # else /* TIOCGWINSZ */ | |
3941 # ifdef TIOCGSIZE | |
3942 { | |
3943 struct ttysize ts; | |
3944 int fd = 1; | |
3945 | |
3946 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3947 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3948 fd = read_cmd_fd; | |
3949 if (ioctl(fd, TIOCGSIZE, &ts) == 0) | |
3950 { | |
3951 columns = ts.ts_cols; | |
3952 rows = ts.ts_lines; | |
3953 } | |
3954 } | |
3955 # endif /* TIOCGSIZE */ | |
3956 # endif /* TIOCGWINSZ */ | |
3957 | |
3958 /* | |
3959 * 2. get size from environment | |
164 | 3960 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules |
3961 * the ioctl() values! | |
7 | 3962 */ |
164 | 3963 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL) |
7 | 3964 { |
3965 if ((p = (char_u *)getenv("LINES"))) | |
3966 rows = atoi((char *)p); | |
3967 if ((p = (char_u *)getenv("COLUMNS"))) | |
3968 columns = atoi((char *)p); | |
3969 } | |
3970 | |
3971 #ifdef HAVE_TGETENT | |
3972 /* | |
3973 * 3. try reading "co" and "li" entries from termcap | |
3974 */ | |
3975 if (columns == 0 || rows == 0) | |
3976 getlinecol(&columns, &rows); | |
3977 #endif | |
3978 | |
3979 /* | |
3980 * 4. If everything fails, use the old values | |
3981 */ | |
3982 if (columns <= 0 || rows <= 0) | |
3983 return FAIL; | |
3984 | |
3985 Rows = rows; | |
3986 Columns = columns; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5037
diff
changeset
|
3987 limit_screen_size(); |
7 | 3988 return OK; |
3989 } | |
3990 | |
11741
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3991 #if defined(FEAT_TERMINAL) || defined(PROTO) |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3992 /* |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3993 * Report the windows size "rows" and "cols" to tty "fd". |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3994 */ |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3995 int |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3996 mch_report_winsize(int fd, int rows, int cols) |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
3997 { |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3998 int tty_fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3999 int retval = -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4000 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4001 tty_fd = get_tty_fd(fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4002 if (tty_fd >= 0) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4003 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4004 # if defined(TIOCSWINSZ) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4005 struct winsize ws; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4006 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4007 ws.ws_col = cols; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4008 ws.ws_row = rows; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4009 ws.ws_xpixel = cols * 5; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4010 ws.ws_ypixel = rows * 10; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4011 retval = ioctl(tty_fd, TIOCSWINSZ, &ws); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4012 ch_log(NULL, "ioctl(TIOCSWINSZ) %s", |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4013 retval == 0 ? "success" : "failed"); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4014 # elif defined(TIOCSSIZE) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4015 struct ttysize ts; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4016 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4017 ts.ts_cols = cols; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4018 ts.ts_lines = rows; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4019 retval = ioctl(tty_fd, TIOCSSIZE, &ts); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4020 ch_log(NULL, "ioctl(TIOCSSIZE) %s", |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4021 retval == 0 ? "success" : "failed"); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4022 # endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4023 if (tty_fd != fd) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4024 close(tty_fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4025 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4026 return retval == 0 ? OK : FAIL; |
11741
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
4027 } |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
4028 #endif |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
4029 |
7 | 4030 /* |
4031 * Try to set the window size to Rows and Columns. | |
4032 */ | |
4033 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4034 mch_set_shellsize(void) |
7 | 4035 { |
4036 if (*T_CWS) | |
4037 { | |
4038 /* | |
4039 * NOTE: if you get an error here that term_set_winsize() is | |
4040 * undefined, check the output of configure. It could probably not | |
4041 * find a ncurses, termcap or termlib library. | |
4042 */ | |
4043 term_set_winsize((int)Rows, (int)Columns); | |
4044 out_flush(); | |
4045 screen_start(); /* don't know where cursor is now */ | |
4046 } | |
4047 } | |
4048 | |
4049 #endif /* VMS */ | |
4050 | |
4051 /* | |
4052 * Rows and/or Columns has changed. | |
4053 */ | |
4054 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4055 mch_new_shellsize(void) |
7 | 4056 { |
4057 /* Nothing to do. */ | |
4058 } | |
4059 | |
3048 | 4060 /* |
4061 * Wait for process "child" to end. | |
4062 * Return "child" if it exited properly, <= 0 on error. | |
4063 */ | |
4064 static pid_t | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4065 wait4pid(pid_t child, waitstatus *status) |
3048 | 4066 { |
4067 pid_t wait_pid = 0; | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4068 long delay_msec = 1; |
3048 | 4069 |
4070 while (wait_pid != child) | |
4071 { | |
3470 | 4072 /* When compiled with Python threads are probably used, in which case |
4073 * wait() sometimes hangs for no obvious reason. Use waitpid() | |
4074 * instead and loop (like the GUI). Also needed for other interfaces, | |
4075 * they might call system(). */ | |
4076 # ifdef __NeXT__ | |
3048 | 4077 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0); |
3470 | 4078 # else |
3048 | 4079 wait_pid = waitpid(child, status, WNOHANG); |
3470 | 4080 # endif |
3048 | 4081 if (wait_pid == 0) |
4082 { | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4083 /* 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
|
4084 mch_delay(delay_msec, TRUE); |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4085 if (++delay_msec > 10) |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4086 delay_msec = 10; |
3048 | 4087 continue; |
4088 } | |
4089 if (wait_pid <= 0 | |
4090 # ifdef ECHILD | |
4091 && errno == ECHILD | |
4092 # endif | |
4093 ) | |
4094 break; | |
4095 } | |
4096 return wait_pid; | |
4097 } | |
4098 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
4099 #if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL) |
11898
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4100 /* |
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4101 * Set the environment for a child process. |
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4102 */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4103 static void |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4104 set_child_environment( |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4105 long rows, |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4106 long columns, |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4107 char *term, |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4108 int is_terminal UNUSED) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4109 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4110 # ifdef HAVE_SETENV |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4111 char envbuf[50]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4112 # else |
11717
30247960c8a7
patch 8.0.0741: cannot build with HPUX
Christian Brabandt <cb@256bit.org>
parents:
11713
diff
changeset
|
4113 static char envbuf_Term[30]; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4114 static char envbuf_Rows[20]; |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4115 static char envbuf_Lines[20]; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4116 static char envbuf_Columns[20]; |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4117 static char envbuf_Colors[20]; |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4118 # ifdef FEAT_TERMINAL |
14063
f39150ec146e
patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13898
diff
changeset
|
4119 static char envbuf_Version[20]; |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4120 # endif |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4121 # ifdef FEAT_CLIENTSERVER |
11898
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4122 static char envbuf_Servername[60]; |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4123 # endif |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4124 # endif |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4125 long colors = |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4126 # ifdef FEAT_GUI |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4127 gui.in_use ? 256*256*256 : |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4128 # endif |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4129 t_colors; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4130 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4131 # ifdef HAVE_SETENV |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4132 setenv("TERM", term, 1); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4133 sprintf((char *)envbuf, "%ld", rows); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4134 setenv("ROWS", (char *)envbuf, 1); |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4135 sprintf((char *)envbuf, "%ld", rows); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4136 setenv("LINES", (char *)envbuf, 1); |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4137 sprintf((char *)envbuf, "%ld", columns); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4138 setenv("COLUMNS", (char *)envbuf, 1); |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4139 sprintf((char *)envbuf, "%ld", colors); |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4140 setenv("COLORS", (char *)envbuf, 1); |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4141 # ifdef FEAT_TERMINAL |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4142 if (is_terminal) |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4143 { |
14073
a9b141cf99ff
patch 8.1.0054: compiler warning for using %ld for "long long"
Christian Brabandt <cb@256bit.org>
parents:
14065
diff
changeset
|
4144 sprintf((char *)envbuf, "%ld", (long)get_vim_var_nr(VV_VERSION)); |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4145 setenv("VIM_TERMINAL", (char *)envbuf, 1); |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4146 } |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4147 # endif |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4148 # ifdef FEAT_CLIENTSERVER |
11898
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4149 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1); |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4150 # endif |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4151 # else |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4152 /* |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4153 * 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
|
4154 * Use a static array to avoid losing allocated memory. |
11898
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4155 * This won't work well when running multiple children... |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4156 */ |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4157 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4158 putenv(envbuf_Term); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4159 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4160 putenv(envbuf_Rows); |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4161 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4162 putenv(envbuf_Lines); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4163 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns), |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4164 "COLUMNS=%ld", columns); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4165 putenv(envbuf_Columns); |
11731
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4166 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors); |
d06f3576823a
patch 8.0.0748: running Vim in terminal window doesn't use the right colors
Christian Brabandt <cb@256bit.org>
parents:
11727
diff
changeset
|
4167 putenv(envbuf_Colors); |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4168 # ifdef FEAT_TERMINAL |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4169 if (is_terminal) |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4170 { |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4171 vim_snprintf(envbuf_Version, sizeof(envbuf_Version), |
14073
a9b141cf99ff
patch 8.1.0054: compiler warning for using %ld for "long long"
Christian Brabandt <cb@256bit.org>
parents:
14065
diff
changeset
|
4172 "VIM_TERMINAL=%ld", (long)get_vim_var_nr(VV_VERSION)); |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4173 putenv(envbuf_Version); |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4174 } |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4175 # endif |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4176 # ifdef FEAT_CLIENTSERVER |
11898
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4177 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername), |
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4178 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName); |
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4179 putenv(envbuf_Servername); |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4180 # endif |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4181 # endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4182 } |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4183 |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4184 static void |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4185 set_default_child_environment(int is_terminal) |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4186 { |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4187 set_child_environment(Rows, Columns, "dumb", is_terminal); |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4188 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4189 #endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4190 |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4191 #if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL) |
11894
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
4192 /* |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
4193 * Open a PTY, with FD for the master and slave side. |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
4194 * When failing "pty_master_fd" and "pty_slave_fd" are -1. |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4195 * When successful both file descriptors are stored and the allocated pty name |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4196 * is stored in both "*name1" and "*name2". |
11894
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
4197 */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4198 static void |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4199 open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **name1, char_u **name2) |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4200 { |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4201 char *tty_name; |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4202 |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4203 if (name1 != NULL) |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4204 *name1 = NULL; |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4205 if (name2 != NULL) |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4206 *name2 = NULL; |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4207 |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4208 *pty_master_fd = mch_openpty(&tty_name); // open pty |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4209 if (*pty_master_fd >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4210 { |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4211 /* Leaving out O_NOCTTY may lead to waitpid() always returning |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4212 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4213 * adding O_NOCTTY always works when defined. */ |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4214 #ifdef O_NOCTTY |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4215 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4216 #else |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4217 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4218 #endif |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4219 if (*pty_slave_fd < 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4220 { |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4221 close(*pty_master_fd); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4222 *pty_master_fd = -1; |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4223 } |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4224 else |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4225 { |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4226 if (name1 != NULL) |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4227 *name1 = vim_strsave((char_u *)tty_name); |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4228 if (name2 != NULL) |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4229 *name2 = vim_strsave((char_u *)tty_name); |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4230 } |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4231 } |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4232 } |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4233 #endif |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4234 |
11919
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4235 /* |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4236 * Send SIGINT to a child process if "c" is an interrupt character. |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4237 */ |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4238 void |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4239 may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED) |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4240 { |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4241 # ifdef SIGINT |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4242 if (c == Ctrl_C || c == intr_char) |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4243 { |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4244 # ifdef HAVE_SETSID |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4245 kill(-pid, SIGINT); |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4246 # else |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4247 kill(0, SIGINT); |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4248 # endif |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4249 if (wpid > 0) |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4250 kill(wpid, SIGINT); |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4251 } |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4252 # endif |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4253 } |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4254 |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4255 #if !defined(USE_SYSTEM) || (defined(FEAT_GUI) && defined(FEAT_TERMINAL)) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4256 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4257 static int |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4258 build_argv( |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4259 char_u *cmd, |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4260 char ***argvp, |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4261 char_u **sh_tofree, |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4262 char_u **shcf_tofree) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4263 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4264 char **argv = NULL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4265 int argc; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4266 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4267 *sh_tofree = vim_strsave(p_sh); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4268 if (*sh_tofree == NULL) /* out of memory */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4269 return FAIL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4270 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4271 if (mch_parse_cmd(*sh_tofree, TRUE, &argv, &argc) == FAIL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4272 return FAIL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4273 *argvp = argv; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4274 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4275 if (cmd != NULL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4276 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4277 char_u *s; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4278 char_u *p; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4279 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4280 if (extra_shell_arg != NULL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4281 argv[argc++] = (char *)extra_shell_arg; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4282 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4283 /* Break 'shellcmdflag' into white separated parts. This doesn't |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4284 * handle quoted strings, they are very unlikely to appear. */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4285 *shcf_tofree = alloc((unsigned)STRLEN(p_shcf) + 1); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4286 if (*shcf_tofree == NULL) /* out of memory */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4287 return FAIL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4288 s = *shcf_tofree; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4289 p = p_shcf; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4290 while (*p != NUL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4291 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4292 argv[argc++] = (char *)s; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4293 while (*p && *p != ' ' && *p != TAB) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4294 *s++ = *p++; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4295 *s++ = NUL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4296 p = skipwhite(p); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4297 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4298 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4299 argv[argc++] = (char *)cmd; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4300 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4301 argv[argc] = NULL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4302 return OK; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4303 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4304 #endif |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4305 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4306 #if defined(FEAT_GUI) && defined(FEAT_TERMINAL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4307 /* |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4308 * Use a terminal window to run a shell command in. |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4309 */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4310 static int |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4311 mch_call_shell_terminal( |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4312 char_u *cmd, |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4313 int options UNUSED) /* SHELL_*, see vim.h */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4314 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4315 jobopt_T opt; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4316 char **argv = NULL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4317 char_u *tofree1 = NULL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4318 char_u *tofree2 = NULL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4319 int retval = -1; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4320 buf_T *buf; |
14139
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4321 job_T *job; |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4322 aco_save_T aco; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4323 oparg_T oa; /* operator arguments */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4324 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4325 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4326 goto theend; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4327 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4328 init_job_options(&opt); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4329 ch_log(NULL, "starting terminal for system command '%s'", cmd); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4330 buf = term_start(NULL, argv, &opt, TERM_START_SYSTEM); |
14139
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4331 if (buf == NULL) |
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4332 goto theend; |
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4333 |
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4334 job = term_getjob(buf->b_term); |
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4335 ++job->jv_refcount; |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4336 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4337 /* Find a window to make "buf" curbuf. */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4338 aucmd_prepbuf(&aco, buf); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4339 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4340 clear_oparg(&oa); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4341 while (term_use_loop()) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4342 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4343 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4344 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4345 /* If terminal_loop() returns OK we got a key that is handled |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4346 * in Normal model. We don't do redrawing anyway. */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4347 if (terminal_loop(TRUE) == OK) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4348 normal_cmd(&oa, TRUE); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4349 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4350 else |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4351 normal_cmd(&oa, TRUE); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4352 } |
14139
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4353 retval = job->jv_exitval; |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4354 ch_log(NULL, "system command finished"); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4355 |
14139
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4356 job_unref(job); |
4d3f6bf86bec
patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents:
14073
diff
changeset
|
4357 |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4358 /* restore curwin/curbuf and a few other things */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4359 aucmd_restbuf(&aco); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4360 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4361 wait_return(TRUE); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4362 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4363 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4364 theend: |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4365 vim_free(argv); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4366 vim_free(tofree1); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4367 vim_free(tofree2); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4368 return retval; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4369 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4370 #endif |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4371 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4372 #ifdef USE_SYSTEM |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4373 /* |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4374 * Use system() to start the shell: simple but slow. |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4375 */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4376 static int |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4377 mch_call_shell_system( |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4378 char_u *cmd, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4379 int options) /* SHELL_*, see vim.h */ |
7 | 4380 { |
4381 #ifdef VMS | |
4382 char *ifn = NULL; | |
4383 char *ofn = NULL; | |
4384 #endif | |
4385 int tmode = cur_tmode; | |
9552
49512aba8e32
commit https://github.com/vim/vim/commit/b2b050ab16565c117f0e7e411ffef3700d99203b
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
4386 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
|
4387 int x; |
7 | 4388 |
4389 out_flush(); | |
4390 | |
4391 if (options & SHELL_COOKED) | |
4392 settmode(TMODE_COOK); /* set to normal mode */ | |
4393 | |
2586 | 4394 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4209 | 4395 save_clipboard(); |
2586 | 4396 loose_clipboard(); |
4397 # endif | |
4398 | |
7 | 4399 if (cmd == NULL) |
4400 x = system((char *)p_sh); | |
4401 else | |
4402 { | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4403 # ifdef VMS |
7 | 4404 if (ofn = strchr((char *)cmd, '>')) |
4405 *ofn++ = '\0'; | |
4406 if (ifn = strchr((char *)cmd, '<')) | |
4407 { | |
4408 char *p; | |
4409 | |
4410 *ifn++ = '\0'; | |
4411 p = strchr(ifn,' '); /* chop off any trailing spaces */ | |
4412 if (p) | |
4413 *p = '\0'; | |
4414 } | |
4415 if (ofn) | |
4416 x = vms_sys((char *)cmd, ofn, ifn); | |
4417 else | |
4418 x = system((char *)cmd); | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4419 # else |
7 | 4420 newcmd = lalloc(STRLEN(p_sh) |
4421 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg)) | |
4422 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE); | |
4423 if (newcmd == NULL) | |
4424 x = 0; | |
4425 else | |
4426 { | |
4427 sprintf((char *)newcmd, "%s %s %s %s", p_sh, | |
4428 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg, | |
4429 (char *)p_shcf, | |
4430 (char *)cmd); | |
4431 x = system((char *)newcmd); | |
4432 vim_free(newcmd); | |
4433 } | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4434 # endif |
7 | 4435 } |
4436 # ifdef VMS | |
4437 x = vms_sys_status(x); | |
4438 # endif | |
4439 if (emsg_silent) | |
4440 ; | |
4441 else if (x == 127) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4442 msg_puts(_("\nCannot execute shell sh\n")); |
7 | 4443 else if (x && !(options & SHELL_SILENT)) |
4444 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4445 msg_puts(_("\nshell returned ")); |
7 | 4446 msg_outnum((long)x); |
4447 msg_putchar('\n'); | |
4448 } | |
4449 | |
4450 if (tmode == TMODE_RAW) | |
4451 settmode(TMODE_RAW); /* set to raw mode */ | |
4452 # ifdef FEAT_TITLE | |
4453 resettitle(); | |
4454 # endif | |
4209 | 4455 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4456 restore_clipboard(); | |
4457 # endif | |
7 | 4458 return x; |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4459 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4460 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4461 #else /* USE_SYSTEM */ |
7 | 4462 |
167 | 4463 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use |
4464 127, some shells use that already */ | |
12200
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
4465 # define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */ |
7 | 4466 |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4467 /* |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4468 * Don't use system(), use fork()/exec(). |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4469 */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4470 static int |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4471 mch_call_shell_fork( |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4472 char_u *cmd, |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4473 int options) /* SHELL_*, see vim.h */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4474 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4475 int tmode = cur_tmode; |
7 | 4476 pid_t pid; |
167 | 4477 pid_t wpid = 0; |
7 | 4478 pid_t wait_pid = 0; |
4479 # ifdef HAVE_UNION_WAIT | |
4480 union wait status; | |
4481 # else | |
4482 int status = -1; | |
4483 # endif | |
4484 int retval = -1; | |
4485 char **argv = NULL; | |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4486 char_u *tofree1 = NULL; |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4487 char_u *tofree2 = NULL; |
7 | 4488 int i; |
167 | 4489 int pty_master_fd = -1; /* for pty's */ |
7 | 4490 # ifdef FEAT_GUI |
4491 int pty_slave_fd = -1; | |
167 | 4492 # endif |
602 | 4493 int fd_toshell[2]; /* for pipes */ |
7 | 4494 int fd_fromshell[2]; |
4495 int pipe_error = FALSE; | |
602 | 4496 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */ |
7 | 4497 |
4498 out_flush(); | |
4499 if (options & SHELL_COOKED) | |
4500 settmode(TMODE_COOK); /* set to normal mode */ | |
4501 | |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4502 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4503 goto error; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4504 |
167 | 4505 /* |
4506 * For the GUI, when writing the output into the buffer and when reading | |
4507 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout | |
4508 * of the executed command into the Vim window. Or use a pipe. | |
4509 */ | |
4510 if ((options & (SHELL_READ|SHELL_WRITE)) | |
7 | 4511 # ifdef FEAT_GUI |
167 | 4512 || (gui.in_use && show_shell_mess) |
4513 # endif | |
4514 ) | |
7 | 4515 { |
167 | 4516 # ifdef FEAT_GUI |
7 | 4517 /* |
4518 * Try to open a master pty. | |
4519 * If this works, open the slave pty. | |
4520 * If the slave can't be opened, close the master pty. | |
4521 */ | |
167 | 4522 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE))) |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4523 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL); |
7 | 4524 /* |
4525 * If not opening a pty or it didn't work, try using pipes. | |
4526 */ | |
4527 if (pty_master_fd < 0) | |
167 | 4528 # endif |
7 | 4529 { |
4530 pipe_error = (pipe(fd_toshell) < 0); | |
4531 if (!pipe_error) /* pipe create OK */ | |
4532 { | |
4533 pipe_error = (pipe(fd_fromshell) < 0); | |
4534 if (pipe_error) /* pipe create failed */ | |
4535 { | |
4536 close(fd_toshell[0]); | |
4537 close(fd_toshell[1]); | |
4538 } | |
4539 } | |
4540 if (pipe_error) | |
4541 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4542 msg_puts(_("\nCannot create pipes\n")); |
7 | 4543 out_flush(); |
4544 } | |
4545 } | |
4546 } | |
4547 | |
4548 if (!pipe_error) /* pty or pipe opened or not used */ | |
4549 { | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4550 SIGSET_DECL(curset) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4551 |
7 | 4552 # ifdef __BEOS__ |
4553 beos_cleanup_read_thread(); | |
4554 # endif | |
602 | 4555 |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4556 BLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4557 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
|
4558 if (pid == -1) |
7 | 4559 { |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4560 UNBLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4561 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4562 msg_puts(_("\nCannot fork\n")); |
167 | 4563 if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4564 # ifdef FEAT_GUI |
167 | 4565 || (gui.in_use && show_shell_mess) |
4566 # endif | |
4567 ) | |
7 | 4568 { |
167 | 4569 # ifdef FEAT_GUI |
7 | 4570 if (pty_master_fd >= 0) /* close the pseudo tty */ |
4571 { | |
4572 close(pty_master_fd); | |
4573 close(pty_slave_fd); | |
4574 } | |
4575 else /* close the pipes */ | |
167 | 4576 # endif |
7 | 4577 { |
4578 close(fd_toshell[0]); | |
4579 close(fd_toshell[1]); | |
4580 close(fd_fromshell[0]); | |
4581 close(fd_fromshell[1]); | |
4582 } | |
4583 } | |
4584 } | |
4585 else if (pid == 0) /* child */ | |
4586 { | |
4587 reset_signals(); /* handle signals normally */ | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4588 UNBLOCK_SIGNALS(&curset); |
7 | 4589 |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4590 # ifdef FEAT_JOB_CHANNEL |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4591 if (ch_log_active()) |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4592 /* close the log file in the child */ |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4593 ch_logfile((char_u *)"", (char_u *)""); |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4594 # endif |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4595 |
7 | 4596 if (!show_shell_mess || (options & SHELL_EXPAND)) |
4597 { | |
4598 int fd; | |
4599 | |
4600 /* | |
4601 * Don't want to show any message from the shell. Can't just | |
4602 * close stdout and stderr though, because some systems will | |
4603 * break if you try to write to them after that, so we must | |
4604 * use dup() to replace them with something else -- webb | |
4605 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang, | |
4606 * waiting for input. | |
4607 */ | |
4608 fd = open("/dev/null", O_RDWR | O_EXTRA, 0); | |
4609 fclose(stdin); | |
4610 fclose(stdout); | |
4611 fclose(stderr); | |
4612 | |
4613 /* | |
4614 * If any of these open()'s and dup()'s fail, we just continue | |
4615 * anyway. It's not fatal, and on most systems it will make | |
4616 * no difference at all. On a few it will cause the execvp() | |
4617 * to exit with a non-zero status even when the completion | |
4618 * could be done, which is nothing too serious. If the open() | |
4619 * or dup() failed we'd just do the same thing ourselves | |
4620 * anyway -- webb | |
4621 */ | |
4622 if (fd >= 0) | |
4623 { | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4624 vim_ignored = dup(fd); /* To replace stdin (fd 0) */ |
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4625 vim_ignored = dup(fd); /* To replace stdout (fd 1) */ |
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4626 vim_ignored = dup(fd); /* To replace stderr (fd 2) */ |
7 | 4627 |
4628 /* Don't need this now that we've duplicated it */ | |
4629 close(fd); | |
4630 } | |
4631 } | |
167 | 4632 else if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4633 # ifdef FEAT_GUI |
167 | 4634 || gui.in_use |
4635 # endif | |
4636 ) | |
7 | 4637 { |
4638 | |
167 | 4639 # ifdef HAVE_SETSID |
602 | 4640 /* Create our own process group, so that the child and all its |
4641 * children can be kill()ed. Don't do this when using pipes, | |
1698 | 4642 * because stdin is not a tty, we would lose /dev/tty. */ |
602 | 4643 if (p_stmp) |
1799 | 4644 { |
602 | 4645 (void)setsid(); |
1799 | 4646 # if defined(SIGHUP) |
4647 /* When doing "!xterm&" and 'shell' is bash: the shell | |
4648 * will exit and send SIGHUP to all processes in its | |
4649 * group, killing the just started process. Ignore SIGHUP | |
4650 * to avoid that. (suggested by Simon Schubert) | |
4651 */ | |
4652 signal(SIGHUP, SIG_IGN); | |
4653 # endif | |
4654 } | |
167 | 4655 # endif |
4656 # ifdef FEAT_GUI | |
602 | 4657 if (pty_slave_fd >= 0) |
4658 { | |
4659 /* push stream discipline modules */ | |
4660 if (options & SHELL_COOKED) | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4661 setup_slavepty(pty_slave_fd); |
7 | 4662 # ifdef TIOCSCTTY |
602 | 4663 /* Try to become controlling tty (probably doesn't work, |
4664 * unless run by root) */ | |
4665 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); | |
7 | 4666 # endif |
602 | 4667 } |
167 | 4668 # endif |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
4669 set_default_child_environment(FALSE); |
167 | 4670 |
557 | 4671 /* |
4672 * stderr is only redirected when using the GUI, so that a | |
4673 * program like gpg can still access the terminal to get a | |
4674 * passphrase using stderr. | |
4675 */ | |
167 | 4676 # ifdef FEAT_GUI |
7 | 4677 if (pty_master_fd >= 0) |
4678 { | |
4679 close(pty_master_fd); /* close master side of pty */ | |
4680 | |
4681 /* set up stdin/stdout/stderr for the child */ | |
4682 close(0); | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4683 vim_ignored = dup(pty_slave_fd); |
7 | 4684 close(1); |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4685 vim_ignored = dup(pty_slave_fd); |
557 | 4686 if (gui.in_use) |
4687 { | |
4688 close(2); | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4689 vim_ignored = dup(pty_slave_fd); |
557 | 4690 } |
7 | 4691 |
4692 close(pty_slave_fd); /* has been dupped, close it now */ | |
4693 } | |
4694 else | |
167 | 4695 # endif |
7 | 4696 { |
4697 /* set up stdin for the child */ | |
4698 close(fd_toshell[1]); | |
4699 close(0); | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4700 vim_ignored = dup(fd_toshell[0]); |
7 | 4701 close(fd_toshell[0]); |
4702 | |
4703 /* set up stdout for the child */ | |
4704 close(fd_fromshell[0]); | |
4705 close(1); | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4706 vim_ignored = dup(fd_fromshell[1]); |
7 | 4707 close(fd_fromshell[1]); |
4708 | |
557 | 4709 # ifdef FEAT_GUI |
4710 if (gui.in_use) | |
4711 { | |
4712 /* set up stderr for the child */ | |
4713 close(2); | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4714 vim_ignored = dup(1); |
557 | 4715 } |
4716 # endif | |
7 | 4717 } |
4718 } | |
167 | 4719 |
7 | 4720 /* |
4721 * There is no type cast for the argv, because the type may be | |
4722 * different on different machines. This may cause a warning | |
4723 * message with strict compilers, don't worry about it. | |
4724 * Call _exit() instead of exit() to avoid closing the connection | |
4725 * to the X server (esp. with GTK, which uses atexit()). | |
4726 */ | |
4727 execvp(argv[0], argv); | |
4728 _exit(EXEC_FAILED); /* exec failed, return failure code */ | |
4729 } | |
4730 else /* parent */ | |
4731 { | |
4732 /* | |
4733 * While child is running, ignore terminating signals. | |
167 | 4734 * Do catch CTRL-C, so that "got_int" is set. |
7 | 4735 */ |
4736 catch_signals(SIG_IGN, SIG_ERR); | |
167 | 4737 catch_int_signal(); |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4738 UNBLOCK_SIGNALS(&curset); |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4739 # ifdef FEAT_JOB_CHANNEL |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4740 ++dont_check_job_ended; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4741 # endif |
7 | 4742 /* |
4743 * For the GUI we redirect stdin, stdout and stderr to our window. | |
167 | 4744 * This is also used to pipe stdin/stdout to/from the external |
4745 * command. | |
7 | 4746 */ |
167 | 4747 if ((options & (SHELL_READ|SHELL_WRITE)) |
4748 # ifdef FEAT_GUI | |
4749 || (gui.in_use && show_shell_mess) | |
4750 # endif | |
4751 ) | |
7 | 4752 { |
167 | 4753 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */ |
7 | 4754 char_u buffer[BUFLEN + 1]; |
4755 int buffer_off = 0; /* valid bytes in buffer[] */ | |
4756 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ | |
4757 int ta_len = 0; /* valid bytes in ta_buf[] */ | |
4758 int len; | |
4759 int p_more_save; | |
4760 int old_State; | |
4761 int c; | |
4762 int toshell_fd; | |
4763 int fromshell_fd; | |
167 | 4764 garray_T ga; |
4765 int noread_cnt; | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4766 # ifdef ELAPSED_FUNC |
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4767 elapsed_T start_tv; |
1823 | 4768 # endif |
167 | 4769 |
4770 # ifdef FEAT_GUI | |
7 | 4771 if (pty_master_fd >= 0) |
4772 { | |
4773 fromshell_fd = pty_master_fd; | |
4774 toshell_fd = dup(pty_master_fd); | |
4775 } | |
4776 else | |
167 | 4777 # endif |
7 | 4778 { |
4779 close(fd_toshell[0]); | |
4780 close(fd_fromshell[1]); | |
4781 toshell_fd = fd_toshell[1]; | |
4782 fromshell_fd = fd_fromshell[0]; | |
4783 } | |
4784 | |
4785 /* | |
4786 * Write to the child if there are typed characters. | |
4787 * Read from the child if there are characters available. | |
4788 * Repeat the reading a few times if more characters are | |
4789 * available. Need to check for typed keys now and then, but | |
4790 * not too often (delays when no chars are available). | |
4791 * This loop is quit if no characters can be read from the pty | |
4792 * (WaitForChar detected special condition), or there are no | |
4793 * characters available and the child has exited. | |
4794 * Only check if the child has exited when there is no more | |
4795 * output. The child may exit before all the output has | |
4796 * been printed. | |
4797 * | |
4798 * Currently this busy loops! | |
4799 * This can probably dead-lock when the write blocks! | |
4800 */ | |
4801 p_more_save = p_more; | |
4802 p_more = FALSE; | |
4803 old_State = State; | |
4804 State = EXTERNCMD; /* don't redraw at window resize */ | |
4805 | |
602 | 4806 if ((options & SHELL_WRITE) && toshell_fd >= 0) |
167 | 4807 { |
4808 /* Fork a process that will write the lines to the | |
4809 * external program. */ | |
4810 if ((wpid = fork()) == -1) | |
4811 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4812 msg_puts(_("\nCannot fork\n")); |
167 | 4813 } |
3048 | 4814 else if (wpid == 0) /* child */ |
167 | 4815 { |
4816 linenr_T lnum = curbuf->b_op_start.lnum; | |
4817 int written = 0; | |
944 | 4818 char_u *lp = ml_get(lnum); |
167 | 4819 size_t l; |
4820 | |
177 | 4821 close(fromshell_fd); |
167 | 4822 for (;;) |
4823 { | |
944 | 4824 l = STRLEN(lp + written); |
167 | 4825 if (l == 0) |
4826 len = 0; | |
944 | 4827 else if (lp[written] == NL) |
167 | 4828 /* NL -> NUL translation */ |
4829 len = write(toshell_fd, "", (size_t)1); | |
4830 else | |
4831 { | |
3263 | 4832 char_u *s = vim_strchr(lp + written, NL); |
4833 | |
944 | 4834 len = write(toshell_fd, (char *)lp + written, |
1877 | 4835 s == NULL ? l |
4836 : (size_t)(s - (lp + written))); | |
167 | 4837 } |
1877 | 4838 if (len == (int)l) |
167 | 4839 { |
4840 /* Finished a line, add a NL, unless this line | |
4841 * should not have one. */ | |
4842 if (lnum != curbuf->b_op_end.lnum | |
6933 | 4843 || (!curbuf->b_p_bin |
4844 && curbuf->b_p_fixeol) | |
2707 | 4845 || (lnum != curbuf->b_no_eol_lnum |
167 | 4846 && (lnum != |
4847 curbuf->b_ml.ml_line_count | |
4848 || curbuf->b_p_eol))) | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4849 vim_ignored = write(toshell_fd, "\n", |
1757 | 4850 (size_t)1); |
167 | 4851 ++lnum; |
4852 if (lnum > curbuf->b_op_end.lnum) | |
4853 { | |
4854 /* finished all the lines, close pipe */ | |
4855 close(toshell_fd); | |
4856 toshell_fd = -1; | |
4857 break; | |
4858 } | |
944 | 4859 lp = ml_get(lnum); |
167 | 4860 written = 0; |
4861 } | |
4862 else if (len > 0) | |
4863 written += len; | |
4864 } | |
4865 _exit(0); | |
4866 } | |
3048 | 4867 else /* parent */ |
167 | 4868 { |
4869 close(toshell_fd); | |
4870 toshell_fd = -1; | |
4871 } | |
4872 } | |
4873 | |
4874 if (options & SHELL_READ) | |
4875 ga_init2(&ga, 1, BUFLEN); | |
4876 | |
4877 noread_cnt = 0; | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4878 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4879 ELAPSED_INIT(start_tv); |
1823 | 4880 # endif |
7 | 4881 for (;;) |
4882 { | |
4883 /* | |
4884 * Check if keys have been typed, write them to the child | |
592 | 4885 * if there are any. |
4886 * Don't do this if we are expanding wild cards (would eat | |
4887 * typeahead). | |
4888 * Don't do this when filtering and terminal is in cooked | |
4889 * mode, the shell command will handle the I/O. Avoids | |
4890 * that a typed password is echoed for ssh or gpg command. | |
602 | 4891 * Don't get characters when the child has already |
4892 * finished (wait_pid == 0). | |
167 | 4893 * Don't read characters unless we didn't get output for a |
1823 | 4894 * while (noread_cnt > 4), avoids that ":r !ls" eats |
4895 * typeahead. | |
7 | 4896 */ |
4897 len = 0; | |
4898 if (!(options & SHELL_EXPAND) | |
592 | 4899 && ((options & |
4900 (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) | |
4901 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) | |
1823 | 4902 # ifdef FEAT_GUI |
592 | 4903 || gui.in_use |
1823 | 4904 # endif |
592 | 4905 ) |
602 | 4906 && wait_pid == 0 |
1823 | 4907 && (ta_len > 0 || noread_cnt > 4)) |
7 | 4908 { |
1823 | 4909 if (ta_len == 0) |
4910 { | |
4911 /* Get extra characters when we don't have any. | |
4912 * Reset the counter and timer. */ | |
4913 noread_cnt = 0; | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4914 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4915 ELAPSED_INIT(start_tv); |
1823 | 4916 # endif |
4917 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); | |
4918 } | |
4919 if (ta_len > 0 || len > 0) | |
4920 { | |
7 | 4921 /* |
4922 * For pipes: | |
4923 * Check for CTRL-C: send interrupt signal to child. | |
4924 * Check for CTRL-D: EOF, close pipe to child. | |
4925 */ | |
4926 if (len == 1 && (pty_master_fd < 0 || cmd != NULL)) | |
4927 { | |
4928 /* | |
4929 * Send SIGINT to the child's group or all | |
4930 * processes in our group. | |
4931 */ | |
11919
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4932 may_send_sigint(ta_buf[ta_len], pid, wpid); |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4933 |
7 | 4934 if (pty_master_fd < 0 && toshell_fd >= 0 |
4935 && ta_buf[ta_len] == Ctrl_D) | |
4936 { | |
4937 close(toshell_fd); | |
4938 toshell_fd = -1; | |
4939 } | |
4940 } | |
4941 | |
4942 /* replace K_BS by <BS> and K_DEL by <DEL> */ | |
4943 for (i = ta_len; i < ta_len + len; ++i) | |
4944 { | |
4945 if (ta_buf[i] == CSI && len - i > 2) | |
4946 { | |
4947 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); | |
4948 if (c == K_DEL || c == K_KDEL || c == K_BS) | |
4949 { | |
4950 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, | |
4951 (size_t)(len - i - 2)); | |
4952 if (c == K_DEL || c == K_KDEL) | |
4953 ta_buf[i] = DEL; | |
4954 else | |
4955 ta_buf[i] = Ctrl_H; | |
4956 len -= 2; | |
4957 } | |
4958 } | |
4959 else if (ta_buf[i] == '\r') | |
4960 ta_buf[i] = '\n'; | |
4961 if (has_mbyte) | |
1903 | 4962 i += (*mb_ptr2len_len)(ta_buf + i, |
4963 ta_len + len - i) - 1; | |
7 | 4964 } |
4965 | |
4966 /* | |
4967 * For pipes: echo the typed characters. | |
4968 * For a pty this does not seem to work. | |
4969 */ | |
4970 if (pty_master_fd < 0) | |
4971 { | |
4972 for (i = ta_len; i < ta_len + len; ++i) | |
4973 { | |
4974 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') | |
4975 msg_putchar(ta_buf[i]); | |
4976 else if (has_mbyte) | |
4977 { | |
474 | 4978 int l = (*mb_ptr2len)(ta_buf + i); |
7 | 4979 |
4980 msg_outtrans_len(ta_buf + i, l); | |
4981 i += l - 1; | |
4982 } | |
4983 else | |
4984 msg_outtrans_len(ta_buf + i, 1); | |
4985 } | |
4986 windgoto(msg_row, msg_col); | |
4987 out_flush(); | |
4988 } | |
4989 | |
4990 ta_len += len; | |
4991 | |
4992 /* | |
4993 * Write the characters to the child, unless EOF has | |
4994 * been typed for pipes. Write one character at a | |
1698 | 4995 * time, to avoid losing too much typeahead. |
167 | 4996 * When writing buffer lines, drop the typed |
4997 * characters (only check for CTRL-C). | |
7 | 4998 */ |
167 | 4999 if (options & SHELL_WRITE) |
5000 ta_len = 0; | |
5001 else if (toshell_fd >= 0) | |
7 | 5002 { |
5003 len = write(toshell_fd, (char *)ta_buf, (size_t)1); | |
5004 if (len > 0) | |
5005 { | |
5006 ta_len -= len; | |
5007 mch_memmove(ta_buf, ta_buf + len, ta_len); | |
5008 } | |
5009 } | |
1823 | 5010 } |
7 | 5011 } |
5012 | |
167 | 5013 if (got_int) |
5014 { | |
5015 /* CTRL-C sends a signal to the child, we ignore it | |
5016 * ourselves */ | |
5017 # ifdef HAVE_SETSID | |
5018 kill(-pid, SIGINT); | |
5019 # else | |
5020 kill(0, SIGINT); | |
5021 # endif | |
5022 if (wpid > 0) | |
5023 kill(wpid, SIGINT); | |
5024 got_int = FALSE; | |
5025 } | |
5026 | |
7 | 5027 /* |
5028 * Check if the child has any characters to be printed. | |
5029 * Read them and write them to our window. Repeat this as | |
5030 * long as there is something to do, avoid the 10ms wait | |
5031 * for mch_inchar(), or sending typeahead characters to | |
5032 * the external process. | |
5033 * TODO: This should handle escape sequences, compatible | |
5034 * to some terminal (vt52?). | |
5035 */ | |
167 | 5036 ++noread_cnt; |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5037 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL)) |
7 | 5038 { |
2664 | 5039 len = read_eintr(fromshell_fd, buffer |
7 | 5040 + buffer_off, (size_t)(BUFLEN - buffer_off) |
5041 ); | |
5042 if (len <= 0) /* end of file or error */ | |
5043 goto finished; | |
167 | 5044 |
5045 noread_cnt = 0; | |
5046 if (options & SHELL_READ) | |
5047 { | |
5048 /* Do NUL -> NL translation, append NL separated | |
5049 * lines to the current buffer. */ | |
5050 for (i = 0; i < len; ++i) | |
5051 { | |
5052 if (buffer[i] == NL) | |
5053 append_ga_line(&ga); | |
5054 else if (buffer[i] == NUL) | |
5055 ga_append(&ga, NL); | |
5056 else | |
5057 ga_append(&ga, buffer[i]); | |
5058 } | |
5059 } | |
5060 else if (has_mbyte) | |
7 | 5061 { |
5062 int l; | |
13478
601d797cca88
patch 8.0.1613: warning for unused variable in tiny build
Christian Brabandt <cb@256bit.org>
parents:
13470
diff
changeset
|
5063 char_u *p; |
7 | 5064 |
167 | 5065 len += buffer_off; |
5066 buffer[len] = NUL; | |
5067 | |
7 | 5068 /* Check if the last character in buffer[] is |
5069 * incomplete, keep these bytes for the next | |
5070 * round. */ | |
5071 for (p = buffer; p < buffer + len; p += l) | |
5072 { | |
9898
bff8a09016a5
commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents:
9873
diff
changeset
|
5073 l = MB_CPTR2LEN(p); |
7 | 5074 if (l == 0) |
5075 l = 1; /* NUL byte? */ | |
5076 else if (MB_BYTE2LEN(*p) != l) | |
5077 break; | |
5078 } | |
5079 if (p == buffer) /* no complete character */ | |
5080 { | |
5081 /* avoid getting stuck at an illegal byte */ | |
5082 if (len >= 12) | |
5083 ++p; | |
5084 else | |
5085 { | |
5086 buffer_off = len; | |
5087 continue; | |
5088 } | |
5089 } | |
5090 c = *p; | |
5091 *p = NUL; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5092 msg_puts((char *)buffer); |
7 | 5093 if (p < buffer + len) |
5094 { | |
5095 *p = c; | |
5096 buffer_off = (buffer + len) - p; | |
5097 mch_memmove(buffer, p, buffer_off); | |
5098 continue; | |
5099 } | |
5100 buffer_off = 0; | |
5101 } | |
5102 else | |
5103 { | |
5104 buffer[len] = NUL; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5105 msg_puts((char *)buffer); |
7 | 5106 } |
5107 | |
5108 windgoto(msg_row, msg_col); | |
5109 cursor_on(); | |
5110 out_flush(); | |
5111 if (got_int) | |
5112 break; | |
1823 | 5113 |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5114 # ifdef ELAPSED_FUNC |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5115 if (wait_pid == 0) |
1823 | 5116 { |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5117 long msec = ELAPSED_FUNC(start_tv); |
1823 | 5118 |
5119 /* Avoid that we keep looping here without | |
5120 * checking for a CTRL-C for a long time. Don't | |
5121 * break out too often to avoid losing typeahead. */ | |
5122 if (msec > 2000) | |
5123 { | |
5124 noread_cnt = 5; | |
5125 break; | |
5126 } | |
5127 } | |
5128 # endif | |
7 | 5129 } |
5130 | |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5131 /* 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
|
5132 * 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
|
5133 * buffered. */ |
602 | 5134 if (wait_pid == pid) |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5135 { |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5136 if (noread_cnt < 5) |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5137 continue; |
602 | 5138 break; |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5139 } |
602 | 5140 |
7 | 5141 /* |
5142 * Check if the child still exists, before checking for | |
1698 | 5143 * typed characters (otherwise we would lose typeahead). |
7 | 5144 */ |
167 | 5145 # ifdef __NeXT__ |
3048 | 5146 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); |
167 | 5147 # else |
7 | 5148 wait_pid = waitpid(pid, &status, WNOHANG); |
167 | 5149 # endif |
7 | 5150 if ((wait_pid == (pid_t)-1 && errno == ECHILD) |
5151 || (wait_pid == pid && WIFEXITED(status))) | |
5152 { | |
602 | 5153 /* Don't break the loop yet, try reading more |
5154 * characters from "fromshell_fd" first. When using | |
5155 * pipes there might still be something to read and | |
5156 * then we'll break the loop at the "break" above. */ | |
7 | 5157 wait_pid = pid; |
5158 } | |
602 | 5159 else |
5160 wait_pid = 0; | |
4230 | 5161 |
4248 | 5162 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 5163 /* Handle any X events, e.g. serving the clipboard. */ |
5164 clip_update(); | |
5165 # endif | |
7 | 5166 } |
5167 finished: | |
5168 p_more = p_more_save; | |
167 | 5169 if (options & SHELL_READ) |
5170 { | |
5171 if (ga.ga_len > 0) | |
5172 { | |
5173 append_ga_line(&ga); | |
5174 /* remember that the NL was missing */ | |
2707 | 5175 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; |
167 | 5176 } |
5177 else | |
2707 | 5178 curbuf->b_no_eol_lnum = 0; |
167 | 5179 ga_clear(&ga); |
5180 } | |
5181 | |
7 | 5182 /* |
5183 * Give all typeahead that wasn't used back to ui_inchar(). | |
5184 */ | |
5185 if (ta_len) | |
5186 ui_inchar_undo(ta_buf, ta_len); | |
5187 State = old_State; | |
5188 if (toshell_fd >= 0) | |
5189 close(toshell_fd); | |
5190 close(fromshell_fd); | |
5191 } | |
4248 | 5192 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 5193 else |
5194 { | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5195 long delay_msec = 1; |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5196 |
4230 | 5197 /* |
5198 * Similar to the loop above, but only handle X events, no | |
5199 * I/O. | |
5200 */ | |
5201 for (;;) | |
5202 { | |
5203 if (got_int) | |
5204 { | |
5205 /* CTRL-C sends a signal to the child, we ignore it | |
5206 * ourselves */ | |
5207 # ifdef HAVE_SETSID | |
5208 kill(-pid, SIGINT); | |
5209 # else | |
5210 kill(0, SIGINT); | |
5211 # endif | |
5212 got_int = FALSE; | |
5213 } | |
5214 # ifdef __NeXT__ | |
5215 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); | |
5216 # else | |
5217 wait_pid = waitpid(pid, &status, WNOHANG); | |
5218 # endif | |
5219 if ((wait_pid == (pid_t)-1 && errno == ECHILD) | |
5220 || (wait_pid == pid && WIFEXITED(status))) | |
5221 { | |
5222 wait_pid = pid; | |
5223 break; | |
5224 } | |
5225 | |
5226 /* Handle any X events, e.g. serving the clipboard. */ | |
5227 clip_update(); | |
5228 | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5229 /* 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
|
5230 * less time. */ |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5231 mch_delay(delay_msec, TRUE); |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5232 if (++delay_msec > 10) |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5233 delay_msec = 10; |
4230 | 5234 } |
5235 } | |
5236 # endif | |
7 | 5237 |
5238 /* | |
5239 * Wait until our child has exited. | |
5240 * Ignore wait() returning pids of other children and returning | |
5241 * because of some signal like SIGWINCH. | |
5242 * Don't wait if wait_pid was already set above, indicating the | |
5243 * child already exited. | |
5244 */ | |
3048 | 5245 if (wait_pid != pid) |
5246 wait_pid = wait4pid(pid, &status); | |
7 | 5247 |
2600 | 5248 # ifdef FEAT_GUI |
5249 /* Close slave side of pty. Only do this after the child has | |
5250 * exited, otherwise the child may hang when it tries to write on | |
5251 * the pty. */ | |
5252 if (pty_master_fd >= 0) | |
5253 close(pty_slave_fd); | |
5254 # endif | |
5255 | |
167 | 5256 /* Make sure the child that writes to the external program is |
5257 * dead. */ | |
5258 if (wpid > 0) | |
3048 | 5259 { |
167 | 5260 kill(wpid, SIGKILL); |
3048 | 5261 wait4pid(wpid, NULL); |
5262 } | |
167 | 5263 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5264 # ifdef FEAT_JOB_CHANNEL |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5265 --dont_check_job_ended; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5266 # endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5267 |
7 | 5268 /* |
5269 * Set to raw mode right now, otherwise a CTRL-C after | |
5270 * catch_signals() will kill Vim. | |
5271 */ | |
5272 if (tmode == TMODE_RAW) | |
5273 settmode(TMODE_RAW); | |
5274 did_settmode = TRUE; | |
5275 set_signals(); | |
5276 | |
5277 if (WIFEXITED(status)) | |
5278 { | |
129 | 5279 /* LINTED avoid "bitwise operation on signed value" */ |
7 | 5280 retval = WEXITSTATUS(status); |
4074 | 5281 if (retval != 0 && !emsg_silent) |
7 | 5282 { |
5283 if (retval == EXEC_FAILED) | |
5284 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5285 msg_puts(_("\nCannot execute shell ")); |
7 | 5286 msg_outtrans(p_sh); |
5287 msg_putchar('\n'); | |
5288 } | |
5289 else if (!(options & SHELL_SILENT)) | |
5290 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5291 msg_puts(_("\nshell returned ")); |
7 | 5292 msg_outnum((long)retval); |
5293 msg_putchar('\n'); | |
5294 } | |
5295 } | |
5296 } | |
5297 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5298 msg_puts(_("\nCommand terminated\n")); |
7 | 5299 } |
5300 } | |
5301 | |
5302 error: | |
5303 if (!did_settmode) | |
5304 if (tmode == TMODE_RAW) | |
5305 settmode(TMODE_RAW); /* set to raw mode */ | |
5306 # ifdef FEAT_TITLE | |
5307 resettitle(); | |
5308 # endif | |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5309 vim_free(argv); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5310 vim_free(tofree1); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5311 vim_free(tofree2); |
7 | 5312 |
5313 return retval; | |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5314 } |
7 | 5315 #endif /* USE_SYSTEM */ |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5316 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5317 int |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5318 mch_call_shell( |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5319 char_u *cmd, |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5320 int options) /* SHELL_*, see vim.h */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5321 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5322 #if defined(FEAT_GUI) && defined(FEAT_TERMINAL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5323 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL) |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5324 return mch_call_shell_terminal(cmd, options); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5325 #endif |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5326 #ifdef USE_SYSTEM |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5327 return mch_call_shell_system(cmd, options); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5328 #else |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5329 return mch_call_shell_fork(cmd, options); |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5330 #endif |
7 | 5331 } |
5332 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5333 #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
|
5334 void |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
5335 mch_job_start(char **argv, job_T *job, jobopt_T *options, int is_terminal) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5336 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5337 pid_t pid; |
11933
d033653d3df8
patch 8.0.0846: cannot get the name of the pty of a job
Christian Brabandt <cb@256bit.org>
parents:
11925
diff
changeset
|
5338 int fd_in[2] = {-1, -1}; /* for stdin */ |
d033653d3df8
patch 8.0.0846: cannot get the name of the pty of a job
Christian Brabandt <cb@256bit.org>
parents:
11925
diff
changeset
|
5339 int fd_out[2] = {-1, -1}; /* for stdout */ |
d033653d3df8
patch 8.0.0846: cannot get the name of the pty of a job
Christian Brabandt <cb@256bit.org>
parents:
11925
diff
changeset
|
5340 int fd_err[2] = {-1, -1}; /* for stderr */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5341 int pty_master_fd = -1; |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5342 int pty_slave_fd = -1; |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
5343 channel_T *channel = NULL; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5344 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
|
5345 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
|
5346 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
|
5347 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
|
5348 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
|
5349 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE; |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5350 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER; |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5351 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
|
5352 SIGSET_DECL(curset) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5353 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5354 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
|
5355 use_null_for_err = TRUE; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5356 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5357 /* default is to fail */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5358 job->jv_status = JOB_FAILED; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5359 |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5360 if (options->jo_pty |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5361 && (!(use_file_for_in || use_null_for_in) |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
5362 || !(use_file_for_out || use_null_for_out) |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5363 || !(use_out_for_err || use_file_for_err || use_null_for_err))) |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
5364 open_pty(&pty_master_fd, &pty_slave_fd, |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
5365 &job->jv_tty_out, &job->jv_tty_in); |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5366 |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
5367 /* 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
|
5368 /* 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
|
5369 if (use_file_for_in) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5370 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5371 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
|
5372 |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5373 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
|
5374 if (fd_in[0] < 0) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5375 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5376 semsg(_(e_notopen), fname); |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5377 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5378 } |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5379 } |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5380 else |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5381 /* When writing buffer lines to the input don't use the pty, so that |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5382 * the pipe can be closed when all lines were written. */ |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5383 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in) |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5384 && pipe(fd_in) < 0) |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5385 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5386 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5387 if (use_file_for_out) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5388 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5389 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
|
5390 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5391 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
|
5392 if (fd_out[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5393 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5394 semsg(_(e_notopen), fname); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5395 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5396 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5397 } |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5398 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5399 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5400 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5401 if (use_file_for_err) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5402 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5403 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
|
5404 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5405 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
|
5406 if (fd_err[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5407 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5408 semsg(_(e_notopen), fname); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5409 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5410 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5411 } |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5412 else if (!use_out_for_err && !use_null_for_err |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5413 && pty_master_fd < 0 && pipe(fd_err) < 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5414 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5415 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5416 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
|
5417 { |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5418 if (options->jo_set & JO_CHANNEL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5419 { |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5420 channel = options->jo_channel; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5421 if (channel != NULL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5422 ++channel->ch_refcount; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5423 } |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5424 else |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5425 channel = add_channel(); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5426 if (channel == NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5427 goto failed; |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5428 if (job->jv_tty_out != NULL) |
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5429 ch_log(channel, "using pty %s on fd %d", |
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5430 job->jv_tty_out, pty_master_fd); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5431 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5432 |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5433 BLOCK_SIGNALS(&curset); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5434 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
|
5435 if (pid == -1) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5436 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5437 /* failed to fork */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5438 UNBLOCK_SIGNALS(&curset); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5439 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5440 } |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5441 if (pid == 0) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5442 { |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5443 int null_fd = -1; |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5444 int stderr_works = TRUE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5445 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5446 /* child */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5447 reset_signals(); /* handle signals normally */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5448 UNBLOCK_SIGNALS(&curset); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5449 |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5450 # ifdef FEAT_JOB_CHANNEL |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5451 if (ch_log_active()) |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5452 /* close the log file in the child */ |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5453 ch_logfile((char_u *)"", (char_u *)""); |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5454 # endif |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5455 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5456 # ifdef HAVE_SETSID |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5457 /* 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
|
5458 * 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
|
5459 * 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
|
5460 (void)setsid(); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5461 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5462 |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5463 # ifdef FEAT_TERMINAL |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5464 if (options->jo_term_rows > 0) |
13585
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5465 { |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5466 char *term = (char *)T_NAME; |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5467 |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5468 #ifdef FEAT_GUI |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5469 if (term_is_gui(T_NAME)) |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5470 /* In the GUI 'term' is not what we want, use $TERM. */ |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5471 term = getenv("TERM"); |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5472 #endif |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5473 /* Use 'term' or $TERM if it starts with "xterm", otherwise fall |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5474 * back to "xterm". */ |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5475 if (term == NULL || *term == NUL || STRNCMP(term, "xterm", 5) != 0) |
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5476 term = "xterm"; |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5477 set_child_environment( |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5478 (long)options->jo_term_rows, |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5479 (long)options->jo_term_cols, |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
5480 term, |
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
5481 is_terminal); |
13585
03224283bafc
patch 8.0.1665: when running a terminal from the GUI 'term' is not useful
Christian Brabandt <cb@256bit.org>
parents:
13511
diff
changeset
|
5482 } |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5483 else |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5484 # endif |
14065
e271ca6f32f9
patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents:
14063
diff
changeset
|
5485 set_default_child_environment(is_terminal); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5486 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5487 if (options->jo_env != NULL) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5488 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5489 dict_T *dict = options->jo_env; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5490 hashitem_T *hi; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5491 int todo = (int)dict->dv_hashtab.ht_used; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5492 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5493 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5494 if (!HASHITEM_EMPTY(hi)) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5495 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5496 typval_T *item = &dict_lookup(hi)->di_tv; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5497 |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
5498 vim_setenv((char_u*)hi->hi_key, tv_get_string(item)); |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5499 --todo; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5500 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5501 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5502 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5503 if (use_null_for_in || use_null_for_out || use_null_for_err) |
12200
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5504 { |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5505 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0); |
12200
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5506 if (null_fd < 0) |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5507 { |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5508 perror("opening /dev/null failed"); |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5509 _exit(OPEN_NULL_FAILED); |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5510 } |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5511 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5512 |
11925
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5513 if (pty_slave_fd >= 0) |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5514 { |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5515 /* push stream discipline modules */ |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
5516 setup_slavepty(pty_slave_fd); |
11925
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5517 # ifdef TIOCSCTTY |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5518 /* Try to become controlling tty (probably doesn't work, |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5519 * unless run by root) */ |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5520 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5521 # endif |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5522 } |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5523 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5524 /* set up stdin for the child */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5525 close(0); |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5526 if (use_null_for_in && null_fd >= 0) |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5527 vim_ignored = dup(null_fd); |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5528 else if (fd_in[0] < 0) |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5529 vim_ignored = dup(pty_slave_fd); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5530 else |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5531 vim_ignored = dup(fd_in[0]); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5532 |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5533 /* set up stderr for the child */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5534 close(2); |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5535 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
|
5536 { |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5537 vim_ignored = dup(null_fd); |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5538 stderr_works = FALSE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5539 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5540 else if (use_out_for_err) |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5541 vim_ignored = dup(fd_out[1]); |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5542 else if (fd_err[1] < 0) |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5543 vim_ignored = dup(pty_slave_fd); |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5544 else |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5545 vim_ignored = dup(fd_err[1]); |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5546 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5547 /* set up stdout for the child */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5548 close(1); |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5549 if (use_null_for_out && null_fd >= 0) |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5550 vim_ignored = dup(null_fd); |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5551 else if (fd_out[1] < 0) |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5552 vim_ignored = dup(pty_slave_fd); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5553 else |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5554 vim_ignored = dup(fd_out[1]); |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5555 |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5556 if (fd_in[0] >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5557 close(fd_in[0]); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5558 if (fd_in[1] >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5559 close(fd_in[1]); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5560 if (fd_out[0] >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5561 close(fd_out[0]); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5562 if (fd_out[1] >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5563 close(fd_out[1]); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5564 if (fd_err[0] >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5565 close(fd_err[0]); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5566 if (fd_err[1] >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5567 close(fd_err[1]); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5568 if (pty_master_fd >= 0) |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5569 { |
11925
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5570 close(pty_master_fd); /* not used in the child */ |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5571 close(pty_slave_fd); /* was duped above */ |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5572 } |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
5573 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5574 if (null_fd >= 0) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5575 close(null_fd); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5576 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5577 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5578 _exit(EXEC_FAILED); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5579 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5580 /* See above for type of argv. */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5581 execvp(argv[0], argv); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5582 |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5583 if (stderr_works) |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5584 perror("executing job failed"); |
11919
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
5585 # ifdef EXITFREE |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5586 /* 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
|
5587 * reporting possibly leaked memory. */ |
11919
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
5588 # endif |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5589 _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
|
5590 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5591 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5592 /* parent */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5593 UNBLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5594 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5595 job->jv_pid = pid; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5596 job->jv_status = JOB_STARTED; |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5597 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
|
5598 |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5599 if (pty_master_fd >= 0) |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5600 close(pty_slave_fd); /* not used in the parent */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5601 /* close child stdin, stdout and stderr */ |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5602 if (fd_in[0] >= 0) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5603 close(fd_in[0]); |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5604 if (fd_out[1] >= 0) |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5605 close(fd_out[1]); |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5606 if (fd_err[1] >= 0) |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5607 close(fd_err[1]); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5608 if (channel != NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5609 { |
16227
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5610 int in_fd = INVALID_FD; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5611 int out_fd = INVALID_FD; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5612 int err_fd = INVALID_FD; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5613 |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5614 if (!(use_file_for_in || use_null_for_in)) |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5615 in_fd = fd_in[1] >= 0 ? fd_in[1] : pty_master_fd; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5616 |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5617 if (!(use_file_for_out || use_null_for_out)) |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5618 out_fd = fd_out[0] >= 0 ? fd_out[0] : pty_master_fd; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5619 |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5620 // When using pty_master_fd only set it for stdout, do not duplicate |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5621 // it for stderr, it only needs to be read once. |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5622 if (!(use_out_for_err || use_file_for_err || use_null_for_err)) |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5623 { |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5624 if (fd_err[0] >= 0) |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5625 err_fd = fd_err[0]; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5626 else if (out_fd != pty_master_fd) |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5627 err_fd = pty_master_fd; |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5628 } |
13778
5f6c61a71c02
patch 8.0.1761: job in terminal window with no output channel is killed
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
5629 |
5f6c61a71c02
patch 8.0.1761: job in terminal window with no output channel is killed
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
5630 channel_set_pipes(channel, in_fd, out_fd, err_fd); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5631 channel_set_job(channel, job, options); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5632 } |
11894
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5633 else |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5634 { |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5635 if (fd_in[1] >= 0) |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5636 close(fd_in[1]); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5637 if (fd_out[0] >= 0) |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5638 close(fd_out[0]); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5639 if (fd_err[0] >= 0) |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5640 close(fd_err[0]); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5641 if (pty_master_fd >= 0) |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5642 close(pty_master_fd); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5643 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5644 |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5645 /* success! */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5646 return; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5647 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5648 failed: |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5649 channel_unref(channel); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5650 if (fd_in[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5651 close(fd_in[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5652 if (fd_in[1] >= 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5653 close(fd_in[1]); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5654 if (fd_out[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5655 close(fd_out[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5656 if (fd_out[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5657 close(fd_out[1]); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5658 if (fd_err[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5659 close(fd_err[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5660 if (fd_err[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5661 close(fd_err[1]); |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5662 if (pty_master_fd >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5663 close(pty_master_fd); |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5664 if (pty_slave_fd >= 0) |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5665 close(pty_slave_fd); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5666 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5667 |
15711
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5668 static char_u * |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5669 get_signal_name(int sig) |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5670 { |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5671 int i; |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5672 char_u numbuf[NUMBUFLEN]; |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5673 |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5674 if (sig == SIGKILL) |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5675 return vim_strsave((char_u *)"kill"); |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5676 |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5677 for (i = 0; signal_info[i].sig != -1; i++) |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5678 if (sig == signal_info[i].sig) |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5679 return strlow_save((char_u *)signal_info[i].name); |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5680 |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5681 vim_snprintf((char *)numbuf, NUMBUFLEN, "%d", sig); |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5682 return vim_strsave(numbuf); |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5683 } |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5684 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5685 char * |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5686 mch_job_status(job_T *job) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5687 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5688 # ifdef HAVE_UNION_WAIT |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5689 union wait status; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5690 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5691 int status = -1; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5692 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5693 pid_t wait_pid = 0; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5694 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5695 # ifdef __NeXT__ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5696 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
|
5697 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5698 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
|
5699 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5700 if (wait_pid == -1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5701 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5702 /* process must have exited */ |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5703 if (job->jv_status < JOB_ENDED) |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5704 ch_log(job->jv_channel, "Job no longer exists: %s", |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5705 strerror(errno)); |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5706 goto return_dead; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5707 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5708 if (wait_pid == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5709 return "run"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5710 if (WIFEXITED(status)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5711 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5712 /* 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
|
5713 job->jv_exitval = WEXITSTATUS(status); |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5714 if (job->jv_status < JOB_ENDED) |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5715 ch_log(job->jv_channel, "Job exited with %d", job->jv_exitval); |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5716 goto return_dead; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5717 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5718 if (WIFSIGNALED(status)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5719 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5720 job->jv_exitval = -1; |
15711
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5721 job->jv_termsig = get_signal_name(WTERMSIG(status)); |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5722 if (job->jv_status < JOB_ENDED && job->jv_termsig != NULL) |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5723 ch_log(job->jv_channel, "Job terminated by signal \"%s\"", |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5724 job->jv_termsig); |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5725 goto return_dead; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5726 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5727 return "run"; |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5728 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5729 return_dead: |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10375
diff
changeset
|
5730 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
|
5731 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5732 return "dead"; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5733 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5734 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5735 job_T * |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5736 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
|
5737 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5738 # ifdef HAVE_UNION_WAIT |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5739 union wait status; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5740 # else |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5741 int status = -1; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5742 # endif |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5743 pid_t wait_pid = 0; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5744 job_T *job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5745 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5746 # ifndef USE_SYSTEM |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5747 /* 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
|
5748 * 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
|
5749 * would then be wrong. */ |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5750 if (dont_check_job_ended > 0) |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5751 return NULL; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5752 # endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5753 |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5754 # ifdef __NeXT__ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5755 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
|
5756 # else |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5757 wait_pid = waitpid(-1, &status, WNOHANG); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5758 # endif |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5759 if (wait_pid <= 0) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5760 /* no process ended */ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5761 return NULL; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5762 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
|
5763 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5764 if (job->jv_pid == wait_pid) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5765 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5766 if (WIFEXITED(status)) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5767 /* 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
|
5768 job->jv_exitval = WEXITSTATUS(status); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5769 else if (WIFSIGNALED(status)) |
15711
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5770 { |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5771 job->jv_exitval = -1; |
15711
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5772 job->jv_termsig = get_signal_name(WTERMSIG(status)); |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5773 } |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10375
diff
changeset
|
5774 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
|
5775 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5776 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
|
5777 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5778 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5779 return job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5780 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5781 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5782 return NULL; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5783 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5784 |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5785 /* |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5786 * Send a (deadly) signal to "job". |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5787 * 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
|
5788 */ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5789 int |
12037
85f0f557661e
patch 8.0.0899: function name mch_stop_job() is confusing
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
5790 mch_signal_job(job_T *job, char_u *how) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5791 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5792 int sig = -1; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5793 |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5794 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
|
5795 sig = SIGTERM; |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5796 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
|
5797 sig = SIGHUP; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5798 else if (STRCMP(how, "quit") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5799 sig = SIGQUIT; |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5800 else if (STRCMP(how, "int") == 0) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5801 sig = SIGINT; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5802 else if (STRCMP(how, "kill") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5803 sig = SIGKILL; |
11741
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
5804 #ifdef SIGWINCH |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
5805 else if (STRCMP(how, "winch") == 0) |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
5806 sig = SIGWINCH; |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
5807 #endif |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5808 else if (isdigit(*how)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5809 sig = atoi((char *)how); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5810 else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5811 return FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5812 |
15123
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5813 // Never kill ourselves! |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5814 if (job->jv_pid != 0) |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5815 { |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5816 // TODO: have an option to only kill the process, not the group? |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5817 kill(-job->jv_pid, sig); |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5818 kill(job->jv_pid, sig); |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5819 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5820 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5821 return OK; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5822 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5823 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5824 /* |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5825 * Clear the data related to "job". |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5826 */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5827 void |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5828 mch_clear_job(job_T *job) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5829 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5830 /* 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
|
5831 # ifdef __NeXT__ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5832 (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
|
5833 # else |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5834 (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
|
5835 # endif |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5836 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5837 #endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5838 |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5839 #if defined(FEAT_TERMINAL) || defined(PROTO) |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5840 int |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5841 mch_create_pty_channel(job_T *job, jobopt_T *options) |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5842 { |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5843 int pty_master_fd = -1; |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5844 int pty_slave_fd = -1; |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5845 channel_T *channel; |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5846 |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
5847 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out, &job->jv_tty_in); |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5848 close(pty_slave_fd); |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5849 |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5850 channel = add_channel(); |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5851 if (channel == NULL) |
12369
d7f087d1b0e5
patch 8.0.1064: Coverity warns for leaking resource
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
5852 { |
d7f087d1b0e5
patch 8.0.1064: Coverity warns for leaking resource
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
5853 close(pty_master_fd); |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5854 return FAIL; |
12369
d7f087d1b0e5
patch 8.0.1064: Coverity warns for leaking resource
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
5855 } |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5856 if (job->jv_tty_out != NULL) |
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5857 ch_log(channel, "using pty %s on fd %d", |
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5858 job->jv_tty_out, pty_master_fd); |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5859 job->jv_channel = channel; /* ch_refcount was set by add_channel() */ |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5860 channel->ch_keep_open = TRUE; |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5861 |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5862 /* Only set the pty_master_fd for stdout, do not duplicate it for stderr, |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5863 * it only needs to be read once. */ |
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5864 channel_set_pipes(channel, pty_master_fd, pty_master_fd, INVALID_FD); |
12240
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5865 channel_set_job(channel, job, options); |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5866 return OK; |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5867 } |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5868 #endif |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5869 |
7 | 5870 /* |
5871 * Check for CTRL-C typed by reading all available characters. | |
5872 * In cooked mode we should get SIGINT, no need to check. | |
5873 */ | |
5874 void | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5875 mch_breakcheck(int force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5876 { |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5877 if ((curr_tmode == TMODE_RAW || force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5878 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL)) |
7 | 5879 fill_input_buf(FALSE); |
5880 } | |
5881 | |
5882 /* | |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5883 * 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
|
5884 * from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5885 * "msec" == -1 will block forever. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5886 * Invokes timer callbacks when needed. |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5887 * When "ignore_input" is TRUE even check for pending input when input is |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5888 * already available. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5889 * "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
|
5890 * 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
|
5891 * Returns TRUE when a character is available. |
7 | 5892 * When a GUI is being used, this will never get called -- webb |
5893 */ | |
5894 static int | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5895 WaitForChar(long msec, int *interrupted, int ignore_input) |
7 | 5896 { |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5897 #ifdef FEAT_TIMERS |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5898 return ui_wait_for_chars_or_timer( |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5899 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK; |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5900 #else |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5901 return WaitForCharOrMouse(msec, interrupted, ignore_input); |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5902 #endif |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5903 } |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5904 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5905 /* |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5906 * 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
|
5907 * or from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5908 * "msec" == -1 will block forever. |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5909 * for "ignore_input" see WaitForCharOr(). |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5910 * "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
|
5911 * 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
|
5912 * 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
|
5913 */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5914 static int |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5915 WaitForCharOrMouse(long msec, int *interrupted, int ignore_input) |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5916 { |
7 | 5917 #ifdef FEAT_MOUSE_GPM |
5918 int gpm_process_wanted; | |
5919 #endif | |
5920 #ifdef FEAT_XCLIPBOARD | |
5921 int rest; | |
5922 #endif | |
5923 int avail; | |
5924 | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5925 if (!ignore_input && input_available()) /* something in inbuf[] */ |
7 | 5926 return 1; |
5927 | |
5928 #if defined(FEAT_MOUSE_DEC) | |
5929 /* May need to query the mouse position. */ | |
5930 if (WantQueryMouse) | |
5931 { | |
227 | 5932 WantQueryMouse = FALSE; |
7 | 5933 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5); |
5934 } | |
5935 #endif | |
5936 | |
5937 /* | |
5938 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse | |
5939 * events. This is a bit complicated, because they might both be defined. | |
5940 */ | |
5941 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD) | |
5942 # ifdef FEAT_XCLIPBOARD | |
5943 rest = 0; | |
5944 if (do_xterm_trace()) | |
5945 rest = msec; | |
5946 # endif | |
5947 do | |
5948 { | |
5949 # ifdef FEAT_XCLIPBOARD | |
5950 if (rest != 0) | |
5951 { | |
5952 msec = XT_TRACE_DELAY; | |
5953 if (rest >= 0 && rest < XT_TRACE_DELAY) | |
5954 msec = rest; | |
5955 if (rest >= 0) | |
5956 rest -= msec; | |
5957 } | |
5958 # endif | |
5959 # ifdef FEAT_MOUSE_GPM | |
5960 gpm_process_wanted = 0; | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5961 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
|
5962 &gpm_process_wanted, interrupted); |
7 | 5963 # else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5964 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 5965 # endif |
5966 if (!avail) | |
5967 { | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5968 if (!ignore_input && input_available()) |
7 | 5969 return 1; |
5970 # ifdef FEAT_XCLIPBOARD | |
5971 if (rest == 0 || !do_xterm_trace()) | |
5972 # endif | |
5973 break; | |
5974 } | |
5975 } | |
5976 while (FALSE | |
5977 # ifdef FEAT_MOUSE_GPM | |
5978 || (gpm_process_wanted && mch_gpm_process() == 0) | |
5979 # endif | |
5980 # ifdef FEAT_XCLIPBOARD | |
5981 || (!avail && rest != 0) | |
5982 # endif | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5983 ) |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5984 ; |
7 | 5985 |
5986 #else | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5987 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 5988 #endif |
5989 return avail; | |
5990 } | |
5991 | |
5541 | 5992 #ifndef VMS |
7 | 5993 /* |
5994 * Wait "msec" msec until a character is available from file descriptor "fd". | |
3046 | 5995 * "msec" == 0 will check for characters once. |
5996 * "msec" == -1 will block until a character is available. | |
7 | 5997 * When a GUI is being used, this will not be used for input -- webb |
5998 * 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
|
5999 * 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
|
6000 * "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
|
6001 * but something else needs to be done. |
7 | 6002 */ |
6003 #if defined(__BEOS__) | |
6004 int | |
6005 #else | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6006 static int |
7 | 6007 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6008 RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) |
7 | 6009 { |
6010 int ret; | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6011 int result; |
14 | 6012 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) |
7 | 6013 static int busy = FALSE; |
6014 | |
6015 /* May retry getting characters after an event was handled. */ | |
6016 # define MAY_LOOP | |
6017 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6018 # ifdef ELAPSED_FUNC |
7 | 6019 /* Remember at what time we started, so that we know how much longer we |
6020 * should wait after being interrupted. */ | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6021 long start_msec = msec; |
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6022 elapsed_T start_tv; |
7 | 6023 |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
6024 if (msec > 0) |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6025 ELAPSED_INIT(start_tv); |
7 | 6026 # endif |
6027 | |
6028 /* Handle being called recursively. This may happen for the session | |
6029 * manager stuff, it may save the file, which does a breakcheck. */ | |
6030 if (busy) | |
6031 return 0; | |
6032 #endif | |
6033 | |
6034 #ifdef MAY_LOOP | |
407 | 6035 for (;;) |
7 | 6036 #endif |
6037 { | |
6038 #ifdef MAY_LOOP | |
6039 int finished = TRUE; /* default is to 'loop' just once */ | |
14 | 6040 # ifdef FEAT_MZSCHEME |
6041 int mzquantum_used = FALSE; | |
6042 # endif | |
7 | 6043 #endif |
6044 #ifndef HAVE_SELECT | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6045 /* 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
|
6046 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS]; |
7 | 6047 int nfd; |
6048 # ifdef FEAT_XCLIPBOARD | |
6049 int xterm_idx = -1; | |
6050 # endif | |
6051 # ifdef FEAT_MOUSE_GPM | |
6052 int gpm_idx = -1; | |
6053 # endif | |
6054 # ifdef USE_XSMP | |
6055 int xsmp_idx = -1; | |
6056 # endif | |
14 | 6057 int towait = (int)msec; |
6058 | |
6059 # ifdef FEAT_MZSCHEME | |
6060 mzvim_check_threads(); | |
6061 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
6062 { | |
6063 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */ | |
6064 mzquantum_used = TRUE; | |
6065 } | |
6066 # endif | |
7 | 6067 fds[0].fd = fd; |
6068 fds[0].events = POLLIN; | |
6069 nfd = 1; | |
6070 | |
6071 # ifdef FEAT_XCLIPBOARD | |
6383 | 6072 may_restore_clipboard(); |
7 | 6073 if (xterm_Shell != (Widget)0) |
6074 { | |
6075 xterm_idx = nfd; | |
6076 fds[nfd].fd = ConnectionNumber(xterm_dpy); | |
6077 fds[nfd].events = POLLIN; | |
6078 nfd++; | |
6079 } | |
6080 # endif | |
6081 # ifdef FEAT_MOUSE_GPM | |
6082 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
6083 { | |
6084 gpm_idx = nfd; | |
6085 fds[nfd].fd = gpm_fd; | |
6086 fds[nfd].events = POLLIN; | |
6087 nfd++; | |
6088 } | |
6089 # endif | |
6090 # ifdef USE_XSMP | |
6091 if (xsmp_icefd != -1) | |
6092 { | |
6093 xsmp_idx = nfd; | |
6094 fds[nfd].fd = xsmp_icefd; | |
6095 fds[nfd].events = POLLIN; | |
6096 nfd++; | |
6097 } | |
6098 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6099 #ifdef FEAT_JOB_CHANNEL |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
6100 nfd = channel_poll_setup(nfd, &fds, &towait); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2074
diff
changeset
|
6101 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6102 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6103 *interrupted = FALSE; |
7 | 6104 |
14 | 6105 ret = poll(fds, nfd, towait); |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6106 |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6107 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
|
6108 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
|
6109 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6110 |
14 | 6111 # ifdef FEAT_MZSCHEME |
6112 if (ret == 0 && mzquantum_used) | |
1450 | 6113 /* MzThreads scheduling is required and timeout occurred */ |
14 | 6114 finished = FALSE; |
6115 # endif | |
7 | 6116 |
6117 # ifdef FEAT_XCLIPBOARD | |
6118 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN)) | |
6119 { | |
6120 xterm_update(); /* Maybe we should hand out clipboard */ | |
6121 if (--ret == 0 && !input_available()) | |
6122 /* Try again */ | |
6123 finished = FALSE; | |
6124 } | |
6125 # endif | |
6126 # ifdef FEAT_MOUSE_GPM | |
6127 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN)) | |
6128 *check_for_gpm = 1; | |
6129 # endif | |
6130 # ifdef USE_XSMP | |
6131 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP))) | |
6132 { | |
6133 if (fds[xsmp_idx].revents & POLLIN) | |
6134 { | |
6135 busy = TRUE; | |
6136 xsmp_handle_requests(); | |
6137 busy = FALSE; | |
6138 } | |
6139 else if (fds[xsmp_idx].revents & POLLHUP) | |
6140 { | |
6141 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
6142 verb_msg(_("XSMP lost ICE connection")); |
7 | 6143 xsmp_close(); |
6144 } | |
6145 if (--ret == 0) | |
14 | 6146 finished = FALSE; /* Try again */ |
7 | 6147 } |
6148 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6149 #ifdef FEAT_JOB_CHANNEL |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
6150 // also call when ret == 0, we may be polling a keep-open channel |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
6151 if (ret >= 0) |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
6152 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
|
6153 #endif |
7 | 6154 |
6155 #else /* HAVE_SELECT */ | |
6156 | |
6157 struct timeval tv; | |
14 | 6158 struct timeval *tvp; |
15029
588a5fafbb61
patch 8.1.0526: running out of signal stack in RealWaitForChar
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
6159 // These are static because they can take 8 Kbyte each and cause the |
588a5fafbb61
patch 8.1.0526: running out of signal stack in RealWaitForChar
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
6160 // signal stack to run out with -O3. |
588a5fafbb61
patch 8.1.0526: running out of signal stack in RealWaitForChar
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
6161 static fd_set rfds, wfds, efds; |
7 | 6162 int maxfd; |
14 | 6163 long towait = msec; |
6164 | |
6165 # ifdef FEAT_MZSCHEME | |
6166 mzvim_check_threads(); | |
6167 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
6168 { | |
6169 towait = p_mzq; /* don't wait longer than 'mzquantum' */ | |
6170 mzquantum_used = TRUE; | |
6171 } | |
6172 # endif | |
7 | 6173 |
14 | 6174 if (towait >= 0) |
7 | 6175 { |
14 | 6176 tv.tv_sec = towait / 1000; |
6177 tv.tv_usec = (towait % 1000) * (1000000/1000); | |
6178 tvp = &tv; | |
7 | 6179 } |
14 | 6180 else |
6181 tvp = NULL; | |
7 | 6182 |
6183 /* | |
6184 * Select on ready for reading and exceptional condition (end of file). | |
6185 */ | |
3046 | 6186 select_eintr: |
6187 FD_ZERO(&rfds); | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6188 FD_ZERO(&wfds); |
7 | 6189 FD_ZERO(&efds); |
6190 FD_SET(fd, &rfds); | |
6191 # if !defined(__QNX__) && !defined(__CYGWIN32__) | |
6192 /* For QNX select() always returns 1 if this is set. Why? */ | |
6193 FD_SET(fd, &efds); | |
6194 # endif | |
6195 maxfd = fd; | |
6196 | |
6197 # ifdef FEAT_XCLIPBOARD | |
6383 | 6198 may_restore_clipboard(); |
7 | 6199 if (xterm_Shell != (Widget)0) |
6200 { | |
6201 FD_SET(ConnectionNumber(xterm_dpy), &rfds); | |
6202 if (maxfd < ConnectionNumber(xterm_dpy)) | |
6203 maxfd = ConnectionNumber(xterm_dpy); | |
3748 | 6204 |
6205 /* An event may have already been read but not handled. In | |
6206 * particulary, XFlush may cause this. */ | |
6207 xterm_update(); | |
7 | 6208 } |
6209 # endif | |
6210 # ifdef FEAT_MOUSE_GPM | |
6211 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
6212 { | |
6213 FD_SET(gpm_fd, &rfds); | |
6214 FD_SET(gpm_fd, &efds); | |
6215 if (maxfd < gpm_fd) | |
6216 maxfd = gpm_fd; | |
6217 } | |
6218 # endif | |
6219 # ifdef USE_XSMP | |
6220 if (xsmp_icefd != -1) | |
6221 { | |
6222 FD_SET(xsmp_icefd, &rfds); | |
6223 FD_SET(xsmp_icefd, &efds); | |
6224 if (maxfd < xsmp_icefd) | |
6225 maxfd = xsmp_icefd; | |
6226 } | |
6227 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6228 # ifdef FEAT_JOB_CHANNEL |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
6229 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp); |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6230 # endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6231 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6232 *interrupted = FALSE; |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6233 |
14718
cf33c47d66aa
patch 8.1.0371: argument types for select() may be wrong
Christian Brabandt <cb@256bit.org>
parents:
14673
diff
changeset
|
6234 ret = select(maxfd + 1, SELECT_TYPE_ARG234 &rfds, |
cf33c47d66aa
patch 8.1.0371: argument types for select() may be wrong
Christian Brabandt <cb@256bit.org>
parents:
14673
diff
changeset
|
6235 SELECT_TYPE_ARG234 &wfds, SELECT_TYPE_ARG234 &efds, tvp); |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6236 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
|
6237 if (result) |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6238 --ret; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6239 else if (interrupted != NULL && ret > 0) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6240 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6241 |
3046 | 6242 # ifdef EINTR |
6243 if (ret == -1 && errno == EINTR) | |
3133 | 6244 { |
6245 /* Check whether window has been resized, EINTR may be caused by | |
6246 * SIGWINCH. */ | |
6247 if (do_resize) | |
6248 handle_resize(); | |
6249 | |
3046 | 6250 /* Interrupted by a signal, need to try again. We ignore msec |
6251 * here, because we do want to check even after a timeout if | |
6252 * characters are available. Needed for reading output of an | |
6253 * external command after the process has finished. */ | |
6254 goto select_eintr; | |
3133 | 6255 } |
3046 | 6256 # endif |
1076 | 6257 # ifdef __TANDEM |
6258 if (ret == -1 && errno == ENOTSUP) | |
6259 { | |
6260 FD_ZERO(&rfds); | |
6261 FD_ZERO(&efds); | |
6262 ret = 0; | |
6263 } | |
3046 | 6264 # endif |
14 | 6265 # ifdef FEAT_MZSCHEME |
6266 if (ret == 0 && mzquantum_used) | |
1450 | 6267 /* loop if MzThreads must be scheduled and timeout occurred */ |
14 | 6268 finished = FALSE; |
7 | 6269 # endif |
6270 | |
6271 # ifdef FEAT_XCLIPBOARD | |
6272 if (ret > 0 && xterm_Shell != (Widget)0 | |
6273 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds)) | |
6274 { | |
6275 xterm_update(); /* Maybe we should hand out clipboard */ | |
6276 /* continue looping when we only got the X event and the input | |
6277 * buffer is empty */ | |
6278 if (--ret == 0 && !input_available()) | |
6279 { | |
6280 /* Try again */ | |
6281 finished = FALSE; | |
6282 } | |
6283 } | |
6284 # endif | |
6285 # ifdef FEAT_MOUSE_GPM | |
6286 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0) | |
6287 { | |
6288 if (FD_ISSET(gpm_fd, &efds)) | |
6289 gpm_close(); | |
6290 else if (FD_ISSET(gpm_fd, &rfds)) | |
6291 *check_for_gpm = 1; | |
6292 } | |
6293 # endif | |
6294 # ifdef USE_XSMP | |
6295 if (ret > 0 && xsmp_icefd != -1) | |
6296 { | |
6297 if (FD_ISSET(xsmp_icefd, &efds)) | |
6298 { | |
6299 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
6300 verb_msg(_("XSMP lost ICE connection")); |
7 | 6301 xsmp_close(); |
6302 if (--ret == 0) | |
6303 finished = FALSE; /* keep going if event was only one */ | |
6304 } | |
6305 else if (FD_ISSET(xsmp_icefd, &rfds)) | |
6306 { | |
6307 busy = TRUE; | |
6308 xsmp_handle_requests(); | |
6309 busy = FALSE; | |
6310 if (--ret == 0) | |
6311 finished = FALSE; /* keep going if event was only one */ | |
6312 } | |
6313 } | |
6314 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6315 #ifdef FEAT_JOB_CHANNEL |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
6316 /* also call when ret == 0, we may be polling a keep-open channel */ |
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
6317 if (ret >= 0) |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6318 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
|
6319 #endif |
7 | 6320 |
6321 #endif /* HAVE_SELECT */ | |
6322 | |
6323 #ifdef MAY_LOOP | |
6324 if (finished || msec == 0) | |
6325 break; | |
6326 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6327 # ifdef FEAT_CLIENTSERVER |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6328 if (server_waiting()) |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6329 break; |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6330 # endif |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6331 |
7 | 6332 /* We're going to loop around again, find out for how long */ |
6333 if (msec > 0) | |
6334 { | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6335 # ifdef ELAPSED_FUNC |
7 | 6336 /* Compute remaining wait time. */ |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6337 msec = start_msec - ELAPSED_FUNC(start_tv); |
7 | 6338 # else |
6339 /* Guess we got interrupted halfway. */ | |
6340 msec = msec / 2; | |
6341 # endif | |
6342 if (msec <= 0) | |
6343 break; /* waited long enough */ | |
6344 } | |
6345 #endif | |
6346 } | |
6347 | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6348 return result; |
7 | 6349 } |
6350 | |
6351 #ifndef NO_EXPANDPATH | |
6352 /* | |
444 | 6353 * Expand a path into all matching files and/or directories. Handles "*", |
6354 * "?", "[a-z]", "**", etc. | |
6355 * "path" has backslashes before chars that are not to be expanded. | |
6356 * Returns the number of matches found. | |
7 | 6357 */ |
6358 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6359 mch_expandpath( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6360 garray_T *gap, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6361 char_u *path, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6362 int flags) /* EW_* flags */ |
7 | 6363 { |
444 | 6364 return unix_expandpath(gap, path, 0, flags, FALSE); |
7 | 6365 } |
6366 #endif | |
6367 | |
6368 /* | |
6369 * mch_expand_wildcards() - this code does wild-card pattern matching using | |
6370 * the shell | |
6371 * | |
6372 * return OK for success, FAIL for error (you may lose some memory) and put | |
6373 * an error message in *file. | |
6374 * | |
6375 * num_pat is number of input patterns | |
6376 * pat is array of pointers to input patterns | |
6377 * num_file is pointer to number of matched file names | |
6378 * file is pointer to array of pointers to matched file names | |
6379 */ | |
6380 | |
6381 #ifndef SEEK_SET | |
6382 # define SEEK_SET 0 | |
6383 #endif | |
6384 #ifndef SEEK_END | |
6385 # define SEEK_END 2 | |
6386 #endif | |
6387 | |
822 | 6388 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|" |
628 | 6389 |
7 | 6390 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6391 mch_expand_wildcards( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6392 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6393 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6394 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6395 char_u ***file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6396 int flags) /* EW_* flags */ |
7 | 6397 { |
6398 int i; | |
6399 size_t len; | |
11281
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6400 long llen; |
7 | 6401 char_u *p; |
6402 int dir; | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
6403 |
1508 | 6404 /* |
6405 * This is the non-OS/2 implementation (really Unix). | |
6406 */ | |
7 | 6407 int j; |
6408 char_u *tempname; | |
6409 char_u *command; | |
6410 FILE *fd; | |
6411 char_u *buffer; | |
1508 | 6412 #define STYLE_ECHO 0 /* use "echo", the default */ |
6413 #define STYLE_GLOB 1 /* use "glob", for csh */ | |
6414 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */ | |
6415 #define STYLE_PRINT 3 /* use "print -N", for zsh */ | |
6416 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern | |
6417 * directly */ | |
7 | 6418 int shell_style = STYLE_ECHO; |
6419 int check_spaces; | |
6420 static int did_find_nul = FALSE; | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15955
diff
changeset
|
6421 int ampersand = FALSE; |
1508 | 6422 /* vimglob() function to define for Posix shell */ |
1620 | 6423 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >"; |
7 | 6424 |
6425 *num_file = 0; /* default: no files found */ | |
6426 *file = NULL; | |
6427 | |
6428 /* | |
6429 * If there are no wildcards, just copy the names to allocated memory. | |
6430 * Saves a lot of time, because we don't have to start a new shell. | |
6431 */ | |
6432 if (!have_wildcard(num_pat, pat)) | |
6433 return save_patterns(num_pat, pat, num_file, file); | |
6434 | |
428 | 6435 # ifdef HAVE_SANDBOX |
6436 /* Don't allow any shell command in the sandbox. */ | |
6437 if (sandbox != 0 && check_secure()) | |
6438 return FAIL; | |
6439 # endif | |
6440 | |
7 | 6441 /* |
6442 * Don't allow the use of backticks in secure and restricted mode. | |
6443 */ | |
428 | 6444 if (secure || restricted) |
7 | 6445 for (i = 0; i < num_pat; ++i) |
6446 if (vim_strchr(pat[i], '`') != NULL | |
6447 && (check_restricted() || check_secure())) | |
6448 return FAIL; | |
6449 | |
6450 /* | |
6451 * get a name for the temp file | |
6452 */ | |
6721 | 6453 if ((tempname = vim_tempname('o', FALSE)) == NULL) |
7 | 6454 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
6455 emsg(_(e_notmp)); |
7 | 6456 return FAIL; |
6457 } | |
6458 | |
6459 /* | |
6460 * Let the shell expand the patterns and write the result into the temp | |
1508 | 6461 * file. |
6462 * STYLE_BT: NL separated | |
6463 * If expanding `cmd` execute it directly. | |
6464 * STYLE_GLOB: NUL separated | |
6465 * If we use *csh, "glob" will work better than "echo". | |
6466 * STYLE_PRINT: NL or NUL separated | |
6467 * If we use *zsh, "print -N" will work better than "glob". | |
6468 * STYLE_VIMGLOB: NL separated | |
6469 * If we use *sh*, we define "vimglob()". | |
6470 * STYLE_ECHO: space separated. | |
6471 * A shell we don't know, stay safe and use "echo". | |
7 | 6472 */ |
6473 if (num_pat == 1 && *pat[0] == '`' | |
6474 && (len = STRLEN(pat[0])) > 2 | |
6475 && *(pat[0] + len - 1) == '`') | |
6476 shell_style = STYLE_BT; | |
6477 else if ((len = STRLEN(p_sh)) >= 3) | |
6478 { | |
6479 if (STRCMP(p_sh + len - 3, "csh") == 0) | |
6480 shell_style = STYLE_GLOB; | |
6481 else if (STRCMP(p_sh + len - 3, "zsh") == 0) | |
6482 shell_style = STYLE_PRINT; | |
6483 } | |
1508 | 6484 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh), |
6485 "sh") != NULL) | |
6486 shell_style = STYLE_VIMGLOB; | |
6487 | |
6488 /* Compute the length of the command. We need 2 extra bytes: for the | |
6489 * optional '&' and for the NUL. | |
6490 * Worst case: "unset nonomatch; print -N >" plus two is 29 */ | |
7 | 6491 len = STRLEN(tempname) + 29; |
1508 | 6492 if (shell_style == STYLE_VIMGLOB) |
6493 len += STRLEN(sh_vimglob_func); | |
6494 | |
147 | 6495 for (i = 0; i < num_pat; ++i) |
6496 { | |
6497 /* Count the length of the patterns in the same way as they are put in | |
6498 * "command" below. */ | |
6499 #ifdef USE_SYSTEM | |
7 | 6500 len += STRLEN(pat[i]) + 3; /* add space and two quotes */ |
147 | 6501 #else |
6502 ++len; /* add space */ | |
628 | 6503 for (j = 0; pat[i][j] != NUL; ++j) |
6504 { | |
6505 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
6506 ++len; /* may add a backslash */ | |
6507 ++len; | |
6508 } | |
147 | 6509 #endif |
6510 } | |
7 | 6511 command = alloc(len); |
6512 if (command == NULL) | |
6513 { | |
6514 /* out of memory */ | |
6515 vim_free(tempname); | |
6516 return FAIL; | |
6517 } | |
6518 | |
6519 /* | |
6520 * Build the shell command: | |
6521 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell | |
6522 * recognizes this). | |
6523 * - Add the shell command to print the expanded names. | |
6524 * - Add the temp file name. | |
6525 * - Add the file name patterns. | |
6526 */ | |
6527 if (shell_style == STYLE_BT) | |
6528 { | |
628 | 6529 /* change `command; command& ` to (command; command ) */ |
6530 STRCPY(command, "("); | |
6531 STRCAT(command, pat[0] + 1); /* exclude first backtick */ | |
7 | 6532 p = command + STRLEN(command) - 1; |
628 | 6533 *p-- = ')'; /* remove last backtick */ |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6534 while (p > command && VIM_ISWHITE(*p)) |
7 | 6535 --p; |
6536 if (*p == '&') /* remove trailing '&' */ | |
6537 { | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15955
diff
changeset
|
6538 ampersand = TRUE; |
7 | 6539 *p = ' '; |
6540 } | |
6541 STRCAT(command, ">"); | |
6542 } | |
6543 else | |
6544 { | |
6545 if (flags & EW_NOTFOUND) | |
6546 STRCPY(command, "set nonomatch; "); | |
6547 else | |
6548 STRCPY(command, "unset nonomatch; "); | |
6549 if (shell_style == STYLE_GLOB) | |
6550 STRCAT(command, "glob >"); | |
6551 else if (shell_style == STYLE_PRINT) | |
6552 STRCAT(command, "print -N >"); | |
1508 | 6553 else if (shell_style == STYLE_VIMGLOB) |
6554 STRCAT(command, sh_vimglob_func); | |
7 | 6555 else |
6556 STRCAT(command, "echo >"); | |
6557 } | |
1508 | 6558 |
7 | 6559 STRCAT(command, tempname); |
1508 | 6560 |
7 | 6561 if (shell_style != STYLE_BT) |
6562 for (i = 0; i < num_pat; ++i) | |
6563 { | |
6564 /* When using system() always add extra quotes, because the shell | |
628 | 6565 * is started twice. Otherwise put a backslash before special |
1450 | 6566 * characters, except inside ``. */ |
7 | 6567 #ifdef USE_SYSTEM |
6568 STRCAT(command, " \""); | |
6569 STRCAT(command, pat[i]); | |
6570 STRCAT(command, "\""); | |
6571 #else | |
233 | 6572 int intick = FALSE; |
6573 | |
7 | 6574 p = command + STRLEN(command); |
6575 *p++ = ' '; | |
628 | 6576 for (j = 0; pat[i][j] != NUL; ++j) |
233 | 6577 { |
6578 if (pat[i][j] == '`') | |
6579 intick = !intick; | |
628 | 6580 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL) |
6581 { | |
644 | 6582 /* Remove a backslash, take char literally. But keep |
652 | 6583 * backslash inside backticks, before a special character |
6584 * and before a backtick. */ | |
644 | 6585 if (intick |
652 | 6586 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL |
6587 || pat[i][j + 1] == '`') | |
644 | 6588 *p++ = '\\'; |
648 | 6589 ++j; |
628 | 6590 } |
6174 | 6591 else if (!intick |
6592 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$') | |
6593 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
628 | 6594 /* Put a backslash before a special character, but not |
6174 | 6595 * when inside ``. And not for $var when EW_KEEPDOLLAR is |
6596 * set. */ | |
628 | 6597 *p++ = '\\'; |
648 | 6598 |
6599 /* Copy one character. */ | |
6600 *p++ = pat[i][j]; | |
233 | 6601 } |
7 | 6602 *p = NUL; |
6603 #endif | |
6604 } | |
6605 if (flags & EW_SILENT) | |
6606 show_shell_mess = FALSE; | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15955
diff
changeset
|
6607 if (ampersand) |
1508 | 6608 STRCAT(command, "&"); /* put the '&' after the redirection */ |
7 | 6609 |
6610 /* | |
6611 * Using zsh -G: If a pattern has no matches, it is just deleted from | |
6612 * the argument list, otherwise zsh gives an error message and doesn't | |
6613 * expand any other pattern. | |
6614 */ | |
6615 if (shell_style == STYLE_PRINT) | |
6616 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */ | |
6617 | |
6618 /* | |
6619 * If we use -f then shell variables set in .cshrc won't get expanded. | |
6620 * vi can do it, so we will too, but it is only necessary if there is a "$" | |
6621 * in one of the patterns, otherwise we can still use the fast option. | |
6622 */ | |
6623 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat)) | |
6624 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */ | |
6625 | |
6626 /* | |
6627 * execute the shell command | |
6628 */ | |
6629 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT); | |
6630 | |
6631 /* When running in the background, give it some time to create the temp | |
6632 * file, but don't wait for it to finish. */ | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15955
diff
changeset
|
6633 if (ampersand) |
7 | 6634 mch_delay(10L, TRUE); |
6635 | |
6636 extra_shell_arg = NULL; /* cleanup */ | |
6637 show_shell_mess = TRUE; | |
6638 vim_free(command); | |
6639 | |
1508 | 6640 if (i != 0) /* mch_call_shell() failed */ |
7 | 6641 { |
6642 mch_remove(tempname); | |
6643 vim_free(tempname); | |
6644 /* | |
6645 * With interactive completion, the error message is not printed. | |
6646 * However with USE_SYSTEM, I don't know how to turn off error messages | |
6647 * from the shell, so screen may still get messed up -- webb. | |
6648 */ | |
6649 #ifndef USE_SYSTEM | |
6650 if (!(flags & EW_SILENT)) | |
6651 #endif | |
6652 { | |
6653 redraw_later_clear(); /* probably messed up screen */ | |
6654 msg_putchar('\n'); /* clear bottom line quickly */ | |
6655 cmdline_row = Rows - 1; /* continue on last line */ | |
6656 #ifdef USE_SYSTEM | |
6657 if (!(flags & EW_SILENT)) | |
6658 #endif | |
6659 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
6660 msg(_(e_wildexpand)); |
7 | 6661 msg_start(); /* don't overwrite this message */ |
6662 } | |
6663 } | |
6664 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when | |
6665 * EW_NOTFOUND is given */ | |
6666 if (shell_style == STYLE_BT) | |
6667 return FAIL; | |
6668 goto notfound; | |
6669 } | |
6670 | |
6671 /* | |
6672 * read the names from the file into memory | |
6673 */ | |
6674 fd = fopen((char *)tempname, READBIN); | |
6675 if (fd == NULL) | |
6676 { | |
6677 /* Something went wrong, perhaps a file name with a special char. */ | |
6678 if (!(flags & EW_SILENT)) | |
6679 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
6680 msg(_(e_wildexpand)); |
7 | 6681 msg_start(); /* don't overwrite this message */ |
6682 } | |
6683 vim_free(tempname); | |
6684 goto notfound; | |
6685 } | |
6686 fseek(fd, 0L, SEEK_END); | |
11281
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6687 llen = ftell(fd); /* get size of temp file */ |
7 | 6688 fseek(fd, 0L, SEEK_SET); |
11281
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6689 if (llen < 0) |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6690 /* just in case ftell() would fail */ |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6691 buffer = NULL; |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6692 else |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6693 buffer = alloc(llen + 1); |
7 | 6694 if (buffer == NULL) |
6695 { | |
6696 /* out of memory */ | |
6697 mch_remove(tempname); | |
6698 vim_free(tempname); | |
6699 fclose(fd); | |
6700 return FAIL; | |
6701 } | |
11281
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6702 len = llen; |
7 | 6703 i = fread((char *)buffer, 1, len, fd); |
6704 fclose(fd); | |
6705 mch_remove(tempname); | |
1877 | 6706 if (i != (int)len) |
7 | 6707 { |
6708 /* unexpected read error */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
6709 semsg(_(e_notread), tempname); |
7 | 6710 vim_free(tempname); |
6711 vim_free(buffer); | |
6712 return FAIL; | |
6713 } | |
6714 vim_free(tempname); | |
6715 | |
15955
907481b9260f
patch 8.1.0983: checking __CYGWIN32__ unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
6716 # ifdef __CYGWIN__ |
7 | 6717 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */ |
6718 p = buffer; | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
6719 for (i = 0; i < (int)len; ++i) |
7 | 6720 if (!(buffer[i] == CAR && buffer[i + 1] == NL)) |
6721 *p++ = buffer[i]; | |
6722 len = p - buffer; | |
6723 # endif | |
6724 | |
6725 | |
6726 /* file names are separated with Space */ | |
6727 if (shell_style == STYLE_ECHO) | |
6728 { | |
6729 buffer[len] = '\n'; /* make sure the buffer ends in NL */ | |
6730 p = buffer; | |
6731 for (i = 0; *p != '\n'; ++i) /* count number of entries */ | |
6732 { | |
6733 while (*p != ' ' && *p != '\n') | |
6734 ++p; | |
6735 p = skipwhite(p); /* skip to next entry */ | |
6736 } | |
6737 } | |
6738 /* file names are separated with NL */ | |
1508 | 6739 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB) |
7 | 6740 { |
6741 buffer[len] = NUL; /* make sure the buffer ends in NUL */ | |
6742 p = buffer; | |
6743 for (i = 0; *p != NUL; ++i) /* count number of entries */ | |
6744 { | |
6745 while (*p != '\n' && *p != NUL) | |
6746 ++p; | |
6747 if (*p != NUL) | |
6748 ++p; | |
6749 p = skipwhite(p); /* skip leading white space */ | |
6750 } | |
6751 } | |
6752 /* file names are separated with NUL */ | |
6753 else | |
6754 { | |
6755 /* | |
6756 * Some versions of zsh use spaces instead of NULs to separate | |
6757 * results. Only do this when there is no NUL before the end of the | |
6758 * buffer, otherwise we would never be able to use file names with | |
6759 * embedded spaces when zsh does use NULs. | |
6760 * When we found a NUL once, we know zsh is OK, set did_find_nul and | |
6761 * don't check for spaces again. | |
6762 */ | |
6763 check_spaces = FALSE; | |
6764 if (shell_style == STYLE_PRINT && !did_find_nul) | |
6765 { | |
6766 /* If there is a NUL, set did_find_nul, else set check_spaces */ | |
2768 | 6767 buffer[len] = NUL; |
5533 | 6768 if (len && (int)STRLEN(buffer) < (int)len) |
7 | 6769 did_find_nul = TRUE; |
6770 else | |
6771 check_spaces = TRUE; | |
6772 } | |
6773 | |
6774 /* | |
6775 * Make sure the buffer ends with a NUL. For STYLE_PRINT there | |
6776 * already is one, for STYLE_GLOB it needs to be added. | |
6777 */ | |
6778 if (len && buffer[len - 1] == NUL) | |
6779 --len; | |
6780 else | |
6781 buffer[len] = NUL; | |
6782 i = 0; | |
6783 for (p = buffer; p < buffer + len; ++p) | |
6784 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */ | |
6785 { | |
6786 ++i; | |
6787 *p = NUL; | |
6788 } | |
6789 if (len) | |
6790 ++i; /* count last entry */ | |
6791 } | |
6792 if (i == 0) | |
6793 { | |
6794 /* | |
6795 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I". | |
6796 * /bin/sh will happily expand it to nothing rather than returning an | |
6797 * error; and hey, it's good to check anyway -- webb. | |
6798 */ | |
6799 vim_free(buffer); | |
6800 goto notfound; | |
6801 } | |
6802 *num_file = i; | |
6803 *file = (char_u **)alloc(sizeof(char_u *) * i); | |
6804 if (*file == NULL) | |
6805 { | |
6806 /* out of memory */ | |
6807 vim_free(buffer); | |
6808 return FAIL; | |
6809 } | |
6810 | |
6811 /* | |
6812 * Isolate the individual file names. | |
6813 */ | |
6814 p = buffer; | |
6815 for (i = 0; i < *num_file; ++i) | |
6816 { | |
6817 (*file)[i] = p; | |
6818 /* Space or NL separates */ | |
1508 | 6819 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT |
6820 || shell_style == STYLE_VIMGLOB) | |
7 | 6821 { |
652 | 6822 while (!(shell_style == STYLE_ECHO && *p == ' ') |
6823 && *p != '\n' && *p != NUL) | |
7 | 6824 ++p; |
6825 if (p == buffer + len) /* last entry */ | |
6826 *p = NUL; | |
6827 else | |
6828 { | |
6829 *p++ = NUL; | |
6830 p = skipwhite(p); /* skip to next entry */ | |
6831 } | |
6832 } | |
6833 else /* NUL separates */ | |
6834 { | |
6835 while (*p && p < buffer + len) /* skip entry */ | |
6836 ++p; | |
6837 ++p; /* skip NUL */ | |
6838 } | |
6839 } | |
6840 | |
6841 /* | |
6842 * Move the file names to allocated memory. | |
6843 */ | |
6844 for (j = 0, i = 0; i < *num_file; ++i) | |
6845 { | |
6846 /* Require the files to exist. Helps when using /bin/sh */ | |
6847 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0) | |
6848 continue; | |
6849 | |
6850 /* check if this entry should be included */ | |
6851 dir = (mch_isdir((*file)[i])); | |
6852 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE))) | |
6853 continue; | |
6854 | |
715 | 6855 /* Skip files that are not executable if we check for that. */ |
6695 | 6856 if (!dir && (flags & EW_EXEC) |
6857 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD))) | |
715 | 6858 continue; |
6859 | |
7 | 6860 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir)); |
6861 if (p) | |
6862 { | |
6863 STRCPY(p, (*file)[i]); | |
6864 if (dir) | |
1479 | 6865 add_pathsep(p); /* add '/' to a directory name */ |
7 | 6866 (*file)[j++] = p; |
6867 } | |
6868 } | |
6869 vim_free(buffer); | |
6870 *num_file = j; | |
6871 | |
6872 if (*num_file == 0) /* rejected all entries */ | |
6873 { | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
6874 VIM_CLEAR(*file); |
7 | 6875 goto notfound; |
6876 } | |
6877 | |
6878 return OK; | |
6879 | |
6880 notfound: | |
6881 if (flags & EW_NOTFOUND) | |
6882 return save_patterns(num_pat, pat, num_file, file); | |
6883 return FAIL; | |
6884 } | |
6885 | |
6886 #endif /* VMS */ | |
6887 | |
6888 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6889 save_patterns( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6890 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6891 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6892 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6893 char_u ***file) |
7 | 6894 { |
6895 int i; | |
99 | 6896 char_u *s; |
7 | 6897 |
6898 *file = (char_u **)alloc(num_pat * sizeof(char_u *)); | |
6899 if (*file == NULL) | |
6900 return FAIL; | |
6901 for (i = 0; i < num_pat; i++) | |
99 | 6902 { |
6903 s = vim_strsave(pat[i]); | |
6904 if (s != NULL) | |
6905 /* Be compatible with expand_filename(): halve the number of | |
6906 * backslashes. */ | |
6907 backslash_halve(s); | |
6908 (*file)[i] = s; | |
6909 } | |
7 | 6910 *num_file = num_pat; |
6911 return OK; | |
6912 } | |
6913 | |
6914 /* | |
6915 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can | |
6916 * expand. | |
6917 */ | |
6918 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6919 mch_has_exp_wildcard(char_u *p) |
7 | 6920 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11115
diff
changeset
|
6921 for ( ; *p; MB_PTR_ADV(p)) |
7 | 6922 { |
6923 if (*p == '\\' && p[1] != NUL) | |
6924 ++p; | |
6925 else | |
6926 if (vim_strchr((char_u *) | |
6927 #ifdef VMS | |
6928 "*?%" | |
6929 #else | |
6930 "*?[{'" | |
6931 #endif | |
6932 , *p) != NULL) | |
6933 return TRUE; | |
6934 } | |
6935 return FALSE; | |
6936 } | |
6937 | |
6938 /* | |
6939 * Return TRUE if the string "p" contains a wildcard. | |
6940 * Don't recognize '~' at the end as a wildcard. | |
6941 */ | |
6942 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6943 mch_has_wildcard(char_u *p) |
7 | 6944 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11115
diff
changeset
|
6945 for ( ; *p; MB_PTR_ADV(p)) |
7 | 6946 { |
6947 if (*p == '\\' && p[1] != NUL) | |
6948 ++p; | |
6949 else | |
6950 if (vim_strchr((char_u *) | |
6951 #ifdef VMS | |
6952 "*?%$" | |
6953 #else | |
6954 "*?[{`'$" | |
6955 #endif | |
6956 , *p) != NULL | |
6957 || (*p == '~' && p[1] != NUL)) | |
6958 return TRUE; | |
6959 } | |
6960 return FALSE; | |
6961 } | |
6962 | |
6963 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6964 have_wildcard(int num, char_u **file) |
7 | 6965 { |
6966 int i; | |
6967 | |
6968 for (i = 0; i < num; i++) | |
6969 if (mch_has_wildcard(file[i])) | |
6970 return 1; | |
6971 return 0; | |
6972 } | |
6973 | |
6974 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6975 have_dollars(int num, char_u **file) |
7 | 6976 { |
6977 int i; | |
6978 | |
6979 for (i = 0; i < num; i++) | |
6980 if (vim_strchr(file[i], '$') != NULL) | |
6981 return TRUE; | |
6982 return FALSE; | |
6983 } | |
6984 | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6985 #if !defined(HAVE_RENAME) || defined(PROTO) |
7 | 6986 /* |
6987 * Scaled-down version of rename(), which is missing in Xenix. | |
6988 * This version can only move regular files and will fail if the | |
6989 * destination exists. | |
6990 */ | |
6991 int | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
6992 mch_rename(const char *src, const char *dest) |
7 | 6993 { |
6994 struct stat st; | |
6995 | |
6996 if (stat(dest, &st) >= 0) /* fail if destination exists */ | |
6997 return -1; | |
6998 if (link(src, dest) != 0) /* link file to new name */ | |
6999 return -1; | |
7000 if (mch_remove(src) == 0) /* delete link to old name */ | |
7001 return 0; | |
7002 return -1; | |
7003 } | |
7004 #endif /* !HAVE_RENAME */ | |
7005 | |
7006 #ifdef FEAT_MOUSE_GPM | |
7007 /* | |
7008 * Initializes connection with gpm (if it isn't already opened) | |
7009 * Return 1 if succeeded (or connection already opened), 0 if failed | |
7010 */ | |
7011 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7012 gpm_open(void) |
7 | 7013 { |
7014 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */ | |
7015 | |
7016 if (!gpm_flag) | |
7017 { | |
7018 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN); | |
7019 gpm_connect.defaultMask = ~GPM_HARD; | |
7020 /* Default handling for mouse move*/ | |
7021 gpm_connect.minMod = 0; /* Handle any modifier keys */ | |
7022 gpm_connect.maxMod = 0xffff; | |
7023 if (Gpm_Open(&gpm_connect, 0) > 0) | |
7024 { | |
7025 /* gpm library tries to handling TSTP causes | |
7026 * problems. Anyways, we close connection to Gpm whenever | |
7027 * we are going to suspend or starting an external process | |
1450 | 7028 * so we shouldn't have problem with this |
7 | 7029 */ |
1832 | 7030 # ifdef SIGTSTP |
7 | 7031 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); |
1832 | 7032 # endif |
7 | 7033 return 1; /* succeed */ |
7034 } | |
7035 if (gpm_fd == -2) | |
7036 Gpm_Close(); /* We don't want to talk to xterm via gpm */ | |
7037 return 0; | |
7038 } | |
7039 return 1; /* already open */ | |
7040 } | |
7041 | |
7042 /* | |
7043 * Closes connection to gpm | |
7044 */ | |
7045 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7046 gpm_close(void) |
7 | 7047 { |
7048 if (gpm_flag && gpm_fd >= 0) /* if Open */ | |
7049 Gpm_Close(); | |
7050 } | |
7051 | |
7052 /* Reads gpm event and adds special keys to input buf. Returns length of | |
7053 * generated key sequence. | |
5782 | 7054 * This function is styled after gui_send_mouse_event(). |
7 | 7055 */ |
7056 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7057 mch_gpm_process(void) |
7 | 7058 { |
7059 int button; | |
7060 static Gpm_Event gpm_event; | |
7061 char_u string[6]; | |
7062 int_u vim_modifiers; | |
7063 int row,col; | |
7064 unsigned char buttons_mask; | |
7065 unsigned char gpm_modifiers; | |
7066 static unsigned char old_buttons = 0; | |
7067 | |
7068 Gpm_GetEvent(&gpm_event); | |
7069 | |
7070 #ifdef FEAT_GUI | |
7071 /* Don't put events in the input queue now. */ | |
7072 if (hold_gui_events) | |
7073 return 0; | |
7074 #endif | |
7075 | |
7076 row = gpm_event.y - 1; | |
7077 col = gpm_event.x - 1; | |
7078 | |
7079 string[0] = ESC; /* Our termcode */ | |
7080 string[1] = 'M'; | |
7081 string[2] = 'G'; | |
7082 switch (GPM_BARE_EVENTS(gpm_event.type)) | |
7083 { | |
7084 case GPM_DRAG: | |
7085 string[3] = MOUSE_DRAG; | |
7086 break; | |
7087 case GPM_DOWN: | |
7088 buttons_mask = gpm_event.buttons & ~old_buttons; | |
7089 old_buttons = gpm_event.buttons; | |
7090 switch (buttons_mask) | |
7091 { | |
7092 case GPM_B_LEFT: | |
7093 button = MOUSE_LEFT; | |
7094 break; | |
7095 case GPM_B_MIDDLE: | |
7096 button = MOUSE_MIDDLE; | |
7097 break; | |
7098 case GPM_B_RIGHT: | |
7099 button = MOUSE_RIGHT; | |
7100 break; | |
7101 default: | |
7102 return 0; | |
7103 /*Don't know what to do. Can more than one button be | |
7104 * reported in one event? */ | |
7105 } | |
7106 string[3] = (char_u)(button | 0x20); | |
7107 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1); | |
7108 break; | |
7109 case GPM_UP: | |
7110 string[3] = MOUSE_RELEASE; | |
7111 old_buttons &= ~gpm_event.buttons; | |
7112 break; | |
7113 default: | |
7114 return 0; | |
7115 } | |
7116 /*This code is based on gui_x11_mouse_cb in gui_x11.c */ | |
7117 gpm_modifiers = gpm_event.modifiers; | |
7118 vim_modifiers = 0x0; | |
7119 /* I ignore capslock stats. Aren't we all just hate capslock mixing with | |
7120 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and | |
7121 * K_CAPSSHIFT is defined 8, so it probably isn't even reported | |
7122 */ | |
7123 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL))) | |
7124 vim_modifiers |= MOUSE_SHIFT; | |
7125 | |
7126 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL))) | |
7127 vim_modifiers |= MOUSE_CTRL; | |
7128 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR))) | |
7129 vim_modifiers |= MOUSE_ALT; | |
7130 string[3] |= vim_modifiers; | |
7131 string[4] = (char_u)(col + ' ' + 1); | |
7132 string[5] = (char_u)(row + ' ' + 1); | |
7133 add_to_input_buf(string, 6); | |
7134 return 6; | |
7135 } | |
7136 #endif /* FEAT_MOUSE_GPM */ | |
7137 | |
1620 | 7138 #ifdef FEAT_SYSMOUSE |
7139 /* | |
7140 * Initialize connection with sysmouse. | |
7141 * Let virtual console inform us with SIGUSR2 for pending sysmouse | |
7142 * output, any sysmouse output than will be processed via sig_sysmouse(). | |
7143 * Return OK if succeeded, FAIL if failed. | |
7144 */ | |
7145 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7146 sysmouse_open(void) |
1620 | 7147 { |
7148 struct mouse_info mouse; | |
7149 | |
7150 mouse.operation = MOUSE_MODE; | |
7151 mouse.u.mode.mode = 0; | |
7152 mouse.u.mode.signal = SIGUSR2; | |
7153 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1) | |
7154 { | |
7155 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse); | |
7156 mouse.operation = MOUSE_SHOW; | |
7157 ioctl(1, CONS_MOUSECTL, &mouse); | |
7158 return OK; | |
7159 } | |
7160 return FAIL; | |
7161 } | |
7162 | |
7163 /* | |
7164 * Stop processing SIGUSR2 signals, and also make sure that | |
7165 * virtual console do not send us any sysmouse related signal. | |
7166 */ | |
7167 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7168 sysmouse_close(void) |
1620 | 7169 { |
7170 struct mouse_info mouse; | |
7171 | |
7172 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL); | |
7173 mouse.operation = MOUSE_MODE; | |
7174 mouse.u.mode.mode = 0; | |
7175 mouse.u.mode.signal = 0; | |
7176 ioctl(1, CONS_MOUSECTL, &mouse); | |
7177 } | |
7178 | |
7179 /* | |
7180 * Gets info from sysmouse and adds special keys to input buf. | |
7181 */ | |
7182 static RETSIGTYPE | |
7183 sig_sysmouse SIGDEFARG(sigarg) | |
7184 { | |
7185 struct mouse_info mouse; | |
7186 struct video_info video; | |
7187 char_u string[6]; | |
7188 int row, col; | |
7189 int button; | |
7190 int buttons; | |
7191 static int oldbuttons = 0; | |
7192 | |
7193 #ifdef FEAT_GUI | |
7194 /* Don't put events in the input queue now. */ | |
7195 if (hold_gui_events) | |
7196 return; | |
7197 #endif | |
7198 | |
7199 mouse.operation = MOUSE_GETINFO; | |
7200 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1 | |
7201 && ioctl(1, FBIO_MODEINFO, &video) != -1 | |
7202 && ioctl(1, CONS_MOUSECTL, &mouse) != -1 | |
7203 && video.vi_cheight > 0 && video.vi_cwidth > 0) | |
7204 { | |
7205 row = mouse.u.data.y / video.vi_cheight; | |
7206 col = mouse.u.data.x / video.vi_cwidth; | |
7207 buttons = mouse.u.data.buttons; | |
7208 string[0] = ESC; /* Our termcode */ | |
7209 string[1] = 'M'; | |
7210 string[2] = 'S'; | |
7211 if (oldbuttons == buttons && buttons != 0) | |
7212 { | |
7213 button = MOUSE_DRAG; | |
7214 } | |
7215 else | |
7216 { | |
7217 switch (buttons) | |
7218 { | |
7219 case 0: | |
7220 button = MOUSE_RELEASE; | |
7221 break; | |
7222 case 1: | |
7223 button = MOUSE_LEFT; | |
7224 break; | |
7225 case 2: | |
7226 button = MOUSE_MIDDLE; | |
7227 break; | |
7228 case 4: | |
7229 button = MOUSE_RIGHT; | |
7230 break; | |
7231 default: | |
7232 return; | |
7233 } | |
7234 oldbuttons = buttons; | |
7235 } | |
7236 string[3] = (char_u)(button); | |
7237 string[4] = (char_u)(col + ' ' + 1); | |
7238 string[5] = (char_u)(row + ' ' + 1); | |
7239 add_to_input_buf(string, 6); | |
7240 } | |
7241 return; | |
7242 } | |
7243 #endif /* FEAT_SYSMOUSE */ | |
7244 | |
7 | 7245 #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
|
7246 typedef char_u * (*STRPROCSTR)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7247 typedef char_u * (*INTPROCSTR)(int); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7248 typedef int (*STRPROCINT)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7249 typedef int (*INTPROCINT)(int); |
7 | 7250 |
7251 /* | |
7252 * Call a DLL routine which takes either a string or int param | |
7253 * and returns an allocated string. | |
7254 */ | |
7255 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7256 mch_libcall( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7257 char_u *libname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7258 char_u *funcname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7259 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
|
7260 int argint, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7261 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
|
7262 int *number_result) |
7 | 7263 { |
7264 # if defined(USE_DLOPEN) | |
7265 void *hinstLib; | |
12 | 7266 char *dlerr = NULL; |
7 | 7267 # else |
7268 shl_t hinstLib; | |
7269 # endif | |
7270 STRPROCSTR ProcAdd; | |
7271 INTPROCSTR ProcAddI; | |
7272 char_u *retval_str = NULL; | |
7273 int retval_int = 0; | |
7274 int success = FALSE; | |
7275 | |
900 | 7276 /* |
7277 * Get a handle to the DLL module. | |
7278 */ | |
7 | 7279 # if defined(USE_DLOPEN) |
900 | 7280 /* First clear any error, it's not cleared by the dlopen() call. */ |
7281 (void)dlerror(); | |
7282 | |
7 | 7283 hinstLib = dlopen((char *)libname, RTLD_LAZY |
7284 # ifdef RTLD_LOCAL | |
7285 | RTLD_LOCAL | |
7286 # endif | |
7287 ); | |
12 | 7288 if (hinstLib == NULL) |
7289 { | |
7290 /* "dlerr" must be used before dlclose() */ | |
7291 dlerr = (char *)dlerror(); | |
7292 if (dlerr != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7293 semsg(_("dlerror = \"%s\""), dlerr); |
12 | 7294 } |
7 | 7295 # else |
7296 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L); | |
7297 # endif | |
7298 | |
7299 /* If the handle is valid, try to get the function address. */ | |
7300 if (hinstLib != NULL) | |
7301 { | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7302 # ifdef USING_SETJMP |
7 | 7303 /* |
7304 * Catch a crash when calling the library function. For example when | |
7305 * using a number where a string pointer is expected. | |
7306 */ | |
7307 mch_startjmp(); | |
7308 if (SETJMP(lc_jump_env) != 0) | |
7309 { | |
7310 success = FALSE; | |
857 | 7311 # if defined(USE_DLOPEN) |
12 | 7312 dlerr = NULL; |
857 | 7313 # endif |
7 | 7314 mch_didjmp(); |
7315 } | |
7316 else | |
7317 # endif | |
7318 { | |
7319 retval_str = NULL; | |
7320 retval_int = 0; | |
7321 | |
7322 if (argstring != NULL) | |
7323 { | |
7324 # if defined(USE_DLOPEN) | |
10620
2198b53b9ffe
patch 8.0.0199: compiler warnings for libcall
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
7325 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname); |
12 | 7326 dlerr = (char *)dlerror(); |
7 | 7327 # else |
7328 if (shl_findsym(&hinstLib, (const char *)funcname, | |
7329 TYPE_PROCEDURE, (void *)&ProcAdd) < 0) | |
7330 ProcAdd = NULL; | |
7331 # endif | |
12 | 7332 if ((success = (ProcAdd != NULL |
7333 # if defined(USE_DLOPEN) | |
7334 && dlerr == NULL | |
7335 # endif | |
7336 ))) | |
7 | 7337 { |
7338 if (string_result == NULL) | |
7339 retval_int = ((STRPROCINT)ProcAdd)(argstring); | |
7340 else | |
7341 retval_str = (ProcAdd)(argstring); | |
7342 } | |
7343 } | |
7344 else | |
7345 { | |
7346 # if defined(USE_DLOPEN) | |
10620
2198b53b9ffe
patch 8.0.0199: compiler warnings for libcall
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
7347 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname); |
12 | 7348 dlerr = (char *)dlerror(); |
7 | 7349 # else |
7350 if (shl_findsym(&hinstLib, (const char *)funcname, | |
7351 TYPE_PROCEDURE, (void *)&ProcAddI) < 0) | |
7352 ProcAddI = NULL; | |
7353 # endif | |
12 | 7354 if ((success = (ProcAddI != NULL |
7355 # if defined(USE_DLOPEN) | |
7356 && dlerr == NULL | |
7357 # endif | |
7358 ))) | |
7 | 7359 { |
7360 if (string_result == NULL) | |
7361 retval_int = ((INTPROCINT)ProcAddI)(argint); | |
7362 else | |
7363 retval_str = (ProcAddI)(argint); | |
7364 } | |
7365 } | |
7366 | |
7367 /* Save the string before we free the library. */ | |
7368 /* Assume that a "1" or "-1" result is an illegal pointer. */ | |
7369 if (string_result == NULL) | |
7370 *number_result = retval_int; | |
7371 else if (retval_str != NULL | |
7372 && retval_str != (char_u *)1 | |
7373 && retval_str != (char_u *)-1) | |
7374 *string_result = vim_strsave(retval_str); | |
7375 } | |
7376 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7377 # ifdef USING_SETJMP |
7 | 7378 mch_endjmp(); |
7379 # ifdef SIGHASARG | |
7380 if (lc_signal != 0) | |
7381 { | |
7382 int i; | |
7383 | |
7384 /* try to find the name of this signal */ | |
7385 for (i = 0; signal_info[i].sig != -1; i++) | |
7386 if (lc_signal == signal_info[i].sig) | |
7387 break; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7388 semsg("E368: got SIG%s in libcall()", signal_info[i].name); |
7 | 7389 } |
7390 # endif | |
7391 # endif | |
7392 | |
12 | 7393 # if defined(USE_DLOPEN) |
7394 /* "dlerr" must be used before dlclose() */ | |
7395 if (dlerr != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7396 semsg(_("dlerror = \"%s\""), dlerr); |
12 | 7397 |
7 | 7398 /* Free the DLL module. */ |
7399 (void)dlclose(hinstLib); | |
7400 # else | |
7401 (void)shl_unload(hinstLib); | |
7402 # endif | |
7403 } | |
7404 | |
7405 if (!success) | |
7406 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7407 semsg(_(e_libcall), funcname); |
7 | 7408 return FAIL; |
7409 } | |
7410 | |
7411 return OK; | |
7412 } | |
7413 #endif | |
7414 | |
7415 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO) | |
7416 static int xterm_trace = -1; /* default: disabled */ | |
7417 static int xterm_button; | |
7418 | |
7419 /* | |
7420 * Setup a dummy window for X selections in a terminal. | |
7421 */ | |
7422 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7423 setup_term_clip(void) |
7 | 7424 { |
7425 int z = 0; | |
7426 char *strp = ""; | |
7427 Widget AppShell; | |
7428 | |
7429 if (!x_connect_to_server()) | |
7430 return; | |
7431 | |
7432 open_app_context(); | |
7433 if (app_context != NULL && xterm_Shell == (Widget)0) | |
7434 { | |
7435 int (*oldhandler)(); | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7436 # if defined(USING_SETJMP) |
7 | 7437 int (*oldIOhandler)(); |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7438 # endif |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7439 # ifdef ELAPSED_FUNC |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7440 elapsed_T start_tv; |
7 | 7441 |
7442 if (p_verbose > 0) | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7443 ELAPSED_INIT(start_tv); |
7 | 7444 # endif |
7445 | |
7446 /* Ignore X errors while opening the display */ | |
7447 oldhandler = XSetErrorHandler(x_error_check); | |
7448 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7449 # if defined(USING_SETJMP) |
7 | 7450 /* Ignore X IO errors while opening the display */ |
7451 oldIOhandler = XSetIOErrorHandler(x_IOerror_check); | |
7452 mch_startjmp(); | |
7453 if (SETJMP(lc_jump_env) != 0) | |
7454 { | |
7455 mch_didjmp(); | |
7456 xterm_dpy = NULL; | |
7457 } | |
7458 else | |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7459 # endif |
7 | 7460 { |
7461 xterm_dpy = XtOpenDisplay(app_context, xterm_display, | |
7462 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp); | |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
7463 if (xterm_dpy != NULL) |
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
7464 xterm_dpy_retry_count = 0; |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7465 # if defined(USING_SETJMP) |
7 | 7466 mch_endjmp(); |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7467 # endif |
7 | 7468 } |
7469 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7470 # if defined(USING_SETJMP) |
7 | 7471 /* Now handle X IO errors normally. */ |
7472 (void)XSetIOErrorHandler(oldIOhandler); | |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7473 # endif |
7 | 7474 /* Now handle X errors normally. */ |
7475 (void)XSetErrorHandler(oldhandler); | |
7476 | |
7477 if (xterm_dpy == NULL) | |
7478 { | |
7479 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
7480 verb_msg(_("Opening the X display failed")); |
7 | 7481 return; |
7482 } | |
7483 | |
7484 /* Catch terminating error of the X server connection. */ | |
7485 (void)XSetIOErrorHandler(x_IOerror_handler); | |
7486 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7487 # ifdef ELAPSED_FUNC |
7 | 7488 if (p_verbose > 0) |
292 | 7489 { |
7490 verbose_enter(); | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7491 xopen_message(ELAPSED_FUNC(start_tv)); |
292 | 7492 verbose_leave(); |
7493 } | |
7 | 7494 # endif |
7495 | |
7496 /* Create a Shell to make converters work. */ | |
7497 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm", | |
7498 applicationShellWidgetClass, xterm_dpy, | |
7499 NULL); | |
7500 if (AppShell == (Widget)0) | |
7501 return; | |
7502 xterm_Shell = XtVaCreatePopupShell("VIM", | |
7503 topLevelShellWidgetClass, AppShell, | |
7504 XtNmappedWhenManaged, 0, | |
7505 XtNwidth, 1, | |
7506 XtNheight, 1, | |
7507 NULL); | |
7508 if (xterm_Shell == (Widget)0) | |
7509 return; | |
7510 | |
7511 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
|
7512 x11_setup_selection(xterm_Shell); |
7 | 7513 if (x11_display == NULL) |
7514 x11_display = xterm_dpy; | |
7515 | |
7516 XtRealizeWidget(xterm_Shell); | |
7517 XSync(xterm_dpy, False); | |
7518 xterm_update(); | |
7519 } | |
7520 if (xterm_Shell != (Widget)0) | |
7521 { | |
7522 clip_init(TRUE); | |
7523 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL) | |
7524 x11_window = (Window)atol(strp); | |
7525 /* Check if $WINDOWID is valid. */ | |
7526 if (test_x11_window(xterm_dpy) == FAIL) | |
7527 x11_window = 0; | |
7528 if (x11_window != 0) | |
7529 xterm_trace = 0; | |
7530 } | |
7531 } | |
7532 | |
7533 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7534 start_xterm_trace(int button) |
7 | 7535 { |
7536 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0) | |
7537 return; | |
7538 xterm_trace = 1; | |
7539 xterm_button = button; | |
7540 do_xterm_trace(); | |
7541 } | |
7542 | |
7543 | |
7544 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7545 stop_xterm_trace(void) |
7 | 7546 { |
7547 if (xterm_trace < 0) | |
7548 return; | |
7549 xterm_trace = 0; | |
7550 } | |
7551 | |
7552 /* | |
7553 * Query the xterm pointer and generate mouse termcodes if necessary | |
7554 * return TRUE if dragging is active, else FALSE | |
7555 */ | |
7556 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7557 do_xterm_trace(void) |
7 | 7558 { |
7559 Window root, child; | |
7560 int root_x, root_y; | |
7561 int win_x, win_y; | |
7562 int row, col; | |
7563 int_u mask_return; | |
7564 char_u buf[50]; | |
7565 char_u *strp; | |
7566 long got_hints; | |
7567 static char_u *mouse_code; | |
7568 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER}; | |
7569 static int prev_row = 0, prev_col = 0; | |
7570 static XSizeHints xterm_hints; | |
7571 | |
7572 if (xterm_trace <= 0) | |
7573 return FALSE; | |
7574 | |
7575 if (xterm_trace == 1) | |
7576 { | |
7577 /* Get the hints just before tracking starts. The font size might | |
1510 | 7578 * have changed recently. */ |
7579 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints) | |
7580 || !(got_hints & PResizeInc) | |
7 | 7581 || xterm_hints.width_inc <= 1 |
7582 || xterm_hints.height_inc <= 1) | |
7583 { | |
7584 xterm_trace = -1; /* Not enough data -- disable tracing */ | |
7585 return FALSE; | |
7586 } | |
7587 | |
7588 /* Rely on the same mouse code for the duration of this */ | |
7589 mouse_code = find_termcode(mouse_name); | |
7590 prev_row = mouse_row; | |
7009 | 7591 prev_col = mouse_col; |
7 | 7592 xterm_trace = 2; |
7593 | |
7594 /* Find the offset of the chars, there might be a scrollbar on the | |
7595 * left of the window and/or a menu on the top (eterm etc.) */ | |
7596 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7597 &win_x, &win_y, &mask_return); | |
7598 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row) | |
7599 - (xterm_hints.height_inc / 2); | |
7600 if (xterm_hints.y <= xterm_hints.height_inc / 2) | |
7601 xterm_hints.y = 2; | |
7602 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col) | |
7603 - (xterm_hints.width_inc / 2); | |
7604 if (xterm_hints.x <= xterm_hints.width_inc / 2) | |
7605 xterm_hints.x = 2; | |
7606 return TRUE; | |
7607 } | |
2768 | 7608 if (mouse_code == NULL || STRLEN(mouse_code) > 45) |
7 | 7609 { |
7610 xterm_trace = 0; | |
7611 return FALSE; | |
7612 } | |
7613 | |
7614 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7615 &win_x, &win_y, &mask_return); | |
7616 | |
7617 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc); | |
7618 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc); | |
7619 if (row == prev_row && col == prev_col) | |
7620 return TRUE; | |
7621 | |
7622 STRCPY(buf, mouse_code); | |
7623 strp = buf + STRLEN(buf); | |
7624 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20; | |
7625 *strp++ = (char_u)(col + ' ' + 1); | |
7626 *strp++ = (char_u)(row + ' ' + 1); | |
7627 *strp = 0; | |
7628 add_to_input_buf(buf, STRLEN(buf)); | |
7629 | |
7630 prev_row = row; | |
7631 prev_col = col; | |
7632 return TRUE; | |
7633 } | |
7634 | |
7635 # if defined(FEAT_GUI) || defined(PROTO) | |
7636 /* | |
7637 * Destroy the display, window and app_context. Required for GTK. | |
7638 */ | |
7639 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7640 clear_xterm_clip(void) |
7 | 7641 { |
7642 if (xterm_Shell != (Widget)0) | |
7643 { | |
7644 XtDestroyWidget(xterm_Shell); | |
7645 xterm_Shell = (Widget)0; | |
7646 } | |
7647 if (xterm_dpy != NULL) | |
7648 { | |
1605 | 7649 # if 0 |
7 | 7650 /* Lesstif and Solaris crash here, lose some memory */ |
7651 XtCloseDisplay(xterm_dpy); | |
1605 | 7652 # endif |
7 | 7653 if (x11_display == xterm_dpy) |
7654 x11_display = NULL; | |
7655 xterm_dpy = NULL; | |
7656 } | |
1605 | 7657 # if 0 |
7 | 7658 if (app_context != (XtAppContext)NULL) |
7659 { | |
7660 /* Lesstif and Solaris crash here, lose some memory */ | |
7661 XtDestroyApplicationContext(app_context); | |
7662 app_context = (XtAppContext)NULL; | |
7663 } | |
1605 | 7664 # endif |
7 | 7665 } |
7666 # endif | |
7667 | |
7668 /* | |
4230 | 7669 * Catch up with GUI or X events. |
7670 */ | |
7671 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7672 clip_update(void) |
4230 | 7673 { |
7674 # ifdef FEAT_GUI | |
7675 if (gui.in_use) | |
7676 gui_mch_update(); | |
7677 else | |
7678 # endif | |
7679 if (xterm_Shell != (Widget)0) | |
7680 xterm_update(); | |
7681 } | |
7682 | |
7683 /* | |
7 | 7684 * Catch up with any queued X events. This may put keyboard input into the |
7685 * input buffer, call resize call-backs, trigger timers etc. If there is | |
7686 * nothing in the X event queue (& no timers pending), then we return | |
7687 * immediately. | |
7688 */ | |
7689 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7690 xterm_update(void) |
7 | 7691 { |
7692 XEvent event; | |
7693 | |
6683 | 7694 for (;;) |
7 | 7695 { |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7696 XtInputMask mask = XtAppPending(app_context); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7697 |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7698 if (mask == 0 || vim_is_input_buf_full()) |
6683 | 7699 break; |
7700 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7701 if (mask & XtIMXEvent) |
7 | 7702 { |
6683 | 7703 /* 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
|
7704 XtAppNextEvent(app_context, &event); |
6683 | 7705 #ifdef FEAT_CLIENTSERVER |
7706 { | |
7707 XPropertyEvent *e = (XPropertyEvent *)&event; | |
7708 | |
7709 if (e->type == PropertyNotify && e->window == commWindow | |
7 | 7710 && 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
|
7711 serverEventProc(xterm_dpy, &event, 0); |
6683 | 7712 } |
7713 #endif | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7714 XtDispatchEvent(&event); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7715 } |
6683 | 7716 else |
7717 { | |
7718 /* 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
|
7719 XtAppProcessEvent(app_context, mask); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7720 } |
7 | 7721 } |
7722 } | |
7723 | |
7724 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7725 clip_xterm_own_selection(VimClipboard *cbd) |
7 | 7726 { |
7727 if (xterm_Shell != (Widget)0) | |
7728 return clip_x11_own_selection(xterm_Shell, cbd); | |
7729 return FAIL; | |
7730 } | |
7731 | |
7732 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7733 clip_xterm_lose_selection(VimClipboard *cbd) |
7 | 7734 { |
7735 if (xterm_Shell != (Widget)0) | |
7736 clip_x11_lose_selection(xterm_Shell, cbd); | |
7737 } | |
7738 | |
7739 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7740 clip_xterm_request_selection(VimClipboard *cbd) |
7 | 7741 { |
7742 if (xterm_Shell != (Widget)0) | |
7743 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd); | |
7744 } | |
7745 | |
7746 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7747 clip_xterm_set_selection(VimClipboard *cbd) |
7 | 7748 { |
7749 clip_x11_set_selection(cbd); | |
7750 } | |
7751 #endif | |
7752 | |
7753 | |
7754 #if defined(USE_XSMP) || defined(PROTO) | |
7755 /* | |
7756 * Code for X Session Management Protocol. | |
7757 */ | |
7758 | |
7759 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7760 /* | |
7761 * This is our chance to ask the user if they want to save, | |
7762 * or abort the logout | |
7763 */ | |
7764 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7765 xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED) |
7 | 7766 { |
7767 cmdmod_T save_cmdmod; | |
7768 int cancel_shutdown = False; | |
7769 | |
7770 save_cmdmod = cmdmod; | |
7771 cmdmod.confirm = TRUE; | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
7772 if (check_changed_any(FALSE, FALSE)) |
7 | 7773 /* Mustn't logout */ |
7774 cancel_shutdown = True; | |
7775 cmdmod = save_cmdmod; | |
7776 setcursor(); /* position cursor */ | |
7777 out_flush(); | |
7778 | |
7779 /* Done interaction */ | |
7780 SmcInteractDone(smc_conn, cancel_shutdown); | |
7781 | |
7782 /* Finish off | |
7783 * Only end save-yourself here if we're not cancelling shutdown; | |
7784 * we'll get a cancelled callback later in which we'll end it. | |
7785 * Hopefully get around glitchy SMs (like GNOME-1) | |
7786 */ | |
7787 if (!cancel_shutdown) | |
7788 { | |
7789 xsmp.save_yourself = False; | |
7790 SmcSaveYourselfDone(smc_conn, True); | |
7791 } | |
7792 } | |
7793 # endif | |
7794 | |
7795 /* | |
7796 * Callback that starts save-yourself. | |
7797 */ | |
7798 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7799 xsmp_handle_save_yourself( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7800 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7801 SmPointer client_data UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7802 int save_type UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7803 Bool shutdown, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7804 int interact_style UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7805 Bool fast UNUSED) |
7 | 7806 { |
7807 /* Handle already being in saveyourself */ | |
7808 if (xsmp.save_yourself) | |
7809 SmcSaveYourselfDone(smc_conn, True); | |
7810 xsmp.save_yourself = True; | |
7811 xsmp.shutdown = shutdown; | |
7812 | |
7813 /* First up, preserve all files */ | |
7814 out_flush(); | |
7815 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
7816 | |
7817 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
7818 verb_msg(_("XSMP handling save-yourself request")); |
7 | 7819 |
7820 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7821 /* Now see if we can ask about unsaved files */ | |
7822 if (shutdown && !fast && gui.in_use) | |
7823 /* Need to interact with user, but need SM's permission */ | |
7824 SmcInteractRequest(smc_conn, SmDialogError, | |
7825 xsmp_handle_interaction, client_data); | |
7826 else | |
7827 # endif | |
7828 { | |
7829 /* Can stop the cycle here */ | |
7830 SmcSaveYourselfDone(smc_conn, True); | |
7831 xsmp.save_yourself = False; | |
7832 } | |
7833 } | |
7834 | |
7835 | |
7836 /* | |
7837 * Callback to warn us of imminent death. | |
7838 */ | |
7839 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7840 xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED) |
7 | 7841 { |
7842 xsmp_close(); | |
7843 | |
7844 /* quit quickly leaving swapfiles for modified buffers behind */ | |
7845 getout_preserve_modified(0); | |
7846 } | |
7847 | |
7848 | |
7849 /* | |
7850 * Callback to tell us that save-yourself has completed. | |
7851 */ | |
7852 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7853 xsmp_save_complete( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7854 SmcConn smc_conn UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7855 SmPointer client_data UNUSED) |
7 | 7856 { |
7857 xsmp.save_yourself = False; | |
7858 } | |
7859 | |
7860 | |
7861 /* | |
7862 * Callback to tell us that an instigated shutdown was cancelled | |
7863 * (maybe even by us) | |
7864 */ | |
7865 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7866 xsmp_shutdown_cancelled( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7867 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7868 SmPointer client_data UNUSED) |
7 | 7869 { |
7870 if (xsmp.save_yourself) | |
7871 SmcSaveYourselfDone(smc_conn, True); | |
7872 xsmp.save_yourself = False; | |
7873 xsmp.shutdown = False; | |
7874 } | |
7875 | |
7876 | |
7877 /* | |
7878 * Callback to tell us that a new ICE connection has been established. | |
7879 */ | |
7880 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7881 xsmp_ice_connection( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7882 IceConn iceConn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7883 IcePointer clientData UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7884 Bool opening, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7885 IcePointer *watchData UNUSED) |
7 | 7886 { |
7887 /* Intercept creation of ICE connection fd */ | |
7888 if (opening) | |
7889 { | |
7890 xsmp_icefd = IceConnectionNumber(iceConn); | |
7891 IceRemoveConnectionWatch(xsmp_ice_connection, NULL); | |
7892 } | |
7893 } | |
7894 | |
7895 | |
7896 /* Handle any ICE processing that's required; return FAIL if SM lost */ | |
7897 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7898 xsmp_handle_requests(void) |
7 | 7899 { |
7900 Bool rep; | |
7901 | |
7902 if (IceProcessMessages(xsmp.iceconn, NULL, &rep) | |
7903 == IceProcessMessagesIOError) | |
7904 { | |
7905 /* Lost ICE */ | |
7906 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
7907 verb_msg(_("XSMP lost ICE connection")); |
7 | 7908 xsmp_close(); |
7909 return FAIL; | |
7910 } | |
7911 else | |
7912 return OK; | |
7913 } | |
7914 | |
7915 static int dummy; | |
7916 | |
7917 /* Set up X Session Management Protocol */ | |
7918 void | |
7919 xsmp_init(void) | |
7920 { | |
7921 char errorstring[80]; | |
7922 SmcCallbacks smcallbacks; | |
7923 #if 0 | |
7924 SmPropValue smname; | |
7925 SmProp smnameprop; | |
7926 SmProp *smprops[1]; | |
7927 #endif | |
7928 | |
7929 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
7930 verb_msg(_("XSMP opening connection")); |
7 | 7931 |
7932 xsmp.save_yourself = xsmp.shutdown = False; | |
7933 | |
7934 /* Set up SM callbacks - must have all, even if they're not used */ | |
7935 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself; | |
7936 smcallbacks.save_yourself.client_data = NULL; | |
7937 smcallbacks.die.callback = xsmp_die; | |
7938 smcallbacks.die.client_data = NULL; | |
7939 smcallbacks.save_complete.callback = xsmp_save_complete; | |
7940 smcallbacks.save_complete.client_data = NULL; | |
7941 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled; | |
7942 smcallbacks.shutdown_cancelled.client_data = NULL; | |
7943 | |
7944 /* Set up a watch on ICE connection creations. The "dummy" argument is | |
7945 * apparently required for FreeBSD (we get a BUS error when using NULL). */ | |
7946 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0) | |
7947 { | |
7948 if (p_verbose > 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
7949 verb_msg(_("XSMP ICE connection watch failed")); |
7 | 7950 return; |
7951 } | |
7952 | |
7953 /* Create an SM connection */ | |
7954 xsmp.smcconn = SmcOpenConnection( | |
7955 NULL, | |
7956 NULL, | |
7957 SmProtoMajor, | |
7958 SmProtoMinor, | |
7959 SmcSaveYourselfProcMask | SmcDieProcMask | |
7960 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask, | |
7961 &smcallbacks, | |
7962 NULL, | |
1605 | 7963 &xsmp.clientid, |
14828
421e120ffb30
patch 8.1.0426: accessing invalid memory in SmcOpenConnection()
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
7964 sizeof(errorstring) - 1, |
7 | 7965 errorstring); |
7966 if (xsmp.smcconn == NULL) | |
7967 { | |
7968 char errorreport[132]; | |
273 | 7969 |
292 | 7970 if (p_verbose > 0) |
7971 { | |
7972 vim_snprintf(errorreport, sizeof(errorreport), | |
273 | 7973 _("XSMP SmcOpenConnection failed: %s"), errorstring); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
7974 verb_msg(errorreport); |
292 | 7975 } |
7 | 7976 return; |
7977 } | |
7978 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn); | |
7979 | |
7980 #if 0 | |
7981 /* ID ourselves */ | |
7982 smname.value = "vim"; | |
7983 smname.length = 3; | |
7984 smnameprop.name = "SmProgram"; | |
7985 smnameprop.type = "SmARRAY8"; | |
7986 smnameprop.num_vals = 1; | |
7987 smnameprop.vals = &smname; | |
7988 | |
7989 smprops[0] = &smnameprop; | |
7990 SmcSetProperties(xsmp.smcconn, 1, smprops); | |
7991 #endif | |
7992 } | |
7993 | |
7994 | |
7995 /* Shut down XSMP comms. */ | |
7996 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7997 xsmp_close(void) |
7 | 7998 { |
7999 if (xsmp_icefd != -1) | |
8000 { | |
8001 SmcCloseConnection(xsmp.smcconn, 0, NULL); | |
1737 | 8002 if (xsmp.clientid != NULL) |
8003 free(xsmp.clientid); | |
1605 | 8004 xsmp.clientid = NULL; |
7 | 8005 xsmp_icefd = -1; |
8006 } | |
8007 } | |
8008 #endif /* USE_XSMP */ | |
8009 | |
8010 | |
8011 #ifdef EBCDIC | |
8012 /* Translate character to its CTRL- value */ | |
8013 char CtrlTable[] = | |
8014 { | |
8015 /* 00 - 5E */ | |
8016 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8017 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8018 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8019 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8020 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8021 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8022 /* ^ */ 0x1E, | |
8023 /* - */ 0x1F, | |
8024 /* 61 - 6C */ | |
8025 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8026 /* _ */ 0x1F, | |
8027 /* 6E - 80 */ | |
8028 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8029 /* a */ 0x01, | |
8030 /* b */ 0x02, | |
8031 /* c */ 0x03, | |
8032 /* d */ 0x37, | |
8033 /* e */ 0x2D, | |
8034 /* f */ 0x2E, | |
8035 /* g */ 0x2F, | |
8036 /* h */ 0x16, | |
8037 /* i */ 0x05, | |
8038 /* 8A - 90 */ | |
8039 0, 0, 0, 0, 0, 0, 0, | |
8040 /* j */ 0x15, | |
8041 /* k */ 0x0B, | |
8042 /* l */ 0x0C, | |
8043 /* m */ 0x0D, | |
8044 /* n */ 0x0E, | |
8045 /* o */ 0x0F, | |
8046 /* p */ 0x10, | |
8047 /* q */ 0x11, | |
8048 /* r */ 0x12, | |
8049 /* 9A - A1 */ | |
8050 0, 0, 0, 0, 0, 0, 0, 0, | |
8051 /* s */ 0x13, | |
8052 /* t */ 0x3C, | |
8053 /* u */ 0x3D, | |
8054 /* v */ 0x32, | |
8055 /* w */ 0x26, | |
8056 /* x */ 0x18, | |
8057 /* y */ 0x19, | |
8058 /* z */ 0x3F, | |
8059 /* AA - AC */ | |
8060 0, 0, 0, | |
8061 /* [ */ 0x27, | |
8062 /* AE - BC */ | |
8063 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8064 /* ] */ 0x1D, | |
8065 /* BE - C0 */ 0, 0, 0, | |
8066 /* A */ 0x01, | |
8067 /* B */ 0x02, | |
8068 /* C */ 0x03, | |
8069 /* D */ 0x37, | |
8070 /* E */ 0x2D, | |
8071 /* F */ 0x2E, | |
8072 /* G */ 0x2F, | |
8073 /* H */ 0x16, | |
8074 /* I */ 0x05, | |
8075 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0, | |
8076 /* J */ 0x15, | |
8077 /* K */ 0x0B, | |
8078 /* L */ 0x0C, | |
8079 /* M */ 0x0D, | |
8080 /* N */ 0x0E, | |
8081 /* O */ 0x0F, | |
8082 /* P */ 0x10, | |
8083 /* Q */ 0x11, | |
8084 /* R */ 0x12, | |
8085 /* DA - DF */ 0, 0, 0, 0, 0, 0, | |
8086 /* \ */ 0x1C, | |
8087 /* E1 */ 0, | |
8088 /* S */ 0x13, | |
8089 /* T */ 0x3C, | |
8090 /* U */ 0x3D, | |
8091 /* V */ 0x32, | |
8092 /* W */ 0x26, | |
8093 /* X */ 0x18, | |
8094 /* Y */ 0x19, | |
8095 /* Z */ 0x3F, | |
8096 /* EA - FF*/ 0, 0, 0, 0, 0, 0, | |
8097 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8098 }; | |
8099 | |
8100 char MetaCharTable[]= | |
8101 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
8102 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0, | |
8103 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0, | |
8104 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0, | |
8105 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0 | |
8106 }; | |
8107 | |
8108 | |
8109 /* TODO: Use characters NOT numbers!!! */ | |
8110 char CtrlCharTable[]= | |
8111 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
8112 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214, | |
8113 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109, | |
8114 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199, | |
8115 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233, | |
8116 }; | |
8117 | |
8118 | |
8119 #endif |