Mercurial > vim
annotate src/os_win32.c @ 13285:546b2a354d13
Added tag v8.0.1516 for changeset a69636c631032a7e3bd5a4992608503430c5c6bf
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 13 Feb 2018 15:30:07 +0100 |
parents | ee1a1276a759 |
children | 65c3e8259124 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
10025
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 /* | |
10 * os_win32.c | |
11 * | |
12 * Used for both the console version and the Win32 GUI. A lot of code is for | |
13 * the console version only, so there is a lot of "#ifndef FEAT_GUI_W32". | |
14 * | |
15 * Win32 (Windows NT and Windows 95) system-dependent routines. | |
16 * Portions lifted from the Win32 SDK samples, the MSDOS-dependent code, | |
17 * NetHack 3.1.3, GNU Emacs 19.30, and Vile 5.5. | |
18 * | |
19 * George V. Reilly <george@reilly.org> wrote most of this. | |
20 * Roger Knobbe <rogerk@wonderware.com> did the initial port of Vim 3.0. | |
21 */ | |
22 | |
23 #include "vim.h" | |
24 | |
14 | 25 #ifdef FEAT_MZSCHEME |
26 # include "if_mzsch.h" | |
27 #endif | |
28 | |
7 | 29 #include <sys/types.h> |
30 #include <signal.h> | |
31 #include <limits.h> | |
3927 | 32 |
33 /* cproto fails on missing include files */ | |
34 #ifndef PROTO | |
35 # include <process.h> | |
36 #endif | |
7 | 37 |
38 #undef chdir | |
39 #ifdef __GNUC__ | |
40 # ifndef __MINGW32__ | |
41 # include <dirent.h> | |
42 # endif | |
43 #else | |
44 # include <direct.h> | |
45 #endif | |
46 | |
3927 | 47 #ifndef PROTO |
48 # if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32) | |
49 # include <shellapi.h> | |
50 # endif | |
7 | 51 #endif |
52 | |
10317
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
53 #ifdef FEAT_JOB_CHANNEL |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
54 # include <tlhelp32.h> |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
55 #endif |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
56 |
7 | 57 #ifdef __MINGW32__ |
58 # ifndef FROM_LEFT_1ST_BUTTON_PRESSED | |
59 # define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001 | |
60 # endif | |
61 # ifndef RIGHTMOST_BUTTON_PRESSED | |
62 # define RIGHTMOST_BUTTON_PRESSED 0x0002 | |
63 # endif | |
64 # ifndef FROM_LEFT_2ND_BUTTON_PRESSED | |
65 # define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004 | |
66 # endif | |
67 # ifndef FROM_LEFT_3RD_BUTTON_PRESSED | |
68 # define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008 | |
69 # endif | |
70 # ifndef FROM_LEFT_4TH_BUTTON_PRESSED | |
71 # define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010 | |
72 # endif | |
73 | |
74 /* | |
75 * EventFlags | |
76 */ | |
77 # ifndef MOUSE_MOVED | |
78 # define MOUSE_MOVED 0x0001 | |
79 # endif | |
80 # ifndef DOUBLE_CLICK | |
81 # define DOUBLE_CLICK 0x0002 | |
82 # endif | |
83 #endif | |
84 | |
85 /* Record all output and all keyboard & mouse input */ | |
86 /* #define MCH_WRITE_DUMP */ | |
87 | |
88 #ifdef MCH_WRITE_DUMP | |
89 FILE* fdDump = NULL; | |
90 #endif | |
91 | |
92 /* | |
93 * When generating prototypes for Win32 on Unix, these lines make the syntax | |
94 * errors disappear. They do not need to be correct. | |
95 */ | |
96 #ifdef PROTO | |
97 #define WINAPI | |
98 typedef char * LPCSTR; | |
26 | 99 typedef char * LPWSTR; |
7 | 100 typedef int ACCESS_MASK; |
101 typedef int BOOL; | |
102 typedef int COLORREF; | |
103 typedef int CONSOLE_CURSOR_INFO; | |
104 typedef int COORD; | |
105 typedef int DWORD; | |
106 typedef int HANDLE; | |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
107 typedef int LPHANDLE; |
7 | 108 typedef int HDC; |
109 typedef int HFONT; | |
110 typedef int HICON; | |
111 typedef int HINSTANCE; | |
112 typedef int HWND; | |
113 typedef int INPUT_RECORD; | |
11929
3457728d1a58
patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents:
11921
diff
changeset
|
114 typedef int INT; |
7 | 115 typedef int KEY_EVENT_RECORD; |
116 typedef int LOGFONT; | |
117 typedef int LPBOOL; | |
118 typedef int LPCTSTR; | |
119 typedef int LPDWORD; | |
120 typedef int LPSTR; | |
121 typedef int LPTSTR; | |
122 typedef int LPVOID; | |
123 typedef int MOUSE_EVENT_RECORD; | |
124 typedef int PACL; | |
125 typedef int PDWORD; | |
126 typedef int PHANDLE; | |
127 typedef int PRINTDLG; | |
128 typedef int PSECURITY_DESCRIPTOR; | |
129 typedef int PSID; | |
130 typedef int SECURITY_INFORMATION; | |
131 typedef int SHORT; | |
132 typedef int SMALL_RECT; | |
133 typedef int TEXTMETRIC; | |
134 typedef int TOKEN_INFORMATION_CLASS; | |
135 typedef int TRUSTEE; | |
136 typedef int WORD; | |
137 typedef int WCHAR; | |
138 typedef void VOID; | |
3927 | 139 typedef int BY_HANDLE_FILE_INFORMATION; |
5112
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
140 typedef int SE_OBJECT_TYPE; |
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
141 typedef int PSNSECINFO; |
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
142 typedef int PSNSECINFOW; |
6359 | 143 typedef int STARTUPINFO; |
144 typedef int PROCESS_INFORMATION; | |
10025
068f397d0da4
commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
145 typedef int LPSECURITY_ATTRIBUTES; |
068f397d0da4
commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
146 # define __stdcall /* empty */ |
7 | 147 #endif |
148 | |
149 #if defined(__BORLANDC__) | |
150 /* Strangely Borland uses a non-standard name. */ | |
151 # define wcsicmp(a, b) wcscmpi((a), (b)) | |
152 #endif | |
153 | |
154 #ifndef FEAT_GUI_W32 | |
155 /* Win32 Console handles for input and output */ | |
156 static HANDLE g_hConIn = INVALID_HANDLE_VALUE; | |
157 static HANDLE g_hConOut = INVALID_HANDLE_VALUE; | |
158 | |
159 /* Win32 Screen buffer,coordinate,console I/O information */ | |
160 static SMALL_RECT g_srScrollRegion; | |
161 static COORD g_coord; /* 0-based, but external coords are 1-based */ | |
162 | |
163 /* The attribute of the screen when the editor was started */ | |
164 static WORD g_attrDefault = 7; /* lightgray text on black background */ | |
165 static WORD g_attrCurrent; | |
166 | |
167 static int g_fCBrkPressed = FALSE; /* set by ctrl-break interrupt */ | |
168 static int g_fCtrlCPressed = FALSE; /* set when ctrl-C or ctrl-break detected */ | |
169 static int g_fForceExit = FALSE; /* set when forcefully exiting */ | |
170 | |
171 static void termcap_mode_start(void); | |
172 static void termcap_mode_end(void); | |
173 static void clear_chars(COORD coord, DWORD n); | |
174 static void clear_screen(void); | |
175 static void clear_to_end_of_display(void); | |
176 static void clear_to_end_of_line(void); | |
177 static void scroll(unsigned cLines); | |
178 static void set_scroll_region(unsigned left, unsigned top, | |
179 unsigned right, unsigned bottom); | |
180 static void insert_lines(unsigned cLines); | |
181 static void delete_lines(unsigned cLines); | |
182 static void gotoxy(unsigned x, unsigned y); | |
183 static void normvideo(void); | |
184 static void textattr(WORD wAttr); | |
185 static void textcolor(WORD wAttr); | |
186 static void textbackground(WORD wAttr); | |
187 static void standout(void); | |
188 static void standend(void); | |
189 static void visual_bell(void); | |
190 static void cursor_visible(BOOL fVisible); | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
191 static DWORD write_chars(char_u *pchBuf, DWORD cbToWrite); |
7 | 192 static void create_conin(void); |
193 static int s_cursor_visible = TRUE; | |
194 static int did_create_conin = FALSE; | |
195 #else | |
196 static int s_dont_use_vimrun = TRUE; | |
197 static int need_vimrun_warning = FALSE; | |
198 static char *vimrun_path = "vimrun "; | |
199 #endif | |
200 | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
201 static int win32_getattrs(char_u *name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
202 static int win32_setattrs(char_u *name, int attrs); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
203 static int win32_set_archive(char_u *name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
204 |
7 | 205 #ifndef FEAT_GUI_W32 |
206 static int suppress_winsize = 1; /* don't fiddle with console */ | |
207 #endif | |
208 | |
2612 | 209 static char_u *exe_path = NULL; |
210 | |
5633 | 211 static BOOL win8_or_later = FALSE; |
212 | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
213 #ifndef FEAT_GUI_W32 |
5580 | 214 /* |
215 * Version of ReadConsoleInput() that works with IME. | |
5590 | 216 * Works around problems on Windows 8. |
5580 | 217 */ |
218 static BOOL | |
219 read_console_input( | |
5590 | 220 HANDLE hInput, |
221 INPUT_RECORD *lpBuffer, | |
222 DWORD nLength, | |
223 LPDWORD lpEvents) | |
5580 | 224 { |
225 enum | |
226 { | |
5590 | 227 IRSIZE = 10 |
5580 | 228 }; |
5590 | 229 static INPUT_RECORD s_irCache[IRSIZE]; |
5580 | 230 static DWORD s_dwIndex = 0; |
231 static DWORD s_dwMax = 0; | |
5590 | 232 DWORD dwEvents; |
5635 | 233 int head; |
234 int tail; | |
235 int i; | |
5580 | 236 |
6981 | 237 if (nLength == -2) |
238 return (s_dwMax > 0) ? TRUE : FALSE; | |
239 | |
5633 | 240 if (!win8_or_later) |
241 { | |
242 if (nLength == -1) | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
243 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
244 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents); |
5633 | 245 } |
246 | |
5580 | 247 if (s_dwMax == 0) |
248 { | |
5590 | 249 if (nLength == -1) |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
250 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
251 if (!ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents)) |
5590 | 252 return FALSE; |
5580 | 253 s_dwIndex = 0; |
5590 | 254 s_dwMax = dwEvents; |
255 if (dwEvents == 0) | |
5580 | 256 { |
5590 | 257 *lpEvents = 0; |
258 return TRUE; | |
5580 | 259 } |
5635 | 260 |
261 if (s_dwMax > 1) | |
262 { | |
263 head = 0; | |
264 tail = s_dwMax - 1; | |
265 while (head != tail) | |
266 { | |
267 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT | |
268 && s_irCache[head + 1].EventType | |
269 == WINDOW_BUFFER_SIZE_EVENT) | |
270 { | |
271 /* Remove duplicate event to avoid flicker. */ | |
272 for (i = head; i < tail; ++i) | |
273 s_irCache[i] = s_irCache[i + 1]; | |
274 --tail; | |
275 continue; | |
276 } | |
277 head++; | |
278 } | |
279 s_dwMax = tail + 1; | |
280 } | |
5580 | 281 } |
5635 | 282 |
5590 | 283 *lpBuffer = s_irCache[s_dwIndex]; |
6981 | 284 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax) |
5580 | 285 s_dwMax = 0; |
5590 | 286 *lpEvents = 1; |
5580 | 287 return TRUE; |
288 } | |
289 | |
290 /* | |
291 * Version of PeekConsoleInput() that works with IME. | |
292 */ | |
293 static BOOL | |
294 peek_console_input( | |
5590 | 295 HANDLE hInput, |
296 INPUT_RECORD *lpBuffer, | |
297 DWORD nLength, | |
298 LPDWORD lpEvents) | |
5580 | 299 { |
5590 | 300 return read_console_input(hInput, lpBuffer, -1, lpEvents); |
5580 | 301 } |
302 | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
303 # ifdef FEAT_CLIENTSERVER |
6981 | 304 static DWORD |
305 msg_wait_for_multiple_objects( | |
306 DWORD nCount, | |
307 LPHANDLE pHandles, | |
308 BOOL fWaitAll, | |
309 DWORD dwMilliseconds, | |
310 DWORD dwWakeMask) | |
311 { | |
312 if (read_console_input(NULL, NULL, -2, NULL)) | |
313 return WAIT_OBJECT_0; | |
314 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll, | |
315 dwMilliseconds, dwWakeMask); | |
316 } | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
317 # endif |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
318 |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
319 # ifndef FEAT_CLIENTSERVER |
6981 | 320 static DWORD |
321 wait_for_single_object( | |
322 HANDLE hHandle, | |
323 DWORD dwMilliseconds) | |
324 { | |
325 if (read_console_input(NULL, NULL, -2, NULL)) | |
326 return WAIT_OBJECT_0; | |
327 return WaitForSingleObject(hHandle, dwMilliseconds); | |
328 } | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
329 # endif |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
330 #endif |
6981 | 331 |
7 | 332 static void |
333 get_exe_name(void) | |
334 { | |
2630 | 335 /* Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned |
336 * as the maximum length that works (plus a NUL byte). */ | |
337 #define MAX_ENV_PATH_LEN 8192 | |
338 char temp[MAX_ENV_PATH_LEN]; | |
2612 | 339 char_u *p; |
7 | 340 |
341 if (exe_name == NULL) | |
342 { | |
343 /* store the name of the executable, may be used for $VIM */ | |
2630 | 344 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1); |
7 | 345 if (*temp != NUL) |
346 exe_name = FullName_save((char_u *)temp, FALSE); | |
347 } | |
819 | 348 |
2612 | 349 if (exe_path == NULL && exe_name != NULL) |
819 | 350 { |
2615 | 351 exe_path = vim_strnsave(exe_name, |
352 (int)(gettail_sep(exe_name) - exe_name)); | |
2612 | 353 if (exe_path != NULL) |
819 | 354 { |
2612 | 355 /* Append our starting directory to $PATH, so that when doing |
356 * "!xxd" it's found in our starting directory. Needed because | |
357 * SearchPath() also looks there. */ | |
358 p = mch_getenv("PATH"); | |
2630 | 359 if (p == NULL |
360 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN) | |
2612 | 361 { |
2630 | 362 if (p == NULL || *p == NUL) |
363 temp[0] = NUL; | |
364 else | |
365 { | |
366 STRCPY(temp, p); | |
367 STRCAT(temp, ";"); | |
368 } | |
2612 | 369 STRCAT(temp, exe_path); |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
370 vim_setenv((char_u *)"PATH", (char_u *)temp); |
2612 | 371 } |
819 | 372 } |
373 } | |
7 | 374 } |
375 | |
2612 | 376 /* |
3361 | 377 * Unescape characters in "p" that appear in "escaped". |
378 */ | |
379 static void | |
380 unescape_shellxquote(char_u *p, char_u *escaped) | |
381 { | |
3386 | 382 int l = (int)STRLEN(p); |
3361 | 383 int n; |
384 | |
385 while (*p != NUL) | |
386 { | |
387 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL) | |
388 mch_memmove(p, p + 1, l--); | |
389 #ifdef FEAT_MBYTE | |
390 n = (*mb_ptr2len)(p); | |
391 #else | |
392 n = 1; | |
393 #endif | |
394 p += n; | |
395 l -= n; | |
396 } | |
397 } | |
398 | |
399 /* | |
2612 | 400 * Load library "name". |
401 */ | |
402 HINSTANCE | |
403 vimLoadLib(char *name) | |
404 { | |
3902 | 405 HINSTANCE dll = NULL; |
3889 | 406 |
407 /* NOTE: Do not use mch_dirname() and mch_chdir() here, they may call | |
408 * vimLoadLib() recursively, which causes a stack overflow. */ | |
2612 | 409 if (exe_path == NULL) |
410 get_exe_name(); | |
3902 | 411 if (exe_path != NULL) |
2612 | 412 { |
3902 | 413 WCHAR old_dirw[MAXPATHL]; |
414 | |
415 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0) | |
416 { | |
417 /* Change directory to where the executable is, both to make | |
418 * sure we find a .dll there and to avoid looking for a .dll | |
419 * in the current directory. */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
420 SetCurrentDirectory((LPCSTR)exe_path); |
3902 | 421 dll = LoadLibrary(name); |
422 SetCurrentDirectoryW(old_dirw); | |
423 return dll; | |
424 } | |
2612 | 425 } |
426 return dll; | |
427 } | |
428 | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
429 #if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
430 /* |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
431 * Get related information about 'funcname' which is imported by 'hInst'. |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
432 * If 'info' is 0, return the function address. |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
433 * If 'info' is 1, return the module name which the function is imported from. |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
434 */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
435 static void * |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
436 get_imported_func_info(HINSTANCE hInst, const char *funcname, int info) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
437 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
438 PBYTE pImage = (PBYTE)hInst; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
439 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
440 PIMAGE_NT_HEADERS pPE; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
441 PIMAGE_IMPORT_DESCRIPTOR pImpDesc; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
442 PIMAGE_THUNK_DATA pIAT; /* Import Address Table */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
443 PIMAGE_THUNK_DATA pINT; /* Import Name Table */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
444 PIMAGE_IMPORT_BY_NAME pImpName; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
445 |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
446 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
447 return NULL; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
448 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
449 if (pPE->Signature != IMAGE_NT_SIGNATURE) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
450 return NULL; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
451 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
452 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT] |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
453 .VirtualAddress); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
454 for (; pImpDesc->FirstThunk; ++pImpDesc) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
455 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
456 if (!pImpDesc->OriginalFirstThunk) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
457 continue; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
458 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
459 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
460 for (; pIAT->u1.Function; ++pIAT, ++pINT) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
461 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
462 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal)) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
463 continue; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
464 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
465 + (UINT_PTR)(pINT->u1.AddressOfData)); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
466 if (strcmp((char *)pImpName->Name, funcname) == 0) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
467 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
468 switch (info) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
469 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
470 case 0: |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
471 return (void *)pIAT->u1.Function; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
472 case 1: |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
473 return (void *)(pImage + pImpDesc->Name); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
474 default: |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
475 return NULL; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
476 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
477 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
478 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
479 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
480 return NULL; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
481 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
482 |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
483 /* |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
484 * Get the module handle which 'funcname' in 'hInst' is imported from. |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
485 */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
486 HINSTANCE |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
487 find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
488 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
489 char *modulename; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
490 |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
491 modulename = (char *)get_imported_func_info(hInst, funcname, 1); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
492 if (modulename != NULL) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
493 return GetModuleHandleA(modulename); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
494 return NULL; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
495 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
496 |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
497 /* |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
498 * Get the address of 'funcname' which is imported by 'hInst' DLL. |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
499 */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
500 void * |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
501 get_dll_import_func(HINSTANCE hInst, const char *funcname) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
502 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
503 return get_imported_func_info(hInst, funcname, 0); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
504 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
505 #endif |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
506 |
7 | 507 #if defined(DYNAMIC_GETTEXT) || defined(PROTO) |
508 # ifndef GETTEXT_DLL | |
509 # define GETTEXT_DLL "libintl.dll" | |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
510 # define GETTEXT_DLL_ALT "libintl-8.dll" |
7 | 511 # endif |
3622 | 512 /* Dummy functions */ |
36 | 513 static char *null_libintl_gettext(const char *); |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
514 static char *null_libintl_ngettext(const char *, const char *, unsigned long n); |
36 | 515 static char *null_libintl_textdomain(const char *); |
516 static char *null_libintl_bindtextdomain(const char *, const char *); | |
517 static char *null_libintl_bind_textdomain_codeset(const char *, const char *); | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
518 static int null_libintl_putenv(const char *); |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
519 static int null_libintl_wputenv(const wchar_t *); |
7 | 520 |
2612 | 521 static HINSTANCE hLibintlDLL = NULL; |
36 | 522 char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext; |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
523 char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n) |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
524 = null_libintl_ngettext; |
36 | 525 char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain; |
526 char *(*dyn_libintl_bindtextdomain)(const char *, const char *) | |
7 | 527 = null_libintl_bindtextdomain; |
36 | 528 char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *) |
529 = null_libintl_bind_textdomain_codeset; | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
530 int (*dyn_libintl_putenv)(const char *) = null_libintl_putenv; |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
531 int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv; |
7 | 532 |
533 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
534 dyn_libintl_init(void) |
7 | 535 { |
536 int i; | |
537 static struct | |
538 { | |
539 char *name; | |
540 FARPROC *ptr; | |
541 } libintl_entry[] = | |
542 { | |
543 {"gettext", (FARPROC*)&dyn_libintl_gettext}, | |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
544 {"ngettext", (FARPROC*)&dyn_libintl_ngettext}, |
7 | 545 {"textdomain", (FARPROC*)&dyn_libintl_textdomain}, |
546 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain}, | |
547 {NULL, NULL} | |
548 }; | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
549 HINSTANCE hmsvcrt; |
7 | 550 |
551 /* No need to initialize twice. */ | |
552 if (hLibintlDLL) | |
553 return 1; | |
554 /* Load gettext library (libintl.dll) */ | |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
555 hLibintlDLL = vimLoadLib(GETTEXT_DLL); |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
556 #ifdef GETTEXT_DLL_ALT |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
557 if (!hLibintlDLL) |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
558 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT); |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
559 #endif |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
560 if (!hLibintlDLL) |
7 | 561 { |
2612 | 562 if (p_verbose > 0) |
7 | 563 { |
2612 | 564 verbose_enter(); |
565 EMSG2(_(e_loadlib), GETTEXT_DLL); | |
566 verbose_leave(); | |
7 | 567 } |
2612 | 568 return 0; |
7 | 569 } |
570 for (i = 0; libintl_entry[i].name != NULL | |
571 && libintl_entry[i].ptr != NULL; ++i) | |
572 { | |
573 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL, | |
574 libintl_entry[i].name)) == NULL) | |
575 { | |
576 dyn_libintl_end(); | |
577 if (p_verbose > 0) | |
292 | 578 { |
579 verbose_enter(); | |
7 | 580 EMSG2(_(e_loadfunc), libintl_entry[i].name); |
292 | 581 verbose_leave(); |
582 } | |
7 | 583 return 0; |
584 } | |
585 } | |
36 | 586 |
587 /* The bind_textdomain_codeset() function is optional. */ | |
323 | 588 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL, |
36 | 589 "bind_textdomain_codeset"); |
590 if (dyn_libintl_bind_textdomain_codeset == NULL) | |
591 dyn_libintl_bind_textdomain_codeset = | |
592 null_libintl_bind_textdomain_codeset; | |
593 | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
594 /* _putenv() function for the libintl.dll is optional. */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
595 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv"); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
596 if (hmsvcrt != NULL) |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
597 { |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
598 dyn_libintl_putenv = (void *)GetProcAddress(hmsvcrt, "_putenv"); |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
599 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv"); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
600 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
601 if (dyn_libintl_putenv == NULL || dyn_libintl_putenv == _putenv) |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
602 dyn_libintl_putenv = null_libintl_putenv; |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
603 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv) |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
604 dyn_libintl_wputenv = null_libintl_wputenv; |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
605 |
7 | 606 return 1; |
607 } | |
608 | |
609 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
610 dyn_libintl_end(void) |
7 | 611 { |
612 if (hLibintlDLL) | |
613 FreeLibrary(hLibintlDLL); | |
614 hLibintlDLL = NULL; | |
615 dyn_libintl_gettext = null_libintl_gettext; | |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
616 dyn_libintl_ngettext = null_libintl_ngettext; |
7 | 617 dyn_libintl_textdomain = null_libintl_textdomain; |
618 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain; | |
36 | 619 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset; |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
620 dyn_libintl_putenv = null_libintl_putenv; |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
621 dyn_libintl_wputenv = null_libintl_wputenv; |
7 | 622 } |
623 | |
624 static char * | |
26 | 625 null_libintl_gettext(const char *msgid) |
7 | 626 { |
627 return (char*)msgid; | |
628 } | |
629 | |
630 static char * | |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
631 null_libintl_ngettext( |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
632 const char *msgid, |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
633 const char *msgid_plural, |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
634 unsigned long n) |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
635 { |
9762
93dcc4329c74
commit https://github.com/vim/vim/commit/c90f2aedd0a5dc2cc75bc9b5f475f8a3e3fe36b1
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
636 return (char *)(n == 1 ? msgid : msgid_plural); |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
637 } |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
638 |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
639 static char * |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
640 null_libintl_bindtextdomain( |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
641 const char *domainname UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
642 const char *dirname UNUSED) |
7 | 643 { |
644 return NULL; | |
645 } | |
646 | |
647 static char * | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
648 null_libintl_bind_textdomain_codeset( |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
649 const char *domainname UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
650 const char *codeset UNUSED) |
36 | 651 { |
652 return NULL; | |
653 } | |
654 | |
655 static char * | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
656 null_libintl_textdomain(const char *domainname UNUSED) |
7 | 657 { |
658 return NULL; | |
659 } | |
660 | |
11929
3457728d1a58
patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents:
11921
diff
changeset
|
661 static int |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
662 null_libintl_putenv(const char *envstring UNUSED) |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
663 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
664 return 0; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
665 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
666 |
11929
3457728d1a58
patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents:
11921
diff
changeset
|
667 static int |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
668 null_libintl_wputenv(const wchar_t *envstring UNUSED) |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
669 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
670 return 0; |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
671 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
672 |
7 | 673 #endif /* DYNAMIC_GETTEXT */ |
674 | |
675 /* This symbol is not defined in older versions of the SDK or Visual C++ */ | |
676 | |
677 #ifndef VER_PLATFORM_WIN32_WINDOWS | |
678 # define VER_PLATFORM_WIN32_WINDOWS 1 | |
679 #endif | |
680 | |
681 DWORD g_PlatformId; | |
682 | |
683 #ifdef HAVE_ACL | |
3927 | 684 # ifndef PROTO |
685 # include <aclapi.h> | |
686 # endif | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
687 # ifndef PROTECTED_DACL_SECURITY_INFORMATION |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
688 # define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
689 # endif |
7 | 690 #endif |
691 | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
692 #ifdef HAVE_ACL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
693 /* |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
694 * Enables or disables the specified privilege. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
695 */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
696 static BOOL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
697 win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
698 { |
5590 | 699 BOOL bResult; |
700 LUID luid; | |
701 HANDLE hToken; | |
702 TOKEN_PRIVILEGES tokenPrivileges; | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
703 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
704 if (!OpenProcessToken(GetCurrentProcess(), |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
705 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
706 return FALSE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
707 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
708 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid)) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
709 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
710 CloseHandle(hToken); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
711 return FALSE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
712 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
713 |
6047 | 714 tokenPrivileges.PrivilegeCount = 1; |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
715 tokenPrivileges.Privileges[0].Luid = luid; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
716 tokenPrivileges.Privileges[0].Attributes = bEnable ? |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
717 SE_PRIVILEGE_ENABLED : 0; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
718 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
719 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges, |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
720 sizeof(TOKEN_PRIVILEGES), NULL, NULL); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
721 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
722 CloseHandle(hToken); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
723 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
724 return bResult && GetLastError() == ERROR_SUCCESS; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
725 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
726 #endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
727 |
7 | 728 /* |
729 * Set g_PlatformId to VER_PLATFORM_WIN32_NT (NT) or | |
730 * VER_PLATFORM_WIN32_WINDOWS (Win95). | |
731 */ | |
732 void | |
733 PlatformId(void) | |
734 { | |
735 static int done = FALSE; | |
736 | |
737 if (!done) | |
738 { | |
739 OSVERSIONINFO ovi; | |
740 | |
741 ovi.dwOSVersionInfoSize = sizeof(ovi); | |
742 GetVersionEx(&ovi); | |
743 | |
744 g_PlatformId = ovi.dwPlatformId; | |
745 | |
5633 | 746 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2) |
747 || ovi.dwMajorVersion > 6) | |
748 win8_or_later = TRUE; | |
749 | |
7 | 750 #ifdef HAVE_ACL |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
751 /* Enable privilege for getting or setting SACLs. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
752 win32_enable_privilege(SE_SECURITY_NAME, TRUE); |
7 | 753 #endif |
754 done = TRUE; | |
755 } | |
756 } | |
757 | |
758 #ifndef FEAT_GUI_W32 | |
759 | |
760 #define SHIFT (SHIFT_PRESSED) | |
761 #define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED) | |
762 #define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED) | |
763 #define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED) | |
764 | |
765 | |
766 /* When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode. | |
767 * We map function keys to their ANSI terminal equivalents, as produced | |
768 * by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any | |
769 * ANSI key with a value >= '\300' is nonstandard, but provided anyway | |
770 * so that the user can have access to all SHIFT-, CTRL-, and ALT- | |
771 * combinations of function/arrow/etc keys. | |
772 */ | |
773 | |
297 | 774 static const struct |
7 | 775 { |
776 WORD wVirtKey; | |
777 BOOL fAnsiKey; | |
778 int chAlone; | |
779 int chShift; | |
780 int chCtrl; | |
781 int chAlt; | |
782 } VirtKeyMap[] = | |
783 { | |
784 | |
785 /* Key ANSI alone shift ctrl alt */ | |
786 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, }, | |
787 | |
788 { VK_F1, TRUE, ';', 'T', '^', 'h', }, | |
789 { VK_F2, TRUE, '<', 'U', '_', 'i', }, | |
790 { VK_F3, TRUE, '=', 'V', '`', 'j', }, | |
791 { VK_F4, TRUE, '>', 'W', 'a', 'k', }, | |
792 { VK_F5, TRUE, '?', 'X', 'b', 'l', }, | |
793 { VK_F6, TRUE, '@', 'Y', 'c', 'm', }, | |
794 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', }, | |
795 { VK_F8, TRUE, 'B', '[', 'e', 'o', }, | |
796 { VK_F9, TRUE, 'C', '\\', 'f', 'p', }, | |
797 { VK_F10, TRUE, 'D', ']', 'g', 'q', }, | |
798 { VK_F11, TRUE, '\205', '\207', '\211', '\213', }, | |
799 { VK_F12, TRUE, '\206', '\210', '\212', '\214', }, | |
800 | |
801 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', }, | |
802 { VK_UP, TRUE, 'H', '\304', '\305', '\306', }, | |
803 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, /*PgUp*/ | |
804 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', }, | |
805 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', }, | |
806 { VK_END, TRUE, 'O', '\315', 'u', '\316', }, | |
807 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', }, | |
808 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, /*PgDn*/ | |
809 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', }, | |
810 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', }, | |
811 | |
812 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, /*PrtScrn*/ | |
813 | |
814 #if 0 | |
815 /* Most people don't have F13-F20, but what the hell... */ | |
816 { VK_F13, TRUE, '\332', '\333', '\334', '\335', }, | |
817 { VK_F14, TRUE, '\336', '\337', '\340', '\341', }, | |
818 { VK_F15, TRUE, '\342', '\343', '\344', '\345', }, | |
819 { VK_F16, TRUE, '\346', '\347', '\350', '\351', }, | |
820 { VK_F17, TRUE, '\352', '\353', '\354', '\355', }, | |
821 { VK_F18, TRUE, '\356', '\357', '\360', '\361', }, | |
822 { VK_F19, TRUE, '\362', '\363', '\364', '\365', }, | |
823 { VK_F20, TRUE, '\366', '\367', '\370', '\371', }, | |
824 #endif | |
825 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, /* keyp '+' */ | |
826 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, /* keyp '-' */ | |
827 /* { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, keyp '/' */ | |
828 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, /* keyp '*' */ | |
829 | |
830 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', }, | |
831 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', }, | |
832 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', }, | |
833 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', }, | |
834 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', }, | |
835 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', }, | |
836 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', }, | |
837 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', }, | |
838 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', }, | |
839 /* Sorry, out of number space! <negri>*/ | |
840 { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', }, | |
841 | |
842 }; | |
843 | |
844 | |
845 #ifdef _MSC_VER | |
846 // The ToAscii bug destroys several registers. Need to turn off optimization | |
847 // or the GetConsoleKeyboardLayoutName hack will fail in non-debug versions | |
797 | 848 # pragma warning(push) |
849 # pragma warning(disable: 4748) | |
7 | 850 # pragma optimize("", off) |
851 #endif | |
852 | |
853 #if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__) | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
854 # define UChar UnicodeChar |
7 | 855 #else |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
856 # define UChar uChar.UnicodeChar |
7 | 857 #endif |
858 | |
859 /* The return code indicates key code size. */ | |
860 static int | |
861 #ifdef __BORLANDC__ | |
862 __stdcall | |
863 #endif | |
864 win32_kbd_patch_key( | |
26 | 865 KEY_EVENT_RECORD *pker) |
7 | 866 { |
867 UINT uMods = pker->dwControlKeyState; | |
868 static int s_iIsDead = 0; | |
869 static WORD awAnsiCode[2]; | |
870 static BYTE abKeystate[256]; | |
871 | |
872 | |
873 if (s_iIsDead == 2) | |
874 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
875 pker->UChar = (WCHAR) awAnsiCode[1]; |
7 | 876 s_iIsDead = 0; |
877 return 1; | |
878 } | |
879 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
880 if (pker->UChar != 0) |
7 | 881 return 1; |
882 | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
1752
diff
changeset
|
883 vim_memset(abKeystate, 0, sizeof (abKeystate)); |
7 | 884 |
885 /* Clear any pending dead keys */ | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
886 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0); |
7 | 887 |
888 if (uMods & SHIFT_PRESSED) | |
889 abKeystate[VK_SHIFT] = 0x80; | |
890 if (uMods & CAPSLOCK_ON) | |
891 abKeystate[VK_CAPITAL] = 1; | |
892 | |
893 if ((uMods & ALT_GR) == ALT_GR) | |
894 { | |
895 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] = | |
896 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80; | |
897 } | |
898 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
899 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
900 abKeystate, awAnsiCode, 2, 0); |
7 | 901 |
902 if (s_iIsDead > 0) | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
903 pker->UChar = (WCHAR) awAnsiCode[0]; |
7 | 904 |
905 return s_iIsDead; | |
906 } | |
907 | |
908 #ifdef _MSC_VER | |
909 /* MUST switch optimization on again here, otherwise a call to | |
910 * decode_key_event() may crash (e.g. when hitting caps-lock) */ | |
911 # pragma optimize("", on) | |
797 | 912 # pragma warning(pop) |
7 | 913 |
914 # if (_MSC_VER < 1100) | |
915 /* MUST turn off global optimisation for this next function, or | |
916 * pressing ctrl-minus in insert mode crashes Vim when built with | |
917 * VC4.1. -- negri. */ | |
918 # pragma optimize("g", off) | |
919 # endif | |
920 #endif | |
921 | |
922 static BOOL g_fJustGotFocus = FALSE; | |
923 | |
924 /* | |
925 * Decode a KEY_EVENT into one or two keystrokes | |
926 */ | |
927 static BOOL | |
928 decode_key_event( | |
929 KEY_EVENT_RECORD *pker, | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
930 WCHAR *pch, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
931 WCHAR *pch2, |
7 | 932 int *pmodifiers, |
933 BOOL fDoPost) | |
934 { | |
935 int i; | |
936 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL); | |
937 | |
938 *pch = *pch2 = NUL; | |
939 g_fJustGotFocus = FALSE; | |
940 | |
941 /* ignore key up events */ | |
942 if (!pker->bKeyDown) | |
943 return FALSE; | |
944 | |
945 /* ignore some keystrokes */ | |
946 switch (pker->wVirtualKeyCode) | |
947 { | |
948 /* modifiers */ | |
949 case VK_SHIFT: | |
950 case VK_CONTROL: | |
951 case VK_MENU: /* Alt key */ | |
952 return FALSE; | |
953 | |
954 default: | |
955 break; | |
956 } | |
957 | |
958 /* special cases */ | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
959 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL) |
7 | 960 { |
961 /* Ctrl-6 is Ctrl-^ */ | |
962 if (pker->wVirtualKeyCode == '6') | |
963 { | |
964 *pch = Ctrl_HAT; | |
965 return TRUE; | |
966 } | |
967 /* Ctrl-2 is Ctrl-@ */ | |
968 else if (pker->wVirtualKeyCode == '2') | |
969 { | |
970 *pch = NUL; | |
971 return TRUE; | |
972 } | |
973 /* Ctrl-- is Ctrl-_ */ | |
974 else if (pker->wVirtualKeyCode == 0xBD) | |
975 { | |
976 *pch = Ctrl__; | |
977 return TRUE; | |
978 } | |
979 } | |
980 | |
981 /* Shift-TAB */ | |
982 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED)) | |
983 { | |
984 *pch = K_NUL; | |
985 *pch2 = '\017'; | |
986 return TRUE; | |
987 } | |
988 | |
989 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; ) | |
990 { | |
991 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode) | |
992 { | |
993 if (nModifs == 0) | |
994 *pch = VirtKeyMap[i].chAlone; | |
995 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0) | |
996 *pch = VirtKeyMap[i].chShift; | |
997 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0) | |
998 *pch = VirtKeyMap[i].chCtrl; | |
999 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0) | |
1000 *pch = VirtKeyMap[i].chAlt; | |
1001 | |
1002 if (*pch != 0) | |
1003 { | |
1004 if (VirtKeyMap[i].fAnsiKey) | |
1005 { | |
1006 *pch2 = *pch; | |
1007 *pch = K_NUL; | |
1008 } | |
1009 | |
1010 return TRUE; | |
1011 } | |
1012 } | |
1013 } | |
1014 | |
1015 i = win32_kbd_patch_key(pker); | |
1016 | |
1017 if (i < 0) | |
1018 *pch = NUL; | |
1019 else | |
1020 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1021 *pch = (i > 0) ? pker->UChar : NUL; |
7 | 1022 |
1023 if (pmodifiers != NULL) | |
1024 { | |
1025 /* Pass on the ALT key as a modifier, but only when not combined | |
1026 * with CTRL (which is ALTGR). */ | |
1027 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0) | |
1028 *pmodifiers |= MOD_MASK_ALT; | |
1029 | |
1030 /* Pass on SHIFT only for special keys, because we don't know when | |
1031 * it's already included with the character. */ | |
1032 if ((nModifs & SHIFT) != 0 && *pch <= 0x20) | |
1033 *pmodifiers |= MOD_MASK_SHIFT; | |
1034 | |
1035 /* Pass on CTRL only for non-special keys, because we don't know | |
1036 * when it's already included with the character. And not when | |
1037 * combined with ALT (which is ALTGR). */ | |
1038 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0 | |
1039 && *pch >= 0x20 && *pch < 0x80) | |
1040 *pmodifiers |= MOD_MASK_CTRL; | |
1041 } | |
1042 } | |
1043 | |
1044 return (*pch != NUL); | |
1045 } | |
1046 | |
1047 #ifdef _MSC_VER | |
1048 # pragma optimize("", on) | |
1049 #endif | |
1050 | |
1051 #endif /* FEAT_GUI_W32 */ | |
1052 | |
1053 | |
1054 #ifdef FEAT_MOUSE | |
1055 | |
1056 /* | |
1057 * For the GUI the mouse handling is in gui_w32.c. | |
1058 */ | |
1059 # ifdef FEAT_GUI_W32 | |
1060 void | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
1061 mch_setmouse(int on UNUSED) |
7 | 1062 { |
1063 } | |
1064 # else | |
1065 static int g_fMouseAvail = FALSE; /* mouse present */ | |
1066 static int g_fMouseActive = FALSE; /* mouse enabled */ | |
1067 static int g_nMouseClick = -1; /* mouse status */ | |
1068 static int g_xMouse; /* mouse x coordinate */ | |
1069 static int g_yMouse; /* mouse y coordinate */ | |
1070 | |
1071 /* | |
1072 * Enable or disable mouse input | |
1073 */ | |
1074 void | |
26 | 1075 mch_setmouse(int on) |
7 | 1076 { |
1077 DWORD cmodein; | |
1078 | |
1079 if (!g_fMouseAvail) | |
1080 return; | |
1081 | |
1082 g_fMouseActive = on; | |
1083 GetConsoleMode(g_hConIn, &cmodein); | |
1084 | |
1085 if (g_fMouseActive) | |
1086 cmodein |= ENABLE_MOUSE_INPUT; | |
1087 else | |
1088 cmodein &= ~ENABLE_MOUSE_INPUT; | |
1089 | |
1090 SetConsoleMode(g_hConIn, cmodein); | |
1091 } | |
1092 | |
1093 /* | |
1094 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT, | |
1095 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse | |
1096 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG | |
1097 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type, | |
1098 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick, | |
1099 * and we return the mouse position in g_xMouse and g_yMouse. | |
1100 * | |
1101 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more | |
1102 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only | |
1103 * by MOUSE_LEFT, _MIDDLE, or _RIGHT. | |
1104 * | |
1105 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE, | |
1106 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, .... | |
1107 * | |
1108 * Windows will send us MOUSE_MOVED notifications whenever the mouse | |
1109 * moves, even if it stays within the same character cell. We ignore | |
1110 * all MOUSE_MOVED messages if the position hasn't really changed, and | |
1111 * we ignore all MOUSE_MOVED messages where no button is held down (i.e., | |
1112 * we're only interested in MOUSE_DRAG). | |
1113 * | |
1114 * All of this is complicated by the code that fakes MOUSE_MIDDLE on | |
1115 * 2-button mouses by pressing the left & right buttons simultaneously. | |
1116 * In practice, it's almost impossible to click both at the same time, | |
1117 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE | |
1118 * in such cases, if the user is clicking quickly. | |
1119 */ | |
1120 static BOOL | |
1121 decode_mouse_event( | |
26 | 1122 MOUSE_EVENT_RECORD *pmer) |
7 | 1123 { |
1124 static int s_nOldButton = -1; | |
1125 static int s_nOldMouseClick = -1; | |
1126 static int s_xOldMouse = -1; | |
1127 static int s_yOldMouse = -1; | |
1128 static linenr_T s_old_topline = 0; | |
1129 #ifdef FEAT_DIFF | |
1130 static int s_old_topfill = 0; | |
1131 #endif | |
1132 static int s_cClicks = 1; | |
1133 static BOOL s_fReleased = TRUE; | |
1134 static DWORD s_dwLastClickTime = 0; | |
1135 static BOOL s_fNextIsMiddle = FALSE; | |
1136 | |
1137 static DWORD cButtons = 0; /* number of buttons supported */ | |
1138 | |
1139 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED; | |
1140 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED; | |
1141 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED; | |
1142 const DWORD LEFT_RIGHT = LEFT | RIGHT; | |
1143 | |
1144 int nButton; | |
1145 | |
1146 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons)) | |
1147 cButtons = 2; | |
1148 | |
1149 if (!g_fMouseAvail || !g_fMouseActive) | |
1150 { | |
1151 g_nMouseClick = -1; | |
1152 return FALSE; | |
1153 } | |
1154 | |
1155 /* get a spurious MOUSE_EVENT immediately after receiving focus; ignore */ | |
1156 if (g_fJustGotFocus) | |
1157 { | |
1158 g_fJustGotFocus = FALSE; | |
1159 return FALSE; | |
1160 } | |
1161 | |
1162 /* unprocessed mouse click? */ | |
1163 if (g_nMouseClick != -1) | |
1164 return TRUE; | |
1165 | |
1166 nButton = -1; | |
1167 g_xMouse = pmer->dwMousePosition.X; | |
1168 g_yMouse = pmer->dwMousePosition.Y; | |
1169 | |
1170 if (pmer->dwEventFlags == MOUSE_MOVED) | |
1171 { | |
1172 /* ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these | |
1173 * events even when the mouse moves only within a char cell.) */ | |
1174 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse) | |
1175 return FALSE; | |
1176 } | |
1177 | |
1178 /* If no buttons are pressed... */ | |
1179 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0) | |
1180 { | |
1181 /* If the last thing returned was MOUSE_RELEASE, ignore this */ | |
1182 if (s_fReleased) | |
1183 return FALSE; | |
1184 | |
1185 nButton = MOUSE_RELEASE; | |
1186 s_fReleased = TRUE; | |
1187 } | |
1188 else /* one or more buttons pressed */ | |
1189 { | |
1190 /* on a 2-button mouse, hold down left and right buttons | |
1191 * simultaneously to get MIDDLE. */ | |
1192 | |
1193 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG) | |
1194 { | |
1195 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT); | |
1196 | |
1197 /* if either left or right button only is pressed, see if the | |
4352 | 1198 * next mouse event has both of them pressed */ |
7 | 1199 if (dwLR == LEFT || dwLR == RIGHT) |
1200 { | |
1201 for (;;) | |
1202 { | |
1203 /* wait a short time for next input event */ | |
1204 if (WaitForSingleObject(g_hConIn, p_mouset / 3) | |
1205 != WAIT_OBJECT_0) | |
1206 break; | |
1207 else | |
1208 { | |
1209 DWORD cRecords = 0; | |
1210 INPUT_RECORD ir; | |
1211 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent; | |
1212 | |
5580 | 1213 peek_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1214 |
1215 if (cRecords == 0 || ir.EventType != MOUSE_EVENT | |
1216 || !(pmer2->dwButtonState & LEFT_RIGHT)) | |
1217 break; | |
1218 else | |
1219 { | |
1220 if (pmer2->dwEventFlags != MOUSE_MOVED) | |
1221 { | |
5580 | 1222 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1223 |
1224 return decode_mouse_event(pmer2); | |
1225 } | |
1226 else if (s_xOldMouse == pmer2->dwMousePosition.X && | |
1227 s_yOldMouse == pmer2->dwMousePosition.Y) | |
1228 { | |
1229 /* throw away spurious mouse move */ | |
5580 | 1230 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1231 |
1232 /* are there any more mouse events in queue? */ | |
5580 | 1233 peek_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1234 |
1235 if (cRecords==0 || ir.EventType != MOUSE_EVENT) | |
1236 break; | |
1237 } | |
1238 else | |
1239 break; | |
1240 } | |
1241 } | |
1242 } | |
1243 } | |
1244 } | |
1245 | |
1246 if (s_fNextIsMiddle) | |
1247 { | |
1248 nButton = (pmer->dwEventFlags == MOUSE_MOVED) | |
1249 ? MOUSE_DRAG : MOUSE_MIDDLE; | |
1250 s_fNextIsMiddle = FALSE; | |
1251 } | |
1252 else if (cButtons == 2 && | |
1253 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT)) | |
1254 { | |
1255 nButton = MOUSE_MIDDLE; | |
1256 | |
1257 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED) | |
1258 { | |
1259 s_fNextIsMiddle = TRUE; | |
1260 nButton = MOUSE_RELEASE; | |
1261 } | |
1262 } | |
1263 else if ((pmer->dwButtonState & LEFT) == LEFT) | |
1264 nButton = MOUSE_LEFT; | |
1265 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE) | |
1266 nButton = MOUSE_MIDDLE; | |
1267 else if ((pmer->dwButtonState & RIGHT) == RIGHT) | |
1268 nButton = MOUSE_RIGHT; | |
1269 | |
1270 if (! s_fReleased && ! s_fNextIsMiddle | |
1271 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG) | |
1272 return FALSE; | |
1273 | |
1274 s_fReleased = s_fNextIsMiddle; | |
1275 } | |
1276 | |
1277 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK) | |
1278 { | |
1279 /* button pressed or released, without mouse moving */ | |
1280 if (nButton != -1 && nButton != MOUSE_RELEASE) | |
1281 { | |
1282 DWORD dwCurrentTime = GetTickCount(); | |
1283 | |
1284 if (s_xOldMouse != g_xMouse | |
1285 || s_yOldMouse != g_yMouse | |
1286 || s_nOldButton != nButton | |
1287 || s_old_topline != curwin->w_topline | |
1288 #ifdef FEAT_DIFF | |
1289 || s_old_topfill != curwin->w_topfill | |
1290 #endif | |
1291 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset) | |
1292 { | |
1293 s_cClicks = 1; | |
1294 } | |
1295 else if (++s_cClicks > 4) | |
1296 { | |
1297 s_cClicks = 1; | |
1298 } | |
1299 | |
1300 s_dwLastClickTime = dwCurrentTime; | |
1301 } | |
1302 } | |
1303 else if (pmer->dwEventFlags == MOUSE_MOVED) | |
1304 { | |
1305 if (nButton != -1 && nButton != MOUSE_RELEASE) | |
1306 nButton = MOUSE_DRAG; | |
1307 | |
1308 s_cClicks = 1; | |
1309 } | |
1310 | |
1311 if (nButton == -1) | |
1312 return FALSE; | |
1313 | |
1314 if (nButton != MOUSE_RELEASE) | |
1315 s_nOldButton = nButton; | |
1316 | |
1317 g_nMouseClick = nButton; | |
1318 | |
1319 if (pmer->dwControlKeyState & SHIFT_PRESSED) | |
1320 g_nMouseClick |= MOUSE_SHIFT; | |
1321 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)) | |
1322 g_nMouseClick |= MOUSE_CTRL; | |
1323 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)) | |
1324 g_nMouseClick |= MOUSE_ALT; | |
1325 | |
1326 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE) | |
1327 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks); | |
1328 | |
1329 /* only pass on interesting (i.e., different) mouse events */ | |
1330 if (s_xOldMouse == g_xMouse | |
1331 && s_yOldMouse == g_yMouse | |
1332 && s_nOldMouseClick == g_nMouseClick) | |
1333 { | |
1334 g_nMouseClick = -1; | |
1335 return FALSE; | |
1336 } | |
1337 | |
1338 s_xOldMouse = g_xMouse; | |
1339 s_yOldMouse = g_yMouse; | |
1340 s_old_topline = curwin->w_topline; | |
1341 #ifdef FEAT_DIFF | |
1342 s_old_topfill = curwin->w_topfill; | |
1343 #endif | |
1344 s_nOldMouseClick = g_nMouseClick; | |
1345 | |
1346 return TRUE; | |
1347 } | |
1348 | |
1349 # endif /* FEAT_GUI_W32 */ | |
1350 #endif /* FEAT_MOUSE */ | |
1351 | |
1352 | |
1353 #ifdef MCH_CURSOR_SHAPE | |
1354 /* | |
1355 * Set the shape of the cursor. | |
1356 * 'thickness' can be from 1 (thin) to 99 (block) | |
1357 */ | |
1358 static void | |
1359 mch_set_cursor_shape(int thickness) | |
1360 { | |
1361 CONSOLE_CURSOR_INFO ConsoleCursorInfo; | |
1362 ConsoleCursorInfo.dwSize = thickness; | |
1363 ConsoleCursorInfo.bVisible = s_cursor_visible; | |
1364 | |
1365 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo); | |
1366 if (s_cursor_visible) | |
1367 SetConsoleCursorPosition(g_hConOut, g_coord); | |
1368 } | |
1369 | |
1370 void | |
1371 mch_update_cursor(void) | |
1372 { | |
1373 int idx; | |
1374 int thickness; | |
1375 | |
1376 /* | |
1377 * How the cursor is drawn depends on the current mode. | |
1378 */ | |
1379 idx = get_shape_idx(FALSE); | |
1380 | |
1381 if (shape_table[idx].shape == SHAPE_BLOCK) | |
1382 thickness = 99; /* 100 doesn't work on W95 */ | |
1383 else | |
1384 thickness = shape_table[idx].percentage; | |
1385 mch_set_cursor_shape(thickness); | |
1386 } | |
1387 #endif | |
1388 | |
1389 #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */ | |
1390 /* | |
1391 * Handle FOCUS_EVENT. | |
1392 */ | |
1393 static void | |
1394 handle_focus_event(INPUT_RECORD ir) | |
1395 { | |
1396 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus; | |
1397 ui_focus_change((int)g_fJustGotFocus); | |
1398 } | |
1399 | |
1400 /* | |
1401 * Wait until console input from keyboard or mouse is available, | |
1402 * or the time is up. | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1403 * When "ignore_input" is TRUE even wait when input is available. |
7 | 1404 * Return TRUE if something is available FALSE if not. |
1405 */ | |
1406 static int | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1407 WaitForChar(long msec, int ignore_input) |
7 | 1408 { |
1409 DWORD dwNow = 0, dwEndTime = 0; | |
1410 INPUT_RECORD ir; | |
1411 DWORD cRecords; | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1412 WCHAR ch, ch2; |
8949
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
1413 #ifdef FEAT_TIMERS |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1414 int tb_change_cnt = typebuf.tb_change_cnt; |
8949
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
1415 #endif |
7 | 1416 |
1417 if (msec > 0) | |
1418 /* Wait until the specified time has elapsed. */ | |
1419 dwEndTime = GetTickCount() + msec; | |
1420 else if (msec < 0) | |
1421 /* Wait forever. */ | |
1422 dwEndTime = INFINITE; | |
1423 | |
1424 /* We need to loop until the end of the time period, because | |
1425 * we might get multiple unusable mouse events in that time. | |
1426 */ | |
1427 for (;;) | |
1428 { | |
7866
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1429 #ifdef MESSAGE_QUEUE |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1430 parse_queued_messages(); |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1431 #endif |
14 | 1432 #ifdef FEAT_MZSCHEME |
1433 mzvim_check_threads(); | |
1434 #endif | |
7 | 1435 #ifdef FEAT_CLIENTSERVER |
1436 serverProcessPendingMessages(); | |
1437 #endif | |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1438 |
7 | 1439 if (0 |
1440 #ifdef FEAT_MOUSE | |
1441 || g_nMouseClick != -1 | |
1442 #endif | |
1443 #ifdef FEAT_CLIENTSERVER | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1444 || (!ignore_input && input_available()) |
7 | 1445 #endif |
1446 ) | |
1447 return TRUE; | |
1448 | |
1449 if (msec > 0) | |
1450 { | |
5292
d5d6b78cff09
updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents:
5229
diff
changeset
|
1451 /* If the specified wait time has passed, return. Beware that |
d5d6b78cff09
updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents:
5229
diff
changeset
|
1452 * GetTickCount() may wrap around (overflow). */ |
7 | 1453 dwNow = GetTickCount(); |
5292
d5d6b78cff09
updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents:
5229
diff
changeset
|
1454 if ((int)(dwNow - dwEndTime) >= 0) |
7 | 1455 break; |
1456 } | |
1457 if (msec != 0) | |
1458 { | |
14 | 1459 DWORD dwWaitTime = dwEndTime - dwNow; |
1460 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1461 #ifdef FEAT_JOB_CHANNEL |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1462 /* Check channel while waiting for input. */ |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1463 if (dwWaitTime > 100) |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1464 { |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1465 dwWaitTime = 100; |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1466 /* If there is readahead then parse_queued_messages() timed out |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1467 * and we should call it again soon. */ |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1468 if (channel_any_readahead()) |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1469 dwWaitTime = 10; |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1470 } |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1471 #endif |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12724
diff
changeset
|
1472 #ifdef FEAT_BEVAL_GUI |
11014
fb2bcfa6a8de
patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1473 if (p_beval && dwWaitTime > 100) |
fb2bcfa6a8de
patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1474 /* The 'balloonexpr' may indirectly invoke a callback while |
fb2bcfa6a8de
patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1475 * waiting for a character, need to check often. */ |
fb2bcfa6a8de
patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1476 dwWaitTime = 100; |
fb2bcfa6a8de
patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents:
10835
diff
changeset
|
1477 #endif |
14 | 1478 #ifdef FEAT_MZSCHEME |
1479 if (mzthreads_allowed() && p_mzq > 0 | |
1480 && (msec < 0 || (long)dwWaitTime > p_mzq)) | |
1481 dwWaitTime = p_mzq; /* don't wait longer than 'mzquantum' */ | |
1482 #endif | |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1483 #ifdef FEAT_TIMERS |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1484 { |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1485 long due_time; |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1486 |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1487 /* When waiting very briefly don't trigger timers. */ |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1488 if (dwWaitTime > 10) |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1489 { |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1490 /* Trigger timers and then get the time in msec until the |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1491 * next one is due. Wait up to that time. */ |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1492 due_time = check_due_timer(); |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1493 if (typebuf.tb_change_cnt != tb_change_cnt) |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1494 { |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1495 /* timer may have used feedkeys() */ |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1496 return FALSE; |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1497 } |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1498 if (due_time > 0 && dwWaitTime > (DWORD)due_time) |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1499 dwWaitTime = due_time; |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1500 } |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1501 } |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1502 #endif |
7 | 1503 #ifdef FEAT_CLIENTSERVER |
1504 /* Wait for either an event on the console input or a message in | |
1505 * the client-server window. */ | |
6981 | 1506 if (msg_wait_for_multiple_objects(1, &g_hConIn, FALSE, |
14 | 1507 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0) |
7 | 1508 #else |
6981 | 1509 if (wait_for_single_object(g_hConIn, dwWaitTime) != WAIT_OBJECT_0) |
7 | 1510 #endif |
1511 continue; | |
1512 } | |
1513 | |
1514 cRecords = 0; | |
5580 | 1515 peek_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1516 |
1517 #ifdef FEAT_MBYTE_IME | |
1518 if (State & CMDLINE && msg_row == Rows - 1) | |
1519 { | |
1520 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
1521 | |
1522 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
1523 { | |
1524 if (csbi.dwCursorPosition.Y != msg_row) | |
1525 { | |
1526 /* The screen is now messed up, must redraw the | |
1527 * command line and later all the windows. */ | |
1528 redraw_all_later(CLEAR); | |
1529 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y); | |
1530 redrawcmd(); | |
1531 } | |
1532 } | |
1533 } | |
1534 #endif | |
1535 | |
1536 if (cRecords > 0) | |
1537 { | |
1538 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown) | |
1539 { | |
1540 #ifdef FEAT_MBYTE_IME | |
1541 /* Windows IME sends two '\n's with only one 'ENTER'. First: | |
1542 * wVirtualKeyCode == 13. second: wVirtualKeyCode == 0 */ | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1543 if (ir.Event.KeyEvent.UChar == 0 |
7 | 1544 && ir.Event.KeyEvent.wVirtualKeyCode == 13) |
1545 { | |
5580 | 1546 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1547 continue; |
1548 } | |
1549 #endif | |
1550 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2, | |
1551 NULL, FALSE)) | |
1552 return TRUE; | |
1553 } | |
1554 | |
5580 | 1555 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1556 |
1557 if (ir.EventType == FOCUS_EVENT) | |
1558 handle_focus_event(ir); | |
1559 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT) | |
13260
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1560 { |
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1561 /* Only call shell_resized() when the size actually change to |
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1562 * avoid the screen is cleard. */ |
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1563 if (ir.Event.WindowBufferSizeEvent.dwSize.X != Columns |
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1564 || ir.Event.WindowBufferSizeEvent.dwSize.Y != Rows) |
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1565 shell_resized(); |
ee1a1276a759
patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1566 } |
7 | 1567 #ifdef FEAT_MOUSE |
1568 else if (ir.EventType == MOUSE_EVENT | |
1569 && decode_mouse_event(&ir.Event.MouseEvent)) | |
1570 return TRUE; | |
1571 #endif | |
1572 } | |
1573 else if (msec == 0) | |
1574 break; | |
1575 } | |
1576 | |
1577 #ifdef FEAT_CLIENTSERVER | |
1578 /* Something might have been received while we were waiting. */ | |
1579 if (input_available()) | |
1580 return TRUE; | |
1581 #endif | |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1582 |
7 | 1583 return FALSE; |
1584 } | |
1585 | |
1586 #ifndef FEAT_GUI_MSWIN | |
1587 /* | |
1588 * return non-zero if a character is available | |
1589 */ | |
1590 int | |
26 | 1591 mch_char_avail(void) |
7 | 1592 { |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1593 return WaitForChar(0L, FALSE); |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1594 } |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1595 |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1596 # if defined(FEAT_TERMINAL) || defined(PROTO) |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1597 /* |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1598 * Check for any pending input or messages. |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1599 */ |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1600 int |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1601 mch_check_messages(void) |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1602 { |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1603 return WaitForChar(0L, TRUE); |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1604 } |
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1605 # endif |
7 | 1606 #endif |
1607 | |
1608 /* | |
1609 * Create the console input. Used when reading stdin doesn't work. | |
1610 */ | |
1611 static void | |
1612 create_conin(void) | |
1613 { | |
1614 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE, | |
1615 FILE_SHARE_READ|FILE_SHARE_WRITE, | |
1616 (LPSECURITY_ATTRIBUTES) NULL, | |
840 | 1617 OPEN_EXISTING, 0, (HANDLE)NULL); |
7 | 1618 did_create_conin = TRUE; |
1619 } | |
1620 | |
1621 /* | |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1622 * Get a keystroke or a mouse event, use a blocking wait. |
7 | 1623 */ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1624 static WCHAR |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1625 tgetch(int *pmodifiers, WCHAR *pch2) |
7 | 1626 { |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1627 WCHAR ch; |
7 | 1628 |
1629 for (;;) | |
1630 { | |
1631 INPUT_RECORD ir; | |
1632 DWORD cRecords = 0; | |
1633 | |
1634 #ifdef FEAT_CLIENTSERVER | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1635 (void)WaitForChar(-1L, FALSE); |
7 | 1636 if (input_available()) |
1637 return 0; | |
1638 # ifdef FEAT_MOUSE | |
1639 if (g_nMouseClick != -1) | |
1640 return 0; | |
1641 # endif | |
1642 #endif | |
5580 | 1643 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0) |
7 | 1644 { |
1645 if (did_create_conin) | |
1646 read_error_exit(); | |
1647 create_conin(); | |
1648 continue; | |
1649 } | |
1650 | |
1651 if (ir.EventType == KEY_EVENT) | |
1652 { | |
1653 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2, | |
1654 pmodifiers, TRUE)) | |
1655 return ch; | |
1656 } | |
1657 else if (ir.EventType == FOCUS_EVENT) | |
1658 handle_focus_event(ir); | |
1659 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT) | |
1660 shell_resized(); | |
1661 #ifdef FEAT_MOUSE | |
1662 else if (ir.EventType == MOUSE_EVENT) | |
1663 { | |
1664 if (decode_mouse_event(&ir.Event.MouseEvent)) | |
1665 return 0; | |
1666 } | |
1667 #endif | |
1668 } | |
1669 } | |
1670 #endif /* !FEAT_GUI_W32 */ | |
1671 | |
1672 | |
1673 /* | |
3622 | 1674 * mch_inchar(): low-level input function. |
7 | 1675 * Get one or more characters from the keyboard or the mouse. |
1676 * If time == 0, do not wait for characters. | |
1677 * If time == n, wait a short time for characters. | |
1678 * If time == -1, wait forever for characters. | |
1679 * Returns the number of characters read into buf. | |
1680 */ | |
1681 int | |
1682 mch_inchar( | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
1683 char_u *buf UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
1684 int maxlen UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
1685 long time UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
1686 int tb_change_cnt UNUSED) |
7 | 1687 { |
1688 #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */ | |
1689 | |
1690 int len; | |
1691 int c; | |
1692 #define TYPEAHEADLEN 20 | |
1693 static char_u typeahead[TYPEAHEADLEN]; /* previously typed bytes. */ | |
1694 static int typeaheadlen = 0; | |
1695 | |
1696 /* First use any typeahead that was kept because "buf" was too small. */ | |
1697 if (typeaheadlen > 0) | |
1698 goto theend; | |
1699 | |
1700 if (time >= 0) | |
1701 { | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1702 if (!WaitForChar(time, FALSE)) /* no character available */ |
7 | 1703 return 0; |
1704 } | |
1705 else /* time == -1, wait forever */ | |
1706 { | |
1707 mch_set_winsize_now(); /* Allow winsize changes from now on */ | |
1708 | |
203 | 1709 /* |
1710 * If there is no character available within 2 seconds (default) | |
1711 * write the autoscript file to disk. Or cause the CursorHold event | |
1712 * to be triggered. | |
1713 */ | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1714 if (!WaitForChar(p_ut, FALSE)) |
7 | 1715 { |
1716 #ifdef FEAT_AUTOCMD | |
609 | 1717 if (trigger_cursorhold() && maxlen >= 3) |
7 | 1718 { |
203 | 1719 buf[0] = K_SPECIAL; |
1720 buf[1] = KS_EXTRA; | |
1721 buf[2] = (int)KE_CURSORHOLD; | |
1722 return 3; | |
7 | 1723 } |
1724 #endif | |
368 | 1725 before_blocking(); |
7 | 1726 } |
1727 } | |
1728 | |
1729 /* | |
1730 * Try to read as many characters as there are, until the buffer is full. | |
1731 */ | |
1732 | |
1733 /* we will get at least one key. Get more if they are available. */ | |
1734 g_fCBrkPressed = FALSE; | |
1735 | |
1736 #ifdef MCH_WRITE_DUMP | |
1737 if (fdDump) | |
1738 fputc('[', fdDump); | |
1739 #endif | |
1740 | |
1741 /* Keep looping until there is something in the typeahead buffer and more | |
1742 * to get and still room in the buffer (up to two bytes for a char and | |
1743 * three bytes for a modifier). */ | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
1744 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE)) |
7 | 1745 && typeaheadlen + 5 <= TYPEAHEADLEN) |
1746 { | |
1747 if (typebuf_changed(tb_change_cnt)) | |
1748 { | |
1749 /* "buf" may be invalid now if a client put something in the | |
1750 * typeahead buffer and "buf" is in the typeahead buffer. */ | |
1751 typeaheadlen = 0; | |
1752 break; | |
1753 } | |
1754 #ifdef FEAT_MOUSE | |
1755 if (g_nMouseClick != -1) | |
1756 { | |
1757 # ifdef MCH_WRITE_DUMP | |
1758 if (fdDump) | |
1759 fprintf(fdDump, "{%02x @ %d, %d}", | |
1760 g_nMouseClick, g_xMouse, g_yMouse); | |
1761 # endif | |
1762 typeahead[typeaheadlen++] = ESC + 128; | |
1763 typeahead[typeaheadlen++] = 'M'; | |
1764 typeahead[typeaheadlen++] = g_nMouseClick; | |
1765 typeahead[typeaheadlen++] = g_xMouse + '!'; | |
1766 typeahead[typeaheadlen++] = g_yMouse + '!'; | |
1767 g_nMouseClick = -1; | |
1768 } | |
1769 else | |
1770 #endif | |
1771 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1772 WCHAR ch2 = NUL; |
7 | 1773 int modifiers = 0; |
1774 | |
1775 c = tgetch(&modifiers, &ch2); | |
1776 | |
1777 if (typebuf_changed(tb_change_cnt)) | |
1778 { | |
1779 /* "buf" may be invalid now if a client put something in the | |
1780 * typeahead buffer and "buf" is in the typeahead buffer. */ | |
1781 typeaheadlen = 0; | |
1782 break; | |
1783 } | |
1784 | |
1785 if (c == Ctrl_C && ctrl_c_interrupts) | |
1786 { | |
1787 #if defined(FEAT_CLIENTSERVER) | |
1788 trash_input_buf(); | |
1789 #endif | |
1790 got_int = TRUE; | |
1791 } | |
1792 | |
1793 #ifdef FEAT_MOUSE | |
1794 if (g_nMouseClick == -1) | |
1795 #endif | |
1796 { | |
1797 int n = 1; | |
6047 | 1798 |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1799 #ifdef FEAT_MBYTE |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1800 if (ch2 == NUL) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1801 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1802 int i; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1803 char_u *p; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1804 WCHAR ch[2]; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1805 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1806 ch[0] = c; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1807 if (c >= 0xD800 && c <= 0xDBFF) /* High surrogate */ |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1808 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1809 ch[1] = tgetch(&modifiers, &ch2); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1810 n++; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1811 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1812 p = utf16_to_enc(ch, &n); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1813 if (p != NULL) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1814 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1815 for (i = 0; i < n; i++) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1816 typeahead[typeaheadlen + i] = p[i]; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1817 vim_free(p); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1818 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1819 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1820 else |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1821 #endif |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1822 typeahead[typeaheadlen] = c; |
7 | 1823 if (ch2 != NUL) |
1824 { | |
12990
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1825 if (c == K_NUL && (ch2 & 0xff00) != 0) |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1826 { |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1827 /* fAnsiKey with modifier keys */ |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1828 typeahead[typeaheadlen + n] = (char_u)ch2; |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1829 n++; |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1830 } |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1831 else |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1832 { |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1833 typeahead[typeaheadlen + n] = 3; |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1834 typeahead[typeaheadlen + n + 1] = (char_u)ch2; |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1835 n += 2; |
ec86ba548446
patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents:
12958
diff
changeset
|
1836 } |
6047 | 1837 } |
1838 | |
7 | 1839 /* Use the ALT key to set the 8th bit of the character |
1840 * when it's one byte, the 8th bit isn't set yet and not | |
1841 * using a double-byte encoding (would become a lead | |
1842 * byte). */ | |
1843 if ((modifiers & MOD_MASK_ALT) | |
1844 && n == 1 | |
1845 && (typeahead[typeaheadlen] & 0x80) == 0 | |
1846 #ifdef FEAT_MBYTE | |
1847 && !enc_dbcs | |
1848 #endif | |
1849 ) | |
1850 { | |
1443 | 1851 #ifdef FEAT_MBYTE |
1852 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80, | |
1853 typeahead + typeaheadlen); | |
1854 #else | |
7 | 1855 typeahead[typeaheadlen] |= 0x80; |
1443 | 1856 #endif |
7 | 1857 modifiers &= ~MOD_MASK_ALT; |
1858 } | |
1859 | |
1860 if (modifiers != 0) | |
1861 { | |
1862 /* Prepend modifiers to the character. */ | |
1863 mch_memmove(typeahead + typeaheadlen + 3, | |
1864 typeahead + typeaheadlen, n); | |
1865 typeahead[typeaheadlen++] = K_SPECIAL; | |
1866 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER; | |
1867 typeahead[typeaheadlen++] = modifiers; | |
1868 } | |
1869 | |
1870 typeaheadlen += n; | |
1871 | |
1872 #ifdef MCH_WRITE_DUMP | |
1873 if (fdDump) | |
1874 fputc(c, fdDump); | |
1875 #endif | |
1876 } | |
1877 } | |
1878 } | |
1879 | |
1880 #ifdef MCH_WRITE_DUMP | |
1881 if (fdDump) | |
1882 { | |
1883 fputs("]\n", fdDump); | |
1884 fflush(fdDump); | |
1885 } | |
1886 #endif | |
1887 | |
1888 theend: | |
1889 /* Move typeahead to "buf", as much as fits. */ | |
1890 len = 0; | |
1891 while (len < maxlen && typeaheadlen > 0) | |
1892 { | |
1893 buf[len++] = typeahead[0]; | |
1894 mch_memmove(typeahead, typeahead + 1, --typeaheadlen); | |
1895 } | |
1896 return len; | |
1897 | |
1898 #else /* FEAT_GUI_W32 */ | |
1899 return 0; | |
1900 #endif /* FEAT_GUI_W32 */ | |
1901 } | |
1902 | |
3927 | 1903 #ifndef PROTO |
1904 # ifndef __MINGW32__ | |
1905 # include <shellapi.h> /* required for FindExecutable() */ | |
1906 # endif | |
7 | 1907 #endif |
1908 | |
9 | 1909 /* |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1910 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH. |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1911 * If "use_path" is FALSE: Return TRUE if "name" exists. |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1912 * When returning TRUE and "path" is not NULL save the path and set "*path" to |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1913 * the allocated memory. |
10 | 1914 * TODO: Should somehow check if it's really executable. |
9 | 1915 */ |
7 | 1916 static int |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1917 executable_exists(char *name, char_u **path, int use_path) |
7 | 1918 { |
9 | 1919 char *dum; |
1920 char fname[_MAX_PATH]; | |
6185 | 1921 char *curpath, *newpath; |
1922 long n; | |
9 | 1923 |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1924 if (!use_path) |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1925 { |
11071
cc22b177dfe8
patch 8.0.0424: compiler warnings on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
1926 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name)) |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1927 { |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1928 if (path != NULL) |
11060
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
1929 { |
11071
cc22b177dfe8
patch 8.0.0424: compiler warnings on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11060
diff
changeset
|
1930 if (mch_isFullName((char_u *)name)) |
11060
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
1931 *path = vim_strsave((char_u *)name); |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
1932 else |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
1933 *path = FullName_save((char_u *)name, FALSE); |
354593196e20
patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11054
diff
changeset
|
1934 } |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1935 return TRUE; |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1936 } |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1937 return FALSE; |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1938 } |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
1939 |
9 | 1940 #ifdef FEAT_MBYTE |
1941 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
7 | 1942 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1943 WCHAR *p = enc_to_utf16((char_u *)name, NULL); |
9 | 1944 WCHAR fnamew[_MAX_PATH]; |
1945 WCHAR *dumw; | |
6185 | 1946 WCHAR *wcurpath, *wnewpath; |
9 | 1947 |
1948 if (p != NULL) | |
1949 { | |
6185 | 1950 wcurpath = _wgetenv(L"PATH"); |
1951 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3) | |
1952 * sizeof(WCHAR)); | |
1953 if (wnewpath == NULL) | |
1954 return FALSE; | |
1955 wcscpy(wnewpath, L".;"); | |
1956 wcscat(wnewpath, wcurpath); | |
1957 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw); | |
1958 vim_free(wnewpath); | |
9 | 1959 vim_free(p); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1960 if (n == 0) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1961 return FALSE; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1962 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1963 return FALSE; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1964 if (path != NULL) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1965 *path = utf16_to_enc(fnamew, NULL); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1966 return TRUE; |
9 | 1967 } |
7 | 1968 } |
9 | 1969 #endif |
6185 | 1970 |
1971 curpath = getenv("PATH"); | |
1972 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3)); | |
1973 if (newpath == NULL) | |
1974 return FALSE; | |
1975 STRCPY(newpath, ".;"); | |
1976 STRCAT(newpath, curpath); | |
1977 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum); | |
1978 vim_free(newpath); | |
1979 if (n == 0) | |
9 | 1980 return FALSE; |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1981 if (mch_isdir((char_u *)fname)) |
9 | 1982 return FALSE; |
5782 | 1983 if (path != NULL) |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1984 *path = vim_strsave((char_u *)fname); |
9 | 1985 return TRUE; |
7 | 1986 } |
1987 | |
2584 | 1988 #if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \ |
2935 | 1989 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400) |
2584 | 1990 /* |
1991 * Bad parameter handler. | |
1992 * | |
1993 * Certain MS CRT functions will intentionally crash when passed invalid | |
1994 * parameters to highlight possible security holes. Setting this function as | |
1995 * the bad parameter handler will prevent the crash. | |
1996 * | |
1997 * In debug builds the parameters contain CRT information that might help track | |
1998 * down the source of a problem, but in non-debug builds the arguments are all | |
1999 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is | |
2000 * worth allowing these to make debugging of issues easier. | |
2001 */ | |
2002 static void | |
2003 bad_param_handler(const wchar_t *expression, | |
2004 const wchar_t *function, | |
2005 const wchar_t *file, | |
2006 unsigned int line, | |
2007 uintptr_t pReserved) | |
2008 { | |
2009 } | |
2010 | |
2011 # define SET_INVALID_PARAM_HANDLER \ | |
2012 ((void)_set_invalid_parameter_handler(bad_param_handler)) | |
2013 #else | |
2014 # define SET_INVALID_PARAM_HANDLER | |
2015 #endif | |
2016 | |
7 | 2017 #ifdef FEAT_GUI_W32 |
2018 | |
2019 /* | |
2020 * GUI version of mch_init(). | |
2021 */ | |
2022 void | |
26 | 2023 mch_init(void) |
7 | 2024 { |
2025 #ifndef __MINGW32__ | |
2026 extern int _fmode; | |
2027 #endif | |
2028 | |
2584 | 2029 /* Silently handle invalid parameters to CRT functions */ |
2030 SET_INVALID_PARAM_HANDLER; | |
2031 | |
7 | 2032 /* Let critical errors result in a failure, not in a dialog box. Required |
2033 * for the timestamp test to work on removed floppies. */ | |
2034 SetErrorMode(SEM_FAILCRITICALERRORS); | |
2035 | |
2036 _fmode = O_BINARY; /* we do our own CR-LF translation */ | |
2037 | |
2038 /* Specify window size. Is there a place to get the default from? */ | |
2039 Rows = 25; | |
2040 Columns = 80; | |
2041 | |
2042 /* Look for 'vimrun' */ | |
2043 { | |
2044 char_u vimrun_location[_MAX_PATH + 4]; | |
2045 | |
2046 /* First try in same directory as gvim.exe */ | |
2047 STRCPY(vimrun_location, exe_name); | |
2048 STRCPY(gettail(vimrun_location), "vimrun.exe"); | |
2049 if (mch_getperm(vimrun_location) >= 0) | |
2050 { | |
2051 if (*skiptowhite(vimrun_location) != NUL) | |
2052 { | |
2053 /* Enclose path with white space in double quotes. */ | |
2054 mch_memmove(vimrun_location + 1, vimrun_location, | |
2055 STRLEN(vimrun_location) + 1); | |
2056 *vimrun_location = '"'; | |
2057 STRCPY(gettail(vimrun_location), "vimrun\" "); | |
2058 } | |
2059 else | |
2060 STRCPY(gettail(vimrun_location), "vimrun "); | |
2061 | |
2062 vimrun_path = (char *)vim_strsave(vimrun_location); | |
2063 s_dont_use_vimrun = FALSE; | |
2064 } | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
2065 else if (executable_exists("vimrun.exe", NULL, TRUE)) |
7 | 2066 s_dont_use_vimrun = FALSE; |
2067 | |
2068 /* Don't give the warning for a missing vimrun.exe right now, but only | |
2069 * when vimrun was supposed to be used. Don't bother people that do | |
2070 * not need vimrun.exe. */ | |
2071 if (s_dont_use_vimrun) | |
2072 need_vimrun_warning = TRUE; | |
2073 } | |
2074 | |
2075 /* | |
2076 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'. | |
2077 * Otherwise the default "findstr /n" is used. | |
2078 */ | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
2079 if (!executable_exists("findstr.exe", NULL, TRUE)) |
7 | 2080 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0); |
2081 | |
2082 #ifdef FEAT_CLIPBOARD | |
4168 | 2083 win_clip_init(); |
7 | 2084 #endif |
2085 } | |
2086 | |
2087 | |
2088 #else /* FEAT_GUI_W32 */ | |
2089 | |
2090 #define SRWIDTH(sr) ((sr).Right - (sr).Left + 1) | |
2091 #define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1) | |
2092 | |
2093 /* | |
2094 * ClearConsoleBuffer() | |
2095 * Description: | |
2096 * Clears the entire contents of the console screen buffer, using the | |
2097 * specified attribute. | |
2098 * Returns: | |
2099 * TRUE on success | |
2100 */ | |
2101 static BOOL | |
2102 ClearConsoleBuffer(WORD wAttribute) | |
2103 { | |
2104 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
2105 COORD coord; | |
2106 DWORD NumCells, dummy; | |
2107 | |
2108 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
2109 return FALSE; | |
2110 | |
2111 NumCells = csbi.dwSize.X * csbi.dwSize.Y; | |
2112 coord.X = 0; | |
2113 coord.Y = 0; | |
2114 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells, | |
2115 coord, &dummy)) | |
2116 { | |
2117 return FALSE; | |
2118 } | |
2119 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells, | |
2120 coord, &dummy)) | |
2121 { | |
2122 return FALSE; | |
2123 } | |
2124 | |
2125 return TRUE; | |
2126 } | |
2127 | |
2128 /* | |
2129 * FitConsoleWindow() | |
2130 * Description: | |
2131 * Checks if the console window will fit within given buffer dimensions. | |
2132 * Also, if requested, will shrink the window to fit. | |
2133 * Returns: | |
2134 * TRUE on success | |
2135 */ | |
2136 static BOOL | |
2137 FitConsoleWindow( | |
2138 COORD dwBufferSize, | |
2139 BOOL WantAdjust) | |
2140 { | |
2141 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
2142 COORD dwWindowSize; | |
2143 BOOL NeedAdjust = FALSE; | |
2144 | |
2145 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
2146 { | |
2147 /* | |
2148 * A buffer resize will fail if the current console window does | |
2149 * not lie completely within that buffer. To avoid this, we might | |
2150 * have to move and possibly shrink the window. | |
2151 */ | |
2152 if (csbi.srWindow.Right >= dwBufferSize.X) | |
2153 { | |
2154 dwWindowSize.X = SRWIDTH(csbi.srWindow); | |
2155 if (dwWindowSize.X > dwBufferSize.X) | |
2156 dwWindowSize.X = dwBufferSize.X; | |
2157 csbi.srWindow.Right = dwBufferSize.X - 1; | |
2158 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X; | |
2159 NeedAdjust = TRUE; | |
2160 } | |
2161 if (csbi.srWindow.Bottom >= dwBufferSize.Y) | |
2162 { | |
2163 dwWindowSize.Y = SRHEIGHT(csbi.srWindow); | |
2164 if (dwWindowSize.Y > dwBufferSize.Y) | |
2165 dwWindowSize.Y = dwBufferSize.Y; | |
2166 csbi.srWindow.Bottom = dwBufferSize.Y - 1; | |
2167 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y; | |
2168 NeedAdjust = TRUE; | |
2169 } | |
2170 if (NeedAdjust && WantAdjust) | |
2171 { | |
2172 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow)) | |
2173 return FALSE; | |
2174 } | |
2175 return TRUE; | |
2176 } | |
2177 | |
2178 return FALSE; | |
2179 } | |
2180 | |
2181 typedef struct ConsoleBufferStruct | |
2182 { | |
26 | 2183 BOOL IsValid; |
2184 CONSOLE_SCREEN_BUFFER_INFO Info; | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2185 PCHAR_INFO Buffer; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2186 COORD BufferSize; |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2187 PSMALL_RECT Regions; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2188 int NumRegions; |
7 | 2189 } ConsoleBuffer; |
2190 | |
2191 /* | |
2192 * SaveConsoleBuffer() | |
2193 * Description: | |
2194 * Saves important information about the console buffer, including the | |
2195 * actual buffer contents. The saved information is suitable for later | |
2196 * restoration by RestoreConsoleBuffer(). | |
2197 * Returns: | |
2198 * TRUE if all information was saved; FALSE otherwise | |
2199 * If FALSE, still sets cb->IsValid if buffer characteristics were saved. | |
2200 */ | |
2201 static BOOL | |
2202 SaveConsoleBuffer( | |
2203 ConsoleBuffer *cb) | |
2204 { | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2205 DWORD NumCells; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2206 COORD BufferCoord; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2207 SMALL_RECT ReadRegion; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2208 WORD Y, Y_incr; |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2209 int i, numregions; |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2210 |
7 | 2211 if (cb == NULL) |
2212 return FALSE; | |
2213 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2214 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info)) |
7 | 2215 { |
2216 cb->IsValid = FALSE; | |
2217 return FALSE; | |
2218 } | |
2219 cb->IsValid = TRUE; | |
2220 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2221 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2222 * Allocate a buffer large enough to hold the entire console screen |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2223 * buffer. If this ConsoleBuffer structure has already been initialized |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2224 * with a buffer of the correct size, then just use that one. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2225 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2226 if (!cb->IsValid || cb->Buffer == NULL || |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2227 cb->BufferSize.X != cb->Info.dwSize.X || |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2228 cb->BufferSize.Y != cb->Info.dwSize.Y) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2229 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2230 cb->BufferSize.X = cb->Info.dwSize.X; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2231 cb->BufferSize.Y = cb->Info.dwSize.Y; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2232 NumCells = cb->BufferSize.X * cb->BufferSize.Y; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2233 vim_free(cb->Buffer); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2234 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO)); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2235 if (cb->Buffer == NULL) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2236 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2237 } |
7 | 2238 |
2239 /* | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2240 * We will now copy the console screen buffer into our buffer. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2241 * ReadConsoleOutput() seems to be limited as far as how much you |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2242 * can read at a time. Empirically, this number seems to be about |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2243 * 12000 cells (rows * columns). Start at position (0, 0) and copy |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2244 * in chunks until it is all copied. The chunks will all have the |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2245 * same horizontal characteristics, so initialize them now. The |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2246 * height of each chunk will be (12000 / width). |
7 | 2247 */ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
6981
diff
changeset
|
2248 BufferCoord.X = 0; |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2249 ReadRegion.Left = 0; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2250 ReadRegion.Right = cb->Info.dwSize.X - 1; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2251 Y_incr = 12000 / cb->Info.dwSize.X; |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2252 |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2253 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2254 if (cb->Regions == NULL || numregions != cb->NumRegions) |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2255 { |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2256 cb->NumRegions = numregions; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2257 vim_free(cb->Regions); |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2258 cb->Regions = (PSMALL_RECT)alloc(cb->NumRegions * sizeof(SMALL_RECT)); |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2259 if (cb->Regions == NULL) |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2260 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
2261 VIM_CLEAR(cb->Buffer); |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2262 return FALSE; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2263 } |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2264 } |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2265 |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2266 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr) |
7 | 2267 { |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2268 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2269 * Read into position (0, Y) in our buffer. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2270 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2271 BufferCoord.Y = Y; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2272 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2273 * Read the region whose top left corner is (0, Y) and whose bottom |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2274 * right corner is (width - 1, Y + Y_incr - 1). This should define |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2275 * a region of size width by Y_incr. Don't worry if this region is |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2276 * too large for the remaining buffer; it will be cropped. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2277 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2278 ReadRegion.Top = Y; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2279 ReadRegion.Bottom = Y + Y_incr - 1; |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2280 if (!ReadConsoleOutputW(g_hConOut, /* output handle */ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2281 cb->Buffer, /* our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2282 cb->BufferSize, /* dimensions of our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2283 BufferCoord, /* offset in our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2284 &ReadRegion)) /* region to save */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2285 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
2286 VIM_CLEAR(cb->Buffer); |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
2287 VIM_CLEAR(cb->Regions); |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2288 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2289 } |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2290 cb->Regions[i] = ReadRegion; |
7 | 2291 } |
2292 | |
2293 return TRUE; | |
2294 } | |
2295 | |
2296 /* | |
2297 * RestoreConsoleBuffer() | |
2298 * Description: | |
2299 * Restores important information about the console buffer, including the | |
2300 * actual buffer contents, if desired. The information to restore is in | |
2301 * the same format used by SaveConsoleBuffer(). | |
2302 * Returns: | |
2303 * TRUE on success | |
2304 */ | |
2305 static BOOL | |
2306 RestoreConsoleBuffer( | |
26 | 2307 ConsoleBuffer *cb, |
2308 BOOL RestoreScreen) | |
7 | 2309 { |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2310 COORD BufferCoord; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2311 SMALL_RECT WriteRegion; |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2312 int i; |
7 | 2313 |
2314 if (cb == NULL || !cb->IsValid) | |
2315 return FALSE; | |
2316 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2317 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2318 * Before restoring the buffer contents, clear the current buffer, and |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2319 * restore the cursor position and window information. Doing this now |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2320 * prevents old buffer contents from "flashing" onto the screen. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2321 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2322 if (RestoreScreen) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2323 ClearConsoleBuffer(cb->Info.wAttributes); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2324 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2325 FitConsoleWindow(cb->Info.dwSize, TRUE); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2326 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize)) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2327 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2328 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes)) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2329 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2330 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2331 if (!RestoreScreen) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2332 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2333 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2334 * No need to restore the screen buffer contents, so we're done. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2335 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2336 return TRUE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2337 } |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2338 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2339 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition)) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2340 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2341 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow)) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2342 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2343 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2344 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2345 * Restore the screen buffer contents. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2346 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2347 if (cb->Buffer != NULL) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2348 { |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2349 for (i = 0; i < cb->NumRegions; i++) |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2350 { |
12050
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2351 BufferCoord.X = cb->Regions[i].Left; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2352 BufferCoord.Y = cb->Regions[i].Top; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2353 WriteRegion = cb->Regions[i]; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2354 if (!WriteConsoleOutputW(g_hConOut, /* output handle */ |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2355 cb->Buffer, /* our buffer */ |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2356 cb->BufferSize, /* dimensions of our buffer */ |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2357 BufferCoord, /* offset in our buffer */ |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2358 &WriteRegion)) /* region to restore */ |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2359 { |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2360 return FALSE; |
779c9247cc0e
patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents:
12043
diff
changeset
|
2361 } |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2362 } |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2363 } |
7 | 2364 |
2365 return TRUE; | |
2366 } | |
2367 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2368 #define FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2369 #ifdef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2370 static ConsoleBuffer g_cbOrig = { 0 }; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2371 #endif |
7 | 2372 static ConsoleBuffer g_cbNonTermcap = { 0 }; |
2373 static ConsoleBuffer g_cbTermcap = { 0 }; | |
2374 | |
2375 #ifdef FEAT_TITLE | |
2376 #ifdef __BORLANDC__ | |
2377 typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID); | |
2378 #else | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2379 typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID); |
7 | 2380 #endif |
2381 char g_szOrigTitle[256] = { 0 }; | |
2382 HWND g_hWnd = NULL; /* also used in os_mswin.c */ | |
2383 static HICON g_hOrigIconSmall = NULL; | |
2384 static HICON g_hOrigIcon = NULL; | |
2385 static HICON g_hVimIcon = NULL; | |
2386 static BOOL g_fCanChangeIcon = FALSE; | |
2387 | |
2388 /* ICON* are not defined in VC++ 4.0 */ | |
2389 #ifndef ICON_SMALL | |
2390 #define ICON_SMALL 0 | |
2391 #endif | |
2392 #ifndef ICON_BIG | |
2393 #define ICON_BIG 1 | |
2394 #endif | |
2395 /* | |
2396 * GetConsoleIcon() | |
2397 * Description: | |
2398 * Attempts to retrieve the small icon and/or the big icon currently in | |
2399 * use by a given window. | |
2400 * Returns: | |
2401 * TRUE on success | |
2402 */ | |
2403 static BOOL | |
2404 GetConsoleIcon( | |
26 | 2405 HWND hWnd, |
2406 HICON *phIconSmall, | |
2407 HICON *phIcon) | |
7 | 2408 { |
2409 if (hWnd == NULL) | |
2410 return FALSE; | |
2411 | |
2412 if (phIconSmall != NULL) | |
26 | 2413 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON, |
2414 (WPARAM)ICON_SMALL, (LPARAM)0); | |
7 | 2415 if (phIcon != NULL) |
26 | 2416 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON, |
2417 (WPARAM)ICON_BIG, (LPARAM)0); | |
7 | 2418 return TRUE; |
2419 } | |
2420 | |
2421 /* | |
2422 * SetConsoleIcon() | |
2423 * Description: | |
2424 * Attempts to change the small icon and/or the big icon currently in | |
2425 * use by a given window. | |
2426 * Returns: | |
2427 * TRUE on success | |
2428 */ | |
2429 static BOOL | |
2430 SetConsoleIcon( | |
26 | 2431 HWND hWnd, |
2432 HICON hIconSmall, | |
2433 HICON hIcon) | |
7 | 2434 { |
2435 if (hWnd == NULL) | |
2436 return FALSE; | |
2437 | |
2438 if (hIconSmall != NULL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2439 SendMessage(hWnd, WM_SETICON, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2440 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall); |
7 | 2441 if (hIcon != NULL) |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2442 SendMessage(hWnd, WM_SETICON, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2443 (WPARAM)ICON_BIG, (LPARAM) hIcon); |
7 | 2444 return TRUE; |
2445 } | |
2446 | |
2447 /* | |
2448 * SaveConsoleTitleAndIcon() | |
2449 * Description: | |
2450 * Saves the current console window title in g_szOrigTitle, for later | |
2451 * restoration. Also, attempts to obtain a handle to the console window, | |
2452 * and use it to save the small and big icons currently in use by the | |
2453 * console window. This is not always possible on some versions of Windows; | |
2454 * nor is it possible when running Vim remotely using Telnet (since the | |
2455 * console window the user sees is owned by a remote process). | |
2456 */ | |
2457 static void | |
2458 SaveConsoleTitleAndIcon(void) | |
2459 { | |
2460 /* Save the original title. */ | |
2461 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle))) | |
2462 return; | |
2463 | |
2464 /* | |
2465 * Obtain a handle to the console window using GetConsoleWindow() from | |
2466 * KERNEL32.DLL; we need to handle in order to change the window icon. | |
2467 * This function only exists on NT-based Windows, starting with Windows | |
2468 * 2000. On older operating systems, we can't change the window icon | |
2469 * anyway. | |
2470 */ | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2471 g_hWnd = GetConsoleWindow(); |
7 | 2472 if (g_hWnd == NULL) |
2473 return; | |
2474 | |
2475 /* Save the original console window icon. */ | |
2476 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon); | |
2477 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL) | |
2478 return; | |
2479 | |
2480 /* Extract the first icon contained in the Vim executable. */ | |
6249 | 2481 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL) |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2482 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0); |
7 | 2483 if (g_hVimIcon != NULL) |
2484 g_fCanChangeIcon = TRUE; | |
2485 } | |
2486 #endif | |
2487 | |
2488 static int g_fWindInitCalled = FALSE; | |
2489 static int g_fTermcapMode = FALSE; | |
2490 static CONSOLE_CURSOR_INFO g_cci; | |
2491 static DWORD g_cmodein = 0; | |
2492 static DWORD g_cmodeout = 0; | |
2493 | |
2494 /* | |
2495 * non-GUI version of mch_init(). | |
2496 */ | |
2497 void | |
26 | 2498 mch_init(void) |
7 | 2499 { |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2500 #ifndef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2501 CONSOLE_SCREEN_BUFFER_INFO csbi; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2502 #endif |
7 | 2503 #ifndef __MINGW32__ |
2504 extern int _fmode; | |
2505 #endif | |
2506 | |
2584 | 2507 /* Silently handle invalid parameters to CRT functions */ |
2508 SET_INVALID_PARAM_HANDLER; | |
2509 | |
7 | 2510 /* Let critical errors result in a failure, not in a dialog box. Required |
2511 * for the timestamp test to work on removed floppies. */ | |
2512 SetErrorMode(SEM_FAILCRITICALERRORS); | |
2513 | |
2514 _fmode = O_BINARY; /* we do our own CR-LF translation */ | |
2515 out_flush(); | |
2516 | |
2517 /* Obtain handles for the standard Console I/O devices */ | |
2518 if (read_cmd_fd == 0) | |
2519 g_hConIn = GetStdHandle(STD_INPUT_HANDLE); | |
2520 else | |
2521 create_conin(); | |
2522 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE); | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2523 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2524 #ifdef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2525 /* Save the initial console buffer for later restoration */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2526 SaveConsoleBuffer(&g_cbOrig); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2527 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2528 #else |
7 | 2529 /* Get current text attributes */ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2530 GetConsoleScreenBufferInfo(g_hConOut, &csbi); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2531 g_attrCurrent = g_attrDefault = csbi.wAttributes; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2532 #endif |
7 | 2533 if (cterm_normal_fg_color == 0) |
2534 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1; | |
2535 if (cterm_normal_bg_color == 0) | |
2536 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1; | |
2537 | |
2538 /* set termcap codes to current text attributes */ | |
2539 update_tcap(g_attrCurrent); | |
2540 | |
2541 GetConsoleCursorInfo(g_hConOut, &g_cci); | |
2542 GetConsoleMode(g_hConIn, &g_cmodein); | |
2543 GetConsoleMode(g_hConOut, &g_cmodeout); | |
2544 | |
2545 #ifdef FEAT_TITLE | |
2546 SaveConsoleTitleAndIcon(); | |
2547 /* | |
2548 * Set both the small and big icons of the console window to Vim's icon. | |
2549 * Note that Vim presently only has one size of icon (32x32), but it | |
2550 * automatically gets scaled down to 16x16 when setting the small icon. | |
2551 */ | |
2552 if (g_fCanChangeIcon) | |
2553 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon); | |
2554 #endif | |
2555 | |
2556 ui_get_shellsize(); | |
2557 | |
2558 #ifdef MCH_WRITE_DUMP | |
2559 fdDump = fopen("dump", "wt"); | |
2560 | |
2561 if (fdDump) | |
2562 { | |
2563 time_t t; | |
2564 | |
2565 time(&t); | |
2566 fputs(ctime(&t), fdDump); | |
2567 fflush(fdDump); | |
2568 } | |
2569 #endif | |
2570 | |
2571 g_fWindInitCalled = TRUE; | |
2572 | |
2573 #ifdef FEAT_MOUSE | |
2574 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); | |
2575 #endif | |
2576 | |
2577 #ifdef FEAT_CLIPBOARD | |
4168 | 2578 win_clip_init(); |
7 | 2579 #endif |
2580 } | |
2581 | |
2582 /* | |
2583 * non-GUI version of mch_exit(). | |
2584 * Shut down and exit with status `r' | |
2585 * Careful: mch_exit() may be called before mch_init()! | |
2586 */ | |
2587 void | |
2588 mch_exit(int r) | |
2589 { | |
10835
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10783
diff
changeset
|
2590 exiting = TRUE; |
c9da7f9137af
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents:
10783
diff
changeset
|
2591 |
7 | 2592 stoptermcap(); |
2593 if (g_fWindInitCalled) | |
2594 settmode(TMODE_COOK); | |
2595 | |
2596 ml_close_all(TRUE); /* remove all memfiles */ | |
2597 | |
2598 if (g_fWindInitCalled) | |
2599 { | |
2600 #ifdef FEAT_TITLE | |
2601 mch_restore_title(3); | |
2602 /* | |
2603 * Restore both the small and big icons of the console window to | |
2604 * what they were at startup. Don't do this when the window is | |
2605 * closed, Vim would hang here. | |
2606 */ | |
2607 if (g_fCanChangeIcon && !g_fForceExit) | |
2608 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon); | |
2609 #endif | |
2610 | |
2611 #ifdef MCH_WRITE_DUMP | |
2612 if (fdDump) | |
2613 { | |
2614 time_t t; | |
2615 | |
2616 time(&t); | |
2617 fputs(ctime(&t), fdDump); | |
2618 fclose(fdDump); | |
2619 } | |
2620 fdDump = NULL; | |
2621 #endif | |
2622 } | |
2623 | |
2624 SetConsoleCursorInfo(g_hConOut, &g_cci); | |
2625 SetConsoleMode(g_hConIn, g_cmodein); | |
2626 SetConsoleMode(g_hConOut, g_cmodeout); | |
2627 | |
2628 #ifdef DYNAMIC_GETTEXT | |
2629 dyn_libintl_end(); | |
2630 #endif | |
2631 | |
2632 exit(r); | |
2633 } | |
2634 #endif /* !FEAT_GUI_W32 */ | |
2635 | |
2636 /* | |
2637 * Do we have an interactive window? | |
2638 */ | |
2639 int | |
2640 mch_check_win( | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
2641 int argc UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
2642 char **argv UNUSED) |
7 | 2643 { |
2644 get_exe_name(); | |
2645 | |
2646 #ifdef FEAT_GUI_W32 | |
2647 return OK; /* GUI always has a tty */ | |
2648 #else | |
2649 if (isatty(1)) | |
2650 return OK; | |
2651 return FAIL; | |
2652 #endif | |
2653 } | |
2654 | |
2655 | |
5326 | 2656 #ifdef FEAT_MBYTE |
2657 /* | |
2658 * fname_casew(): Wide version of fname_case(). Set the case of the file name, | |
2659 * if it already exists. When "len" is > 0, also expand short to long | |
2660 * filenames. | |
2661 * Return FAIL if wide functions are not available, OK otherwise. | |
2662 * NOTE: much of this is identical to fname_case(), keep in sync! | |
2663 */ | |
2664 static int | |
2665 fname_casew( | |
2666 WCHAR *name, | |
2667 int len) | |
2668 { | |
2669 WCHAR szTrueName[_MAX_PATH + 2]; | |
2670 WCHAR szTrueNameTemp[_MAX_PATH + 2]; | |
2671 WCHAR *ptrue, *ptruePrev; | |
2672 WCHAR *porig, *porigPrev; | |
2673 int flen; | |
2674 WIN32_FIND_DATAW fb; | |
5529 | 2675 HANDLE hFind = INVALID_HANDLE_VALUE; |
5326 | 2676 int c; |
2677 int slen; | |
2678 | |
2679 flen = (int)wcslen(name); | |
2680 if (flen > _MAX_PATH) | |
2681 return OK; | |
2682 | |
2683 /* slash_adjust(name) not needed, already adjusted by fname_case(). */ | |
2684 | |
2685 /* Build the new name in szTrueName[] one component at a time. */ | |
2686 porig = name; | |
2687 ptrue = szTrueName; | |
2688 | |
2689 if (iswalpha(porig[0]) && porig[1] == L':') | |
2690 { | |
2691 /* copy leading drive letter */ | |
2692 *ptrue++ = *porig++; | |
2693 *ptrue++ = *porig++; | |
2694 } | |
5529 | 2695 *ptrue = NUL; /* in case nothing follows */ |
5326 | 2696 |
2697 while (*porig != NUL) | |
2698 { | |
2699 /* copy \ characters */ | |
2700 while (*porig == psepc) | |
2701 *ptrue++ = *porig++; | |
2702 | |
2703 ptruePrev = ptrue; | |
2704 porigPrev = porig; | |
2705 while (*porig != NUL && *porig != psepc) | |
2706 { | |
2707 *ptrue++ = *porig++; | |
2708 } | |
2709 *ptrue = NUL; | |
2710 | |
2711 /* To avoid a slow failure append "\*" when searching a directory, | |
2712 * server or network share. */ | |
2713 wcscpy(szTrueNameTemp, szTrueName); | |
2714 slen = (int)wcslen(szTrueNameTemp); | |
2715 if (*porig == psepc && slen + 2 < _MAX_PATH) | |
2716 wcscpy(szTrueNameTemp + slen, L"\\*"); | |
2717 | |
2718 /* Skip "", "." and "..". */ | |
2719 if (ptrue > ptruePrev | |
2720 && (ptruePrev[0] != L'.' | |
2721 || (ptruePrev[1] != NUL | |
2722 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL))) | |
2723 && (hFind = FindFirstFileW(szTrueNameTemp, &fb)) | |
2724 != INVALID_HANDLE_VALUE) | |
2725 { | |
2726 c = *porig; | |
2727 *porig = NUL; | |
2728 | |
2729 /* Only use the match when it's the same name (ignoring case) or | |
2730 * expansion is allowed and there is a match with the short name | |
2731 * and there is enough room. */ | |
2732 if (_wcsicoll(porigPrev, fb.cFileName) == 0 | |
2733 || (len > 0 | |
2734 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0 | |
2735 && (int)(ptruePrev - szTrueName) | |
2736 + (int)wcslen(fb.cFileName) < len))) | |
2737 { | |
2738 wcscpy(ptruePrev, fb.cFileName); | |
2739 | |
2740 /* Look for exact match and prefer it if found. Must be a | |
2741 * long name, otherwise there would be only one match. */ | |
2742 while (FindNextFileW(hFind, &fb)) | |
2743 { | |
2744 if (*fb.cAlternateFileName != NUL | |
2745 && (wcscoll(porigPrev, fb.cFileName) == 0 | |
2746 || (len > 0 | |
2747 && (_wcsicoll(porigPrev, | |
2748 fb.cAlternateFileName) == 0 | |
2749 && (int)(ptruePrev - szTrueName) | |
2750 + (int)wcslen(fb.cFileName) < len)))) | |
2751 { | |
2752 wcscpy(ptruePrev, fb.cFileName); | |
2753 break; | |
2754 } | |
2755 } | |
2756 } | |
2757 FindClose(hFind); | |
2758 *porig = c; | |
2759 ptrue = ptruePrev + wcslen(ptruePrev); | |
2760 } | |
2761 } | |
2762 | |
2763 wcscpy(name, szTrueName); | |
2764 return OK; | |
2765 } | |
2766 #endif | |
2767 | |
7 | 2768 /* |
2769 * fname_case(): Set the case of the file name, if it already exists. | |
2770 * When "len" is > 0, also expand short to long filenames. | |
5326 | 2771 * NOTE: much of this is identical to fname_casew(), keep in sync! |
7 | 2772 */ |
2773 void | |
2774 fname_case( | |
2775 char_u *name, | |
2776 int len) | |
2777 { | |
2778 char szTrueName[_MAX_PATH + 2]; | |
2604 | 2779 char szTrueNameTemp[_MAX_PATH + 2]; |
7 | 2780 char *ptrue, *ptruePrev; |
2781 char *porig, *porigPrev; | |
2782 int flen; | |
2783 WIN32_FIND_DATA fb; | |
2784 HANDLE hFind; | |
2785 int c; | |
2604 | 2786 int slen; |
7 | 2787 |
434 | 2788 flen = (int)STRLEN(name); |
5326 | 2789 if (flen == 0) |
7 | 2790 return; |
2791 | |
2792 slash_adjust(name); | |
2793 | |
5326 | 2794 #ifdef FEAT_MBYTE |
2795 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2796 { | |
2797 WCHAR *p = enc_to_utf16(name, NULL); | |
2798 | |
2799 if (p != NULL) | |
2800 { | |
2801 char_u *q; | |
6262 | 2802 WCHAR buf[_MAX_PATH + 1]; |
2803 | |
2804 wcsncpy(buf, p, _MAX_PATH); | |
2805 buf[_MAX_PATH] = L'\0'; | |
5326 | 2806 vim_free(p); |
2807 | |
2808 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK) | |
2809 { | |
2810 q = utf16_to_enc(buf, NULL); | |
2811 if (q != NULL) | |
2812 { | |
2813 vim_strncpy(name, q, (len > 0) ? len - 1 : flen); | |
2814 vim_free(q); | |
2815 return; | |
2816 } | |
2817 } | |
2818 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2819 return; |
5326 | 2820 } |
2821 #endif | |
2822 | |
2823 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH. | |
2824 * So we should check this after calling wide function. */ | |
2825 if (flen > _MAX_PATH) | |
2826 return; | |
2827 | |
7 | 2828 /* Build the new name in szTrueName[] one component at a time. */ |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2829 porig = (char *)name; |
7 | 2830 ptrue = szTrueName; |
2831 | |
2832 if (isalpha(porig[0]) && porig[1] == ':') | |
2833 { | |
2834 /* copy leading drive letter */ | |
2835 *ptrue++ = *porig++; | |
2836 *ptrue++ = *porig++; | |
2837 } | |
5529 | 2838 *ptrue = NUL; /* in case nothing follows */ |
7 | 2839 |
2840 while (*porig != NUL) | |
2841 { | |
2842 /* copy \ characters */ | |
2843 while (*porig == psepc) | |
2844 *ptrue++ = *porig++; | |
2845 | |
2846 ptruePrev = ptrue; | |
2847 porigPrev = porig; | |
2848 while (*porig != NUL && *porig != psepc) | |
2849 { | |
2850 #ifdef FEAT_MBYTE | |
2851 int l; | |
2852 | |
2853 if (enc_dbcs) | |
2854 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2855 l = (*mb_ptr2len)((char_u *)porig); |
7 | 2856 while (--l >= 0) |
2857 *ptrue++ = *porig++; | |
2858 } | |
2859 else | |
2860 #endif | |
2861 *ptrue++ = *porig++; | |
2862 } | |
2863 *ptrue = NUL; | |
2864 | |
2604 | 2865 /* To avoid a slow failure append "\*" when searching a directory, |
2866 * server or network share. */ | |
2867 STRCPY(szTrueNameTemp, szTrueName); | |
2615 | 2868 slen = (int)strlen(szTrueNameTemp); |
2604 | 2869 if (*porig == psepc && slen + 2 < _MAX_PATH) |
2870 STRCPY(szTrueNameTemp + slen, "\\*"); | |
2871 | |
7 | 2872 /* Skip "", "." and "..". */ |
2873 if (ptrue > ptruePrev | |
2874 && (ptruePrev[0] != '.' | |
2875 || (ptruePrev[1] != NUL | |
2876 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL))) | |
2604 | 2877 && (hFind = FindFirstFile(szTrueNameTemp, &fb)) |
7 | 2878 != INVALID_HANDLE_VALUE) |
2879 { | |
2880 c = *porig; | |
2881 *porig = NUL; | |
2882 | |
2883 /* Only use the match when it's the same name (ignoring case) or | |
2884 * expansion is allowed and there is a match with the short name | |
2885 * and there is enough room. */ | |
2886 if (_stricoll(porigPrev, fb.cFileName) == 0 | |
2887 || (len > 0 | |
2888 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0 | |
2889 && (int)(ptruePrev - szTrueName) | |
2890 + (int)strlen(fb.cFileName) < len))) | |
2891 { | |
2892 STRCPY(ptruePrev, fb.cFileName); | |
2893 | |
2894 /* Look for exact match and prefer it if found. Must be a | |
2895 * long name, otherwise there would be only one match. */ | |
2896 while (FindNextFile(hFind, &fb)) | |
2897 { | |
2898 if (*fb.cAlternateFileName != NUL | |
2899 && (strcoll(porigPrev, fb.cFileName) == 0 | |
2900 || (len > 0 | |
2901 && (_stricoll(porigPrev, | |
2902 fb.cAlternateFileName) == 0 | |
2903 && (int)(ptruePrev - szTrueName) | |
2904 + (int)strlen(fb.cFileName) < len)))) | |
2905 { | |
2906 STRCPY(ptruePrev, fb.cFileName); | |
2907 break; | |
2908 } | |
2909 } | |
2910 } | |
2911 FindClose(hFind); | |
2912 *porig = c; | |
2913 ptrue = ptruePrev + strlen(ptruePrev); | |
2914 } | |
2915 } | |
2916 | |
2917 STRCPY(name, szTrueName); | |
2918 } | |
2919 | |
2920 | |
2921 /* | |
2922 * Insert user name in s[len]. | |
2923 */ | |
2924 int | |
2925 mch_get_user_name( | |
26 | 2926 char_u *s, |
2927 int len) | |
7 | 2928 { |
1414 | 2929 char szUserName[256 + 1]; /* UNLEN is 256 */ |
7 | 2930 DWORD cch = sizeof szUserName; |
2931 | |
5549 | 2932 #ifdef FEAT_MBYTE |
2933 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2934 { | |
2935 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */ | |
2936 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR); | |
2937 | |
2938 if (GetUserNameW(wszUserName, &wcch)) | |
2939 { | |
2940 char_u *p = utf16_to_enc(wszUserName, NULL); | |
2941 | |
2942 if (p != NULL) | |
2943 { | |
2944 vim_strncpy(s, p, len - 1); | |
2945 vim_free(p); | |
2946 return OK; | |
2947 } | |
2948 } | |
2949 } | |
2950 #endif | |
7 | 2951 if (GetUserName(szUserName, &cch)) |
2952 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2953 vim_strncpy(s, (char_u *)szUserName, len - 1); |
7 | 2954 return OK; |
2955 } | |
2956 s[0] = NUL; | |
2957 return FAIL; | |
2958 } | |
2959 | |
2960 | |
2961 /* | |
2962 * Insert host name in s[len]. | |
2963 */ | |
2964 void | |
2965 mch_get_host_name( | |
2966 char_u *s, | |
2967 int len) | |
2968 { | |
2969 DWORD cch = len; | |
2970 | |
5551 | 2971 #ifdef FEAT_MBYTE |
2972 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2973 { | |
2974 WCHAR wszHostName[256 + 1]; | |
2975 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR); | |
2976 | |
2977 if (GetComputerNameW(wszHostName, &wcch)) | |
2978 { | |
2979 char_u *p = utf16_to_enc(wszHostName, NULL); | |
2980 | |
2981 if (p != NULL) | |
2982 { | |
2983 vim_strncpy(s, p, len - 1); | |
2984 vim_free(p); | |
2985 return; | |
2986 } | |
2987 } | |
2988 } | |
2989 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2990 if (!GetComputerName((LPSTR)s, &cch)) |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2991 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1); |
7 | 2992 } |
2993 | |
2994 | |
2995 /* | |
2996 * return process ID | |
2997 */ | |
2998 long | |
26 | 2999 mch_get_pid(void) |
7 | 3000 { |
3001 return (long)GetCurrentProcessId(); | |
3002 } | |
3003 | |
3004 | |
3005 /* | |
3006 * Get name of current directory into buffer 'buf' of length 'len' bytes. | |
3007 * Return OK for success, FAIL for failure. | |
3008 */ | |
3009 int | |
3010 mch_dirname( | |
3011 char_u *buf, | |
3012 int len) | |
3013 { | |
3014 /* | |
3015 * Originally this was: | |
3016 * return (getcwd(buf, len) != NULL ? OK : FAIL); | |
3017 * But the Win32s known bug list says that getcwd() doesn't work | |
3018 * so use the Win32 system call instead. <Negri> | |
3019 */ | |
3020 #ifdef FEAT_MBYTE | |
3021 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
3022 { | |
3023 WCHAR wbuf[_MAX_PATH + 1]; | |
3024 | |
3025 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0) | |
3026 { | |
1752 | 3027 char_u *p = utf16_to_enc(wbuf, NULL); |
7 | 3028 |
3029 if (p != NULL) | |
3030 { | |
417 | 3031 vim_strncpy(buf, p, len - 1); |
7 | 3032 vim_free(p); |
3033 return OK; | |
3034 } | |
3035 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3036 return FAIL; |
7 | 3037 } |
3038 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3039 return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL); |
7 | 3040 } |
3041 | |
3042 /* | |
5494 | 3043 * Get file permissions for "name". |
3044 * Return mode_t or -1 for error. | |
7 | 3045 */ |
3046 long | |
26 | 3047 mch_getperm(char_u *name) |
7 | 3048 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
8949
diff
changeset
|
3049 stat_T st; |
5494 | 3050 int n; |
3051 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3052 n = mch_stat((char *)name, &st); |
5588 | 3053 return n == 0 ? (long)(unsigned short)st.st_mode : -1L; |
7 | 3054 } |
3055 | |
3056 | |
3057 /* | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3058 * Set file permission for "name" to "perm". |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3059 * |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3060 * Return FAIL for failure, OK otherwise. |
7 | 3061 */ |
3062 int | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3063 mch_setperm(char_u *name, long perm) |
7 | 3064 { |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3065 long n = -1; |
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3066 |
7 | 3067 #ifdef FEAT_MBYTE |
3068 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
3069 { | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3070 WCHAR *p = enc_to_utf16(name, NULL); |
7 | 3071 |
3072 if (p != NULL) | |
3073 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3074 n = _wchmod(p, perm); |
7 | 3075 vim_free(p); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3076 if (n == -1) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3077 return FAIL; |
7 | 3078 } |
3079 } | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3080 if (n == -1) |
7 | 3081 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3082 n = _chmod((const char *)name, perm); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3083 if (n == -1) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3084 return FAIL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3085 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3086 win32_set_archive(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3087 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3088 return OK; |
7 | 3089 } |
3090 | |
3091 /* | |
3092 * Set hidden flag for "name". | |
3093 */ | |
3094 void | |
3095 mch_hide(char_u *name) | |
3096 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3097 int attrs = win32_getattrs(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3098 if (attrs == -1) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3099 return; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3100 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3101 attrs |= FILE_ATTRIBUTE_HIDDEN; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3102 win32_setattrs(name, attrs); |
7 | 3103 } |
3104 | |
3105 /* | |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3106 * Return TRUE if file "name" exists and is hidden. |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3107 */ |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3108 int |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3109 mch_ishidden(char_u *name) |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3110 { |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3111 int f = win32_getattrs(name); |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3112 |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3113 if (f == -1) |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3114 return FALSE; /* file does not exist at all */ |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3115 |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3116 return (f & FILE_ATTRIBUTE_HIDDEN) != 0; |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3117 } |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3118 |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3119 /* |
7 | 3120 * return TRUE if "name" is a directory |
3121 * return FALSE if "name" is not a directory or upon error | |
3122 */ | |
3123 int | |
3124 mch_isdir(char_u *name) | |
3125 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3126 int f = win32_getattrs(name); |
7 | 3127 |
3128 if (f == -1) | |
3129 return FALSE; /* file does not exist at all */ | |
3130 | |
3131 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0; | |
3132 } | |
3133 | |
3134 /* | |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3135 * return TRUE if "name" is a directory, NOT a symlink to a directory |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3136 * return FALSE if "name" is not a directory |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3137 * return FALSE for error |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3138 */ |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3139 int |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3140 mch_isrealdir(char_u *name) |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3141 { |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3142 return mch_isdir(name) && !mch_is_symbolic_link(name); |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3143 } |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3144 |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3145 /* |
2803 | 3146 * Create directory "name". |
3147 * Return 0 on success, -1 on error. | |
3148 */ | |
3149 int | |
3150 mch_mkdir(char_u *name) | |
3151 { | |
3152 #ifdef FEAT_MBYTE | |
3153 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
3154 { | |
3155 WCHAR *p; | |
3156 int retval; | |
3157 | |
3158 p = enc_to_utf16(name, NULL); | |
3159 if (p == NULL) | |
3160 return -1; | |
3161 retval = _wmkdir(p); | |
3162 vim_free(p); | |
3163 return retval; | |
3164 } | |
3165 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3166 return _mkdir((const char *)name); |
2803 | 3167 } |
3168 | |
3169 /* | |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3170 * Delete directory "name". |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3171 * Return 0 on success, -1 on error. |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3172 */ |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3173 int |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3174 mch_rmdir(char_u *name) |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3175 { |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3176 #ifdef FEAT_MBYTE |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3177 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3178 { |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3179 WCHAR *p; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3180 int retval; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3181 |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3182 p = enc_to_utf16(name, NULL); |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3183 if (p == NULL) |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3184 return -1; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3185 retval = _wrmdir(p); |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3186 vim_free(p); |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3187 return retval; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3188 } |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3189 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3190 return _rmdir((const char *)name); |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3191 } |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3192 |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3193 /* |
696 | 3194 * Return TRUE if file "fname" has more than one link. |
3195 */ | |
3196 int | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3197 mch_is_hard_link(char_u *fname) |
696 | 3198 { |
2793 | 3199 BY_HANDLE_FILE_INFORMATION info; |
3200 | |
3201 return win32_fileinfo(fname, &info) == FILEINFO_OK | |
3202 && info.nNumberOfLinks > 1; | |
3203 } | |
3204 | |
3205 /* | |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3206 * Return TRUE if "name" is a symbolic link (or a junction). |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3207 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3208 int |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3209 mch_is_symbolic_link(char_u *name) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3210 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3211 HANDLE hFind; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3212 int res = FALSE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3213 WIN32_FIND_DATAA findDataA; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3214 DWORD fileFlags = 0, reparseTag = 0; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3215 #ifdef FEAT_MBYTE |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3216 WCHAR *wn = NULL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3217 WIN32_FIND_DATAW findDataW; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3218 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3219 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3220 wn = enc_to_utf16(name, NULL); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3221 if (wn != NULL) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3222 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3223 hFind = FindFirstFileW(wn, &findDataW); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3224 vim_free(wn); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3225 if (hFind != INVALID_HANDLE_VALUE) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3226 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3227 fileFlags = findDataW.dwFileAttributes; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3228 reparseTag = findDataW.dwReserved0; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3229 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3230 } |
4930
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3231 else |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3232 #endif |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3233 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3234 hFind = FindFirstFile((LPCSTR)name, &findDataA); |
4930
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3235 if (hFind != INVALID_HANDLE_VALUE) |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3236 { |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3237 fileFlags = findDataA.dwFileAttributes; |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3238 reparseTag = findDataA.dwReserved0; |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3239 } |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3240 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3241 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3242 if (hFind != INVALID_HANDLE_VALUE) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3243 FindClose(hFind); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3244 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3245 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT) |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3246 && (reparseTag == IO_REPARSE_TAG_SYMLINK |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3247 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT)) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3248 res = TRUE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3249 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3250 return res; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3251 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3252 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3253 /* |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3254 * Return TRUE if file "fname" has more than one link or if it is a symbolic |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3255 * link. |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3256 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3257 int |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3258 mch_is_linked(char_u *fname) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3259 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3260 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname)) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3261 return TRUE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3262 return FALSE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3263 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3264 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3265 /* |
2793 | 3266 * Get the by-handle-file-information for "fname". |
3267 * Returns FILEINFO_OK when OK. | |
3268 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed. | |
3269 * Returns FILEINFO_READ_FAIL when CreateFile() failed. | |
3270 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed. | |
3271 */ | |
3272 int | |
3273 win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info) | |
3274 { | |
696 | 3275 HANDLE hFile; |
2793 | 3276 int res = FILEINFO_READ_FAIL; |
696 | 3277 #ifdef FEAT_MBYTE |
3278 WCHAR *wn = NULL; | |
3279 | |
3280 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2793 | 3281 { |
1752 | 3282 wn = enc_to_utf16(fname, NULL); |
2793 | 3283 if (wn == NULL) |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3284 return FILEINFO_ENC_FAIL; |
2793 | 3285 } |
696 | 3286 if (wn != NULL) |
3287 { | |
3288 hFile = CreateFileW(wn, /* file name */ | |
3289 GENERIC_READ, /* access mode */ | |
2793 | 3290 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */ |
696 | 3291 NULL, /* security descriptor */ |
3292 OPEN_EXISTING, /* creation disposition */ | |
2793 | 3293 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */ |
696 | 3294 NULL); /* handle to template file */ |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3295 vim_free(wn); |
696 | 3296 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3297 else |
696 | 3298 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3299 hFile = CreateFile((LPCSTR)fname, /* file name */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3300 GENERIC_READ, /* access mode */ |
2793 | 3301 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */ |
696 | 3302 NULL, /* security descriptor */ |
3303 OPEN_EXISTING, /* creation disposition */ | |
2793 | 3304 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */ |
696 | 3305 NULL); /* handle to template file */ |
3306 | |
3307 if (hFile != INVALID_HANDLE_VALUE) | |
3308 { | |
2793 | 3309 if (GetFileInformationByHandle(hFile, info) != 0) |
3310 res = FILEINFO_OK; | |
3311 else | |
3312 res = FILEINFO_INFO_FAIL; | |
696 | 3313 CloseHandle(hFile); |
3314 } | |
3315 | |
3316 return res; | |
3317 } | |
3318 | |
3319 /* | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3320 * get file attributes for `name' |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3321 * -1 : error |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3322 * else FILE_ATTRIBUTE_* defined in winnt.h |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3323 */ |
5494 | 3324 static int |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3325 win32_getattrs(char_u *name) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3326 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3327 int attr; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3328 #ifdef FEAT_MBYTE |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3329 WCHAR *p = NULL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3330 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3331 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3332 p = enc_to_utf16(name, NULL); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3333 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3334 if (p != NULL) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3335 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3336 attr = GetFileAttributesW(p); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3337 vim_free(p); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3338 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3339 else |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3340 #endif |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3341 attr = GetFileAttributes((char *)name); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3342 |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3343 return attr; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3344 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3345 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3346 /* |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3347 * set file attributes for `name' to `attrs' |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3348 * |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3349 * return -1 for failure, 0 otherwise |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3350 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3351 static |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3352 int |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3353 win32_setattrs(char_u *name, int attrs) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3354 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3355 int res; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3356 #ifdef FEAT_MBYTE |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3357 WCHAR *p = NULL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3358 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3359 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3360 p = enc_to_utf16(name, NULL); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3361 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3362 if (p != NULL) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3363 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3364 res = SetFileAttributesW(p, attrs); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3365 vim_free(p); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3366 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3367 else |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3368 #endif |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3369 res = SetFileAttributes((char *)name, attrs); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3370 |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3371 return res ? 0 : -1; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3372 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3373 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3374 /* |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3375 * Set archive flag for "name". |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3376 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3377 static |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3378 int |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3379 win32_set_archive(char_u *name) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3380 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3381 int attrs = win32_getattrs(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3382 if (attrs == -1) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3383 return -1; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3384 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3385 attrs |= FILE_ATTRIBUTE_ARCHIVE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3386 return win32_setattrs(name, attrs); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3387 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3388 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3389 /* |
7 | 3390 * Return TRUE if file or directory "name" is writable (not readonly). |
3391 * Strange semantics of Win32: a readonly directory is writable, but you can't | |
3392 * delete a file. Let's say this means it is writable. | |
3393 */ | |
3394 int | |
3395 mch_writable(char_u *name) | |
3396 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3397 int attrs = win32_getattrs(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3398 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3399 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3400 || (attrs & FILE_ATTRIBUTE_DIRECTORY))); |
7 | 3401 } |
3402 | |
3403 /* | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3404 * Return TRUE if "name" can be executed, FALSE if not. |
6700 | 3405 * If "use_path" is FALSE only check if "name" is executable. |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3406 * When returning TRUE and "path" is not NULL save the path and set "*path" to |
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3407 * the allocated memory. |
7 | 3408 */ |
3409 int | |
6700 | 3410 mch_can_exe(char_u *name, char_u **path, int use_path) |
7 | 3411 { |
10 | 3412 char_u buf[_MAX_PATH]; |
835 | 3413 int len = (int)STRLEN(name); |
10 | 3414 char_u *p; |
3415 | |
3416 if (len >= _MAX_PATH) /* safety check */ | |
3417 return FALSE; | |
3418 | |
3419 /* If there already is an extension try using the name directly. Also do | |
3420 * this with a Unix-shell like 'shell'. */ | |
3421 if (vim_strchr(gettail(name), '.') != NULL | |
3422 || strstr((char *)gettail(p_sh), "sh") != NULL) | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3423 if (executable_exists((char *)name, path, use_path)) |
10 | 3424 return TRUE; |
3425 | |
3426 /* | |
3427 * Loop over all extensions in $PATHEXT. | |
3428 */ | |
417 | 3429 vim_strncpy(buf, name, _MAX_PATH - 1); |
10 | 3430 p = mch_getenv("PATHEXT"); |
3431 if (p == NULL) | |
3432 p = (char_u *)".com;.exe;.bat;.cmd"; | |
3433 while (*p) | |
3434 { | |
3435 if (p[0] == '.' && (p[1] == NUL || p[1] == ';')) | |
3436 { | |
3437 /* A single "." means no extension is added. */ | |
3438 buf[len] = NUL; | |
3439 ++p; | |
3440 if (*p) | |
3441 ++p; | |
3442 } | |
3443 else | |
3444 copy_option_part(&p, buf + len, _MAX_PATH - len, ";"); | |
11054
576238eda5a4
patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents:
11014
diff
changeset
|
3445 if (executable_exists((char *)buf, path, use_path)) |
10 | 3446 return TRUE; |
3447 } | |
3448 return FALSE; | |
7 | 3449 } |
3450 | |
3451 /* | |
3452 * Check what "name" is: | |
3453 * NODE_NORMAL: file or directory (or doesn't exist) | |
3454 * NODE_WRITABLE: writable device, socket, fifo, etc. | |
3455 * NODE_OTHER: non-writable things | |
3456 */ | |
3457 int | |
3458 mch_nodetype(char_u *name) | |
3459 { | |
3460 HANDLE hFile; | |
3461 int type; | |
5324 | 3462 #ifdef FEAT_MBYTE |
3463 WCHAR *wn = NULL; | |
3464 #endif | |
7 | 3465 |
1004 | 3466 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to |
3467 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE | |
3468 * here. */ | |
3469 if (STRNCMP(name, "\\\\.\\", 4) == 0) | |
3470 return NODE_WRITABLE; | |
3471 | |
5324 | 3472 #ifdef FEAT_MBYTE |
3473 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3474 wn = enc_to_utf16(name, NULL); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3475 |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3476 if (wn != NULL) |
5324 | 3477 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3478 hFile = CreateFileW(wn, /* file name */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3479 GENERIC_WRITE, /* access mode */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3480 0, /* share mode */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3481 NULL, /* security descriptor */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3482 OPEN_EXISTING, /* creation disposition */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3483 0, /* file attributes */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3484 NULL); /* handle to template file */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3485 vim_free(wn); |
5324 | 3486 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3487 else |
5324 | 3488 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3489 hFile = CreateFile((LPCSTR)name, /* file name */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3490 GENERIC_WRITE, /* access mode */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3491 0, /* share mode */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3492 NULL, /* security descriptor */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3493 OPEN_EXISTING, /* creation disposition */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3494 0, /* file attributes */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3495 NULL); /* handle to template file */ |
5324 | 3496 |
7 | 3497 if (hFile == INVALID_HANDLE_VALUE) |
3498 return NODE_NORMAL; | |
3499 | |
3500 type = GetFileType(hFile); | |
3501 CloseHandle(hFile); | |
3502 if (type == FILE_TYPE_CHAR) | |
3503 return NODE_WRITABLE; | |
3504 if (type == FILE_TYPE_DISK) | |
3505 return NODE_NORMAL; | |
3506 return NODE_OTHER; | |
3507 } | |
3508 | |
3509 #ifdef HAVE_ACL | |
3510 struct my_acl | |
3511 { | |
3512 PSECURITY_DESCRIPTOR pSecurityDescriptor; | |
3513 PSID pSidOwner; | |
3514 PSID pSidGroup; | |
3515 PACL pDacl; | |
3516 PACL pSacl; | |
3517 }; | |
3518 #endif | |
3519 | |
3520 /* | |
3521 * Return a pointer to the ACL of file "fname" in allocated memory. | |
3522 * Return NULL if the ACL is not available for whatever reason. | |
3523 */ | |
3524 vim_acl_T | |
26 | 3525 mch_get_acl(char_u *fname) |
7 | 3526 { |
3527 #ifndef HAVE_ACL | |
3528 return (vim_acl_T)NULL; | |
3529 #else | |
3530 struct my_acl *p = NULL; | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3531 DWORD err; |
7 | 3532 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3533 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl)); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3534 if (p != NULL) |
7 | 3535 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3536 # ifdef FEAT_MBYTE |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3537 WCHAR *wn = NULL; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3538 |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3539 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3540 wn = enc_to_utf16(fname, NULL); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3541 if (wn != NULL) |
7 | 3542 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3543 /* Try to retrieve the entire security descriptor. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3544 err = GetNamedSecurityInfoW( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3545 wn, // Abstract filename |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3546 SE_FILE_OBJECT, // File Object |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3547 OWNER_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3548 GROUP_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3549 DACL_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3550 SACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3551 &p->pSidOwner, // Ownership information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3552 &p->pSidGroup, // Group membership. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3553 &p->pDacl, // Discretionary information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3554 &p->pSacl, // For auditing purposes. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3555 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3556 if (err == ERROR_ACCESS_DENIED || |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3557 err == ERROR_PRIVILEGE_NOT_HELD) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3558 { |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3559 /* Retrieve only DACL. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3560 (void)GetNamedSecurityInfoW( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3561 wn, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3562 SE_FILE_OBJECT, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3563 DACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3564 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3565 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3566 &p->pDacl, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3567 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3568 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3569 } |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3570 if (p->pSecurityDescriptor == NULL) |
7 | 3571 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3572 mch_free_acl((vim_acl_T)p); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3573 p = NULL; |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3574 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3575 vim_free(wn); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3576 } |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3577 else |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3578 # endif |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3579 { |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3580 /* Try to retrieve the entire security descriptor. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3581 err = GetNamedSecurityInfo( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3582 (LPSTR)fname, // Abstract filename |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3583 SE_FILE_OBJECT, // File Object |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3584 OWNER_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3585 GROUP_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3586 DACL_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3587 SACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3588 &p->pSidOwner, // Ownership information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3589 &p->pSidGroup, // Group membership. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3590 &p->pDacl, // Discretionary information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3591 &p->pSacl, // For auditing purposes. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3592 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3593 if (err == ERROR_ACCESS_DENIED || |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3594 err == ERROR_PRIVILEGE_NOT_HELD) |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3595 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3596 /* Retrieve only DACL. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3597 (void)GetNamedSecurityInfo( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3598 (LPSTR)fname, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3599 SE_FILE_OBJECT, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3600 DACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3601 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3602 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3603 &p->pDacl, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3604 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3605 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3606 } |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3607 if (p->pSecurityDescriptor == NULL) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3608 { |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3609 mch_free_acl((vim_acl_T)p); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3610 p = NULL; |
7 | 3611 } |
3612 } | |
3613 } | |
3614 | |
3615 return (vim_acl_T)p; | |
3616 #endif | |
3617 } | |
3618 | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3619 #ifdef HAVE_ACL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3620 /* |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3621 * Check if "acl" contains inherited ACE. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3622 */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3623 static BOOL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3624 is_acl_inherited(PACL acl) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3625 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3626 DWORD i; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3627 ACL_SIZE_INFORMATION acl_info; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3628 PACCESS_ALLOWED_ACE ace; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3629 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3630 acl_info.AceCount = 0; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3631 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3632 for (i = 0; i < acl_info.AceCount; i++) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3633 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3634 GetAce(acl, i, (LPVOID *)&ace); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3635 if (ace->Header.AceFlags & INHERITED_ACE) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3636 return TRUE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3637 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3638 return FALSE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3639 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3640 #endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3641 |
7 | 3642 /* |
3643 * Set the ACL of file "fname" to "acl" (unless it's NULL). | |
3644 * Errors are ignored. | |
3645 * This must only be called with "acl" equal to what mch_get_acl() returned. | |
3646 */ | |
3647 void | |
26 | 3648 mch_set_acl(char_u *fname, vim_acl_T acl) |
7 | 3649 { |
3650 #ifdef HAVE_ACL | |
3651 struct my_acl *p = (struct my_acl *)acl; | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3652 SECURITY_INFORMATION sec_info = 0; |
7 | 3653 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3654 if (p != NULL) |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3655 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3656 # ifdef FEAT_MBYTE |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3657 WCHAR *wn = NULL; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3658 # endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3659 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3660 /* Set security flags */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3661 if (p->pSidOwner) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3662 sec_info |= OWNER_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3663 if (p->pSidGroup) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3664 sec_info |= GROUP_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3665 if (p->pDacl) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3666 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3667 sec_info |= DACL_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3668 /* Do not inherit its parent's DACL. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3669 * If the DACL is inherited, Cygwin permissions would be changed. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3670 */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3671 if (!is_acl_inherited(p->pDacl)) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3672 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3673 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3674 if (p->pSacl) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3675 sec_info |= SACL_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3676 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3677 # ifdef FEAT_MBYTE |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3678 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3679 wn = enc_to_utf16(fname, NULL); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3680 if (wn != NULL) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3681 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3682 (void)SetNamedSecurityInfoW( |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3683 wn, // Abstract filename |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3684 SE_FILE_OBJECT, // File Object |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3685 sec_info, |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3686 p->pSidOwner, // Ownership information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3687 p->pSidGroup, // Group membership. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3688 p->pDacl, // Discretionary information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3689 p->pSacl // For auditing purposes. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3690 ); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3691 vim_free(wn); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3692 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3693 else |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3694 # endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3695 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3696 (void)SetNamedSecurityInfo( |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3697 (LPSTR)fname, // Abstract filename |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3698 SE_FILE_OBJECT, // File Object |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3699 sec_info, |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3700 p->pSidOwner, // Ownership information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3701 p->pSidGroup, // Group membership. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3702 p->pDacl, // Discretionary information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3703 p->pSacl // For auditing purposes. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3704 ); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3705 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3706 } |
7 | 3707 #endif |
3708 } | |
3709 | |
3710 void | |
26 | 3711 mch_free_acl(vim_acl_T acl) |
7 | 3712 { |
3713 #ifdef HAVE_ACL | |
3714 struct my_acl *p = (struct my_acl *)acl; | |
3715 | |
3716 if (p != NULL) | |
3717 { | |
3718 LocalFree(p->pSecurityDescriptor); // Free the memory just in case | |
3719 vim_free(p); | |
3720 } | |
3721 #endif | |
3722 } | |
3723 | |
3724 #ifndef FEAT_GUI_W32 | |
3725 | |
3726 /* | |
3727 * handler for ctrl-break, ctrl-c interrupts, and fatal events. | |
3728 */ | |
3729 static BOOL WINAPI | |
3730 handler_routine( | |
3731 DWORD dwCtrlType) | |
3732 { | |
12074
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3733 INPUT_RECORD ir; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3734 DWORD out; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3735 |
7 | 3736 switch (dwCtrlType) |
3737 { | |
3738 case CTRL_C_EVENT: | |
3739 if (ctrl_c_interrupts) | |
3740 g_fCtrlCPressed = TRUE; | |
3741 return TRUE; | |
3742 | |
3743 case CTRL_BREAK_EVENT: | |
3744 g_fCBrkPressed = TRUE; | |
12074
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3745 ctrl_break_was_pressed = TRUE; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3746 /* ReadConsoleInput is blocking, send a key event to continue. */ |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3747 ir.EventType = KEY_EVENT; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3748 ir.Event.KeyEvent.bKeyDown = TRUE; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3749 ir.Event.KeyEvent.wRepeatCount = 1; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3750 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3751 ir.Event.KeyEvent.wVirtualScanCode = 0; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3752 ir.Event.KeyEvent.dwControlKeyState = 0; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3753 ir.Event.KeyEvent.uChar.UnicodeChar = 0; |
ca55e69d9d1b
patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents:
12066
diff
changeset
|
3754 WriteConsoleInput(g_hConIn, &ir, 1, &out); |
7 | 3755 return TRUE; |
3756 | |
3757 /* fatal events: shut down gracefully */ | |
3758 case CTRL_CLOSE_EVENT: | |
3759 case CTRL_LOGOFF_EVENT: | |
3760 case CTRL_SHUTDOWN_EVENT: | |
3761 windgoto((int)Rows - 1, 0); | |
3762 g_fForceExit = TRUE; | |
3763 | |
1569 | 3764 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"), |
7 | 3765 (dwCtrlType == CTRL_CLOSE_EVENT |
3766 ? _("close") | |
3767 : dwCtrlType == CTRL_LOGOFF_EVENT | |
3768 ? _("logoff") | |
3769 : _("shutdown"))); | |
3770 #ifdef DEBUG | |
3771 OutputDebugString(IObuff); | |
3772 #endif | |
3773 | |
3774 preserve_exit(); /* output IObuff, preserve files and exit */ | |
3775 | |
3776 return TRUE; /* not reached */ | |
3777 | |
3778 default: | |
3779 return FALSE; | |
3780 } | |
3781 } | |
3782 | |
3783 | |
3784 /* | |
3785 * set the tty in (raw) ? "raw" : "cooked" mode | |
3786 */ | |
3787 void | |
26 | 3788 mch_settmode(int tmode) |
7 | 3789 { |
3790 DWORD cmodein; | |
3791 DWORD cmodeout; | |
3792 BOOL bEnableHandler; | |
3793 | |
3794 GetConsoleMode(g_hConIn, &cmodein); | |
3795 GetConsoleMode(g_hConOut, &cmodeout); | |
3796 if (tmode == TMODE_RAW) | |
3797 { | |
3798 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | | |
3799 ENABLE_ECHO_INPUT); | |
3800 #ifdef FEAT_MOUSE | |
3801 if (g_fMouseActive) | |
3802 cmodein |= ENABLE_MOUSE_INPUT; | |
3803 #endif | |
3804 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); | |
3805 bEnableHandler = TRUE; | |
3806 } | |
3807 else /* cooked */ | |
3808 { | |
3809 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | | |
3810 ENABLE_ECHO_INPUT); | |
3811 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); | |
3812 bEnableHandler = FALSE; | |
3813 } | |
3814 SetConsoleMode(g_hConIn, cmodein); | |
3815 SetConsoleMode(g_hConOut, cmodeout); | |
3816 SetConsoleCtrlHandler(handler_routine, bEnableHandler); | |
3817 | |
3818 #ifdef MCH_WRITE_DUMP | |
3819 if (fdDump) | |
3820 { | |
3821 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n", | |
3822 tmode == TMODE_RAW ? "raw" : | |
3823 tmode == TMODE_COOK ? "cooked" : "normal", | |
3824 cmodein, cmodeout); | |
3825 fflush(fdDump); | |
3826 } | |
3827 #endif | |
3828 } | |
3829 | |
3830 | |
3831 /* | |
3832 * Get the size of the current window in `Rows' and `Columns' | |
3833 * Return OK when size could be determined, FAIL otherwise. | |
3834 */ | |
3835 int | |
26 | 3836 mch_get_shellsize(void) |
7 | 3837 { |
3838 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
3839 | |
3840 if (!g_fTermcapMode && g_cbTermcap.IsValid) | |
3841 { | |
3842 /* | |
3843 * For some reason, we are trying to get the screen dimensions | |
3844 * even though we are not in termcap mode. The 'Rows' and 'Columns' | |
3845 * variables are really intended to mean the size of Vim screen | |
3846 * while in termcap mode. | |
3847 */ | |
3848 Rows = g_cbTermcap.Info.dwSize.Y; | |
3849 Columns = g_cbTermcap.Info.dwSize.X; | |
3850 } | |
3851 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
3852 { | |
3853 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; | |
3854 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1; | |
3855 } | |
3856 else | |
3857 { | |
3858 Rows = 25; | |
3859 Columns = 80; | |
3860 } | |
3861 return OK; | |
3862 } | |
3863 | |
3864 /* | |
3865 * Set a console window to `xSize' * `ySize' | |
3866 */ | |
3867 static void | |
3868 ResizeConBufAndWindow( | |
26 | 3869 HANDLE hConsole, |
3870 int xSize, | |
3871 int ySize) | |
7 | 3872 { |
3873 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */ | |
3874 SMALL_RECT srWindowRect; /* hold the new console size */ | |
3875 COORD coordScreen; | |
3876 | |
3877 #ifdef MCH_WRITE_DUMP | |
3878 if (fdDump) | |
3879 { | |
3880 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize); | |
3881 fflush(fdDump); | |
3882 } | |
3883 #endif | |
3884 | |
3885 /* get the largest size we can size the console window to */ | |
3886 coordScreen = GetLargestConsoleWindowSize(hConsole); | |
3887 | |
3888 /* define the new console window size and scroll position */ | |
3889 srWindowRect.Left = srWindowRect.Top = (SHORT) 0; | |
3890 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1); | |
3891 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1); | |
3892 | |
3893 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
3894 { | |
3895 int sx, sy; | |
3896 | |
3897 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1; | |
3898 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; | |
3899 if (sy < ySize || sx < xSize) | |
3900 { | |
3901 /* | |
3902 * Increasing number of lines/columns, do buffer first. | |
3903 * Use the maximal size in x and y direction. | |
3904 */ | |
3905 if (sy < ySize) | |
3906 coordScreen.Y = ySize; | |
3907 else | |
3908 coordScreen.Y = sy; | |
3909 if (sx < xSize) | |
3910 coordScreen.X = xSize; | |
3911 else | |
3912 coordScreen.X = sx; | |
3913 SetConsoleScreenBufferSize(hConsole, coordScreen); | |
3914 } | |
3915 } | |
3916 | |
3917 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect)) | |
3918 { | |
3919 #ifdef MCH_WRITE_DUMP | |
3920 if (fdDump) | |
3921 { | |
3922 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n", | |
3923 GetLastError()); | |
3924 fflush(fdDump); | |
3925 } | |
3926 #endif | |
3927 } | |
3928 | |
3929 /* define the new console buffer size */ | |
3930 coordScreen.X = xSize; | |
3931 coordScreen.Y = ySize; | |
3932 | |
3933 if (!SetConsoleScreenBufferSize(hConsole, coordScreen)) | |
3934 { | |
3935 #ifdef MCH_WRITE_DUMP | |
3936 if (fdDump) | |
3937 { | |
3938 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n", | |
3939 GetLastError()); | |
3940 fflush(fdDump); | |
3941 } | |
3942 #endif | |
3943 } | |
3944 } | |
3945 | |
3946 | |
3947 /* | |
3948 * Set the console window to `Rows' * `Columns' | |
3949 */ | |
3950 void | |
26 | 3951 mch_set_shellsize(void) |
7 | 3952 { |
3953 COORD coordScreen; | |
3954 | |
3955 /* Don't change window size while still starting up */ | |
3956 if (suppress_winsize != 0) | |
3957 { | |
3958 suppress_winsize = 2; | |
3959 return; | |
3960 } | |
3961 | |
3962 if (term_console) | |
3963 { | |
3964 coordScreen = GetLargestConsoleWindowSize(g_hConOut); | |
3965 | |
3966 /* Clamp Rows and Columns to reasonable values */ | |
3967 if (Rows > coordScreen.Y) | |
3968 Rows = coordScreen.Y; | |
3969 if (Columns > coordScreen.X) | |
3970 Columns = coordScreen.X; | |
3971 | |
3972 ResizeConBufAndWindow(g_hConOut, Columns, Rows); | |
3973 } | |
3974 } | |
3975 | |
3976 /* | |
3977 * Rows and/or Columns has changed. | |
3978 */ | |
3979 void | |
26 | 3980 mch_new_shellsize(void) |
7 | 3981 { |
3982 set_scroll_region(0, 0, Columns - 1, Rows - 1); | |
3983 } | |
3984 | |
3985 | |
3986 /* | |
3987 * Called when started up, to set the winsize that was delayed. | |
3988 */ | |
3989 void | |
26 | 3990 mch_set_winsize_now(void) |
7 | 3991 { |
3992 if (suppress_winsize == 2) | |
3993 { | |
3994 suppress_winsize = 0; | |
3995 mch_set_shellsize(); | |
3996 shell_resized(); | |
3997 } | |
3998 suppress_winsize = 0; | |
3999 } | |
4000 #endif /* FEAT_GUI_W32 */ | |
4001 | |
5547 | 4002 static BOOL |
4003 vim_create_process( | |
5556 | 4004 char *cmd, |
5569 | 4005 BOOL inherit_handles, |
5547 | 4006 DWORD flags, |
4007 STARTUPINFO *si, | |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4008 PROCESS_INFORMATION *pi, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4009 LPVOID *env, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4010 char *cwd) |
5547 | 4011 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4012 #ifdef FEAT_MBYTE |
5547 | 4013 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
4014 { | |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4015 BOOL ret; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4016 WCHAR *wcmd, *wcwd = NULL; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4017 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4018 wcmd = enc_to_utf16((char_u *)cmd, NULL); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4019 if (wcmd == NULL) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4020 goto fallback; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4021 if (cwd != NULL) |
5547 | 4022 { |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4023 wcwd = enc_to_utf16((char_u *)cwd, NULL); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4024 if (wcwd == NULL) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4025 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4026 vim_free(wcmd); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4027 goto fallback; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4028 } |
5547 | 4029 } |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4030 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4031 ret = CreateProcessW( |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4032 NULL, /* Executable name */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4033 wcmd, /* Command to execute */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4034 NULL, /* Process security attributes */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4035 NULL, /* Thread security attributes */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4036 inherit_handles, /* Inherit handles */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4037 flags, /* Creation flags */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4038 env, /* Environment */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4039 wcwd, /* Current directory */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4040 (LPSTARTUPINFOW)si, /* Startup information */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4041 pi); /* Process information */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4042 vim_free(wcmd); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4043 if (wcwd != NULL) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4044 vim_free(wcwd); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4045 return ret; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4046 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4047 fallback: |
5547 | 4048 #endif |
4049 return CreateProcess( | |
4050 NULL, /* Executable name */ | |
4051 cmd, /* Command to execute */ | |
4052 NULL, /* Process security attributes */ | |
4053 NULL, /* Thread security attributes */ | |
4054 inherit_handles, /* Inherit handles */ | |
4055 flags, /* Creation flags */ | |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4056 env, /* Environment */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4057 cwd, /* Current directory */ |
5547 | 4058 si, /* Startup information */ |
4059 pi); /* Process information */ | |
4060 } | |
7 | 4061 |
4062 | |
11230
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4063 static HINSTANCE |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4064 vim_shell_execute( |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4065 char *cmd, |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4066 INT n_show_cmd) |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4067 { |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4068 #ifdef FEAT_MBYTE |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4069 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4070 { |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4071 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4072 if (wcmd != NULL) |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4073 { |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4074 HINSTANCE ret; |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4075 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd); |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4076 vim_free(wcmd); |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4077 return ret; |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4078 } |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4079 } |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4080 #endif |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4081 return ShellExecute(NULL, NULL, cmd, NULL, NULL, n_show_cmd); |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4082 } |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4083 |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4084 |
7 | 4085 #if defined(FEAT_GUI_W32) || defined(PROTO) |
4086 | |
4087 /* | |
4088 * Specialised version of system() for Win32 GUI mode. | |
4089 * This version proceeds as follows: | |
4090 * 1. Create a console window for use by the subprocess | |
4091 * 2. Run the subprocess (it gets the allocated console by default) | |
4092 * 3. Wait for the subprocess to terminate and get its exit code | |
4093 * 4. Prompt the user to press a key to close the console window | |
4094 */ | |
4095 static int | |
2935 | 4096 mch_system_classic(char *cmd, int options) |
7 | 4097 { |
4098 STARTUPINFO si; | |
4099 PROCESS_INFORMATION pi; | |
4100 DWORD ret = 0; | |
4101 HWND hwnd = GetFocus(); | |
4102 | |
4103 si.cb = sizeof(si); | |
4104 si.lpReserved = NULL; | |
4105 si.lpDesktop = NULL; | |
4106 si.lpTitle = NULL; | |
4107 si.dwFlags = STARTF_USESHOWWINDOW; | |
4108 /* | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4109 * It's nicer to run a filter command in a minimized window. |
2643 | 4110 * Don't activate the window to keep focus on Vim. |
7 | 4111 */ |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4112 if (options & SHELL_DOOUT) |
2643 | 4113 si.wShowWindow = SW_SHOWMINNOACTIVE; |
7 | 4114 else |
4115 si.wShowWindow = SW_SHOWNORMAL; | |
4116 si.cbReserved2 = 0; | |
4117 si.lpReserved2 = NULL; | |
4118 | |
4119 /* Now, run the command */ | |
5547 | 4120 vim_create_process(cmd, FALSE, |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4121 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4122 &si, &pi, NULL, NULL); |
7 | 4123 |
4124 /* Wait for the command to terminate before continuing */ | |
4125 { | |
4126 #ifdef FEAT_GUI | |
4127 int delay = 1; | |
4128 | |
4129 /* Keep updating the window while waiting for the shell to finish. */ | |
4130 for (;;) | |
4131 { | |
4132 MSG msg; | |
4133 | |
3010 | 4134 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) |
7 | 4135 { |
4136 TranslateMessage(&msg); | |
3010 | 4137 pDispatchMessage(&msg); |
3720 | 4138 delay = 1; |
4139 continue; | |
7 | 4140 } |
4141 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT) | |
4142 break; | |
4143 | |
4144 /* We start waiting for a very short time and then increase it, so | |
4145 * that we respond quickly when the process is quick, and don't | |
4146 * consume too much overhead when it's slow. */ | |
4147 if (delay < 50) | |
4148 delay += 10; | |
4149 } | |
4150 #else | |
4151 WaitForSingleObject(pi.hProcess, INFINITE); | |
4152 #endif | |
4153 | |
4154 /* Get the command exit code */ | |
4155 GetExitCodeProcess(pi.hProcess, &ret); | |
4156 } | |
4157 | |
4158 /* Close the handles to the subprocess, so that it goes away */ | |
4159 CloseHandle(pi.hThread); | |
4160 CloseHandle(pi.hProcess); | |
4161 | |
4162 /* Try to get input focus back. Doesn't always work though. */ | |
4163 PostMessage(hwnd, WM_SETFOCUS, 0, 0); | |
4164 | |
4165 return ret; | |
4166 } | |
2935 | 4167 |
4168 /* | |
4169 * Thread launched by the gui to send the current buffer data to the | |
4170 * process. This way avoid to hang up vim totally if the children | |
4171 * process take a long time to process the lines. | |
4172 */ | |
9750
0f4b76b2757a
commit https://github.com/vim/vim/commit/4c38d66d25e4ba433fe87283a4664425a3dbd529
Christian Brabandt <cb@256bit.org>
parents:
9740
diff
changeset
|
4173 static unsigned int __stdcall |
2935 | 4174 sub_process_writer(LPVOID param) |
4175 { | |
4176 HANDLE g_hChildStd_IN_Wr = param; | |
4177 linenr_T lnum = curbuf->b_op_start.lnum; | |
4178 DWORD len = 0; | |
4179 DWORD l; | |
4180 char_u *lp = ml_get(lnum); | |
4181 char_u *s; | |
4182 int written = 0; | |
4183 | |
4184 for (;;) | |
4185 { | |
4186 l = (DWORD)STRLEN(lp + written); | |
4187 if (l == 0) | |
4188 len = 0; | |
4189 else if (lp[written] == NL) | |
4190 { | |
4191 /* NL -> NUL translation */ | |
4192 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL); | |
4193 } | |
4194 else | |
4195 { | |
4196 s = vim_strchr(lp + written, NL); | |
4197 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written, | |
4198 s == NULL ? l : (DWORD)(s - (lp + written)), | |
4199 &len, NULL); | |
4200 } | |
4201 if (len == (int)l) | |
4202 { | |
4203 /* Finished a line, add a NL, unless this line should not have | |
4204 * one. */ | |
4205 if (lnum != curbuf->b_op_end.lnum | |
6933 | 4206 || (!curbuf->b_p_bin |
4207 && curbuf->b_p_fixeol) | |
2935 | 4208 || (lnum != curbuf->b_no_eol_lnum |
4209 && (lnum != curbuf->b_ml.ml_line_count | |
4210 || curbuf->b_p_eol))) | |
4211 { | |
4238 | 4212 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL); |
2935 | 4213 } |
4214 | |
4215 ++lnum; | |
4216 if (lnum > curbuf->b_op_end.lnum) | |
4217 break; | |
4218 | |
4219 lp = ml_get(lnum); | |
4220 written = 0; | |
4221 } | |
4222 else if (len > 0) | |
4223 written += len; | |
4224 } | |
4225 | |
4226 /* finished all the lines, close pipe */ | |
4227 CloseHandle(g_hChildStd_IN_Wr); | |
9740
4665d491a69e
commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4228 return 0; |
2935 | 4229 } |
4230 | |
4231 | |
4232 # define BUFLEN 100 /* length for buffer, stolen from unix version */ | |
4233 | |
4234 /* | |
4235 * This function read from the children's stdout and write the | |
4236 * data on screen or in the buffer accordingly. | |
4237 */ | |
4238 static void | |
4239 dump_pipe(int options, | |
4240 HANDLE g_hChildStd_OUT_Rd, | |
4241 garray_T *ga, | |
4242 char_u buffer[], | |
4243 DWORD *buffer_off) | |
4244 { | |
4245 DWORD availableBytes = 0; | |
4246 DWORD i; | |
4247 int ret; | |
4248 DWORD len; | |
4249 DWORD toRead; | |
4250 int repeatCount; | |
4251 | |
4252 /* we query the pipe to see if there is any data to read | |
4253 * to avoid to perform a blocking read */ | |
4254 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */ | |
4255 NULL, /* optional buffer */ | |
3622 | 4256 0, /* buffer size */ |
2935 | 4257 NULL, /* number of read bytes */ |
4258 &availableBytes, /* available bytes total */ | |
4259 NULL); /* byteLeft */ | |
4260 | |
4261 repeatCount = 0; | |
4262 /* We got real data in the pipe, read it */ | |
3622 | 4263 while (ret != 0 && availableBytes > 0) |
2935 | 4264 { |
4265 repeatCount++; | |
4266 toRead = | |
4267 # ifdef FEAT_MBYTE | |
4268 (DWORD)(BUFLEN - *buffer_off); | |
4269 # else | |
4270 (DWORD)BUFLEN; | |
4271 # endif | |
4272 toRead = availableBytes < toRead ? availableBytes : toRead; | |
4273 ReadFile(g_hChildStd_OUT_Rd, buffer | |
4274 # ifdef FEAT_MBYTE | |
4275 + *buffer_off, toRead | |
4276 # else | |
4277 , toRead | |
4278 # endif | |
4279 , &len, NULL); | |
4280 | |
4281 /* If we haven't read anything, there is a problem */ | |
4282 if (len == 0) | |
4283 break; | |
4284 | |
4285 availableBytes -= len; | |
4286 | |
4287 if (options & SHELL_READ) | |
4288 { | |
4289 /* Do NUL -> NL translation, append NL separated | |
4290 * lines to the current buffer. */ | |
4291 for (i = 0; i < len; ++i) | |
4292 { | |
4293 if (buffer[i] == NL) | |
4294 append_ga_line(ga); | |
4295 else if (buffer[i] == NUL) | |
4296 ga_append(ga, NL); | |
4297 else | |
4298 ga_append(ga, buffer[i]); | |
4299 } | |
4300 } | |
4301 # ifdef FEAT_MBYTE | |
4302 else if (has_mbyte) | |
4303 { | |
4304 int l; | |
3030 | 4305 int c; |
4306 char_u *p; | |
2935 | 4307 |
4308 len += *buffer_off; | |
4309 buffer[len] = NUL; | |
4310 | |
4311 /* Check if the last character in buffer[] is | |
4312 * incomplete, keep these bytes for the next | |
4313 * round. */ | |
4314 for (p = buffer; p < buffer + len; p += l) | |
4315 { | |
9898
bff8a09016a5
commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents:
9762
diff
changeset
|
4316 l = MB_CPTR2LEN(p); |
2935 | 4317 if (l == 0) |
4318 l = 1; /* NUL byte? */ | |
4319 else if (MB_BYTE2LEN(*p) != l) | |
4320 break; | |
4321 } | |
4322 if (p == buffer) /* no complete character */ | |
4323 { | |
4324 /* avoid getting stuck at an illegal byte */ | |
4325 if (len >= 12) | |
4326 ++p; | |
4327 else | |
4328 { | |
4329 *buffer_off = len; | |
4330 return; | |
4331 } | |
4332 } | |
4333 c = *p; | |
4334 *p = NUL; | |
4335 msg_puts(buffer); | |
4336 if (p < buffer + len) | |
4337 { | |
4338 *p = c; | |
4339 *buffer_off = (DWORD)((buffer + len) - p); | |
4340 mch_memmove(buffer, p, *buffer_off); | |
4341 return; | |
4342 } | |
4343 *buffer_off = 0; | |
4344 } | |
4345 # endif /* FEAT_MBYTE */ | |
4346 else | |
4347 { | |
4348 buffer[len] = NUL; | |
4349 msg_puts(buffer); | |
4350 } | |
4351 | |
4352 windgoto(msg_row, msg_col); | |
4353 cursor_on(); | |
4354 out_flush(); | |
4355 } | |
4356 } | |
4357 | |
4358 /* | |
4359 * Version of system to use for windows NT > 5.0 (Win2K), use pipe | |
4360 * for communication and doesn't open any new window. | |
4361 */ | |
4362 static int | |
4363 mch_system_piped(char *cmd, int options) | |
4364 { | |
4365 STARTUPINFO si; | |
4366 PROCESS_INFORMATION pi; | |
4367 DWORD ret = 0; | |
4368 | |
4369 HANDLE g_hChildStd_IN_Rd = NULL; | |
4370 HANDLE g_hChildStd_IN_Wr = NULL; | |
4371 HANDLE g_hChildStd_OUT_Rd = NULL; | |
4372 HANDLE g_hChildStd_OUT_Wr = NULL; | |
4373 | |
4374 char_u buffer[BUFLEN + 1]; /* reading buffer + size */ | |
4375 DWORD len; | |
4376 | |
4377 /* buffer used to receive keys */ | |
4378 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ | |
4379 int ta_len = 0; /* valid bytes in ta_buf[] */ | |
4380 | |
4381 DWORD i; | |
4382 int c; | |
4383 int noread_cnt = 0; | |
4384 garray_T ga; | |
4385 int delay = 1; | |
4386 DWORD buffer_off = 0; /* valid bytes in buffer[] */ | |
3361 | 4387 char *p = NULL; |
2935 | 4388 |
4389 SECURITY_ATTRIBUTES saAttr; | |
4390 | |
4391 /* Set the bInheritHandle flag so pipe handles are inherited. */ | |
4392 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); | |
4393 saAttr.bInheritHandle = TRUE; | |
4394 saAttr.lpSecurityDescriptor = NULL; | |
4395 | |
4396 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0) | |
4397 /* Ensure the read handle to the pipe for STDOUT is not inherited. */ | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4398 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0) |
2935 | 4399 /* Create a pipe for the child process's STDIN. */ |
4400 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0) | |
4401 /* Ensure the write handle to the pipe for STDIN is not inherited. */ | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4402 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) ) |
2935 | 4403 { |
4404 CloseHandle(g_hChildStd_IN_Rd); | |
4405 CloseHandle(g_hChildStd_IN_Wr); | |
4406 CloseHandle(g_hChildStd_OUT_Rd); | |
4407 CloseHandle(g_hChildStd_OUT_Wr); | |
4408 MSG_PUTS(_("\nCannot create pipes\n")); | |
4409 } | |
4410 | |
4411 si.cb = sizeof(si); | |
4412 si.lpReserved = NULL; | |
4413 si.lpDesktop = NULL; | |
4414 si.lpTitle = NULL; | |
4415 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES; | |
4416 | |
4417 /* set-up our file redirection */ | |
4418 si.hStdError = g_hChildStd_OUT_Wr; | |
4419 si.hStdOutput = g_hChildStd_OUT_Wr; | |
4420 si.hStdInput = g_hChildStd_IN_Rd; | |
4421 si.wShowWindow = SW_HIDE; | |
4422 si.cbReserved2 = 0; | |
4423 si.lpReserved2 = NULL; | |
4424 | |
4425 if (options & SHELL_READ) | |
4426 ga_init2(&ga, 1, BUFLEN); | |
4427 | |
3361 | 4428 if (cmd != NULL) |
4429 { | |
4430 p = (char *)vim_strsave((char_u *)cmd); | |
4431 if (p != NULL) | |
4432 unescape_shellxquote((char_u *)p, p_sxe); | |
4433 else | |
4434 p = cmd; | |
4435 } | |
4436 | |
5547 | 4437 /* Now, run the command. |
4438 * About "Inherit handles" being TRUE: this command can be litigious, | |
4439 * handle inheritance was deactivated for pending temp file, but, if we | |
4440 * deactivate it, the pipes don't work for some reason. */ | |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4441 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4442 &si, &pi, NULL, NULL); |
2935 | 4443 |
3361 | 4444 if (p != cmd) |
4445 vim_free(p); | |
2935 | 4446 |
4447 /* Close our unused side of the pipes */ | |
4448 CloseHandle(g_hChildStd_IN_Rd); | |
4449 CloseHandle(g_hChildStd_OUT_Wr); | |
4450 | |
4451 if (options & SHELL_WRITE) | |
4452 { | |
9740
4665d491a69e
commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4453 HANDLE thread = (HANDLE) |
4665d491a69e
commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4454 _beginthreadex(NULL, /* security attributes */ |
2935 | 4455 0, /* default stack size */ |
4456 sub_process_writer, /* function to be executed */ | |
4457 g_hChildStd_IN_Wr, /* parameter */ | |
4458 0, /* creation flag, start immediately */ | |
4459 NULL); /* we don't care about thread id */ | |
4460 CloseHandle(thread); | |
4461 g_hChildStd_IN_Wr = NULL; | |
4462 } | |
4463 | |
4464 /* Keep updating the window while waiting for the shell to finish. */ | |
4465 for (;;) | |
4466 { | |
4467 MSG msg; | |
4468 | |
5553 | 4469 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) |
2935 | 4470 { |
4471 TranslateMessage(&msg); | |
5553 | 4472 pDispatchMessage(&msg); |
2935 | 4473 } |
4474 | |
4475 /* write pipe information in the window */ | |
4476 if ((options & (SHELL_READ|SHELL_WRITE)) | |
4477 # ifdef FEAT_GUI | |
4478 || gui.in_use | |
4479 # endif | |
4480 ) | |
4481 { | |
4482 len = 0; | |
4483 if (!(options & SHELL_EXPAND) | |
4484 && ((options & | |
4485 (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) | |
4486 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) | |
4487 # ifdef FEAT_GUI | |
4488 || gui.in_use | |
4489 # endif | |
4490 ) | |
4491 && (ta_len > 0 || noread_cnt > 4)) | |
4492 { | |
4493 if (ta_len == 0) | |
4494 { | |
4495 /* Get extra characters when we don't have any. Reset the | |
4496 * counter and timer. */ | |
4497 noread_cnt = 0; | |
4498 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); | |
4499 } | |
4500 if (ta_len > 0 || len > 0) | |
4501 { | |
4502 /* | |
4503 * For pipes: Check for CTRL-C: send interrupt signal to | |
4504 * child. Check for CTRL-D: EOF, close pipe to child. | |
4505 */ | |
4506 if (len == 1 && cmd != NULL) | |
4507 { | |
4508 if (ta_buf[ta_len] == Ctrl_C) | |
4509 { | |
4510 /* Learn what exit code is expected, for | |
4511 * now put 9 as SIGKILL */ | |
4512 TerminateProcess(pi.hProcess, 9); | |
4513 } | |
4514 if (ta_buf[ta_len] == Ctrl_D) | |
4515 { | |
4516 CloseHandle(g_hChildStd_IN_Wr); | |
4517 g_hChildStd_IN_Wr = NULL; | |
4518 } | |
4519 } | |
4520 | |
4521 /* replace K_BS by <BS> and K_DEL by <DEL> */ | |
4522 for (i = ta_len; i < ta_len + len; ++i) | |
4523 { | |
4524 if (ta_buf[i] == CSI && len - i > 2) | |
4525 { | |
4526 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); | |
4527 if (c == K_DEL || c == K_KDEL || c == K_BS) | |
4528 { | |
4529 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, | |
4530 (size_t)(len - i - 2)); | |
4531 if (c == K_DEL || c == K_KDEL) | |
4532 ta_buf[i] = DEL; | |
4533 else | |
4534 ta_buf[i] = Ctrl_H; | |
4535 len -= 2; | |
4536 } | |
4537 } | |
4538 else if (ta_buf[i] == '\r') | |
4539 ta_buf[i] = '\n'; | |
4540 # ifdef FEAT_MBYTE | |
4541 if (has_mbyte) | |
4542 i += (*mb_ptr2len_len)(ta_buf + i, | |
4543 ta_len + len - i) - 1; | |
4544 # endif | |
4545 } | |
4546 | |
4547 /* | |
4548 * For pipes: echo the typed characters. For a pty this | |
4549 * does not seem to work. | |
4550 */ | |
4551 for (i = ta_len; i < ta_len + len; ++i) | |
4552 { | |
4553 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') | |
4554 msg_putchar(ta_buf[i]); | |
4555 # ifdef FEAT_MBYTE | |
4556 else if (has_mbyte) | |
4557 { | |
4558 int l = (*mb_ptr2len)(ta_buf + i); | |
4559 | |
4560 msg_outtrans_len(ta_buf + i, l); | |
4561 i += l - 1; | |
4562 } | |
4563 # endif | |
4564 else | |
4565 msg_outtrans_len(ta_buf + i, 1); | |
4566 } | |
4567 windgoto(msg_row, msg_col); | |
4568 out_flush(); | |
4569 | |
4570 ta_len += len; | |
4571 | |
4572 /* | |
4573 * Write the characters to the child, unless EOF has been | |
4574 * typed for pipes. Write one character at a time, to | |
4575 * avoid losing too much typeahead. When writing buffer | |
4576 * lines, drop the typed characters (only check for | |
4577 * CTRL-C). | |
4578 */ | |
4579 if (options & SHELL_WRITE) | |
4580 ta_len = 0; | |
4581 else if (g_hChildStd_IN_Wr != NULL) | |
4582 { | |
4583 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf, | |
4584 1, &len, NULL); | |
4585 // if we are typing in, we want to keep things reactive | |
4586 delay = 1; | |
4587 if (len > 0) | |
4588 { | |
4589 ta_len -= len; | |
4590 mch_memmove(ta_buf, ta_buf + len, ta_len); | |
4591 } | |
4592 } | |
4593 } | |
4594 } | |
4595 } | |
4596 | |
4597 if (ta_len) | |
4598 ui_inchar_undo(ta_buf, ta_len); | |
4599 | |
4600 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT) | |
4601 { | |
3030 | 4602 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off); |
2935 | 4603 break; |
4604 } | |
4605 | |
4606 ++noread_cnt; | |
3030 | 4607 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off); |
2935 | 4608 |
4609 /* We start waiting for a very short time and then increase it, so | |
4610 * that we respond quickly when the process is quick, and don't | |
4611 * consume too much overhead when it's slow. */ | |
4612 if (delay < 50) | |
4613 delay += 10; | |
4614 } | |
4615 | |
4616 /* Close the pipe */ | |
4617 CloseHandle(g_hChildStd_OUT_Rd); | |
4618 if (g_hChildStd_IN_Wr != NULL) | |
4619 CloseHandle(g_hChildStd_IN_Wr); | |
4620 | |
4621 WaitForSingleObject(pi.hProcess, INFINITE); | |
4622 | |
4623 /* Get the command exit code */ | |
4624 GetExitCodeProcess(pi.hProcess, &ret); | |
4625 | |
4626 if (options & SHELL_READ) | |
4627 { | |
4628 if (ga.ga_len > 0) | |
4629 { | |
4630 append_ga_line(&ga); | |
4631 /* remember that the NL was missing */ | |
4632 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; | |
4633 } | |
4634 else | |
4635 curbuf->b_no_eol_lnum = 0; | |
4636 ga_clear(&ga); | |
4637 } | |
4638 | |
4639 /* Close the handles to the subprocess, so that it goes away */ | |
4640 CloseHandle(pi.hThread); | |
4641 CloseHandle(pi.hProcess); | |
4642 | |
4643 return ret; | |
4644 } | |
4645 | |
4646 static int | |
4647 mch_system(char *cmd, int options) | |
4648 { | |
4649 /* if we can pipe and the shelltemp option is off */ | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4650 if (!p_stmp) |
2935 | 4651 return mch_system_piped(cmd, options); |
4652 else | |
4653 return mch_system_classic(cmd, options); | |
4654 } | |
7 | 4655 #else |
4656 | |
5547 | 4657 # ifdef FEAT_MBYTE |
4658 static int | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
4659 mch_system(char *cmd, int options) |
5547 | 4660 { |
4661 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
4662 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4663 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
5547 | 4664 if (wcmd != NULL) |
4665 { | |
4666 int ret = _wsystem(wcmd); | |
4667 vim_free(wcmd); | |
4668 return ret; | |
4669 } | |
4670 } | |
4671 return system(cmd); | |
4672 } | |
4673 # else | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
4674 # define mch_system(c, o) system(c) |
5547 | 4675 # endif |
7 | 4676 |
4677 #endif | |
4678 | |
4679 /* | |
4680 * Either execute a command by calling the shell or start a new shell | |
4681 */ | |
4682 int | |
4683 mch_call_shell( | |
26 | 4684 char_u *cmd, |
4685 int options) /* SHELL_*, see vim.h */ | |
7 | 4686 { |
4687 int x = 0; | |
4688 int tmode = cur_tmode; | |
4689 #ifdef FEAT_TITLE | |
6293 | 4690 char szShellTitle[512]; |
6290 | 4691 # ifdef FEAT_MBYTE |
6293 | 4692 int did_set_title = FALSE; |
4693 | |
6290 | 4694 /* Change the title to reflect that we are in a subshell. */ |
4695 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
4696 { | |
4697 WCHAR szShellTitle[512]; | |
4698 | |
4699 if (GetConsoleTitleW(szShellTitle, | |
4700 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0) | |
4701 { | |
4702 if (cmd == NULL) | |
4703 wcscat(szShellTitle, L" :sh"); | |
4704 else | |
4705 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4706 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL); |
6290 | 4707 |
4708 if (wn != NULL) | |
4709 { | |
4710 wcscat(szShellTitle, L" - !"); | |
4711 if ((wcslen(szShellTitle) + wcslen(wn) < | |
4712 sizeof(szShellTitle)/sizeof(WCHAR))) | |
4713 wcscat(szShellTitle, wn); | |
4714 SetConsoleTitleW(szShellTitle); | |
4715 vim_free(wn); | |
6293 | 4716 did_set_title = TRUE; |
6290 | 4717 } |
4718 } | |
4719 } | |
4720 } | |
6293 | 4721 if (!did_set_title) |
4722 # endif | |
4723 /* Change the title to reflect that we are in a subshell. */ | |
4724 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0) | |
7 | 4725 { |
6293 | 4726 if (cmd == NULL) |
4727 strcat(szShellTitle, " :sh"); | |
4728 else | |
4729 { | |
4730 strcat(szShellTitle, " - !"); | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4731 if ((strlen(szShellTitle) + strlen((char *)cmd) |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4732 < sizeof(szShellTitle))) |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4733 strcat(szShellTitle, (char *)cmd); |
6293 | 4734 } |
4735 SetConsoleTitle(szShellTitle); | |
7 | 4736 } |
4737 #endif | |
4738 | |
4739 out_flush(); | |
4740 | |
4741 #ifdef MCH_WRITE_DUMP | |
4742 if (fdDump) | |
4743 { | |
4744 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options); | |
4745 fflush(fdDump); | |
4746 } | |
4747 #endif | |
4748 | |
4749 /* | |
4750 * Catch all deadly signals while running the external command, because a | |
4751 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us. | |
4752 */ | |
4753 signal(SIGINT, SIG_IGN); | |
4754 #if defined(__GNUC__) && !defined(__MINGW32__) | |
4755 signal(SIGKILL, SIG_IGN); | |
4756 #else | |
4757 signal(SIGBREAK, SIG_IGN); | |
4758 #endif | |
4759 signal(SIGILL, SIG_IGN); | |
4760 signal(SIGFPE, SIG_IGN); | |
4761 signal(SIGSEGV, SIG_IGN); | |
4762 signal(SIGTERM, SIG_IGN); | |
4763 signal(SIGABRT, SIG_IGN); | |
4764 | |
4765 if (options & SHELL_COOKED) | |
4766 settmode(TMODE_COOK); /* set to normal mode */ | |
4767 | |
4768 if (cmd == NULL) | |
4769 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4770 x = mch_system((char *)p_sh, options); |
7 | 4771 } |
4772 else | |
4773 { | |
4774 /* we use "command" or "cmd" to start the shell; slow but easy */ | |
3363 | 4775 char_u *newcmd = NULL; |
4776 char_u *cmdbase = cmd; | |
4777 long_u cmdlen; | |
3361 | 4778 |
4779 /* Skip a leading ", ( and "(. */ | |
4780 if (*cmdbase == '"' ) | |
4781 ++cmdbase; | |
4782 if (*cmdbase == '(') | |
4783 ++cmdbase; | |
4784 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4785 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5])) |
3361 | 4786 { |
4787 STARTUPINFO si; | |
4788 PROCESS_INFORMATION pi; | |
4789 DWORD flags = CREATE_NEW_CONSOLE; | |
11230
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4790 INT n_show_cmd = SW_SHOWNORMAL; |
3361 | 4791 char_u *p; |
4792 | |
5627 | 4793 ZeroMemory(&si, sizeof(si)); |
3361 | 4794 si.cb = sizeof(si); |
4795 si.lpReserved = NULL; | |
4796 si.lpDesktop = NULL; | |
4797 si.lpTitle = NULL; | |
4798 si.dwFlags = 0; | |
4799 si.cbReserved2 = 0; | |
4800 si.lpReserved2 = NULL; | |
4801 | |
4802 cmdbase = skipwhite(cmdbase + 5); | |
4803 if ((STRNICMP(cmdbase, "/min", 4) == 0) | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4804 && VIM_ISWHITE(cmdbase[4])) |
3361 | 4805 { |
4806 cmdbase = skipwhite(cmdbase + 4); | |
4807 si.dwFlags = STARTF_USESHOWWINDOW; | |
4808 si.wShowWindow = SW_SHOWMINNOACTIVE; | |
11230
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4809 n_show_cmd = SW_SHOWMINNOACTIVE; |
3361 | 4810 } |
4811 else if ((STRNICMP(cmdbase, "/b", 2) == 0) | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4812 && VIM_ISWHITE(cmdbase[2])) |
3361 | 4813 { |
4814 cmdbase = skipwhite(cmdbase + 2); | |
4815 flags = CREATE_NO_WINDOW; | |
4816 si.dwFlags = STARTF_USESTDHANDLES; | |
4817 si.hStdInput = CreateFile("\\\\.\\NUL", // File name | |
3363 | 4818 GENERIC_READ, // Access flags |
3361 | 4819 0, // Share flags |
3363 | 4820 NULL, // Security att. |
4821 OPEN_EXISTING, // Open flags | |
4822 FILE_ATTRIBUTE_NORMAL, // File att. | |
4823 NULL); // Temp file | |
3361 | 4824 si.hStdOutput = si.hStdInput; |
4825 si.hStdError = si.hStdInput; | |
4826 } | |
4827 | |
4828 /* Remove a trailing ", ) and )" if they have a match | |
4829 * at the start of the command. */ | |
4830 if (cmdbase > cmd) | |
4831 { | |
4832 p = cmdbase + STRLEN(cmdbase); | |
4833 if (p > cmdbase && p[-1] == '"' && *cmd == '"') | |
4834 *--p = NUL; | |
4835 if (p > cmdbase && p[-1] == ')' | |
4836 && (*cmd =='(' || cmd[1] == '(')) | |
4837 *--p = NUL; | |
4838 } | |
4839 | |
3363 | 4840 newcmd = cmdbase; |
4841 unescape_shellxquote(cmdbase, p_sxe); | |
4842 | |
3361 | 4843 /* |
3363 | 4844 * If creating new console, arguments are passed to the |
4845 * 'cmd.exe' as-is. If it's not, arguments are not treated | |
4846 * correctly for current 'cmd.exe'. So unescape characters in | |
4847 * shellxescape except '|' for avoiding to be treated as | |
4848 * argument to them. Pass the arguments to sub-shell. | |
3361 | 4849 */ |
3363 | 4850 if (flags != CREATE_NEW_CONSOLE) |
4851 { | |
4852 char_u *subcmd; | |
3367 | 4853 char_u *cmd_shell = mch_getenv("COMSPEC"); |
4854 | |
4855 if (cmd_shell == NULL || *cmd_shell == NUL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4856 cmd_shell = (char_u *)default_shell(); |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4857 |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4858 subcmd = vim_strsave_escaped_ext(cmdbase, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4859 (char_u *)"|", '^', FALSE); |
3363 | 4860 if (subcmd != NULL) |
4861 { | |
4862 /* make "cmd.exe /c arguments" */ | |
4863 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5; | |
4864 newcmd = lalloc(cmdlen, TRUE); | |
4865 if (newcmd != NULL) | |
4866 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s", | |
3367 | 4867 cmd_shell, subcmd); |
3363 | 4868 else |
4869 newcmd = cmdbase; | |
3367 | 4870 vim_free(subcmd); |
3363 | 4871 } |
4872 } | |
3361 | 4873 |
4874 /* | |
4875 * Now, start the command as a process, so that it doesn't | |
4876 * inherit our handles which causes unpleasant dangling swap | |
4877 * files if we exit before the spawned process | |
4878 */ | |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4879 if (vim_create_process((char *)newcmd, FALSE, flags, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
4880 &si, &pi, NULL, NULL)) |
3361 | 4881 x = 0; |
11230
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4882 else if (vim_shell_execute((char *)newcmd, n_show_cmd) |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4883 > (HINSTANCE)32) |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4884 x = 0; |
3361 | 4885 else |
4886 { | |
4887 x = -1; | |
4888 #ifdef FEAT_GUI_W32 | |
4889 EMSG(_("E371: Command not found")); | |
4890 #endif | |
4891 } | |
3363 | 4892 |
4893 if (newcmd != cmdbase) | |
4894 vim_free(newcmd); | |
4895 | |
5627 | 4896 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL) |
3361 | 4897 { |
5627 | 4898 /* Close the handle to \\.\NUL created above. */ |
3361 | 4899 CloseHandle(si.hStdInput); |
4900 } | |
4901 /* Close the handles to the subprocess, so that it goes away */ | |
4902 CloseHandle(pi.hThread); | |
4903 CloseHandle(pi.hProcess); | |
4904 } | |
4905 else | |
4906 { | |
3363 | 4907 cmdlen = ( |
7 | 4908 #ifdef FEAT_GUI_W32 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4909 (!p_stmp ? 0 : STRLEN(vimrun_path)) + |
7 | 4910 #endif |
1569 | 4911 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10); |
4912 | |
3361 | 4913 newcmd = lalloc(cmdlen, TRUE); |
4914 if (newcmd != NULL) | |
7 | 4915 { |
4916 #if defined(FEAT_GUI_W32) | |
4917 if (need_vimrun_warning) | |
4918 { | |
10400
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4919 char *msg = _("VIMRUN.EXE not found in your $PATH.\n" |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4920 "External commands will not pause after completion.\n" |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4921 "See :help win32-vimrun for more information."); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4922 char *title = _("Vim Warning"); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4923 # ifdef FEAT_MBYTE |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4924 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4925 { |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4926 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4927 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4928 |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4929 if (wmsg != NULL && wtitle != NULL) |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4930 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4931 vim_free(wmsg); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4932 vim_free(wtitle); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4933 } |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4934 else |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4935 # endif |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4936 MessageBox(NULL, msg, title, MB_ICONWARNING); |
7 | 4937 need_vimrun_warning = FALSE; |
4938 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4939 if (!s_dont_use_vimrun && p_stmp) |
7 | 4940 /* Use vimrun to execute the command. It opens a console |
4941 * window, which can be closed without killing Vim. */ | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4942 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s", |
7 | 4943 vimrun_path, |
4944 (msg_silent != 0 || (options & SHELL_DOOUT)) | |
4945 ? "-s " : "", | |
4946 p_sh, p_shcf, cmd); | |
4947 else | |
4948 #endif | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4949 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", |
1569 | 4950 p_sh, p_shcf, cmd); |
7 | 4951 x = mch_system((char *)newcmd, options); |
3361 | 4952 vim_free(newcmd); |
7 | 4953 } |
4954 } | |
4955 } | |
4956 | |
4957 if (tmode == TMODE_RAW) | |
4958 settmode(TMODE_RAW); /* set to raw mode */ | |
4959 | |
4960 /* Print the return value, unless "vimrun" was used. */ | |
4961 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent | |
4962 #if defined(FEAT_GUI_W32) | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4963 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) |
7 | 4964 #endif |
4965 ) | |
4966 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4967 smsg((char_u *)_("shell returned %d"), x); |
7 | 4968 msg_putchar('\n'); |
4969 } | |
4970 #ifdef FEAT_TITLE | |
4971 resettitle(); | |
4972 #endif | |
4973 | |
4974 signal(SIGINT, SIG_DFL); | |
4975 #if defined(__GNUC__) && !defined(__MINGW32__) | |
4976 signal(SIGKILL, SIG_DFL); | |
4977 #else | |
4978 signal(SIGBREAK, SIG_DFL); | |
4979 #endif | |
4980 signal(SIGILL, SIG_DFL); | |
4981 signal(SIGFPE, SIG_DFL); | |
4982 signal(SIGSEGV, SIG_DFL); | |
4983 signal(SIGTERM, SIG_DFL); | |
4984 signal(SIGABRT, SIG_DFL); | |
4985 | |
4986 return x; | |
4987 } | |
4988 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
4989 #if defined(FEAT_JOB_CHANNEL) || defined(PROTO) |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4990 static HANDLE |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4991 job_io_file_open( |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4992 char_u *fname, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4993 DWORD dwDesiredAccess, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4994 DWORD dwShareMode, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4995 LPSECURITY_ATTRIBUTES lpSecurityAttributes, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4996 DWORD dwCreationDisposition, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4997 DWORD dwFlagsAndAttributes) |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4998 { |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4999 HANDLE h; |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5000 # ifdef FEAT_MBYTE |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5001 WCHAR *wn = NULL; |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5002 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5003 { |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5004 wn = enc_to_utf16(fname, NULL); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5005 if (wn != NULL) |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5006 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5007 h = CreateFileW(wn, dwDesiredAccess, dwShareMode, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5008 lpSecurityAttributes, dwCreationDisposition, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5009 dwFlagsAndAttributes, NULL); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5010 vim_free(wn); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5011 } |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5012 } |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5013 if (wn == NULL) |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5014 # endif |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5015 h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5016 lpSecurityAttributes, dwCreationDisposition, |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
5017 dwFlagsAndAttributes, NULL); |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5018 return h; |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5019 } |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5020 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5021 /* |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5022 * Turn the dictionary "env" into a NUL separated list that can be used as the |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5023 * environment argument of vim_create_process(). |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5024 */ |
12724
17c257dd2438
patch 8.0.1240: MS-Windows: term_start() does not support environment
Christian Brabandt <cb@256bit.org>
parents:
12140
diff
changeset
|
5025 void |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5026 win32_build_env(dict_T *env, garray_T *gap, int is_terminal) |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5027 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5028 hashitem_T *hi; |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5029 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0; |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5030 LPVOID base = GetEnvironmentStringsW(); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5031 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5032 /* for last \0 */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5033 if (ga_grow(gap, 1) == FAIL) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5034 return; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5035 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5036 if (base) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5037 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5038 WCHAR *p = (WCHAR*) base; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5039 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5040 /* for last \0 */ |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5041 if (ga_grow(gap, 1) == FAIL) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5042 return; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5043 |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5044 while (*p != 0 || *(p + 1) != 0) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5045 { |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5046 if (ga_grow(gap, 1) == OK) |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5047 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5048 p++; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5049 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5050 FreeEnvironmentStrings(base); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5051 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0'; |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5052 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5053 |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5054 if (env != NULL) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5055 { |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5056 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi) |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5057 { |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5058 if (!HASHITEM_EMPTY(hi)) |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5059 { |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5060 typval_T *item = &dict_lookup(hi)->di_tv; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5061 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5062 WCHAR *wval = enc_to_utf16(get_tv_string(item), NULL); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5063 --todo; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5064 if (wkey != NULL && wval != NULL) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5065 { |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5066 size_t n; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5067 size_t lkey = wcslen(wkey); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5068 size_t lval = wcslen(wval); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5069 |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5070 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5071 continue; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5072 for (n = 0; n < lkey; n++) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5073 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n]; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5074 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'='; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5075 for (n = 0; n < lval; n++) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5076 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n]; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5077 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0'; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5078 } |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5079 if (wkey != NULL) vim_free(wkey); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5080 if (wval != NULL) vim_free(wval); |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5081 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5082 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5083 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5084 |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5085 # ifdef FEAT_CLIENTSERVER |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5086 if (is_terminal) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5087 { |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5088 char_u *servername = get_vim_var_str(VV_SEND_SERVER); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5089 size_t lval = STRLEN(servername); |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5090 size_t n; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5091 |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5092 if (ga_grow(gap, (int)(14 + lval + 2)) == OK) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5093 { |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5094 for (n = 0; n < 15; n++) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5095 *((WCHAR*)gap->ga_data + gap->ga_len++) = |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5096 (WCHAR)"VIM_SERVERNAME="[n]; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5097 for (n = 0; n < lval; n++) |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5098 *((WCHAR*)gap->ga_data + gap->ga_len++) = |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5099 (WCHAR)servername[n]; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5100 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0'; |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5101 } |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5102 } |
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5103 # endif |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5104 } |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5105 |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5106 void |
11723
1922710ee8fa
patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents:
11230
diff
changeset
|
5107 mch_job_start(char *cmd, job_T *job, jobopt_T *options) |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5108 { |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5109 STARTUPINFO si; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5110 PROCESS_INFORMATION pi; |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5111 HANDLE jo; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5112 SECURITY_ATTRIBUTES saAttr; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5113 channel_T *channel = NULL; |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5114 HANDLE ifd[2]; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5115 HANDLE ofd[2]; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5116 HANDLE efd[2]; |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5117 garray_T ga; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5118 |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5119 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5120 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5121 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5122 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5123 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5124 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5125 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5126 |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5127 if (use_out_for_err && use_null_for_out) |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5128 use_null_for_err = TRUE; |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5129 |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5130 ifd[0] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5131 ifd[1] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5132 ofd[0] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5133 ofd[1] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5134 efd[0] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5135 efd[1] = INVALID_HANDLE_VALUE; |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5136 ga_init2(&ga, (int)sizeof(wchar_t), 500); |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5137 |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5138 jo = CreateJobObject(NULL, NULL); |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5139 if (jo == NULL) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5140 { |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5141 job->jv_status = JOB_FAILED; |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5142 goto failed; |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5143 } |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5144 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5145 if (options->jo_env != NULL) |
12907
32531a3eab1f
patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
5146 win32_build_env(options->jo_env, &ga, FALSE); |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5147 |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5148 ZeroMemory(&pi, sizeof(pi)); |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5149 ZeroMemory(&si, sizeof(si)); |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5150 si.cb = sizeof(si); |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5151 si.dwFlags |= STARTF_USESHOWWINDOW; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5152 si.wShowWindow = SW_HIDE; |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5153 |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5154 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5155 saAttr.bInheritHandle = TRUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5156 saAttr.lpSecurityDescriptor = NULL; |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5157 |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5158 if (use_file_for_in) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5159 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5160 char_u *fname = options->jo_io_name[PART_IN]; |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5161 |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5162 ifd[0] = job_io_file_open(fname, GENERIC_READ, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5163 FILE_SHARE_READ | FILE_SHARE_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5164 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL); |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5165 if (ifd[0] == INVALID_HANDLE_VALUE) |
8443
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5166 { |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5167 EMSG2(_(e_notopen), fname); |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5168 goto failed; |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
5169 } |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5170 } |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5171 else if (!use_null_for_in && |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5172 (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0) |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
5173 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0))) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5174 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5175 |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5176 if (use_file_for_out) |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5177 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5178 char_u *fname = options->jo_io_name[PART_OUT]; |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5179 |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5180 ofd[1] = job_io_file_open(fname, GENERIC_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5181 FILE_SHARE_READ | FILE_SHARE_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5182 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL); |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5183 if (ofd[1] == INVALID_HANDLE_VALUE) |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5184 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5185 EMSG2(_(e_notopen), fname); |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5186 goto failed; |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5187 } |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5188 } |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5189 else if (!use_null_for_out && |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5190 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0) |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
5191 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0))) |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5192 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
5193 |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5194 if (use_file_for_err) |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5195 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5196 char_u *fname = options->jo_io_name[PART_ERR]; |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5197 |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5198 efd[1] = job_io_file_open(fname, GENERIC_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5199 FILE_SHARE_READ | FILE_SHARE_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5200 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL); |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5201 if (efd[1] == INVALID_HANDLE_VALUE) |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5202 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5203 EMSG2(_(e_notopen), fname); |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5204 goto failed; |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5205 } |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5206 } |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5207 else if (!use_out_for_err && !use_null_for_err && |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5208 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0) |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
5209 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0))) |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5210 goto failed; |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5211 |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5212 si.dwFlags |= STARTF_USESTDHANDLES; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5213 si.hStdInput = ifd[0]; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5214 si.hStdOutput = ofd[1]; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5215 si.hStdError = use_out_for_err ? ofd[1] : efd[1]; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5216 |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5217 if (!use_null_for_in || !use_null_for_out || !use_null_for_err) |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5218 { |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5219 if (options->jo_set & JO_CHANNEL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5220 { |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5221 channel = options->jo_channel; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5222 if (channel != NULL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5223 ++channel->ch_refcount; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5224 } |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5225 else |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5226 channel = add_channel(); |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5227 if (channel == NULL) |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5228 goto failed; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5229 } |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5230 |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5231 if (!vim_create_process(cmd, TRUE, |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5232 CREATE_SUSPENDED | |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5233 CREATE_DEFAULT_ERROR_MODE | |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5234 CREATE_NEW_PROCESS_GROUP | |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5235 CREATE_UNICODE_ENVIRONMENT | |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5236 CREATE_NEW_CONSOLE, |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5237 &si, &pi, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5238 ga.ga_data, |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5239 (char *)options->jo_cwd)) |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5240 { |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5241 CloseHandle(jo); |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5242 job->jv_status = JOB_FAILED; |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5243 goto failed; |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5244 } |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5245 |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5246 ga_clear(&ga); |
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5247 |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5248 if (!AssignProcessToJobObject(jo, pi.hProcess)) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5249 { |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5250 /* if failing, switch the way to terminate |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5251 * process with TerminateProcess. */ |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5252 CloseHandle(jo); |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5253 jo = NULL; |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5254 } |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5255 ResumeThread(pi.hThread); |
8479
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
5256 CloseHandle(pi.hThread); |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5257 job->jv_proc_info = pi; |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5258 job->jv_job_object = jo; |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5259 job->jv_status = JOB_STARTED; |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5260 |
10060
cf9e550f17f6
commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5261 CloseHandle(ifd[0]); |
cf9e550f17f6
commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5262 CloseHandle(ofd[1]); |
cf9e550f17f6
commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5263 if (!use_out_for_err && !use_null_for_err) |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5264 CloseHandle(efd[1]); |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5265 |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5266 job->jv_channel = channel; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5267 if (channel != NULL) |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5268 { |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5269 channel_set_pipes(channel, |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5270 use_file_for_in || use_null_for_in |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5271 ? INVALID_FD : (sock_T)ifd[1], |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5272 use_file_for_out || use_null_for_out |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5273 ? INVALID_FD : (sock_T)ofd[0], |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5274 use_out_for_err || use_file_for_err || use_null_for_err |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5275 ? INVALID_FD : (sock_T)efd[0]); |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5276 channel_set_job(channel, job, options); |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5277 } |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5278 return; |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5279 |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5280 failed: |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5281 CloseHandle(ifd[0]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5282 CloseHandle(ofd[0]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5283 CloseHandle(efd[0]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5284 CloseHandle(ifd[1]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5285 CloseHandle(ofd[1]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5286 CloseHandle(efd[1]); |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5287 channel_unref(channel); |
12043
2796a2c9fc17
patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents:
12037
diff
changeset
|
5288 ga_clear(&ga); |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5289 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5290 |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5291 char * |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5292 mch_job_status(job_T *job) |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5293 { |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5294 DWORD dwExitCode = 0; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5295 |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5296 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5297 || dwExitCode != STILL_ACTIVE) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5298 { |
8176
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
5299 job->jv_exitval = (int)dwExitCode; |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10317
diff
changeset
|
5300 if (job->jv_status < JOB_ENDED) |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5301 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5302 ch_log(job->jv_channel, "Job ended"); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5303 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5304 } |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5305 return "dead"; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5306 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5307 return "run"; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5308 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5309 |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5310 job_T * |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5311 mch_detect_ended_job(job_T *job_list) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5312 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5313 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS]; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5314 job_T *jobArray[MAXIMUM_WAIT_OBJECTS]; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5315 job_T *job = job_list; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5316 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5317 while (job != NULL) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5318 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5319 DWORD n; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5320 DWORD result; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5321 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5322 for (n = 0; n < MAXIMUM_WAIT_OBJECTS |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5323 && job != NULL; job = job->jv_next) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5324 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5325 if (job->jv_status == JOB_STARTED) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5326 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5327 jobHandles[n] = job->jv_proc_info.hProcess; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5328 jobArray[n] = job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5329 ++n; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5330 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5331 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5332 if (n == 0) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5333 continue; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5334 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5335 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5336 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5337 job_T *wait_job = jobArray[result - WAIT_OBJECT_0]; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5338 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5339 if (STRCMP(mch_job_status(wait_job), "dead") == 0) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5340 return wait_job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5341 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5342 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5343 return NULL; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5344 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5345 |
10317
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5346 static BOOL |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5347 terminate_all(HANDLE process, int code) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5348 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5349 PROCESSENTRY32 pe; |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5350 HANDLE h = INVALID_HANDLE_VALUE; |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5351 DWORD pid = GetProcessId(process); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5352 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5353 if (pid != 0) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5354 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5355 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5356 if (h != INVALID_HANDLE_VALUE) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5357 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5358 pe.dwSize = sizeof(PROCESSENTRY32); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5359 if (!Process32First(h, &pe)) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5360 goto theend; |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5361 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5362 do |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5363 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5364 if (pe.th32ParentProcessID == pid) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5365 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5366 HANDLE ph = OpenProcess( |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5367 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5368 if (ph != NULL) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5369 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5370 terminate_all(ph, code); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5371 CloseHandle(ph); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5372 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5373 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5374 } while (Process32Next(h, &pe)); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5375 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5376 CloseHandle(h); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5377 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5378 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5379 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5380 theend: |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5381 return TerminateProcess(process, code); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5382 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5383 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5384 /* |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5385 * Send a (deadly) signal to "job". |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5386 * Return FAIL if it didn't work. |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5387 */ |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5388 int |
12037
85f0f557661e
patch 8.0.0899: function name mch_stop_job() is confusing
Christian Brabandt <cb@256bit.org>
parents:
12015
diff
changeset
|
5389 mch_signal_job(job_T *job, char_u *how) |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5390 { |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5391 int ret; |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5392 |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5393 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL) |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5394 { |
10317
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5395 /* deadly signal */ |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5396 if (job->jv_job_object != NULL) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5397 return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL; |
10317
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5398 return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5399 } |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5400 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5401 if (!AttachConsole(job->jv_proc_info.dwProcessId)) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5402 return FAIL; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5403 ret = GenerateConsoleCtrlEvent( |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5404 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT, |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5405 job->jv_proc_info.dwProcessId) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5406 ? OK : FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5407 FreeConsole(); |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5408 return ret; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5409 } |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5410 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5411 /* |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5412 * Clear the data related to "job". |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5413 */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5414 void |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5415 mch_clear_job(job_T *job) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5416 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5417 if (job->jv_status != JOB_FAILED) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5418 { |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5419 if (job->jv_job_object != NULL) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5420 CloseHandle(job->jv_job_object); |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5421 CloseHandle(job->jv_proc_info.hProcess); |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5422 } |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5423 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5424 #endif |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5425 |
7 | 5426 |
5427 #ifndef FEAT_GUI_W32 | |
5428 | |
5429 /* | |
5430 * Start termcap mode | |
5431 */ | |
5432 static void | |
5433 termcap_mode_start(void) | |
5434 { | |
5435 DWORD cmodein; | |
5436 | |
5437 if (g_fTermcapMode) | |
5438 return; | |
5439 | |
5440 SaveConsoleBuffer(&g_cbNonTermcap); | |
5441 | |
5442 if (g_cbTermcap.IsValid) | |
5443 { | |
5444 /* | |
5445 * We've been in termcap mode before. Restore certain screen | |
5446 * characteristics, including the buffer size and the window | |
5447 * size. Since we will be redrawing the screen, we don't need | |
5448 * to restore the actual contents of the buffer. | |
5449 */ | |
5450 RestoreConsoleBuffer(&g_cbTermcap, FALSE); | |
5451 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow); | |
5452 Rows = g_cbTermcap.Info.dwSize.Y; | |
5453 Columns = g_cbTermcap.Info.dwSize.X; | |
5454 } | |
5455 else | |
5456 { | |
5457 /* | |
5458 * This is our first time entering termcap mode. Clear the console | |
5459 * screen buffer, and resize the buffer to match the current window | |
5460 * size. We will use this as the size of our editing environment. | |
5461 */ | |
5462 ClearConsoleBuffer(g_attrCurrent); | |
5463 ResizeConBufAndWindow(g_hConOut, Columns, Rows); | |
5464 } | |
5465 | |
5466 #ifdef FEAT_TITLE | |
5467 resettitle(); | |
5468 #endif | |
5469 | |
5470 GetConsoleMode(g_hConIn, &cmodein); | |
5471 #ifdef FEAT_MOUSE | |
5472 if (g_fMouseActive) | |
5473 cmodein |= ENABLE_MOUSE_INPUT; | |
5474 else | |
5475 cmodein &= ~ENABLE_MOUSE_INPUT; | |
5476 #endif | |
5477 cmodein |= ENABLE_WINDOW_INPUT; | |
5478 SetConsoleMode(g_hConIn, cmodein); | |
5479 | |
5480 redraw_later_clear(); | |
5481 g_fTermcapMode = TRUE; | |
5482 } | |
5483 | |
5484 | |
5485 /* | |
5486 * End termcap mode | |
5487 */ | |
5488 static void | |
5489 termcap_mode_end(void) | |
5490 { | |
5491 DWORD cmodein; | |
5492 ConsoleBuffer *cb; | |
5493 COORD coord; | |
5494 DWORD dwDummy; | |
5495 | |
5496 if (!g_fTermcapMode) | |
5497 return; | |
5498 | |
5499 SaveConsoleBuffer(&g_cbTermcap); | |
5500 | |
5501 GetConsoleMode(g_hConIn, &cmodein); | |
5502 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT); | |
5503 SetConsoleMode(g_hConIn, cmodein); | |
5504 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5505 #ifdef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5506 cb = exiting ? &g_cbOrig : &g_cbNonTermcap; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5507 #else |
7 | 5508 cb = &g_cbNonTermcap; |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5509 #endif |
7 | 5510 RestoreConsoleBuffer(cb, p_rs); |
5511 SetConsoleCursorInfo(g_hConOut, &g_cci); | |
5512 | |
5513 if (p_rs || exiting) | |
5514 { | |
5515 /* | |
5516 * Clear anything that happens to be on the current line. | |
5517 */ | |
5518 coord.X = 0; | |
5519 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1)); | |
5520 FillConsoleOutputCharacter(g_hConOut, ' ', | |
5521 cb->Info.dwSize.X, coord, &dwDummy); | |
5522 /* | |
5523 * The following is just for aesthetics. If we are exiting without | |
5524 * restoring the screen, then we want to have a prompt string | |
5525 * appear at the bottom line. However, the command interpreter | |
5526 * seems to always advance the cursor one line before displaying | |
5527 * the prompt string, which causes the screen to scroll. To | |
5528 * counter this, move the cursor up one line before exiting. | |
5529 */ | |
5530 if (exiting && !p_rs) | |
5531 coord.Y--; | |
5532 /* | |
5533 * Position the cursor at the leftmost column of the desired row. | |
5534 */ | |
5535 SetConsoleCursorPosition(g_hConOut, coord); | |
5536 } | |
5537 | |
5538 g_fTermcapMode = FALSE; | |
5539 } | |
5540 #endif /* FEAT_GUI_W32 */ | |
5541 | |
5542 | |
5543 #ifdef FEAT_GUI_W32 | |
5544 void | |
5545 mch_write( | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
5546 char_u *s UNUSED, |
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
5547 int len UNUSED) |
7 | 5548 { |
5549 /* never used */ | |
5550 } | |
5551 | |
5552 #else | |
5553 | |
5554 /* | |
5555 * clear `n' chars, starting from `coord' | |
5556 */ | |
5557 static void | |
5558 clear_chars( | |
5559 COORD coord, | |
5560 DWORD n) | |
5561 { | |
5562 DWORD dwDummy; | |
5563 | |
5564 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy); | |
5565 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy); | |
5566 } | |
5567 | |
5568 | |
5569 /* | |
5570 * Clear the screen | |
5571 */ | |
5572 static void | |
5573 clear_screen(void) | |
5574 { | |
5575 g_coord.X = g_coord.Y = 0; | |
5576 clear_chars(g_coord, Rows * Columns); | |
5577 } | |
5578 | |
5579 | |
5580 /* | |
5581 * Clear to end of display | |
5582 */ | |
5583 static void | |
5584 clear_to_end_of_display(void) | |
5585 { | |
5586 clear_chars(g_coord, (Rows - g_coord.Y - 1) | |
5587 * Columns + (Columns - g_coord.X)); | |
5588 } | |
5589 | |
5590 | |
5591 /* | |
5592 * Clear to end of line | |
5593 */ | |
5594 static void | |
5595 clear_to_end_of_line(void) | |
5596 { | |
5597 clear_chars(g_coord, Columns - g_coord.X); | |
5598 } | |
5599 | |
5600 | |
5601 /* | |
5602 * Scroll the scroll region up by `cLines' lines | |
5603 */ | |
5604 static void | |
26 | 5605 scroll(unsigned cLines) |
7 | 5606 { |
5607 COORD oldcoord = g_coord; | |
5608 | |
5609 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1); | |
5610 delete_lines(cLines); | |
5611 | |
5612 g_coord = oldcoord; | |
5613 } | |
5614 | |
5615 | |
5616 /* | |
5617 * Set the scroll region | |
5618 */ | |
5619 static void | |
5620 set_scroll_region( | |
5621 unsigned left, | |
5622 unsigned top, | |
5623 unsigned right, | |
5624 unsigned bottom) | |
5625 { | |
5626 if (left >= right | |
5627 || top >= bottom | |
5628 || right > (unsigned) Columns - 1 | |
5629 || bottom > (unsigned) Rows - 1) | |
5630 return; | |
5631 | |
5632 g_srScrollRegion.Left = left; | |
5633 g_srScrollRegion.Top = top; | |
5634 g_srScrollRegion.Right = right; | |
5635 g_srScrollRegion.Bottom = bottom; | |
5636 } | |
5637 | |
5638 | |
5639 /* | |
5640 * Insert `cLines' lines at the current cursor position | |
5641 */ | |
5642 static void | |
26 | 5643 insert_lines(unsigned cLines) |
7 | 5644 { |
5645 SMALL_RECT source; | |
5646 COORD dest; | |
5647 CHAR_INFO fill; | |
5648 | |
5649 dest.X = 0; | |
5650 dest.Y = g_coord.Y + cLines; | |
5651 | |
5652 source.Left = 0; | |
5653 source.Top = g_coord.Y; | |
5654 source.Right = g_srScrollRegion.Right; | |
5655 source.Bottom = g_srScrollRegion.Bottom - cLines; | |
5656 | |
5657 fill.Char.AsciiChar = ' '; | |
5658 fill.Attributes = g_attrCurrent; | |
5659 | |
5660 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill); | |
5661 | |
5662 /* Here we have to deal with a win32 console flake: If the scroll | |
5663 * region looks like abc and we scroll c to a and fill with d we get | |
5664 * cbd... if we scroll block c one line at a time to a, we get cdd... | |
5665 * vim expects cdd consistently... So we have to deal with that | |
5666 * here... (this also occurs scrolling the same way in the other | |
5667 * direction). */ | |
5668 | |
5669 if (source.Bottom < dest.Y) | |
5670 { | |
5671 COORD coord; | |
5672 | |
5673 coord.X = 0; | |
5674 coord.Y = source.Bottom; | |
5675 clear_chars(coord, Columns * (dest.Y - source.Bottom)); | |
5676 } | |
5677 } | |
5678 | |
5679 | |
5680 /* | |
5681 * Delete `cLines' lines at the current cursor position | |
5682 */ | |
5683 static void | |
26 | 5684 delete_lines(unsigned cLines) |
7 | 5685 { |
5686 SMALL_RECT source; | |
5687 COORD dest; | |
5688 CHAR_INFO fill; | |
5689 int nb; | |
5690 | |
5691 dest.X = 0; | |
5692 dest.Y = g_coord.Y; | |
5693 | |
5694 source.Left = 0; | |
5695 source.Top = g_coord.Y + cLines; | |
5696 source.Right = g_srScrollRegion.Right; | |
5697 source.Bottom = g_srScrollRegion.Bottom; | |
5698 | |
5699 fill.Char.AsciiChar = ' '; | |
5700 fill.Attributes = g_attrCurrent; | |
5701 | |
5702 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill); | |
5703 | |
5704 /* Here we have to deal with a win32 console flake: If the scroll | |
5705 * region looks like abc and we scroll c to a and fill with d we get | |
5706 * cbd... if we scroll block c one line at a time to a, we get cdd... | |
5707 * vim expects cdd consistently... So we have to deal with that | |
5708 * here... (this also occurs scrolling the same way in the other | |
5709 * direction). */ | |
5710 | |
5711 nb = dest.Y + (source.Bottom - source.Top) + 1; | |
5712 | |
5713 if (nb < source.Top) | |
5714 { | |
5715 COORD coord; | |
5716 | |
5717 coord.X = 0; | |
5718 coord.Y = nb; | |
5719 clear_chars(coord, Columns * (source.Top - nb)); | |
5720 } | |
5721 } | |
5722 | |
5723 | |
5724 /* | |
5725 * Set the cursor position | |
5726 */ | |
5727 static void | |
5728 gotoxy( | |
5729 unsigned x, | |
5730 unsigned y) | |
5731 { | |
5732 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows) | |
5733 return; | |
5734 | |
5735 /* external cursor coords are 1-based; internal are 0-based */ | |
5736 g_coord.X = x - 1; | |
5737 g_coord.Y = y - 1; | |
5738 SetConsoleCursorPosition(g_hConOut, g_coord); | |
5739 } | |
5740 | |
5741 | |
5742 /* | |
5743 * Set the current text attribute = (foreground | background) | |
5744 * See ../doc/os_win32.txt for the numbers. | |
5745 */ | |
5746 static void | |
26 | 5747 textattr(WORD wAttr) |
7 | 5748 { |
6710 | 5749 g_attrCurrent = wAttr & 0xff; |
7 | 5750 |
5751 SetConsoleTextAttribute(g_hConOut, wAttr); | |
5752 } | |
5753 | |
5754 | |
5755 static void | |
26 | 5756 textcolor(WORD wAttr) |
7 | 5757 { |
6710 | 5758 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f); |
7 | 5759 |
5760 SetConsoleTextAttribute(g_hConOut, g_attrCurrent); | |
5761 } | |
5762 | |
5763 | |
5764 static void | |
26 | 5765 textbackground(WORD wAttr) |
7 | 5766 { |
6710 | 5767 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4); |
7 | 5768 |
5769 SetConsoleTextAttribute(g_hConOut, g_attrCurrent); | |
5770 } | |
5771 | |
5772 | |
5773 /* | |
5774 * restore the default text attribute (whatever we started with) | |
5775 */ | |
5776 static void | |
26 | 5777 normvideo(void) |
7 | 5778 { |
5779 textattr(g_attrDefault); | |
5780 } | |
5781 | |
5782 | |
5783 static WORD g_attrPreStandout = 0; | |
5784 | |
5785 /* | |
5786 * Make the text standout, by brightening it | |
5787 */ | |
5788 static void | |
5789 standout(void) | |
5790 { | |
5791 g_attrPreStandout = g_attrCurrent; | |
5792 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY)); | |
5793 } | |
5794 | |
5795 | |
5796 /* | |
5797 * Turn off standout mode | |
5798 */ | |
5799 static void | |
26 | 5800 standend(void) |
7 | 5801 { |
5802 if (g_attrPreStandout) | |
5803 { | |
5804 textattr(g_attrPreStandout); | |
5805 g_attrPreStandout = 0; | |
5806 } | |
5807 } | |
5808 | |
5809 | |
5810 /* | |
1199 | 5811 * Set normal fg/bg color, based on T_ME. Called when t_me has been set. |
7 | 5812 */ |
5813 void | |
26 | 5814 mch_set_normal_colors(void) |
7 | 5815 { |
5816 char_u *p; | |
5817 int n; | |
5818 | |
5819 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1; | |
5820 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1; | |
5821 if (T_ME[0] == ESC && T_ME[1] == '|') | |
5822 { | |
5823 p = T_ME + 2; | |
5824 n = getdigits(&p); | |
5825 if (*p == 'm' && n > 0) | |
5826 { | |
5827 cterm_normal_fg_color = (n & 0xf) + 1; | |
5828 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1; | |
5829 } | |
5830 } | |
5831 } | |
5832 | |
5833 | |
5834 /* | |
5835 * visual bell: flash the screen | |
5836 */ | |
5837 static void | |
26 | 5838 visual_bell(void) |
7 | 5839 { |
5840 COORD coordOrigin = {0, 0}; | |
5841 WORD attrFlash = ~g_attrCurrent & 0xff; | |
5842 | |
5843 DWORD dwDummy; | |
5844 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD)); | |
5845 | |
5846 if (oldattrs == NULL) | |
5847 return; | |
5848 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns, | |
5849 coordOrigin, &dwDummy); | |
5850 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns, | |
5851 coordOrigin, &dwDummy); | |
5852 | |
5853 Sleep(15); /* wait for 15 msec */ | |
5854 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns, | |
5855 coordOrigin, &dwDummy); | |
5856 vim_free(oldattrs); | |
5857 } | |
5858 | |
5859 | |
5860 /* | |
5861 * Make the cursor visible or invisible | |
5862 */ | |
5863 static void | |
26 | 5864 cursor_visible(BOOL fVisible) |
7 | 5865 { |
5866 s_cursor_visible = fVisible; | |
5867 #ifdef MCH_CURSOR_SHAPE | |
5868 mch_update_cursor(); | |
5869 #endif | |
5870 } | |
5871 | |
5872 | |
5873 /* | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
5874 * Write "cbToWrite" bytes in `pchBuf' to the screen. |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5875 * Returns the number of bytes actually written (at least one). |
7 | 5876 */ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5877 static DWORD |
7 | 5878 write_chars( |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5879 char_u *pchBuf, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5880 DWORD cbToWrite) |
7 | 5881 { |
5882 COORD coord = g_coord; | |
5883 DWORD written; | |
5884 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5885 #ifdef FEAT_MBYTE |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5886 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5887 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5888 static WCHAR *unicodebuf = NULL; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5889 static int unibuflen = 0; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5890 int length; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5891 DWORD n, cchwritten, cells; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5892 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5893 length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5894 if (unicodebuf == NULL || length > unibuflen) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5895 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5896 vim_free(unicodebuf); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5897 unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5898 unibuflen = length; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5899 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5900 MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5901 unicodebuf, unibuflen); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5902 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5903 cells = mb_string2cells(pchBuf, cbToWrite); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5904 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5905 coord, &written); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5906 /* When writing fails or didn't write a single character, pretend one |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5907 * character was written, otherwise we get stuck. */ |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5908 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5909 coord, &cchwritten) == 0 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5910 || cchwritten == 0) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5911 cchwritten = 1; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5912 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5913 if (cchwritten == length) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5914 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5915 written = cbToWrite; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5916 g_coord.X += (SHORT)cells; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5917 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5918 else |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5919 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5920 char_u *p = pchBuf; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5921 for (n = 0; n < cchwritten; n++) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11071
diff
changeset
|
5922 MB_CPTR_ADV(p); |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5923 written = p - pchBuf; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5924 g_coord.X += (SHORT)mb_string2cells(pchBuf, written); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5925 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5926 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5927 else |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5928 #endif |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5929 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5930 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5931 coord, &written); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5932 /* When writing fails or didn't write a single character, pretend one |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5933 * character was written, otherwise we get stuck. */ |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5934 if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5935 coord, &written) == 0 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5936 || written == 0) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5937 written = 1; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5938 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5939 g_coord.X += (SHORT) written; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5940 } |
7 | 5941 |
5942 while (g_coord.X > g_srScrollRegion.Right) | |
5943 { | |
5944 g_coord.X -= (SHORT) Columns; | |
5945 if (g_coord.Y < g_srScrollRegion.Bottom) | |
5946 g_coord.Y++; | |
5947 } | |
5948 | |
5949 gotoxy(g_coord.X + 1, g_coord.Y + 1); | |
5950 | |
5951 return written; | |
5952 } | |
5953 | |
5954 | |
5955 /* | |
5956 * mch_write(): write the output buffer to the screen, translating ESC | |
5957 * sequences into calls to console output routines. | |
5958 */ | |
5959 void | |
5960 mch_write( | |
5961 char_u *s, | |
5962 int len) | |
5963 { | |
5964 s[len] = NUL; | |
5965 | |
5966 if (!term_console) | |
5967 { | |
5968 write(1, s, (unsigned)len); | |
5969 return; | |
5970 } | |
5971 | |
5972 /* translate ESC | sequences into faked bios calls */ | |
5973 while (len--) | |
5974 { | |
5975 /* optimization: use one single write_chars for runs of text, | |
5976 * rather than once per character It ain't curses, but it helps. */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
5977 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033"); |
7 | 5978 |
5979 if (p_wd) | |
5980 { | |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
5981 WaitForChar(p_wd, FALSE); |
7 | 5982 if (prefix != 0) |
5983 prefix = 1; | |
5984 } | |
5985 | |
5986 if (prefix != 0) | |
5987 { | |
5988 DWORD nWritten; | |
5989 | |
5990 nWritten = write_chars(s, prefix); | |
5991 #ifdef MCH_WRITE_DUMP | |
5992 if (fdDump) | |
5993 { | |
5994 fputc('>', fdDump); | |
5995 fwrite(s, sizeof(char_u), nWritten, fdDump); | |
5996 fputs("<\n", fdDump); | |
5997 } | |
5998 #endif | |
5999 len -= (nWritten - 1); | |
6000 s += nWritten; | |
6001 } | |
6002 else if (s[0] == '\n') | |
6003 { | |
6004 /* \n, newline: go to the beginning of the next line or scroll */ | |
6005 if (g_coord.Y == g_srScrollRegion.Bottom) | |
6006 { | |
6007 scroll(1); | |
6008 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1); | |
6009 } | |
6010 else | |
6011 { | |
6012 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2); | |
6013 } | |
6014 #ifdef MCH_WRITE_DUMP | |
6015 if (fdDump) | |
6016 fputs("\\n\n", fdDump); | |
6017 #endif | |
6018 s++; | |
6019 } | |
6020 else if (s[0] == '\r') | |
6021 { | |
6022 /* \r, carriage return: go to beginning of line */ | |
6023 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1); | |
6024 #ifdef MCH_WRITE_DUMP | |
6025 if (fdDump) | |
6026 fputs("\\r\n", fdDump); | |
6027 #endif | |
6028 s++; | |
6029 } | |
6030 else if (s[0] == '\b') | |
6031 { | |
6032 /* \b, backspace: move cursor one position left */ | |
6033 if (g_coord.X > g_srScrollRegion.Left) | |
6034 g_coord.X--; | |
6035 else if (g_coord.Y > g_srScrollRegion.Top) | |
6036 { | |
6037 g_coord.X = g_srScrollRegion.Right; | |
6038 g_coord.Y--; | |
6039 } | |
6040 gotoxy(g_coord.X + 1, g_coord.Y + 1); | |
6041 #ifdef MCH_WRITE_DUMP | |
6042 if (fdDump) | |
6043 fputs("\\b\n", fdDump); | |
6044 #endif | |
6045 s++; | |
6046 } | |
6047 else if (s[0] == '\a') | |
6048 { | |
6049 /* \a, bell */ | |
6050 MessageBeep(0xFFFFFFFF); | |
6051 #ifdef MCH_WRITE_DUMP | |
6052 if (fdDump) | |
6053 fputs("\\a\n", fdDump); | |
6054 #endif | |
6055 s++; | |
6056 } | |
6057 else if (s[0] == ESC && len >= 3-1 && s[1] == '|') | |
6058 { | |
6059 #ifdef MCH_WRITE_DUMP | |
24 | 6060 char_u *old_s = s; |
7 | 6061 #endif |
24 | 6062 char_u *p; |
6063 int arg1 = 0, arg2 = 0; | |
7 | 6064 |
6065 switch (s[2]) | |
6066 { | |
6067 /* one or two numeric arguments, separated by ';' */ | |
6068 | |
6069 case '0': case '1': case '2': case '3': case '4': | |
6070 case '5': case '6': case '7': case '8': case '9': | |
6071 p = s + 2; | |
6072 arg1 = getdigits(&p); /* no check for length! */ | |
6073 if (p > s + len) | |
6074 break; | |
6075 | |
6076 if (*p == ';') | |
6077 { | |
6078 ++p; | |
6079 arg2 = getdigits(&p); /* no check for length! */ | |
6080 if (p > s + len) | |
6081 break; | |
6082 | |
6083 if (*p == 'H') | |
6084 gotoxy(arg2, arg1); | |
6085 else if (*p == 'r') | |
6086 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1); | |
6087 } | |
6088 else if (*p == 'A') | |
6089 { | |
6090 /* move cursor up arg1 lines in same column */ | |
6091 gotoxy(g_coord.X + 1, | |
6092 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1); | |
6093 } | |
6094 else if (*p == 'C') | |
6095 { | |
6096 /* move cursor right arg1 columns in same line */ | |
6097 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1, | |
6098 g_coord.Y + 1); | |
6099 } | |
6100 else if (*p == 'H') | |
6101 { | |
6102 gotoxy(1, arg1); | |
6103 } | |
6104 else if (*p == 'L') | |
6105 { | |
6106 insert_lines(arg1); | |
6107 } | |
6108 else if (*p == 'm') | |
6109 { | |
6110 if (arg1 == 0) | |
6111 normvideo(); | |
6112 else | |
6113 textattr((WORD) arg1); | |
6114 } | |
6115 else if (*p == 'f') | |
6116 { | |
6117 textcolor((WORD) arg1); | |
6118 } | |
6119 else if (*p == 'b') | |
6120 { | |
6121 textbackground((WORD) arg1); | |
6122 } | |
6123 else if (*p == 'M') | |
6124 { | |
6125 delete_lines(arg1); | |
6126 } | |
6127 | |
835 | 6128 len -= (int)(p - s); |
7 | 6129 s = p + 1; |
6130 break; | |
6131 | |
6132 | |
6133 /* Three-character escape sequences */ | |
6134 | |
6135 case 'A': | |
6136 /* move cursor up one line in same column */ | |
6137 gotoxy(g_coord.X + 1, | |
6138 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1); | |
6139 goto got3; | |
6140 | |
6141 case 'B': | |
6142 visual_bell(); | |
6143 goto got3; | |
6144 | |
6145 case 'C': | |
6146 /* move cursor right one column in same line */ | |
6147 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1, | |
6148 g_coord.Y + 1); | |
6149 goto got3; | |
6150 | |
6151 case 'E': | |
6152 termcap_mode_end(); | |
6153 goto got3; | |
6154 | |
6155 case 'F': | |
6156 standout(); | |
6157 goto got3; | |
6158 | |
6159 case 'f': | |
6160 standend(); | |
6161 goto got3; | |
6162 | |
6163 case 'H': | |
6164 gotoxy(1, 1); | |
6165 goto got3; | |
6166 | |
6167 case 'j': | |
6168 clear_to_end_of_display(); | |
6169 goto got3; | |
6170 | |
6171 case 'J': | |
6172 clear_screen(); | |
6173 goto got3; | |
6174 | |
6175 case 'K': | |
6176 clear_to_end_of_line(); | |
6177 goto got3; | |
6178 | |
6179 case 'L': | |
6180 insert_lines(1); | |
6181 goto got3; | |
6182 | |
6183 case 'M': | |
6184 delete_lines(1); | |
6185 goto got3; | |
6186 | |
6187 case 'S': | |
6188 termcap_mode_start(); | |
6189 goto got3; | |
6190 | |
6191 case 'V': | |
6192 cursor_visible(TRUE); | |
6193 goto got3; | |
6194 | |
6195 case 'v': | |
6196 cursor_visible(FALSE); | |
6197 goto got3; | |
6198 | |
6199 got3: | |
6200 s += 3; | |
6201 len -= 2; | |
6202 } | |
6203 | |
6204 #ifdef MCH_WRITE_DUMP | |
6205 if (fdDump) | |
6206 { | |
6207 fputs("ESC | ", fdDump); | |
6208 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump); | |
6209 fputc('\n', fdDump); | |
6210 } | |
6211 #endif | |
6212 } | |
6213 else | |
6214 { | |
6215 /* Write a single character */ | |
6216 DWORD nWritten; | |
6217 | |
6218 nWritten = write_chars(s, 1); | |
6219 #ifdef MCH_WRITE_DUMP | |
6220 if (fdDump) | |
6221 { | |
6222 fputc('>', fdDump); | |
6223 fwrite(s, sizeof(char_u), nWritten, fdDump); | |
6224 fputs("<\n", fdDump); | |
6225 } | |
6226 #endif | |
6227 | |
6228 len -= (nWritten - 1); | |
6229 s += nWritten; | |
6230 } | |
6231 } | |
6232 | |
6233 #ifdef MCH_WRITE_DUMP | |
6234 if (fdDump) | |
6235 fflush(fdDump); | |
6236 #endif | |
6237 } | |
6238 | |
6239 #endif /* FEAT_GUI_W32 */ | |
6240 | |
6241 | |
6242 /* | |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
6243 * Delay for "msec" milliseconds. |
7 | 6244 */ |
6245 void | |
6246 mch_delay( | |
6247 long msec, | |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
6248 int ignoreinput UNUSED) |
7 | 6249 { |
6250 #ifdef FEAT_GUI_W32 | |
6251 Sleep((int)msec); /* never wait for input */ | |
14 | 6252 #else /* Console */ |
7 | 6253 if (ignoreinput) |
14 | 6254 # ifdef FEAT_MZSCHEME |
6255 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq) | |
6256 { | |
6257 int towait = p_mzq; | |
6258 | |
6259 /* if msec is large enough, wait by portions in p_mzq */ | |
6260 while (msec > 0) | |
6261 { | |
6262 mzvim_check_threads(); | |
6263 if (msec < towait) | |
6264 towait = msec; | |
6265 Sleep(towait); | |
6266 msec -= towait; | |
6267 } | |
6268 } | |
6269 else | |
6270 # endif | |
6271 Sleep((int)msec); | |
7 | 6272 else |
11949
74e45c11b754
patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents:
11929
diff
changeset
|
6273 WaitForChar(msec, FALSE); |
7 | 6274 #endif |
6275 } | |
6276 | |
6277 | |
6278 /* | |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6279 * This version of remove is not scared by a readonly (backup) file. |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6280 * This can also remove a symbolic link like Unix. |
7 | 6281 * Return 0 for success, -1 for failure. |
6282 */ | |
6283 int | |
6284 mch_remove(char_u *name) | |
6285 { | |
6286 #ifdef FEAT_MBYTE | |
6287 WCHAR *wn = NULL; | |
6288 int n; | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6289 #endif |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6290 |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6291 /* |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6292 * On Windows, deleting a directory's symbolic link is done by |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6293 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact. |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6294 */ |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6295 if (mch_isdir(name) && mch_is_symbolic_link(name)) |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6296 return mch_rmdir(name); |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6297 |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6298 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6299 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6300 #ifdef FEAT_MBYTE |
7 | 6301 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
6302 { | |
1752 | 6303 wn = enc_to_utf16(name, NULL); |
7 | 6304 if (wn != NULL) |
6305 { | |
6306 n = DeleteFileW(wn) ? 0 : -1; | |
6307 vim_free(wn); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6308 return n; |
7 | 6309 } |
6310 } | |
6311 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6312 return DeleteFile((LPCSTR)name) ? 0 : -1; |
7 | 6313 } |
6314 | |
6315 | |
6316 /* | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10060
diff
changeset
|
6317 * Check for an "interrupt signal": CTRL-break or CTRL-C. |
7 | 6318 */ |
6319 void | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10060
diff
changeset
|
6320 mch_breakcheck(int force) |
7 | 6321 { |
6322 #ifndef FEAT_GUI_W32 /* never used */ | |
6323 if (g_fCtrlCPressed || g_fCBrkPressed) | |
6324 { | |
12066
8ad282dee649
patch 8.0.0913: MS-Windows: CTRL-C kills shell in terminal window
Christian Brabandt <cb@256bit.org>
parents:
12050
diff
changeset
|
6325 ctrl_break_was_pressed = g_fCBrkPressed; |
7 | 6326 g_fCtrlCPressed = g_fCBrkPressed = FALSE; |
6327 got_int = TRUE; | |
6328 } | |
6329 #endif | |
6330 } | |
6331 | |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6332 /* physical RAM to leave for the OS */ |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6333 #define WINNT_RESERVE_BYTES (256*1024*1024) |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6334 |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6335 /* |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6336 * How much main memory in KiB that can be used by VIM. |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6337 */ |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6338 long_u |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10781
diff
changeset
|
6339 mch_total_mem(int special UNUSED) |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6340 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6341 MEMORYSTATUSEX ms; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6342 |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6343 PlatformId(); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6344 /* Need to use GlobalMemoryStatusEx() when there is more memory than |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6345 * what fits in 32 bits. But it's not always available. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6346 ms.dwLength = sizeof(MEMORYSTATUSEX); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6347 GlobalMemoryStatusEx(&ms); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6348 if (ms.ullAvailVirtual < ms.ullTotalPhys) |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6349 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6350 /* Process address space fits in physical RAM, use all of it. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6351 return (long_u)(ms.ullAvailVirtual / 1024); |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6352 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6353 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES) |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6354 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6355 /* Catch old NT box or perverse hardware setup. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6356 return (long_u)((ms.ullTotalPhys / 2) / 1024); |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6357 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6358 /* Use physical RAM less reserve for OS + data. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6359 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024); |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6360 } |
7 | 6361 |
6362 #ifdef FEAT_MBYTE | |
6363 /* | |
6364 * Same code as below, but with wide functions and no comments. | |
6365 * Return 0 for success, non-zero for failure. | |
6366 */ | |
6367 int | |
6368 mch_wrename(WCHAR *wold, WCHAR *wnew) | |
6369 { | |
6370 WCHAR *p; | |
6371 int i; | |
6372 WCHAR szTempFile[_MAX_PATH + 1]; | |
6373 WCHAR szNewPath[_MAX_PATH + 1]; | |
6374 HANDLE hf; | |
6375 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6376 p = wold; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6377 for (i = 0; wold[i] != NUL; ++i) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6378 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':') |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6379 && wold[i + 1] != 0) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6380 p = wold + i + 1; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6381 if ((int)(wold + i - p) < 8 || p[6] != '~') |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6382 return (MoveFileW(wold, wnew) == 0); |
7 | 6383 |
6384 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL) | |
6385 return -1; | |
6386 *p = NUL; | |
6387 | |
6388 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0) | |
6389 return -2; | |
6390 | |
6391 if (!DeleteFileW(szTempFile)) | |
6392 return -3; | |
6393 | |
6394 if (!MoveFileW(wold, szTempFile)) | |
6395 return -4; | |
6396 | |
6397 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW, | |
6398 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) | |
6399 return -5; | |
6400 if (!CloseHandle(hf)) | |
6401 return -6; | |
6402 | |
6403 if (!MoveFileW(szTempFile, wnew)) | |
6404 { | |
6405 (void)MoveFileW(szTempFile, wold); | |
6406 return -7; | |
6407 } | |
6408 | |
6409 DeleteFileW(szTempFile); | |
6410 | |
6411 if (!DeleteFileW(wold)) | |
6412 return -8; | |
6413 | |
6414 return 0; | |
6415 } | |
6416 #endif | |
6417 | |
6418 | |
6419 /* | |
6420 * mch_rename() works around a bug in rename (aka MoveFile) in | |
6421 * Windows 95: rename("foo.bar", "foo.bar~") will generate a | |
6422 * file whose short file name is "FOO.BAR" (its long file name will | |
6423 * be correct: "foo.bar~"). Because a file can be accessed by | |
6424 * either its SFN or its LFN, "foo.bar" has effectively been | |
6425 * renamed to "foo.bar", which is not at all what was wanted. This | |
6426 * seems to happen only when renaming files with three-character | |
6427 * extensions by appending a suffix that does not include ".". | |
6428 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR". | |
6429 * | |
6430 * There is another problem, which isn't really a bug but isn't right either: | |
6431 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be | |
6432 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with | |
6433 * service pack 6. Doesn't seem to happen on Windows 98. | |
6434 * | |
6435 * Like rename(), returns 0 upon success, non-zero upon failure. | |
6436 * Should probably set errno appropriately when errors occur. | |
6437 */ | |
6438 int | |
6439 mch_rename( | |
6440 const char *pszOldFile, | |
6441 const char *pszNewFile) | |
6442 { | |
6443 char szTempFile[_MAX_PATH+1]; | |
6444 char szNewPath[_MAX_PATH+1]; | |
6445 char *pszFilePart; | |
6446 HANDLE hf; | |
6447 #ifdef FEAT_MBYTE | |
6448 WCHAR *wold = NULL; | |
6449 WCHAR *wnew = NULL; | |
6450 int retval = -1; | |
6451 | |
6452 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
6453 { | |
1752 | 6454 wold = enc_to_utf16((char_u *)pszOldFile, NULL); |
6455 wnew = enc_to_utf16((char_u *)pszNewFile, NULL); | |
7 | 6456 if (wold != NULL && wnew != NULL) |
6457 retval = mch_wrename(wold, wnew); | |
6458 vim_free(wold); | |
6459 vim_free(wnew); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6460 return retval; |
7 | 6461 } |
6462 #endif | |
6463 | |
6464 /* | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6465 * No need to play tricks unless the file name contains a "~" as the |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6466 * seventh character. |
7 | 6467 */ |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6468 pszFilePart = (char *)gettail((char_u *)pszOldFile); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6469 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~') |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6470 return rename(pszOldFile, pszNewFile); |
7 | 6471 |
6472 /* Get base path of new file name. Undocumented feature: If pszNewFile is | |
6473 * a directory, no error is returned and pszFilePart will be NULL. */ | |
6474 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0 | |
6475 || pszFilePart == NULL) | |
6476 return -1; | |
6477 *pszFilePart = NUL; | |
6478 | |
6479 /* Get (and create) a unique temporary file name in directory of new file */ | |
6480 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0) | |
6481 return -2; | |
6482 | |
6483 /* blow the temp file away */ | |
6484 if (!DeleteFile(szTempFile)) | |
6485 return -3; | |
6486 | |
6487 /* rename old file to the temp file */ | |
6488 if (!MoveFile(pszOldFile, szTempFile)) | |
6489 return -4; | |
6490 | |
6491 /* now create an empty file called pszOldFile; this prevents the operating | |
6492 * system using pszOldFile as an alias (SFN) if we're renaming within the | |
6493 * same directory. For example, we're editing a file called | |
6494 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt | |
6495 * to filena~1.txt~ (i.e., we're making a backup while writing it), the | |
6496 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will | |
39 | 6497 * cause all sorts of problems later in buf_write(). So, we create an |
6498 * empty file called filena~1.txt and the system will have to find some | |
6499 * other SFN for filena~1.txt~, such as filena~2.txt | |
7 | 6500 */ |
6501 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW, | |
6502 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) | |
6503 return -5; | |
6504 if (!CloseHandle(hf)) | |
6505 return -6; | |
6506 | |
6507 /* rename the temp file to the new file */ | |
6508 if (!MoveFile(szTempFile, pszNewFile)) | |
6509 { | |
6510 /* Renaming failed. Rename the file back to its old name, so that it | |
6511 * looks like nothing happened. */ | |
6512 (void)MoveFile(szTempFile, pszOldFile); | |
6513 | |
6514 return -7; | |
6515 } | |
6516 | |
6517 /* Seems to be left around on Novell filesystems */ | |
6518 DeleteFile(szTempFile); | |
6519 | |
6520 /* finally, remove the empty old file */ | |
6521 if (!DeleteFile(pszOldFile)) | |
6522 return -8; | |
6523 | |
6524 return 0; /* success */ | |
6525 } | |
6526 | |
6527 /* | |
6528 * Get the default shell for the current hardware platform | |
6529 */ | |
6530 char * | |
26 | 6531 default_shell(void) |
7 | 6532 { |
6533 PlatformId(); | |
6534 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6535 return "cmd.exe"; |
7 | 6536 } |
6537 | |
6538 /* | |
6539 * mch_access() extends access() to do more detailed check on network drives. | |
6540 * Returns 0 if file "n" has access rights according to "p", -1 otherwise. | |
6541 */ | |
6542 int | |
6543 mch_access(char *n, int p) | |
6544 { | |
6545 HANDLE hFile; | |
6546 DWORD am; | |
6547 int retval = -1; /* default: fail */ | |
6548 #ifdef FEAT_MBYTE | |
6549 WCHAR *wn = NULL; | |
6550 | |
6551 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6552 wn = enc_to_utf16((char_u *)n, NULL); |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6553 #endif |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6554 |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6555 if (mch_isdir((char_u *)n)) |
7 | 6556 { |
6557 char TempName[_MAX_PATH + 16] = ""; | |
6558 #ifdef FEAT_MBYTE | |
6559 WCHAR TempNameW[_MAX_PATH + 16] = L""; | |
6560 #endif | |
6561 | |
6562 if (p & R_OK) | |
6563 { | |
6564 /* Read check is performed by seeing if we can do a find file on | |
6565 * the directory for any file. */ | |
6566 #ifdef FEAT_MBYTE | |
6567 if (wn != NULL) | |
6568 { | |
6569 int i; | |
6570 WIN32_FIND_DATAW d; | |
6571 | |
6572 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i) | |
6573 TempNameW[i] = wn[i]; | |
6574 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/') | |
6575 TempNameW[i++] = '\\'; | |
6576 TempNameW[i++] = '*'; | |
6577 TempNameW[i++] = 0; | |
6578 | |
6579 hFile = FindFirstFileW(TempNameW, &d); | |
6580 if (hFile == INVALID_HANDLE_VALUE) | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6581 goto getout; |
7 | 6582 else |
6583 (void)FindClose(hFile); | |
6584 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6585 else |
7 | 6586 #endif |
6587 { | |
6588 char *pch; | |
6589 WIN32_FIND_DATA d; | |
6590 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6591 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH); |
7 | 6592 pch = TempName + STRLEN(TempName) - 1; |
6593 if (*pch != '\\' && *pch != '/') | |
6594 *++pch = '\\'; | |
6595 *++pch = '*'; | |
6596 *++pch = NUL; | |
6597 | |
6598 hFile = FindFirstFile(TempName, &d); | |
6599 if (hFile == INVALID_HANDLE_VALUE) | |
6600 goto getout; | |
6601 (void)FindClose(hFile); | |
6602 } | |
6603 } | |
6604 | |
6605 if (p & W_OK) | |
6606 { | |
6607 /* Trying to create a temporary file in the directory should catch | |
6608 * directories on read-only network shares. However, in | |
6609 * directories whose ACL allows writes but denies deletes will end | |
6610 * up keeping the temporary file :-(. */ | |
6611 #ifdef FEAT_MBYTE | |
6612 if (wn != NULL) | |
6613 { | |
6614 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW)) | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6615 goto getout; |
7 | 6616 else |
6617 DeleteFileW(TempNameW); | |
6618 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6619 else |
7 | 6620 #endif |
6621 { | |
6622 if (!GetTempFileName(n, "VIM", 0, TempName)) | |
6623 goto getout; | |
6624 mch_remove((char_u *)TempName); | |
6625 } | |
6626 } | |
6627 } | |
6628 else | |
6629 { | |
6630 /* Trying to open the file for the required access does ACL, read-only | |
6631 * network share, and file attribute checks. */ | |
6632 am = ((p & W_OK) ? GENERIC_WRITE : 0) | |
6633 | ((p & R_OK) ? GENERIC_READ : 0); | |
6634 #ifdef FEAT_MBYTE | |
6635 if (wn != NULL) | |
6636 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6637 else |
7 | 6638 #endif |
6639 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL); | |
6640 if (hFile == INVALID_HANDLE_VALUE) | |
6641 goto getout; | |
6642 CloseHandle(hFile); | |
6643 } | |
6644 | |
6645 retval = 0; /* success */ | |
6646 getout: | |
6647 #ifdef FEAT_MBYTE | |
6648 vim_free(wn); | |
6649 #endif | |
6650 return retval; | |
6651 } | |
6652 | |
6653 #if defined(FEAT_MBYTE) || defined(PROTO) | |
6654 /* | |
1752 | 6655 * Version of open() that may use UTF-16 file name. |
7 | 6656 */ |
6657 int | |
11921
bafbdbc64bbe
patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Christian Brabandt <cb@256bit.org>
parents:
11723
diff
changeset
|
6658 mch_open(const char *name, int flags, int mode) |
7 | 6659 { |
39 | 6660 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */ |
6661 # ifndef __BORLANDC__ | |
7 | 6662 WCHAR *wn; |
6663 int f; | |
6664 | |
39 | 6665 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7 | 6666 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6667 wn = enc_to_utf16((char_u *)name, NULL); |
7 | 6668 if (wn != NULL) |
6669 { | |
6670 f = _wopen(wn, flags, mode); | |
6671 vim_free(wn); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6672 return f; |
7 | 6673 } |
6674 } | |
39 | 6675 # endif |
7 | 6676 |
6345 | 6677 /* open() can open a file which name is longer than _MAX_PATH bytes |
6678 * and shorter than _MAX_PATH characters successfully, but sometimes it | |
6679 * causes unexpected error in another part. We make it an error explicitly | |
6680 * here. */ | |
6681 if (strlen(name) >= _MAX_PATH) | |
6682 return -1; | |
6683 | |
7 | 6684 return open(name, flags, mode); |
6685 } | |
6686 | |
6687 /* | |
1752 | 6688 * Version of fopen() that may use UTF-16 file name. |
7 | 6689 */ |
6690 FILE * | |
11921
bafbdbc64bbe
patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Christian Brabandt <cb@256bit.org>
parents:
11723
diff
changeset
|
6691 mch_fopen(const char *name, const char *mode) |
7 | 6692 { |
6693 WCHAR *wn, *wm; | |
6694 FILE *f = NULL; | |
6695 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6696 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7 | 6697 { |
1686 | 6698 # if defined(DEBUG) && _MSC_VER >= 1400 |
1569 | 6699 /* Work around an annoying assertion in the Microsoft debug CRT |
6700 * when mode's text/binary setting doesn't match _get_fmode(). */ | |
6701 char newMode = mode[strlen(mode) - 1]; | |
6702 int oldMode = 0; | |
6703 | |
6704 _get_fmode(&oldMode); | |
6705 if (newMode == 't') | |
6706 _set_fmode(_O_TEXT); | |
6707 else if (newMode == 'b') | |
6708 _set_fmode(_O_BINARY); | |
6709 # endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6710 wn = enc_to_utf16((char_u *)name, NULL); |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6711 wm = enc_to_utf16((char_u *)mode, NULL); |
7 | 6712 if (wn != NULL && wm != NULL) |
6713 f = _wfopen(wn, wm); | |
6714 vim_free(wn); | |
6715 vim_free(wm); | |
1569 | 6716 |
1686 | 6717 # if defined(DEBUG) && _MSC_VER >= 1400 |
1569 | 6718 _set_fmode(oldMode); |
6719 # endif | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6720 return f; |
7 | 6721 } |
6722 | |
6345 | 6723 /* fopen() can open a file which name is longer than _MAX_PATH bytes |
6724 * and shorter than _MAX_PATH characters successfully, but sometimes it | |
6725 * causes unexpected error in another part. We make it an error explicitly | |
6726 * here. */ | |
6727 if (strlen(name) >= _MAX_PATH) | |
6728 return NULL; | |
6729 | |
7 | 6730 return fopen(name, mode); |
6731 } | |
6732 #endif | |
6733 | |
6734 #ifdef FEAT_MBYTE | |
6735 /* | |
6736 * SUB STREAM (aka info stream) handling: | |
6737 * | |
6738 * NTFS can have sub streams for each file. Normal contents of file is | |
6739 * stored in the main stream, and extra contents (author information and | |
6740 * title and so on) can be stored in sub stream. After Windows 2000, user | |
6741 * can access and store those informations in sub streams via explorer's | |
6742 * property menuitem in right click menu. Those informations in sub streams | |
6743 * were lost when copying only the main stream. So we have to copy sub | |
6744 * streams. | |
6745 * | |
6746 * Incomplete explanation: | |
6747 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp | |
6748 * More useful info and an example: | |
6749 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams | |
6750 */ | |
6751 | |
6752 /* | |
6753 * Copy info stream data "substream". Read from the file with BackupRead(sh) | |
6754 * and write to stream "substream" of file "to". | |
6755 * Errors are ignored. | |
6756 */ | |
6757 static void | |
6758 copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len) | |
6759 { | |
6760 HANDLE hTo; | |
6761 WCHAR *to_name; | |
6762 | |
6763 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR)); | |
6764 wcscpy(to_name, to); | |
6765 wcscat(to_name, substream); | |
6766 | |
6767 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, | |
6768 FILE_ATTRIBUTE_NORMAL, NULL); | |
6769 if (hTo != INVALID_HANDLE_VALUE) | |
6770 { | |
6771 long done; | |
6772 DWORD todo; | |
6773 DWORD readcnt, written; | |
6774 char buf[4096]; | |
6775 | |
6776 /* Copy block of bytes at a time. Abort when something goes wrong. */ | |
6777 for (done = 0; done < len; done += written) | |
6778 { | |
6779 /* (size_t) cast for Borland C 5.5 */ | |
835 | 6780 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf) |
6781 : (size_t)(len - done)); | |
7 | 6782 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt, |
6783 FALSE, FALSE, context) | |
6784 || readcnt != todo | |
6785 || !WriteFile(hTo, buf, todo, &written, NULL) | |
6786 || written != todo) | |
6787 break; | |
6788 } | |
6789 CloseHandle(hTo); | |
6790 } | |
6791 | |
6792 free(to_name); | |
6793 } | |
6794 | |
6795 /* | |
6796 * Copy info streams from file "from" to file "to". | |
6797 */ | |
6798 static void | |
6799 copy_infostreams(char_u *from, char_u *to) | |
6800 { | |
6801 WCHAR *fromw; | |
6802 WCHAR *tow; | |
6803 HANDLE sh; | |
6804 WIN32_STREAM_ID sid; | |
6805 int headersize; | |
6806 WCHAR streamname[_MAX_PATH]; | |
6807 DWORD readcount; | |
6808 void *context = NULL; | |
6809 DWORD lo, hi; | |
6810 int len; | |
6811 | |
6812 /* Convert the file names to wide characters. */ | |
1752 | 6813 fromw = enc_to_utf16(from, NULL); |
6814 tow = enc_to_utf16(to, NULL); | |
7 | 6815 if (fromw != NULL && tow != NULL) |
6816 { | |
6817 /* Open the file for reading. */ | |
6818 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL, | |
6819 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); | |
6820 if (sh != INVALID_HANDLE_VALUE) | |
6821 { | |
6822 /* Use BackupRead() to find the info streams. Repeat until we | |
6823 * have done them all.*/ | |
6824 for (;;) | |
6825 { | |
6826 /* Get the header to find the length of the stream name. If | |
6827 * the "readcount" is zero we have done all info streams. */ | |
6828 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID)); | |
835 | 6829 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId); |
7 | 6830 if (!BackupRead(sh, (LPBYTE)&sid, headersize, |
6831 &readcount, FALSE, FALSE, &context) | |
6832 || readcount == 0) | |
6833 break; | |
6834 | |
6835 /* We only deal with streams that have a name. The normal | |
6836 * file data appears to be without a name, even though docs | |
6837 * suggest it is called "::$DATA". */ | |
6838 if (sid.dwStreamNameSize > 0) | |
6839 { | |
6840 /* Read the stream name. */ | |
6841 if (!BackupRead(sh, (LPBYTE)streamname, | |
6842 sid.dwStreamNameSize, | |
6843 &readcount, FALSE, FALSE, &context)) | |
6844 break; | |
6845 | |
6846 /* Copy an info stream with a name ":anything:$DATA". | |
6847 * Skip "::$DATA", it has no stream name (examples suggest | |
6848 * it might be used for the normal file contents). | |
6849 * Note that BackupRead() counts bytes, but the name is in | |
6850 * wide characters. */ | |
6851 len = readcount / sizeof(WCHAR); | |
6852 streamname[len] = 0; | |
6853 if (len > 7 && wcsicmp(streamname + len - 6, | |
6854 L":$DATA") == 0) | |
6855 { | |
6856 streamname[len - 6] = 0; | |
6857 copy_substream(sh, &context, tow, streamname, | |
10 | 6858 (long)sid.Size.u.LowPart); |
7 | 6859 } |
6860 } | |
6861 | |
6862 /* Advance to the next stream. We might try seeking too far, | |
6863 * but BackupSeek() doesn't skip over stream borders, thus | |
6864 * that's OK. */ | |
323 | 6865 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart, |
7 | 6866 &lo, &hi, &context); |
6867 } | |
6868 | |
6869 /* Clear the context. */ | |
6870 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context); | |
6871 | |
6872 CloseHandle(sh); | |
6873 } | |
6874 } | |
6875 vim_free(fromw); | |
6876 vim_free(tow); | |
6877 } | |
6878 #endif | |
6879 | |
6880 /* | |
6881 * Copy file attributes from file "from" to file "to". | |
6882 * For Windows NT and later we copy info streams. | |
6883 * Always returns zero, errors are ignored. | |
6884 */ | |
6885 int | |
6886 mch_copy_file_attribute(char_u *from, char_u *to) | |
6887 { | |
6888 #ifdef FEAT_MBYTE | |
6889 /* File streams only work on Windows NT and later. */ | |
6890 PlatformId(); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6891 copy_infostreams(from, to); |
7 | 6892 #endif |
6893 return 0; | |
6894 } | |
6895 | |
6896 #if defined(MYRESETSTKOFLW) || defined(PROTO) | |
6897 /* | |
6898 * Recreate a destroyed stack guard page in win32. | |
6899 * Written by Benjamin Peterson. | |
6900 */ | |
6901 | |
6902 /* These magic numbers are from the MS header files */ | |
6903 #define MIN_STACK_WINNT 2 | |
6904 | |
6905 /* | |
6906 * This function does the same thing as _resetstkoflw(), which is only | |
6907 * available in DevStudio .net and later. | |
6908 * Returns 0 for failure, 1 for success. | |
6909 */ | |
6910 int | |
6911 myresetstkoflw(void) | |
6912 { | |
6913 BYTE *pStackPtr; | |
6914 BYTE *pGuardPage; | |
6915 BYTE *pStackBase; | |
6916 BYTE *pLowestPossiblePage; | |
6917 MEMORY_BASIC_INFORMATION mbi; | |
6918 SYSTEM_INFO si; | |
6919 DWORD nPageSize; | |
6920 DWORD dummy; | |
6921 | |
6922 PlatformId(); | |
6923 | |
6924 /* We need to know the system page size. */ | |
6925 GetSystemInfo(&si); | |
6926 nPageSize = si.dwPageSize; | |
6927 | |
6928 /* ...and the current stack pointer */ | |
6929 pStackPtr = (BYTE*)_alloca(1); | |
6930 | |
6931 /* ...and the base of the stack. */ | |
6932 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0) | |
6933 return 0; | |
6934 pStackBase = (BYTE*)mbi.AllocationBase; | |
6935 | |
6936 /* ...and the page thats min_stack_req pages away from stack base; this is | |
6937 * the lowest page we could use. */ | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6938 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6939 |
7 | 6940 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6941 /* We want the first committed page in the stack Start at the stack |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6942 * base and move forward through memory until we find a committed block. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6943 */ |
7 | 6944 BYTE *pBlock = pStackBase; |
6945 | |
406 | 6946 for (;;) |
7 | 6947 { |
6948 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0) | |
6949 return 0; | |
6950 | |
6951 pBlock += mbi.RegionSize; | |
6952 | |
6953 if (mbi.State & MEM_COMMIT) | |
6954 break; | |
6955 } | |
6956 | |
6957 /* mbi now describes the first committed block in the stack. */ | |
6958 if (mbi.Protect & PAGE_GUARD) | |
6959 return 1; | |
6960 | |
6961 /* decide where the guard page should start */ | |
6962 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage) | |
6963 pGuardPage = pLowestPossiblePage; | |
6964 else | |
6965 pGuardPage = (BYTE*)mbi.BaseAddress; | |
6966 | |
6967 /* allocate the guard page */ | |
6968 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE)) | |
6969 return 0; | |
6970 | |
6971 /* apply the guard attribute to the page */ | |
6972 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD, | |
6973 &dummy)) | |
6974 return 0; | |
6975 } | |
6976 | |
6977 return 1; | |
6978 } | |
6979 #endif | |
26 | 6980 |
6981 | |
6982 #if defined(FEAT_MBYTE) || defined(PROTO) | |
6983 /* | |
6984 * The command line arguments in UCS2 | |
6985 */ | |
344 | 6986 static int nArgsW = 0; |
26 | 6987 static LPWSTR *ArglistW = NULL; |
6988 static int global_argc = 0; | |
6989 static char **global_argv; | |
6990 | |
6991 static int used_file_argc = 0; /* last argument in global_argv[] used | |
6992 for the argument list. */ | |
6993 static int *used_file_indexes = NULL; /* indexes in global_argv[] for | |
6994 command line arguments added to | |
6995 the argument list */ | |
6996 static int used_file_count = 0; /* nr of entries in used_file_indexes */ | |
6997 static int used_file_literal = FALSE; /* take file names literally */ | |
6998 static int used_file_full_path = FALSE; /* file name was full path */ | |
819 | 6999 static int used_file_diff_mode = FALSE; /* file name was with diff mode */ |
26 | 7000 static int used_alist_count = 0; |
7001 | |
7002 | |
7003 /* | |
7004 * Get the command line arguments. Unicode version. | |
7005 * Returns argc. Zero when something fails. | |
7006 */ | |
7007 int | |
7008 get_cmd_argsW(char ***argvp) | |
7009 { | |
7010 char **argv = NULL; | |
7011 int argc = 0; | |
7012 int i; | |
7013 | |
6193 | 7014 free_cmd_argsW(); |
26 | 7015 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW); |
7016 if (ArglistW != NULL) | |
7017 { | |
7018 argv = malloc((nArgsW + 1) * sizeof(char *)); | |
7019 if (argv != NULL) | |
7020 { | |
7021 argc = nArgsW; | |
7022 argv[argc] = NULL; | |
7023 for (i = 0; i < argc; ++i) | |
7024 { | |
7025 int len; | |
7026 | |
7027 /* Convert each Unicode argument to the current codepage. */ | |
7028 WideCharToMultiByte_alloc(GetACP(), 0, | |
835 | 7029 ArglistW[i], (int)wcslen(ArglistW[i]) + 1, |
26 | 7030 (LPSTR *)&argv[i], &len, 0, 0); |
7031 if (argv[i] == NULL) | |
7032 { | |
7033 /* Out of memory, clear everything. */ | |
7034 while (i > 0) | |
7035 free(argv[--i]); | |
7036 free(argv); | |
5529 | 7037 argv = NULL; |
26 | 7038 argc = 0; |
7039 } | |
7040 } | |
7041 } | |
7042 } | |
7043 | |
7044 global_argc = argc; | |
7045 global_argv = argv; | |
7046 if (argc > 0) | |
6193 | 7047 { |
7048 if (used_file_indexes != NULL) | |
7049 free(used_file_indexes); | |
26 | 7050 used_file_indexes = malloc(argc * sizeof(int)); |
6193 | 7051 } |
26 | 7052 |
7053 if (argvp != NULL) | |
7054 *argvp = argv; | |
7055 return argc; | |
7056 } | |
7057 | |
7058 void | |
7059 free_cmd_argsW(void) | |
7060 { | |
7061 if (ArglistW != NULL) | |
7062 { | |
7063 GlobalFree(ArglistW); | |
7064 ArglistW = NULL; | |
7065 } | |
7066 } | |
7067 | |
7068 /* | |
7069 * Remember "name" is an argument that was added to the argument list. | |
7070 * This avoids that we have to re-parse the argument list when fix_arg_enc() | |
7071 * is called. | |
7072 */ | |
7073 void | |
819 | 7074 used_file_arg(char *name, int literal, int full_path, int diff_mode) |
26 | 7075 { |
7076 int i; | |
7077 | |
7078 if (used_file_indexes == NULL) | |
7079 return; | |
7080 for (i = used_file_argc + 1; i < global_argc; ++i) | |
7081 if (STRCMP(global_argv[i], name) == 0) | |
7082 { | |
7083 used_file_argc = i; | |
7084 used_file_indexes[used_file_count++] = i; | |
7085 break; | |
7086 } | |
7087 used_file_literal = literal; | |
7088 used_file_full_path = full_path; | |
819 | 7089 used_file_diff_mode = diff_mode; |
26 | 7090 } |
7091 | |
7092 /* | |
7093 * Remember the length of the argument list as it was. If it changes then we | |
7094 * leave it alone when 'encoding' is set. | |
7095 */ | |
7096 void | |
7097 set_alist_count(void) | |
7098 { | |
7099 used_alist_count = GARGCOUNT; | |
7100 } | |
7101 | |
7102 /* | |
7103 * Fix the encoding of the command line arguments. Invoked when 'encoding' | |
7104 * has been changed while starting up. Use the UCS-2 command line arguments | |
7105 * and convert them to 'encoding'. | |
7106 */ | |
7107 void | |
7108 fix_arg_enc(void) | |
7109 { | |
7110 int i; | |
7111 int idx; | |
7112 char_u *str; | |
41 | 7113 int *fnum_list; |
26 | 7114 |
7115 /* Safety checks: | |
7116 * - if argument count differs between the wide and non-wide argument | |
7117 * list, something must be wrong. | |
7118 * - the file name arguments must have been located. | |
7119 * - the length of the argument list wasn't changed by the user. | |
7120 */ | |
344 | 7121 if (global_argc != nArgsW |
26 | 7122 || ArglistW == NULL |
7123 || used_file_indexes == NULL | |
7124 || used_file_count == 0 | |
7125 || used_alist_count != GARGCOUNT) | |
7126 return; | |
7127 | |
41 | 7128 /* Remember the buffer numbers for the arguments. */ |
7129 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT); | |
7130 if (fnum_list == NULL) | |
7131 return; /* out of memory */ | |
7132 for (i = 0; i < GARGCOUNT; ++i) | |
7133 fnum_list[i] = GARGLIST[i].ae_fnum; | |
7134 | |
26 | 7135 /* Clear the argument list. Make room for the new arguments. */ |
7136 alist_clear(&global_alist); | |
7137 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL) | |
41 | 7138 return; /* out of memory */ |
26 | 7139 |
7140 for (i = 0; i < used_file_count; ++i) | |
7141 { | |
7142 idx = used_file_indexes[i]; | |
1752 | 7143 str = utf16_to_enc(ArglistW[idx], NULL); |
26 | 7144 if (str != NULL) |
41 | 7145 { |
11991
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7146 int literal = used_file_literal; |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7147 |
819 | 7148 #ifdef FEAT_DIFF |
7149 /* When using diff mode may need to concatenate file name to | |
7150 * directory name. Just like it's done in main(). */ | |
7151 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0 | |
7152 && !mch_isdir(alist_name(&GARGLIST[0]))) | |
7153 { | |
7154 char_u *r; | |
7155 | |
7156 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE); | |
7157 if (r != NULL) | |
7158 { | |
7159 vim_free(str); | |
7160 str = r; | |
7161 } | |
7162 } | |
7163 #endif | |
41 | 7164 /* Re-use the old buffer by renaming it. When not using literal |
7165 * names it's done by alist_expand() below. */ | |
7166 if (used_file_literal) | |
7167 buf_set_name(fnum_list[i], str); | |
7168 | |
11991
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7169 /* Check backtick literal. backtick literal is already expanded in |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7170 * main.c, so this part add str as literal. */ |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7171 if (literal == FALSE) |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7172 { |
12015
7e704d75a882
patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents:
11991
diff
changeset
|
7173 size_t len = STRLEN(str); |
7e704d75a882
patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents:
11991
diff
changeset
|
7174 |
11991
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7175 if (len > 2 && *str == '`' && *(str + len - 1) == '`') |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7176 literal = TRUE; |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7177 } |
15ec6d5adf43
patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents:
11949
diff
changeset
|
7178 alist_add(&global_alist, str, literal ? 2 : 0); |
41 | 7179 } |
26 | 7180 } |
7181 | |
7182 if (!used_file_literal) | |
7183 { | |
7184 /* Now expand wildcards in the arguments. */ | |
7185 /* Temporarily add '(' and ')' to 'isfname'. These are valid | |
7186 * filename characters but are excluded from 'isfname' to make | |
7187 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */ | |
7188 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)"); | |
41 | 7189 alist_expand(fnum_list, used_alist_count); |
26 | 7190 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF"); |
7191 } | |
7192 | |
7193 /* If wildcard expansion failed, we are editing the first file of the | |
7194 * arglist and there is no file name: Edit the first argument now. */ | |
7195 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL) | |
7196 { | |
7197 do_cmdline_cmd((char_u *)":rewind"); | |
7198 if (GARGCOUNT == 1 && used_file_full_path) | |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
12990
diff
changeset
|
7199 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop"); |
26 | 7200 } |
41 | 7201 |
7202 set_alist_count(); | |
26 | 7203 } |
7204 #endif | |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7205 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7206 int |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7207 mch_setenv(char *var, char *value, int x) |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7208 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7209 char_u *envbuf; |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7210 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7211 envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2)); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7212 if (envbuf == NULL) |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7213 return -1; |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7214 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7215 sprintf((char *)envbuf, "%s=%s", var, value); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7216 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7217 #ifdef FEAT_MBYTE |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7218 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7219 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7220 WCHAR *p = enc_to_utf16(envbuf, NULL); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7221 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7222 vim_free(envbuf); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7223 if (p == NULL) |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7224 return -1; |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7225 _wputenv(p); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7226 # ifdef libintl_wputenv |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7227 libintl_wputenv(p); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7228 # endif |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7229 /* Unlike Un*x systems, we can free the string for _wputenv(). */ |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7230 vim_free(p); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7231 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7232 else |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7233 #endif |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7234 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7235 _putenv((char *)envbuf); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7236 # ifdef libintl_putenv |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7237 libintl_putenv((char *)envbuf); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7238 # endif |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7239 /* Unlike Un*x systems, we can free the string for _putenv(). */ |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7240 vim_free(envbuf); |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7241 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7242 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7243 return 0; |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7244 } |