Mercurial > vim
annotate src/os_unix.c @ 16770:09c81f17f83c v8.1.1387
patch 8.1.1387: calling prop_add() in an empty buffer doesn't work
commit https://github.com/vim/vim/commit/d79eef2eb1f24b53206c4e55b80a4634f548c429
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri May 24 20:41:55 2019 +0200
patch 8.1.1387: calling prop_add() in an empty buffer doesn't work
Problem: Calling prop_add() in an empty buffer doesn't work. (Dominique
Pelle)
Solution: Open the memline before adding a text property. (closes #4412)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 24 May 2019 20:45:05 +0200 |
parents | 695d9ef00b03 |
children | ce04ebdf26b8 |
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 } | |
16608
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1662 |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1663 void |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1664 ex_xrestore(exarg_T *eap) |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1665 { |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1666 if (eap->arg != NULL && STRLEN(eap->arg) > 0) |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1667 { |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1668 if (xterm_display_allocated) |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1669 vim_free(xterm_display); |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1670 xterm_display = (char *)vim_strsave(eap->arg); |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1671 xterm_display_allocated = TRUE; |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1672 } |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1673 smsg(_("restoring display %s"), xterm_display == NULL |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1674 ? (char *)mch_getenv("DISPLAY") : xterm_display); |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1675 |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1676 clear_xterm_clip(); |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1677 x11_window = 0; |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1678 xterm_dpy_retry_count = 5; // Try reconnecting five times |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1679 may_restore_clipboard(); |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1680 } |
7 | 1681 #endif |
1682 | |
1683 /* | |
1684 * Test if "dpy" and x11_window are valid by getting the window title. | |
1685 * I don't actually want it yet, so there may be a simpler call to use, but | |
1686 * this will cause the error handler x_error_check() to be called if anything | |
1687 * is wrong, such as the window pointer being invalid (as can happen when the | |
1688 * user changes his DISPLAY, but not his WINDOWID) -- webb | |
1689 */ | |
1690 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1691 test_x11_window(Display *dpy) |
7 | 1692 { |
1693 int (*old_handler)(); | |
1694 XTextProperty text_prop; | |
1695 | |
1696 old_handler = XSetErrorHandler(x_error_check); | |
1697 got_x_error = FALSE; | |
1698 if (XGetWMName(dpy, x11_window, &text_prop)) | |
1699 XFree((void *)text_prop.value); | |
1700 XSync(dpy, False); | |
1701 (void)XSetErrorHandler(old_handler); | |
1702 | |
1703 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
|
1704 verb_msg(_("Testing the X display failed")); |
7 | 1705 |
1706 return (got_x_error ? FAIL : OK); | |
1707 } | |
1708 #endif | |
1709 | |
1710 #ifdef FEAT_TITLE | |
1711 | |
1712 #ifdef FEAT_X11 | |
1713 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1714 static int get_x11_thing(int get_title, int test_only); |
7 | 1715 |
1716 /* | |
1717 * try to get x11 window and display | |
1718 * | |
1719 * return FAIL for failure, OK otherwise | |
1720 */ | |
1721 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1722 get_x11_windis(void) |
7 | 1723 { |
1724 char *winid; | |
1725 static int result = -1; | |
1726 #define XD_NONE 0 /* x11_display not set here */ | |
1727 #define XD_HERE 1 /* x11_display opened here */ | |
1728 #define XD_GUI 2 /* x11_display used from gui.dpy */ | |
1729 #define XD_XTERM 3 /* x11_display used from xterm_dpy */ | |
1730 static int x11_display_from = XD_NONE; | |
1731 static int did_set_error_handler = FALSE; | |
1732 | |
1733 if (!did_set_error_handler) | |
1734 { | |
1735 /* X just exits if it finds an error otherwise! */ | |
1736 (void)XSetErrorHandler(x_error_handler); | |
1737 did_set_error_handler = TRUE; | |
1738 } | |
1739 | |
574 | 1740 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
7 | 1741 if (gui.in_use) |
1742 { | |
1743 /* | |
1744 * If the X11 display was opened here before, for the window where Vim | |
1745 * was started, close that one now to avoid a memory leak. | |
1746 */ | |
1747 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1748 { | |
1749 XCloseDisplay(x11_display); | |
1750 x11_display_from = XD_NONE; | |
1751 } | |
1752 if (gui_get_x11_windis(&x11_window, &x11_display) == OK) | |
1753 { | |
1754 x11_display_from = XD_GUI; | |
1755 return OK; | |
1756 } | |
1757 x11_display = NULL; | |
1758 return FAIL; | |
1759 } | |
1760 else if (x11_display_from == XD_GUI) | |
1761 { | |
1762 /* GUI must have stopped somehow, clear x11_display */ | |
1763 x11_window = 0; | |
1764 x11_display = NULL; | |
1765 x11_display_from = XD_NONE; | |
1766 } | |
1767 #endif | |
1768 | |
1769 /* When started with the "-X" argument, don't try connecting. */ | |
1770 if (!x_connect_to_server()) | |
1771 return FAIL; | |
1772 | |
1773 /* | |
1774 * If WINDOWID not set, should try another method to find out | |
1775 * what the current window number is. The only code I know for | |
1776 * this is very complicated. | |
1777 * We assume that zero is invalid for WINDOWID. | |
1778 */ | |
1779 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL) | |
1780 x11_window = (Window)atol(winid); | |
1781 | |
1782 #ifdef FEAT_XCLIPBOARD | |
16608
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1783 if (xterm_dpy == x11_display) |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1784 // x11_display may have been set to xterm_dpy elsewhere |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1785 x11_display_from = XD_XTERM; |
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
1786 |
7 | 1787 if (xterm_dpy != NULL && x11_window != 0) |
1788 { | |
1450 | 1789 /* We may have checked it already, but Gnome terminal can move us to |
1790 * another window, so we need to check every time. */ | |
1791 if (x11_display_from != XD_XTERM) | |
1792 { | |
1793 /* | |
1794 * If the X11 display was opened here before, for the window where | |
1795 * Vim was started, close that one now to avoid a memory leak. | |
1796 */ | |
1797 if (x11_display_from == XD_HERE && x11_display != NULL) | |
1798 XCloseDisplay(x11_display); | |
1799 x11_display = xterm_dpy; | |
1800 x11_display_from = XD_XTERM; | |
1801 } | |
7 | 1802 if (test_x11_window(x11_display) == FAIL) |
1803 { | |
1804 /* probably bad $WINDOWID */ | |
1805 x11_window = 0; | |
1806 x11_display = NULL; | |
1807 x11_display_from = XD_NONE; | |
1808 return FAIL; | |
1809 } | |
1810 return OK; | |
1811 } | |
1812 #endif | |
1813 | |
1814 if (x11_window == 0 || x11_display == NULL) | |
1815 result = -1; | |
1816 | |
1817 if (result != -1) /* Have already been here and set this */ | |
1818 return result; /* Don't do all these X calls again */ | |
1819 | |
1820 if (x11_window != 0 && x11_display == NULL) | |
1821 { | |
1822 #ifdef SET_SIG_ALARM | |
1823 RETSIGTYPE (*sig_save)(); | |
1824 #endif | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1825 #ifdef ELAPSED_FUNC |
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1826 elapsed_T start_tv; |
7 | 1827 |
1828 if (p_verbose > 0) | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1829 ELAPSED_INIT(start_tv); |
7 | 1830 #endif |
1831 | |
1832 #ifdef SET_SIG_ALARM | |
1833 /* | |
1834 * Opening the Display may hang if the DISPLAY setting is wrong, or | |
1835 * the network connection is bad. Set an alarm timer to get out. | |
1836 */ | |
1837 sig_alarm_called = FALSE; | |
1838 sig_save = (RETSIGTYPE (*)())signal(SIGALRM, | |
1839 (RETSIGTYPE (*)())sig_alarm); | |
1840 alarm(2); | |
1841 #endif | |
1842 x11_display = XOpenDisplay(NULL); | |
1843 | |
1844 #ifdef SET_SIG_ALARM | |
1845 alarm(0); | |
1846 signal(SIGALRM, (RETSIGTYPE (*)())sig_save); | |
1847 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
|
1848 verb_msg(_("Opening the X display timed out")); |
7 | 1849 #endif |
1850 if (x11_display != NULL) | |
1851 { | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1852 # ifdef ELAPSED_FUNC |
7 | 1853 if (p_verbose > 0) |
292 | 1854 { |
1855 verbose_enter(); | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
1856 xopen_message(ELAPSED_FUNC(start_tv)); |
292 | 1857 verbose_leave(); |
1858 } | |
7 | 1859 # endif |
1860 if (test_x11_window(x11_display) == FAIL) | |
1861 { | |
1862 /* Maybe window id is bad */ | |
1863 x11_window = 0; | |
1864 XCloseDisplay(x11_display); | |
1865 x11_display = NULL; | |
1866 } | |
1867 else | |
1868 x11_display_from = XD_HERE; | |
1869 } | |
1870 } | |
1871 if (x11_window == 0 || x11_display == NULL) | |
1872 return (result = FAIL); | |
2609 | 1873 |
1874 # ifdef FEAT_EVAL | |
1875 set_vim_var_nr(VV_WINDOWID, (long)x11_window); | |
1876 # endif | |
1877 | |
7 | 1878 return (result = OK); |
1879 } | |
1880 | |
1881 /* | |
1882 * Determine original x11 Window Title | |
1883 */ | |
1884 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1885 get_x11_title(int test_only) |
7 | 1886 { |
32 | 1887 return get_x11_thing(TRUE, test_only); |
7 | 1888 } |
1889 | |
1890 /* | |
1891 * Determine original x11 Window icon | |
1892 */ | |
1893 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1894 get_x11_icon(int test_only) |
7 | 1895 { |
1896 int retval = FALSE; | |
1897 | |
1898 retval = get_x11_thing(FALSE, test_only); | |
1899 | |
1900 /* could not get old icon, use terminal name */ | |
1901 if (oldicon == NULL && !test_only) | |
1902 { | |
1903 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 1904 oldicon = vim_strsave(T_NAME + 8); |
7 | 1905 else |
1940 | 1906 oldicon = vim_strsave(T_NAME); |
7 | 1907 } |
1908 | |
1909 return retval; | |
1910 } | |
1911 | |
1912 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1913 get_x11_thing( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1914 int get_title, /* get title string */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1915 int test_only) |
7 | 1916 { |
1917 XTextProperty text_prop; | |
1918 int retval = FALSE; | |
1919 Status status; | |
1920 | |
1921 if (get_x11_windis() == OK) | |
1922 { | |
1923 /* Get window/icon name if any */ | |
1924 if (get_title) | |
1925 status = XGetWMName(x11_display, x11_window, &text_prop); | |
1926 else | |
1927 status = XGetWMIconName(x11_display, x11_window, &text_prop); | |
1928 | |
1929 /* | |
1930 * If terminal is xterm, then x11_window may be a child window of the | |
1931 * outer xterm window that actually contains the window/icon name, so | |
1932 * keep traversing up the tree until a window with a title/icon is | |
1933 * found. | |
1934 */ | |
1935 /* Previously this was only done for xterm and alikes. I don't see a | |
1936 * reason why it would fail for other terminal emulators. | |
1937 * if (term_is_xterm) */ | |
1938 { | |
1939 Window root; | |
1940 Window parent; | |
1941 Window win = x11_window; | |
1942 Window *children; | |
1943 unsigned int num_children; | |
1944 | |
1945 while (!status || text_prop.value == NULL) | |
1946 { | |
1947 if (!XQueryTree(x11_display, win, &root, &parent, &children, | |
1948 &num_children)) | |
1949 break; | |
1950 if (children) | |
1951 XFree((void *)children); | |
1952 if (parent == root || parent == 0) | |
1953 break; | |
1954 | |
1955 win = parent; | |
1956 if (get_title) | |
1957 status = XGetWMName(x11_display, win, &text_prop); | |
1958 else | |
1959 status = XGetWMIconName(x11_display, win, &text_prop); | |
1960 } | |
1961 } | |
1962 if (status && text_prop.value != NULL) | |
1963 { | |
1964 retval = TRUE; | |
1965 if (!test_only) | |
1966 { | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15567
diff
changeset
|
1967 if (text_prop.encoding == XA_STRING && !has_mbyte) |
7 | 1968 { |
1969 if (get_title) | |
1970 oldtitle = vim_strsave((char_u *)text_prop.value); | |
1971 else | |
1972 oldicon = vim_strsave((char_u *)text_prop.value); | |
1973 } | |
1974 else | |
1975 { | |
1976 char **cl; | |
1977 Status transform_status; | |
1978 int n = 0; | |
1979 | |
1980 transform_status = XmbTextPropertyToTextList(x11_display, | |
1981 &text_prop, | |
1982 &cl, &n); | |
1983 if (transform_status >= Success && n > 0 && cl[0]) | |
1984 { | |
1985 if (get_title) | |
1986 oldtitle = vim_strsave((char_u *) cl[0]); | |
1987 else | |
1988 oldicon = vim_strsave((char_u *) cl[0]); | |
1989 XFreeStringList(cl); | |
1990 } | |
1991 else | |
1992 { | |
1993 if (get_title) | |
1994 oldtitle = vim_strsave((char_u *)text_prop.value); | |
1995 else | |
1996 oldicon = vim_strsave((char_u *)text_prop.value); | |
1997 } | |
1998 } | |
1999 } | |
2000 XFree((void *)text_prop.value); | |
2001 } | |
2002 } | |
2003 return retval; | |
2004 } | |
2005 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
2006 /* Xutf8 functions are not available on older systems. Note that on some |
6282 | 2007 * systems X_HAVE_UTF8_STRING may be defined in a header file but |
2008 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for | |
2009 * that and defines HAVE_XUTF8SETWMPROPERTIES. */ | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15567
diff
changeset
|
2010 #if defined(X_HAVE_UTF8_STRING) |
6282 | 2011 # if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES |
7 | 2012 # define USE_UTF8_STRING |
2013 # endif | |
2014 #endif | |
2015 | |
2016 /* | |
2017 * Set x11 Window Title | |
2018 * | |
2019 * get_x11_windis() must be called before this and have returned OK | |
2020 */ | |
2021 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2022 set_x11_title(char_u *title) |
7 | 2023 { |
2024 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING | |
2025 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't | |
2026 * supported everywhere and STRING doesn't work for multi-byte titles. | |
2027 */ | |
2028 #ifdef USE_UTF8_STRING | |
2029 if (enc_utf8) | |
2030 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title, | |
2031 NULL, NULL, 0, NULL, NULL, NULL); | |
2032 else | |
2033 #endif | |
2034 { | |
2035 #if XtSpecificationRelease >= 4 | |
2036 # ifdef FEAT_XFONTSET | |
2037 XmbSetWMProperties(x11_display, x11_window, (const char *)title, | |
2038 NULL, NULL, 0, NULL, NULL, NULL); | |
2039 # else | |
2040 XTextProperty text_prop; | |
129 | 2041 char *c_title = (char *)title; |
7 | 2042 |
2043 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */ | |
129 | 2044 (void)XStringListToTextProperty(&c_title, 1, &text_prop); |
7 | 2045 XSetWMProperties(x11_display, x11_window, &text_prop, |
2046 NULL, NULL, 0, NULL, NULL, NULL); | |
2047 # endif | |
2048 #else | |
2049 XStoreName(x11_display, x11_window, (char *)title); | |
2050 #endif | |
2051 } | |
2052 XFlush(x11_display); | |
2053 } | |
2054 | |
2055 /* | |
2056 * Set x11 Window icon | |
2057 * | |
2058 * get_x11_windis() must be called before this and have returned OK | |
2059 */ | |
2060 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2061 set_x11_icon(char_u *icon) |
7 | 2062 { |
2063 /* See above for comments about using X*SetWMProperties(). */ | |
2064 #ifdef USE_UTF8_STRING | |
2065 if (enc_utf8) | |
2066 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2067 NULL, 0, NULL, NULL, NULL); | |
2068 else | |
2069 #endif | |
2070 { | |
2071 #if XtSpecificationRelease >= 4 | |
2072 # ifdef FEAT_XFONTSET | |
2073 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon, | |
2074 NULL, 0, NULL, NULL, NULL); | |
2075 # else | |
2076 XTextProperty text_prop; | |
129 | 2077 char *c_icon = (char *)icon; |
2078 | |
2079 (void)XStringListToTextProperty(&c_icon, 1, &text_prop); | |
7 | 2080 XSetWMProperties(x11_display, x11_window, NULL, &text_prop, |
2081 NULL, 0, NULL, NULL, NULL); | |
2082 # endif | |
2083 #else | |
2084 XSetIconName(x11_display, x11_window, (char *)icon); | |
2085 #endif | |
2086 } | |
2087 XFlush(x11_display); | |
2088 } | |
2089 | |
2090 #else /* FEAT_X11 */ | |
2091 | |
2092 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2093 get_x11_title(int test_only UNUSED) |
7 | 2094 { |
2095 return FALSE; | |
2096 } | |
2097 | |
2098 static int | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2099 get_x11_icon(int test_only) |
7 | 2100 { |
2101 if (!test_only) | |
2102 { | |
2103 if (STRNCMP(T_NAME, "builtin_", 8) == 0) | |
1940 | 2104 oldicon = vim_strsave(T_NAME + 8); |
7 | 2105 else |
1940 | 2106 oldicon = vim_strsave(T_NAME); |
7 | 2107 } |
2108 return FALSE; | |
2109 } | |
2110 | |
2111 #endif /* FEAT_X11 */ | |
2112 | |
2113 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2114 mch_can_restore_title(void) |
7 | 2115 { |
2116 return get_x11_title(TRUE); | |
2117 } | |
2118 | |
2119 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2120 mch_can_restore_icon(void) |
7 | 2121 { |
2122 return get_x11_icon(TRUE); | |
2123 } | |
2124 | |
2125 /* | |
2126 * Set the window title and icon. | |
2127 */ | |
2128 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2129 mch_settitle(char_u *title, char_u *icon) |
7 | 2130 { |
2131 int type = 0; | |
2132 static int recursive = 0; | |
2133 | |
2134 if (T_NAME == NULL) /* no terminal name (yet) */ | |
2135 return; | |
2136 if (title == NULL && icon == NULL) /* nothing to do */ | |
2137 return; | |
2138 | |
2139 /* When one of the X11 functions causes a deadly signal, we get here again | |
2140 * recursively. Avoid hanging then (something is probably locked). */ | |
2141 if (recursive) | |
2142 return; | |
2143 ++recursive; | |
2144 | |
2145 /* | |
2146 * if the window ID and the display is known, we may use X11 calls | |
2147 */ | |
2148 #ifdef FEAT_X11 | |
2149 if (get_x11_windis() == OK) | |
2150 type = 1; | |
2151 #else | |
2152 # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) | |
2153 if (gui.in_use) | |
2154 type = 1; | |
2155 # endif | |
2156 #endif | |
2157 | |
2158 /* | |
2414
5bd81e397907
Fix: terminal title not properly restured when there are multi-byte
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2159 * Note: if "t_ts" is set, title is set with escape sequence rather |
7 | 2160 * than x11 calls, because the x11 calls don't always work |
2161 */ | |
2162 if ((type || *T_TS != NUL) && title != NULL) | |
2163 { | |
14573
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2164 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
|
2165 { |
738e9d1ac4d2
patch 8.1.0300: the old window title might be freed twice
Christian Brabandt <cb@256bit.org>
parents:
14509
diff
changeset
|
2166 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
|
2167 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
|
2168 } |
7 | 2169 if (oldtitle == NULL |
2170 #ifdef FEAT_GUI | |
2171 && !gui.in_use | |
2172 #endif | |
2173 ) /* first call but not in GUI, save title */ | |
2174 (void)get_x11_title(FALSE); | |
2175 | |
2176 if (*T_TS != NUL) /* it's OK if t_fs is empty */ | |
2177 term_settitle(title); | |
2178 #ifdef FEAT_X11 | |
2179 else | |
2180 # ifdef FEAT_GUI_GTK | |
2181 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2182 # endif | |
2183 set_x11_title(title); /* x11 */ | |
2184 #endif | |
64 | 2185 #if defined(FEAT_GUI_GTK) \ |
7 | 2186 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) |
2187 else | |
2188 gui_mch_settitle(title, icon); | |
2189 #endif | |
2190 did_set_title = TRUE; | |
2191 } | |
2192 | |
2193 if ((type || *T_CIS != NUL) && icon != NULL) | |
2194 { | |
2195 if (oldicon == NULL | |
2196 #ifdef FEAT_GUI | |
2197 && !gui.in_use | |
2198 #endif | |
2199 ) /* first call, save icon */ | |
2200 get_x11_icon(FALSE); | |
2201 | |
2202 if (*T_CIS != NUL) | |
2203 { | |
2204 out_str(T_CIS); /* set icon start */ | |
2205 out_str_nf(icon); | |
2206 out_str(T_CIE); /* set icon end */ | |
2207 out_flush(); | |
2208 } | |
2209 #ifdef FEAT_X11 | |
2210 else | |
2211 # ifdef FEAT_GUI_GTK | |
2212 if (!gui.in_use) /* don't do this if GTK+ is running */ | |
2213 # endif | |
2214 set_x11_icon(icon); /* x11 */ | |
2215 #endif | |
2216 did_set_icon = TRUE; | |
2217 } | |
2218 --recursive; | |
2219 } | |
2220 | |
2221 /* | |
2222 * Restore the window/icon title. | |
2223 * "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
|
2224 * 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
|
2225 * 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
|
2226 * SAVE_RESTORE_BOTH restore title and icon |
7 | 2227 */ |
2228 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2229 mch_restore_title(int which) |
7 | 2230 { |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2231 int do_push_pop = did_set_title || did_set_icon; |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2232 |
7 | 2233 /* 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
|
2234 mch_settitle(((which & SAVE_RESTORE_TITLE) && did_set_title) ? |
7 | 2235 (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
|
2236 ((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
|
2237 |
16511
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2238 if (do_push_pop) |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2239 { |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2240 // pop and push from/to the stack |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2241 term_pop_title(which); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2242 term_push_title(which); |
4182f74e2965
patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents:
16489
diff
changeset
|
2243 } |
7 | 2244 } |
2245 | |
2246 #endif /* FEAT_TITLE */ | |
2247 | |
2248 /* | |
2249 * Return TRUE if "name" looks like some xterm name. | |
158 | 2250 * Seiichi Sato mentioned that "mlterm" works like xterm. |
7 | 2251 */ |
2252 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2253 vim_is_xterm(char_u *name) |
7 | 2254 { |
2255 if (name == NULL) | |
2256 return FALSE; | |
2257 return (STRNICMP(name, "xterm", 5) == 0 | |
2258 || STRNICMP(name, "nxterm", 6) == 0 | |
2259 || STRNICMP(name, "kterm", 5) == 0 | |
158 | 2260 || STRNICMP(name, "mlterm", 6) == 0 |
7 | 2261 || 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
|
2262 || STRNICMP(name, "screen.xterm", 12) == 0 |
7 | 2263 || STRCMP(name, "builtin_xterm") == 0); |
2264 } | |
2265 | |
1620 | 2266 #if defined(FEAT_MOUSE_XTERM) || defined(PROTO) |
2267 /* | |
2268 * Return TRUE if "name" appears to be that of a terminal | |
2269 * known to support the xterm-style mouse protocol. | |
2270 * Relies on term_is_xterm having been set to its correct value. | |
2271 */ | |
2272 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2273 use_xterm_like_mouse(char_u *name) |
1620 | 2274 { |
2275 return (name != NULL | |
9873
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2276 && (term_is_xterm |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2277 || STRNICMP(name, "screen", 6) == 0 |
10266
e86f23a078ca
commit https://github.com/vim/vim/commit/0ba407012c63064f03f1a5677677d4da423e5a73
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2278 || STRNICMP(name, "tmux", 4) == 0 |
9873
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2279 || STRICMP(name, "st") == 0 |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2280 || STRNICMP(name, "st-", 3) == 0 |
043b7a9579e6
commit https://github.com/vim/vim/commit/e56132bb4167f8b6ea4814cc2c99a71df3d07ff8
Christian Brabandt <cb@256bit.org>
parents:
9552
diff
changeset
|
2281 || STRNICMP(name, "stterm", 6) == 0)); |
1620 | 2282 } |
2283 #endif | |
2284 | |
7 | 2285 #if defined(FEAT_MOUSE_TTY) || defined(PROTO) |
2286 /* | |
2287 * Return non-zero when using an xterm mouse, according to 'ttymouse'. | |
2288 * Return 1 for "xterm". | |
2289 * Return 2 for "xterm2". | |
3145 | 2290 * Return 3 for "urxvt". |
3746 | 2291 * Return 4 for "sgr". |
7 | 2292 */ |
2293 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2294 use_xterm_mouse(void) |
7 | 2295 { |
3746 | 2296 if (ttym_flags == TTYM_SGR) |
2297 return 4; | |
3145 | 2298 if (ttym_flags == TTYM_URXVT) |
2299 return 3; | |
7 | 2300 if (ttym_flags == TTYM_XTERM2) |
2301 return 2; | |
2302 if (ttym_flags == TTYM_XTERM) | |
2303 return 1; | |
2304 return 0; | |
2305 } | |
2306 #endif | |
2307 | |
2308 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2309 vim_is_iris(char_u *name) |
7 | 2310 { |
2311 if (name == NULL) | |
2312 return FALSE; | |
2313 return (STRNICMP(name, "iris-ansi", 9) == 0 | |
2314 || STRCMP(name, "builtin_iris-ansi") == 0); | |
2315 } | |
2316 | |
2317 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2318 vim_is_vt300(char_u *name) |
7 | 2319 { |
2320 if (name == NULL) | |
2321 return FALSE; /* actually all ANSI comp. terminals should be here */ | |
22 | 2322 /* catch VT100 - VT5xx */ |
2323 return ((STRNICMP(name, "vt", 2) == 0 | |
2324 && vim_strchr((char_u *)"12345", name[2]) != NULL) | |
7 | 2325 || STRCMP(name, "builtin_vt320") == 0); |
2326 } | |
2327 | |
2328 /* | |
2329 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set. | |
2330 * This should include all windowed terminal emulators. | |
2331 */ | |
2332 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2333 vim_is_fastterm(char_u *name) |
7 | 2334 { |
2335 if (name == NULL) | |
2336 return FALSE; | |
2337 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name)) | |
2338 return TRUE; | |
2339 return ( STRNICMP(name, "hpterm", 6) == 0 | |
2340 || STRNICMP(name, "sun-cmd", 7) == 0 | |
2341 || STRNICMP(name, "screen", 6) == 0 | |
10266
e86f23a078ca
commit https://github.com/vim/vim/commit/0ba407012c63064f03f1a5677677d4da423e5a73
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2342 || STRNICMP(name, "tmux", 4) == 0 |
7 | 2343 || STRNICMP(name, "dtterm", 6) == 0); |
2344 } | |
2345 | |
2346 /* | |
2347 * Insert user name in s[len]. | |
2348 * Return OK if a name found. | |
2349 */ | |
2350 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2351 mch_get_user_name(char_u *s, int len) |
7 | 2352 { |
2353 #ifdef VMS | |
509 | 2354 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1); |
7 | 2355 return OK; |
2356 #else | |
2357 return mch_get_uname(getuid(), s, len); | |
2358 #endif | |
2359 } | |
2360 | |
2361 /* | |
2362 * Insert user name for "uid" in s[len]. | |
2363 * Return OK if a name found. | |
2364 */ | |
2365 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2366 mch_get_uname(uid_t uid, char_u *s, int len) |
7 | 2367 { |
2368 #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) | |
2369 struct passwd *pw; | |
2370 | |
2371 if ((pw = getpwuid(uid)) != NULL | |
2372 && pw->pw_name != NULL && *(pw->pw_name) != NUL) | |
2373 { | |
418 | 2374 vim_strncpy(s, (char_u *)pw->pw_name, len - 1); |
7 | 2375 return OK; |
2376 } | |
2377 #endif | |
2378 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */ | |
2379 return FAIL; /* a number is not a name */ | |
2380 } | |
2381 | |
2382 /* | |
2383 * Insert host name is s[len]. | |
2384 */ | |
2385 | |
2386 #ifdef HAVE_SYS_UTSNAME_H | |
2387 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2388 mch_get_host_name(char_u *s, int len) |
7 | 2389 { |
2390 struct utsname vutsname; | |
2391 | |
2392 if (uname(&vutsname) < 0) | |
2393 *s = NUL; | |
2394 else | |
418 | 2395 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1); |
7 | 2396 } |
2397 #else /* HAVE_SYS_UTSNAME_H */ | |
2398 | |
2399 # ifdef HAVE_SYS_SYSTEMINFO_H | |
2400 # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len) | |
2401 # endif | |
2402 | |
2403 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2404 mch_get_host_name(char_u *s, int len) |
7 | 2405 { |
2406 # ifdef VAXC | |
2407 vaxc$gethostname((char *)s, len); | |
2408 # else | |
2409 gethostname((char *)s, len); | |
2410 # endif | |
2411 s[len - 1] = NUL; /* make sure it's terminated */ | |
2412 } | |
2413 #endif /* HAVE_SYS_UTSNAME_H */ | |
2414 | |
2415 /* | |
2416 * return process ID | |
2417 */ | |
2418 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2419 mch_get_pid(void) |
7 | 2420 { |
2421 return (long)getpid(); | |
2422 } | |
2423 | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2424 /* |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2425 * return TRUE if process "pid" is still running |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2426 */ |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2427 int |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2428 mch_process_running(long pid) |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2429 { |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2430 // EMX kill() not working correctly, it seems |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2431 return kill(pid, 0) == 0; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2432 } |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16227
diff
changeset
|
2433 |
7 | 2434 #if !defined(HAVE_STRERROR) && defined(USE_GETCWD) |
2435 static char * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2436 strerror(int err) |
7 | 2437 { |
2438 extern int sys_nerr; | |
2439 extern char *sys_errlist[]; | |
2440 static char er[20]; | |
2441 | |
2442 if (err > 0 && err < sys_nerr) | |
2443 return (sys_errlist[err]); | |
2444 sprintf(er, "Error %d", err); | |
2445 return er; | |
2446 } | |
2447 #endif | |
2448 | |
2449 /* | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16608
diff
changeset
|
2450 * Get name of current directory into buffer "buf" of length "len" bytes. |
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16608
diff
changeset
|
2451 * "len" must be at least PATH_MAX. |
7 | 2452 * Return OK for success, FAIL for failure. |
2453 */ | |
2454 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2455 mch_dirname(char_u *buf, int len) |
7 | 2456 { |
2457 #if defined(USE_GETCWD) | |
2458 if (getcwd((char *)buf, len) == NULL) | |
2459 { | |
2460 STRCPY(buf, strerror(errno)); | |
2461 return FAIL; | |
2462 } | |
2463 return OK; | |
2464 #else | |
2465 return (getwd((char *)buf) != NULL ? OK : FAIL); | |
2466 #endif | |
2467 } | |
2468 | |
2469 /* | |
1045 | 2470 * Get absolute file name into "buf[len]". |
7 | 2471 * |
2472 * return FAIL for failure, OK for success | |
2473 */ | |
2474 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2475 mch_FullName( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2476 char_u *fname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2477 char_u *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2478 int len, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2479 int force) /* also expand when already absolute path */ |
7 | 2480 { |
2481 int l; | |
1082 | 2482 #ifdef HAVE_FCHDIR |
7 | 2483 int fd = -1; |
2484 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */ | |
1082 | 2485 #endif |
7 | 2486 char_u olddir[MAXPATHL]; |
2487 char_u *p; | |
2488 int retval = OK; | |
1615 | 2489 #ifdef __CYGWIN__ |
1620 | 2490 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but |
2491 it's not always defined */ | |
2492 #endif | |
7 | 2493 |
1082 | 2494 #ifdef VMS |
2495 fname = vms_fixfilename(fname); | |
2496 #endif | |
2497 | |
1102 | 2498 #ifdef __CYGWIN__ |
2499 /* | |
2500 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts". | |
2501 */ | |
1657 | 2502 # 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
|
2503 /* 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
|
2504 * a forward slash. */ |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2505 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
|
2506 fname, posix_fname, MAXPATHL); |
1657 | 2507 # else |
1615 | 2508 cygwin_conv_to_posix_path(fname, posix_fname); |
1657 | 2509 # endif |
1615 | 2510 fname = posix_fname; |
1102 | 2511 #endif |
2512 | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2513 /* 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
|
2514 * 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
|
2515 if ((force || !mch_isFullName(fname)) |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2516 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname)) |
7 | 2517 { |
2518 /* | |
2519 * If the file name has a path, change to that directory for a moment, | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16608
diff
changeset
|
2520 * and then get the directory (and get back to where we were). |
7 | 2521 * This will get the correct path name with "../" things. |
2522 */ | |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2523 if (p != NULL) |
7 | 2524 { |
1082 | 2525 #ifdef HAVE_FCHDIR |
7 | 2526 /* |
2527 * Use fchdir() if possible, it's said to be faster and more | |
2528 * reliable. But on SunOS 4 it might not work. Check this by | |
2529 * doing a fchdir() right now. | |
2530 */ | |
2531 if (!dont_fchdir) | |
2532 { | |
2533 fd = open(".", O_RDONLY | O_EXTRA, 0); | |
2534 if (fd >= 0 && fchdir(fd) < 0) | |
2535 { | |
2536 close(fd); | |
2537 fd = -1; | |
2538 dont_fchdir = TRUE; /* don't try again */ | |
2539 } | |
2540 } | |
1082 | 2541 #endif |
7 | 2542 |
2543 /* Only change directory when we are sure we can return to where | |
2544 * we are now. After doing "su" chdir(".") might not work. */ | |
2545 if ( | |
1082 | 2546 #ifdef HAVE_FCHDIR |
7 | 2547 fd < 0 && |
1082 | 2548 #endif |
7 | 2549 (mch_dirname(olddir, MAXPATHL) == FAIL |
2550 || mch_chdir((char *)olddir) != 0)) | |
2551 { | |
2552 p = NULL; /* can't get current dir: don't chdir */ | |
2553 retval = FAIL; | |
2554 } | |
2555 else | |
2556 { | |
2557 /* The directory is copied into buf[], to be able to remove | |
2558 * the file name without changing it (could be a string in | |
2559 * read-only memory) */ | |
2560 if (p - fname >= len) | |
2561 retval = FAIL; | |
2562 else | |
2563 { | |
418 | 2564 vim_strncpy(buf, fname, p - fname); |
7 | 2565 if (mch_chdir((char *)buf)) |
2566 retval = FAIL; | |
2567 else | |
2568 fname = p + 1; | |
2569 *buf = NUL; | |
2570 } | |
2571 } | |
2572 } | |
2573 if (mch_dirname(buf, len) == FAIL) | |
2574 { | |
2575 retval = FAIL; | |
2576 *buf = NUL; | |
2577 } | |
2578 if (p != NULL) | |
2579 { | |
1082 | 2580 #ifdef HAVE_FCHDIR |
7 | 2581 if (fd >= 0) |
2582 { | |
1935 | 2583 if (p_verbose >= 5) |
2584 { | |
2585 verbose_enter(); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2586 msg("fchdir() to previous dir"); |
1935 | 2587 verbose_leave(); |
2588 } | |
7 | 2589 l = fchdir(fd); |
2590 close(fd); | |
2591 } | |
2592 else | |
1082 | 2593 #endif |
7 | 2594 l = mch_chdir((char *)olddir); |
2595 if (l != 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
2596 emsg(_(e_prev_dir)); |
7 | 2597 } |
2598 | |
2599 l = STRLEN(buf); | |
3867 | 2600 if (l >= len - 1) |
2601 retval = FAIL; /* no space for trailing "/" */ | |
1082 | 2602 #ifndef VMS |
3867 | 2603 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL |
7 | 2604 && STRCMP(fname, ".") != 0) |
3867 | 2605 STRCAT(buf, "/"); |
1082 | 2606 #endif |
7 | 2607 } |
1045 | 2608 |
7 | 2609 /* Catch file names which are too long. */ |
1877 | 2610 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len) |
7 | 2611 return FAIL; |
2612 | |
2613 /* Do not append ".", "/dir/." is equal to "/dir". */ | |
2614 if (STRCMP(fname, ".") != 0) | |
2615 STRCAT(buf, fname); | |
2616 | |
2617 return OK; | |
2618 } | |
2619 | |
2620 /* | |
2621 * Return TRUE if "fname" does not depend on the current directory. | |
2622 */ | |
2623 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2624 mch_isFullName(char_u *fname) |
7 | 2625 { |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
2626 #ifdef VMS |
7 | 2627 return ( fname[0] == '/' || fname[0] == '.' || |
2628 strchr((char *)fname,':') || strchr((char *)fname,'"') || | |
2629 (strchr((char *)fname,'[') && strchr((char *)fname,']'))|| | |
2630 (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
|
2631 #else |
7 | 2632 return (*fname == '/' || *fname == '~'); |
2633 #endif | |
2634 } | |
2635 | |
585 | 2636 #if defined(USE_FNAME_CASE) || defined(PROTO) |
2637 /* | |
2638 * Set the case of the file name, if it already exists. This will cause the | |
2639 * file name to remain exactly the same. | |
1450 | 2640 * Only required for file systems where case is ignored and preserved. |
585 | 2641 */ |
2642 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2643 fname_case( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2644 char_u *name, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2645 int len UNUSED) /* buffer size, only used when name gets longer */ |
585 | 2646 { |
2647 struct stat st; | |
2648 char_u *slash, *tail; | |
2649 DIR *dirp; | |
2650 struct dirent *dp; | |
2651 | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
2652 if (mch_lstat((char *)name, &st) >= 0) |
585 | 2653 { |
2654 /* Open the directory where the file is located. */ | |
2655 slash = vim_strrchr(name, '/'); | |
2656 if (slash == NULL) | |
2657 { | |
2658 dirp = opendir("."); | |
2659 tail = name; | |
2660 } | |
2661 else | |
2662 { | |
2663 *slash = NUL; | |
2664 dirp = opendir((char *)name); | |
2665 *slash = '/'; | |
2666 tail = slash + 1; | |
2667 } | |
2668 | |
2669 if (dirp != NULL) | |
2670 { | |
2671 while ((dp = readdir(dirp)) != NULL) | |
2672 { | |
2673 /* Only accept names that differ in case and are the same byte | |
2674 * length. TODO: accept different length name. */ | |
2675 if (STRICMP(tail, dp->d_name) == 0 | |
2676 && STRLEN(tail) == STRLEN(dp->d_name)) | |
2677 { | |
2678 char_u newname[MAXPATHL + 1]; | |
2679 struct stat st2; | |
2680 | |
2681 /* Verify the inode is equal. */ | |
2682 vim_strncpy(newname, name, MAXPATHL); | |
2683 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name, | |
2684 MAXPATHL - (tail - name)); | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
2685 if (mch_lstat((char *)newname, &st2) >= 0 |
585 | 2686 && st.st_ino == st2.st_ino |
2687 && st.st_dev == st2.st_dev) | |
2688 { | |
2689 STRCPY(tail, dp->d_name); | |
2690 break; | |
2691 } | |
2692 } | |
2693 } | |
2694 | |
2695 closedir(dirp); | |
2696 } | |
2697 } | |
2698 } | |
2699 #endif | |
2700 | |
7 | 2701 /* |
2702 * Get file permissions for 'name'. | |
2703 * Returns -1 when it doesn't exist. | |
2704 */ | |
2705 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2706 mch_getperm(char_u *name) |
7 | 2707 { |
2708 struct stat statb; | |
2709 | |
2710 /* Keep the #ifdef outside of stat(), it may be a macro. */ | |
2711 #ifdef VMS | |
2712 if (stat((char *)vms_fixfilename(name), &statb)) | |
2713 #else | |
2714 if (stat((char *)name, &statb)) | |
2715 #endif | |
2716 return -1; | |
1350 | 2717 #ifdef __INTERIX |
2718 /* The top bit makes the value negative, which means the file doesn't | |
2719 * exist. Remove the bit, we don't use it. */ | |
2720 return statb.st_mode & ~S_ADDACE; | |
2721 #else | |
7 | 2722 return statb.st_mode; |
1350 | 2723 #endif |
7 | 2724 } |
2725 | |
2726 /* | |
12847
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2727 * 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
|
2728 * Return FAIL for failure, OK otherwise. |
7 | 2729 */ |
2730 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2731 mch_setperm(char_u *name, long perm) |
7 | 2732 { |
2733 return (chmod((char *) | |
2734 #ifdef VMS | |
2735 vms_fixfilename(name), | |
2736 #else | |
2737 name, | |
2738 #endif | |
2739 (mode_t)perm) == 0 ? OK : FAIL); | |
2740 } | |
2741 | |
12847
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2742 #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
|
2743 /* |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2744 * 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
|
2745 * 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
|
2746 */ |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2747 int |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2748 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
|
2749 { |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2750 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
|
2751 } |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2752 #endif |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2753 |
7 | 2754 #if defined(HAVE_ACL) || defined(PROTO) |
2755 # ifdef HAVE_SYS_ACL_H | |
2756 # include <sys/acl.h> | |
2757 # endif | |
2758 # ifdef HAVE_SYS_ACCESS_H | |
2759 # include <sys/access.h> | |
2760 # endif | |
2761 | |
2762 # ifdef HAVE_SOLARIS_ACL | |
2763 typedef struct vim_acl_solaris_T { | |
2764 int acl_cnt; | |
2765 aclent_t *acl_entry; | |
2766 } vim_acl_solaris_T; | |
2767 # endif | |
2768 | |
1583 | 2769 #if defined(HAVE_SELINUX) || defined(PROTO) |
2770 /* | |
2771 * Copy security info from "from_file" to "to_file". | |
2772 */ | |
2773 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2774 mch_copy_sec(char_u *from_file, char_u *to_file) |
1583 | 2775 { |
2776 if (from_file == NULL) | |
2777 return; | |
2778 | |
2779 if (selinux_enabled == -1) | |
2780 selinux_enabled = is_selinux_enabled(); | |
2781 | |
2782 if (selinux_enabled > 0) | |
2783 { | |
2784 security_context_t from_context = NULL; | |
2785 security_context_t to_context = NULL; | |
2786 | |
2787 if (getfilecon((char *)from_file, &from_context) < 0) | |
2788 { | |
2789 /* If the filesystem doesn't support extended attributes, | |
2790 the original had no special security context and the | |
2791 target cannot have one either. */ | |
2792 if (errno == EOPNOTSUPP) | |
2793 return; | |
2794 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2795 msg_puts(_("\nCould not get security context for ")); |
1583 | 2796 msg_outtrans(from_file); |
2797 msg_putchar('\n'); | |
2798 return; | |
2799 } | |
2800 if (getfilecon((char *)to_file, &to_context) < 0) | |
2801 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2802 msg_puts(_("\nCould not get security context for ")); |
1583 | 2803 msg_outtrans(to_file); |
2804 msg_putchar('\n'); | |
2805 freecon (from_context); | |
2806 return ; | |
2807 } | |
2808 if (strcmp(from_context, to_context) != 0) | |
2809 { | |
2810 if (setfilecon((char *)to_file, from_context) < 0) | |
2811 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2812 msg_puts(_("\nCould not set security context for ")); |
1583 | 2813 msg_outtrans(to_file); |
2814 msg_putchar('\n'); | |
2815 } | |
2816 } | |
2817 freecon(to_context); | |
2818 freecon(from_context); | |
2819 } | |
2820 } | |
2821 #endif /* HAVE_SELINUX */ | |
2822 | |
5788 | 2823 #if defined(HAVE_SMACK) && !defined(PROTO) |
2824 /* | |
2825 * Copy security info from "from_file" to "to_file". | |
2826 */ | |
2827 void | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2828 mch_copy_sec(char_u *from_file, char_u *to_file) |
5788 | 2829 { |
5832 | 2830 static const char * const smack_copied_attributes[] = |
5788 | 2831 { |
2832 XATTR_NAME_SMACK, | |
2833 XATTR_NAME_SMACKEXEC, | |
2834 XATTR_NAME_SMACKMMAP | |
2835 }; | |
2836 | |
2837 char buffer[SMACK_LABEL_LEN]; | |
2838 const char *name; | |
2839 int index; | |
2840 int ret; | |
2841 ssize_t size; | |
2842 | |
2843 if (from_file == NULL) | |
2844 return; | |
2845 | |
2846 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes) | |
2847 / sizeof(smack_copied_attributes)[0]) ; index++) | |
2848 { | |
2849 /* get the name of the attribute to copy */ | |
2850 name = smack_copied_attributes[index]; | |
2851 | |
2852 /* get the value of the attribute in buffer */ | |
2853 size = getxattr((char*)from_file, name, buffer, sizeof(buffer)); | |
2854 if (size >= 0) | |
2855 { | |
2856 /* copy the attribute value of buffer */ | |
2857 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0); | |
2858 if (ret < 0) | |
2859 { | |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2860 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2861 _("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
|
2862 name, to_file); |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2863 msg_outtrans(IObuff); |
5788 | 2864 msg_putchar('\n'); |
2865 } | |
2866 } | |
2867 else | |
2868 { | |
2869 /* what reason of not having the attribute value? */ | |
2870 switch (errno) | |
2871 { | |
2872 case ENOTSUP: | |
2873 /* extended attributes aren't supported or enabled */ | |
2874 /* 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
|
2875 return; /* leave because it isn't useful to continue */ |
5788 | 2876 |
2877 case ERANGE: | |
2878 default: | |
2879 /* 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
|
2880 vim_snprintf((char *)IObuff, IOSIZE, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2881 _("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
|
2882 name, from_file); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
2883 msg_puts((char *)IObuff); |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2884 msg_putchar('\n'); |
5788 | 2885 /* FALLTHROUGH to remove the attribute */ |
2886 | |
2887 case ENODATA: | |
2888 /* no attribute of this name */ | |
2889 ret = removexattr((char*)to_file, name); | |
5800 | 2890 /* Silently ignore errors, apparently this happens when |
2891 * smack is not actually being used. */ | |
5788 | 2892 break; |
2893 } | |
2894 } | |
2895 } | |
2896 } | |
2897 #endif /* HAVE_SMACK */ | |
2898 | |
7 | 2899 /* |
2900 * Return a pointer to the ACL of file "fname" in allocated memory. | |
2901 * Return NULL if the ACL is not available for whatever reason. | |
2902 */ | |
2903 vim_acl_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2904 mch_get_acl(char_u *fname UNUSED) |
7 | 2905 { |
2906 vim_acl_T ret = NULL; | |
2907 #ifdef HAVE_POSIX_ACL | |
2908 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS); | |
2909 #else | |
3330 | 2910 #ifdef HAVE_SOLARIS_ZFS_ACL |
2911 acl_t *aclent; | |
2912 | |
2913 if (acl_get((char *)fname, 0, &aclent) < 0) | |
2914 return NULL; | |
2915 ret = (vim_acl_T)aclent; | |
2916 #else | |
7 | 2917 #ifdef HAVE_SOLARIS_ACL |
2918 vim_acl_solaris_T *aclent; | |
2919 | |
2920 aclent = malloc(sizeof(vim_acl_solaris_T)); | |
2921 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0) | |
2922 { | |
2923 free(aclent); | |
2924 return NULL; | |
2925 } | |
2926 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t)); | |
2927 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0) | |
2928 { | |
2929 free(aclent->acl_entry); | |
2930 free(aclent); | |
2931 return NULL; | |
2932 } | |
2933 ret = (vim_acl_T)aclent; | |
2934 #else | |
2935 #if defined(HAVE_AIX_ACL) | |
2936 int aclsize; | |
2937 struct acl *aclent; | |
2938 | |
2939 aclsize = sizeof(struct acl); | |
2940 aclent = malloc(aclsize); | |
2941 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2942 { | |
2943 if (errno == ENOSPC) | |
2944 { | |
2945 aclsize = aclent->acl_len; | |
2946 aclent = realloc(aclent, aclsize); | |
2947 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) | |
2948 { | |
2949 free(aclent); | |
2950 return NULL; | |
2951 } | |
2952 } | |
2953 else | |
2954 { | |
2955 free(aclent); | |
2956 return NULL; | |
2957 } | |
2958 } | |
2959 ret = (vim_acl_T)aclent; | |
2960 #endif /* HAVE_AIX_ACL */ | |
2961 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2962 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2963 #endif /* HAVE_POSIX_ACL */ |
2964 return ret; | |
2965 } | |
2966 | |
2967 /* | |
2968 * Set the ACL of file "fname" to "acl" (unless it's NULL). | |
2969 */ | |
2970 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2971 mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent) |
7 | 2972 { |
2973 if (aclent == NULL) | |
2974 return; | |
2975 #ifdef HAVE_POSIX_ACL | |
2976 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent); | |
2977 #else | |
3330 | 2978 #ifdef HAVE_SOLARIS_ZFS_ACL |
2979 acl_set((char *)fname, (acl_t *)aclent); | |
2980 #else | |
7 | 2981 #ifdef HAVE_SOLARIS_ACL |
2982 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt, | |
2983 ((vim_acl_solaris_T *)aclent)->acl_entry); | |
2984 #else | |
2985 #ifdef HAVE_AIX_ACL | |
2986 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len); | |
2987 #endif /* HAVE_AIX_ACL */ | |
2988 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 2989 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 2990 #endif /* HAVE_POSIX_ACL */ |
2991 } | |
2992 | |
2993 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2994 mch_free_acl(vim_acl_T aclent) |
7 | 2995 { |
2996 if (aclent == NULL) | |
2997 return; | |
2998 #ifdef HAVE_POSIX_ACL | |
2999 acl_free((acl_t)aclent); | |
3000 #else | |
3330 | 3001 #ifdef HAVE_SOLARIS_ZFS_ACL |
3002 acl_free((acl_t *)aclent); | |
3003 #else | |
7 | 3004 #ifdef HAVE_SOLARIS_ACL |
3005 free(((vim_acl_solaris_T *)aclent)->acl_entry); | |
3006 free(aclent); | |
3007 #else | |
3008 #ifdef HAVE_AIX_ACL | |
3009 free(aclent); | |
3010 #endif /* HAVE_AIX_ACL */ | |
3011 #endif /* HAVE_SOLARIS_ACL */ | |
3330 | 3012 #endif /* HAVE_SOLARIS_ZFS_ACL */ |
7 | 3013 #endif /* HAVE_POSIX_ACL */ |
3014 } | |
3015 #endif | |
3016 | |
3017 /* | |
3018 * Set hidden flag for "name". | |
3019 */ | |
3020 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3021 mch_hide(char_u *name UNUSED) |
7 | 3022 { |
3023 /* can't hide a file */ | |
3024 } | |
3025 | |
3026 /* | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3027 * return TRUE if "name" is a directory or a symlink to a directory |
7 | 3028 * return FALSE if "name" is not a directory |
3029 * return FALSE for error | |
3030 */ | |
3031 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3032 mch_isdir(char_u *name) |
7 | 3033 { |
3034 struct stat statb; | |
3035 | |
3036 if (*name == NUL) /* Some stat()s don't flag "" as an error. */ | |
3037 return FALSE; | |
3038 if (stat((char *)name, &statb)) | |
3039 return FALSE; | |
3040 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); | |
3041 } | |
3042 | |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3043 /* |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3044 * 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
|
3045 * 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
|
3046 * return FALSE for error |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3047 */ |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3048 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3049 mch_isrealdir(char_u *name) |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3050 { |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3051 struct stat statb; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3052 |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3053 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
|
3054 return FALSE; |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
10320
diff
changeset
|
3055 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
|
3056 return FALSE; |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3057 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
|
3058 } |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3059 |
7 | 3060 /* |
3061 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist. | |
3062 */ | |
3063 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3064 executable_file(char_u *name) |
7 | 3065 { |
3066 struct stat st; | |
3067 | |
3068 if (stat((char *)name, &st)) | |
3069 return 0; | |
5704 | 3070 #ifdef VMS |
3071 /* Like on Unix system file can have executable rights but not necessarily | |
3072 * be an executable, but on Unix is not a default for an ordianry file to | |
3073 * have an executable flag - on VMS it is in most cases. | |
3074 * Therefore, this check does not have any sense - let keep us to the | |
3075 * conventions instead: | |
3076 * *.COM and *.EXE files are the executables - the rest are not. This is | |
3077 * not ideal but better then it was. | |
3078 */ | |
3079 int vms_executable = 0; | |
3080 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0) | |
3081 { | |
3082 if (strstr(vms_tolower((char*)name),".exe") != NULL | |
3083 || strstr(vms_tolower((char*)name),".com")!= NULL) | |
3084 vms_executable = 1; | |
3085 } | |
3086 return vms_executable; | |
3087 #else | |
7 | 3088 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0; |
5704 | 3089 #endif |
7 | 3090 } |
3091 | |
3092 /* | |
11115
3b36da20ad73
patch 8.0.0445: getpgid is not supported on all systems
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
3093 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not. |
6695 | 3094 * If "use_path" is FALSE only check if "name" is executable. |
7 | 3095 * Return -1 if unknown. |
3096 */ | |
3097 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3098 mch_can_exe(char_u *name, char_u **path, int use_path) |
7 | 3099 { |
3100 char_u *buf; | |
3101 char_u *p, *e; | |
3102 int retval; | |
3103 | |
6695 | 3104 /* When "use_path" is false and if it's an absolute or relative path don't |
3105 * need to use $PATH. */ | |
3106 if (!use_path || mch_isFullName(name) || (name[0] == '.' | |
3107 && (name[1] == '/' || (name[1] == '.' && name[2] == '/')))) | |
5704 | 3108 { |
6695 | 3109 /* There must be a path separator, files in the current directory |
3110 * can't be executed. */ | |
3111 if (gettail(name) != name && executable_file(name)) | |
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 (name[0] != '/') |
5782 | 3116 *path = FullName_save(name, TRUE); |
3117 else | |
3118 *path = vim_strsave(name); | |
3119 } | |
3120 return TRUE; | |
3121 } | |
3122 return FALSE; | |
5704 | 3123 } |
7 | 3124 |
3125 p = (char_u *)getenv("PATH"); | |
3126 if (p == NULL || *p == NUL) | |
3127 return -1; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16608
diff
changeset
|
3128 buf = alloc(STRLEN(name) + STRLEN(p) + 2); |
7 | 3129 if (buf == NULL) |
3130 return -1; | |
3131 | |
3132 /* | |
3133 * Walk through all entries in $PATH to check if "name" exists there and | |
3134 * is an executable file. | |
3135 */ | |
3136 for (;;) | |
3137 { | |
3138 e = (char_u *)strchr((char *)p, ':'); | |
3139 if (e == NULL) | |
3140 e = p + STRLEN(p); | |
3141 if (e - p <= 1) /* empty entry means current dir */ | |
3142 STRCPY(buf, "./"); | |
3143 else | |
3144 { | |
418 | 3145 vim_strncpy(buf, p, e - p); |
7 | 3146 add_pathsep(buf); |
3147 } | |
3148 STRCAT(buf, name); | |
3149 retval = executable_file(buf); | |
3150 if (retval == 1) | |
5782 | 3151 { |
3152 if (path != NULL) | |
3153 { | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3154 if (buf[0] != '/') |
5782 | 3155 *path = FullName_save(buf, TRUE); |
3156 else | |
3157 *path = vim_strsave(buf); | |
3158 } | |
7 | 3159 break; |
5782 | 3160 } |
7 | 3161 |
3162 if (*e != ':') | |
3163 break; | |
3164 p = e + 1; | |
3165 } | |
3166 | |
3167 vim_free(buf); | |
3168 return retval; | |
3169 } | |
3170 | |
3171 /* | |
3172 * Check what "name" is: | |
3173 * NODE_NORMAL: file or directory (or doesn't exist) | |
3174 * NODE_WRITABLE: writable device, socket, fifo, etc. | |
3175 * NODE_OTHER: non-writable things | |
3176 */ | |
3177 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3178 mch_nodetype(char_u *name) |
7 | 3179 { |
3180 struct stat st; | |
3181 | |
3182 if (stat((char *)name, &st)) | |
3183 return NODE_NORMAL; | |
3184 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)) | |
3185 return NODE_NORMAL; | |
3186 if (S_ISBLK(st.st_mode)) /* block device isn't writable */ | |
3187 return NODE_OTHER; | |
3188 /* Everything else is writable? */ | |
3189 return NODE_WRITABLE; | |
3190 } | |
3191 | |
3192 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3193 mch_early_init(void) |
7 | 3194 { |
3195 #ifdef HAVE_CHECK_STACK_GROWTH | |
3196 int i; | |
180 | 3197 |
7 | 3198 check_stack_growth((char *)&i); |
3199 | |
180 | 3200 # ifdef HAVE_STACK_LIMIT |
7 | 3201 get_stack_limit(); |
3202 # endif | |
3203 | |
3204 #endif | |
3205 | |
3206 /* | |
3207 * Setup an alternative stack for signals. Helps to catch signals when | |
3208 * running out of stack space. | |
3209 * Use of sigaltstack() is preferred, it's more portable. | |
3210 * Ignore any errors. | |
3211 */ | |
3212 #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) | |
1737 | 3213 signal_stack = (char *)alloc(SIGSTKSZ); |
7 | 3214 init_signal_stack(); |
3215 #endif | |
3216 } | |
3217 | |
355 | 3218 #if defined(EXITFREE) || defined(PROTO) |
3219 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3220 mch_free_mem(void) |
355 | 3221 { |
359 | 3222 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
3223 if (clip_star.owned) | |
3224 clip_lose_selection(&clip_star); | |
3225 if (clip_plus.owned) | |
3226 clip_lose_selection(&clip_plus); | |
355 | 3227 # endif |
1605 | 3228 # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
355 | 3229 if (xterm_Shell != (Widget)0) |
3230 XtDestroyWidget(xterm_Shell); | |
1605 | 3231 # ifndef LESSTIF_VERSION |
3232 /* Lesstif crashes here, lose some memory */ | |
355 | 3233 if (xterm_dpy != NULL) |
3234 XtCloseDisplay(xterm_dpy); | |
3235 if (app_context != (XtAppContext)NULL) | |
1605 | 3236 { |
355 | 3237 XtDestroyApplicationContext(app_context); |
1605 | 3238 # ifdef FEAT_X11 |
3239 x11_display = NULL; /* freed by XtDestroyApplicationContext() */ | |
3240 # endif | |
3241 } | |
3242 # endif | |
355 | 3243 # endif |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
3244 # if defined(FEAT_X11) |
1605 | 3245 if (x11_display != NULL |
3246 # ifdef FEAT_XCLIPBOARD | |
3247 && x11_display != xterm_dpy | |
3248 # endif | |
3249 ) | |
359 | 3250 XCloseDisplay(x11_display); |
3251 # endif | |
3252 # 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
|
3253 VIM_CLEAR(signal_stack); |
359 | 3254 # endif |
3255 # ifdef FEAT_TITLE | |
3256 vim_free(oldtitle); | |
3257 vim_free(oldicon); | |
3258 # endif | |
355 | 3259 } |
3260 #endif | |
3261 | |
7 | 3262 /* |
3263 * Output a newline when exiting. | |
3264 * Make sure the newline goes to the same stream as the text. | |
3265 */ | |
3266 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3267 exit_scroll(void) |
7 | 3268 { |
167 | 3269 if (silent_mode) |
3270 return; | |
7 | 3271 if (newline_on_exit || msg_didout) |
3272 { | |
3273 if (msg_use_printf()) | |
3274 { | |
3275 if (info_message) | |
3276 mch_msg("\n"); | |
3277 else | |
3278 mch_errmsg("\r\n"); | |
3279 } | |
3280 else | |
3281 out_char('\n'); | |
3282 } | |
3283 else | |
3284 { | |
3285 restore_cterm_colors(); /* get original colors back */ | |
3286 msg_clr_eos_force(); /* clear the rest of the display */ | |
3287 windgoto((int)Rows - 1, 0); /* may have moved the cursor */ | |
3288 } | |
3289 } | |
3290 | |
3291 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3292 mch_exit(int r) |
7 | 3293 { |
3294 exiting = TRUE; | |
3295 | |
3296 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD) | |
3297 x11_export_final_selection(); | |
3298 #endif | |
3299 | |
3300 #ifdef FEAT_GUI | |
3301 if (!gui.in_use) | |
3302 #endif | |
3303 { | |
3304 settmode(TMODE_COOK); | |
3305 #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
|
3306 // 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
|
3307 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
|
3308 term_pop_title(SAVE_RESTORE_BOTH); |
7 | 3309 #endif |
3310 /* | |
3311 * When t_ti is not empty but it doesn't cause swapping terminal | |
3312 * pages, need to output a newline when msg_didout is set. But when | |
3313 * t_ti does swap pages it should not go to the shell page. Do this | |
3314 * before stoptermcap(). | |
3315 */ | |
3316 if (swapping_screen() && !newline_on_exit) | |
3317 exit_scroll(); | |
3318 | |
3319 /* Stop termcap: May need to check for T_CRV response, which | |
3320 * requires RAW mode. */ | |
3321 stoptermcap(); | |
3322 | |
3323 /* | |
3324 * A newline is only required after a message in the alternate screen. | |
3325 * This is set to TRUE by wait_return(). | |
3326 */ | |
3327 if (!swapping_screen() || newline_on_exit) | |
3328 exit_scroll(); | |
3329 | |
3330 /* Cursor may have been switched off without calling starttermcap() | |
3331 * when doing "vim -u vimrc" and vimrc contains ":q". */ | |
3332 if (full_screen) | |
3333 cursor_on(); | |
3334 } | |
3335 out_flush(); | |
3336 ml_close_all(TRUE); /* remove all memfiles */ | |
3337 may_core_dump(); | |
3338 #ifdef FEAT_GUI | |
3339 if (gui.in_use) | |
3340 gui_exit(r); | |
3341 #endif | |
167 | 3342 |
765 | 3343 #ifdef MACOS_CONVERT |
167 | 3344 mac_conv_cleanup(); |
3345 #endif | |
3346 | |
7 | 3347 #ifdef __QNX__ |
3348 /* A core dump won't be created if the signal handler | |
3349 * doesn't return, so we can't call exit() */ | |
3350 if (deadly_signal != 0) | |
3351 return; | |
3352 #endif | |
3353 | |
33 | 3354 #ifdef FEAT_NETBEANS_INTG |
2210 | 3355 netbeans_send_disconnect(); |
33 | 3356 #endif |
355 | 3357 |
3358 #ifdef EXITFREE | |
3359 free_all_mem(); | |
3360 #endif | |
3361 | |
7 | 3362 exit(r); |
3363 } | |
3364 | |
3365 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3366 may_core_dump(void) |
7 | 3367 { |
3368 if (deadly_signal != 0) | |
3369 { | |
3370 signal(deadly_signal, SIG_DFL); | |
3371 kill(getpid(), deadly_signal); /* Die using the signal we caught */ | |
3372 } | |
3373 } | |
3374 | |
3375 #ifndef VMS | |
3376 | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3377 /* |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3378 * 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
|
3379 */ |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3380 static int |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3381 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
|
3382 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3383 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
|
3384 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3385 #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
|
3386 // 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
|
3387 // "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
|
3388 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
|
3389 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3390 char *name; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3391 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3392 name = ptsname(fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3393 if (name == NULL) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3394 return -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3395 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3396 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
|
3397 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
|
3398 return -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3399 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3400 #endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3401 return tty_fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3402 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3403 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3404 static int |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3405 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
|
3406 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3407 int tty_fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3408 int retval = -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3409 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3410 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
|
3411 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
|
3412 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3413 #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
|
3414 # 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
|
3415 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
|
3416 # else |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3417 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
|
3418 # endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3419 #else |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3420 // 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
|
3421 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
|
3422 #endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3423 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
|
3424 close(tty_fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3425 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3426 return retval; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3427 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3428 |
7 | 3429 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3430 mch_settmode(int tmode) |
7 | 3431 { |
3432 static int first = TRUE; | |
3433 | |
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
|
3434 #ifdef NEW_TTY_SYSTEM |
7 | 3435 # ifdef HAVE_TERMIOS_H |
3436 static struct termios told; | |
3437 struct termios tnew; | |
3438 # else | |
3439 static struct termio told; | |
3440 struct termio tnew; | |
3441 # endif | |
3442 | |
3443 if (first) | |
3444 { | |
3445 first = FALSE; | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3446 mch_tcgetattr(read_cmd_fd, &told); |
7 | 3447 } |
3448 | |
3449 tnew = told; | |
3450 if (tmode == TMODE_RAW) | |
3451 { | |
3452 /* | |
3453 * ~ICRNL enables typing ^V^M | |
3454 */ | |
3455 tnew.c_iflag &= ~ICRNL; | |
3456 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE | |
3457 # if defined(IEXTEN) && !defined(__MINT__) | |
3458 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */ | |
3459 /* but it breaks function keys on MINT */ | |
3460 # endif | |
3461 ); | |
3462 # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */ | |
3463 tnew.c_oflag &= ~ONLCR; | |
3464 # endif | |
3465 tnew.c_cc[VMIN] = 1; /* return after 1 char */ | |
3466 tnew.c_cc[VTIME] = 0; /* don't wait */ | |
3467 } | |
3468 else if (tmode == TMODE_SLEEP) | |
9381
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3469 { |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3470 /* 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
|
3471 * typeahead characters. */ |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3472 tnew.c_lflag &= ~(ICANON | ECHO); |
c665cc3292e0
commit https://github.com/vim/vim/commit/40de45664c20e7ca46a28a3f472202f90e47f8bf
Christian Brabandt <cb@256bit.org>
parents:
9262
diff
changeset
|
3473 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
|
3474 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
|
3475 } |
7 | 3476 |
3477 # if defined(HAVE_TERMIOS_H) | |
3478 { | |
3479 int n = 10; | |
3480 | |
3481 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a | |
3482 * few times. */ | |
3483 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1 | |
3484 && errno == EINTR && n > 0) | |
3485 --n; | |
3486 } | |
3487 # else | |
3488 ioctl(read_cmd_fd, TCSETA, &tnew); | |
3489 # endif | |
3490 | |
3491 #else | |
3492 /* | |
3493 * for "old" tty systems | |
3494 */ | |
3495 # ifndef TIOCSETN | |
3496 # define TIOCSETN TIOCSETP /* for hpux 9.0 */ | |
3497 # endif | |
3498 static struct sgttyb ttybold; | |
3499 struct sgttyb ttybnew; | |
3500 | |
3501 if (first) | |
3502 { | |
3503 first = FALSE; | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3504 mch_tcgetattr(read_cmd_fd, &ttybold); |
7 | 3505 } |
3506 | |
3507 ttybnew = ttybold; | |
3508 if (tmode == TMODE_RAW) | |
3509 { | |
3510 ttybnew.sg_flags &= ~(CRMOD | ECHO); | |
3511 ttybnew.sg_flags |= RAW; | |
3512 } | |
3513 else if (tmode == TMODE_SLEEP) | |
3514 ttybnew.sg_flags &= ~(ECHO); | |
3515 ioctl(read_cmd_fd, TIOCSETN, &ttybnew); | |
3516 #endif | |
3517 curr_tmode = tmode; | |
3518 } | |
3519 | |
3520 /* | |
3521 * Try to get the code for "t_kb" from the stty setting | |
3522 * | |
3523 * Even if termcap claims a backspace key, the user's setting *should* | |
3524 * prevail. stty knows more about reality than termcap does, and if | |
3525 * somebody's usual erase key is DEL (which, for most BSD users, it will | |
3526 * be), they're going to get really annoyed if their erase key starts | |
3527 * doing forward deletes for no reason. (Eric Fischer) | |
3528 */ | |
3529 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3530 get_stty(void) |
7 | 3531 { |
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
|
3532 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
|
3533 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
|
3534 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
|
3535 |
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 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
|
3537 { |
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 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
|
3539 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
|
3540 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
|
3541 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
|
3542 |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3543 /* 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
|
3544 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
|
3545 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
|
3546 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
|
3547 } |
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 } |
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 |
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 * 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
|
3552 * 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
|
3553 */ |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3554 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
|
3555 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
|
3556 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3557 #ifdef NEW_TTY_SYSTEM |
7 | 3558 # ifdef HAVE_TERMIOS_H |
3559 struct termios keys; | |
3560 # else | |
3561 struct termio keys; | |
3562 # endif | |
3563 | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3564 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
|
3565 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3566 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
|
3567 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
|
3568 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
|
3569 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
|
3570 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
|
3571 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
|
3572 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
|
3573 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
|
3574 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
|
3575 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
|
3576 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
|
3577 } |
7 | 3578 #else |
3579 /* for "old" tty systems */ | |
3580 struct sgttyb keys; | |
3581 | |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3582 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
|
3583 { |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3584 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
|
3585 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
|
3586 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
|
3587 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
|
3588 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
|
3589 } |
3bf5fe164a9f
patch 8.0.0932: terminal may not use right characters for BS and Enter
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
3590 #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
|
3591 return FAIL; |
7 | 3592 } |
3593 | |
3594 #endif /* VMS */ | |
3595 | |
3596 #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
|
3597 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
|
3598 |
7 | 3599 /* |
3600 * Set mouse clicks on or off. | |
3601 */ | |
3602 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3603 mch_setmouse(int on) |
7 | 3604 { |
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
|
3605 # 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
|
3606 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
|
3607 # endif |
7 | 3608 int xterm_mouse_vers; |
3609 | |
14631
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3610 # 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
|
3611 if (!on) |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3612 // 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
|
3613 // 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
|
3614 stop_xterm_trace(); |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3615 # endif |
2c9a467c82fa
patch 8.1.0329: using inputlist() during startup results in garbage
Christian Brabandt <cb@256bit.org>
parents:
14597
diff
changeset
|
3616 |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3617 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
|
3618 # 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
|
3619 && p_bevalterm == bevalterm_ison |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3620 # endif |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3621 ) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3622 /* return quickly if nothing to do */ |
7 | 3623 return; |
3624 | |
3625 xterm_mouse_vers = use_xterm_mouse(); | |
3145 | 3626 |
3627 # ifdef FEAT_MOUSE_URXVT | |
3746 | 3628 if (ttym_flags == TTYM_URXVT) |
3629 { | |
3145 | 3630 out_str_nf((char_u *) |
3631 (on | |
3632 ? IF_EB("\033[?1015h", ESC_STR "[?1015h") | |
3633 : 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
|
3634 mouse_ison = on; |
3145 | 3635 } |
3636 # endif | |
3637 | |
3746 | 3638 if (ttym_flags == TTYM_SGR) |
3639 { | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3640 /* SGR mode supports columns above 223 */ |
3746 | 3641 out_str_nf((char_u *) |
3642 (on | |
3643 ? IF_EB("\033[?1006h", ESC_STR "[?1006h") | |
3644 : 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
|
3645 mouse_ison = on; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3646 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3647 |
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
|
3648 # 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
|
3649 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
|
3650 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3651 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
|
3652 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
|
3653 /* 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
|
3654 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
|
3655 (IF_EB("\033[?1003l", ESC_STR "[?1003l"))); |
3746 | 3656 } |
3657 # endif | |
3658 | |
7 | 3659 if (xterm_mouse_vers > 0) |
3660 { | |
3661 if (on) /* enable mouse events, use mouse tracking if available */ | |
3662 out_str_nf((char_u *) | |
3663 (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
|
3664 ? ( |
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
|
3665 # 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
|
3666 bevalterm_ison |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3667 ? 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
|
3668 # endif |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3669 IF_EB("\033[?1002h", ESC_STR "[?1002h")) |
7 | 3670 : IF_EB("\033[?1000h", ESC_STR "[?1000h"))); |
3671 else /* disable mouse events, could probably always send the same */ | |
3672 out_str_nf((char_u *) | |
3673 (xterm_mouse_vers > 1 | |
3674 ? IF_EB("\033[?1002l", ESC_STR "[?1002l") | |
3675 : 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
|
3676 mouse_ison = on; |
7 | 3677 } |
3678 | |
3679 # ifdef FEAT_MOUSE_DEC | |
3680 else if (ttym_flags == TTYM_DEC) | |
3681 { | |
3682 if (on) /* enable mouse events */ | |
3683 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{"); | |
3684 else /* disable mouse events */ | |
3685 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
|
3686 mouse_ison = on; |
7 | 3687 } |
3688 # endif | |
3689 | |
3690 # ifdef FEAT_MOUSE_GPM | |
3691 else | |
3692 { | |
3693 if (on) | |
3694 { | |
3695 if (gpm_open()) | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3696 mouse_ison = TRUE; |
7 | 3697 } |
3698 else | |
3699 { | |
3700 gpm_close(); | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3701 mouse_ison = FALSE; |
7 | 3702 } |
3703 } | |
3704 # endif | |
3705 | |
1620 | 3706 # ifdef FEAT_SYSMOUSE |
3707 else | |
3708 { | |
3709 if (on) | |
3710 { | |
3711 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
|
3712 mouse_ison = TRUE; |
1620 | 3713 } |
3714 else | |
3715 { | |
3716 sysmouse_close(); | |
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; |
1620 | 3718 } |
3719 } | |
3720 # endif | |
3721 | |
7 | 3722 # ifdef FEAT_MOUSE_JSB |
3723 else | |
3724 { | |
3725 if (on) | |
3726 { | |
3727 /* D - Enable Mouse up/down messages | |
3728 * L - Enable Left Button Reporting | |
3729 * M - Enable Middle Button Reporting | |
3730 * R - Enable Right Button Reporting | |
3731 * K - Enable SHIFT and CTRL key Reporting | |
3732 * + - Enable Advanced messaging of mouse moves and up/down messages | |
3733 * Q - Quiet No Ack | |
3734 * # - Numeric value of mouse pointer required | |
3735 * 0 = Multiview 2000 cursor, used as standard | |
3736 * 1 = Windows Arrow | |
3737 * 2 = Windows I Beam | |
3738 * 3 = Windows Hour Glass | |
3739 * 4 = Windows Cross Hair | |
3740 * 5 = Windows UP Arrow | |
3741 */ | |
4299 | 3742 # ifdef JSBTERM_MOUSE_NONADVANCED |
3743 /* Disables full feedback of pointer movements */ | |
7 | 3744 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\", |
3745 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\")); | |
4299 | 3746 # else |
7 | 3747 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\", |
3748 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\")); | |
4299 | 3749 # endif |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3750 mouse_ison = TRUE; |
7 | 3751 } |
3752 else | |
3753 { | |
3754 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\", | |
3755 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
|
3756 mouse_ison = FALSE; |
7 | 3757 } |
3758 } | |
3759 # endif | |
3760 # ifdef FEAT_MOUSE_PTERM | |
3761 else | |
3762 { | |
3763 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */ | |
3764 if (on) | |
3765 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l"); | |
3766 else | |
3767 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
|
3768 mouse_ison = on; |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3769 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3770 # endif |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3771 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3772 |
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
|
3773 #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
|
3774 /* |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3775 * Called when 'balloonevalterm' changed. |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3776 */ |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3777 void |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3778 mch_bevalterm_changed(void) |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3779 { |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3780 mch_setmouse(mouse_ison); |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3781 } |
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
3782 #endif |
7 | 3783 |
3784 /* | |
3785 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options. | |
3786 */ | |
3787 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3788 check_mouse_termcode(void) |
7 | 3789 { |
3790 # ifdef FEAT_MOUSE_XTERM | |
3791 if (use_xterm_mouse() | |
3145 | 3792 # ifdef FEAT_MOUSE_URXVT |
3793 && use_xterm_mouse() != 3 | |
3794 # endif | |
7 | 3795 # ifdef FEAT_GUI |
3796 && !gui.in_use | |
3797 # endif | |
3798 ) | |
3799 { | |
3800 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME) | |
180 | 3801 ? IF_EB("\233M", CSI_STR "M") |
3802 : IF_EB("\033[M", ESC_STR "[M"))); | |
7 | 3803 if (*p_mouse != NUL) |
3804 { | |
3805 /* force mouse off and maybe on to send possibly new mouse | |
3806 * activation sequence to the xterm, with(out) drag tracing. */ | |
3807 mch_setmouse(FALSE); | |
3808 setmouse(); | |
3809 } | |
3810 } | |
3811 else | |
3812 del_mouse_termcode(KS_MOUSE); | |
3813 # endif | |
3814 | |
3815 # ifdef FEAT_MOUSE_GPM | |
3816 if (!use_xterm_mouse() | |
3817 # ifdef FEAT_GUI | |
3818 && !gui.in_use | |
3819 # endif | |
3820 ) | |
16523
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
3821 set_mouse_termcode(KS_GPM_MOUSE, |
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
3822 (char_u *)IF_EB("\033MG", ESC_STR "MG")); |
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
3823 else |
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
3824 del_mouse_termcode(KS_GPM_MOUSE); |
7 | 3825 # endif |
3826 | |
1620 | 3827 # ifdef FEAT_SYSMOUSE |
3828 if (!use_xterm_mouse() | |
3829 # ifdef FEAT_GUI | |
3830 && !gui.in_use | |
3831 # endif | |
3832 ) | |
3833 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS")); | |
3834 # endif | |
3835 | |
7 | 3836 # ifdef FEAT_MOUSE_JSB |
6102 | 3837 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */ |
7 | 3838 if (!use_xterm_mouse() |
3839 # ifdef FEAT_GUI | |
3840 && !gui.in_use | |
3841 # endif | |
3842 ) | |
3843 set_mouse_termcode(KS_JSBTERM_MOUSE, | |
3844 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw")); | |
3845 else | |
3846 del_mouse_termcode(KS_JSBTERM_MOUSE); | |
3847 # endif | |
3848 | |
3849 # ifdef FEAT_MOUSE_NET | |
180 | 3850 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't |
7 | 3851 * define it in the GUI or when using an xterm. */ |
3852 if (!use_xterm_mouse() | |
3853 # ifdef FEAT_GUI | |
3854 && !gui.in_use | |
3855 # endif | |
3856 ) | |
3857 set_mouse_termcode(KS_NETTERM_MOUSE, | |
3858 (char_u *)IF_EB("\033}", ESC_STR "}")); | |
3859 else | |
3860 del_mouse_termcode(KS_NETTERM_MOUSE); | |
3861 # endif | |
3862 | |
3863 # ifdef FEAT_MOUSE_DEC | |
6102 | 3864 /* Conflicts with xterm mouse: "\033[" and "\033[M" */ |
5932 | 3865 if (!use_xterm_mouse() |
7 | 3866 # ifdef FEAT_GUI |
3867 && !gui.in_use | |
3868 # endif | |
3869 ) | |
180 | 3870 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
3871 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "["))); | |
7 | 3872 else |
3873 del_mouse_termcode(KS_DEC_MOUSE); | |
3874 # endif | |
3875 # ifdef FEAT_MOUSE_PTERM | |
6102 | 3876 /* same conflict as the dec mouse */ |
5932 | 3877 if (!use_xterm_mouse() |
7 | 3878 # ifdef FEAT_GUI |
3879 && !gui.in_use | |
3880 # endif | |
3881 ) | |
3882 set_mouse_termcode(KS_PTERM_MOUSE, | |
3883 (char_u *) IF_EB("\033[", ESC_STR "[")); | |
3884 else | |
3885 del_mouse_termcode(KS_PTERM_MOUSE); | |
3886 # endif | |
3145 | 3887 # ifdef FEAT_MOUSE_URXVT |
5932 | 3888 if (use_xterm_mouse() == 3 |
3145 | 3889 # ifdef FEAT_GUI |
3890 && !gui.in_use | |
3891 # endif | |
3892 ) | |
3893 { | |
3894 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
|
3895 ? 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
|
3896 : IF_EB("\033[*M", ESC_STR "[*M"))); |
3145 | 3897 |
3898 if (*p_mouse != NUL) | |
3899 { | |
3900 mch_setmouse(FALSE); | |
3901 setmouse(); | |
3902 } | |
3903 } | |
3904 else | |
3905 del_mouse_termcode(KS_URXVT_MOUSE); | |
3906 # endif | |
3746 | 3907 if (use_xterm_mouse() == 4 |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
3908 # ifdef FEAT_GUI |
3746 | 3909 && !gui.in_use |
16058
012f03e583e2
patch 8.1.1034: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
3910 # endif |
3746 | 3911 ) |
3912 { | |
3913 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
|
3914 ? 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
|
3915 : 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
|
3916 |
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3917 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
|
3918 ? 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
|
3919 : IF_EB("\033[<*m", ESC_STR "[<*m"))); |
3746 | 3920 |
3921 if (*p_mouse != NUL) | |
3922 { | |
3923 mch_setmouse(FALSE); | |
3924 setmouse(); | |
3925 } | |
3926 } | |
3927 else | |
11557
7e5e76d8d451
patch 8.0.0661: recognizing urxvt mouse codes does not work well
Christian Brabandt <cb@256bit.org>
parents:
11281
diff
changeset
|
3928 { |
3746 | 3929 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
|
3930 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
|
3931 } |
7 | 3932 } |
3933 #endif | |
3934 | |
3935 /* | |
3936 * set screen mode, always fails. | |
3937 */ | |
3938 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3939 mch_screenmode(char_u *arg UNUSED) |
7 | 3940 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
3941 emsg(_(e_screenmode)); |
7 | 3942 return FAIL; |
3943 } | |
3944 | |
3945 #ifndef VMS | |
3946 | |
3947 /* | |
3948 * Try to get the current window size: | |
3949 * 1. with an ioctl(), most accurate method | |
3950 * 2. from the environment variables LINES and COLUMNS | |
3951 * 3. from the termcap | |
3952 * 4. keep using the old values | |
3953 * Return OK when size could be determined, FAIL otherwise. | |
3954 */ | |
3955 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3956 mch_get_shellsize(void) |
7 | 3957 { |
3958 long rows = 0; | |
3959 long columns = 0; | |
3960 char_u *p; | |
3961 | |
3962 /* | |
3963 * 1. try using an ioctl. It is the most accurate method. | |
3964 * | |
3965 * Try using TIOCGWINSZ first, some systems that have it also define | |
3966 * TIOCGSIZE but don't have a struct ttysize. | |
3967 */ | |
3968 # ifdef TIOCGWINSZ | |
3969 { | |
3970 struct winsize ws; | |
3971 int fd = 1; | |
3972 | |
3973 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3974 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3975 fd = read_cmd_fd; | |
3976 if (ioctl(fd, TIOCGWINSZ, &ws) == 0) | |
3977 { | |
3978 columns = ws.ws_col; | |
3979 rows = ws.ws_row; | |
3980 } | |
3981 } | |
3982 # else /* TIOCGWINSZ */ | |
3983 # ifdef TIOCGSIZE | |
3984 { | |
3985 struct ttysize ts; | |
3986 int fd = 1; | |
3987 | |
3988 /* When stdout is not a tty, use stdin for the ioctl(). */ | |
3989 if (!isatty(fd) && isatty(read_cmd_fd)) | |
3990 fd = read_cmd_fd; | |
3991 if (ioctl(fd, TIOCGSIZE, &ts) == 0) | |
3992 { | |
3993 columns = ts.ts_cols; | |
3994 rows = ts.ts_lines; | |
3995 } | |
3996 } | |
3997 # endif /* TIOCGSIZE */ | |
3998 # endif /* TIOCGWINSZ */ | |
3999 | |
4000 /* | |
4001 * 2. get size from environment | |
164 | 4002 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules |
4003 * the ioctl() values! | |
7 | 4004 */ |
164 | 4005 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL) |
7 | 4006 { |
4007 if ((p = (char_u *)getenv("LINES"))) | |
4008 rows = atoi((char *)p); | |
4009 if ((p = (char_u *)getenv("COLUMNS"))) | |
4010 columns = atoi((char *)p); | |
4011 } | |
4012 | |
4013 #ifdef HAVE_TGETENT | |
4014 /* | |
4015 * 3. try reading "co" and "li" entries from termcap | |
4016 */ | |
4017 if (columns == 0 || rows == 0) | |
4018 getlinecol(&columns, &rows); | |
4019 #endif | |
4020 | |
4021 /* | |
4022 * 4. If everything fails, use the old values | |
4023 */ | |
4024 if (columns <= 0 || rows <= 0) | |
4025 return FAIL; | |
4026 | |
4027 Rows = rows; | |
4028 Columns = columns; | |
5070
cf52d2a8c05c
updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents:
5037
diff
changeset
|
4029 limit_screen_size(); |
7 | 4030 return OK; |
4031 } | |
4032 | |
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
|
4033 #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
|
4034 /* |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
4035 * 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
|
4036 */ |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
4037 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
|
4038 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
|
4039 { |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4040 int tty_fd; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4041 int retval = -1; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4042 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4043 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
|
4044 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
|
4045 { |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4046 # if defined(TIOCSWINSZ) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4047 struct winsize ws; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4048 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4049 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
|
4050 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
|
4051 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
|
4052 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
|
4053 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
|
4054 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
|
4055 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
|
4056 # elif defined(TIOCSSIZE) |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4057 struct ttysize ts; |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4058 |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4059 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
|
4060 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
|
4061 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
|
4062 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
|
4063 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
|
4064 # endif |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4065 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
|
4066 close(tty_fd); |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4067 } |
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4068 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
|
4069 } |
b4d8f956eb18
patch 8.0.0753: no size reports to a job running in a terminal
Christian Brabandt <cb@256bit.org>
parents:
11731
diff
changeset
|
4070 #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
|
4071 |
7 | 4072 /* |
4073 * Try to set the window size to Rows and Columns. | |
4074 */ | |
4075 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4076 mch_set_shellsize(void) |
7 | 4077 { |
4078 if (*T_CWS) | |
4079 { | |
4080 /* | |
4081 * NOTE: if you get an error here that term_set_winsize() is | |
4082 * undefined, check the output of configure. It could probably not | |
4083 * find a ncurses, termcap or termlib library. | |
4084 */ | |
4085 term_set_winsize((int)Rows, (int)Columns); | |
4086 out_flush(); | |
4087 screen_start(); /* don't know where cursor is now */ | |
4088 } | |
4089 } | |
4090 | |
4091 #endif /* VMS */ | |
4092 | |
4093 /* | |
4094 * Rows and/or Columns has changed. | |
4095 */ | |
4096 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4097 mch_new_shellsize(void) |
7 | 4098 { |
4099 /* Nothing to do. */ | |
4100 } | |
4101 | |
3048 | 4102 /* |
4103 * Wait for process "child" to end. | |
4104 * Return "child" if it exited properly, <= 0 on error. | |
4105 */ | |
4106 static pid_t | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4107 wait4pid(pid_t child, waitstatus *status) |
3048 | 4108 { |
4109 pid_t wait_pid = 0; | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4110 long delay_msec = 1; |
3048 | 4111 |
4112 while (wait_pid != child) | |
4113 { | |
3470 | 4114 /* When compiled with Python threads are probably used, in which case |
4115 * wait() sometimes hangs for no obvious reason. Use waitpid() | |
4116 * instead and loop (like the GUI). Also needed for other interfaces, | |
4117 * they might call system(). */ | |
4118 # ifdef __NeXT__ | |
3048 | 4119 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0); |
3470 | 4120 # else |
3048 | 4121 wait_pid = waitpid(child, status, WNOHANG); |
3470 | 4122 # endif |
3048 | 4123 if (wait_pid == 0) |
4124 { | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4125 /* 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
|
4126 mch_delay(delay_msec, TRUE); |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4127 if (++delay_msec > 10) |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
4128 delay_msec = 10; |
3048 | 4129 continue; |
4130 } | |
4131 if (wait_pid <= 0 | |
4132 # ifdef ECHILD | |
4133 && errno == ECHILD | |
4134 # endif | |
4135 ) | |
4136 break; | |
4137 } | |
4138 return wait_pid; | |
4139 } | |
4140 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
4141 #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
|
4142 /* |
3c1b59938042
patch 8.0.0829: job running in terminal can't communicate with Vim
Christian Brabandt <cb@256bit.org>
parents:
11894
diff
changeset
|
4143 * 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
|
4144 */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4145 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
|
4146 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
|
4147 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
|
4148 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
|
4149 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
|
4150 int is_terminal UNUSED) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4151 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4152 # ifdef HAVE_SETENV |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4153 char envbuf[50]; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4154 # else |
11717
30247960c8a7
patch 8.0.0741: cannot build with HPUX
Christian Brabandt <cb@256bit.org>
parents:
11713
diff
changeset
|
4155 static char envbuf_Term[30]; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4156 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
|
4157 static char envbuf_Lines[20]; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4158 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
|
4159 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
|
4160 # 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
|
4161 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
|
4162 # endif |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4163 # 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
|
4164 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
|
4165 # 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
|
4166 # 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
|
4167 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
|
4168 # 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
|
4169 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
|
4170 # 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
|
4171 t_colors; |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4172 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4173 # ifdef HAVE_SETENV |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4174 setenv("TERM", term, 1); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4175 sprintf((char *)envbuf, "%ld", rows); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4176 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
|
4177 sprintf((char *)envbuf, "%ld", rows); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4178 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
|
4179 sprintf((char *)envbuf, "%ld", columns); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4180 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
|
4181 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
|
4182 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
|
4183 # 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
|
4184 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
|
4185 { |
14073
a9b141cf99ff
patch 8.1.0054: compiler warning for using %ld for "long long"
Christian Brabandt <cb@256bit.org>
parents:
14065
diff
changeset
|
4186 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
|
4187 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
|
4188 } |
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
|
4189 # endif |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4190 # 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
|
4191 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
|
4192 # endif |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4193 # else |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4194 /* |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4195 * 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
|
4196 * 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
|
4197 * 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
|
4198 */ |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4199 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
|
4200 putenv(envbuf_Term); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4201 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
|
4202 putenv(envbuf_Rows); |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4203 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
|
4204 putenv(envbuf_Lines); |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4205 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
|
4206 "COLUMNS=%ld", columns); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4207 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
|
4208 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
|
4209 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
|
4210 # 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
|
4211 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
|
4212 { |
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
|
4213 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
|
4214 "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
|
4215 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
|
4216 } |
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
|
4217 # endif |
11908
1e8d353cb827
patch 8.0.0834: can't build without the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
11898
diff
changeset
|
4218 # 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
|
4219 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
|
4220 "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
|
4221 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
|
4222 # endif |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4223 # endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4224 } |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4225 |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
4226 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
|
4227 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
|
4228 { |
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
|
4229 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
|
4230 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4231 #endif |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
4232 |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4233 #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
|
4234 /* |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
4235 * 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
|
4236 * 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
|
4237 * 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
|
4238 * 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
|
4239 */ |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4240 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
|
4241 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
|
4242 { |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4243 char *tty_name; |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4244 |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4245 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
|
4246 *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
|
4247 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
|
4248 *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
|
4249 |
15632
d4a6d575e910
patch 8.1.0824: SunOS/Solaris has a problem with ttys
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
4250 *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
|
4251 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
|
4252 { |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4253 /* 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
|
4254 * 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
|
4255 * 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
|
4256 #ifdef O_NOCTTY |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4257 *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
|
4258 #else |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4259 *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
|
4260 #endif |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4261 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
|
4262 { |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4263 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
|
4264 *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
|
4265 } |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4266 else |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4267 { |
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
4268 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
|
4269 *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
|
4270 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
|
4271 *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
|
4272 } |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4273 } |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4274 } |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4275 #endif |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
4276 |
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
|
4277 /* |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4278 * 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
|
4279 */ |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4280 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
|
4281 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
|
4282 { |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4283 # 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
|
4284 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
|
4285 { |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4286 # 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
|
4287 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
|
4288 # 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
|
4289 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
|
4290 # 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
|
4291 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
|
4292 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
|
4293 } |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4294 # 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
|
4295 } |
cca097489de5
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Christian Brabandt <cb@256bit.org>
parents:
11908
diff
changeset
|
4296 |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4297 #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
|
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 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
|
4300 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
|
4301 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
|
4302 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
|
4303 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
|
4304 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
|
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 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
|
4307 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
|
4308 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4309 *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
|
4310 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
|
4311 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
|
4312 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4313 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
|
4314 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
|
4315 *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
|
4316 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4317 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
|
4318 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4319 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
|
4320 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
|
4321 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4322 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
|
4323 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
|
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 /* 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
|
4326 * handle quoted strings, they are very unlikely to appear. */ |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16608
diff
changeset
|
4327 *shcf_tofree = alloc(STRLEN(p_shcf) + 1); |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4328 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
|
4329 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
|
4330 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
|
4331 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
|
4332 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
|
4333 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4334 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
|
4335 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
|
4336 *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
|
4337 *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
|
4338 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
|
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 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4341 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
|
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 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
|
4344 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
|
4345 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4346 #endif |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4347 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4348 #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
|
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 * 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
|
4351 */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4352 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
|
4353 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
|
4354 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
|
4355 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
|
4356 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4357 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
|
4358 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
|
4359 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
|
4360 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
|
4361 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
|
4362 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
|
4363 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
|
4364 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
|
4365 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
|
4366 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4367 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
|
4368 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
|
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 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
|
4371 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
|
4372 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
|
4373 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
|
4374 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
|
4375 |
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
|
4376 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
|
4377 ++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
|
4378 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4379 /* 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
|
4380 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
|
4381 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4382 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
|
4383 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
|
4384 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4385 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
|
4386 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4387 /* 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
|
4388 * 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
|
4389 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
|
4390 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
|
4391 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4392 else |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4393 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
|
4394 } |
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
|
4395 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
|
4396 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
|
4397 |
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
|
4398 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
|
4399 |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4400 /* 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
|
4401 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
|
4402 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4403 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
|
4404 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
|
4405 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4406 theend: |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4407 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
|
4408 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
|
4409 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
|
4410 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
|
4411 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4412 #endif |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4413 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4414 #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
|
4415 /* |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4416 * 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
|
4417 */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4418 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
|
4419 mch_call_shell_system( |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4420 char_u *cmd, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4421 int options) /* SHELL_*, see vim.h */ |
7 | 4422 { |
4423 #ifdef VMS | |
4424 char *ifn = NULL; | |
4425 char *ofn = NULL; | |
4426 #endif | |
4427 int tmode = cur_tmode; | |
9552
49512aba8e32
commit https://github.com/vim/vim/commit/b2b050ab16565c117f0e7e411ffef3700d99203b
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
4428 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
|
4429 int x; |
7 | 4430 |
4431 out_flush(); | |
4432 | |
4433 if (options & SHELL_COOKED) | |
4434 settmode(TMODE_COOK); /* set to normal mode */ | |
4435 | |
2586 | 4436 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4209 | 4437 save_clipboard(); |
2586 | 4438 loose_clipboard(); |
4439 # endif | |
4440 | |
7 | 4441 if (cmd == NULL) |
4442 x = system((char *)p_sh); | |
4443 else | |
4444 { | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4445 # ifdef VMS |
7 | 4446 if (ofn = strchr((char *)cmd, '>')) |
4447 *ofn++ = '\0'; | |
4448 if (ifn = strchr((char *)cmd, '<')) | |
4449 { | |
4450 char *p; | |
4451 | |
4452 *ifn++ = '\0'; | |
4453 p = strchr(ifn,' '); /* chop off any trailing spaces */ | |
4454 if (p) | |
4455 *p = '\0'; | |
4456 } | |
4457 if (ofn) | |
4458 x = vms_sys((char *)cmd, ofn, ifn); | |
4459 else | |
4460 x = system((char *)cmd); | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4461 # else |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
4462 newcmd = alloc(STRLEN(p_sh) |
7 | 4463 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg)) |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
4464 + STRLEN(p_shcf) + STRLEN(cmd) + 4); |
7 | 4465 if (newcmd == NULL) |
4466 x = 0; | |
4467 else | |
4468 { | |
4469 sprintf((char *)newcmd, "%s %s %s %s", p_sh, | |
4470 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg, | |
4471 (char *)p_shcf, | |
4472 (char *)cmd); | |
4473 x = system((char *)newcmd); | |
4474 vim_free(newcmd); | |
4475 } | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
4476 # endif |
7 | 4477 } |
4478 # ifdef VMS | |
4479 x = vms_sys_status(x); | |
4480 # endif | |
4481 if (emsg_silent) | |
4482 ; | |
4483 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
|
4484 msg_puts(_("\nCannot execute shell sh\n")); |
7 | 4485 else if (x && !(options & SHELL_SILENT)) |
4486 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4487 msg_puts(_("\nshell returned ")); |
7 | 4488 msg_outnum((long)x); |
4489 msg_putchar('\n'); | |
4490 } | |
4491 | |
4492 if (tmode == TMODE_RAW) | |
4493 settmode(TMODE_RAW); /* set to raw mode */ | |
4494 # ifdef FEAT_TITLE | |
4495 resettitle(); | |
4496 # endif | |
4209 | 4497 # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
4498 restore_clipboard(); | |
4499 # endif | |
7 | 4500 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
|
4501 } |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4502 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4503 #else /* USE_SYSTEM */ |
7 | 4504 |
167 | 4505 # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use |
4506 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
|
4507 # define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */ |
7 | 4508 |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4509 /* |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4510 * 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
|
4511 */ |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4512 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
|
4513 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
|
4514 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
|
4515 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
|
4516 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4517 int tmode = cur_tmode; |
7 | 4518 pid_t pid; |
167 | 4519 pid_t wpid = 0; |
7 | 4520 pid_t wait_pid = 0; |
4521 # ifdef HAVE_UNION_WAIT | |
4522 union wait status; | |
4523 # else | |
4524 int status = -1; | |
4525 # endif | |
4526 int retval = -1; | |
4527 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
|
4528 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
|
4529 char_u *tofree2 = NULL; |
7 | 4530 int i; |
167 | 4531 int pty_master_fd = -1; /* for pty's */ |
7 | 4532 # ifdef FEAT_GUI |
4533 int pty_slave_fd = -1; | |
167 | 4534 # endif |
602 | 4535 int fd_toshell[2]; /* for pipes */ |
7 | 4536 int fd_fromshell[2]; |
4537 int pipe_error = FALSE; | |
602 | 4538 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */ |
7 | 4539 |
4540 out_flush(); | |
4541 if (options & SHELL_COOKED) | |
4542 settmode(TMODE_COOK); /* set to normal mode */ | |
4543 | |
13470
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
4544 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
|
4545 goto error; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
4546 |
167 | 4547 /* |
4548 * For the GUI, when writing the output into the buffer and when reading | |
4549 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout | |
4550 * of the executed command into the Vim window. Or use a pipe. | |
4551 */ | |
4552 if ((options & (SHELL_READ|SHELL_WRITE)) | |
7 | 4553 # ifdef FEAT_GUI |
167 | 4554 || (gui.in_use && show_shell_mess) |
4555 # endif | |
4556 ) | |
7 | 4557 { |
167 | 4558 # ifdef FEAT_GUI |
7 | 4559 /* |
4560 * Try to open a master pty. | |
4561 * If this works, open the slave pty. | |
4562 * If the slave can't be opened, close the master pty. | |
4563 */ | |
167 | 4564 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
|
4565 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL); |
7 | 4566 /* |
4567 * If not opening a pty or it didn't work, try using pipes. | |
4568 */ | |
4569 if (pty_master_fd < 0) | |
167 | 4570 # endif |
7 | 4571 { |
4572 pipe_error = (pipe(fd_toshell) < 0); | |
4573 if (!pipe_error) /* pipe create OK */ | |
4574 { | |
4575 pipe_error = (pipe(fd_fromshell) < 0); | |
4576 if (pipe_error) /* pipe create failed */ | |
4577 { | |
4578 close(fd_toshell[0]); | |
4579 close(fd_toshell[1]); | |
4580 } | |
4581 } | |
4582 if (pipe_error) | |
4583 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4584 msg_puts(_("\nCannot create pipes\n")); |
7 | 4585 out_flush(); |
4586 } | |
4587 } | |
4588 } | |
4589 | |
4590 if (!pipe_error) /* pty or pipe opened or not used */ | |
4591 { | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4592 SIGSET_DECL(curset) |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4593 |
7 | 4594 # ifdef __BEOS__ |
4595 beos_cleanup_read_thread(); | |
4596 # endif | |
602 | 4597 |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4598 BLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4599 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
|
4600 if (pid == -1) |
7 | 4601 { |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4602 UNBLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4603 |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4604 msg_puts(_("\nCannot fork\n")); |
167 | 4605 if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4606 # ifdef FEAT_GUI |
167 | 4607 || (gui.in_use && show_shell_mess) |
4608 # endif | |
4609 ) | |
7 | 4610 { |
167 | 4611 # ifdef FEAT_GUI |
7 | 4612 if (pty_master_fd >= 0) /* close the pseudo tty */ |
4613 { | |
4614 close(pty_master_fd); | |
4615 close(pty_slave_fd); | |
4616 } | |
4617 else /* close the pipes */ | |
167 | 4618 # endif |
7 | 4619 { |
4620 close(fd_toshell[0]); | |
4621 close(fd_toshell[1]); | |
4622 close(fd_fromshell[0]); | |
4623 close(fd_fromshell[1]); | |
4624 } | |
4625 } | |
4626 } | |
4627 else if (pid == 0) /* child */ | |
4628 { | |
4629 reset_signals(); /* handle signals normally */ | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4630 UNBLOCK_SIGNALS(&curset); |
7 | 4631 |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4632 # 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
|
4633 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
|
4634 /* 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
|
4635 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
|
4636 # endif |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
4637 |
7 | 4638 if (!show_shell_mess || (options & SHELL_EXPAND)) |
4639 { | |
4640 int fd; | |
4641 | |
4642 /* | |
4643 * Don't want to show any message from the shell. Can't just | |
4644 * close stdout and stderr though, because some systems will | |
4645 * break if you try to write to them after that, so we must | |
4646 * use dup() to replace them with something else -- webb | |
4647 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang, | |
4648 * waiting for input. | |
4649 */ | |
4650 fd = open("/dev/null", O_RDWR | O_EXTRA, 0); | |
4651 fclose(stdin); | |
4652 fclose(stdout); | |
4653 fclose(stderr); | |
4654 | |
4655 /* | |
4656 * If any of these open()'s and dup()'s fail, we just continue | |
4657 * anyway. It's not fatal, and on most systems it will make | |
4658 * no difference at all. On a few it will cause the execvp() | |
4659 * to exit with a non-zero status even when the completion | |
4660 * could be done, which is nothing too serious. If the open() | |
4661 * or dup() failed we'd just do the same thing ourselves | |
4662 * anyway -- webb | |
4663 */ | |
4664 if (fd >= 0) | |
4665 { | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
4666 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
|
4667 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
|
4668 vim_ignored = dup(fd); /* To replace stderr (fd 2) */ |
7 | 4669 |
4670 /* Don't need this now that we've duplicated it */ | |
4671 close(fd); | |
4672 } | |
4673 } | |
167 | 4674 else if ((options & (SHELL_READ|SHELL_WRITE)) |
7 | 4675 # ifdef FEAT_GUI |
167 | 4676 || gui.in_use |
4677 # endif | |
4678 ) | |
7 | 4679 { |
4680 | |
167 | 4681 # ifdef HAVE_SETSID |
602 | 4682 /* Create our own process group, so that the child and all its |
4683 * children can be kill()ed. Don't do this when using pipes, | |
1698 | 4684 * because stdin is not a tty, we would lose /dev/tty. */ |
602 | 4685 if (p_stmp) |
1799 | 4686 { |
602 | 4687 (void)setsid(); |
1799 | 4688 # if defined(SIGHUP) |
4689 /* When doing "!xterm&" and 'shell' is bash: the shell | |
4690 * will exit and send SIGHUP to all processes in its | |
4691 * group, killing the just started process. Ignore SIGHUP | |
4692 * to avoid that. (suggested by Simon Schubert) | |
4693 */ | |
4694 signal(SIGHUP, SIG_IGN); | |
4695 # endif | |
4696 } | |
167 | 4697 # endif |
4698 # ifdef FEAT_GUI | |
602 | 4699 if (pty_slave_fd >= 0) |
4700 { | |
4701 /* push stream discipline modules */ | |
4702 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
|
4703 setup_slavepty(pty_slave_fd); |
7 | 4704 # ifdef TIOCSCTTY |
602 | 4705 /* Try to become controlling tty (probably doesn't work, |
4706 * unless run by root) */ | |
4707 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); | |
7 | 4708 # endif |
602 | 4709 } |
167 | 4710 # 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
|
4711 set_default_child_environment(FALSE); |
167 | 4712 |
557 | 4713 /* |
4714 * stderr is only redirected when using the GUI, so that a | |
4715 * program like gpg can still access the terminal to get a | |
4716 * passphrase using stderr. | |
4717 */ | |
167 | 4718 # ifdef FEAT_GUI |
7 | 4719 if (pty_master_fd >= 0) |
4720 { | |
4721 close(pty_master_fd); /* close master side of pty */ | |
4722 | |
4723 /* set up stdin/stdout/stderr for the child */ | |
4724 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
|
4725 vim_ignored = dup(pty_slave_fd); |
7 | 4726 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
|
4727 vim_ignored = dup(pty_slave_fd); |
557 | 4728 if (gui.in_use) |
4729 { | |
4730 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
|
4731 vim_ignored = dup(pty_slave_fd); |
557 | 4732 } |
7 | 4733 |
4734 close(pty_slave_fd); /* has been dupped, close it now */ | |
4735 } | |
4736 else | |
167 | 4737 # endif |
7 | 4738 { |
4739 /* set up stdin for the child */ | |
4740 close(fd_toshell[1]); | |
4741 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
|
4742 vim_ignored = dup(fd_toshell[0]); |
7 | 4743 close(fd_toshell[0]); |
4744 | |
4745 /* set up stdout for the child */ | |
4746 close(fd_fromshell[0]); | |
4747 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
|
4748 vim_ignored = dup(fd_fromshell[1]); |
7 | 4749 close(fd_fromshell[1]); |
4750 | |
557 | 4751 # ifdef FEAT_GUI |
4752 if (gui.in_use) | |
4753 { | |
4754 /* set up stderr for the child */ | |
4755 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
|
4756 vim_ignored = dup(1); |
557 | 4757 } |
4758 # endif | |
7 | 4759 } |
4760 } | |
167 | 4761 |
7 | 4762 /* |
4763 * There is no type cast for the argv, because the type may be | |
4764 * different on different machines. This may cause a warning | |
4765 * message with strict compilers, don't worry about it. | |
4766 * Call _exit() instead of exit() to avoid closing the connection | |
4767 * to the X server (esp. with GTK, which uses atexit()). | |
4768 */ | |
4769 execvp(argv[0], argv); | |
4770 _exit(EXEC_FAILED); /* exec failed, return failure code */ | |
4771 } | |
4772 else /* parent */ | |
4773 { | |
4774 /* | |
4775 * While child is running, ignore terminating signals. | |
167 | 4776 * Do catch CTRL-C, so that "got_int" is set. |
7 | 4777 */ |
4778 catch_signals(SIG_IGN, SIG_ERR); | |
167 | 4779 catch_int_signal(); |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
4780 UNBLOCK_SIGNALS(&curset); |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4781 # ifdef FEAT_JOB_CHANNEL |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4782 ++dont_check_job_ended; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
4783 # endif |
7 | 4784 /* |
4785 * For the GUI we redirect stdin, stdout and stderr to our window. | |
167 | 4786 * This is also used to pipe stdin/stdout to/from the external |
4787 * command. | |
7 | 4788 */ |
167 | 4789 if ((options & (SHELL_READ|SHELL_WRITE)) |
4790 # ifdef FEAT_GUI | |
4791 || (gui.in_use && show_shell_mess) | |
4792 # endif | |
4793 ) | |
7 | 4794 { |
167 | 4795 # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */ |
7 | 4796 char_u buffer[BUFLEN + 1]; |
4797 int buffer_off = 0; /* valid bytes in buffer[] */ | |
4798 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ | |
4799 int ta_len = 0; /* valid bytes in ta_buf[] */ | |
4800 int len; | |
4801 int p_more_save; | |
4802 int old_State; | |
4803 int c; | |
4804 int toshell_fd; | |
4805 int fromshell_fd; | |
167 | 4806 garray_T ga; |
4807 int noread_cnt; | |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4808 # ifdef ELAPSED_FUNC |
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4809 elapsed_T start_tv; |
1823 | 4810 # endif |
167 | 4811 |
4812 # ifdef FEAT_GUI | |
7 | 4813 if (pty_master_fd >= 0) |
4814 { | |
4815 fromshell_fd = pty_master_fd; | |
4816 toshell_fd = dup(pty_master_fd); | |
4817 } | |
4818 else | |
167 | 4819 # endif |
7 | 4820 { |
4821 close(fd_toshell[0]); | |
4822 close(fd_fromshell[1]); | |
4823 toshell_fd = fd_toshell[1]; | |
4824 fromshell_fd = fd_fromshell[0]; | |
4825 } | |
4826 | |
4827 /* | |
4828 * Write to the child if there are typed characters. | |
4829 * Read from the child if there are characters available. | |
4830 * Repeat the reading a few times if more characters are | |
4831 * available. Need to check for typed keys now and then, but | |
4832 * not too often (delays when no chars are available). | |
4833 * This loop is quit if no characters can be read from the pty | |
4834 * (WaitForChar detected special condition), or there are no | |
4835 * characters available and the child has exited. | |
4836 * Only check if the child has exited when there is no more | |
4837 * output. The child may exit before all the output has | |
4838 * been printed. | |
4839 * | |
4840 * Currently this busy loops! | |
4841 * This can probably dead-lock when the write blocks! | |
4842 */ | |
4843 p_more_save = p_more; | |
4844 p_more = FALSE; | |
4845 old_State = State; | |
4846 State = EXTERNCMD; /* don't redraw at window resize */ | |
4847 | |
602 | 4848 if ((options & SHELL_WRITE) && toshell_fd >= 0) |
167 | 4849 { |
4850 /* Fork a process that will write the lines to the | |
4851 * external program. */ | |
4852 if ((wpid = fork()) == -1) | |
4853 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
4854 msg_puts(_("\nCannot fork\n")); |
167 | 4855 } |
3048 | 4856 else if (wpid == 0) /* child */ |
167 | 4857 { |
4858 linenr_T lnum = curbuf->b_op_start.lnum; | |
4859 int written = 0; | |
944 | 4860 char_u *lp = ml_get(lnum); |
167 | 4861 size_t l; |
4862 | |
177 | 4863 close(fromshell_fd); |
167 | 4864 for (;;) |
4865 { | |
944 | 4866 l = STRLEN(lp + written); |
167 | 4867 if (l == 0) |
4868 len = 0; | |
944 | 4869 else if (lp[written] == NL) |
167 | 4870 /* NL -> NUL translation */ |
4871 len = write(toshell_fd, "", (size_t)1); | |
4872 else | |
4873 { | |
3263 | 4874 char_u *s = vim_strchr(lp + written, NL); |
4875 | |
944 | 4876 len = write(toshell_fd, (char *)lp + written, |
1877 | 4877 s == NULL ? l |
4878 : (size_t)(s - (lp + written))); | |
167 | 4879 } |
1877 | 4880 if (len == (int)l) |
167 | 4881 { |
4882 /* Finished a line, add a NL, unless this line | |
4883 * should not have one. */ | |
4884 if (lnum != curbuf->b_op_end.lnum | |
6933 | 4885 || (!curbuf->b_p_bin |
4886 && curbuf->b_p_fixeol) | |
2707 | 4887 || (lnum != curbuf->b_no_eol_lnum |
167 | 4888 && (lnum != |
4889 curbuf->b_ml.ml_line_count | |
4890 || 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
|
4891 vim_ignored = write(toshell_fd, "\n", |
1757 | 4892 (size_t)1); |
167 | 4893 ++lnum; |
4894 if (lnum > curbuf->b_op_end.lnum) | |
4895 { | |
4896 /* finished all the lines, close pipe */ | |
4897 close(toshell_fd); | |
4898 toshell_fd = -1; | |
4899 break; | |
4900 } | |
944 | 4901 lp = ml_get(lnum); |
167 | 4902 written = 0; |
4903 } | |
4904 else if (len > 0) | |
4905 written += len; | |
4906 } | |
4907 _exit(0); | |
4908 } | |
3048 | 4909 else /* parent */ |
167 | 4910 { |
4911 close(toshell_fd); | |
4912 toshell_fd = -1; | |
4913 } | |
4914 } | |
4915 | |
4916 if (options & SHELL_READ) | |
4917 ga_init2(&ga, 1, BUFLEN); | |
4918 | |
4919 noread_cnt = 0; | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4920 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4921 ELAPSED_INIT(start_tv); |
1823 | 4922 # endif |
7 | 4923 for (;;) |
4924 { | |
4925 /* | |
4926 * Check if keys have been typed, write them to the child | |
592 | 4927 * if there are any. |
4928 * Don't do this if we are expanding wild cards (would eat | |
4929 * typeahead). | |
4930 * Don't do this when filtering and terminal is in cooked | |
4931 * mode, the shell command will handle the I/O. Avoids | |
4932 * that a typed password is echoed for ssh or gpg command. | |
602 | 4933 * Don't get characters when the child has already |
4934 * finished (wait_pid == 0). | |
167 | 4935 * Don't read characters unless we didn't get output for a |
1823 | 4936 * while (noread_cnt > 4), avoids that ":r !ls" eats |
4937 * typeahead. | |
7 | 4938 */ |
4939 len = 0; | |
4940 if (!(options & SHELL_EXPAND) | |
592 | 4941 && ((options & |
4942 (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) | |
4943 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) | |
1823 | 4944 # ifdef FEAT_GUI |
592 | 4945 || gui.in_use |
1823 | 4946 # endif |
592 | 4947 ) |
602 | 4948 && wait_pid == 0 |
1823 | 4949 && (ta_len > 0 || noread_cnt > 4)) |
7 | 4950 { |
1823 | 4951 if (ta_len == 0) |
4952 { | |
4953 /* Get extra characters when we don't have any. | |
4954 * Reset the counter and timer. */ | |
4955 noread_cnt = 0; | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4956 # ifdef ELAPSED_FUNC |
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4957 ELAPSED_INIT(start_tv); |
1823 | 4958 # endif |
4959 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); | |
4960 } | |
4961 if (ta_len > 0 || len > 0) | |
4962 { | |
7 | 4963 /* |
4964 * For pipes: | |
4965 * Check for CTRL-C: send interrupt signal to child. | |
4966 * Check for CTRL-D: EOF, close pipe to child. | |
4967 */ | |
4968 if (len == 1 && (pty_master_fd < 0 || cmd != NULL)) | |
4969 { | |
4970 /* | |
4971 * Send SIGINT to the child's group or all | |
4972 * processes in our group. | |
4973 */ | |
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
|
4974 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
|
4975 |
7 | 4976 if (pty_master_fd < 0 && toshell_fd >= 0 |
4977 && ta_buf[ta_len] == Ctrl_D) | |
4978 { | |
4979 close(toshell_fd); | |
4980 toshell_fd = -1; | |
4981 } | |
4982 } | |
4983 | |
4984 /* replace K_BS by <BS> and K_DEL by <DEL> */ | |
4985 for (i = ta_len; i < ta_len + len; ++i) | |
4986 { | |
4987 if (ta_buf[i] == CSI && len - i > 2) | |
4988 { | |
4989 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); | |
4990 if (c == K_DEL || c == K_KDEL || c == K_BS) | |
4991 { | |
4992 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, | |
4993 (size_t)(len - i - 2)); | |
4994 if (c == K_DEL || c == K_KDEL) | |
4995 ta_buf[i] = DEL; | |
4996 else | |
4997 ta_buf[i] = Ctrl_H; | |
4998 len -= 2; | |
4999 } | |
5000 } | |
5001 else if (ta_buf[i] == '\r') | |
5002 ta_buf[i] = '\n'; | |
5003 if (has_mbyte) | |
1903 | 5004 i += (*mb_ptr2len_len)(ta_buf + i, |
5005 ta_len + len - i) - 1; | |
7 | 5006 } |
5007 | |
5008 /* | |
5009 * For pipes: echo the typed characters. | |
5010 * For a pty this does not seem to work. | |
5011 */ | |
5012 if (pty_master_fd < 0) | |
5013 { | |
5014 for (i = ta_len; i < ta_len + len; ++i) | |
5015 { | |
5016 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') | |
5017 msg_putchar(ta_buf[i]); | |
5018 else if (has_mbyte) | |
5019 { | |
474 | 5020 int l = (*mb_ptr2len)(ta_buf + i); |
7 | 5021 |
5022 msg_outtrans_len(ta_buf + i, l); | |
5023 i += l - 1; | |
5024 } | |
5025 else | |
5026 msg_outtrans_len(ta_buf + i, 1); | |
5027 } | |
5028 windgoto(msg_row, msg_col); | |
5029 out_flush(); | |
5030 } | |
5031 | |
5032 ta_len += len; | |
5033 | |
5034 /* | |
5035 * Write the characters to the child, unless EOF has | |
5036 * been typed for pipes. Write one character at a | |
1698 | 5037 * time, to avoid losing too much typeahead. |
167 | 5038 * When writing buffer lines, drop the typed |
5039 * characters (only check for CTRL-C). | |
7 | 5040 */ |
167 | 5041 if (options & SHELL_WRITE) |
5042 ta_len = 0; | |
5043 else if (toshell_fd >= 0) | |
7 | 5044 { |
5045 len = write(toshell_fd, (char *)ta_buf, (size_t)1); | |
5046 if (len > 0) | |
5047 { | |
5048 ta_len -= len; | |
5049 mch_memmove(ta_buf, ta_buf + len, ta_len); | |
5050 } | |
5051 } | |
1823 | 5052 } |
7 | 5053 } |
5054 | |
167 | 5055 if (got_int) |
5056 { | |
5057 /* CTRL-C sends a signal to the child, we ignore it | |
5058 * ourselves */ | |
5059 # ifdef HAVE_SETSID | |
5060 kill(-pid, SIGINT); | |
5061 # else | |
5062 kill(0, SIGINT); | |
5063 # endif | |
5064 if (wpid > 0) | |
5065 kill(wpid, SIGINT); | |
5066 got_int = FALSE; | |
5067 } | |
5068 | |
7 | 5069 /* |
5070 * Check if the child has any characters to be printed. | |
5071 * Read them and write them to our window. Repeat this as | |
5072 * long as there is something to do, avoid the 10ms wait | |
5073 * for mch_inchar(), or sending typeahead characters to | |
5074 * the external process. | |
5075 * TODO: This should handle escape sequences, compatible | |
5076 * to some terminal (vt52?). | |
5077 */ | |
167 | 5078 ++noread_cnt; |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
5079 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL)) |
7 | 5080 { |
2664 | 5081 len = read_eintr(fromshell_fd, buffer |
7 | 5082 + buffer_off, (size_t)(BUFLEN - buffer_off) |
5083 ); | |
5084 if (len <= 0) /* end of file or error */ | |
5085 goto finished; | |
167 | 5086 |
5087 noread_cnt = 0; | |
5088 if (options & SHELL_READ) | |
5089 { | |
5090 /* Do NUL -> NL translation, append NL separated | |
5091 * lines to the current buffer. */ | |
5092 for (i = 0; i < len; ++i) | |
5093 { | |
5094 if (buffer[i] == NL) | |
5095 append_ga_line(&ga); | |
5096 else if (buffer[i] == NUL) | |
5097 ga_append(&ga, NL); | |
5098 else | |
5099 ga_append(&ga, buffer[i]); | |
5100 } | |
5101 } | |
5102 else if (has_mbyte) | |
7 | 5103 { |
5104 int l; | |
13478
601d797cca88
patch 8.0.1613: warning for unused variable in tiny build
Christian Brabandt <cb@256bit.org>
parents:
13470
diff
changeset
|
5105 char_u *p; |
7 | 5106 |
167 | 5107 len += buffer_off; |
5108 buffer[len] = NUL; | |
5109 | |
7 | 5110 /* Check if the last character in buffer[] is |
5111 * incomplete, keep these bytes for the next | |
5112 * round. */ | |
5113 for (p = buffer; p < buffer + len; p += l) | |
5114 { | |
9898
bff8a09016a5
commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents:
9873
diff
changeset
|
5115 l = MB_CPTR2LEN(p); |
7 | 5116 if (l == 0) |
5117 l = 1; /* NUL byte? */ | |
5118 else if (MB_BYTE2LEN(*p) != l) | |
5119 break; | |
5120 } | |
5121 if (p == buffer) /* no complete character */ | |
5122 { | |
5123 /* avoid getting stuck at an illegal byte */ | |
5124 if (len >= 12) | |
5125 ++p; | |
5126 else | |
5127 { | |
5128 buffer_off = len; | |
5129 continue; | |
5130 } | |
5131 } | |
5132 c = *p; | |
5133 *p = NUL; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5134 msg_puts((char *)buffer); |
7 | 5135 if (p < buffer + len) |
5136 { | |
5137 *p = c; | |
5138 buffer_off = (buffer + len) - p; | |
5139 mch_memmove(buffer, p, buffer_off); | |
5140 continue; | |
5141 } | |
5142 buffer_off = 0; | |
5143 } | |
5144 else | |
5145 { | |
5146 buffer[len] = NUL; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5147 msg_puts((char *)buffer); |
7 | 5148 } |
5149 | |
5150 windgoto(msg_row, msg_col); | |
5151 cursor_on(); | |
5152 out_flush(); | |
5153 if (got_int) | |
5154 break; | |
1823 | 5155 |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5156 # ifdef ELAPSED_FUNC |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5157 if (wait_pid == 0) |
1823 | 5158 { |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
5159 long msec = ELAPSED_FUNC(start_tv); |
1823 | 5160 |
5161 /* Avoid that we keep looping here without | |
5162 * checking for a CTRL-C for a long time. Don't | |
5163 * break out too often to avoid losing typeahead. */ | |
5164 if (msec > 2000) | |
5165 { | |
5166 noread_cnt = 5; | |
5167 break; | |
5168 } | |
5169 } | |
5170 # endif | |
7 | 5171 } |
5172 | |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5173 /* 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
|
5174 * 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
|
5175 * buffered. */ |
602 | 5176 if (wait_pid == pid) |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5177 { |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5178 if (noread_cnt < 5) |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5179 continue; |
602 | 5180 break; |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
5181 } |
602 | 5182 |
7 | 5183 /* |
5184 * Check if the child still exists, before checking for | |
1698 | 5185 * typed characters (otherwise we would lose typeahead). |
7 | 5186 */ |
167 | 5187 # ifdef __NeXT__ |
3048 | 5188 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); |
167 | 5189 # else |
7 | 5190 wait_pid = waitpid(pid, &status, WNOHANG); |
167 | 5191 # endif |
7 | 5192 if ((wait_pid == (pid_t)-1 && errno == ECHILD) |
5193 || (wait_pid == pid && WIFEXITED(status))) | |
5194 { | |
602 | 5195 /* Don't break the loop yet, try reading more |
5196 * characters from "fromshell_fd" first. When using | |
5197 * pipes there might still be something to read and | |
5198 * then we'll break the loop at the "break" above. */ | |
7 | 5199 wait_pid = pid; |
5200 } | |
602 | 5201 else |
5202 wait_pid = 0; | |
4230 | 5203 |
4248 | 5204 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 5205 /* Handle any X events, e.g. serving the clipboard. */ |
5206 clip_update(); | |
5207 # endif | |
7 | 5208 } |
5209 finished: | |
5210 p_more = p_more_save; | |
167 | 5211 if (options & SHELL_READ) |
5212 { | |
5213 if (ga.ga_len > 0) | |
5214 { | |
5215 append_ga_line(&ga); | |
5216 /* remember that the NL was missing */ | |
2707 | 5217 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; |
167 | 5218 } |
5219 else | |
2707 | 5220 curbuf->b_no_eol_lnum = 0; |
167 | 5221 ga_clear(&ga); |
5222 } | |
5223 | |
7 | 5224 /* |
5225 * Give all typeahead that wasn't used back to ui_inchar(). | |
5226 */ | |
5227 if (ta_len) | |
5228 ui_inchar_undo(ta_buf, ta_len); | |
5229 State = old_State; | |
5230 if (toshell_fd >= 0) | |
5231 close(toshell_fd); | |
5232 close(fromshell_fd); | |
5233 } | |
4248 | 5234 # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
4230 | 5235 else |
5236 { | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5237 long delay_msec = 1; |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5238 |
4230 | 5239 /* |
5240 * Similar to the loop above, but only handle X events, no | |
5241 * I/O. | |
5242 */ | |
5243 for (;;) | |
5244 { | |
5245 if (got_int) | |
5246 { | |
5247 /* CTRL-C sends a signal to the child, we ignore it | |
5248 * ourselves */ | |
5249 # ifdef HAVE_SETSID | |
5250 kill(-pid, SIGINT); | |
5251 # else | |
5252 kill(0, SIGINT); | |
5253 # endif | |
5254 got_int = FALSE; | |
5255 } | |
5256 # ifdef __NeXT__ | |
5257 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); | |
5258 # else | |
5259 wait_pid = waitpid(pid, &status, WNOHANG); | |
5260 # endif | |
5261 if ((wait_pid == (pid_t)-1 && errno == ECHILD) | |
5262 || (wait_pid == pid && WIFEXITED(status))) | |
5263 { | |
5264 wait_pid = pid; | |
5265 break; | |
5266 } | |
5267 | |
5268 /* Handle any X events, e.g. serving the clipboard. */ | |
5269 clip_update(); | |
5270 | |
10019
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5271 /* 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
|
5272 * less time. */ |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5273 mch_delay(delay_msec, TRUE); |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5274 if (++delay_msec > 10) |
782a8070c3a6
commit https://github.com/vim/vim/commit/0abe0522d0e52b50c6eab52323be558eb56fe95e
Christian Brabandt <cb@256bit.org>
parents:
9898
diff
changeset
|
5275 delay_msec = 10; |
4230 | 5276 } |
5277 } | |
5278 # endif | |
7 | 5279 |
5280 /* | |
5281 * Wait until our child has exited. | |
5282 * Ignore wait() returning pids of other children and returning | |
5283 * because of some signal like SIGWINCH. | |
5284 * Don't wait if wait_pid was already set above, indicating the | |
5285 * child already exited. | |
5286 */ | |
3048 | 5287 if (wait_pid != pid) |
5288 wait_pid = wait4pid(pid, &status); | |
7 | 5289 |
2600 | 5290 # ifdef FEAT_GUI |
5291 /* Close slave side of pty. Only do this after the child has | |
5292 * exited, otherwise the child may hang when it tries to write on | |
5293 * the pty. */ | |
5294 if (pty_master_fd >= 0) | |
5295 close(pty_slave_fd); | |
5296 # endif | |
5297 | |
167 | 5298 /* Make sure the child that writes to the external program is |
5299 * dead. */ | |
5300 if (wpid > 0) | |
3048 | 5301 { |
167 | 5302 kill(wpid, SIGKILL); |
3048 | 5303 wait4pid(wpid, NULL); |
5304 } | |
167 | 5305 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5306 # ifdef FEAT_JOB_CHANNEL |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5307 --dont_check_job_ended; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5308 # endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5309 |
7 | 5310 /* |
5311 * Set to raw mode right now, otherwise a CTRL-C after | |
5312 * catch_signals() will kill Vim. | |
5313 */ | |
5314 if (tmode == TMODE_RAW) | |
5315 settmode(TMODE_RAW); | |
5316 did_settmode = TRUE; | |
5317 set_signals(); | |
5318 | |
5319 if (WIFEXITED(status)) | |
5320 { | |
129 | 5321 /* LINTED avoid "bitwise operation on signed value" */ |
7 | 5322 retval = WEXITSTATUS(status); |
4074 | 5323 if (retval != 0 && !emsg_silent) |
7 | 5324 { |
5325 if (retval == EXEC_FAILED) | |
5326 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5327 msg_puts(_("\nCannot execute shell ")); |
7 | 5328 msg_outtrans(p_sh); |
5329 msg_putchar('\n'); | |
5330 } | |
5331 else if (!(options & SHELL_SILENT)) | |
5332 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5333 msg_puts(_("\nshell returned ")); |
7 | 5334 msg_outnum((long)retval); |
5335 msg_putchar('\n'); | |
5336 } | |
5337 } | |
5338 } | |
5339 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
5340 msg_puts(_("\nCommand terminated\n")); |
7 | 5341 } |
5342 } | |
5343 | |
5344 error: | |
5345 if (!did_settmode) | |
5346 if (tmode == TMODE_RAW) | |
5347 settmode(TMODE_RAW); /* set to raw mode */ | |
5348 # ifdef FEAT_TITLE | |
5349 resettitle(); | |
5350 # 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
|
5351 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
|
5352 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
|
5353 vim_free(tofree2); |
7 | 5354 |
5355 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
|
5356 } |
7 | 5357 #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
|
5358 |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5359 int |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5360 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
|
5361 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
|
5362 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
|
5363 { |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5364 #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
|
5365 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
|
5366 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
|
5367 #endif |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5368 #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
|
5369 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
|
5370 #else |
6faef782f50b
patch 8.0.1609: shell commands in the GUI use a dumb terminal
Christian Brabandt <cb@256bit.org>
parents:
13396
diff
changeset
|
5371 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
|
5372 #endif |
7 | 5373 } |
5374 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5375 #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
|
5376 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
|
5377 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
|
5378 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5379 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
|
5380 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
|
5381 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
|
5382 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
|
5383 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
|
5384 int pty_slave_fd = -1; |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
5385 channel_T *channel = NULL; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5386 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
|
5387 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
|
5388 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
|
5389 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
|
5390 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
|
5391 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
|
5392 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
|
5393 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
|
5394 SIGSET_DECL(curset) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5395 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5396 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
|
5397 use_null_for_err = TRUE; |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5398 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5399 /* default is to fail */ |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5400 job->jv_status = JOB_FAILED; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5401 |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5402 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
|
5403 && (!(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
|
5404 || !(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
|
5405 || !(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
|
5406 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
|
5407 &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
|
5408 |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
5409 /* 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
|
5410 /* 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
|
5411 if (use_file_for_in) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5412 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5413 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
|
5414 |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5415 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
|
5416 if (fd_in[0] < 0) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5417 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5418 semsg(_(e_notopen), fname); |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5419 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5420 } |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5421 } |
12192
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5422 else |
6947d5bcf57f
patch 8.0.0976: cannot send lines to a terminal job
Christian Brabandt <cb@256bit.org>
parents:
12104
diff
changeset
|
5423 /* 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
|
5424 * 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
|
5425 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
|
5426 && 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
|
5427 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5428 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5429 if (use_file_for_out) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5430 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5431 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
|
5432 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5433 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
|
5434 if (fd_out[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5435 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5436 semsg(_(e_notopen), fname); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5437 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5438 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5439 } |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5440 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
|
5441 goto failed; |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5442 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5443 if (use_file_for_err) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5444 { |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5445 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
|
5446 |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5447 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
|
5448 if (fd_err[1] < 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5449 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5450 semsg(_(e_notopen), fname); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5451 goto failed; |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5452 } |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5453 } |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5454 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
|
5455 && 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
|
5456 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5457 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5458 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
|
5459 { |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5460 if (options->jo_set & JO_CHANNEL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5461 { |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5462 channel = options->jo_channel; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5463 if (channel != NULL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5464 ++channel->ch_refcount; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5465 } |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5466 else |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5467 channel = add_channel(); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5468 if (channel == NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5469 goto failed; |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5470 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
|
5471 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
|
5472 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
|
5473 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5474 |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5475 BLOCK_SIGNALS(&curset); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5476 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
|
5477 if (pid == -1) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5478 { |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5479 /* failed to fork */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5480 UNBLOCK_SIGNALS(&curset); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5481 goto failed; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5482 } |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5483 if (pid == 0) |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5484 { |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5485 int null_fd = -1; |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5486 int stderr_works = TRUE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5487 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5488 /* child */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5489 reset_signals(); /* handle signals normally */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5490 UNBLOCK_SIGNALS(&curset); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5491 |
13357
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5492 # 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
|
5493 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
|
5494 /* 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
|
5495 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
|
5496 # endif |
179586a64f53
patch 8.0.1552: may leak file descriptors when executing job
Christian Brabandt <cb@256bit.org>
parents:
13355
diff
changeset
|
5497 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5498 # ifdef HAVE_SETSID |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5499 /* 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
|
5500 * 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
|
5501 * 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
|
5502 (void)setsid(); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5503 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5504 |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5505 # ifdef FEAT_TERMINAL |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5506 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
|
5507 { |
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
|
5508 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
|
5509 |
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
|
5510 #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
|
5511 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
|
5512 /* 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
|
5513 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
|
5514 #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
|
5515 /* 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
|
5516 * 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
|
5517 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
|
5518 term = "xterm"; |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5519 set_child_environment( |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5520 (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
|
5521 (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
|
5522 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
|
5523 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
|
5524 } |
11713
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5525 else |
2ec27561dd76
patch 8.0.0739: terminal resizing doesn't work well.
Christian Brabandt <cb@256bit.org>
parents:
11557
diff
changeset
|
5526 # 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
|
5527 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
|
5528 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5529 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
|
5530 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5531 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
|
5532 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
|
5533 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
|
5534 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5535 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
|
5536 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
|
5537 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5538 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
|
5539 |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
15123
diff
changeset
|
5540 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
|
5541 --todo; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5542 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5543 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5544 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5545 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
|
5546 { |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5547 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
|
5548 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
|
5549 { |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5550 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
|
5551 _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
|
5552 } |
52eea5b73b2a
patch 8.0.0980: Coverity warning for failing to open /dev/null
Christian Brabandt <cb@256bit.org>
parents:
12192
diff
changeset
|
5553 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5554 |
11925
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5555 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
|
5556 { |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5557 /* 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
|
5558 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
|
5559 # ifdef TIOCSCTTY |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5560 /* 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
|
5561 * unless run by root) */ |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5562 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
|
5563 # endif |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5564 } |
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5565 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5566 /* 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
|
5567 close(0); |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5568 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
|
5569 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
|
5570 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
|
5571 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
|
5572 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
|
5573 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
|
5574 |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5575 /* 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
|
5576 close(2); |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5577 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
|
5578 { |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
14718
diff
changeset
|
5579 vim_ignored = dup(null_fd); |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5580 stderr_works = FALSE; |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5581 } |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5582 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
|
5583 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
|
5584 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
|
5585 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
|
5586 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
|
5587 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
|
5588 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5589 /* 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
|
5590 close(1); |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
5591 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
|
5592 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
|
5593 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
|
5594 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
|
5595 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
|
5596 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
|
5597 |
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5598 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
|
5599 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
|
5600 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
|
5601 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
|
5602 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
|
5603 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
|
5604 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
|
5605 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
|
5606 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
|
5607 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
|
5608 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
|
5609 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
|
5610 if (pty_master_fd >= 0) |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5611 { |
11925
fe6675d67a10
patch 8.0.0842: using slave pty after closing it
Christian Brabandt <cb@256bit.org>
parents:
11919
diff
changeset
|
5612 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
|
5613 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
|
5614 } |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
5615 |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5616 if (null_fd >= 0) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5617 close(null_fd); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5618 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5619 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
|
5620 _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
|
5621 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5622 /* See above for type of argv. */ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5623 execvp(argv[0], argv); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5624 |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5625 if (stderr_works) |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
5626 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
|
5627 # ifdef EXITFREE |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5628 /* 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
|
5629 * 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
|
5630 # endif |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5631 _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
|
5632 } |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5633 |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5634 /* parent */ |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5635 UNBLOCK_SIGNALS(&curset); |
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
10279
diff
changeset
|
5636 |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5637 job->jv_pid = pid; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5638 job->jv_status = JOB_STARTED; |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5639 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
|
5640 |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11717
diff
changeset
|
5641 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
|
5642 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
|
5643 /* 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
|
5644 if (fd_in[0] >= 0) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
5645 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
|
5646 if (fd_out[1] >= 0) |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5647 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
|
5648 if (fd_err[1] >= 0) |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
5649 close(fd_err[1]); |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5650 if (channel != NULL) |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5651 { |
16227
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5652 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
|
5653 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
|
5654 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
|
5655 |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5656 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
|
5657 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
|
5658 |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5659 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
|
5660 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
|
5661 |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5662 // 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
|
5663 // 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
|
5664 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
|
5665 { |
a70f0d6686c4
patch 8.1.1118: a couple of conditions are hard to understand
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
5666 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
|
5667 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
|
5668 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
|
5669 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
|
5670 } |
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
|
5671 |
5f6c61a71c02
patch 8.0.1761: job in terminal window with no output channel is killed
Christian Brabandt <cb@256bit.org>
parents:
13762
diff
changeset
|
5672 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
|
5673 channel_set_job(channel, job, options); |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5674 } |
11894
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5675 else |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5676 { |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5677 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
|
5678 close(fd_in[1]); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5679 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
|
5680 close(fd_out[0]); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5681 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
|
5682 close(fd_err[0]); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5683 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
|
5684 close(pty_master_fd); |
75a85e99f53e
patch 8.0.0827: Coverity: could leak pty file descriptor
Christian Brabandt <cb@256bit.org>
parents:
11834
diff
changeset
|
5685 } |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5686 |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
5687 /* success! */ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5688 return; |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5689 |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
5690 failed: |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
5691 channel_unref(channel); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5692 if (fd_in[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5693 close(fd_in[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5694 if (fd_in[1] >= 0) |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5695 close(fd_in[1]); |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5696 if (fd_out[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5697 close(fd_out[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5698 if (fd_out[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5699 close(fd_out[1]); |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5700 if (fd_err[0] >= 0) |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5701 close(fd_err[0]); |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5702 if (fd_err[1] >= 0) |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5703 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
|
5704 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
|
5705 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
|
5706 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
|
5707 close(pty_slave_fd); |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5708 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5709 |
15711
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5710 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
|
5711 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
|
5712 { |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5713 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
|
5714 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
|
5715 |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5716 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
|
5717 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
|
5718 |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5719 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
|
5720 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
|
5721 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
|
5722 |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5723 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
|
5724 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
|
5725 } |
287104a1d51e
patch 8.1.0863: cannot see what signal caused a job to end
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
5726 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5727 char * |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5728 mch_job_status(job_T *job) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5729 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5730 # ifdef HAVE_UNION_WAIT |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5731 union wait status; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5732 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5733 int status = -1; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5734 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5735 pid_t wait_pid = 0; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5736 |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5737 # ifdef __NeXT__ |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5738 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
|
5739 # else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5740 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
|
5741 # endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5742 if (wait_pid == -1) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5743 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5744 /* 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
|
5745 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
|
5746 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
|
5747 strerror(errno)); |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5748 goto return_dead; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5749 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5750 if (wait_pid == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5751 return "run"; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5752 if (WIFEXITED(status)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5753 { |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5754 /* 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
|
5755 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
|
5756 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
|
5757 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
|
5758 goto return_dead; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5759 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5760 if (WIFSIGNALED(status)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5761 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5762 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
|
5763 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
|
5764 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
|
5765 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
|
5766 job->jv_termsig); |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5767 goto return_dead; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5768 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5769 return "run"; |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5770 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5771 return_dead: |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10375
diff
changeset
|
5772 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
|
5773 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5774 return "dead"; |
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 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5777 job_T * |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5778 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
|
5779 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5780 # ifdef HAVE_UNION_WAIT |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5781 union wait status; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5782 # else |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5783 int status = -1; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5784 # endif |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5785 pid_t wait_pid = 0; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5786 job_T *job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5787 |
10353
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5788 # ifndef USE_SYSTEM |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5789 /* 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
|
5790 * 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
|
5791 * would then be wrong. */ |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5792 if (dont_check_job_ended > 0) |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5793 return NULL; |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5794 # endif |
72d92c31b9f7
commit https://github.com/vim/vim/commit/c4d4ac22f78fb1394c79eccc8a1e6812c0c7d8a7
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
5795 |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5796 # ifdef __NeXT__ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5797 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
|
5798 # else |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5799 wait_pid = waitpid(-1, &status, WNOHANG); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5800 # endif |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5801 if (wait_pid <= 0) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5802 /* no process ended */ |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5803 return NULL; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5804 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
|
5805 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5806 if (job->jv_pid == wait_pid) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5807 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5808 if (WIFEXITED(status)) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5809 /* 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
|
5810 job->jv_exitval = WEXITSTATUS(status); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5811 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
|
5812 { |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5813 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
|
5814 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
|
5815 } |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10375
diff
changeset
|
5816 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
|
5817 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5818 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
|
5819 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5820 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5821 return job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5822 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5823 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10266
diff
changeset
|
5824 return NULL; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5825 } |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5826 |
10320
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5827 /* |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5828 * Send a (deadly) signal to "job". |
6ab770e97152
commit https://github.com/vim/vim/commit/3a117e19e02bf29cfc5e398470dd7851ae3d6803
Christian Brabandt <cb@256bit.org>
parents:
10309
diff
changeset
|
5829 * 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
|
5830 */ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5831 int |
12037
85f0f557661e
patch 8.0.0899: function name mch_stop_job() is confusing
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
5832 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
|
5833 { |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5834 int sig = -1; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5835 |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5836 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
|
5837 sig = SIGTERM; |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5838 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
|
5839 sig = SIGHUP; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5840 else if (STRCMP(how, "quit") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5841 sig = SIGQUIT; |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5842 else if (STRCMP(how, "int") == 0) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
5843 sig = SIGINT; |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5844 else if (STRCMP(how, "kill") == 0) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5845 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
|
5846 #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
|
5847 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
|
5848 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
|
5849 #endif |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5850 else if (isdigit(*how)) |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5851 sig = atoi((char *)how); |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5852 else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5853 return FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5854 |
15123
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5855 // 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
|
5856 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
|
5857 { |
7d2ed364a8a0
patch 8.1.0572: stopping a job does not work properly on OpenBSD
Bram Moolenaar <Bram@vim.org>
parents:
15029
diff
changeset
|
5858 // 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
|
5859 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
|
5860 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
|
5861 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5862 |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5863 return OK; |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5864 } |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5865 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5866 /* |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5867 * Clear the data related to "job". |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5868 */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5869 void |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5870 mch_clear_job(job_T *job) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5871 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5872 /* 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
|
5873 # ifdef __NeXT__ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5874 (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
|
5875 # else |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
5876 (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
|
5877 # endif |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
5878 } |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5879 #endif |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
5880 |
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
|
5881 #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
|
5882 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
|
5883 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
|
5884 { |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5885 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
|
5886 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
|
5887 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
|
5888 |
15766
9d18e8457209
patch 8.1.0890: pty allocation wrong if using file for out channel
Bram Moolenaar <Bram@vim.org>
parents:
15711
diff
changeset
|
5889 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
|
5890 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
|
5891 |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5892 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
|
5893 if (channel == NULL) |
12369
d7f087d1b0e5
patch 8.0.1064: Coverity warns for leaking resource
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
5894 { |
d7f087d1b0e5
patch 8.0.1064: Coverity warns for leaking resource
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
5895 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
|
5896 return FAIL; |
12369
d7f087d1b0e5
patch 8.0.1064: Coverity warns for leaking resource
Christian Brabandt <cb@256bit.org>
parents:
12343
diff
changeset
|
5897 } |
12584
f28067b83dec
patch 8.0.1170: using termdebug results in 100% CPU time
Christian Brabandt <cb@256bit.org>
parents:
12389
diff
changeset
|
5898 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
|
5899 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
|
5900 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
|
5901 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
|
5902 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
|
5903 |
13847
fa0dcdaec6a3
patch 8.0.1795: lose contact with jobs when :gui forks
Christian Brabandt <cb@256bit.org>
parents:
13778
diff
changeset
|
5904 /* 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
|
5905 * 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
|
5906 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
|
5907 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
|
5908 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
|
5909 } |
24abce52ad20
patch 8.0.1000: cannot open a terminal without running a job in it
Christian Brabandt <cb@256bit.org>
parents:
12200
diff
changeset
|
5910 #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
|
5911 |
7 | 5912 /* |
5913 * Check for CTRL-C typed by reading all available characters. | |
5914 * In cooked mode we should get SIGINT, no need to check. | |
5915 */ | |
5916 void | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5917 mch_breakcheck(int force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5918 { |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5919 if ((curr_tmode == TMODE_RAW || force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5920 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL)) |
7 | 5921 fill_input_buf(FALSE); |
5922 } | |
5923 | |
5924 /* | |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5925 * 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
|
5926 * from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5927 * "msec" == -1 will block forever. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5928 * 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
|
5929 * 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
|
5930 * already available. |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5931 * "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
|
5932 * 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
|
5933 * Returns TRUE when a character is available. |
7 | 5934 * When a GUI is being used, this will never get called -- webb |
5935 */ | |
5936 static int | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5937 WaitForChar(long msec, int *interrupted, int ignore_input) |
7 | 5938 { |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5939 #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
|
5940 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
|
5941 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
|
5942 #else |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5943 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
|
5944 #endif |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5945 } |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5946 |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5947 /* |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5948 * 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
|
5949 * or from inbuf[]. |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5950 * "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
|
5951 * for "ignore_input" see WaitForCharOr(). |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
5952 * "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
|
5953 * 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
|
5954 * 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
|
5955 */ |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
5956 static int |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5957 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
|
5958 { |
7 | 5959 #ifdef FEAT_MOUSE_GPM |
5960 int gpm_process_wanted; | |
5961 #endif | |
5962 #ifdef FEAT_XCLIPBOARD | |
5963 int rest; | |
5964 #endif | |
5965 int avail; | |
5966 | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
5967 if (!ignore_input && input_available()) /* something in inbuf[] */ |
7 | 5968 return 1; |
5969 | |
5970 #if defined(FEAT_MOUSE_DEC) | |
5971 /* May need to query the mouse position. */ | |
5972 if (WantQueryMouse) | |
5973 { | |
227 | 5974 WantQueryMouse = FALSE; |
16489
42910f306377
patch 8.1.1248: no test for dec mouse
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
5975 if (!no_query_mouse_for_testing) |
42910f306377
patch 8.1.1248: no test for dec mouse
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
5976 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5); |
7 | 5977 } |
5978 #endif | |
5979 | |
5980 /* | |
5981 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse | |
5982 * events. This is a bit complicated, because they might both be defined. | |
5983 */ | |
5984 #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD) | |
5985 # ifdef FEAT_XCLIPBOARD | |
5986 rest = 0; | |
5987 if (do_xterm_trace()) | |
5988 rest = msec; | |
5989 # endif | |
5990 do | |
5991 { | |
5992 # ifdef FEAT_XCLIPBOARD | |
5993 if (rest != 0) | |
5994 { | |
5995 msec = XT_TRACE_DELAY; | |
5996 if (rest >= 0 && rest < XT_TRACE_DELAY) | |
5997 msec = rest; | |
5998 if (rest >= 0) | |
5999 rest -= msec; | |
6000 } | |
6001 # endif | |
6002 # ifdef FEAT_MOUSE_GPM | |
6003 gpm_process_wanted = 0; | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
6004 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
|
6005 &gpm_process_wanted, interrupted); |
7 | 6006 # else |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6007 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 6008 # endif |
6009 if (!avail) | |
6010 { | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11933
diff
changeset
|
6011 if (!ignore_input && input_available()) |
7 | 6012 return 1; |
6013 # ifdef FEAT_XCLIPBOARD | |
6014 if (rest == 0 || !do_xterm_trace()) | |
6015 # endif | |
6016 break; | |
6017 } | |
6018 } | |
6019 while (FALSE | |
6020 # ifdef FEAT_MOUSE_GPM | |
6021 || (gpm_process_wanted && mch_gpm_process() == 0) | |
6022 # endif | |
6023 # ifdef FEAT_XCLIPBOARD | |
6024 || (!avail && rest != 0) | |
6025 # endif | |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
6026 ) |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
6027 ; |
7 | 6028 |
6029 #else | |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6030 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
7 | 6031 #endif |
6032 return avail; | |
6033 } | |
6034 | |
5541 | 6035 #ifndef VMS |
7 | 6036 /* |
6037 * Wait "msec" msec until a character is available from file descriptor "fd". | |
3046 | 6038 * "msec" == 0 will check for characters once. |
6039 * "msec" == -1 will block until a character is available. | |
7 | 6040 * When a GUI is being used, this will not be used for input -- webb |
6041 * 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
|
6042 * 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
|
6043 * "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
|
6044 * but something else needs to be done. |
7 | 6045 */ |
6046 #if defined(__BEOS__) | |
6047 int | |
6048 #else | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6049 static int |
7 | 6050 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6051 RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) |
7 | 6052 { |
6053 int ret; | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6054 int result; |
14 | 6055 #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) |
7 | 6056 static int busy = FALSE; |
6057 | |
6058 /* May retry getting characters after an event was handled. */ | |
6059 # define MAY_LOOP | |
6060 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6061 # ifdef ELAPSED_FUNC |
7 | 6062 /* Remember at what time we started, so that we know how much longer we |
6063 * 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
|
6064 long start_msec = msec; |
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6065 elapsed_T start_tv; |
7 | 6066 |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
6067 if (msec > 0) |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6068 ELAPSED_INIT(start_tv); |
7 | 6069 # endif |
6070 | |
6071 /* Handle being called recursively. This may happen for the session | |
6072 * manager stuff, it may save the file, which does a breakcheck. */ | |
6073 if (busy) | |
6074 return 0; | |
6075 #endif | |
6076 | |
6077 #ifdef MAY_LOOP | |
407 | 6078 for (;;) |
7 | 6079 #endif |
6080 { | |
6081 #ifdef MAY_LOOP | |
6082 int finished = TRUE; /* default is to 'loop' just once */ | |
14 | 6083 # ifdef FEAT_MZSCHEME |
6084 int mzquantum_used = FALSE; | |
6085 # endif | |
7 | 6086 #endif |
6087 #ifndef HAVE_SELECT | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6088 /* 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
|
6089 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS]; |
7 | 6090 int nfd; |
6091 # ifdef FEAT_XCLIPBOARD | |
6092 int xterm_idx = -1; | |
6093 # endif | |
6094 # ifdef FEAT_MOUSE_GPM | |
6095 int gpm_idx = -1; | |
6096 # endif | |
6097 # ifdef USE_XSMP | |
6098 int xsmp_idx = -1; | |
6099 # endif | |
14 | 6100 int towait = (int)msec; |
6101 | |
6102 # ifdef FEAT_MZSCHEME | |
6103 mzvim_check_threads(); | |
6104 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
6105 { | |
6106 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */ | |
6107 mzquantum_used = TRUE; | |
6108 } | |
6109 # endif | |
7 | 6110 fds[0].fd = fd; |
6111 fds[0].events = POLLIN; | |
6112 nfd = 1; | |
6113 | |
6114 # ifdef FEAT_XCLIPBOARD | |
6383 | 6115 may_restore_clipboard(); |
7 | 6116 if (xterm_Shell != (Widget)0) |
6117 { | |
6118 xterm_idx = nfd; | |
6119 fds[nfd].fd = ConnectionNumber(xterm_dpy); | |
6120 fds[nfd].events = POLLIN; | |
6121 nfd++; | |
6122 } | |
6123 # endif | |
6124 # ifdef FEAT_MOUSE_GPM | |
6125 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
6126 { | |
6127 gpm_idx = nfd; | |
6128 fds[nfd].fd = gpm_fd; | |
6129 fds[nfd].events = POLLIN; | |
6130 nfd++; | |
6131 } | |
6132 # endif | |
6133 # ifdef USE_XSMP | |
6134 if (xsmp_icefd != -1) | |
6135 { | |
6136 xsmp_idx = nfd; | |
6137 fds[nfd].fd = xsmp_icefd; | |
6138 fds[nfd].events = POLLIN; | |
6139 nfd++; | |
6140 } | |
6141 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6142 #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
|
6143 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
|
6144 #endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6145 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6146 *interrupted = FALSE; |
7 | 6147 |
14 | 6148 ret = poll(fds, nfd, towait); |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6149 |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6150 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
|
6151 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
|
6152 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6153 |
14 | 6154 # ifdef FEAT_MZSCHEME |
6155 if (ret == 0 && mzquantum_used) | |
1450 | 6156 /* MzThreads scheduling is required and timeout occurred */ |
14 | 6157 finished = FALSE; |
6158 # endif | |
7 | 6159 |
6160 # ifdef FEAT_XCLIPBOARD | |
6161 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN)) | |
6162 { | |
6163 xterm_update(); /* Maybe we should hand out clipboard */ | |
6164 if (--ret == 0 && !input_available()) | |
6165 /* Try again */ | |
6166 finished = FALSE; | |
6167 } | |
6168 # endif | |
6169 # ifdef FEAT_MOUSE_GPM | |
6170 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN)) | |
6171 *check_for_gpm = 1; | |
6172 # endif | |
6173 # ifdef USE_XSMP | |
6174 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP))) | |
6175 { | |
6176 if (fds[xsmp_idx].revents & POLLIN) | |
6177 { | |
6178 busy = TRUE; | |
6179 xsmp_handle_requests(); | |
6180 busy = FALSE; | |
6181 } | |
6182 else if (fds[xsmp_idx].revents & POLLHUP) | |
6183 { | |
6184 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
|
6185 verb_msg(_("XSMP lost ICE connection")); |
7 | 6186 xsmp_close(); |
6187 } | |
6188 if (--ret == 0) | |
14 | 6189 finished = FALSE; /* Try again */ |
7 | 6190 } |
6191 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6192 #ifdef FEAT_JOB_CHANNEL |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
6193 // 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
|
6194 if (ret >= 0) |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
6195 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
|
6196 #endif |
7 | 6197 |
6198 #else /* HAVE_SELECT */ | |
6199 | |
6200 struct timeval tv; | |
14 | 6201 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
|
6202 // 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
|
6203 // 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
|
6204 static fd_set rfds, wfds, efds; |
7 | 6205 int maxfd; |
14 | 6206 long towait = msec; |
6207 | |
6208 # ifdef FEAT_MZSCHEME | |
6209 mzvim_check_threads(); | |
6210 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) | |
6211 { | |
6212 towait = p_mzq; /* don't wait longer than 'mzquantum' */ | |
6213 mzquantum_used = TRUE; | |
6214 } | |
6215 # endif | |
7 | 6216 |
14 | 6217 if (towait >= 0) |
7 | 6218 { |
14 | 6219 tv.tv_sec = towait / 1000; |
6220 tv.tv_usec = (towait % 1000) * (1000000/1000); | |
6221 tvp = &tv; | |
7 | 6222 } |
14 | 6223 else |
6224 tvp = NULL; | |
7 | 6225 |
6226 /* | |
6227 * Select on ready for reading and exceptional condition (end of file). | |
6228 */ | |
3046 | 6229 select_eintr: |
6230 FD_ZERO(&rfds); | |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6231 FD_ZERO(&wfds); |
7 | 6232 FD_ZERO(&efds); |
6233 FD_SET(fd, &rfds); | |
6234 # if !defined(__QNX__) && !defined(__CYGWIN32__) | |
6235 /* For QNX select() always returns 1 if this is set. Why? */ | |
6236 FD_SET(fd, &efds); | |
6237 # endif | |
6238 maxfd = fd; | |
6239 | |
6240 # ifdef FEAT_XCLIPBOARD | |
6383 | 6241 may_restore_clipboard(); |
7 | 6242 if (xterm_Shell != (Widget)0) |
6243 { | |
6244 FD_SET(ConnectionNumber(xterm_dpy), &rfds); | |
6245 if (maxfd < ConnectionNumber(xterm_dpy)) | |
6246 maxfd = ConnectionNumber(xterm_dpy); | |
3748 | 6247 |
6248 /* An event may have already been read but not handled. In | |
6249 * particulary, XFlush may cause this. */ | |
6250 xterm_update(); | |
7 | 6251 } |
6252 # endif | |
6253 # ifdef FEAT_MOUSE_GPM | |
6254 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) | |
6255 { | |
6256 FD_SET(gpm_fd, &rfds); | |
6257 FD_SET(gpm_fd, &efds); | |
6258 if (maxfd < gpm_fd) | |
6259 maxfd = gpm_fd; | |
6260 } | |
6261 # endif | |
6262 # ifdef USE_XSMP | |
6263 if (xsmp_icefd != -1) | |
6264 { | |
6265 FD_SET(xsmp_icefd, &rfds); | |
6266 FD_SET(xsmp_icefd, &efds); | |
6267 if (maxfd < xsmp_icefd) | |
6268 maxfd = xsmp_icefd; | |
6269 } | |
6270 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6271 # 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
|
6272 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
|
6273 # endif |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6274 if (interrupted != NULL) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6275 *interrupted = FALSE; |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6276 |
14718
cf33c47d66aa
patch 8.1.0371: argument types for select() may be wrong
Christian Brabandt <cb@256bit.org>
parents:
14673
diff
changeset
|
6277 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
|
6278 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
|
6279 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
|
6280 if (result) |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6281 --ret; |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6282 else if (interrupted != NULL && ret > 0) |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
6283 *interrupted = TRUE; |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6284 |
3046 | 6285 # ifdef EINTR |
6286 if (ret == -1 && errno == EINTR) | |
3133 | 6287 { |
6288 /* Check whether window has been resized, EINTR may be caused by | |
6289 * SIGWINCH. */ | |
6290 if (do_resize) | |
6291 handle_resize(); | |
6292 | |
3046 | 6293 /* Interrupted by a signal, need to try again. We ignore msec |
6294 * here, because we do want to check even after a timeout if | |
6295 * characters are available. Needed for reading output of an | |
6296 * external command after the process has finished. */ | |
6297 goto select_eintr; | |
3133 | 6298 } |
3046 | 6299 # endif |
1076 | 6300 # ifdef __TANDEM |
6301 if (ret == -1 && errno == ENOTSUP) | |
6302 { | |
6303 FD_ZERO(&rfds); | |
6304 FD_ZERO(&efds); | |
6305 ret = 0; | |
6306 } | |
3046 | 6307 # endif |
14 | 6308 # ifdef FEAT_MZSCHEME |
6309 if (ret == 0 && mzquantum_used) | |
1450 | 6310 /* loop if MzThreads must be scheduled and timeout occurred */ |
14 | 6311 finished = FALSE; |
7 | 6312 # endif |
6313 | |
6314 # ifdef FEAT_XCLIPBOARD | |
6315 if (ret > 0 && xterm_Shell != (Widget)0 | |
6316 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds)) | |
6317 { | |
6318 xterm_update(); /* Maybe we should hand out clipboard */ | |
6319 /* continue looping when we only got the X event and the input | |
6320 * buffer is empty */ | |
6321 if (--ret == 0 && !input_available()) | |
6322 { | |
6323 /* Try again */ | |
6324 finished = FALSE; | |
6325 } | |
6326 } | |
6327 # endif | |
6328 # ifdef FEAT_MOUSE_GPM | |
6329 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0) | |
6330 { | |
6331 if (FD_ISSET(gpm_fd, &efds)) | |
6332 gpm_close(); | |
6333 else if (FD_ISSET(gpm_fd, &rfds)) | |
6334 *check_for_gpm = 1; | |
6335 } | |
6336 # endif | |
6337 # ifdef USE_XSMP | |
6338 if (ret > 0 && xsmp_icefd != -1) | |
6339 { | |
6340 if (FD_ISSET(xsmp_icefd, &efds)) | |
6341 { | |
6342 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
|
6343 verb_msg(_("XSMP lost ICE connection")); |
7 | 6344 xsmp_close(); |
6345 if (--ret == 0) | |
6346 finished = FALSE; /* keep going if event was only one */ | |
6347 } | |
6348 else if (FD_ISSET(xsmp_icefd, &rfds)) | |
6349 { | |
6350 busy = TRUE; | |
6351 xsmp_handle_requests(); | |
6352 busy = FALSE; | |
6353 if (--ret == 0) | |
6354 finished = FALSE; /* keep going if event was only one */ | |
6355 } | |
6356 } | |
6357 # endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
6358 #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
|
6359 /* 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
|
6360 if (ret >= 0) |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
6361 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
|
6362 #endif |
7 | 6363 |
6364 #endif /* HAVE_SELECT */ | |
6365 | |
6366 #ifdef MAY_LOOP | |
6367 if (finished || msec == 0) | |
6368 break; | |
6369 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6370 # ifdef FEAT_CLIENTSERVER |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6371 if (server_waiting()) |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6372 break; |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6373 # endif |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
6374 |
7 | 6375 /* We're going to loop around again, find out for how long */ |
6376 if (msec > 0) | |
6377 { | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6378 # ifdef ELAPSED_FUNC |
7 | 6379 /* Compute remaining wait time. */ |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
6380 msec = start_msec - ELAPSED_FUNC(start_tv); |
7 | 6381 # else |
6382 /* Guess we got interrupted halfway. */ | |
6383 msec = msec / 2; | |
6384 # endif | |
6385 if (msec <= 0) | |
6386 break; /* waited long enough */ | |
6387 } | |
6388 #endif | |
6389 } | |
6390 | |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
6391 return result; |
7 | 6392 } |
6393 | |
6394 #ifndef NO_EXPANDPATH | |
6395 /* | |
444 | 6396 * Expand a path into all matching files and/or directories. Handles "*", |
6397 * "?", "[a-z]", "**", etc. | |
6398 * "path" has backslashes before chars that are not to be expanded. | |
6399 * Returns the number of matches found. | |
7 | 6400 */ |
6401 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6402 mch_expandpath( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6403 garray_T *gap, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6404 char_u *path, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6405 int flags) /* EW_* flags */ |
7 | 6406 { |
444 | 6407 return unix_expandpath(gap, path, 0, flags, FALSE); |
7 | 6408 } |
6409 #endif | |
6410 | |
6411 /* | |
6412 * mch_expand_wildcards() - this code does wild-card pattern matching using | |
6413 * the shell | |
6414 * | |
6415 * return OK for success, FAIL for error (you may lose some memory) and put | |
6416 * an error message in *file. | |
6417 * | |
6418 * num_pat is number of input patterns | |
6419 * pat is array of pointers to input patterns | |
6420 * num_file is pointer to number of matched file names | |
6421 * file is pointer to array of pointers to matched file names | |
6422 */ | |
6423 | |
6424 #ifndef SEEK_SET | |
6425 # define SEEK_SET 0 | |
6426 #endif | |
6427 #ifndef SEEK_END | |
6428 # define SEEK_END 2 | |
6429 #endif | |
6430 | |
822 | 6431 #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|" |
628 | 6432 |
7 | 6433 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6434 mch_expand_wildcards( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6435 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6436 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6437 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6438 char_u ***file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6439 int flags) /* EW_* flags */ |
7 | 6440 { |
6441 int i; | |
6442 size_t len; | |
11281
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6443 long llen; |
7 | 6444 char_u *p; |
6445 int dir; | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9381
diff
changeset
|
6446 |
1508 | 6447 /* |
6448 * This is the non-OS/2 implementation (really Unix). | |
6449 */ | |
7 | 6450 int j; |
6451 char_u *tempname; | |
6452 char_u *command; | |
6453 FILE *fd; | |
6454 char_u *buffer; | |
1508 | 6455 #define STYLE_ECHO 0 /* use "echo", the default */ |
6456 #define STYLE_GLOB 1 /* use "glob", for csh */ | |
6457 #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */ | |
6458 #define STYLE_PRINT 3 /* use "print -N", for zsh */ | |
6459 #define STYLE_BT 4 /* `cmd` expansion, execute the pattern | |
6460 * directly */ | |
7 | 6461 int shell_style = STYLE_ECHO; |
6462 int check_spaces; | |
6463 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
|
6464 int ampersand = FALSE; |
1508 | 6465 /* vimglob() function to define for Posix shell */ |
1620 | 6466 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >"; |
7 | 6467 |
6468 *num_file = 0; /* default: no files found */ | |
6469 *file = NULL; | |
6470 | |
6471 /* | |
6472 * If there are no wildcards, just copy the names to allocated memory. | |
6473 * Saves a lot of time, because we don't have to start a new shell. | |
6474 */ | |
6475 if (!have_wildcard(num_pat, pat)) | |
6476 return save_patterns(num_pat, pat, num_file, file); | |
6477 | |
428 | 6478 # ifdef HAVE_SANDBOX |
6479 /* Don't allow any shell command in the sandbox. */ | |
6480 if (sandbox != 0 && check_secure()) | |
6481 return FAIL; | |
6482 # endif | |
6483 | |
7 | 6484 /* |
6485 * Don't allow the use of backticks in secure and restricted mode. | |
6486 */ | |
428 | 6487 if (secure || restricted) |
7 | 6488 for (i = 0; i < num_pat; ++i) |
6489 if (vim_strchr(pat[i], '`') != NULL | |
6490 && (check_restricted() || check_secure())) | |
6491 return FAIL; | |
6492 | |
6493 /* | |
6494 * get a name for the temp file | |
6495 */ | |
6721 | 6496 if ((tempname = vim_tempname('o', FALSE)) == NULL) |
7 | 6497 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
6498 emsg(_(e_notmp)); |
7 | 6499 return FAIL; |
6500 } | |
6501 | |
6502 /* | |
6503 * Let the shell expand the patterns and write the result into the temp | |
1508 | 6504 * file. |
6505 * STYLE_BT: NL separated | |
6506 * If expanding `cmd` execute it directly. | |
6507 * STYLE_GLOB: NUL separated | |
6508 * If we use *csh, "glob" will work better than "echo". | |
6509 * STYLE_PRINT: NL or NUL separated | |
6510 * If we use *zsh, "print -N" will work better than "glob". | |
6511 * STYLE_VIMGLOB: NL separated | |
6512 * If we use *sh*, we define "vimglob()". | |
6513 * STYLE_ECHO: space separated. | |
6514 * A shell we don't know, stay safe and use "echo". | |
7 | 6515 */ |
6516 if (num_pat == 1 && *pat[0] == '`' | |
6517 && (len = STRLEN(pat[0])) > 2 | |
6518 && *(pat[0] + len - 1) == '`') | |
6519 shell_style = STYLE_BT; | |
6520 else if ((len = STRLEN(p_sh)) >= 3) | |
6521 { | |
6522 if (STRCMP(p_sh + len - 3, "csh") == 0) | |
6523 shell_style = STYLE_GLOB; | |
6524 else if (STRCMP(p_sh + len - 3, "zsh") == 0) | |
6525 shell_style = STYLE_PRINT; | |
6526 } | |
1508 | 6527 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh), |
6528 "sh") != NULL) | |
6529 shell_style = STYLE_VIMGLOB; | |
6530 | |
6531 /* Compute the length of the command. We need 2 extra bytes: for the | |
6532 * optional '&' and for the NUL. | |
6533 * Worst case: "unset nonomatch; print -N >" plus two is 29 */ | |
7 | 6534 len = STRLEN(tempname) + 29; |
1508 | 6535 if (shell_style == STYLE_VIMGLOB) |
6536 len += STRLEN(sh_vimglob_func); | |
6537 | |
147 | 6538 for (i = 0; i < num_pat; ++i) |
6539 { | |
6540 /* Count the length of the patterns in the same way as they are put in | |
6541 * "command" below. */ | |
6542 #ifdef USE_SYSTEM | |
7 | 6543 len += STRLEN(pat[i]) + 3; /* add space and two quotes */ |
147 | 6544 #else |
6545 ++len; /* add space */ | |
628 | 6546 for (j = 0; pat[i][j] != NUL; ++j) |
6547 { | |
6548 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
6549 ++len; /* may add a backslash */ | |
6550 ++len; | |
6551 } | |
147 | 6552 #endif |
6553 } | |
7 | 6554 command = alloc(len); |
6555 if (command == NULL) | |
6556 { | |
6557 /* out of memory */ | |
6558 vim_free(tempname); | |
6559 return FAIL; | |
6560 } | |
6561 | |
6562 /* | |
6563 * Build the shell command: | |
6564 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell | |
6565 * recognizes this). | |
6566 * - Add the shell command to print the expanded names. | |
6567 * - Add the temp file name. | |
6568 * - Add the file name patterns. | |
6569 */ | |
6570 if (shell_style == STYLE_BT) | |
6571 { | |
628 | 6572 /* change `command; command& ` to (command; command ) */ |
6573 STRCPY(command, "("); | |
6574 STRCAT(command, pat[0] + 1); /* exclude first backtick */ | |
7 | 6575 p = command + STRLEN(command) - 1; |
628 | 6576 *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
|
6577 while (p > command && VIM_ISWHITE(*p)) |
7 | 6578 --p; |
6579 if (*p == '&') /* remove trailing '&' */ | |
6580 { | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15955
diff
changeset
|
6581 ampersand = TRUE; |
7 | 6582 *p = ' '; |
6583 } | |
6584 STRCAT(command, ">"); | |
6585 } | |
6586 else | |
6587 { | |
6588 if (flags & EW_NOTFOUND) | |
6589 STRCPY(command, "set nonomatch; "); | |
6590 else | |
6591 STRCPY(command, "unset nonomatch; "); | |
6592 if (shell_style == STYLE_GLOB) | |
6593 STRCAT(command, "glob >"); | |
6594 else if (shell_style == STYLE_PRINT) | |
6595 STRCAT(command, "print -N >"); | |
1508 | 6596 else if (shell_style == STYLE_VIMGLOB) |
6597 STRCAT(command, sh_vimglob_func); | |
7 | 6598 else |
6599 STRCAT(command, "echo >"); | |
6600 } | |
1508 | 6601 |
7 | 6602 STRCAT(command, tempname); |
1508 | 6603 |
7 | 6604 if (shell_style != STYLE_BT) |
6605 for (i = 0; i < num_pat; ++i) | |
6606 { | |
6607 /* When using system() always add extra quotes, because the shell | |
628 | 6608 * is started twice. Otherwise put a backslash before special |
1450 | 6609 * characters, except inside ``. */ |
7 | 6610 #ifdef USE_SYSTEM |
6611 STRCAT(command, " \""); | |
6612 STRCAT(command, pat[i]); | |
6613 STRCAT(command, "\""); | |
6614 #else | |
233 | 6615 int intick = FALSE; |
6616 | |
7 | 6617 p = command + STRLEN(command); |
6618 *p++ = ' '; | |
628 | 6619 for (j = 0; pat[i][j] != NUL; ++j) |
233 | 6620 { |
6621 if (pat[i][j] == '`') | |
6622 intick = !intick; | |
628 | 6623 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL) |
6624 { | |
644 | 6625 /* Remove a backslash, take char literally. But keep |
652 | 6626 * backslash inside backticks, before a special character |
6627 * and before a backtick. */ | |
644 | 6628 if (intick |
652 | 6629 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL |
6630 || pat[i][j + 1] == '`') | |
644 | 6631 *p++ = '\\'; |
648 | 6632 ++j; |
628 | 6633 } |
6174 | 6634 else if (!intick |
6635 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$') | |
6636 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) | |
628 | 6637 /* Put a backslash before a special character, but not |
6174 | 6638 * when inside ``. And not for $var when EW_KEEPDOLLAR is |
6639 * set. */ | |
628 | 6640 *p++ = '\\'; |
648 | 6641 |
6642 /* Copy one character. */ | |
6643 *p++ = pat[i][j]; | |
233 | 6644 } |
7 | 6645 *p = NUL; |
6646 #endif | |
6647 } | |
6648 if (flags & EW_SILENT) | |
6649 show_shell_mess = FALSE; | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15955
diff
changeset
|
6650 if (ampersand) |
1508 | 6651 STRCAT(command, "&"); /* put the '&' after the redirection */ |
7 | 6652 |
6653 /* | |
6654 * Using zsh -G: If a pattern has no matches, it is just deleted from | |
6655 * the argument list, otherwise zsh gives an error message and doesn't | |
6656 * expand any other pattern. | |
6657 */ | |
6658 if (shell_style == STYLE_PRINT) | |
6659 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */ | |
6660 | |
6661 /* | |
6662 * If we use -f then shell variables set in .cshrc won't get expanded. | |
6663 * vi can do it, so we will too, but it is only necessary if there is a "$" | |
6664 * in one of the patterns, otherwise we can still use the fast option. | |
6665 */ | |
6666 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat)) | |
6667 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */ | |
6668 | |
6669 /* | |
6670 * execute the shell command | |
6671 */ | |
6672 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT); | |
6673 | |
6674 /* When running in the background, give it some time to create the temp | |
6675 * 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
|
6676 if (ampersand) |
7 | 6677 mch_delay(10L, TRUE); |
6678 | |
6679 extra_shell_arg = NULL; /* cleanup */ | |
6680 show_shell_mess = TRUE; | |
6681 vim_free(command); | |
6682 | |
1508 | 6683 if (i != 0) /* mch_call_shell() failed */ |
7 | 6684 { |
6685 mch_remove(tempname); | |
6686 vim_free(tempname); | |
6687 /* | |
6688 * With interactive completion, the error message is not printed. | |
6689 * However with USE_SYSTEM, I don't know how to turn off error messages | |
6690 * from the shell, so screen may still get messed up -- webb. | |
6691 */ | |
6692 #ifndef USE_SYSTEM | |
6693 if (!(flags & EW_SILENT)) | |
6694 #endif | |
6695 { | |
6696 redraw_later_clear(); /* probably messed up screen */ | |
6697 msg_putchar('\n'); /* clear bottom line quickly */ | |
6698 cmdline_row = Rows - 1; /* continue on last line */ | |
6699 #ifdef USE_SYSTEM | |
6700 if (!(flags & EW_SILENT)) | |
6701 #endif | |
6702 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
6703 msg(_(e_wildexpand)); |
7 | 6704 msg_start(); /* don't overwrite this message */ |
6705 } | |
6706 } | |
6707 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when | |
6708 * EW_NOTFOUND is given */ | |
6709 if (shell_style == STYLE_BT) | |
6710 return FAIL; | |
6711 goto notfound; | |
6712 } | |
6713 | |
6714 /* | |
6715 * read the names from the file into memory | |
6716 */ | |
6717 fd = fopen((char *)tempname, READBIN); | |
6718 if (fd == NULL) | |
6719 { | |
6720 /* Something went wrong, perhaps a file name with a special char. */ | |
6721 if (!(flags & EW_SILENT)) | |
6722 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15525
diff
changeset
|
6723 msg(_(e_wildexpand)); |
7 | 6724 msg_start(); /* don't overwrite this message */ |
6725 } | |
6726 vim_free(tempname); | |
6727 goto notfound; | |
6728 } | |
6729 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
|
6730 llen = ftell(fd); /* get size of temp file */ |
7 | 6731 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
|
6732 if (llen < 0) |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6733 /* 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
|
6734 buffer = NULL; |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6735 else |
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6736 buffer = alloc(llen + 1); |
7 | 6737 if (buffer == NULL) |
6738 { | |
6739 /* out of memory */ | |
6740 mch_remove(tempname); | |
6741 vim_free(tempname); | |
6742 fclose(fd); | |
6743 return FAIL; | |
6744 } | |
11281
2e6a0ea76a0d
patch 8.0.0526: Coverity complains about possible negative value
Christian Brabandt <cb@256bit.org>
parents:
11252
diff
changeset
|
6745 len = llen; |
7 | 6746 i = fread((char *)buffer, 1, len, fd); |
6747 fclose(fd); | |
6748 mch_remove(tempname); | |
1877 | 6749 if (i != (int)len) |
7 | 6750 { |
6751 /* unexpected read error */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
6752 semsg(_(e_notread), tempname); |
7 | 6753 vim_free(tempname); |
6754 vim_free(buffer); | |
6755 return FAIL; | |
6756 } | |
6757 vim_free(tempname); | |
6758 | |
15955
907481b9260f
patch 8.1.0983: checking __CYGWIN32__ unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
6759 # ifdef __CYGWIN__ |
7 | 6760 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */ |
6761 p = buffer; | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4299
diff
changeset
|
6762 for (i = 0; i < (int)len; ++i) |
7 | 6763 if (!(buffer[i] == CAR && buffer[i + 1] == NL)) |
6764 *p++ = buffer[i]; | |
6765 len = p - buffer; | |
6766 # endif | |
6767 | |
6768 | |
6769 /* file names are separated with Space */ | |
6770 if (shell_style == STYLE_ECHO) | |
6771 { | |
6772 buffer[len] = '\n'; /* make sure the buffer ends in NL */ | |
6773 p = buffer; | |
6774 for (i = 0; *p != '\n'; ++i) /* count number of entries */ | |
6775 { | |
6776 while (*p != ' ' && *p != '\n') | |
6777 ++p; | |
6778 p = skipwhite(p); /* skip to next entry */ | |
6779 } | |
6780 } | |
6781 /* file names are separated with NL */ | |
1508 | 6782 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB) |
7 | 6783 { |
6784 buffer[len] = NUL; /* make sure the buffer ends in NUL */ | |
6785 p = buffer; | |
6786 for (i = 0; *p != NUL; ++i) /* count number of entries */ | |
6787 { | |
6788 while (*p != '\n' && *p != NUL) | |
6789 ++p; | |
6790 if (*p != NUL) | |
6791 ++p; | |
6792 p = skipwhite(p); /* skip leading white space */ | |
6793 } | |
6794 } | |
6795 /* file names are separated with NUL */ | |
6796 else | |
6797 { | |
6798 /* | |
6799 * Some versions of zsh use spaces instead of NULs to separate | |
6800 * results. Only do this when there is no NUL before the end of the | |
6801 * buffer, otherwise we would never be able to use file names with | |
6802 * embedded spaces when zsh does use NULs. | |
6803 * When we found a NUL once, we know zsh is OK, set did_find_nul and | |
6804 * don't check for spaces again. | |
6805 */ | |
6806 check_spaces = FALSE; | |
6807 if (shell_style == STYLE_PRINT && !did_find_nul) | |
6808 { | |
6809 /* If there is a NUL, set did_find_nul, else set check_spaces */ | |
2768 | 6810 buffer[len] = NUL; |
5533 | 6811 if (len && (int)STRLEN(buffer) < (int)len) |
7 | 6812 did_find_nul = TRUE; |
6813 else | |
6814 check_spaces = TRUE; | |
6815 } | |
6816 | |
6817 /* | |
6818 * Make sure the buffer ends with a NUL. For STYLE_PRINT there | |
6819 * already is one, for STYLE_GLOB it needs to be added. | |
6820 */ | |
6821 if (len && buffer[len - 1] == NUL) | |
6822 --len; | |
6823 else | |
6824 buffer[len] = NUL; | |
6825 i = 0; | |
6826 for (p = buffer; p < buffer + len; ++p) | |
6827 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */ | |
6828 { | |
6829 ++i; | |
6830 *p = NUL; | |
6831 } | |
6832 if (len) | |
6833 ++i; /* count last entry */ | |
6834 } | |
6835 if (i == 0) | |
6836 { | |
6837 /* | |
6838 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I". | |
6839 * /bin/sh will happily expand it to nothing rather than returning an | |
6840 * error; and hey, it's good to check anyway -- webb. | |
6841 */ | |
6842 vim_free(buffer); | |
6843 goto notfound; | |
6844 } | |
6845 *num_file = i; | |
6846 *file = (char_u **)alloc(sizeof(char_u *) * i); | |
6847 if (*file == NULL) | |
6848 { | |
6849 /* out of memory */ | |
6850 vim_free(buffer); | |
6851 return FAIL; | |
6852 } | |
6853 | |
6854 /* | |
6855 * Isolate the individual file names. | |
6856 */ | |
6857 p = buffer; | |
6858 for (i = 0; i < *num_file; ++i) | |
6859 { | |
6860 (*file)[i] = p; | |
6861 /* Space or NL separates */ | |
1508 | 6862 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT |
6863 || shell_style == STYLE_VIMGLOB) | |
7 | 6864 { |
652 | 6865 while (!(shell_style == STYLE_ECHO && *p == ' ') |
6866 && *p != '\n' && *p != NUL) | |
7 | 6867 ++p; |
6868 if (p == buffer + len) /* last entry */ | |
6869 *p = NUL; | |
6870 else | |
6871 { | |
6872 *p++ = NUL; | |
6873 p = skipwhite(p); /* skip to next entry */ | |
6874 } | |
6875 } | |
6876 else /* NUL separates */ | |
6877 { | |
6878 while (*p && p < buffer + len) /* skip entry */ | |
6879 ++p; | |
6880 ++p; /* skip NUL */ | |
6881 } | |
6882 } | |
6883 | |
6884 /* | |
6885 * Move the file names to allocated memory. | |
6886 */ | |
6887 for (j = 0, i = 0; i < *num_file; ++i) | |
6888 { | |
6889 /* Require the files to exist. Helps when using /bin/sh */ | |
6890 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0) | |
6891 continue; | |
6892 | |
6893 /* check if this entry should be included */ | |
6894 dir = (mch_isdir((*file)[i])); | |
6895 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE))) | |
6896 continue; | |
6897 | |
715 | 6898 /* Skip files that are not executable if we check for that. */ |
6695 | 6899 if (!dir && (flags & EW_EXEC) |
6900 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD))) | |
715 | 6901 continue; |
6902 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16608
diff
changeset
|
6903 p = alloc(STRLEN((*file)[i]) + 1 + dir); |
7 | 6904 if (p) |
6905 { | |
6906 STRCPY(p, (*file)[i]); | |
6907 if (dir) | |
1479 | 6908 add_pathsep(p); /* add '/' to a directory name */ |
7 | 6909 (*file)[j++] = p; |
6910 } | |
6911 } | |
6912 vim_free(buffer); | |
6913 *num_file = j; | |
6914 | |
6915 if (*num_file == 0) /* rejected all entries */ | |
6916 { | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
6917 VIM_CLEAR(*file); |
7 | 6918 goto notfound; |
6919 } | |
6920 | |
6921 return OK; | |
6922 | |
6923 notfound: | |
6924 if (flags & EW_NOTFOUND) | |
6925 return save_patterns(num_pat, pat, num_file, file); | |
6926 return FAIL; | |
6927 } | |
6928 | |
6929 #endif /* VMS */ | |
6930 | |
6931 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6932 save_patterns( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6933 int num_pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6934 char_u **pat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6935 int *num_file, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6936 char_u ***file) |
7 | 6937 { |
6938 int i; | |
99 | 6939 char_u *s; |
7 | 6940 |
6941 *file = (char_u **)alloc(num_pat * sizeof(char_u *)); | |
6942 if (*file == NULL) | |
6943 return FAIL; | |
6944 for (i = 0; i < num_pat; i++) | |
99 | 6945 { |
6946 s = vim_strsave(pat[i]); | |
6947 if (s != NULL) | |
6948 /* Be compatible with expand_filename(): halve the number of | |
6949 * backslashes. */ | |
6950 backslash_halve(s); | |
6951 (*file)[i] = s; | |
6952 } | |
7 | 6953 *num_file = num_pat; |
6954 return OK; | |
6955 } | |
6956 | |
6957 /* | |
6958 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can | |
6959 * expand. | |
6960 */ | |
6961 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6962 mch_has_exp_wildcard(char_u *p) |
7 | 6963 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11115
diff
changeset
|
6964 for ( ; *p; MB_PTR_ADV(p)) |
7 | 6965 { |
6966 if (*p == '\\' && p[1] != NUL) | |
6967 ++p; | |
6968 else | |
6969 if (vim_strchr((char_u *) | |
6970 #ifdef VMS | |
6971 "*?%" | |
6972 #else | |
6973 "*?[{'" | |
6974 #endif | |
6975 , *p) != NULL) | |
6976 return TRUE; | |
6977 } | |
6978 return FALSE; | |
6979 } | |
6980 | |
6981 /* | |
6982 * Return TRUE if the string "p" contains a wildcard. | |
6983 * Don't recognize '~' at the end as a wildcard. | |
6984 */ | |
6985 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6986 mch_has_wildcard(char_u *p) |
7 | 6987 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11115
diff
changeset
|
6988 for ( ; *p; MB_PTR_ADV(p)) |
7 | 6989 { |
6990 if (*p == '\\' && p[1] != NUL) | |
6991 ++p; | |
6992 else | |
6993 if (vim_strchr((char_u *) | |
6994 #ifdef VMS | |
6995 "*?%$" | |
6996 #else | |
6997 "*?[{`'$" | |
6998 #endif | |
6999 , *p) != NULL | |
7000 || (*p == '~' && p[1] != NUL)) | |
7001 return TRUE; | |
7002 } | |
7003 return FALSE; | |
7004 } | |
7005 | |
7006 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7007 have_wildcard(int num, char_u **file) |
7 | 7008 { |
7009 int i; | |
7010 | |
7011 for (i = 0; i < num; i++) | |
7012 if (mch_has_wildcard(file[i])) | |
7013 return 1; | |
7014 return 0; | |
7015 } | |
7016 | |
7017 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7018 have_dollars(int num, char_u **file) |
7 | 7019 { |
7020 int i; | |
7021 | |
7022 for (i = 0; i < num; i++) | |
7023 if (vim_strchr(file[i], '$') != NULL) | |
7024 return TRUE; | |
7025 return FALSE; | |
7026 } | |
7027 | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7028 #if !defined(HAVE_RENAME) || defined(PROTO) |
7 | 7029 /* |
7030 * Scaled-down version of rename(), which is missing in Xenix. | |
7031 * This version can only move regular files and will fail if the | |
7032 * destination exists. | |
7033 */ | |
7034 int | |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
7035 mch_rename(const char *src, const char *dest) |
7 | 7036 { |
7037 struct stat st; | |
7038 | |
7039 if (stat(dest, &st) >= 0) /* fail if destination exists */ | |
7040 return -1; | |
7041 if (link(src, dest) != 0) /* link file to new name */ | |
7042 return -1; | |
7043 if (mch_remove(src) == 0) /* delete link to old name */ | |
7044 return 0; | |
7045 return -1; | |
7046 } | |
7047 #endif /* !HAVE_RENAME */ | |
7048 | |
16527
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7049 #if defined(FEAT_MOUSE_GPM) || defined(PROTO) |
7 | 7050 /* |
7051 * Initializes connection with gpm (if it isn't already opened) | |
7052 * Return 1 if succeeded (or connection already opened), 0 if failed | |
7053 */ | |
7054 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7055 gpm_open(void) |
7 | 7056 { |
7057 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */ | |
7058 | |
7059 if (!gpm_flag) | |
7060 { | |
7061 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN); | |
7062 gpm_connect.defaultMask = ~GPM_HARD; | |
7063 /* Default handling for mouse move*/ | |
7064 gpm_connect.minMod = 0; /* Handle any modifier keys */ | |
7065 gpm_connect.maxMod = 0xffff; | |
7066 if (Gpm_Open(&gpm_connect, 0) > 0) | |
7067 { | |
7068 /* gpm library tries to handling TSTP causes | |
7069 * problems. Anyways, we close connection to Gpm whenever | |
7070 * we are going to suspend or starting an external process | |
1450 | 7071 * so we shouldn't have problem with this |
7 | 7072 */ |
1832 | 7073 # ifdef SIGTSTP |
7 | 7074 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); |
1832 | 7075 # endif |
7 | 7076 return 1; /* succeed */ |
7077 } | |
7078 if (gpm_fd == -2) | |
7079 Gpm_Close(); /* We don't want to talk to xterm via gpm */ | |
7080 return 0; | |
7081 } | |
7082 return 1; /* already open */ | |
7083 } | |
7084 | |
7085 /* | |
16527
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7086 * Returns TRUE if the GPM mouse is enabled. |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7087 */ |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7088 int |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7089 gpm_enabled(void) |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7090 { |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7091 return gpm_flag && gpm_fd >= 0; |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7092 } |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7093 |
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7094 /* |
7 | 7095 * Closes connection to gpm |
7096 */ | |
7097 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7098 gpm_close(void) |
7 | 7099 { |
16527
5412fcd03ecb
patch 8.1.1267: cannot check if GPM mouse support is working
Bram Moolenaar <Bram@vim.org>
parents:
16523
diff
changeset
|
7100 if (gpm_enabled()) |
7 | 7101 Gpm_Close(); |
7102 } | |
7103 | |
16523
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
7104 /* |
a72ad8a8b249
patch 8.1.1265: when GPM mouse support is enabled double clicks do not work
Bram Moolenaar <Bram@vim.org>
parents:
16511
diff
changeset
|
7105 * Reads gpm event and adds special keys to input buf. Returns length of |
7 | 7106 * generated key sequence. |
5782 | 7107 * This function is styled after gui_send_mouse_event(). |
7 | 7108 */ |
7109 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7110 mch_gpm_process(void) |
7 | 7111 { |
7112 int button; | |
7113 static Gpm_Event gpm_event; | |
7114 char_u string[6]; | |
7115 int_u vim_modifiers; | |
7116 int row,col; | |
7117 unsigned char buttons_mask; | |
7118 unsigned char gpm_modifiers; | |
7119 static unsigned char old_buttons = 0; | |
7120 | |
7121 Gpm_GetEvent(&gpm_event); | |
7122 | |
7123 #ifdef FEAT_GUI | |
7124 /* Don't put events in the input queue now. */ | |
7125 if (hold_gui_events) | |
7126 return 0; | |
7127 #endif | |
7128 | |
7129 row = gpm_event.y - 1; | |
7130 col = gpm_event.x - 1; | |
7131 | |
7132 string[0] = ESC; /* Our termcode */ | |
7133 string[1] = 'M'; | |
7134 string[2] = 'G'; | |
7135 switch (GPM_BARE_EVENTS(gpm_event.type)) | |
7136 { | |
7137 case GPM_DRAG: | |
7138 string[3] = MOUSE_DRAG; | |
7139 break; | |
7140 case GPM_DOWN: | |
7141 buttons_mask = gpm_event.buttons & ~old_buttons; | |
7142 old_buttons = gpm_event.buttons; | |
7143 switch (buttons_mask) | |
7144 { | |
7145 case GPM_B_LEFT: | |
7146 button = MOUSE_LEFT; | |
7147 break; | |
7148 case GPM_B_MIDDLE: | |
7149 button = MOUSE_MIDDLE; | |
7150 break; | |
7151 case GPM_B_RIGHT: | |
7152 button = MOUSE_RIGHT; | |
7153 break; | |
7154 default: | |
7155 return 0; | |
7156 /*Don't know what to do. Can more than one button be | |
7157 * reported in one event? */ | |
7158 } | |
7159 string[3] = (char_u)(button | 0x20); | |
7160 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1); | |
7161 break; | |
7162 case GPM_UP: | |
7163 string[3] = MOUSE_RELEASE; | |
7164 old_buttons &= ~gpm_event.buttons; | |
7165 break; | |
7166 default: | |
7167 return 0; | |
7168 } | |
7169 /*This code is based on gui_x11_mouse_cb in gui_x11.c */ | |
7170 gpm_modifiers = gpm_event.modifiers; | |
7171 vim_modifiers = 0x0; | |
7172 /* I ignore capslock stats. Aren't we all just hate capslock mixing with | |
7173 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and | |
7174 * K_CAPSSHIFT is defined 8, so it probably isn't even reported | |
7175 */ | |
7176 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL))) | |
7177 vim_modifiers |= MOUSE_SHIFT; | |
7178 | |
7179 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL))) | |
7180 vim_modifiers |= MOUSE_CTRL; | |
7181 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR))) | |
7182 vim_modifiers |= MOUSE_ALT; | |
7183 string[3] |= vim_modifiers; | |
7184 string[4] = (char_u)(col + ' ' + 1); | |
7185 string[5] = (char_u)(row + ' ' + 1); | |
7186 add_to_input_buf(string, 6); | |
7187 return 6; | |
7188 } | |
7189 #endif /* FEAT_MOUSE_GPM */ | |
7190 | |
1620 | 7191 #ifdef FEAT_SYSMOUSE |
7192 /* | |
7193 * Initialize connection with sysmouse. | |
7194 * Let virtual console inform us with SIGUSR2 for pending sysmouse | |
7195 * output, any sysmouse output than will be processed via sig_sysmouse(). | |
7196 * Return OK if succeeded, FAIL if failed. | |
7197 */ | |
7198 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7199 sysmouse_open(void) |
1620 | 7200 { |
7201 struct mouse_info mouse; | |
7202 | |
7203 mouse.operation = MOUSE_MODE; | |
7204 mouse.u.mode.mode = 0; | |
7205 mouse.u.mode.signal = SIGUSR2; | |
7206 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1) | |
7207 { | |
7208 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse); | |
7209 mouse.operation = MOUSE_SHOW; | |
7210 ioctl(1, CONS_MOUSECTL, &mouse); | |
7211 return OK; | |
7212 } | |
7213 return FAIL; | |
7214 } | |
7215 | |
7216 /* | |
7217 * Stop processing SIGUSR2 signals, and also make sure that | |
7218 * virtual console do not send us any sysmouse related signal. | |
7219 */ | |
7220 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7221 sysmouse_close(void) |
1620 | 7222 { |
7223 struct mouse_info mouse; | |
7224 | |
7225 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL); | |
7226 mouse.operation = MOUSE_MODE; | |
7227 mouse.u.mode.mode = 0; | |
7228 mouse.u.mode.signal = 0; | |
7229 ioctl(1, CONS_MOUSECTL, &mouse); | |
7230 } | |
7231 | |
7232 /* | |
7233 * Gets info from sysmouse and adds special keys to input buf. | |
7234 */ | |
7235 static RETSIGTYPE | |
7236 sig_sysmouse SIGDEFARG(sigarg) | |
7237 { | |
7238 struct mouse_info mouse; | |
7239 struct video_info video; | |
7240 char_u string[6]; | |
7241 int row, col; | |
7242 int button; | |
7243 int buttons; | |
7244 static int oldbuttons = 0; | |
7245 | |
7246 #ifdef FEAT_GUI | |
7247 /* Don't put events in the input queue now. */ | |
7248 if (hold_gui_events) | |
7249 return; | |
7250 #endif | |
7251 | |
7252 mouse.operation = MOUSE_GETINFO; | |
7253 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1 | |
7254 && ioctl(1, FBIO_MODEINFO, &video) != -1 | |
7255 && ioctl(1, CONS_MOUSECTL, &mouse) != -1 | |
7256 && video.vi_cheight > 0 && video.vi_cwidth > 0) | |
7257 { | |
7258 row = mouse.u.data.y / video.vi_cheight; | |
7259 col = mouse.u.data.x / video.vi_cwidth; | |
7260 buttons = mouse.u.data.buttons; | |
7261 string[0] = ESC; /* Our termcode */ | |
7262 string[1] = 'M'; | |
7263 string[2] = 'S'; | |
7264 if (oldbuttons == buttons && buttons != 0) | |
7265 { | |
7266 button = MOUSE_DRAG; | |
7267 } | |
7268 else | |
7269 { | |
7270 switch (buttons) | |
7271 { | |
7272 case 0: | |
7273 button = MOUSE_RELEASE; | |
7274 break; | |
7275 case 1: | |
7276 button = MOUSE_LEFT; | |
7277 break; | |
7278 case 2: | |
7279 button = MOUSE_MIDDLE; | |
7280 break; | |
7281 case 4: | |
7282 button = MOUSE_RIGHT; | |
7283 break; | |
7284 default: | |
7285 return; | |
7286 } | |
7287 oldbuttons = buttons; | |
7288 } | |
7289 string[3] = (char_u)(button); | |
7290 string[4] = (char_u)(col + ' ' + 1); | |
7291 string[5] = (char_u)(row + ' ' + 1); | |
7292 add_to_input_buf(string, 6); | |
7293 } | |
7294 return; | |
7295 } | |
7296 #endif /* FEAT_SYSMOUSE */ | |
7297 | |
7 | 7298 #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
|
7299 typedef char_u * (*STRPROCSTR)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7300 typedef char_u * (*INTPROCSTR)(int); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7301 typedef int (*STRPROCINT)(char_u *); |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7302 typedef int (*INTPROCINT)(int); |
7 | 7303 |
7304 /* | |
7305 * Call a DLL routine which takes either a string or int param | |
7306 * and returns an allocated string. | |
7307 */ | |
7308 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7309 mch_libcall( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7310 char_u *libname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7311 char_u *funcname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7312 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
|
7313 int argint, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7314 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
|
7315 int *number_result) |
7 | 7316 { |
7317 # if defined(USE_DLOPEN) | |
7318 void *hinstLib; | |
12 | 7319 char *dlerr = NULL; |
7 | 7320 # else |
7321 shl_t hinstLib; | |
7322 # endif | |
7323 STRPROCSTR ProcAdd; | |
7324 INTPROCSTR ProcAddI; | |
7325 char_u *retval_str = NULL; | |
7326 int retval_int = 0; | |
7327 int success = FALSE; | |
7328 | |
900 | 7329 /* |
7330 * Get a handle to the DLL module. | |
7331 */ | |
7 | 7332 # if defined(USE_DLOPEN) |
900 | 7333 /* First clear any error, it's not cleared by the dlopen() call. */ |
7334 (void)dlerror(); | |
7335 | |
7 | 7336 hinstLib = dlopen((char *)libname, RTLD_LAZY |
7337 # ifdef RTLD_LOCAL | |
7338 | RTLD_LOCAL | |
7339 # endif | |
7340 ); | |
12 | 7341 if (hinstLib == NULL) |
7342 { | |
7343 /* "dlerr" must be used before dlclose() */ | |
7344 dlerr = (char *)dlerror(); | |
7345 if (dlerr != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7346 semsg(_("dlerror = \"%s\""), dlerr); |
12 | 7347 } |
7 | 7348 # else |
7349 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L); | |
7350 # endif | |
7351 | |
7352 /* If the handle is valid, try to get the function address. */ | |
7353 if (hinstLib != NULL) | |
7354 { | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7355 # ifdef USING_SETJMP |
7 | 7356 /* |
7357 * Catch a crash when calling the library function. For example when | |
7358 * using a number where a string pointer is expected. | |
7359 */ | |
7360 mch_startjmp(); | |
7361 if (SETJMP(lc_jump_env) != 0) | |
7362 { | |
7363 success = FALSE; | |
857 | 7364 # if defined(USE_DLOPEN) |
12 | 7365 dlerr = NULL; |
857 | 7366 # endif |
7 | 7367 mch_didjmp(); |
7368 } | |
7369 else | |
7370 # endif | |
7371 { | |
7372 retval_str = NULL; | |
7373 retval_int = 0; | |
7374 | |
7375 if (argstring != NULL) | |
7376 { | |
7377 # if defined(USE_DLOPEN) | |
10620
2198b53b9ffe
patch 8.0.0199: compiler warnings for libcall
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
7378 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname); |
12 | 7379 dlerr = (char *)dlerror(); |
7 | 7380 # else |
7381 if (shl_findsym(&hinstLib, (const char *)funcname, | |
7382 TYPE_PROCEDURE, (void *)&ProcAdd) < 0) | |
7383 ProcAdd = NULL; | |
7384 # endif | |
12 | 7385 if ((success = (ProcAdd != NULL |
7386 # if defined(USE_DLOPEN) | |
7387 && dlerr == NULL | |
7388 # endif | |
7389 ))) | |
7 | 7390 { |
7391 if (string_result == NULL) | |
7392 retval_int = ((STRPROCINT)ProcAdd)(argstring); | |
7393 else | |
7394 retval_str = (ProcAdd)(argstring); | |
7395 } | |
7396 } | |
7397 else | |
7398 { | |
7399 # if defined(USE_DLOPEN) | |
10620
2198b53b9ffe
patch 8.0.0199: compiler warnings for libcall
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
7400 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname); |
12 | 7401 dlerr = (char *)dlerror(); |
7 | 7402 # else |
7403 if (shl_findsym(&hinstLib, (const char *)funcname, | |
7404 TYPE_PROCEDURE, (void *)&ProcAddI) < 0) | |
7405 ProcAddI = NULL; | |
7406 # endif | |
12 | 7407 if ((success = (ProcAddI != NULL |
7408 # if defined(USE_DLOPEN) | |
7409 && dlerr == NULL | |
7410 # endif | |
7411 ))) | |
7 | 7412 { |
7413 if (string_result == NULL) | |
7414 retval_int = ((INTPROCINT)ProcAddI)(argint); | |
7415 else | |
7416 retval_str = (ProcAddI)(argint); | |
7417 } | |
7418 } | |
7419 | |
7420 /* Save the string before we free the library. */ | |
7421 /* Assume that a "1" or "-1" result is an illegal pointer. */ | |
7422 if (string_result == NULL) | |
7423 *number_result = retval_int; | |
7424 else if (retval_str != NULL | |
7425 && retval_str != (char_u *)1 | |
7426 && retval_str != (char_u *)-1) | |
7427 *string_result = vim_strsave(retval_str); | |
7428 } | |
7429 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7430 # ifdef USING_SETJMP |
7 | 7431 mch_endjmp(); |
7432 # ifdef SIGHASARG | |
7433 if (lc_signal != 0) | |
7434 { | |
7435 int i; | |
7436 | |
7437 /* try to find the name of this signal */ | |
7438 for (i = 0; signal_info[i].sig != -1; i++) | |
7439 if (lc_signal == signal_info[i].sig) | |
7440 break; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7441 semsg("E368: got SIG%s in libcall()", signal_info[i].name); |
7 | 7442 } |
7443 # endif | |
7444 # endif | |
7445 | |
12 | 7446 # if defined(USE_DLOPEN) |
7447 /* "dlerr" must be used before dlclose() */ | |
7448 if (dlerr != NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7449 semsg(_("dlerror = \"%s\""), dlerr); |
12 | 7450 |
7 | 7451 /* Free the DLL module. */ |
7452 (void)dlclose(hinstLib); | |
7453 # else | |
7454 (void)shl_unload(hinstLib); | |
7455 # endif | |
7456 } | |
7457 | |
7458 if (!success) | |
7459 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
7460 semsg(_(e_libcall), funcname); |
7 | 7461 return FAIL; |
7462 } | |
7463 | |
7464 return OK; | |
7465 } | |
7466 #endif | |
7467 | |
7468 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO) | |
7469 static int xterm_trace = -1; /* default: disabled */ | |
7470 static int xterm_button; | |
7471 | |
7472 /* | |
7473 * Setup a dummy window for X selections in a terminal. | |
7474 */ | |
7475 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7476 setup_term_clip(void) |
7 | 7477 { |
7478 int z = 0; | |
7479 char *strp = ""; | |
7480 Widget AppShell; | |
7481 | |
7482 if (!x_connect_to_server()) | |
7483 return; | |
7484 | |
7485 open_app_context(); | |
7486 if (app_context != NULL && xterm_Shell == (Widget)0) | |
7487 { | |
7488 int (*oldhandler)(); | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7489 # if defined(USING_SETJMP) |
7 | 7490 int (*oldIOhandler)(); |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7491 # endif |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7492 # ifdef ELAPSED_FUNC |
15525
3ef31ce9d9f9
patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7493 elapsed_T start_tv; |
7 | 7494 |
7495 if (p_verbose > 0) | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7496 ELAPSED_INIT(start_tv); |
7 | 7497 # endif |
7498 | |
7499 /* Ignore X errors while opening the display */ | |
7500 oldhandler = XSetErrorHandler(x_error_check); | |
7501 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7502 # if defined(USING_SETJMP) |
7 | 7503 /* Ignore X IO errors while opening the display */ |
7504 oldIOhandler = XSetIOErrorHandler(x_IOerror_check); | |
7505 mch_startjmp(); | |
7506 if (SETJMP(lc_jump_env) != 0) | |
7507 { | |
7508 mch_didjmp(); | |
7509 xterm_dpy = NULL; | |
7510 } | |
7511 else | |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7512 # endif |
7 | 7513 { |
7514 xterm_dpy = XtOpenDisplay(app_context, xterm_display, | |
7515 "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
|
7516 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
|
7517 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
|
7518 # if defined(USING_SETJMP) |
7 | 7519 mch_endjmp(); |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7520 # endif |
7 | 7521 } |
7522 | |
15561
ea9f1180d337
patch 8.1.0788: cannot build with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
15559
diff
changeset
|
7523 # if defined(USING_SETJMP) |
7 | 7524 /* Now handle X IO errors normally. */ |
7525 (void)XSetIOErrorHandler(oldIOhandler); | |
15559
59d32a45da1a
patch 8.1.0787: compiler warning for unused function
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7526 # endif |
7 | 7527 /* Now handle X errors normally. */ |
7528 (void)XSetErrorHandler(oldhandler); | |
7529 | |
7530 if (xterm_dpy == NULL) | |
7531 { | |
7532 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
|
7533 verb_msg(_("Opening the X display failed")); |
7 | 7534 return; |
7535 } | |
7536 | |
7537 /* Catch terminating error of the X server connection. */ | |
7538 (void)XSetIOErrorHandler(x_IOerror_handler); | |
7539 | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7540 # ifdef ELAPSED_FUNC |
7 | 7541 if (p_verbose > 0) |
292 | 7542 { |
7543 verbose_enter(); | |
10406
42911b233245
commit https://github.com/vim/vim/commit/833eb1d752426689051bf2001083359899536939
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
7544 xopen_message(ELAPSED_FUNC(start_tv)); |
292 | 7545 verbose_leave(); |
7546 } | |
7 | 7547 # endif |
7548 | |
7549 /* Create a Shell to make converters work. */ | |
7550 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm", | |
7551 applicationShellWidgetClass, xterm_dpy, | |
7552 NULL); | |
7553 if (AppShell == (Widget)0) | |
7554 return; | |
7555 xterm_Shell = XtVaCreatePopupShell("VIM", | |
7556 topLevelShellWidgetClass, AppShell, | |
7557 XtNmappedWhenManaged, 0, | |
7558 XtNwidth, 1, | |
7559 XtNheight, 1, | |
7560 NULL); | |
7561 if (xterm_Shell == (Widget)0) | |
7562 return; | |
7563 | |
7564 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
|
7565 x11_setup_selection(xterm_Shell); |
7 | 7566 if (x11_display == NULL) |
7567 x11_display = xterm_dpy; | |
7568 | |
7569 XtRealizeWidget(xterm_Shell); | |
7570 XSync(xterm_dpy, False); | |
7571 xterm_update(); | |
7572 } | |
7573 if (xterm_Shell != (Widget)0) | |
7574 { | |
7575 clip_init(TRUE); | |
7576 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL) | |
7577 x11_window = (Window)atol(strp); | |
7578 /* Check if $WINDOWID is valid. */ | |
7579 if (test_x11_window(xterm_dpy) == FAIL) | |
7580 x11_window = 0; | |
7581 if (x11_window != 0) | |
7582 xterm_trace = 0; | |
7583 } | |
7584 } | |
7585 | |
7586 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7587 start_xterm_trace(int button) |
7 | 7588 { |
7589 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0) | |
7590 return; | |
7591 xterm_trace = 1; | |
7592 xterm_button = button; | |
7593 do_xterm_trace(); | |
7594 } | |
7595 | |
7596 | |
7597 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7598 stop_xterm_trace(void) |
7 | 7599 { |
7600 if (xterm_trace < 0) | |
7601 return; | |
7602 xterm_trace = 0; | |
7603 } | |
7604 | |
7605 /* | |
7606 * Query the xterm pointer and generate mouse termcodes if necessary | |
7607 * return TRUE if dragging is active, else FALSE | |
7608 */ | |
7609 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7610 do_xterm_trace(void) |
7 | 7611 { |
7612 Window root, child; | |
7613 int root_x, root_y; | |
7614 int win_x, win_y; | |
7615 int row, col; | |
7616 int_u mask_return; | |
7617 char_u buf[50]; | |
7618 char_u *strp; | |
7619 long got_hints; | |
7620 static char_u *mouse_code; | |
7621 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER}; | |
7622 static int prev_row = 0, prev_col = 0; | |
7623 static XSizeHints xterm_hints; | |
7624 | |
7625 if (xterm_trace <= 0) | |
7626 return FALSE; | |
7627 | |
7628 if (xterm_trace == 1) | |
7629 { | |
7630 /* Get the hints just before tracking starts. The font size might | |
1510 | 7631 * have changed recently. */ |
7632 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints) | |
7633 || !(got_hints & PResizeInc) | |
7 | 7634 || xterm_hints.width_inc <= 1 |
7635 || xterm_hints.height_inc <= 1) | |
7636 { | |
7637 xterm_trace = -1; /* Not enough data -- disable tracing */ | |
7638 return FALSE; | |
7639 } | |
7640 | |
7641 /* Rely on the same mouse code for the duration of this */ | |
7642 mouse_code = find_termcode(mouse_name); | |
7643 prev_row = mouse_row; | |
7009 | 7644 prev_col = mouse_col; |
7 | 7645 xterm_trace = 2; |
7646 | |
7647 /* Find the offset of the chars, there might be a scrollbar on the | |
7648 * left of the window and/or a menu on the top (eterm etc.) */ | |
7649 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7650 &win_x, &win_y, &mask_return); | |
7651 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row) | |
7652 - (xterm_hints.height_inc / 2); | |
7653 if (xterm_hints.y <= xterm_hints.height_inc / 2) | |
7654 xterm_hints.y = 2; | |
7655 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col) | |
7656 - (xterm_hints.width_inc / 2); | |
7657 if (xterm_hints.x <= xterm_hints.width_inc / 2) | |
7658 xterm_hints.x = 2; | |
7659 return TRUE; | |
7660 } | |
2768 | 7661 if (mouse_code == NULL || STRLEN(mouse_code) > 45) |
7 | 7662 { |
7663 xterm_trace = 0; | |
7664 return FALSE; | |
7665 } | |
7666 | |
7667 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, | |
7668 &win_x, &win_y, &mask_return); | |
7669 | |
7670 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc); | |
7671 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc); | |
7672 if (row == prev_row && col == prev_col) | |
7673 return TRUE; | |
7674 | |
7675 STRCPY(buf, mouse_code); | |
7676 strp = buf + STRLEN(buf); | |
7677 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20; | |
7678 *strp++ = (char_u)(col + ' ' + 1); | |
7679 *strp++ = (char_u)(row + ' ' + 1); | |
7680 *strp = 0; | |
7681 add_to_input_buf(buf, STRLEN(buf)); | |
7682 | |
7683 prev_row = row; | |
7684 prev_col = col; | |
7685 return TRUE; | |
7686 } | |
7687 | |
16608
0422b14bce58
patch 8.1.1307: cannot reconnect to the X server after it restarted
Bram Moolenaar <Bram@vim.org>
parents:
16527
diff
changeset
|
7688 # if defined(FEAT_GUI) || defined(FEAT_XCLIPBOARD) || defined(PROTO) |
7 | 7689 /* |
7690 * Destroy the display, window and app_context. Required for GTK. | |
7691 */ | |
7692 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7693 clear_xterm_clip(void) |
7 | 7694 { |
7695 if (xterm_Shell != (Widget)0) | |
7696 { | |
7697 XtDestroyWidget(xterm_Shell); | |
7698 xterm_Shell = (Widget)0; | |
7699 } | |
7700 if (xterm_dpy != NULL) | |
7701 { | |
1605 | 7702 # if 0 |
7 | 7703 /* Lesstif and Solaris crash here, lose some memory */ |
7704 XtCloseDisplay(xterm_dpy); | |
1605 | 7705 # endif |
7 | 7706 if (x11_display == xterm_dpy) |
7707 x11_display = NULL; | |
7708 xterm_dpy = NULL; | |
7709 } | |
1605 | 7710 # if 0 |
7 | 7711 if (app_context != (XtAppContext)NULL) |
7712 { | |
7713 /* Lesstif and Solaris crash here, lose some memory */ | |
7714 XtDestroyApplicationContext(app_context); | |
7715 app_context = (XtAppContext)NULL; | |
7716 } | |
1605 | 7717 # endif |
7 | 7718 } |
7719 # endif | |
7720 | |
7721 /* | |
4230 | 7722 * Catch up with GUI or X events. |
7723 */ | |
7724 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7725 clip_update(void) |
4230 | 7726 { |
7727 # ifdef FEAT_GUI | |
7728 if (gui.in_use) | |
7729 gui_mch_update(); | |
7730 else | |
7731 # endif | |
7732 if (xterm_Shell != (Widget)0) | |
7733 xterm_update(); | |
7734 } | |
7735 | |
7736 /* | |
7 | 7737 * Catch up with any queued X events. This may put keyboard input into the |
7738 * input buffer, call resize call-backs, trigger timers etc. If there is | |
7739 * nothing in the X event queue (& no timers pending), then we return | |
7740 * immediately. | |
7741 */ | |
7742 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7743 xterm_update(void) |
7 | 7744 { |
7745 XEvent event; | |
7746 | |
6683 | 7747 for (;;) |
7 | 7748 { |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7749 XtInputMask mask = XtAppPending(app_context); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7750 |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7751 if (mask == 0 || vim_is_input_buf_full()) |
6683 | 7752 break; |
7753 | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7754 if (mask & XtIMXEvent) |
7 | 7755 { |
6683 | 7756 /* 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
|
7757 XtAppNextEvent(app_context, &event); |
6683 | 7758 #ifdef FEAT_CLIENTSERVER |
7759 { | |
7760 XPropertyEvent *e = (XPropertyEvent *)&event; | |
7761 | |
7762 if (e->type == PropertyNotify && e->window == commWindow | |
7 | 7763 && 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
|
7764 serverEventProc(xterm_dpy, &event, 0); |
6683 | 7765 } |
7766 #endif | |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7767 XtDispatchEvent(&event); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7768 } |
6683 | 7769 else |
7770 { | |
7771 /* 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
|
7772 XtAppProcessEvent(app_context, mask); |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7773 } |
7 | 7774 } |
7775 } | |
7776 | |
7777 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7778 clip_xterm_own_selection(VimClipboard *cbd) |
7 | 7779 { |
7780 if (xterm_Shell != (Widget)0) | |
7781 return clip_x11_own_selection(xterm_Shell, cbd); | |
7782 return FAIL; | |
7783 } | |
7784 | |
7785 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7786 clip_xterm_lose_selection(VimClipboard *cbd) |
7 | 7787 { |
7788 if (xterm_Shell != (Widget)0) | |
7789 clip_x11_lose_selection(xterm_Shell, cbd); | |
7790 } | |
7791 | |
7792 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7793 clip_xterm_request_selection(VimClipboard *cbd) |
7 | 7794 { |
7795 if (xterm_Shell != (Widget)0) | |
7796 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd); | |
7797 } | |
7798 | |
7799 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7800 clip_xterm_set_selection(VimClipboard *cbd) |
7 | 7801 { |
7802 clip_x11_set_selection(cbd); | |
7803 } | |
7804 #endif | |
7805 | |
7806 | |
7807 #if defined(USE_XSMP) || defined(PROTO) | |
7808 /* | |
7809 * Code for X Session Management Protocol. | |
7810 */ | |
7811 | |
7812 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7813 /* | |
7814 * This is our chance to ask the user if they want to save, | |
7815 * or abort the logout | |
7816 */ | |
7817 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7818 xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED) |
7 | 7819 { |
7820 cmdmod_T save_cmdmod; | |
7821 int cancel_shutdown = False; | |
7822 | |
7823 save_cmdmod = cmdmod; | |
7824 cmdmod.confirm = TRUE; | |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
7825 if (check_changed_any(FALSE, FALSE)) |
7 | 7826 /* Mustn't logout */ |
7827 cancel_shutdown = True; | |
7828 cmdmod = save_cmdmod; | |
7829 setcursor(); /* position cursor */ | |
7830 out_flush(); | |
7831 | |
7832 /* Done interaction */ | |
7833 SmcInteractDone(smc_conn, cancel_shutdown); | |
7834 | |
7835 /* Finish off | |
7836 * Only end save-yourself here if we're not cancelling shutdown; | |
7837 * we'll get a cancelled callback later in which we'll end it. | |
7838 * Hopefully get around glitchy SMs (like GNOME-1) | |
7839 */ | |
7840 if (!cancel_shutdown) | |
7841 { | |
7842 xsmp.save_yourself = False; | |
7843 SmcSaveYourselfDone(smc_conn, True); | |
7844 } | |
7845 } | |
7846 # endif | |
7847 | |
7848 /* | |
7849 * Callback that starts save-yourself. | |
7850 */ | |
7851 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7852 xsmp_handle_save_yourself( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7853 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7854 SmPointer client_data UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7855 int save_type UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7856 Bool shutdown, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7857 int interact_style UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7858 Bool fast UNUSED) |
7 | 7859 { |
7860 /* Handle already being in saveyourself */ | |
7861 if (xsmp.save_yourself) | |
7862 SmcSaveYourselfDone(smc_conn, True); | |
7863 xsmp.save_yourself = True; | |
7864 xsmp.shutdown = shutdown; | |
7865 | |
7866 /* First up, preserve all files */ | |
7867 out_flush(); | |
7868 ml_sync_all(FALSE, FALSE); /* preserve all swap files */ | |
7869 | |
7870 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
|
7871 verb_msg(_("XSMP handling save-yourself request")); |
7 | 7872 |
7873 # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) | |
7874 /* Now see if we can ask about unsaved files */ | |
7875 if (shutdown && !fast && gui.in_use) | |
7876 /* Need to interact with user, but need SM's permission */ | |
7877 SmcInteractRequest(smc_conn, SmDialogError, | |
7878 xsmp_handle_interaction, client_data); | |
7879 else | |
7880 # endif | |
7881 { | |
7882 /* Can stop the cycle here */ | |
7883 SmcSaveYourselfDone(smc_conn, True); | |
7884 xsmp.save_yourself = False; | |
7885 } | |
7886 } | |
7887 | |
7888 | |
7889 /* | |
7890 * Callback to warn us of imminent death. | |
7891 */ | |
7892 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7893 xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED) |
7 | 7894 { |
7895 xsmp_close(); | |
7896 | |
7897 /* quit quickly leaving swapfiles for modified buffers behind */ | |
7898 getout_preserve_modified(0); | |
7899 } | |
7900 | |
7901 | |
7902 /* | |
7903 * Callback to tell us that save-yourself has completed. | |
7904 */ | |
7905 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7906 xsmp_save_complete( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7907 SmcConn smc_conn UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7908 SmPointer client_data UNUSED) |
7 | 7909 { |
7910 xsmp.save_yourself = False; | |
7911 } | |
7912 | |
7913 | |
7914 /* | |
7915 * Callback to tell us that an instigated shutdown was cancelled | |
7916 * (maybe even by us) | |
7917 */ | |
7918 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7919 xsmp_shutdown_cancelled( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7920 SmcConn smc_conn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7921 SmPointer client_data UNUSED) |
7 | 7922 { |
7923 if (xsmp.save_yourself) | |
7924 SmcSaveYourselfDone(smc_conn, True); | |
7925 xsmp.save_yourself = False; | |
7926 xsmp.shutdown = False; | |
7927 } | |
7928 | |
7929 | |
7930 /* | |
7931 * Callback to tell us that a new ICE connection has been established. | |
7932 */ | |
7933 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7934 xsmp_ice_connection( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7935 IceConn iceConn, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7936 IcePointer clientData UNUSED, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7937 Bool opening, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7938 IcePointer *watchData UNUSED) |
7 | 7939 { |
7940 /* Intercept creation of ICE connection fd */ | |
7941 if (opening) | |
7942 { | |
7943 xsmp_icefd = IceConnectionNumber(iceConn); | |
7944 IceRemoveConnectionWatch(xsmp_ice_connection, NULL); | |
7945 } | |
7946 } | |
7947 | |
7948 | |
7949 /* Handle any ICE processing that's required; return FAIL if SM lost */ | |
7950 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7951 xsmp_handle_requests(void) |
7 | 7952 { |
7953 Bool rep; | |
7954 | |
7955 if (IceProcessMessages(xsmp.iceconn, NULL, &rep) | |
7956 == IceProcessMessagesIOError) | |
7957 { | |
7958 /* Lost ICE */ | |
7959 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
|
7960 verb_msg(_("XSMP lost ICE connection")); |
7 | 7961 xsmp_close(); |
7962 return FAIL; | |
7963 } | |
7964 else | |
7965 return OK; | |
7966 } | |
7967 | |
7968 static int dummy; | |
7969 | |
7970 /* Set up X Session Management Protocol */ | |
7971 void | |
7972 xsmp_init(void) | |
7973 { | |
7974 char errorstring[80]; | |
7975 SmcCallbacks smcallbacks; | |
7976 #if 0 | |
7977 SmPropValue smname; | |
7978 SmProp smnameprop; | |
7979 SmProp *smprops[1]; | |
7980 #endif | |
7981 | |
7982 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
|
7983 verb_msg(_("XSMP opening connection")); |
7 | 7984 |
7985 xsmp.save_yourself = xsmp.shutdown = False; | |
7986 | |
7987 /* Set up SM callbacks - must have all, even if they're not used */ | |
7988 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself; | |
7989 smcallbacks.save_yourself.client_data = NULL; | |
7990 smcallbacks.die.callback = xsmp_die; | |
7991 smcallbacks.die.client_data = NULL; | |
7992 smcallbacks.save_complete.callback = xsmp_save_complete; | |
7993 smcallbacks.save_complete.client_data = NULL; | |
7994 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled; | |
7995 smcallbacks.shutdown_cancelled.client_data = NULL; | |
7996 | |
7997 /* Set up a watch on ICE connection creations. The "dummy" argument is | |
7998 * apparently required for FreeBSD (we get a BUS error when using NULL). */ | |
7999 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0) | |
8000 { | |
8001 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
|
8002 verb_msg(_("XSMP ICE connection watch failed")); |
7 | 8003 return; |
8004 } | |
8005 | |
8006 /* Create an SM connection */ | |
8007 xsmp.smcconn = SmcOpenConnection( | |
8008 NULL, | |
8009 NULL, | |
8010 SmProtoMajor, | |
8011 SmProtoMinor, | |
8012 SmcSaveYourselfProcMask | SmcDieProcMask | |
8013 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask, | |
8014 &smcallbacks, | |
8015 NULL, | |
1605 | 8016 &xsmp.clientid, |
14828
421e120ffb30
patch 8.1.0426: accessing invalid memory in SmcOpenConnection()
Christian Brabandt <cb@256bit.org>
parents:
14730
diff
changeset
|
8017 sizeof(errorstring) - 1, |
7 | 8018 errorstring); |
8019 if (xsmp.smcconn == NULL) | |
8020 { | |
8021 char errorreport[132]; | |
273 | 8022 |
292 | 8023 if (p_verbose > 0) |
8024 { | |
8025 vim_snprintf(errorreport, sizeof(errorreport), | |
273 | 8026 _("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
|
8027 verb_msg(errorreport); |
292 | 8028 } |
7 | 8029 return; |
8030 } | |
8031 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn); | |
8032 | |
8033 #if 0 | |
8034 /* ID ourselves */ | |
8035 smname.value = "vim"; | |
8036 smname.length = 3; | |
8037 smnameprop.name = "SmProgram"; | |
8038 smnameprop.type = "SmARRAY8"; | |
8039 smnameprop.num_vals = 1; | |
8040 smnameprop.vals = &smname; | |
8041 | |
8042 smprops[0] = &smnameprop; | |
8043 SmcSetProperties(xsmp.smcconn, 1, smprops); | |
8044 #endif | |
8045 } | |
8046 | |
8047 | |
8048 /* Shut down XSMP comms. */ | |
8049 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8050 xsmp_close(void) |
7 | 8051 { |
8052 if (xsmp_icefd != -1) | |
8053 { | |
8054 SmcCloseConnection(xsmp.smcconn, 0, NULL); | |
1737 | 8055 if (xsmp.clientid != NULL) |
8056 free(xsmp.clientid); | |
1605 | 8057 xsmp.clientid = NULL; |
7 | 8058 xsmp_icefd = -1; |
8059 } | |
8060 } | |
8061 #endif /* USE_XSMP */ | |
8062 | |
8063 | |
8064 #ifdef EBCDIC | |
8065 /* Translate character to its CTRL- value */ | |
8066 char CtrlTable[] = | |
8067 { | |
8068 /* 00 - 5E */ | |
8069 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8070 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8071 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8072 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8073 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8074 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8075 /* ^ */ 0x1E, | |
8076 /* - */ 0x1F, | |
8077 /* 61 - 6C */ | |
8078 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8079 /* _ */ 0x1F, | |
8080 /* 6E - 80 */ | |
8081 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8082 /* a */ 0x01, | |
8083 /* b */ 0x02, | |
8084 /* c */ 0x03, | |
8085 /* d */ 0x37, | |
8086 /* e */ 0x2D, | |
8087 /* f */ 0x2E, | |
8088 /* g */ 0x2F, | |
8089 /* h */ 0x16, | |
8090 /* i */ 0x05, | |
8091 /* 8A - 90 */ | |
8092 0, 0, 0, 0, 0, 0, 0, | |
8093 /* j */ 0x15, | |
8094 /* k */ 0x0B, | |
8095 /* l */ 0x0C, | |
8096 /* m */ 0x0D, | |
8097 /* n */ 0x0E, | |
8098 /* o */ 0x0F, | |
8099 /* p */ 0x10, | |
8100 /* q */ 0x11, | |
8101 /* r */ 0x12, | |
8102 /* 9A - A1 */ | |
8103 0, 0, 0, 0, 0, 0, 0, 0, | |
8104 /* s */ 0x13, | |
8105 /* t */ 0x3C, | |
8106 /* u */ 0x3D, | |
8107 /* v */ 0x32, | |
8108 /* w */ 0x26, | |
8109 /* x */ 0x18, | |
8110 /* y */ 0x19, | |
8111 /* z */ 0x3F, | |
8112 /* AA - AC */ | |
8113 0, 0, 0, | |
8114 /* [ */ 0x27, | |
8115 /* AE - BC */ | |
8116 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8117 /* ] */ 0x1D, | |
8118 /* BE - C0 */ 0, 0, 0, | |
8119 /* A */ 0x01, | |
8120 /* B */ 0x02, | |
8121 /* C */ 0x03, | |
8122 /* D */ 0x37, | |
8123 /* E */ 0x2D, | |
8124 /* F */ 0x2E, | |
8125 /* G */ 0x2F, | |
8126 /* H */ 0x16, | |
8127 /* I */ 0x05, | |
8128 /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0, | |
8129 /* J */ 0x15, | |
8130 /* K */ 0x0B, | |
8131 /* L */ 0x0C, | |
8132 /* M */ 0x0D, | |
8133 /* N */ 0x0E, | |
8134 /* O */ 0x0F, | |
8135 /* P */ 0x10, | |
8136 /* Q */ 0x11, | |
8137 /* R */ 0x12, | |
8138 /* DA - DF */ 0, 0, 0, 0, 0, 0, | |
8139 /* \ */ 0x1C, | |
8140 /* E1 */ 0, | |
8141 /* S */ 0x13, | |
8142 /* T */ 0x3C, | |
8143 /* U */ 0x3D, | |
8144 /* V */ 0x32, | |
8145 /* W */ 0x26, | |
8146 /* X */ 0x18, | |
8147 /* Y */ 0x19, | |
8148 /* Z */ 0x3F, | |
8149 /* EA - FF*/ 0, 0, 0, 0, 0, 0, | |
8150 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
8151 }; | |
8152 | |
8153 char MetaCharTable[]= | |
8154 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
8155 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0, | |
8156 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0, | |
8157 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0, | |
8158 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0 | |
8159 }; | |
8160 | |
8161 | |
8162 /* TODO: Use characters NOT numbers!!! */ | |
8163 char CtrlCharTable[]= | |
8164 {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ | |
8165 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214, | |
8166 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109, | |
8167 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199, | |
8168 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233, | |
8169 }; | |
8170 | |
8171 | |
8172 #endif |