Mercurial > vim
annotate src/os_win32.c @ 10815:f883a1224396 v8.0.0297
patch 8.0.0297: double free on exit when using a closure
commit https://github.com/vim/vim/commit/03ff9bcbc968f7d306e4a4e334e226fdde62ca82
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 2 22:59:27 2017 +0100
patch 8.0.0297: double free on exit when using a closure
Problem: Double free on exit when using a closure. (James McCoy)
Solution: Split free_al_functions in two parts. (closes https://github.com/vim/vim/issues/1428)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 02 Feb 2017 23:00:04 +0100 |
parents | 04eb70c77cf4 |
children | c9da7f9137af |
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; | |
114 typedef int KEY_EVENT_RECORD; | |
115 typedef int LOGFONT; | |
116 typedef int LPBOOL; | |
117 typedef int LPCTSTR; | |
118 typedef int LPDWORD; | |
119 typedef int LPSTR; | |
120 typedef int LPTSTR; | |
121 typedef int LPVOID; | |
122 typedef int MOUSE_EVENT_RECORD; | |
123 typedef int PACL; | |
124 typedef int PDWORD; | |
125 typedef int PHANDLE; | |
126 typedef int PRINTDLG; | |
127 typedef int PSECURITY_DESCRIPTOR; | |
128 typedef int PSID; | |
129 typedef int SECURITY_INFORMATION; | |
130 typedef int SHORT; | |
131 typedef int SMALL_RECT; | |
132 typedef int TEXTMETRIC; | |
133 typedef int TOKEN_INFORMATION_CLASS; | |
134 typedef int TRUSTEE; | |
135 typedef int WORD; | |
136 typedef int WCHAR; | |
137 typedef void VOID; | |
3927 | 138 typedef int BY_HANDLE_FILE_INFORMATION; |
5112
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
139 typedef int SE_OBJECT_TYPE; |
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
140 typedef int PSNSECINFO; |
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
5049
diff
changeset
|
141 typedef int PSNSECINFOW; |
6359 | 142 typedef int STARTUPINFO; |
143 typedef int PROCESS_INFORMATION; | |
10025
068f397d0da4
commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
144 typedef int LPSECURITY_ATTRIBUTES; |
068f397d0da4
commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents:
9959
diff
changeset
|
145 # define __stdcall /* empty */ |
7 | 146 #endif |
147 | |
148 #if defined(__BORLANDC__) | |
149 /* Strangely Borland uses a non-standard name. */ | |
150 # define wcsicmp(a, b) wcscmpi((a), (b)) | |
151 #endif | |
152 | |
153 #ifndef FEAT_GUI_W32 | |
154 /* Win32 Console handles for input and output */ | |
155 static HANDLE g_hConIn = INVALID_HANDLE_VALUE; | |
156 static HANDLE g_hConOut = INVALID_HANDLE_VALUE; | |
157 | |
158 /* Win32 Screen buffer,coordinate,console I/O information */ | |
159 static SMALL_RECT g_srScrollRegion; | |
160 static COORD g_coord; /* 0-based, but external coords are 1-based */ | |
161 | |
162 /* The attribute of the screen when the editor was started */ | |
163 static WORD g_attrDefault = 7; /* lightgray text on black background */ | |
164 static WORD g_attrCurrent; | |
165 | |
166 static int g_fCBrkPressed = FALSE; /* set by ctrl-break interrupt */ | |
167 static int g_fCtrlCPressed = FALSE; /* set when ctrl-C or ctrl-break detected */ | |
168 static int g_fForceExit = FALSE; /* set when forcefully exiting */ | |
169 | |
170 static void termcap_mode_start(void); | |
171 static void termcap_mode_end(void); | |
172 static void clear_chars(COORD coord, DWORD n); | |
173 static void clear_screen(void); | |
174 static void clear_to_end_of_display(void); | |
175 static void clear_to_end_of_line(void); | |
176 static void scroll(unsigned cLines); | |
177 static void set_scroll_region(unsigned left, unsigned top, | |
178 unsigned right, unsigned bottom); | |
179 static void insert_lines(unsigned cLines); | |
180 static void delete_lines(unsigned cLines); | |
181 static void gotoxy(unsigned x, unsigned y); | |
182 static void normvideo(void); | |
183 static void textattr(WORD wAttr); | |
184 static void textcolor(WORD wAttr); | |
185 static void textbackground(WORD wAttr); | |
186 static void standout(void); | |
187 static void standend(void); | |
188 static void visual_bell(void); | |
189 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
|
190 static DWORD write_chars(char_u *pchBuf, DWORD cbToWrite); |
7 | 191 static void create_conin(void); |
192 static int s_cursor_visible = TRUE; | |
193 static int did_create_conin = FALSE; | |
194 #else | |
195 static int s_dont_use_vimrun = TRUE; | |
196 static int need_vimrun_warning = FALSE; | |
197 static char *vimrun_path = "vimrun "; | |
198 #endif | |
199 | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
200 static int win32_getattrs(char_u *name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
201 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
|
202 static int win32_set_archive(char_u *name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
203 |
7 | 204 #ifndef FEAT_GUI_W32 |
205 static int suppress_winsize = 1; /* don't fiddle with console */ | |
206 #endif | |
207 | |
2612 | 208 static char_u *exe_path = NULL; |
209 | |
5633 | 210 static BOOL win8_or_later = FALSE; |
211 | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
212 #ifndef FEAT_GUI_W32 |
5580 | 213 /* |
214 * Version of ReadConsoleInput() that works with IME. | |
5590 | 215 * Works around problems on Windows 8. |
5580 | 216 */ |
217 static BOOL | |
218 read_console_input( | |
5590 | 219 HANDLE hInput, |
220 INPUT_RECORD *lpBuffer, | |
221 DWORD nLength, | |
222 LPDWORD lpEvents) | |
5580 | 223 { |
224 enum | |
225 { | |
5590 | 226 IRSIZE = 10 |
5580 | 227 }; |
5590 | 228 static INPUT_RECORD s_irCache[IRSIZE]; |
5580 | 229 static DWORD s_dwIndex = 0; |
230 static DWORD s_dwMax = 0; | |
5590 | 231 DWORD dwEvents; |
5635 | 232 int head; |
233 int tail; | |
234 int i; | |
5580 | 235 |
6981 | 236 if (nLength == -2) |
237 return (s_dwMax > 0) ? TRUE : FALSE; | |
238 | |
5633 | 239 if (!win8_or_later) |
240 { | |
241 if (nLength == -1) | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
242 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
243 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents); |
5633 | 244 } |
245 | |
5580 | 246 if (s_dwMax == 0) |
247 { | |
5590 | 248 if (nLength == -1) |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
249 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
250 if (!ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents)) |
5590 | 251 return FALSE; |
5580 | 252 s_dwIndex = 0; |
5590 | 253 s_dwMax = dwEvents; |
254 if (dwEvents == 0) | |
5580 | 255 { |
5590 | 256 *lpEvents = 0; |
257 return TRUE; | |
5580 | 258 } |
5635 | 259 |
260 if (s_dwMax > 1) | |
261 { | |
262 head = 0; | |
263 tail = s_dwMax - 1; | |
264 while (head != tail) | |
265 { | |
266 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT | |
267 && s_irCache[head + 1].EventType | |
268 == WINDOW_BUFFER_SIZE_EVENT) | |
269 { | |
270 /* Remove duplicate event to avoid flicker. */ | |
271 for (i = head; i < tail; ++i) | |
272 s_irCache[i] = s_irCache[i + 1]; | |
273 --tail; | |
274 continue; | |
275 } | |
276 head++; | |
277 } | |
278 s_dwMax = tail + 1; | |
279 } | |
5580 | 280 } |
5635 | 281 |
5590 | 282 *lpBuffer = s_irCache[s_dwIndex]; |
6981 | 283 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax) |
5580 | 284 s_dwMax = 0; |
5590 | 285 *lpEvents = 1; |
5580 | 286 return TRUE; |
287 } | |
288 | |
289 /* | |
290 * Version of PeekConsoleInput() that works with IME. | |
291 */ | |
292 static BOOL | |
293 peek_console_input( | |
5590 | 294 HANDLE hInput, |
295 INPUT_RECORD *lpBuffer, | |
296 DWORD nLength, | |
297 LPDWORD lpEvents) | |
5580 | 298 { |
5590 | 299 return read_console_input(hInput, lpBuffer, -1, lpEvents); |
5580 | 300 } |
301 | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
302 # ifdef FEAT_CLIENTSERVER |
6981 | 303 static DWORD |
304 msg_wait_for_multiple_objects( | |
305 DWORD nCount, | |
306 LPHANDLE pHandles, | |
307 BOOL fWaitAll, | |
308 DWORD dwMilliseconds, | |
309 DWORD dwWakeMask) | |
310 { | |
311 if (read_console_input(NULL, NULL, -2, NULL)) | |
312 return WAIT_OBJECT_0; | |
313 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll, | |
314 dwMilliseconds, dwWakeMask); | |
315 } | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
316 # endif |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
317 |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
318 # ifndef FEAT_CLIENTSERVER |
6981 | 319 static DWORD |
320 wait_for_single_object( | |
321 HANDLE hHandle, | |
322 DWORD dwMilliseconds) | |
323 { | |
324 if (read_console_input(NULL, NULL, -2, NULL)) | |
325 return WAIT_OBJECT_0; | |
326 return WaitForSingleObject(hHandle, dwMilliseconds); | |
327 } | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
328 # endif |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
329 #endif |
6981 | 330 |
7 | 331 static void |
332 get_exe_name(void) | |
333 { | |
2630 | 334 /* Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned |
335 * as the maximum length that works (plus a NUL byte). */ | |
336 #define MAX_ENV_PATH_LEN 8192 | |
337 char temp[MAX_ENV_PATH_LEN]; | |
2612 | 338 char_u *p; |
7 | 339 |
340 if (exe_name == NULL) | |
341 { | |
342 /* store the name of the executable, may be used for $VIM */ | |
2630 | 343 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1); |
7 | 344 if (*temp != NUL) |
345 exe_name = FullName_save((char_u *)temp, FALSE); | |
346 } | |
819 | 347 |
2612 | 348 if (exe_path == NULL && exe_name != NULL) |
819 | 349 { |
2615 | 350 exe_path = vim_strnsave(exe_name, |
351 (int)(gettail_sep(exe_name) - exe_name)); | |
2612 | 352 if (exe_path != NULL) |
819 | 353 { |
2612 | 354 /* Append our starting directory to $PATH, so that when doing |
355 * "!xxd" it's found in our starting directory. Needed because | |
356 * SearchPath() also looks there. */ | |
357 p = mch_getenv("PATH"); | |
2630 | 358 if (p == NULL |
359 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN) | |
2612 | 360 { |
2630 | 361 if (p == NULL || *p == NUL) |
362 temp[0] = NUL; | |
363 else | |
364 { | |
365 STRCPY(temp, p); | |
366 STRCAT(temp, ";"); | |
367 } | |
2612 | 368 STRCAT(temp, exe_path); |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
369 vim_setenv((char_u *)"PATH", (char_u *)temp); |
2612 | 370 } |
819 | 371 } |
372 } | |
7 | 373 } |
374 | |
2612 | 375 /* |
3361 | 376 * Unescape characters in "p" that appear in "escaped". |
377 */ | |
378 static void | |
379 unescape_shellxquote(char_u *p, char_u *escaped) | |
380 { | |
3386 | 381 int l = (int)STRLEN(p); |
3361 | 382 int n; |
383 | |
384 while (*p != NUL) | |
385 { | |
386 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL) | |
387 mch_memmove(p, p + 1, l--); | |
388 #ifdef FEAT_MBYTE | |
389 n = (*mb_ptr2len)(p); | |
390 #else | |
391 n = 1; | |
392 #endif | |
393 p += n; | |
394 l -= n; | |
395 } | |
396 } | |
397 | |
398 /* | |
2612 | 399 * Load library "name". |
400 */ | |
401 HINSTANCE | |
402 vimLoadLib(char *name) | |
403 { | |
3902 | 404 HINSTANCE dll = NULL; |
3889 | 405 |
406 /* NOTE: Do not use mch_dirname() and mch_chdir() here, they may call | |
407 * vimLoadLib() recursively, which causes a stack overflow. */ | |
2612 | 408 if (exe_path == NULL) |
409 get_exe_name(); | |
3902 | 410 if (exe_path != NULL) |
2612 | 411 { |
3902 | 412 WCHAR old_dirw[MAXPATHL]; |
413 | |
414 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0) | |
415 { | |
416 /* Change directory to where the executable is, both to make | |
417 * sure we find a .dll there and to avoid looking for a .dll | |
418 * in the current directory. */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
419 SetCurrentDirectory((LPCSTR)exe_path); |
3902 | 420 dll = LoadLibrary(name); |
421 SetCurrentDirectoryW(old_dirw); | |
422 return dll; | |
423 } | |
2612 | 424 } |
425 return dll; | |
426 } | |
427 | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
428 #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
|
429 /* |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
430 * 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
|
431 * 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
|
432 * 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
|
433 */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
434 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
|
435 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
|
436 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
437 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
|
438 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
|
439 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
|
440 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
|
441 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
|
442 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
|
443 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
|
444 |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
445 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
|
446 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
|
447 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
|
448 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
|
449 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
|
450 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
|
451 + 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
|
452 .VirtualAddress); |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
453 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
|
454 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
455 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
|
456 continue; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
457 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
|
458 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
|
459 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
|
460 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
461 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
|
462 continue; |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
463 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
|
464 + (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
|
465 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
|
466 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
467 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
|
468 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
469 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
|
470 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
|
471 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
|
472 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
|
473 default: |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
474 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
|
475 } |
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 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
|
480 } |
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 * 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
|
484 */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
485 HINSTANCE |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
486 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
|
487 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
488 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
|
489 |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
490 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
|
491 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
|
492 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
|
493 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
|
494 } |
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 * 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
|
498 */ |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
499 void * |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
500 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
|
501 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
502 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
|
503 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
504 #endif |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
505 |
7 | 506 #if defined(DYNAMIC_GETTEXT) || defined(PROTO) |
507 # ifndef GETTEXT_DLL | |
508 # define GETTEXT_DLL "libintl.dll" | |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
509 # define GETTEXT_DLL_ALT "libintl-8.dll" |
7 | 510 # endif |
3622 | 511 /* Dummy functions */ |
36 | 512 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
|
513 static char *null_libintl_ngettext(const char *, const char *, unsigned long n); |
36 | 514 static char *null_libintl_textdomain(const char *); |
515 static char *null_libintl_bindtextdomain(const char *, const char *); | |
516 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
|
517 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
|
518 static int null_libintl_wputenv(const wchar_t *); |
7 | 519 |
2612 | 520 static HINSTANCE hLibintlDLL = NULL; |
36 | 521 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
|
522 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
|
523 = null_libintl_ngettext; |
36 | 524 char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain; |
525 char *(*dyn_libintl_bindtextdomain)(const char *, const char *) | |
7 | 526 = null_libintl_bindtextdomain; |
36 | 527 char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *) |
528 = 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
|
529 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
|
530 int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv; |
7 | 531 |
532 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
533 dyn_libintl_init(void) |
7 | 534 { |
535 int i; | |
536 static struct | |
537 { | |
538 char *name; | |
539 FARPROC *ptr; | |
540 } libintl_entry[] = | |
541 { | |
542 {"gettext", (FARPROC*)&dyn_libintl_gettext}, | |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
543 {"ngettext", (FARPROC*)&dyn_libintl_ngettext}, |
7 | 544 {"textdomain", (FARPROC*)&dyn_libintl_textdomain}, |
545 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain}, | |
546 {NULL, NULL} | |
547 }; | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
548 HINSTANCE hmsvcrt; |
7 | 549 |
550 /* No need to initialize twice. */ | |
551 if (hLibintlDLL) | |
552 return 1; | |
553 /* Load gettext library (libintl.dll) */ | |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
554 hLibintlDLL = vimLoadLib(GETTEXT_DLL); |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
555 #ifdef GETTEXT_DLL_ALT |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
556 if (!hLibintlDLL) |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
557 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT); |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
558 #endif |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
559 if (!hLibintlDLL) |
7 | 560 { |
2612 | 561 if (p_verbose > 0) |
7 | 562 { |
2612 | 563 verbose_enter(); |
564 EMSG2(_(e_loadlib), GETTEXT_DLL); | |
565 verbose_leave(); | |
7 | 566 } |
2612 | 567 return 0; |
7 | 568 } |
569 for (i = 0; libintl_entry[i].name != NULL | |
570 && libintl_entry[i].ptr != NULL; ++i) | |
571 { | |
572 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL, | |
573 libintl_entry[i].name)) == NULL) | |
574 { | |
575 dyn_libintl_end(); | |
576 if (p_verbose > 0) | |
292 | 577 { |
578 verbose_enter(); | |
7 | 579 EMSG2(_(e_loadfunc), libintl_entry[i].name); |
292 | 580 verbose_leave(); |
581 } | |
7 | 582 return 0; |
583 } | |
584 } | |
36 | 585 |
586 /* The bind_textdomain_codeset() function is optional. */ | |
323 | 587 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL, |
36 | 588 "bind_textdomain_codeset"); |
589 if (dyn_libintl_bind_textdomain_codeset == NULL) | |
590 dyn_libintl_bind_textdomain_codeset = | |
591 null_libintl_bind_textdomain_codeset; | |
592 | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
593 /* _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
|
594 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
|
595 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
|
596 { |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
597 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
|
598 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
|
599 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
600 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
|
601 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
|
602 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
|
603 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
|
604 |
7 | 605 return 1; |
606 } | |
607 | |
608 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
609 dyn_libintl_end(void) |
7 | 610 { |
611 if (hLibintlDLL) | |
612 FreeLibrary(hLibintlDLL); | |
613 hLibintlDLL = NULL; | |
614 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
|
615 dyn_libintl_ngettext = null_libintl_ngettext; |
7 | 616 dyn_libintl_textdomain = null_libintl_textdomain; |
617 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain; | |
36 | 618 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
|
619 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
|
620 dyn_libintl_wputenv = null_libintl_wputenv; |
7 | 621 } |
622 | |
623 static char * | |
26 | 624 null_libintl_gettext(const char *msgid) |
7 | 625 { |
626 return (char*)msgid; | |
627 } | |
628 | |
629 static char * | |
9754
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
630 null_libintl_ngettext( |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
631 const char *msgid, |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
632 const char *msgid_plural, |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
633 unsigned long n) |
a990e7ed260b
commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents:
9750
diff
changeset
|
634 { |
9762
93dcc4329c74
commit https://github.com/vim/vim/commit/c90f2aedd0a5dc2cc75bc9b5f475f8a3e3fe36b1
Christian Brabandt <cb@256bit.org>
parents:
9754
diff
changeset
|
635 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
|
636 } |
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 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
|
639 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
|
640 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
|
641 const char *dirname UNUSED) |
7 | 642 { |
643 return NULL; | |
644 } | |
645 | |
646 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
|
647 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
|
648 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
|
649 const char *codeset UNUSED) |
36 | 650 { |
651 return NULL; | |
652 } | |
653 | |
654 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
|
655 null_libintl_textdomain(const char *domainname UNUSED) |
7 | 656 { |
657 return NULL; | |
658 } | |
659 | |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
660 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
|
661 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
|
662 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
663 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
|
664 } |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
665 |
10781
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
666 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
|
667 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
|
668 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
669 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
|
670 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
671 |
7 | 672 #endif /* DYNAMIC_GETTEXT */ |
673 | |
674 /* This symbol is not defined in older versions of the SDK or Visual C++ */ | |
675 | |
676 #ifndef VER_PLATFORM_WIN32_WINDOWS | |
677 # define VER_PLATFORM_WIN32_WINDOWS 1 | |
678 #endif | |
679 | |
680 DWORD g_PlatformId; | |
681 | |
682 #ifdef HAVE_ACL | |
3927 | 683 # ifndef PROTO |
684 # include <aclapi.h> | |
685 # endif | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
686 # ifndef PROTECTED_DACL_SECURITY_INFORMATION |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
687 # define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
688 # endif |
7 | 689 #endif |
690 | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
691 #ifdef HAVE_ACL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
692 /* |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
693 * Enables or disables the specified privilege. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
694 */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
695 static BOOL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
696 win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
697 { |
5590 | 698 BOOL bResult; |
699 LUID luid; | |
700 HANDLE hToken; | |
701 TOKEN_PRIVILEGES tokenPrivileges; | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
702 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
703 if (!OpenProcessToken(GetCurrentProcess(), |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
704 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
705 return FALSE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
706 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
707 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid)) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
708 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
709 CloseHandle(hToken); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
710 return FALSE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
711 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
712 |
6047 | 713 tokenPrivileges.PrivilegeCount = 1; |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
714 tokenPrivileges.Privileges[0].Luid = luid; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
715 tokenPrivileges.Privileges[0].Attributes = bEnable ? |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
716 SE_PRIVILEGE_ENABLED : 0; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
717 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
718 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges, |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
719 sizeof(TOKEN_PRIVILEGES), NULL, NULL); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
720 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
721 CloseHandle(hToken); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
722 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
723 return bResult && GetLastError() == ERROR_SUCCESS; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
724 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
725 #endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
726 |
7 | 727 /* |
728 * Set g_PlatformId to VER_PLATFORM_WIN32_NT (NT) or | |
729 * VER_PLATFORM_WIN32_WINDOWS (Win95). | |
730 */ | |
731 void | |
732 PlatformId(void) | |
733 { | |
734 static int done = FALSE; | |
735 | |
736 if (!done) | |
737 { | |
738 OSVERSIONINFO ovi; | |
739 | |
740 ovi.dwOSVersionInfoSize = sizeof(ovi); | |
741 GetVersionEx(&ovi); | |
742 | |
743 g_PlatformId = ovi.dwPlatformId; | |
744 | |
5633 | 745 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2) |
746 || ovi.dwMajorVersion > 6) | |
747 win8_or_later = TRUE; | |
748 | |
7 | 749 #ifdef HAVE_ACL |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
750 /* 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
|
751 win32_enable_privilege(SE_SECURITY_NAME, TRUE); |
7 | 752 #endif |
753 done = TRUE; | |
754 } | |
755 } | |
756 | |
757 #ifndef FEAT_GUI_W32 | |
758 | |
759 #define SHIFT (SHIFT_PRESSED) | |
760 #define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED) | |
761 #define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED) | |
762 #define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED) | |
763 | |
764 | |
765 /* When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode. | |
766 * We map function keys to their ANSI terminal equivalents, as produced | |
767 * by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any | |
768 * ANSI key with a value >= '\300' is nonstandard, but provided anyway | |
769 * so that the user can have access to all SHIFT-, CTRL-, and ALT- | |
770 * combinations of function/arrow/etc keys. | |
771 */ | |
772 | |
297 | 773 static const struct |
7 | 774 { |
775 WORD wVirtKey; | |
776 BOOL fAnsiKey; | |
777 int chAlone; | |
778 int chShift; | |
779 int chCtrl; | |
780 int chAlt; | |
781 } VirtKeyMap[] = | |
782 { | |
783 | |
784 /* Key ANSI alone shift ctrl alt */ | |
785 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, }, | |
786 | |
787 { VK_F1, TRUE, ';', 'T', '^', 'h', }, | |
788 { VK_F2, TRUE, '<', 'U', '_', 'i', }, | |
789 { VK_F3, TRUE, '=', 'V', '`', 'j', }, | |
790 { VK_F4, TRUE, '>', 'W', 'a', 'k', }, | |
791 { VK_F5, TRUE, '?', 'X', 'b', 'l', }, | |
792 { VK_F6, TRUE, '@', 'Y', 'c', 'm', }, | |
793 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', }, | |
794 { VK_F8, TRUE, 'B', '[', 'e', 'o', }, | |
795 { VK_F9, TRUE, 'C', '\\', 'f', 'p', }, | |
796 { VK_F10, TRUE, 'D', ']', 'g', 'q', }, | |
797 { VK_F11, TRUE, '\205', '\207', '\211', '\213', }, | |
798 { VK_F12, TRUE, '\206', '\210', '\212', '\214', }, | |
799 | |
800 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', }, | |
801 { VK_UP, TRUE, 'H', '\304', '\305', '\306', }, | |
802 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, /*PgUp*/ | |
803 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', }, | |
804 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', }, | |
805 { VK_END, TRUE, 'O', '\315', 'u', '\316', }, | |
806 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', }, | |
807 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, /*PgDn*/ | |
808 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', }, | |
809 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', }, | |
810 | |
811 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, /*PrtScrn*/ | |
812 | |
813 #if 0 | |
814 /* Most people don't have F13-F20, but what the hell... */ | |
815 { VK_F13, TRUE, '\332', '\333', '\334', '\335', }, | |
816 { VK_F14, TRUE, '\336', '\337', '\340', '\341', }, | |
817 { VK_F15, TRUE, '\342', '\343', '\344', '\345', }, | |
818 { VK_F16, TRUE, '\346', '\347', '\350', '\351', }, | |
819 { VK_F17, TRUE, '\352', '\353', '\354', '\355', }, | |
820 { VK_F18, TRUE, '\356', '\357', '\360', '\361', }, | |
821 { VK_F19, TRUE, '\362', '\363', '\364', '\365', }, | |
822 { VK_F20, TRUE, '\366', '\367', '\370', '\371', }, | |
823 #endif | |
824 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, /* keyp '+' */ | |
825 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, /* keyp '-' */ | |
826 /* { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, keyp '/' */ | |
827 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, /* keyp '*' */ | |
828 | |
829 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', }, | |
830 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', }, | |
831 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', }, | |
832 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', }, | |
833 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', }, | |
834 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', }, | |
835 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', }, | |
836 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', }, | |
837 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', }, | |
838 /* Sorry, out of number space! <negri>*/ | |
839 { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', }, | |
840 | |
841 }; | |
842 | |
843 | |
844 #ifdef _MSC_VER | |
845 // The ToAscii bug destroys several registers. Need to turn off optimization | |
846 // or the GetConsoleKeyboardLayoutName hack will fail in non-debug versions | |
797 | 847 # pragma warning(push) |
848 # pragma warning(disable: 4748) | |
7 | 849 # pragma optimize("", off) |
850 #endif | |
851 | |
852 #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
|
853 # define UChar UnicodeChar |
7 | 854 #else |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
855 # define UChar uChar.UnicodeChar |
7 | 856 #endif |
857 | |
858 /* The return code indicates key code size. */ | |
859 static int | |
860 #ifdef __BORLANDC__ | |
861 __stdcall | |
862 #endif | |
863 win32_kbd_patch_key( | |
26 | 864 KEY_EVENT_RECORD *pker) |
7 | 865 { |
866 UINT uMods = pker->dwControlKeyState; | |
867 static int s_iIsDead = 0; | |
868 static WORD awAnsiCode[2]; | |
869 static BYTE abKeystate[256]; | |
870 | |
871 | |
872 if (s_iIsDead == 2) | |
873 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
874 pker->UChar = (WCHAR) awAnsiCode[1]; |
7 | 875 s_iIsDead = 0; |
876 return 1; | |
877 } | |
878 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
879 if (pker->UChar != 0) |
7 | 880 return 1; |
881 | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
1752
diff
changeset
|
882 vim_memset(abKeystate, 0, sizeof (abKeystate)); |
7 | 883 |
884 /* Clear any pending dead keys */ | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
885 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0); |
7 | 886 |
887 if (uMods & SHIFT_PRESSED) | |
888 abKeystate[VK_SHIFT] = 0x80; | |
889 if (uMods & CAPSLOCK_ON) | |
890 abKeystate[VK_CAPITAL] = 1; | |
891 | |
892 if ((uMods & ALT_GR) == ALT_GR) | |
893 { | |
894 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] = | |
895 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80; | |
896 } | |
897 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
898 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
|
899 abKeystate, awAnsiCode, 2, 0); |
7 | 900 |
901 if (s_iIsDead > 0) | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
902 pker->UChar = (WCHAR) awAnsiCode[0]; |
7 | 903 |
904 return s_iIsDead; | |
905 } | |
906 | |
907 #ifdef _MSC_VER | |
908 /* MUST switch optimization on again here, otherwise a call to | |
909 * decode_key_event() may crash (e.g. when hitting caps-lock) */ | |
910 # pragma optimize("", on) | |
797 | 911 # pragma warning(pop) |
7 | 912 |
913 # if (_MSC_VER < 1100) | |
914 /* MUST turn off global optimisation for this next function, or | |
915 * pressing ctrl-minus in insert mode crashes Vim when built with | |
916 * VC4.1. -- negri. */ | |
917 # pragma optimize("g", off) | |
918 # endif | |
919 #endif | |
920 | |
921 static BOOL g_fJustGotFocus = FALSE; | |
922 | |
923 /* | |
924 * Decode a KEY_EVENT into one or two keystrokes | |
925 */ | |
926 static BOOL | |
927 decode_key_event( | |
928 KEY_EVENT_RECORD *pker, | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
929 WCHAR *pch, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
930 WCHAR *pch2, |
7 | 931 int *pmodifiers, |
932 BOOL fDoPost) | |
933 { | |
934 int i; | |
935 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL); | |
936 | |
937 *pch = *pch2 = NUL; | |
938 g_fJustGotFocus = FALSE; | |
939 | |
940 /* ignore key up events */ | |
941 if (!pker->bKeyDown) | |
942 return FALSE; | |
943 | |
944 /* ignore some keystrokes */ | |
945 switch (pker->wVirtualKeyCode) | |
946 { | |
947 /* modifiers */ | |
948 case VK_SHIFT: | |
949 case VK_CONTROL: | |
950 case VK_MENU: /* Alt key */ | |
951 return FALSE; | |
952 | |
953 default: | |
954 break; | |
955 } | |
956 | |
957 /* special cases */ | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
958 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL) |
7 | 959 { |
960 /* Ctrl-6 is Ctrl-^ */ | |
961 if (pker->wVirtualKeyCode == '6') | |
962 { | |
963 *pch = Ctrl_HAT; | |
964 return TRUE; | |
965 } | |
966 /* Ctrl-2 is Ctrl-@ */ | |
967 else if (pker->wVirtualKeyCode == '2') | |
968 { | |
969 *pch = NUL; | |
970 return TRUE; | |
971 } | |
972 /* Ctrl-- is Ctrl-_ */ | |
973 else if (pker->wVirtualKeyCode == 0xBD) | |
974 { | |
975 *pch = Ctrl__; | |
976 return TRUE; | |
977 } | |
978 } | |
979 | |
980 /* Shift-TAB */ | |
981 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED)) | |
982 { | |
983 *pch = K_NUL; | |
984 *pch2 = '\017'; | |
985 return TRUE; | |
986 } | |
987 | |
988 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; ) | |
989 { | |
990 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode) | |
991 { | |
992 if (nModifs == 0) | |
993 *pch = VirtKeyMap[i].chAlone; | |
994 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0) | |
995 *pch = VirtKeyMap[i].chShift; | |
996 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0) | |
997 *pch = VirtKeyMap[i].chCtrl; | |
998 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0) | |
999 *pch = VirtKeyMap[i].chAlt; | |
1000 | |
1001 if (*pch != 0) | |
1002 { | |
1003 if (VirtKeyMap[i].fAnsiKey) | |
1004 { | |
1005 *pch2 = *pch; | |
1006 *pch = K_NUL; | |
1007 } | |
1008 | |
1009 return TRUE; | |
1010 } | |
1011 } | |
1012 } | |
1013 | |
1014 i = win32_kbd_patch_key(pker); | |
1015 | |
1016 if (i < 0) | |
1017 *pch = NUL; | |
1018 else | |
1019 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1020 *pch = (i > 0) ? pker->UChar : NUL; |
7 | 1021 |
1022 if (pmodifiers != NULL) | |
1023 { | |
1024 /* Pass on the ALT key as a modifier, but only when not combined | |
1025 * with CTRL (which is ALTGR). */ | |
1026 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0) | |
1027 *pmodifiers |= MOD_MASK_ALT; | |
1028 | |
1029 /* Pass on SHIFT only for special keys, because we don't know when | |
1030 * it's already included with the character. */ | |
1031 if ((nModifs & SHIFT) != 0 && *pch <= 0x20) | |
1032 *pmodifiers |= MOD_MASK_SHIFT; | |
1033 | |
1034 /* Pass on CTRL only for non-special keys, because we don't know | |
1035 * when it's already included with the character. And not when | |
1036 * combined with ALT (which is ALTGR). */ | |
1037 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0 | |
1038 && *pch >= 0x20 && *pch < 0x80) | |
1039 *pmodifiers |= MOD_MASK_CTRL; | |
1040 } | |
1041 } | |
1042 | |
1043 return (*pch != NUL); | |
1044 } | |
1045 | |
1046 #ifdef _MSC_VER | |
1047 # pragma optimize("", on) | |
1048 #endif | |
1049 | |
1050 #endif /* FEAT_GUI_W32 */ | |
1051 | |
1052 | |
1053 #ifdef FEAT_MOUSE | |
1054 | |
1055 /* | |
1056 * For the GUI the mouse handling is in gui_w32.c. | |
1057 */ | |
1058 # ifdef FEAT_GUI_W32 | |
1059 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
|
1060 mch_setmouse(int on UNUSED) |
7 | 1061 { |
1062 } | |
1063 # else | |
1064 static int g_fMouseAvail = FALSE; /* mouse present */ | |
1065 static int g_fMouseActive = FALSE; /* mouse enabled */ | |
1066 static int g_nMouseClick = -1; /* mouse status */ | |
1067 static int g_xMouse; /* mouse x coordinate */ | |
1068 static int g_yMouse; /* mouse y coordinate */ | |
1069 | |
1070 /* | |
1071 * Enable or disable mouse input | |
1072 */ | |
1073 void | |
26 | 1074 mch_setmouse(int on) |
7 | 1075 { |
1076 DWORD cmodein; | |
1077 | |
1078 if (!g_fMouseAvail) | |
1079 return; | |
1080 | |
1081 g_fMouseActive = on; | |
1082 GetConsoleMode(g_hConIn, &cmodein); | |
1083 | |
1084 if (g_fMouseActive) | |
1085 cmodein |= ENABLE_MOUSE_INPUT; | |
1086 else | |
1087 cmodein &= ~ENABLE_MOUSE_INPUT; | |
1088 | |
1089 SetConsoleMode(g_hConIn, cmodein); | |
1090 } | |
1091 | |
1092 /* | |
1093 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT, | |
1094 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse | |
1095 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG | |
1096 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type, | |
1097 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick, | |
1098 * and we return the mouse position in g_xMouse and g_yMouse. | |
1099 * | |
1100 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more | |
1101 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only | |
1102 * by MOUSE_LEFT, _MIDDLE, or _RIGHT. | |
1103 * | |
1104 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE, | |
1105 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, .... | |
1106 * | |
1107 * Windows will send us MOUSE_MOVED notifications whenever the mouse | |
1108 * moves, even if it stays within the same character cell. We ignore | |
1109 * all MOUSE_MOVED messages if the position hasn't really changed, and | |
1110 * we ignore all MOUSE_MOVED messages where no button is held down (i.e., | |
1111 * we're only interested in MOUSE_DRAG). | |
1112 * | |
1113 * All of this is complicated by the code that fakes MOUSE_MIDDLE on | |
1114 * 2-button mouses by pressing the left & right buttons simultaneously. | |
1115 * In practice, it's almost impossible to click both at the same time, | |
1116 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE | |
1117 * in such cases, if the user is clicking quickly. | |
1118 */ | |
1119 static BOOL | |
1120 decode_mouse_event( | |
26 | 1121 MOUSE_EVENT_RECORD *pmer) |
7 | 1122 { |
1123 static int s_nOldButton = -1; | |
1124 static int s_nOldMouseClick = -1; | |
1125 static int s_xOldMouse = -1; | |
1126 static int s_yOldMouse = -1; | |
1127 static linenr_T s_old_topline = 0; | |
1128 #ifdef FEAT_DIFF | |
1129 static int s_old_topfill = 0; | |
1130 #endif | |
1131 static int s_cClicks = 1; | |
1132 static BOOL s_fReleased = TRUE; | |
1133 static DWORD s_dwLastClickTime = 0; | |
1134 static BOOL s_fNextIsMiddle = FALSE; | |
1135 | |
1136 static DWORD cButtons = 0; /* number of buttons supported */ | |
1137 | |
1138 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED; | |
1139 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED; | |
1140 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED; | |
1141 const DWORD LEFT_RIGHT = LEFT | RIGHT; | |
1142 | |
1143 int nButton; | |
1144 | |
1145 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons)) | |
1146 cButtons = 2; | |
1147 | |
1148 if (!g_fMouseAvail || !g_fMouseActive) | |
1149 { | |
1150 g_nMouseClick = -1; | |
1151 return FALSE; | |
1152 } | |
1153 | |
1154 /* get a spurious MOUSE_EVENT immediately after receiving focus; ignore */ | |
1155 if (g_fJustGotFocus) | |
1156 { | |
1157 g_fJustGotFocus = FALSE; | |
1158 return FALSE; | |
1159 } | |
1160 | |
1161 /* unprocessed mouse click? */ | |
1162 if (g_nMouseClick != -1) | |
1163 return TRUE; | |
1164 | |
1165 nButton = -1; | |
1166 g_xMouse = pmer->dwMousePosition.X; | |
1167 g_yMouse = pmer->dwMousePosition.Y; | |
1168 | |
1169 if (pmer->dwEventFlags == MOUSE_MOVED) | |
1170 { | |
1171 /* ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these | |
1172 * events even when the mouse moves only within a char cell.) */ | |
1173 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse) | |
1174 return FALSE; | |
1175 } | |
1176 | |
1177 /* If no buttons are pressed... */ | |
1178 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0) | |
1179 { | |
1180 /* If the last thing returned was MOUSE_RELEASE, ignore this */ | |
1181 if (s_fReleased) | |
1182 return FALSE; | |
1183 | |
1184 nButton = MOUSE_RELEASE; | |
1185 s_fReleased = TRUE; | |
1186 } | |
1187 else /* one or more buttons pressed */ | |
1188 { | |
1189 /* on a 2-button mouse, hold down left and right buttons | |
1190 * simultaneously to get MIDDLE. */ | |
1191 | |
1192 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG) | |
1193 { | |
1194 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT); | |
1195 | |
1196 /* if either left or right button only is pressed, see if the | |
4352 | 1197 * next mouse event has both of them pressed */ |
7 | 1198 if (dwLR == LEFT || dwLR == RIGHT) |
1199 { | |
1200 for (;;) | |
1201 { | |
1202 /* wait a short time for next input event */ | |
1203 if (WaitForSingleObject(g_hConIn, p_mouset / 3) | |
1204 != WAIT_OBJECT_0) | |
1205 break; | |
1206 else | |
1207 { | |
1208 DWORD cRecords = 0; | |
1209 INPUT_RECORD ir; | |
1210 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent; | |
1211 | |
5580 | 1212 peek_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1213 |
1214 if (cRecords == 0 || ir.EventType != MOUSE_EVENT | |
1215 || !(pmer2->dwButtonState & LEFT_RIGHT)) | |
1216 break; | |
1217 else | |
1218 { | |
1219 if (pmer2->dwEventFlags != MOUSE_MOVED) | |
1220 { | |
5580 | 1221 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1222 |
1223 return decode_mouse_event(pmer2); | |
1224 } | |
1225 else if (s_xOldMouse == pmer2->dwMousePosition.X && | |
1226 s_yOldMouse == pmer2->dwMousePosition.Y) | |
1227 { | |
1228 /* throw away spurious mouse move */ | |
5580 | 1229 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1230 |
1231 /* are there any more mouse events in queue? */ | |
5580 | 1232 peek_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1233 |
1234 if (cRecords==0 || ir.EventType != MOUSE_EVENT) | |
1235 break; | |
1236 } | |
1237 else | |
1238 break; | |
1239 } | |
1240 } | |
1241 } | |
1242 } | |
1243 } | |
1244 | |
1245 if (s_fNextIsMiddle) | |
1246 { | |
1247 nButton = (pmer->dwEventFlags == MOUSE_MOVED) | |
1248 ? MOUSE_DRAG : MOUSE_MIDDLE; | |
1249 s_fNextIsMiddle = FALSE; | |
1250 } | |
1251 else if (cButtons == 2 && | |
1252 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT)) | |
1253 { | |
1254 nButton = MOUSE_MIDDLE; | |
1255 | |
1256 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED) | |
1257 { | |
1258 s_fNextIsMiddle = TRUE; | |
1259 nButton = MOUSE_RELEASE; | |
1260 } | |
1261 } | |
1262 else if ((pmer->dwButtonState & LEFT) == LEFT) | |
1263 nButton = MOUSE_LEFT; | |
1264 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE) | |
1265 nButton = MOUSE_MIDDLE; | |
1266 else if ((pmer->dwButtonState & RIGHT) == RIGHT) | |
1267 nButton = MOUSE_RIGHT; | |
1268 | |
1269 if (! s_fReleased && ! s_fNextIsMiddle | |
1270 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG) | |
1271 return FALSE; | |
1272 | |
1273 s_fReleased = s_fNextIsMiddle; | |
1274 } | |
1275 | |
1276 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK) | |
1277 { | |
1278 /* button pressed or released, without mouse moving */ | |
1279 if (nButton != -1 && nButton != MOUSE_RELEASE) | |
1280 { | |
1281 DWORD dwCurrentTime = GetTickCount(); | |
1282 | |
1283 if (s_xOldMouse != g_xMouse | |
1284 || s_yOldMouse != g_yMouse | |
1285 || s_nOldButton != nButton | |
1286 || s_old_topline != curwin->w_topline | |
1287 #ifdef FEAT_DIFF | |
1288 || s_old_topfill != curwin->w_topfill | |
1289 #endif | |
1290 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset) | |
1291 { | |
1292 s_cClicks = 1; | |
1293 } | |
1294 else if (++s_cClicks > 4) | |
1295 { | |
1296 s_cClicks = 1; | |
1297 } | |
1298 | |
1299 s_dwLastClickTime = dwCurrentTime; | |
1300 } | |
1301 } | |
1302 else if (pmer->dwEventFlags == MOUSE_MOVED) | |
1303 { | |
1304 if (nButton != -1 && nButton != MOUSE_RELEASE) | |
1305 nButton = MOUSE_DRAG; | |
1306 | |
1307 s_cClicks = 1; | |
1308 } | |
1309 | |
1310 if (nButton == -1) | |
1311 return FALSE; | |
1312 | |
1313 if (nButton != MOUSE_RELEASE) | |
1314 s_nOldButton = nButton; | |
1315 | |
1316 g_nMouseClick = nButton; | |
1317 | |
1318 if (pmer->dwControlKeyState & SHIFT_PRESSED) | |
1319 g_nMouseClick |= MOUSE_SHIFT; | |
1320 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)) | |
1321 g_nMouseClick |= MOUSE_CTRL; | |
1322 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)) | |
1323 g_nMouseClick |= MOUSE_ALT; | |
1324 | |
1325 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE) | |
1326 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks); | |
1327 | |
1328 /* only pass on interesting (i.e., different) mouse events */ | |
1329 if (s_xOldMouse == g_xMouse | |
1330 && s_yOldMouse == g_yMouse | |
1331 && s_nOldMouseClick == g_nMouseClick) | |
1332 { | |
1333 g_nMouseClick = -1; | |
1334 return FALSE; | |
1335 } | |
1336 | |
1337 s_xOldMouse = g_xMouse; | |
1338 s_yOldMouse = g_yMouse; | |
1339 s_old_topline = curwin->w_topline; | |
1340 #ifdef FEAT_DIFF | |
1341 s_old_topfill = curwin->w_topfill; | |
1342 #endif | |
1343 s_nOldMouseClick = g_nMouseClick; | |
1344 | |
1345 return TRUE; | |
1346 } | |
1347 | |
1348 # endif /* FEAT_GUI_W32 */ | |
1349 #endif /* FEAT_MOUSE */ | |
1350 | |
1351 | |
1352 #ifdef MCH_CURSOR_SHAPE | |
1353 /* | |
1354 * Set the shape of the cursor. | |
1355 * 'thickness' can be from 1 (thin) to 99 (block) | |
1356 */ | |
1357 static void | |
1358 mch_set_cursor_shape(int thickness) | |
1359 { | |
1360 CONSOLE_CURSOR_INFO ConsoleCursorInfo; | |
1361 ConsoleCursorInfo.dwSize = thickness; | |
1362 ConsoleCursorInfo.bVisible = s_cursor_visible; | |
1363 | |
1364 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo); | |
1365 if (s_cursor_visible) | |
1366 SetConsoleCursorPosition(g_hConOut, g_coord); | |
1367 } | |
1368 | |
1369 void | |
1370 mch_update_cursor(void) | |
1371 { | |
1372 int idx; | |
1373 int thickness; | |
1374 | |
1375 /* | |
1376 * How the cursor is drawn depends on the current mode. | |
1377 */ | |
1378 idx = get_shape_idx(FALSE); | |
1379 | |
1380 if (shape_table[idx].shape == SHAPE_BLOCK) | |
1381 thickness = 99; /* 100 doesn't work on W95 */ | |
1382 else | |
1383 thickness = shape_table[idx].percentage; | |
1384 mch_set_cursor_shape(thickness); | |
1385 } | |
1386 #endif | |
1387 | |
1388 #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */ | |
1389 /* | |
1390 * Handle FOCUS_EVENT. | |
1391 */ | |
1392 static void | |
1393 handle_focus_event(INPUT_RECORD ir) | |
1394 { | |
1395 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus; | |
1396 ui_focus_change((int)g_fJustGotFocus); | |
1397 } | |
1398 | |
1399 /* | |
1400 * Wait until console input from keyboard or mouse is available, | |
1401 * or the time is up. | |
1402 * Return TRUE if something is available FALSE if not. | |
1403 */ | |
1404 static int | |
1405 WaitForChar(long msec) | |
1406 { | |
1407 DWORD dwNow = 0, dwEndTime = 0; | |
1408 INPUT_RECORD ir; | |
1409 DWORD cRecords; | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1410 WCHAR ch, ch2; |
8949
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
1411 #ifdef FEAT_TIMERS |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1412 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
|
1413 #endif |
7 | 1414 |
1415 if (msec > 0) | |
1416 /* Wait until the specified time has elapsed. */ | |
1417 dwEndTime = GetTickCount() + msec; | |
1418 else if (msec < 0) | |
1419 /* Wait forever. */ | |
1420 dwEndTime = INFINITE; | |
1421 | |
1422 /* We need to loop until the end of the time period, because | |
1423 * we might get multiple unusable mouse events in that time. | |
1424 */ | |
1425 for (;;) | |
1426 { | |
7866
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1427 #ifdef MESSAGE_QUEUE |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1428 parse_queued_messages(); |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1429 #endif |
14 | 1430 #ifdef FEAT_MZSCHEME |
1431 mzvim_check_threads(); | |
1432 #endif | |
7 | 1433 #ifdef FEAT_CLIENTSERVER |
1434 serverProcessPendingMessages(); | |
1435 #endif | |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1436 |
7 | 1437 if (0 |
1438 #ifdef FEAT_MOUSE | |
1439 || g_nMouseClick != -1 | |
1440 #endif | |
1441 #ifdef FEAT_CLIENTSERVER | |
1442 || input_available() | |
1443 #endif | |
1444 ) | |
1445 return TRUE; | |
1446 | |
1447 if (msec > 0) | |
1448 { | |
5292
d5d6b78cff09
updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents:
5229
diff
changeset
|
1449 /* 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
|
1450 * GetTickCount() may wrap around (overflow). */ |
7 | 1451 dwNow = GetTickCount(); |
5292
d5d6b78cff09
updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents:
5229
diff
changeset
|
1452 if ((int)(dwNow - dwEndTime) >= 0) |
7 | 1453 break; |
1454 } | |
1455 if (msec != 0) | |
1456 { | |
14 | 1457 DWORD dwWaitTime = dwEndTime - dwNow; |
1458 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1459 #ifdef FEAT_JOB_CHANNEL |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1460 /* 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
|
1461 if (dwWaitTime > 100) |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1462 { |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1463 dwWaitTime = 100; |
10418
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1464 /* 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
|
1465 * 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
|
1466 if (channel_any_readahead()) |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1467 dwWaitTime = 10; |
56cb9538386c
commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents:
10406
diff
changeset
|
1468 } |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1469 #endif |
14 | 1470 #ifdef FEAT_MZSCHEME |
1471 if (mzthreads_allowed() && p_mzq > 0 | |
1472 && (msec < 0 || (long)dwWaitTime > p_mzq)) | |
1473 dwWaitTime = p_mzq; /* don't wait longer than 'mzquantum' */ | |
1474 #endif | |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1475 #ifdef FEAT_TIMERS |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1476 { |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1477 long due_time; |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1478 |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1479 /* 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
|
1480 if (dwWaitTime > 10) |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1481 { |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1482 /* 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
|
1483 * 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
|
1484 due_time = check_due_timer(); |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1485 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
|
1486 { |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1487 /* timer may have used feedkeys() */ |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1488 return FALSE; |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1489 } |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1490 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
|
1491 dwWaitTime = due_time; |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1492 } |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1493 } |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1494 #endif |
7 | 1495 #ifdef FEAT_CLIENTSERVER |
1496 /* Wait for either an event on the console input or a message in | |
1497 * the client-server window. */ | |
6981 | 1498 if (msg_wait_for_multiple_objects(1, &g_hConIn, FALSE, |
14 | 1499 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0) |
7 | 1500 #else |
6981 | 1501 if (wait_for_single_object(g_hConIn, dwWaitTime) != WAIT_OBJECT_0) |
7 | 1502 #endif |
1503 continue; | |
1504 } | |
1505 | |
1506 cRecords = 0; | |
5580 | 1507 peek_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1508 |
1509 #ifdef FEAT_MBYTE_IME | |
1510 if (State & CMDLINE && msg_row == Rows - 1) | |
1511 { | |
1512 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
1513 | |
1514 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
1515 { | |
1516 if (csbi.dwCursorPosition.Y != msg_row) | |
1517 { | |
1518 /* The screen is now messed up, must redraw the | |
1519 * command line and later all the windows. */ | |
1520 redraw_all_later(CLEAR); | |
1521 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y); | |
1522 redrawcmd(); | |
1523 } | |
1524 } | |
1525 } | |
1526 #endif | |
1527 | |
1528 if (cRecords > 0) | |
1529 { | |
1530 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown) | |
1531 { | |
1532 #ifdef FEAT_MBYTE_IME | |
1533 /* Windows IME sends two '\n's with only one 'ENTER'. First: | |
1534 * wVirtualKeyCode == 13. second: wVirtualKeyCode == 0 */ | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1535 if (ir.Event.KeyEvent.UChar == 0 |
7 | 1536 && ir.Event.KeyEvent.wVirtualKeyCode == 13) |
1537 { | |
5580 | 1538 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1539 continue; |
1540 } | |
1541 #endif | |
1542 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2, | |
1543 NULL, FALSE)) | |
1544 return TRUE; | |
1545 } | |
1546 | |
5580 | 1547 read_console_input(g_hConIn, &ir, 1, &cRecords); |
7 | 1548 |
1549 if (ir.EventType == FOCUS_EVENT) | |
1550 handle_focus_event(ir); | |
1551 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT) | |
1552 shell_resized(); | |
1553 #ifdef FEAT_MOUSE | |
1554 else if (ir.EventType == MOUSE_EVENT | |
1555 && decode_mouse_event(&ir.Event.MouseEvent)) | |
1556 return TRUE; | |
1557 #endif | |
1558 } | |
1559 else if (msec == 0) | |
1560 break; | |
1561 } | |
1562 | |
1563 #ifdef FEAT_CLIENTSERVER | |
1564 /* Something might have been received while we were waiting. */ | |
1565 if (input_available()) | |
1566 return TRUE; | |
1567 #endif | |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1568 |
7 | 1569 return FALSE; |
1570 } | |
1571 | |
1572 #ifndef FEAT_GUI_MSWIN | |
1573 /* | |
1574 * return non-zero if a character is available | |
1575 */ | |
1576 int | |
26 | 1577 mch_char_avail(void) |
7 | 1578 { |
1579 return WaitForChar(0L); | |
1580 } | |
1581 #endif | |
1582 | |
1583 /* | |
1584 * Create the console input. Used when reading stdin doesn't work. | |
1585 */ | |
1586 static void | |
1587 create_conin(void) | |
1588 { | |
1589 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE, | |
1590 FILE_SHARE_READ|FILE_SHARE_WRITE, | |
1591 (LPSECURITY_ATTRIBUTES) NULL, | |
840 | 1592 OPEN_EXISTING, 0, (HANDLE)NULL); |
7 | 1593 did_create_conin = TRUE; |
1594 } | |
1595 | |
1596 /* | |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1597 * Get a keystroke or a mouse event, use a blocking wait. |
7 | 1598 */ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1599 static WCHAR |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1600 tgetch(int *pmodifiers, WCHAR *pch2) |
7 | 1601 { |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1602 WCHAR ch; |
7 | 1603 |
1604 for (;;) | |
1605 { | |
1606 INPUT_RECORD ir; | |
1607 DWORD cRecords = 0; | |
1608 | |
1609 #ifdef FEAT_CLIENTSERVER | |
1610 (void)WaitForChar(-1L); | |
1611 if (input_available()) | |
1612 return 0; | |
1613 # ifdef FEAT_MOUSE | |
1614 if (g_nMouseClick != -1) | |
1615 return 0; | |
1616 # endif | |
1617 #endif | |
5580 | 1618 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0) |
7 | 1619 { |
1620 if (did_create_conin) | |
1621 read_error_exit(); | |
1622 create_conin(); | |
1623 continue; | |
1624 } | |
1625 | |
1626 if (ir.EventType == KEY_EVENT) | |
1627 { | |
1628 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2, | |
1629 pmodifiers, TRUE)) | |
1630 return ch; | |
1631 } | |
1632 else if (ir.EventType == FOCUS_EVENT) | |
1633 handle_focus_event(ir); | |
1634 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT) | |
1635 shell_resized(); | |
1636 #ifdef FEAT_MOUSE | |
1637 else if (ir.EventType == MOUSE_EVENT) | |
1638 { | |
1639 if (decode_mouse_event(&ir.Event.MouseEvent)) | |
1640 return 0; | |
1641 } | |
1642 #endif | |
1643 } | |
1644 } | |
1645 #endif /* !FEAT_GUI_W32 */ | |
1646 | |
1647 | |
1648 /* | |
3622 | 1649 * mch_inchar(): low-level input function. |
7 | 1650 * Get one or more characters from the keyboard or the mouse. |
1651 * If time == 0, do not wait for characters. | |
1652 * If time == n, wait a short time for characters. | |
1653 * If time == -1, wait forever for characters. | |
1654 * Returns the number of characters read into buf. | |
1655 */ | |
1656 int | |
1657 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
|
1658 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
|
1659 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
|
1660 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
|
1661 int tb_change_cnt UNUSED) |
7 | 1662 { |
1663 #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */ | |
1664 | |
1665 int len; | |
1666 int c; | |
1667 #define TYPEAHEADLEN 20 | |
1668 static char_u typeahead[TYPEAHEADLEN]; /* previously typed bytes. */ | |
1669 static int typeaheadlen = 0; | |
1670 | |
1671 /* First use any typeahead that was kept because "buf" was too small. */ | |
1672 if (typeaheadlen > 0) | |
1673 goto theend; | |
1674 | |
1675 if (time >= 0) | |
1676 { | |
1677 if (!WaitForChar(time)) /* no character available */ | |
1678 return 0; | |
1679 } | |
1680 else /* time == -1, wait forever */ | |
1681 { | |
1682 mch_set_winsize_now(); /* Allow winsize changes from now on */ | |
1683 | |
203 | 1684 /* |
1685 * If there is no character available within 2 seconds (default) | |
1686 * write the autoscript file to disk. Or cause the CursorHold event | |
1687 * to be triggered. | |
1688 */ | |
1689 if (!WaitForChar(p_ut)) | |
7 | 1690 { |
1691 #ifdef FEAT_AUTOCMD | |
609 | 1692 if (trigger_cursorhold() && maxlen >= 3) |
7 | 1693 { |
203 | 1694 buf[0] = K_SPECIAL; |
1695 buf[1] = KS_EXTRA; | |
1696 buf[2] = (int)KE_CURSORHOLD; | |
1697 return 3; | |
7 | 1698 } |
1699 #endif | |
368 | 1700 before_blocking(); |
7 | 1701 } |
1702 } | |
1703 | |
1704 /* | |
1705 * Try to read as many characters as there are, until the buffer is full. | |
1706 */ | |
1707 | |
1708 /* we will get at least one key. Get more if they are available. */ | |
1709 g_fCBrkPressed = FALSE; | |
1710 | |
1711 #ifdef MCH_WRITE_DUMP | |
1712 if (fdDump) | |
1713 fputc('[', fdDump); | |
1714 #endif | |
1715 | |
1716 /* Keep looping until there is something in the typeahead buffer and more | |
1717 * to get and still room in the buffer (up to two bytes for a char and | |
1718 * three bytes for a modifier). */ | |
1719 while ((typeaheadlen == 0 || WaitForChar(0L)) | |
1720 && typeaheadlen + 5 <= TYPEAHEADLEN) | |
1721 { | |
1722 if (typebuf_changed(tb_change_cnt)) | |
1723 { | |
1724 /* "buf" may be invalid now if a client put something in the | |
1725 * typeahead buffer and "buf" is in the typeahead buffer. */ | |
1726 typeaheadlen = 0; | |
1727 break; | |
1728 } | |
1729 #ifdef FEAT_MOUSE | |
1730 if (g_nMouseClick != -1) | |
1731 { | |
1732 # ifdef MCH_WRITE_DUMP | |
1733 if (fdDump) | |
1734 fprintf(fdDump, "{%02x @ %d, %d}", | |
1735 g_nMouseClick, g_xMouse, g_yMouse); | |
1736 # endif | |
1737 typeahead[typeaheadlen++] = ESC + 128; | |
1738 typeahead[typeaheadlen++] = 'M'; | |
1739 typeahead[typeaheadlen++] = g_nMouseClick; | |
1740 typeahead[typeaheadlen++] = g_xMouse + '!'; | |
1741 typeahead[typeaheadlen++] = g_yMouse + '!'; | |
1742 g_nMouseClick = -1; | |
1743 } | |
1744 else | |
1745 #endif | |
1746 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1747 WCHAR ch2 = NUL; |
7 | 1748 int modifiers = 0; |
1749 | |
1750 c = tgetch(&modifiers, &ch2); | |
1751 | |
1752 if (typebuf_changed(tb_change_cnt)) | |
1753 { | |
1754 /* "buf" may be invalid now if a client put something in the | |
1755 * typeahead buffer and "buf" is in the typeahead buffer. */ | |
1756 typeaheadlen = 0; | |
1757 break; | |
1758 } | |
1759 | |
1760 if (c == Ctrl_C && ctrl_c_interrupts) | |
1761 { | |
1762 #if defined(FEAT_CLIENTSERVER) | |
1763 trash_input_buf(); | |
1764 #endif | |
1765 got_int = TRUE; | |
1766 } | |
1767 | |
1768 #ifdef FEAT_MOUSE | |
1769 if (g_nMouseClick == -1) | |
1770 #endif | |
1771 { | |
1772 int n = 1; | |
6047 | 1773 int conv = FALSE; |
1774 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1775 #ifdef FEAT_MBYTE |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1776 if (ch2 == NUL) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1777 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1778 int i; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1779 char_u *p; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1780 WCHAR ch[2]; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1781 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1782 ch[0] = c; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1783 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
|
1784 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1785 ch[1] = tgetch(&modifiers, &ch2); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1786 n++; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1787 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1788 p = utf16_to_enc(ch, &n); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1789 if (p != NULL) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1790 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1791 for (i = 0; i < n; i++) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1792 typeahead[typeaheadlen + i] = p[i]; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1793 vim_free(p); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1794 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1795 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1796 else |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1797 #endif |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1798 typeahead[typeaheadlen] = c; |
7 | 1799 if (ch2 != NUL) |
1800 { | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1801 typeahead[typeaheadlen + n] = 3; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1802 typeahead[typeaheadlen + n + 1] = (char_u)ch2; |
6047 | 1803 n += 2; |
7 | 1804 } |
1805 | |
6047 | 1806 if (conv) |
1807 { | |
1808 char_u *p = typeahead + typeaheadlen; | |
6524 | 1809 |
1810 if (*p != K_NUL) | |
6047 | 1811 { |
6524 | 1812 char_u *e = typeahead + TYPEAHEADLEN; |
1813 | |
1814 while (*p && p < e) | |
6047 | 1815 { |
6524 | 1816 if (*p == K_NUL) |
1817 { | |
1818 ++p; | |
1819 mch_memmove(p + 1, p, ((size_t)(e - p)) - 1); | |
1820 *p = 3; | |
1821 ++n; | |
1822 } | |
6047 | 1823 ++p; |
1824 } | |
1825 } | |
1826 } | |
1827 | |
7 | 1828 /* Use the ALT key to set the 8th bit of the character |
1829 * when it's one byte, the 8th bit isn't set yet and not | |
1830 * using a double-byte encoding (would become a lead | |
1831 * byte). */ | |
1832 if ((modifiers & MOD_MASK_ALT) | |
1833 && n == 1 | |
1834 && (typeahead[typeaheadlen] & 0x80) == 0 | |
1835 #ifdef FEAT_MBYTE | |
1836 && !enc_dbcs | |
1837 #endif | |
1838 ) | |
1839 { | |
1443 | 1840 #ifdef FEAT_MBYTE |
1841 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80, | |
1842 typeahead + typeaheadlen); | |
1843 #else | |
7 | 1844 typeahead[typeaheadlen] |= 0x80; |
1443 | 1845 #endif |
7 | 1846 modifiers &= ~MOD_MASK_ALT; |
1847 } | |
1848 | |
1849 if (modifiers != 0) | |
1850 { | |
1851 /* Prepend modifiers to the character. */ | |
1852 mch_memmove(typeahead + typeaheadlen + 3, | |
1853 typeahead + typeaheadlen, n); | |
1854 typeahead[typeaheadlen++] = K_SPECIAL; | |
1855 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER; | |
1856 typeahead[typeaheadlen++] = modifiers; | |
1857 } | |
1858 | |
1859 typeaheadlen += n; | |
1860 | |
1861 #ifdef MCH_WRITE_DUMP | |
1862 if (fdDump) | |
1863 fputc(c, fdDump); | |
1864 #endif | |
1865 } | |
1866 } | |
1867 } | |
1868 | |
1869 #ifdef MCH_WRITE_DUMP | |
1870 if (fdDump) | |
1871 { | |
1872 fputs("]\n", fdDump); | |
1873 fflush(fdDump); | |
1874 } | |
1875 #endif | |
1876 | |
1877 theend: | |
1878 /* Move typeahead to "buf", as much as fits. */ | |
1879 len = 0; | |
1880 while (len < maxlen && typeaheadlen > 0) | |
1881 { | |
1882 buf[len++] = typeahead[0]; | |
1883 mch_memmove(typeahead, typeahead + 1, --typeaheadlen); | |
1884 } | |
1885 return len; | |
1886 | |
1887 #else /* FEAT_GUI_W32 */ | |
1888 return 0; | |
1889 #endif /* FEAT_GUI_W32 */ | |
1890 } | |
1891 | |
3927 | 1892 #ifndef PROTO |
1893 # ifndef __MINGW32__ | |
1894 # include <shellapi.h> /* required for FindExecutable() */ | |
1895 # endif | |
7 | 1896 #endif |
1897 | |
9 | 1898 /* |
1899 * Return TRUE if "name" is in $PATH. | |
10 | 1900 * TODO: Should somehow check if it's really executable. |
9 | 1901 */ |
7 | 1902 static int |
5782 | 1903 executable_exists(char *name, char_u **path) |
7 | 1904 { |
9 | 1905 char *dum; |
1906 char fname[_MAX_PATH]; | |
6185 | 1907 char *curpath, *newpath; |
1908 long n; | |
9 | 1909 |
1910 #ifdef FEAT_MBYTE | |
1911 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
7 | 1912 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1913 WCHAR *p = enc_to_utf16((char_u *)name, NULL); |
9 | 1914 WCHAR fnamew[_MAX_PATH]; |
1915 WCHAR *dumw; | |
6185 | 1916 WCHAR *wcurpath, *wnewpath; |
9 | 1917 |
1918 if (p != NULL) | |
1919 { | |
6185 | 1920 wcurpath = _wgetenv(L"PATH"); |
1921 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3) | |
1922 * sizeof(WCHAR)); | |
1923 if (wnewpath == NULL) | |
1924 return FALSE; | |
1925 wcscpy(wnewpath, L".;"); | |
1926 wcscat(wnewpath, wcurpath); | |
1927 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw); | |
1928 vim_free(wnewpath); | |
9 | 1929 vim_free(p); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1930 if (n == 0) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1931 return FALSE; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1932 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1933 return FALSE; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1934 if (path != NULL) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1935 *path = utf16_to_enc(fnamew, NULL); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
1936 return TRUE; |
9 | 1937 } |
7 | 1938 } |
9 | 1939 #endif |
6185 | 1940 |
1941 curpath = getenv("PATH"); | |
1942 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3)); | |
1943 if (newpath == NULL) | |
1944 return FALSE; | |
1945 STRCPY(newpath, ".;"); | |
1946 STRCAT(newpath, curpath); | |
1947 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum); | |
1948 vim_free(newpath); | |
1949 if (n == 0) | |
9 | 1950 return FALSE; |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1951 if (mch_isdir((char_u *)fname)) |
9 | 1952 return FALSE; |
5782 | 1953 if (path != NULL) |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1954 *path = vim_strsave((char_u *)fname); |
9 | 1955 return TRUE; |
7 | 1956 } |
1957 | |
2584 | 1958 #if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \ |
2935 | 1959 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400) |
2584 | 1960 /* |
1961 * Bad parameter handler. | |
1962 * | |
1963 * Certain MS CRT functions will intentionally crash when passed invalid | |
1964 * parameters to highlight possible security holes. Setting this function as | |
1965 * the bad parameter handler will prevent the crash. | |
1966 * | |
1967 * In debug builds the parameters contain CRT information that might help track | |
1968 * down the source of a problem, but in non-debug builds the arguments are all | |
1969 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is | |
1970 * worth allowing these to make debugging of issues easier. | |
1971 */ | |
1972 static void | |
1973 bad_param_handler(const wchar_t *expression, | |
1974 const wchar_t *function, | |
1975 const wchar_t *file, | |
1976 unsigned int line, | |
1977 uintptr_t pReserved) | |
1978 { | |
1979 } | |
1980 | |
1981 # define SET_INVALID_PARAM_HANDLER \ | |
1982 ((void)_set_invalid_parameter_handler(bad_param_handler)) | |
1983 #else | |
1984 # define SET_INVALID_PARAM_HANDLER | |
1985 #endif | |
1986 | |
7 | 1987 #ifdef FEAT_GUI_W32 |
1988 | |
1989 /* | |
1990 * GUI version of mch_init(). | |
1991 */ | |
1992 void | |
26 | 1993 mch_init(void) |
7 | 1994 { |
1995 #ifndef __MINGW32__ | |
1996 extern int _fmode; | |
1997 #endif | |
1998 | |
2584 | 1999 /* Silently handle invalid parameters to CRT functions */ |
2000 SET_INVALID_PARAM_HANDLER; | |
2001 | |
7 | 2002 /* Let critical errors result in a failure, not in a dialog box. Required |
2003 * for the timestamp test to work on removed floppies. */ | |
2004 SetErrorMode(SEM_FAILCRITICALERRORS); | |
2005 | |
2006 _fmode = O_BINARY; /* we do our own CR-LF translation */ | |
2007 | |
2008 /* Specify window size. Is there a place to get the default from? */ | |
2009 Rows = 25; | |
2010 Columns = 80; | |
2011 | |
2012 /* Look for 'vimrun' */ | |
2013 { | |
2014 char_u vimrun_location[_MAX_PATH + 4]; | |
2015 | |
2016 /* First try in same directory as gvim.exe */ | |
2017 STRCPY(vimrun_location, exe_name); | |
2018 STRCPY(gettail(vimrun_location), "vimrun.exe"); | |
2019 if (mch_getperm(vimrun_location) >= 0) | |
2020 { | |
2021 if (*skiptowhite(vimrun_location) != NUL) | |
2022 { | |
2023 /* Enclose path with white space in double quotes. */ | |
2024 mch_memmove(vimrun_location + 1, vimrun_location, | |
2025 STRLEN(vimrun_location) + 1); | |
2026 *vimrun_location = '"'; | |
2027 STRCPY(gettail(vimrun_location), "vimrun\" "); | |
2028 } | |
2029 else | |
2030 STRCPY(gettail(vimrun_location), "vimrun "); | |
2031 | |
2032 vimrun_path = (char *)vim_strsave(vimrun_location); | |
2033 s_dont_use_vimrun = FALSE; | |
2034 } | |
5782 | 2035 else if (executable_exists("vimrun.exe", NULL)) |
7 | 2036 s_dont_use_vimrun = FALSE; |
2037 | |
2038 /* Don't give the warning for a missing vimrun.exe right now, but only | |
2039 * when vimrun was supposed to be used. Don't bother people that do | |
2040 * not need vimrun.exe. */ | |
2041 if (s_dont_use_vimrun) | |
2042 need_vimrun_warning = TRUE; | |
2043 } | |
2044 | |
2045 /* | |
2046 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'. | |
2047 * Otherwise the default "findstr /n" is used. | |
2048 */ | |
5782 | 2049 if (!executable_exists("findstr.exe", NULL)) |
7 | 2050 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0); |
2051 | |
2052 #ifdef FEAT_CLIPBOARD | |
4168 | 2053 win_clip_init(); |
7 | 2054 #endif |
2055 } | |
2056 | |
2057 | |
2058 #else /* FEAT_GUI_W32 */ | |
2059 | |
2060 #define SRWIDTH(sr) ((sr).Right - (sr).Left + 1) | |
2061 #define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1) | |
2062 | |
2063 /* | |
2064 * ClearConsoleBuffer() | |
2065 * Description: | |
2066 * Clears the entire contents of the console screen buffer, using the | |
2067 * specified attribute. | |
2068 * Returns: | |
2069 * TRUE on success | |
2070 */ | |
2071 static BOOL | |
2072 ClearConsoleBuffer(WORD wAttribute) | |
2073 { | |
2074 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
2075 COORD coord; | |
2076 DWORD NumCells, dummy; | |
2077 | |
2078 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
2079 return FALSE; | |
2080 | |
2081 NumCells = csbi.dwSize.X * csbi.dwSize.Y; | |
2082 coord.X = 0; | |
2083 coord.Y = 0; | |
2084 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells, | |
2085 coord, &dummy)) | |
2086 { | |
2087 return FALSE; | |
2088 } | |
2089 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells, | |
2090 coord, &dummy)) | |
2091 { | |
2092 return FALSE; | |
2093 } | |
2094 | |
2095 return TRUE; | |
2096 } | |
2097 | |
2098 /* | |
2099 * FitConsoleWindow() | |
2100 * Description: | |
2101 * Checks if the console window will fit within given buffer dimensions. | |
2102 * Also, if requested, will shrink the window to fit. | |
2103 * Returns: | |
2104 * TRUE on success | |
2105 */ | |
2106 static BOOL | |
2107 FitConsoleWindow( | |
2108 COORD dwBufferSize, | |
2109 BOOL WantAdjust) | |
2110 { | |
2111 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
2112 COORD dwWindowSize; | |
2113 BOOL NeedAdjust = FALSE; | |
2114 | |
2115 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
2116 { | |
2117 /* | |
2118 * A buffer resize will fail if the current console window does | |
2119 * not lie completely within that buffer. To avoid this, we might | |
2120 * have to move and possibly shrink the window. | |
2121 */ | |
2122 if (csbi.srWindow.Right >= dwBufferSize.X) | |
2123 { | |
2124 dwWindowSize.X = SRWIDTH(csbi.srWindow); | |
2125 if (dwWindowSize.X > dwBufferSize.X) | |
2126 dwWindowSize.X = dwBufferSize.X; | |
2127 csbi.srWindow.Right = dwBufferSize.X - 1; | |
2128 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X; | |
2129 NeedAdjust = TRUE; | |
2130 } | |
2131 if (csbi.srWindow.Bottom >= dwBufferSize.Y) | |
2132 { | |
2133 dwWindowSize.Y = SRHEIGHT(csbi.srWindow); | |
2134 if (dwWindowSize.Y > dwBufferSize.Y) | |
2135 dwWindowSize.Y = dwBufferSize.Y; | |
2136 csbi.srWindow.Bottom = dwBufferSize.Y - 1; | |
2137 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y; | |
2138 NeedAdjust = TRUE; | |
2139 } | |
2140 if (NeedAdjust && WantAdjust) | |
2141 { | |
2142 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow)) | |
2143 return FALSE; | |
2144 } | |
2145 return TRUE; | |
2146 } | |
2147 | |
2148 return FALSE; | |
2149 } | |
2150 | |
2151 typedef struct ConsoleBufferStruct | |
2152 { | |
26 | 2153 BOOL IsValid; |
2154 CONSOLE_SCREEN_BUFFER_INFO Info; | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2155 PCHAR_INFO Buffer; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2156 COORD BufferSize; |
7 | 2157 } ConsoleBuffer; |
2158 | |
2159 /* | |
2160 * SaveConsoleBuffer() | |
2161 * Description: | |
2162 * Saves important information about the console buffer, including the | |
2163 * actual buffer contents. The saved information is suitable for later | |
2164 * restoration by RestoreConsoleBuffer(). | |
2165 * Returns: | |
2166 * TRUE if all information was saved; FALSE otherwise | |
2167 * If FALSE, still sets cb->IsValid if buffer characteristics were saved. | |
2168 */ | |
2169 static BOOL | |
2170 SaveConsoleBuffer( | |
2171 ConsoleBuffer *cb) | |
2172 { | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2173 DWORD NumCells; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2174 COORD BufferCoord; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2175 SMALL_RECT ReadRegion; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2176 WORD Y, Y_incr; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2177 |
7 | 2178 if (cb == NULL) |
2179 return FALSE; | |
2180 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2181 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info)) |
7 | 2182 { |
2183 cb->IsValid = FALSE; | |
2184 return FALSE; | |
2185 } | |
2186 cb->IsValid = TRUE; | |
2187 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2188 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2189 * 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
|
2190 * 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
|
2191 * 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
|
2192 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2193 if (!cb->IsValid || cb->Buffer == NULL || |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2194 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
|
2195 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
|
2196 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2197 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
|
2198 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
|
2199 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
|
2200 vim_free(cb->Buffer); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2201 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
|
2202 if (cb->Buffer == NULL) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2203 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2204 } |
7 | 2205 |
2206 /* | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2207 * 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
|
2208 * 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
|
2209 * 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
|
2210 * 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
|
2211 * 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
|
2212 * 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
|
2213 * height of each chunk will be (12000 / width). |
7 | 2214 */ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
6981
diff
changeset
|
2215 BufferCoord.X = 0; |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2216 ReadRegion.Left = 0; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2217 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
|
2218 Y_incr = 12000 / cb->Info.dwSize.X; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2219 for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr) |
7 | 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 * 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
|
2223 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2224 BufferCoord.Y = Y; |
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 * 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
|
2227 * 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
|
2228 * 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
|
2229 * 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
|
2230 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2231 ReadRegion.Top = Y; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2232 ReadRegion.Bottom = Y + Y_incr - 1; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2233 if (!ReadConsoleOutput(g_hConOut, /* output handle */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2234 cb->Buffer, /* our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2235 cb->BufferSize, /* dimensions of our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2236 BufferCoord, /* offset in our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2237 &ReadRegion)) /* region to save */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2238 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2239 vim_free(cb->Buffer); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2240 cb->Buffer = NULL; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2241 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2242 } |
7 | 2243 } |
2244 | |
2245 return TRUE; | |
2246 } | |
2247 | |
2248 /* | |
2249 * RestoreConsoleBuffer() | |
2250 * Description: | |
2251 * Restores important information about the console buffer, including the | |
2252 * actual buffer contents, if desired. The information to restore is in | |
2253 * the same format used by SaveConsoleBuffer(). | |
2254 * Returns: | |
2255 * TRUE on success | |
2256 */ | |
2257 static BOOL | |
2258 RestoreConsoleBuffer( | |
26 | 2259 ConsoleBuffer *cb, |
2260 BOOL RestoreScreen) | |
7 | 2261 { |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2262 COORD BufferCoord; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2263 SMALL_RECT WriteRegion; |
7 | 2264 |
2265 if (cb == NULL || !cb->IsValid) | |
2266 return FALSE; | |
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 * 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
|
2270 * 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
|
2271 * 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
|
2272 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2273 if (RestoreScreen) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2274 ClearConsoleBuffer(cb->Info.wAttributes); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2275 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2276 FitConsoleWindow(cb->Info.dwSize, TRUE); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2277 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
|
2278 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2279 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
|
2280 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2281 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2282 if (!RestoreScreen) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2283 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2284 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2285 * 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
|
2286 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2287 return TRUE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2288 } |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2289 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2290 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
|
2291 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2292 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
|
2293 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2294 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2295 /* |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2296 * Restore the screen buffer contents. |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2297 */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2298 if (cb->Buffer != NULL) |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2299 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2300 BufferCoord.X = 0; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2301 BufferCoord.Y = 0; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2302 WriteRegion.Left = 0; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2303 WriteRegion.Top = 0; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2304 WriteRegion.Right = cb->Info.dwSize.X - 1; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2305 WriteRegion.Bottom = cb->Info.dwSize.Y - 1; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2306 if (!WriteConsoleOutput(g_hConOut, /* output handle */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2307 cb->Buffer, /* our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2308 cb->BufferSize, /* dimensions of our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2309 BufferCoord, /* offset in our buffer */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2310 &WriteRegion)) /* region to restore */ |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2311 { |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2312 return FALSE; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2313 } |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2314 } |
7 | 2315 |
2316 return TRUE; | |
2317 } | |
2318 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2319 #define FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2320 #ifdef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2321 static ConsoleBuffer g_cbOrig = { 0 }; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2322 #endif |
7 | 2323 static ConsoleBuffer g_cbNonTermcap = { 0 }; |
2324 static ConsoleBuffer g_cbTermcap = { 0 }; | |
2325 | |
2326 #ifdef FEAT_TITLE | |
2327 #ifdef __BORLANDC__ | |
2328 typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID); | |
2329 #else | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2330 typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID); |
7 | 2331 #endif |
2332 char g_szOrigTitle[256] = { 0 }; | |
2333 HWND g_hWnd = NULL; /* also used in os_mswin.c */ | |
2334 static HICON g_hOrigIconSmall = NULL; | |
2335 static HICON g_hOrigIcon = NULL; | |
2336 static HICON g_hVimIcon = NULL; | |
2337 static BOOL g_fCanChangeIcon = FALSE; | |
2338 | |
2339 /* ICON* are not defined in VC++ 4.0 */ | |
2340 #ifndef ICON_SMALL | |
2341 #define ICON_SMALL 0 | |
2342 #endif | |
2343 #ifndef ICON_BIG | |
2344 #define ICON_BIG 1 | |
2345 #endif | |
2346 /* | |
2347 * GetConsoleIcon() | |
2348 * Description: | |
2349 * Attempts to retrieve the small icon and/or the big icon currently in | |
2350 * use by a given window. | |
2351 * Returns: | |
2352 * TRUE on success | |
2353 */ | |
2354 static BOOL | |
2355 GetConsoleIcon( | |
26 | 2356 HWND hWnd, |
2357 HICON *phIconSmall, | |
2358 HICON *phIcon) | |
7 | 2359 { |
2360 if (hWnd == NULL) | |
2361 return FALSE; | |
2362 | |
2363 if (phIconSmall != NULL) | |
26 | 2364 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON, |
2365 (WPARAM)ICON_SMALL, (LPARAM)0); | |
7 | 2366 if (phIcon != NULL) |
26 | 2367 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON, |
2368 (WPARAM)ICON_BIG, (LPARAM)0); | |
7 | 2369 return TRUE; |
2370 } | |
2371 | |
2372 /* | |
2373 * SetConsoleIcon() | |
2374 * Description: | |
2375 * Attempts to change the small icon and/or the big icon currently in | |
2376 * use by a given window. | |
2377 * Returns: | |
2378 * TRUE on success | |
2379 */ | |
2380 static BOOL | |
2381 SetConsoleIcon( | |
26 | 2382 HWND hWnd, |
2383 HICON hIconSmall, | |
2384 HICON hIcon) | |
7 | 2385 { |
2386 if (hWnd == NULL) | |
2387 return FALSE; | |
2388 | |
2389 if (hIconSmall != NULL) | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2390 SendMessage(hWnd, WM_SETICON, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2391 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall); |
7 | 2392 if (hIcon != NULL) |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2393 SendMessage(hWnd, WM_SETICON, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2394 (WPARAM)ICON_BIG, (LPARAM) hIcon); |
7 | 2395 return TRUE; |
2396 } | |
2397 | |
2398 /* | |
2399 * SaveConsoleTitleAndIcon() | |
2400 * Description: | |
2401 * Saves the current console window title in g_szOrigTitle, for later | |
2402 * restoration. Also, attempts to obtain a handle to the console window, | |
2403 * and use it to save the small and big icons currently in use by the | |
2404 * console window. This is not always possible on some versions of Windows; | |
2405 * nor is it possible when running Vim remotely using Telnet (since the | |
2406 * console window the user sees is owned by a remote process). | |
2407 */ | |
2408 static void | |
2409 SaveConsoleTitleAndIcon(void) | |
2410 { | |
2411 /* Save the original title. */ | |
2412 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle))) | |
2413 return; | |
2414 | |
2415 /* | |
2416 * Obtain a handle to the console window using GetConsoleWindow() from | |
2417 * KERNEL32.DLL; we need to handle in order to change the window icon. | |
2418 * This function only exists on NT-based Windows, starting with Windows | |
2419 * 2000. On older operating systems, we can't change the window icon | |
2420 * anyway. | |
2421 */ | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2422 g_hWnd = GetConsoleWindow(); |
7 | 2423 if (g_hWnd == NULL) |
2424 return; | |
2425 | |
2426 /* Save the original console window icon. */ | |
2427 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon); | |
2428 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL) | |
2429 return; | |
2430 | |
2431 /* Extract the first icon contained in the Vim executable. */ | |
6249 | 2432 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
|
2433 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0); |
7 | 2434 if (g_hVimIcon != NULL) |
2435 g_fCanChangeIcon = TRUE; | |
2436 } | |
2437 #endif | |
2438 | |
2439 static int g_fWindInitCalled = FALSE; | |
2440 static int g_fTermcapMode = FALSE; | |
2441 static CONSOLE_CURSOR_INFO g_cci; | |
2442 static DWORD g_cmodein = 0; | |
2443 static DWORD g_cmodeout = 0; | |
2444 | |
2445 /* | |
2446 * non-GUI version of mch_init(). | |
2447 */ | |
2448 void | |
26 | 2449 mch_init(void) |
7 | 2450 { |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2451 #ifndef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2452 CONSOLE_SCREEN_BUFFER_INFO csbi; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2453 #endif |
7 | 2454 #ifndef __MINGW32__ |
2455 extern int _fmode; | |
2456 #endif | |
2457 | |
2584 | 2458 /* Silently handle invalid parameters to CRT functions */ |
2459 SET_INVALID_PARAM_HANDLER; | |
2460 | |
7 | 2461 /* Let critical errors result in a failure, not in a dialog box. Required |
2462 * for the timestamp test to work on removed floppies. */ | |
2463 SetErrorMode(SEM_FAILCRITICALERRORS); | |
2464 | |
2465 _fmode = O_BINARY; /* we do our own CR-LF translation */ | |
2466 out_flush(); | |
2467 | |
2468 /* Obtain handles for the standard Console I/O devices */ | |
2469 if (read_cmd_fd == 0) | |
2470 g_hConIn = GetStdHandle(STD_INPUT_HANDLE); | |
2471 else | |
2472 create_conin(); | |
2473 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
|
2474 |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2475 #ifdef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2476 /* 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
|
2477 SaveConsoleBuffer(&g_cbOrig); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2478 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
|
2479 #else |
7 | 2480 /* Get current text attributes */ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2481 GetConsoleScreenBufferInfo(g_hConOut, &csbi); |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2482 g_attrCurrent = g_attrDefault = csbi.wAttributes; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2483 #endif |
7 | 2484 if (cterm_normal_fg_color == 0) |
2485 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1; | |
2486 if (cterm_normal_bg_color == 0) | |
2487 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1; | |
2488 | |
2489 /* set termcap codes to current text attributes */ | |
2490 update_tcap(g_attrCurrent); | |
2491 | |
2492 GetConsoleCursorInfo(g_hConOut, &g_cci); | |
2493 GetConsoleMode(g_hConIn, &g_cmodein); | |
2494 GetConsoleMode(g_hConOut, &g_cmodeout); | |
2495 | |
2496 #ifdef FEAT_TITLE | |
2497 SaveConsoleTitleAndIcon(); | |
2498 /* | |
2499 * Set both the small and big icons of the console window to Vim's icon. | |
2500 * Note that Vim presently only has one size of icon (32x32), but it | |
2501 * automatically gets scaled down to 16x16 when setting the small icon. | |
2502 */ | |
2503 if (g_fCanChangeIcon) | |
2504 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon); | |
2505 #endif | |
2506 | |
2507 ui_get_shellsize(); | |
2508 | |
2509 #ifdef MCH_WRITE_DUMP | |
2510 fdDump = fopen("dump", "wt"); | |
2511 | |
2512 if (fdDump) | |
2513 { | |
2514 time_t t; | |
2515 | |
2516 time(&t); | |
2517 fputs(ctime(&t), fdDump); | |
2518 fflush(fdDump); | |
2519 } | |
2520 #endif | |
2521 | |
2522 g_fWindInitCalled = TRUE; | |
2523 | |
2524 #ifdef FEAT_MOUSE | |
2525 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); | |
2526 #endif | |
2527 | |
2528 #ifdef FEAT_CLIPBOARD | |
4168 | 2529 win_clip_init(); |
7 | 2530 #endif |
2531 } | |
2532 | |
2533 /* | |
2534 * non-GUI version of mch_exit(). | |
2535 * Shut down and exit with status `r' | |
2536 * Careful: mch_exit() may be called before mch_init()! | |
2537 */ | |
2538 void | |
2539 mch_exit(int r) | |
2540 { | |
2541 stoptermcap(); | |
2542 | |
2543 if (g_fWindInitCalled) | |
2544 settmode(TMODE_COOK); | |
2545 | |
2546 ml_close_all(TRUE); /* remove all memfiles */ | |
2547 | |
2548 if (g_fWindInitCalled) | |
2549 { | |
2550 #ifdef FEAT_TITLE | |
2551 mch_restore_title(3); | |
2552 /* | |
2553 * Restore both the small and big icons of the console window to | |
2554 * what they were at startup. Don't do this when the window is | |
2555 * closed, Vim would hang here. | |
2556 */ | |
2557 if (g_fCanChangeIcon && !g_fForceExit) | |
2558 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon); | |
2559 #endif | |
2560 | |
2561 #ifdef MCH_WRITE_DUMP | |
2562 if (fdDump) | |
2563 { | |
2564 time_t t; | |
2565 | |
2566 time(&t); | |
2567 fputs(ctime(&t), fdDump); | |
2568 fclose(fdDump); | |
2569 } | |
2570 fdDump = NULL; | |
2571 #endif | |
2572 } | |
2573 | |
2574 SetConsoleCursorInfo(g_hConOut, &g_cci); | |
2575 SetConsoleMode(g_hConIn, g_cmodein); | |
2576 SetConsoleMode(g_hConOut, g_cmodeout); | |
2577 | |
2578 #ifdef DYNAMIC_GETTEXT | |
2579 dyn_libintl_end(); | |
2580 #endif | |
2581 | |
2582 exit(r); | |
2583 } | |
2584 #endif /* !FEAT_GUI_W32 */ | |
2585 | |
2586 /* | |
2587 * Do we have an interactive window? | |
2588 */ | |
2589 int | |
2590 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
|
2591 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
|
2592 char **argv UNUSED) |
7 | 2593 { |
2594 get_exe_name(); | |
2595 | |
2596 #ifdef FEAT_GUI_W32 | |
2597 return OK; /* GUI always has a tty */ | |
2598 #else | |
2599 if (isatty(1)) | |
2600 return OK; | |
2601 return FAIL; | |
2602 #endif | |
2603 } | |
2604 | |
2605 | |
5326 | 2606 #ifdef FEAT_MBYTE |
2607 /* | |
2608 * fname_casew(): Wide version of fname_case(). Set the case of the file name, | |
2609 * if it already exists. When "len" is > 0, also expand short to long | |
2610 * filenames. | |
2611 * Return FAIL if wide functions are not available, OK otherwise. | |
2612 * NOTE: much of this is identical to fname_case(), keep in sync! | |
2613 */ | |
2614 static int | |
2615 fname_casew( | |
2616 WCHAR *name, | |
2617 int len) | |
2618 { | |
2619 WCHAR szTrueName[_MAX_PATH + 2]; | |
2620 WCHAR szTrueNameTemp[_MAX_PATH + 2]; | |
2621 WCHAR *ptrue, *ptruePrev; | |
2622 WCHAR *porig, *porigPrev; | |
2623 int flen; | |
2624 WIN32_FIND_DATAW fb; | |
5529 | 2625 HANDLE hFind = INVALID_HANDLE_VALUE; |
5326 | 2626 int c; |
2627 int slen; | |
2628 | |
2629 flen = (int)wcslen(name); | |
2630 if (flen > _MAX_PATH) | |
2631 return OK; | |
2632 | |
2633 /* slash_adjust(name) not needed, already adjusted by fname_case(). */ | |
2634 | |
2635 /* Build the new name in szTrueName[] one component at a time. */ | |
2636 porig = name; | |
2637 ptrue = szTrueName; | |
2638 | |
2639 if (iswalpha(porig[0]) && porig[1] == L':') | |
2640 { | |
2641 /* copy leading drive letter */ | |
2642 *ptrue++ = *porig++; | |
2643 *ptrue++ = *porig++; | |
2644 } | |
5529 | 2645 *ptrue = NUL; /* in case nothing follows */ |
5326 | 2646 |
2647 while (*porig != NUL) | |
2648 { | |
2649 /* copy \ characters */ | |
2650 while (*porig == psepc) | |
2651 *ptrue++ = *porig++; | |
2652 | |
2653 ptruePrev = ptrue; | |
2654 porigPrev = porig; | |
2655 while (*porig != NUL && *porig != psepc) | |
2656 { | |
2657 *ptrue++ = *porig++; | |
2658 } | |
2659 *ptrue = NUL; | |
2660 | |
2661 /* To avoid a slow failure append "\*" when searching a directory, | |
2662 * server or network share. */ | |
2663 wcscpy(szTrueNameTemp, szTrueName); | |
2664 slen = (int)wcslen(szTrueNameTemp); | |
2665 if (*porig == psepc && slen + 2 < _MAX_PATH) | |
2666 wcscpy(szTrueNameTemp + slen, L"\\*"); | |
2667 | |
2668 /* Skip "", "." and "..". */ | |
2669 if (ptrue > ptruePrev | |
2670 && (ptruePrev[0] != L'.' | |
2671 || (ptruePrev[1] != NUL | |
2672 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL))) | |
2673 && (hFind = FindFirstFileW(szTrueNameTemp, &fb)) | |
2674 != INVALID_HANDLE_VALUE) | |
2675 { | |
2676 c = *porig; | |
2677 *porig = NUL; | |
2678 | |
2679 /* Only use the match when it's the same name (ignoring case) or | |
2680 * expansion is allowed and there is a match with the short name | |
2681 * and there is enough room. */ | |
2682 if (_wcsicoll(porigPrev, fb.cFileName) == 0 | |
2683 || (len > 0 | |
2684 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0 | |
2685 && (int)(ptruePrev - szTrueName) | |
2686 + (int)wcslen(fb.cFileName) < len))) | |
2687 { | |
2688 wcscpy(ptruePrev, fb.cFileName); | |
2689 | |
2690 /* Look for exact match and prefer it if found. Must be a | |
2691 * long name, otherwise there would be only one match. */ | |
2692 while (FindNextFileW(hFind, &fb)) | |
2693 { | |
2694 if (*fb.cAlternateFileName != NUL | |
2695 && (wcscoll(porigPrev, fb.cFileName) == 0 | |
2696 || (len > 0 | |
2697 && (_wcsicoll(porigPrev, | |
2698 fb.cAlternateFileName) == 0 | |
2699 && (int)(ptruePrev - szTrueName) | |
2700 + (int)wcslen(fb.cFileName) < len)))) | |
2701 { | |
2702 wcscpy(ptruePrev, fb.cFileName); | |
2703 break; | |
2704 } | |
2705 } | |
2706 } | |
2707 FindClose(hFind); | |
2708 *porig = c; | |
2709 ptrue = ptruePrev + wcslen(ptruePrev); | |
2710 } | |
2711 } | |
2712 | |
2713 wcscpy(name, szTrueName); | |
2714 return OK; | |
2715 } | |
2716 #endif | |
2717 | |
7 | 2718 /* |
2719 * fname_case(): Set the case of the file name, if it already exists. | |
2720 * When "len" is > 0, also expand short to long filenames. | |
5326 | 2721 * NOTE: much of this is identical to fname_casew(), keep in sync! |
7 | 2722 */ |
2723 void | |
2724 fname_case( | |
2725 char_u *name, | |
2726 int len) | |
2727 { | |
2728 char szTrueName[_MAX_PATH + 2]; | |
2604 | 2729 char szTrueNameTemp[_MAX_PATH + 2]; |
7 | 2730 char *ptrue, *ptruePrev; |
2731 char *porig, *porigPrev; | |
2732 int flen; | |
2733 WIN32_FIND_DATA fb; | |
2734 HANDLE hFind; | |
2735 int c; | |
2604 | 2736 int slen; |
7 | 2737 |
434 | 2738 flen = (int)STRLEN(name); |
5326 | 2739 if (flen == 0) |
7 | 2740 return; |
2741 | |
2742 slash_adjust(name); | |
2743 | |
5326 | 2744 #ifdef FEAT_MBYTE |
2745 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2746 { | |
2747 WCHAR *p = enc_to_utf16(name, NULL); | |
2748 | |
2749 if (p != NULL) | |
2750 { | |
2751 char_u *q; | |
6262 | 2752 WCHAR buf[_MAX_PATH + 1]; |
2753 | |
2754 wcsncpy(buf, p, _MAX_PATH); | |
2755 buf[_MAX_PATH] = L'\0'; | |
5326 | 2756 vim_free(p); |
2757 | |
2758 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK) | |
2759 { | |
2760 q = utf16_to_enc(buf, NULL); | |
2761 if (q != NULL) | |
2762 { | |
2763 vim_strncpy(name, q, (len > 0) ? len - 1 : flen); | |
2764 vim_free(q); | |
2765 return; | |
2766 } | |
2767 } | |
2768 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2769 return; |
5326 | 2770 } |
2771 #endif | |
2772 | |
2773 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH. | |
2774 * So we should check this after calling wide function. */ | |
2775 if (flen > _MAX_PATH) | |
2776 return; | |
2777 | |
7 | 2778 /* 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
|
2779 porig = (char *)name; |
7 | 2780 ptrue = szTrueName; |
2781 | |
2782 if (isalpha(porig[0]) && porig[1] == ':') | |
2783 { | |
2784 /* copy leading drive letter */ | |
2785 *ptrue++ = *porig++; | |
2786 *ptrue++ = *porig++; | |
2787 } | |
5529 | 2788 *ptrue = NUL; /* in case nothing follows */ |
7 | 2789 |
2790 while (*porig != NUL) | |
2791 { | |
2792 /* copy \ characters */ | |
2793 while (*porig == psepc) | |
2794 *ptrue++ = *porig++; | |
2795 | |
2796 ptruePrev = ptrue; | |
2797 porigPrev = porig; | |
2798 while (*porig != NUL && *porig != psepc) | |
2799 { | |
2800 #ifdef FEAT_MBYTE | |
2801 int l; | |
2802 | |
2803 if (enc_dbcs) | |
2804 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2805 l = (*mb_ptr2len)((char_u *)porig); |
7 | 2806 while (--l >= 0) |
2807 *ptrue++ = *porig++; | |
2808 } | |
2809 else | |
2810 #endif | |
2811 *ptrue++ = *porig++; | |
2812 } | |
2813 *ptrue = NUL; | |
2814 | |
2604 | 2815 /* To avoid a slow failure append "\*" when searching a directory, |
2816 * server or network share. */ | |
2817 STRCPY(szTrueNameTemp, szTrueName); | |
2615 | 2818 slen = (int)strlen(szTrueNameTemp); |
2604 | 2819 if (*porig == psepc && slen + 2 < _MAX_PATH) |
2820 STRCPY(szTrueNameTemp + slen, "\\*"); | |
2821 | |
7 | 2822 /* Skip "", "." and "..". */ |
2823 if (ptrue > ptruePrev | |
2824 && (ptruePrev[0] != '.' | |
2825 || (ptruePrev[1] != NUL | |
2826 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL))) | |
2604 | 2827 && (hFind = FindFirstFile(szTrueNameTemp, &fb)) |
7 | 2828 != INVALID_HANDLE_VALUE) |
2829 { | |
2830 c = *porig; | |
2831 *porig = NUL; | |
2832 | |
2833 /* Only use the match when it's the same name (ignoring case) or | |
2834 * expansion is allowed and there is a match with the short name | |
2835 * and there is enough room. */ | |
2836 if (_stricoll(porigPrev, fb.cFileName) == 0 | |
2837 || (len > 0 | |
2838 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0 | |
2839 && (int)(ptruePrev - szTrueName) | |
2840 + (int)strlen(fb.cFileName) < len))) | |
2841 { | |
2842 STRCPY(ptruePrev, fb.cFileName); | |
2843 | |
2844 /* Look for exact match and prefer it if found. Must be a | |
2845 * long name, otherwise there would be only one match. */ | |
2846 while (FindNextFile(hFind, &fb)) | |
2847 { | |
2848 if (*fb.cAlternateFileName != NUL | |
2849 && (strcoll(porigPrev, fb.cFileName) == 0 | |
2850 || (len > 0 | |
2851 && (_stricoll(porigPrev, | |
2852 fb.cAlternateFileName) == 0 | |
2853 && (int)(ptruePrev - szTrueName) | |
2854 + (int)strlen(fb.cFileName) < len)))) | |
2855 { | |
2856 STRCPY(ptruePrev, fb.cFileName); | |
2857 break; | |
2858 } | |
2859 } | |
2860 } | |
2861 FindClose(hFind); | |
2862 *porig = c; | |
2863 ptrue = ptruePrev + strlen(ptruePrev); | |
2864 } | |
2865 } | |
2866 | |
2867 STRCPY(name, szTrueName); | |
2868 } | |
2869 | |
2870 | |
2871 /* | |
2872 * Insert user name in s[len]. | |
2873 */ | |
2874 int | |
2875 mch_get_user_name( | |
26 | 2876 char_u *s, |
2877 int len) | |
7 | 2878 { |
1414 | 2879 char szUserName[256 + 1]; /* UNLEN is 256 */ |
7 | 2880 DWORD cch = sizeof szUserName; |
2881 | |
5549 | 2882 #ifdef FEAT_MBYTE |
2883 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2884 { | |
2885 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */ | |
2886 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR); | |
2887 | |
2888 if (GetUserNameW(wszUserName, &wcch)) | |
2889 { | |
2890 char_u *p = utf16_to_enc(wszUserName, NULL); | |
2891 | |
2892 if (p != NULL) | |
2893 { | |
2894 vim_strncpy(s, p, len - 1); | |
2895 vim_free(p); | |
2896 return OK; | |
2897 } | |
2898 } | |
2899 } | |
2900 #endif | |
7 | 2901 if (GetUserName(szUserName, &cch)) |
2902 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2903 vim_strncpy(s, (char_u *)szUserName, len - 1); |
7 | 2904 return OK; |
2905 } | |
2906 s[0] = NUL; | |
2907 return FAIL; | |
2908 } | |
2909 | |
2910 | |
2911 /* | |
2912 * Insert host name in s[len]. | |
2913 */ | |
2914 void | |
2915 mch_get_host_name( | |
2916 char_u *s, | |
2917 int len) | |
2918 { | |
2919 DWORD cch = len; | |
2920 | |
5551 | 2921 #ifdef FEAT_MBYTE |
2922 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2923 { | |
2924 WCHAR wszHostName[256 + 1]; | |
2925 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR); | |
2926 | |
2927 if (GetComputerNameW(wszHostName, &wcch)) | |
2928 { | |
2929 char_u *p = utf16_to_enc(wszHostName, NULL); | |
2930 | |
2931 if (p != NULL) | |
2932 { | |
2933 vim_strncpy(s, p, len - 1); | |
2934 vim_free(p); | |
2935 return; | |
2936 } | |
2937 } | |
2938 } | |
2939 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2940 if (!GetComputerName((LPSTR)s, &cch)) |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2941 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1); |
7 | 2942 } |
2943 | |
2944 | |
2945 /* | |
2946 * return process ID | |
2947 */ | |
2948 long | |
26 | 2949 mch_get_pid(void) |
7 | 2950 { |
2951 return (long)GetCurrentProcessId(); | |
2952 } | |
2953 | |
2954 | |
2955 /* | |
2956 * Get name of current directory into buffer 'buf' of length 'len' bytes. | |
2957 * Return OK for success, FAIL for failure. | |
2958 */ | |
2959 int | |
2960 mch_dirname( | |
2961 char_u *buf, | |
2962 int len) | |
2963 { | |
2964 /* | |
2965 * Originally this was: | |
2966 * return (getcwd(buf, len) != NULL ? OK : FAIL); | |
2967 * But the Win32s known bug list says that getcwd() doesn't work | |
2968 * so use the Win32 system call instead. <Negri> | |
2969 */ | |
2970 #ifdef FEAT_MBYTE | |
2971 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2972 { | |
2973 WCHAR wbuf[_MAX_PATH + 1]; | |
2974 | |
2975 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0) | |
2976 { | |
1752 | 2977 char_u *p = utf16_to_enc(wbuf, NULL); |
7 | 2978 |
2979 if (p != NULL) | |
2980 { | |
417 | 2981 vim_strncpy(buf, p, len - 1); |
7 | 2982 vim_free(p); |
2983 return OK; | |
2984 } | |
2985 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
2986 return FAIL; |
7 | 2987 } |
2988 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
2989 return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL); |
7 | 2990 } |
2991 | |
2992 /* | |
5494 | 2993 * Get file permissions for "name". |
2994 * Return mode_t or -1 for error. | |
7 | 2995 */ |
2996 long | |
26 | 2997 mch_getperm(char_u *name) |
7 | 2998 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
8949
diff
changeset
|
2999 stat_T st; |
5494 | 3000 int n; |
3001 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3002 n = mch_stat((char *)name, &st); |
5588 | 3003 return n == 0 ? (long)(unsigned short)st.st_mode : -1L; |
7 | 3004 } |
3005 | |
3006 | |
3007 /* | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3008 * Set file permission for "name" to "perm". |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3009 * |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3010 * Return FAIL for failure, OK otherwise. |
7 | 3011 */ |
3012 int | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3013 mch_setperm(char_u *name, long perm) |
7 | 3014 { |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3015 long n = -1; |
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3016 |
7 | 3017 #ifdef FEAT_MBYTE |
3018 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
3019 { | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3020 WCHAR *p = enc_to_utf16(name, NULL); |
7 | 3021 |
3022 if (p != NULL) | |
3023 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3024 n = _wchmod(p, perm); |
7 | 3025 vim_free(p); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3026 if (n == -1) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3027 return FAIL; |
7 | 3028 } |
3029 } | |
5229
1261caf9bc51
updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents:
5112
diff
changeset
|
3030 if (n == -1) |
7 | 3031 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3032 n = _chmod((const char *)name, perm); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3033 if (n == -1) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3034 return FAIL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3035 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3036 win32_set_archive(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3037 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3038 return OK; |
7 | 3039 } |
3040 | |
3041 /* | |
3042 * Set hidden flag for "name". | |
3043 */ | |
3044 void | |
3045 mch_hide(char_u *name) | |
3046 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3047 int attrs = win32_getattrs(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3048 if (attrs == -1) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3049 return; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3050 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3051 attrs |= FILE_ATTRIBUTE_HIDDEN; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3052 win32_setattrs(name, attrs); |
7 | 3053 } |
3054 | |
3055 /* | |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3056 * 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
|
3057 */ |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3058 int |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3059 mch_ishidden(char_u *name) |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3060 { |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3061 int f = win32_getattrs(name); |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3062 |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3063 if (f == -1) |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3064 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
|
3065 |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3066 return (f & FILE_ATTRIBUTE_HIDDEN) != 0; |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3067 } |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3068 |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
3069 /* |
7 | 3070 * return TRUE if "name" is a directory |
3071 * return FALSE if "name" is not a directory or upon error | |
3072 */ | |
3073 int | |
3074 mch_isdir(char_u *name) | |
3075 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3076 int f = win32_getattrs(name); |
7 | 3077 |
3078 if (f == -1) | |
3079 return FALSE; /* file does not exist at all */ | |
3080 | |
3081 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0; | |
3082 } | |
3083 | |
3084 /* | |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3085 * 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
|
3086 * 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
|
3087 * return FALSE for error |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3088 */ |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3089 int |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3090 mch_isrealdir(char_u *name) |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3091 { |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3092 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
|
3093 } |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3094 |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3095 /* |
2803 | 3096 * Create directory "name". |
3097 * Return 0 on success, -1 on error. | |
3098 */ | |
3099 int | |
3100 mch_mkdir(char_u *name) | |
3101 { | |
3102 #ifdef FEAT_MBYTE | |
3103 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
3104 { | |
3105 WCHAR *p; | |
3106 int retval; | |
3107 | |
3108 p = enc_to_utf16(name, NULL); | |
3109 if (p == NULL) | |
3110 return -1; | |
3111 retval = _wmkdir(p); | |
3112 vim_free(p); | |
3113 return retval; | |
3114 } | |
3115 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3116 return _mkdir((const char *)name); |
2803 | 3117 } |
3118 | |
3119 /* | |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3120 * Delete directory "name". |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3121 * 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
|
3122 */ |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3123 int |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3124 mch_rmdir(char_u *name) |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3125 { |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3126 #ifdef FEAT_MBYTE |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3127 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
|
3128 { |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3129 WCHAR *p; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3130 int retval; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3131 |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3132 p = enc_to_utf16(name, NULL); |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3133 if (p == NULL) |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3134 return -1; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3135 retval = _wrmdir(p); |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3136 vim_free(p); |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3137 return retval; |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3138 } |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3139 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3140 return _rmdir((const char *)name); |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3141 } |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3142 |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
3143 /* |
696 | 3144 * Return TRUE if file "fname" has more than one link. |
3145 */ | |
3146 int | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3147 mch_is_hard_link(char_u *fname) |
696 | 3148 { |
2793 | 3149 BY_HANDLE_FILE_INFORMATION info; |
3150 | |
3151 return win32_fileinfo(fname, &info) == FILEINFO_OK | |
3152 && info.nNumberOfLinks > 1; | |
3153 } | |
3154 | |
3155 /* | |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3156 * 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
|
3157 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3158 int |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3159 mch_is_symbolic_link(char_u *name) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3160 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3161 HANDLE hFind; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3162 int res = FALSE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3163 WIN32_FIND_DATAA findDataA; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3164 DWORD fileFlags = 0, reparseTag = 0; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3165 #ifdef FEAT_MBYTE |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3166 WCHAR *wn = NULL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3167 WIN32_FIND_DATAW findDataW; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3168 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3169 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
|
3170 wn = enc_to_utf16(name, NULL); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3171 if (wn != NULL) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3172 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3173 hFind = FindFirstFileW(wn, &findDataW); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3174 vim_free(wn); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3175 if (hFind != INVALID_HANDLE_VALUE) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3176 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3177 fileFlags = findDataW.dwFileAttributes; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3178 reparseTag = findDataW.dwReserved0; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3179 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3180 } |
4930
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3181 else |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3182 #endif |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3183 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3184 hFind = FindFirstFile((LPCSTR)name, &findDataA); |
4930
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3185 if (hFind != INVALID_HANDLE_VALUE) |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3186 { |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3187 fileFlags = findDataA.dwFileAttributes; |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3188 reparseTag = findDataA.dwReserved0; |
7155782d94fb
updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents:
4872
diff
changeset
|
3189 } |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3190 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3191 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3192 if (hFind != INVALID_HANDLE_VALUE) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3193 FindClose(hFind); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3194 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3195 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
|
3196 && (reparseTag == IO_REPARSE_TAG_SYMLINK |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
3197 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT)) |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3198 res = TRUE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3199 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3200 return res; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3201 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3202 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3203 /* |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3204 * 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
|
3205 * link. |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3206 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3207 int |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3208 mch_is_linked(char_u *fname) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3209 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3210 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
|
3211 return TRUE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3212 return FALSE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3213 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3214 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3215 /* |
2793 | 3216 * Get the by-handle-file-information for "fname". |
3217 * Returns FILEINFO_OK when OK. | |
3218 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed. | |
3219 * Returns FILEINFO_READ_FAIL when CreateFile() failed. | |
3220 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed. | |
3221 */ | |
3222 int | |
3223 win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info) | |
3224 { | |
696 | 3225 HANDLE hFile; |
2793 | 3226 int res = FILEINFO_READ_FAIL; |
696 | 3227 #ifdef FEAT_MBYTE |
3228 WCHAR *wn = NULL; | |
3229 | |
3230 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
2793 | 3231 { |
1752 | 3232 wn = enc_to_utf16(fname, NULL); |
2793 | 3233 if (wn == NULL) |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3234 return FILEINFO_ENC_FAIL; |
2793 | 3235 } |
696 | 3236 if (wn != NULL) |
3237 { | |
3238 hFile = CreateFileW(wn, /* file name */ | |
3239 GENERIC_READ, /* access mode */ | |
2793 | 3240 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */ |
696 | 3241 NULL, /* security descriptor */ |
3242 OPEN_EXISTING, /* creation disposition */ | |
2793 | 3243 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */ |
696 | 3244 NULL); /* handle to template file */ |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3245 vim_free(wn); |
696 | 3246 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3247 else |
696 | 3248 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3249 hFile = CreateFile((LPCSTR)fname, /* file name */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3250 GENERIC_READ, /* access mode */ |
2793 | 3251 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */ |
696 | 3252 NULL, /* security descriptor */ |
3253 OPEN_EXISTING, /* creation disposition */ | |
2793 | 3254 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */ |
696 | 3255 NULL); /* handle to template file */ |
3256 | |
3257 if (hFile != INVALID_HANDLE_VALUE) | |
3258 { | |
2793 | 3259 if (GetFileInformationByHandle(hFile, info) != 0) |
3260 res = FILEINFO_OK; | |
3261 else | |
3262 res = FILEINFO_INFO_FAIL; | |
696 | 3263 CloseHandle(hFile); |
3264 } | |
3265 | |
3266 return res; | |
3267 } | |
3268 | |
3269 /* | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3270 * get file attributes for `name' |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3271 * -1 : error |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3272 * else FILE_ATTRIBUTE_* defined in winnt.h |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3273 */ |
5494 | 3274 static int |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3275 win32_getattrs(char_u *name) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3276 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3277 int attr; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3278 #ifdef FEAT_MBYTE |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3279 WCHAR *p = NULL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3280 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3281 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3282 p = enc_to_utf16(name, NULL); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3283 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3284 if (p != NULL) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3285 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3286 attr = GetFileAttributesW(p); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3287 vim_free(p); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3288 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3289 else |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3290 #endif |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3291 attr = GetFileAttributes((char *)name); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3292 |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3293 return attr; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3294 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3295 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3296 /* |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3297 * set file attributes for `name' to `attrs' |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3298 * |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3299 * return -1 for failure, 0 otherwise |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3300 */ |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3301 static |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3302 int |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3303 win32_setattrs(char_u *name, int attrs) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3304 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3305 int res; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3306 #ifdef FEAT_MBYTE |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3307 WCHAR *p = NULL; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3308 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3309 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3310 p = enc_to_utf16(name, NULL); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3311 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3312 if (p != NULL) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3313 { |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3314 res = SetFileAttributesW(p, attrs); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3315 vim_free(p); |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3316 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3317 else |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3318 #endif |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3319 res = SetFileAttributes((char *)name, attrs); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3320 |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3321 return res ? 0 : -1; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3322 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3323 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3324 /* |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3325 * Set archive flag for "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 static |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3328 int |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3329 win32_set_archive(char_u *name) |
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 int attrs = win32_getattrs(name); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3332 if (attrs == -1) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3333 return -1; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3334 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3335 attrs |= FILE_ATTRIBUTE_ARCHIVE; |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3336 return win32_setattrs(name, attrs); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3337 } |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3338 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3339 /* |
7 | 3340 * Return TRUE if file or directory "name" is writable (not readonly). |
3341 * Strange semantics of Win32: a readonly directory is writable, but you can't | |
3342 * delete a file. Let's say this means it is writable. | |
3343 */ | |
3344 int | |
3345 mch_writable(char_u *name) | |
3346 { | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3347 int attrs = win32_getattrs(name); |
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 (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY) |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
3350 || (attrs & FILE_ATTRIBUTE_DIRECTORY))); |
7 | 3351 } |
3352 | |
3353 /* | |
3354 * Return 1 if "name" can be executed, 0 if not. | |
6700 | 3355 * If "use_path" is FALSE only check if "name" is executable. |
7 | 3356 * Return -1 if unknown. |
3357 */ | |
3358 int | |
6700 | 3359 mch_can_exe(char_u *name, char_u **path, int use_path) |
7 | 3360 { |
10 | 3361 char_u buf[_MAX_PATH]; |
835 | 3362 int len = (int)STRLEN(name); |
10 | 3363 char_u *p; |
3364 | |
3365 if (len >= _MAX_PATH) /* safety check */ | |
3366 return FALSE; | |
6700 | 3367 if (!use_path) |
3368 { | |
3369 /* TODO: check if file is really executable. */ | |
3370 return mch_getperm(name) != -1 && !mch_isdir(name); | |
3371 } | |
10 | 3372 |
3373 /* If there already is an extension try using the name directly. Also do | |
3374 * this with a Unix-shell like 'shell'. */ | |
3375 if (vim_strchr(gettail(name), '.') != NULL | |
3376 || strstr((char *)gettail(p_sh), "sh") != NULL) | |
5782 | 3377 if (executable_exists((char *)name, path)) |
10 | 3378 return TRUE; |
3379 | |
3380 /* | |
3381 * Loop over all extensions in $PATHEXT. | |
3382 */ | |
417 | 3383 vim_strncpy(buf, name, _MAX_PATH - 1); |
10 | 3384 p = mch_getenv("PATHEXT"); |
3385 if (p == NULL) | |
3386 p = (char_u *)".com;.exe;.bat;.cmd"; | |
3387 while (*p) | |
3388 { | |
3389 if (p[0] == '.' && (p[1] == NUL || p[1] == ';')) | |
3390 { | |
3391 /* A single "." means no extension is added. */ | |
3392 buf[len] = NUL; | |
3393 ++p; | |
3394 if (*p) | |
3395 ++p; | |
3396 } | |
3397 else | |
3398 copy_option_part(&p, buf + len, _MAX_PATH - len, ";"); | |
5782 | 3399 if (executable_exists((char *)buf, path)) |
10 | 3400 return TRUE; |
3401 } | |
3402 return FALSE; | |
7 | 3403 } |
3404 | |
3405 /* | |
3406 * Check what "name" is: | |
3407 * NODE_NORMAL: file or directory (or doesn't exist) | |
3408 * NODE_WRITABLE: writable device, socket, fifo, etc. | |
3409 * NODE_OTHER: non-writable things | |
3410 */ | |
3411 int | |
3412 mch_nodetype(char_u *name) | |
3413 { | |
3414 HANDLE hFile; | |
3415 int type; | |
5324 | 3416 #ifdef FEAT_MBYTE |
3417 WCHAR *wn = NULL; | |
3418 #endif | |
7 | 3419 |
1004 | 3420 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to |
3421 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE | |
3422 * here. */ | |
3423 if (STRNCMP(name, "\\\\.\\", 4) == 0) | |
3424 return NODE_WRITABLE; | |
3425 | |
5324 | 3426 #ifdef FEAT_MBYTE |
3427 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
|
3428 wn = enc_to_utf16(name, NULL); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3429 |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3430 if (wn != NULL) |
5324 | 3431 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3432 hFile = CreateFileW(wn, /* file name */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3433 GENERIC_WRITE, /* access mode */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3434 0, /* share mode */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3435 NULL, /* security descriptor */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3436 OPEN_EXISTING, /* creation disposition */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3437 0, /* file attributes */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3438 NULL); /* handle to template file */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3439 vim_free(wn); |
5324 | 3440 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3441 else |
5324 | 3442 #endif |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3443 hFile = CreateFile((LPCSTR)name, /* file name */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3444 GENERIC_WRITE, /* access mode */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3445 0, /* share mode */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3446 NULL, /* security descriptor */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3447 OPEN_EXISTING, /* creation disposition */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3448 0, /* file attributes */ |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3449 NULL); /* handle to template file */ |
5324 | 3450 |
7 | 3451 if (hFile == INVALID_HANDLE_VALUE) |
3452 return NODE_NORMAL; | |
3453 | |
3454 type = GetFileType(hFile); | |
3455 CloseHandle(hFile); | |
3456 if (type == FILE_TYPE_CHAR) | |
3457 return NODE_WRITABLE; | |
3458 if (type == FILE_TYPE_DISK) | |
3459 return NODE_NORMAL; | |
3460 return NODE_OTHER; | |
3461 } | |
3462 | |
3463 #ifdef HAVE_ACL | |
3464 struct my_acl | |
3465 { | |
3466 PSECURITY_DESCRIPTOR pSecurityDescriptor; | |
3467 PSID pSidOwner; | |
3468 PSID pSidGroup; | |
3469 PACL pDacl; | |
3470 PACL pSacl; | |
3471 }; | |
3472 #endif | |
3473 | |
3474 /* | |
3475 * Return a pointer to the ACL of file "fname" in allocated memory. | |
3476 * Return NULL if the ACL is not available for whatever reason. | |
3477 */ | |
3478 vim_acl_T | |
26 | 3479 mch_get_acl(char_u *fname) |
7 | 3480 { |
3481 #ifndef HAVE_ACL | |
3482 return (vim_acl_T)NULL; | |
3483 #else | |
3484 struct my_acl *p = NULL; | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3485 DWORD err; |
7 | 3486 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3487 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
|
3488 if (p != NULL) |
7 | 3489 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3490 # ifdef FEAT_MBYTE |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3491 WCHAR *wn = NULL; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3492 |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3493 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
|
3494 wn = enc_to_utf16(fname, NULL); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3495 if (wn != NULL) |
7 | 3496 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3497 /* 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
|
3498 err = GetNamedSecurityInfoW( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3499 wn, // Abstract filename |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3500 SE_FILE_OBJECT, // File Object |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3501 OWNER_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3502 GROUP_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3503 DACL_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3504 SACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3505 &p->pSidOwner, // Ownership information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3506 &p->pSidGroup, // Group membership. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3507 &p->pDacl, // Discretionary information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3508 &p->pSacl, // For auditing purposes. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3509 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3510 if (err == ERROR_ACCESS_DENIED || |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3511 err == ERROR_PRIVILEGE_NOT_HELD) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3512 { |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3513 /* Retrieve only DACL. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3514 (void)GetNamedSecurityInfoW( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3515 wn, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3516 SE_FILE_OBJECT, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3517 DACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3518 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3519 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3520 &p->pDacl, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3521 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3522 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3523 } |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3524 if (p->pSecurityDescriptor == NULL) |
7 | 3525 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3526 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
|
3527 p = NULL; |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3528 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3529 vim_free(wn); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3530 } |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3531 else |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3532 # endif |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3533 { |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3534 /* 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
|
3535 err = GetNamedSecurityInfo( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3536 (LPSTR)fname, // Abstract filename |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3537 SE_FILE_OBJECT, // File Object |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3538 OWNER_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3539 GROUP_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3540 DACL_SECURITY_INFORMATION | |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3541 SACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3542 &p->pSidOwner, // Ownership information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3543 &p->pSidGroup, // Group membership. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3544 &p->pDacl, // Discretionary information. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3545 &p->pSacl, // For auditing purposes. |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3546 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3547 if (err == ERROR_ACCESS_DENIED || |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3548 err == ERROR_PRIVILEGE_NOT_HELD) |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3549 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3550 /* Retrieve only DACL. */ |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3551 (void)GetNamedSecurityInfo( |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3552 (LPSTR)fname, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3553 SE_FILE_OBJECT, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3554 DACL_SECURITY_INFORMATION, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3555 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3556 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3557 &p->pDacl, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3558 NULL, |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3559 &p->pSecurityDescriptor); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3560 } |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3561 if (p->pSecurityDescriptor == NULL) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3562 { |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3563 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
|
3564 p = NULL; |
7 | 3565 } |
3566 } | |
3567 } | |
3568 | |
3569 return (vim_acl_T)p; | |
3570 #endif | |
3571 } | |
3572 | |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3573 #ifdef HAVE_ACL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3574 /* |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3575 * Check if "acl" contains inherited ACE. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3576 */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3577 static BOOL |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3578 is_acl_inherited(PACL acl) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3579 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3580 DWORD i; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3581 ACL_SIZE_INFORMATION acl_info; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3582 PACCESS_ALLOWED_ACE ace; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3583 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3584 acl_info.AceCount = 0; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3585 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3586 for (i = 0; i < acl_info.AceCount; i++) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3587 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3588 GetAce(acl, i, (LPVOID *)&ace); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3589 if (ace->Header.AceFlags & INHERITED_ACE) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3590 return TRUE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3591 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3592 return FALSE; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3593 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3594 #endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3595 |
7 | 3596 /* |
3597 * Set the ACL of file "fname" to "acl" (unless it's NULL). | |
3598 * Errors are ignored. | |
3599 * This must only be called with "acl" equal to what mch_get_acl() returned. | |
3600 */ | |
3601 void | |
26 | 3602 mch_set_acl(char_u *fname, vim_acl_T acl) |
7 | 3603 { |
3604 #ifdef HAVE_ACL | |
3605 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
|
3606 SECURITY_INFORMATION sec_info = 0; |
7 | 3607 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3608 if (p != NULL) |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3609 { |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3610 # ifdef FEAT_MBYTE |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3611 WCHAR *wn = NULL; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3612 # endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3613 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3614 /* Set security flags */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3615 if (p->pSidOwner) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3616 sec_info |= OWNER_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3617 if (p->pSidGroup) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3618 sec_info |= GROUP_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3619 if (p->pDacl) |
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 sec_info |= DACL_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3622 /* Do not inherit its parent's DACL. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3623 * 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
|
3624 */ |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3625 if (!is_acl_inherited(p->pDacl)) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3626 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3627 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3628 if (p->pSacl) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3629 sec_info |= SACL_SECURITY_INFORMATION; |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3630 |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3631 # ifdef FEAT_MBYTE |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3632 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3633 wn = enc_to_utf16(fname, NULL); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3634 if (wn != NULL) |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3635 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3636 (void)SetNamedSecurityInfoW( |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3637 wn, // Abstract filename |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3638 SE_FILE_OBJECT, // File Object |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3639 sec_info, |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3640 p->pSidOwner, // Ownership information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3641 p->pSidGroup, // Group membership. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3642 p->pDacl, // Discretionary information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3643 p->pSacl // For auditing purposes. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3644 ); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3645 vim_free(wn); |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3646 } |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3647 else |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3648 # endif |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3649 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3650 (void)SetNamedSecurityInfo( |
5047
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3651 (LPSTR)fname, // Abstract filename |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3652 SE_FILE_OBJECT, // File Object |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3653 sec_info, |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3654 p->pSidOwner, // Ownership information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3655 p->pSidGroup, // Group membership. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3656 p->pDacl, // Discretionary information. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3657 p->pSacl // For auditing purposes. |
cabdcfe72dc3
updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents:
4930
diff
changeset
|
3658 ); |
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 } |
7 | 3661 #endif |
3662 } | |
3663 | |
3664 void | |
26 | 3665 mch_free_acl(vim_acl_T acl) |
7 | 3666 { |
3667 #ifdef HAVE_ACL | |
3668 struct my_acl *p = (struct my_acl *)acl; | |
3669 | |
3670 if (p != NULL) | |
3671 { | |
3672 LocalFree(p->pSecurityDescriptor); // Free the memory just in case | |
3673 vim_free(p); | |
3674 } | |
3675 #endif | |
3676 } | |
3677 | |
3678 #ifndef FEAT_GUI_W32 | |
3679 | |
3680 /* | |
3681 * handler for ctrl-break, ctrl-c interrupts, and fatal events. | |
3682 */ | |
3683 static BOOL WINAPI | |
3684 handler_routine( | |
3685 DWORD dwCtrlType) | |
3686 { | |
3687 switch (dwCtrlType) | |
3688 { | |
3689 case CTRL_C_EVENT: | |
3690 if (ctrl_c_interrupts) | |
3691 g_fCtrlCPressed = TRUE; | |
3692 return TRUE; | |
3693 | |
3694 case CTRL_BREAK_EVENT: | |
3695 g_fCBrkPressed = TRUE; | |
3696 return TRUE; | |
3697 | |
3698 /* fatal events: shut down gracefully */ | |
3699 case CTRL_CLOSE_EVENT: | |
3700 case CTRL_LOGOFF_EVENT: | |
3701 case CTRL_SHUTDOWN_EVENT: | |
3702 windgoto((int)Rows - 1, 0); | |
3703 g_fForceExit = TRUE; | |
3704 | |
1569 | 3705 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"), |
7 | 3706 (dwCtrlType == CTRL_CLOSE_EVENT |
3707 ? _("close") | |
3708 : dwCtrlType == CTRL_LOGOFF_EVENT | |
3709 ? _("logoff") | |
3710 : _("shutdown"))); | |
3711 #ifdef DEBUG | |
3712 OutputDebugString(IObuff); | |
3713 #endif | |
3714 | |
3715 preserve_exit(); /* output IObuff, preserve files and exit */ | |
3716 | |
3717 return TRUE; /* not reached */ | |
3718 | |
3719 default: | |
3720 return FALSE; | |
3721 } | |
3722 } | |
3723 | |
3724 | |
3725 /* | |
3726 * set the tty in (raw) ? "raw" : "cooked" mode | |
3727 */ | |
3728 void | |
26 | 3729 mch_settmode(int tmode) |
7 | 3730 { |
3731 DWORD cmodein; | |
3732 DWORD cmodeout; | |
3733 BOOL bEnableHandler; | |
3734 | |
3735 GetConsoleMode(g_hConIn, &cmodein); | |
3736 GetConsoleMode(g_hConOut, &cmodeout); | |
3737 if (tmode == TMODE_RAW) | |
3738 { | |
3739 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | | |
3740 ENABLE_ECHO_INPUT); | |
3741 #ifdef FEAT_MOUSE | |
3742 if (g_fMouseActive) | |
3743 cmodein |= ENABLE_MOUSE_INPUT; | |
3744 #endif | |
3745 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); | |
3746 bEnableHandler = TRUE; | |
3747 } | |
3748 else /* cooked */ | |
3749 { | |
3750 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | | |
3751 ENABLE_ECHO_INPUT); | |
3752 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); | |
3753 bEnableHandler = FALSE; | |
3754 } | |
3755 SetConsoleMode(g_hConIn, cmodein); | |
3756 SetConsoleMode(g_hConOut, cmodeout); | |
3757 SetConsoleCtrlHandler(handler_routine, bEnableHandler); | |
3758 | |
3759 #ifdef MCH_WRITE_DUMP | |
3760 if (fdDump) | |
3761 { | |
3762 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n", | |
3763 tmode == TMODE_RAW ? "raw" : | |
3764 tmode == TMODE_COOK ? "cooked" : "normal", | |
3765 cmodein, cmodeout); | |
3766 fflush(fdDump); | |
3767 } | |
3768 #endif | |
3769 } | |
3770 | |
3771 | |
3772 /* | |
3773 * Get the size of the current window in `Rows' and `Columns' | |
3774 * Return OK when size could be determined, FAIL otherwise. | |
3775 */ | |
3776 int | |
26 | 3777 mch_get_shellsize(void) |
7 | 3778 { |
3779 CONSOLE_SCREEN_BUFFER_INFO csbi; | |
3780 | |
3781 if (!g_fTermcapMode && g_cbTermcap.IsValid) | |
3782 { | |
3783 /* | |
3784 * For some reason, we are trying to get the screen dimensions | |
3785 * even though we are not in termcap mode. The 'Rows' and 'Columns' | |
3786 * variables are really intended to mean the size of Vim screen | |
3787 * while in termcap mode. | |
3788 */ | |
3789 Rows = g_cbTermcap.Info.dwSize.Y; | |
3790 Columns = g_cbTermcap.Info.dwSize.X; | |
3791 } | |
3792 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
3793 { | |
3794 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; | |
3795 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1; | |
3796 } | |
3797 else | |
3798 { | |
3799 Rows = 25; | |
3800 Columns = 80; | |
3801 } | |
3802 return OK; | |
3803 } | |
3804 | |
3805 /* | |
3806 * Set a console window to `xSize' * `ySize' | |
3807 */ | |
3808 static void | |
3809 ResizeConBufAndWindow( | |
26 | 3810 HANDLE hConsole, |
3811 int xSize, | |
3812 int ySize) | |
7 | 3813 { |
3814 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */ | |
3815 SMALL_RECT srWindowRect; /* hold the new console size */ | |
3816 COORD coordScreen; | |
3817 | |
3818 #ifdef MCH_WRITE_DUMP | |
3819 if (fdDump) | |
3820 { | |
3821 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize); | |
3822 fflush(fdDump); | |
3823 } | |
3824 #endif | |
3825 | |
3826 /* get the largest size we can size the console window to */ | |
3827 coordScreen = GetLargestConsoleWindowSize(hConsole); | |
3828 | |
3829 /* define the new console window size and scroll position */ | |
3830 srWindowRect.Left = srWindowRect.Top = (SHORT) 0; | |
3831 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1); | |
3832 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1); | |
3833 | |
3834 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) | |
3835 { | |
3836 int sx, sy; | |
3837 | |
3838 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1; | |
3839 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; | |
3840 if (sy < ySize || sx < xSize) | |
3841 { | |
3842 /* | |
3843 * Increasing number of lines/columns, do buffer first. | |
3844 * Use the maximal size in x and y direction. | |
3845 */ | |
3846 if (sy < ySize) | |
3847 coordScreen.Y = ySize; | |
3848 else | |
3849 coordScreen.Y = sy; | |
3850 if (sx < xSize) | |
3851 coordScreen.X = xSize; | |
3852 else | |
3853 coordScreen.X = sx; | |
3854 SetConsoleScreenBufferSize(hConsole, coordScreen); | |
3855 } | |
3856 } | |
3857 | |
3858 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect)) | |
3859 { | |
3860 #ifdef MCH_WRITE_DUMP | |
3861 if (fdDump) | |
3862 { | |
3863 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n", | |
3864 GetLastError()); | |
3865 fflush(fdDump); | |
3866 } | |
3867 #endif | |
3868 } | |
3869 | |
3870 /* define the new console buffer size */ | |
3871 coordScreen.X = xSize; | |
3872 coordScreen.Y = ySize; | |
3873 | |
3874 if (!SetConsoleScreenBufferSize(hConsole, coordScreen)) | |
3875 { | |
3876 #ifdef MCH_WRITE_DUMP | |
3877 if (fdDump) | |
3878 { | |
3879 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n", | |
3880 GetLastError()); | |
3881 fflush(fdDump); | |
3882 } | |
3883 #endif | |
3884 } | |
3885 } | |
3886 | |
3887 | |
3888 /* | |
3889 * Set the console window to `Rows' * `Columns' | |
3890 */ | |
3891 void | |
26 | 3892 mch_set_shellsize(void) |
7 | 3893 { |
3894 COORD coordScreen; | |
3895 | |
3896 /* Don't change window size while still starting up */ | |
3897 if (suppress_winsize != 0) | |
3898 { | |
3899 suppress_winsize = 2; | |
3900 return; | |
3901 } | |
3902 | |
3903 if (term_console) | |
3904 { | |
3905 coordScreen = GetLargestConsoleWindowSize(g_hConOut); | |
3906 | |
3907 /* Clamp Rows and Columns to reasonable values */ | |
3908 if (Rows > coordScreen.Y) | |
3909 Rows = coordScreen.Y; | |
3910 if (Columns > coordScreen.X) | |
3911 Columns = coordScreen.X; | |
3912 | |
3913 ResizeConBufAndWindow(g_hConOut, Columns, Rows); | |
3914 } | |
3915 } | |
3916 | |
3917 /* | |
3918 * Rows and/or Columns has changed. | |
3919 */ | |
3920 void | |
26 | 3921 mch_new_shellsize(void) |
7 | 3922 { |
3923 set_scroll_region(0, 0, Columns - 1, Rows - 1); | |
3924 } | |
3925 | |
3926 | |
3927 /* | |
3928 * Called when started up, to set the winsize that was delayed. | |
3929 */ | |
3930 void | |
26 | 3931 mch_set_winsize_now(void) |
7 | 3932 { |
3933 if (suppress_winsize == 2) | |
3934 { | |
3935 suppress_winsize = 0; | |
3936 mch_set_shellsize(); | |
3937 shell_resized(); | |
3938 } | |
3939 suppress_winsize = 0; | |
3940 } | |
3941 #endif /* FEAT_GUI_W32 */ | |
3942 | |
5547 | 3943 static BOOL |
3944 vim_create_process( | |
5556 | 3945 char *cmd, |
5569 | 3946 BOOL inherit_handles, |
5547 | 3947 DWORD flags, |
3948 STARTUPINFO *si, | |
3949 PROCESS_INFORMATION *pi) | |
3950 { | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
3951 #ifdef FEAT_MBYTE |
5547 | 3952 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
3953 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
3954 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
5547 | 3955 |
3956 if (wcmd != NULL) | |
3957 { | |
3958 BOOL ret; | |
3959 ret = CreateProcessW( | |
3960 NULL, /* Executable name */ | |
3961 wcmd, /* Command to execute */ | |
3962 NULL, /* Process security attributes */ | |
3963 NULL, /* Thread security attributes */ | |
3964 inherit_handles, /* Inherit handles */ | |
3965 flags, /* Creation flags */ | |
3966 NULL, /* Environment */ | |
3967 NULL, /* Current directory */ | |
5556 | 3968 (LPSTARTUPINFOW)si, /* Startup information */ |
5547 | 3969 pi); /* Process information */ |
3970 vim_free(wcmd); | |
3971 return ret; | |
3972 } | |
3973 } | |
3974 #endif | |
3975 return CreateProcess( | |
3976 NULL, /* Executable name */ | |
3977 cmd, /* Command to execute */ | |
3978 NULL, /* Process security attributes */ | |
3979 NULL, /* Thread security attributes */ | |
3980 inherit_handles, /* Inherit handles */ | |
3981 flags, /* Creation flags */ | |
3982 NULL, /* Environment */ | |
3983 NULL, /* Current directory */ | |
3984 si, /* Startup information */ | |
3985 pi); /* Process information */ | |
3986 } | |
7 | 3987 |
3988 | |
3989 #if defined(FEAT_GUI_W32) || defined(PROTO) | |
3990 | |
3991 /* | |
3992 * Specialised version of system() for Win32 GUI mode. | |
3993 * This version proceeds as follows: | |
3994 * 1. Create a console window for use by the subprocess | |
3995 * 2. Run the subprocess (it gets the allocated console by default) | |
3996 * 3. Wait for the subprocess to terminate and get its exit code | |
3997 * 4. Prompt the user to press a key to close the console window | |
3998 */ | |
3999 static int | |
2935 | 4000 mch_system_classic(char *cmd, int options) |
7 | 4001 { |
4002 STARTUPINFO si; | |
4003 PROCESS_INFORMATION pi; | |
4004 DWORD ret = 0; | |
4005 HWND hwnd = GetFocus(); | |
4006 | |
4007 si.cb = sizeof(si); | |
4008 si.lpReserved = NULL; | |
4009 si.lpDesktop = NULL; | |
4010 si.lpTitle = NULL; | |
4011 si.dwFlags = STARTF_USESHOWWINDOW; | |
4012 /* | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4013 * It's nicer to run a filter command in a minimized window. |
2643 | 4014 * Don't activate the window to keep focus on Vim. |
7 | 4015 */ |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4016 if (options & SHELL_DOOUT) |
2643 | 4017 si.wShowWindow = SW_SHOWMINNOACTIVE; |
7 | 4018 else |
4019 si.wShowWindow = SW_SHOWNORMAL; | |
4020 si.cbReserved2 = 0; | |
4021 si.lpReserved2 = NULL; | |
4022 | |
4023 /* Now, run the command */ | |
5547 | 4024 vim_create_process(cmd, FALSE, |
4025 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, &si, &pi); | |
7 | 4026 |
4027 /* Wait for the command to terminate before continuing */ | |
4028 { | |
4029 #ifdef FEAT_GUI | |
4030 int delay = 1; | |
4031 | |
4032 /* Keep updating the window while waiting for the shell to finish. */ | |
4033 for (;;) | |
4034 { | |
4035 MSG msg; | |
4036 | |
3010 | 4037 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) |
7 | 4038 { |
4039 TranslateMessage(&msg); | |
3010 | 4040 pDispatchMessage(&msg); |
3720 | 4041 delay = 1; |
4042 continue; | |
7 | 4043 } |
4044 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT) | |
4045 break; | |
4046 | |
4047 /* We start waiting for a very short time and then increase it, so | |
4048 * that we respond quickly when the process is quick, and don't | |
4049 * consume too much overhead when it's slow. */ | |
4050 if (delay < 50) | |
4051 delay += 10; | |
4052 } | |
4053 #else | |
4054 WaitForSingleObject(pi.hProcess, INFINITE); | |
4055 #endif | |
4056 | |
4057 /* Get the command exit code */ | |
4058 GetExitCodeProcess(pi.hProcess, &ret); | |
4059 } | |
4060 | |
4061 /* Close the handles to the subprocess, so that it goes away */ | |
4062 CloseHandle(pi.hThread); | |
4063 CloseHandle(pi.hProcess); | |
4064 | |
4065 /* Try to get input focus back. Doesn't always work though. */ | |
4066 PostMessage(hwnd, WM_SETFOCUS, 0, 0); | |
4067 | |
4068 return ret; | |
4069 } | |
2935 | 4070 |
4071 /* | |
4072 * Thread launched by the gui to send the current buffer data to the | |
4073 * process. This way avoid to hang up vim totally if the children | |
4074 * process take a long time to process the lines. | |
4075 */ | |
9750
0f4b76b2757a
commit https://github.com/vim/vim/commit/4c38d66d25e4ba433fe87283a4664425a3dbd529
Christian Brabandt <cb@256bit.org>
parents:
9740
diff
changeset
|
4076 static unsigned int __stdcall |
2935 | 4077 sub_process_writer(LPVOID param) |
4078 { | |
4079 HANDLE g_hChildStd_IN_Wr = param; | |
4080 linenr_T lnum = curbuf->b_op_start.lnum; | |
4081 DWORD len = 0; | |
4082 DWORD l; | |
4083 char_u *lp = ml_get(lnum); | |
4084 char_u *s; | |
4085 int written = 0; | |
4086 | |
4087 for (;;) | |
4088 { | |
4089 l = (DWORD)STRLEN(lp + written); | |
4090 if (l == 0) | |
4091 len = 0; | |
4092 else if (lp[written] == NL) | |
4093 { | |
4094 /* NL -> NUL translation */ | |
4095 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL); | |
4096 } | |
4097 else | |
4098 { | |
4099 s = vim_strchr(lp + written, NL); | |
4100 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written, | |
4101 s == NULL ? l : (DWORD)(s - (lp + written)), | |
4102 &len, NULL); | |
4103 } | |
4104 if (len == (int)l) | |
4105 { | |
4106 /* Finished a line, add a NL, unless this line should not have | |
4107 * one. */ | |
4108 if (lnum != curbuf->b_op_end.lnum | |
6933 | 4109 || (!curbuf->b_p_bin |
4110 && curbuf->b_p_fixeol) | |
2935 | 4111 || (lnum != curbuf->b_no_eol_lnum |
4112 && (lnum != curbuf->b_ml.ml_line_count | |
4113 || curbuf->b_p_eol))) | |
4114 { | |
4238 | 4115 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL); |
2935 | 4116 } |
4117 | |
4118 ++lnum; | |
4119 if (lnum > curbuf->b_op_end.lnum) | |
4120 break; | |
4121 | |
4122 lp = ml_get(lnum); | |
4123 written = 0; | |
4124 } | |
4125 else if (len > 0) | |
4126 written += len; | |
4127 } | |
4128 | |
4129 /* finished all the lines, close pipe */ | |
4130 CloseHandle(g_hChildStd_IN_Wr); | |
9740
4665d491a69e
commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4131 return 0; |
2935 | 4132 } |
4133 | |
4134 | |
4135 # define BUFLEN 100 /* length for buffer, stolen from unix version */ | |
4136 | |
4137 /* | |
4138 * This function read from the children's stdout and write the | |
4139 * data on screen or in the buffer accordingly. | |
4140 */ | |
4141 static void | |
4142 dump_pipe(int options, | |
4143 HANDLE g_hChildStd_OUT_Rd, | |
4144 garray_T *ga, | |
4145 char_u buffer[], | |
4146 DWORD *buffer_off) | |
4147 { | |
4148 DWORD availableBytes = 0; | |
4149 DWORD i; | |
4150 int ret; | |
4151 DWORD len; | |
4152 DWORD toRead; | |
4153 int repeatCount; | |
4154 | |
4155 /* we query the pipe to see if there is any data to read | |
4156 * to avoid to perform a blocking read */ | |
4157 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */ | |
4158 NULL, /* optional buffer */ | |
3622 | 4159 0, /* buffer size */ |
2935 | 4160 NULL, /* number of read bytes */ |
4161 &availableBytes, /* available bytes total */ | |
4162 NULL); /* byteLeft */ | |
4163 | |
4164 repeatCount = 0; | |
4165 /* We got real data in the pipe, read it */ | |
3622 | 4166 while (ret != 0 && availableBytes > 0) |
2935 | 4167 { |
4168 repeatCount++; | |
4169 toRead = | |
4170 # ifdef FEAT_MBYTE | |
4171 (DWORD)(BUFLEN - *buffer_off); | |
4172 # else | |
4173 (DWORD)BUFLEN; | |
4174 # endif | |
4175 toRead = availableBytes < toRead ? availableBytes : toRead; | |
4176 ReadFile(g_hChildStd_OUT_Rd, buffer | |
4177 # ifdef FEAT_MBYTE | |
4178 + *buffer_off, toRead | |
4179 # else | |
4180 , toRead | |
4181 # endif | |
4182 , &len, NULL); | |
4183 | |
4184 /* If we haven't read anything, there is a problem */ | |
4185 if (len == 0) | |
4186 break; | |
4187 | |
4188 availableBytes -= len; | |
4189 | |
4190 if (options & SHELL_READ) | |
4191 { | |
4192 /* Do NUL -> NL translation, append NL separated | |
4193 * lines to the current buffer. */ | |
4194 for (i = 0; i < len; ++i) | |
4195 { | |
4196 if (buffer[i] == NL) | |
4197 append_ga_line(ga); | |
4198 else if (buffer[i] == NUL) | |
4199 ga_append(ga, NL); | |
4200 else | |
4201 ga_append(ga, buffer[i]); | |
4202 } | |
4203 } | |
4204 # ifdef FEAT_MBYTE | |
4205 else if (has_mbyte) | |
4206 { | |
4207 int l; | |
3030 | 4208 int c; |
4209 char_u *p; | |
2935 | 4210 |
4211 len += *buffer_off; | |
4212 buffer[len] = NUL; | |
4213 | |
4214 /* Check if the last character in buffer[] is | |
4215 * incomplete, keep these bytes for the next | |
4216 * round. */ | |
4217 for (p = buffer; p < buffer + len; p += l) | |
4218 { | |
9898
bff8a09016a5
commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents:
9762
diff
changeset
|
4219 l = MB_CPTR2LEN(p); |
2935 | 4220 if (l == 0) |
4221 l = 1; /* NUL byte? */ | |
4222 else if (MB_BYTE2LEN(*p) != l) | |
4223 break; | |
4224 } | |
4225 if (p == buffer) /* no complete character */ | |
4226 { | |
4227 /* avoid getting stuck at an illegal byte */ | |
4228 if (len >= 12) | |
4229 ++p; | |
4230 else | |
4231 { | |
4232 *buffer_off = len; | |
4233 return; | |
4234 } | |
4235 } | |
4236 c = *p; | |
4237 *p = NUL; | |
4238 msg_puts(buffer); | |
4239 if (p < buffer + len) | |
4240 { | |
4241 *p = c; | |
4242 *buffer_off = (DWORD)((buffer + len) - p); | |
4243 mch_memmove(buffer, p, *buffer_off); | |
4244 return; | |
4245 } | |
4246 *buffer_off = 0; | |
4247 } | |
4248 # endif /* FEAT_MBYTE */ | |
4249 else | |
4250 { | |
4251 buffer[len] = NUL; | |
4252 msg_puts(buffer); | |
4253 } | |
4254 | |
4255 windgoto(msg_row, msg_col); | |
4256 cursor_on(); | |
4257 out_flush(); | |
4258 } | |
4259 } | |
4260 | |
4261 /* | |
4262 * Version of system to use for windows NT > 5.0 (Win2K), use pipe | |
4263 * for communication and doesn't open any new window. | |
4264 */ | |
4265 static int | |
4266 mch_system_piped(char *cmd, int options) | |
4267 { | |
4268 STARTUPINFO si; | |
4269 PROCESS_INFORMATION pi; | |
4270 DWORD ret = 0; | |
4271 | |
4272 HANDLE g_hChildStd_IN_Rd = NULL; | |
4273 HANDLE g_hChildStd_IN_Wr = NULL; | |
4274 HANDLE g_hChildStd_OUT_Rd = NULL; | |
4275 HANDLE g_hChildStd_OUT_Wr = NULL; | |
4276 | |
4277 char_u buffer[BUFLEN + 1]; /* reading buffer + size */ | |
4278 DWORD len; | |
4279 | |
4280 /* buffer used to receive keys */ | |
4281 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ | |
4282 int ta_len = 0; /* valid bytes in ta_buf[] */ | |
4283 | |
4284 DWORD i; | |
4285 int c; | |
4286 int noread_cnt = 0; | |
4287 garray_T ga; | |
4288 int delay = 1; | |
4289 DWORD buffer_off = 0; /* valid bytes in buffer[] */ | |
3361 | 4290 char *p = NULL; |
2935 | 4291 |
4292 SECURITY_ATTRIBUTES saAttr; | |
4293 | |
4294 /* Set the bInheritHandle flag so pipe handles are inherited. */ | |
4295 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); | |
4296 saAttr.bInheritHandle = TRUE; | |
4297 saAttr.lpSecurityDescriptor = NULL; | |
4298 | |
4299 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0) | |
4300 /* 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
|
4301 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0) |
2935 | 4302 /* Create a pipe for the child process's STDIN. */ |
4303 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0) | |
4304 /* 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
|
4305 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) ) |
2935 | 4306 { |
4307 CloseHandle(g_hChildStd_IN_Rd); | |
4308 CloseHandle(g_hChildStd_IN_Wr); | |
4309 CloseHandle(g_hChildStd_OUT_Rd); | |
4310 CloseHandle(g_hChildStd_OUT_Wr); | |
4311 MSG_PUTS(_("\nCannot create pipes\n")); | |
4312 } | |
4313 | |
4314 si.cb = sizeof(si); | |
4315 si.lpReserved = NULL; | |
4316 si.lpDesktop = NULL; | |
4317 si.lpTitle = NULL; | |
4318 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES; | |
4319 | |
4320 /* set-up our file redirection */ | |
4321 si.hStdError = g_hChildStd_OUT_Wr; | |
4322 si.hStdOutput = g_hChildStd_OUT_Wr; | |
4323 si.hStdInput = g_hChildStd_IN_Rd; | |
4324 si.wShowWindow = SW_HIDE; | |
4325 si.cbReserved2 = 0; | |
4326 si.lpReserved2 = NULL; | |
4327 | |
4328 if (options & SHELL_READ) | |
4329 ga_init2(&ga, 1, BUFLEN); | |
4330 | |
3361 | 4331 if (cmd != NULL) |
4332 { | |
4333 p = (char *)vim_strsave((char_u *)cmd); | |
4334 if (p != NULL) | |
4335 unescape_shellxquote((char_u *)p, p_sxe); | |
4336 else | |
4337 p = cmd; | |
4338 } | |
4339 | |
5547 | 4340 /* Now, run the command. |
4341 * About "Inherit handles" being TRUE: this command can be litigious, | |
4342 * handle inheritance was deactivated for pending temp file, but, if we | |
4343 * deactivate it, the pipes don't work for some reason. */ | |
4344 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, &si, &pi); | |
2935 | 4345 |
3361 | 4346 if (p != cmd) |
4347 vim_free(p); | |
2935 | 4348 |
4349 /* Close our unused side of the pipes */ | |
4350 CloseHandle(g_hChildStd_IN_Rd); | |
4351 CloseHandle(g_hChildStd_OUT_Wr); | |
4352 | |
4353 if (options & SHELL_WRITE) | |
4354 { | |
9740
4665d491a69e
commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4355 HANDLE thread = (HANDLE) |
4665d491a69e
commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4356 _beginthreadex(NULL, /* security attributes */ |
2935 | 4357 0, /* default stack size */ |
4358 sub_process_writer, /* function to be executed */ | |
4359 g_hChildStd_IN_Wr, /* parameter */ | |
4360 0, /* creation flag, start immediately */ | |
4361 NULL); /* we don't care about thread id */ | |
4362 CloseHandle(thread); | |
4363 g_hChildStd_IN_Wr = NULL; | |
4364 } | |
4365 | |
4366 /* Keep updating the window while waiting for the shell to finish. */ | |
4367 for (;;) | |
4368 { | |
4369 MSG msg; | |
4370 | |
5553 | 4371 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) |
2935 | 4372 { |
4373 TranslateMessage(&msg); | |
5553 | 4374 pDispatchMessage(&msg); |
2935 | 4375 } |
4376 | |
4377 /* write pipe information in the window */ | |
4378 if ((options & (SHELL_READ|SHELL_WRITE)) | |
4379 # ifdef FEAT_GUI | |
4380 || gui.in_use | |
4381 # endif | |
4382 ) | |
4383 { | |
4384 len = 0; | |
4385 if (!(options & SHELL_EXPAND) | |
4386 && ((options & | |
4387 (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) | |
4388 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) | |
4389 # ifdef FEAT_GUI | |
4390 || gui.in_use | |
4391 # endif | |
4392 ) | |
4393 && (ta_len > 0 || noread_cnt > 4)) | |
4394 { | |
4395 if (ta_len == 0) | |
4396 { | |
4397 /* Get extra characters when we don't have any. Reset the | |
4398 * counter and timer. */ | |
4399 noread_cnt = 0; | |
4400 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); | |
4401 } | |
4402 if (ta_len > 0 || len > 0) | |
4403 { | |
4404 /* | |
4405 * For pipes: Check for CTRL-C: send interrupt signal to | |
4406 * child. Check for CTRL-D: EOF, close pipe to child. | |
4407 */ | |
4408 if (len == 1 && cmd != NULL) | |
4409 { | |
4410 if (ta_buf[ta_len] == Ctrl_C) | |
4411 { | |
4412 /* Learn what exit code is expected, for | |
4413 * now put 9 as SIGKILL */ | |
4414 TerminateProcess(pi.hProcess, 9); | |
4415 } | |
4416 if (ta_buf[ta_len] == Ctrl_D) | |
4417 { | |
4418 CloseHandle(g_hChildStd_IN_Wr); | |
4419 g_hChildStd_IN_Wr = NULL; | |
4420 } | |
4421 } | |
4422 | |
4423 /* replace K_BS by <BS> and K_DEL by <DEL> */ | |
4424 for (i = ta_len; i < ta_len + len; ++i) | |
4425 { | |
4426 if (ta_buf[i] == CSI && len - i > 2) | |
4427 { | |
4428 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); | |
4429 if (c == K_DEL || c == K_KDEL || c == K_BS) | |
4430 { | |
4431 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, | |
4432 (size_t)(len - i - 2)); | |
4433 if (c == K_DEL || c == K_KDEL) | |
4434 ta_buf[i] = DEL; | |
4435 else | |
4436 ta_buf[i] = Ctrl_H; | |
4437 len -= 2; | |
4438 } | |
4439 } | |
4440 else if (ta_buf[i] == '\r') | |
4441 ta_buf[i] = '\n'; | |
4442 # ifdef FEAT_MBYTE | |
4443 if (has_mbyte) | |
4444 i += (*mb_ptr2len_len)(ta_buf + i, | |
4445 ta_len + len - i) - 1; | |
4446 # endif | |
4447 } | |
4448 | |
4449 /* | |
4450 * For pipes: echo the typed characters. For a pty this | |
4451 * does not seem to work. | |
4452 */ | |
4453 for (i = ta_len; i < ta_len + len; ++i) | |
4454 { | |
4455 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') | |
4456 msg_putchar(ta_buf[i]); | |
4457 # ifdef FEAT_MBYTE | |
4458 else if (has_mbyte) | |
4459 { | |
4460 int l = (*mb_ptr2len)(ta_buf + i); | |
4461 | |
4462 msg_outtrans_len(ta_buf + i, l); | |
4463 i += l - 1; | |
4464 } | |
4465 # endif | |
4466 else | |
4467 msg_outtrans_len(ta_buf + i, 1); | |
4468 } | |
4469 windgoto(msg_row, msg_col); | |
4470 out_flush(); | |
4471 | |
4472 ta_len += len; | |
4473 | |
4474 /* | |
4475 * Write the characters to the child, unless EOF has been | |
4476 * typed for pipes. Write one character at a time, to | |
4477 * avoid losing too much typeahead. When writing buffer | |
4478 * lines, drop the typed characters (only check for | |
4479 * CTRL-C). | |
4480 */ | |
4481 if (options & SHELL_WRITE) | |
4482 ta_len = 0; | |
4483 else if (g_hChildStd_IN_Wr != NULL) | |
4484 { | |
4485 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf, | |
4486 1, &len, NULL); | |
4487 // if we are typing in, we want to keep things reactive | |
4488 delay = 1; | |
4489 if (len > 0) | |
4490 { | |
4491 ta_len -= len; | |
4492 mch_memmove(ta_buf, ta_buf + len, ta_len); | |
4493 } | |
4494 } | |
4495 } | |
4496 } | |
4497 } | |
4498 | |
4499 if (ta_len) | |
4500 ui_inchar_undo(ta_buf, ta_len); | |
4501 | |
4502 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT) | |
4503 { | |
3030 | 4504 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off); |
2935 | 4505 break; |
4506 } | |
4507 | |
4508 ++noread_cnt; | |
3030 | 4509 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off); |
2935 | 4510 |
4511 /* We start waiting for a very short time and then increase it, so | |
4512 * that we respond quickly when the process is quick, and don't | |
4513 * consume too much overhead when it's slow. */ | |
4514 if (delay < 50) | |
4515 delay += 10; | |
4516 } | |
4517 | |
4518 /* Close the pipe */ | |
4519 CloseHandle(g_hChildStd_OUT_Rd); | |
4520 if (g_hChildStd_IN_Wr != NULL) | |
4521 CloseHandle(g_hChildStd_IN_Wr); | |
4522 | |
4523 WaitForSingleObject(pi.hProcess, INFINITE); | |
4524 | |
4525 /* Get the command exit code */ | |
4526 GetExitCodeProcess(pi.hProcess, &ret); | |
4527 | |
4528 if (options & SHELL_READ) | |
4529 { | |
4530 if (ga.ga_len > 0) | |
4531 { | |
4532 append_ga_line(&ga); | |
4533 /* remember that the NL was missing */ | |
4534 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; | |
4535 } | |
4536 else | |
4537 curbuf->b_no_eol_lnum = 0; | |
4538 ga_clear(&ga); | |
4539 } | |
4540 | |
4541 /* Close the handles to the subprocess, so that it goes away */ | |
4542 CloseHandle(pi.hThread); | |
4543 CloseHandle(pi.hProcess); | |
4544 | |
4545 return ret; | |
4546 } | |
4547 | |
4548 static int | |
4549 mch_system(char *cmd, int options) | |
4550 { | |
4551 /* 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
|
4552 if (!p_stmp) |
2935 | 4553 return mch_system_piped(cmd, options); |
4554 else | |
4555 return mch_system_classic(cmd, options); | |
4556 } | |
7 | 4557 #else |
4558 | |
5547 | 4559 # ifdef FEAT_MBYTE |
4560 static int | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
4561 mch_system(char *cmd, int options) |
5547 | 4562 { |
4563 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
4564 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4565 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
5547 | 4566 if (wcmd != NULL) |
4567 { | |
4568 int ret = _wsystem(wcmd); | |
4569 vim_free(wcmd); | |
4570 return ret; | |
4571 } | |
4572 } | |
4573 return system(cmd); | |
4574 } | |
4575 # else | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
4576 # define mch_system(c, o) system(c) |
5547 | 4577 # endif |
7 | 4578 |
4579 #endif | |
4580 | |
4581 /* | |
4582 * Either execute a command by calling the shell or start a new shell | |
4583 */ | |
4584 int | |
4585 mch_call_shell( | |
26 | 4586 char_u *cmd, |
4587 int options) /* SHELL_*, see vim.h */ | |
7 | 4588 { |
4589 int x = 0; | |
4590 int tmode = cur_tmode; | |
4591 #ifdef FEAT_TITLE | |
6293 | 4592 char szShellTitle[512]; |
6290 | 4593 # ifdef FEAT_MBYTE |
6293 | 4594 int did_set_title = FALSE; |
4595 | |
6290 | 4596 /* Change the title to reflect that we are in a subshell. */ |
4597 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
4598 { | |
4599 WCHAR szShellTitle[512]; | |
4600 | |
4601 if (GetConsoleTitleW(szShellTitle, | |
4602 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0) | |
4603 { | |
4604 if (cmd == NULL) | |
4605 wcscat(szShellTitle, L" :sh"); | |
4606 else | |
4607 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4608 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL); |
6290 | 4609 |
4610 if (wn != NULL) | |
4611 { | |
4612 wcscat(szShellTitle, L" - !"); | |
4613 if ((wcslen(szShellTitle) + wcslen(wn) < | |
4614 sizeof(szShellTitle)/sizeof(WCHAR))) | |
4615 wcscat(szShellTitle, wn); | |
4616 SetConsoleTitleW(szShellTitle); | |
4617 vim_free(wn); | |
6293 | 4618 did_set_title = TRUE; |
6290 | 4619 } |
4620 } | |
4621 } | |
4622 } | |
6293 | 4623 if (!did_set_title) |
4624 # endif | |
4625 /* Change the title to reflect that we are in a subshell. */ | |
4626 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0) | |
7 | 4627 { |
6293 | 4628 if (cmd == NULL) |
4629 strcat(szShellTitle, " :sh"); | |
4630 else | |
4631 { | |
4632 strcat(szShellTitle, " - !"); | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4633 if ((strlen(szShellTitle) + strlen((char *)cmd) |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4634 < sizeof(szShellTitle))) |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4635 strcat(szShellTitle, (char *)cmd); |
6293 | 4636 } |
4637 SetConsoleTitle(szShellTitle); | |
7 | 4638 } |
4639 #endif | |
4640 | |
4641 out_flush(); | |
4642 | |
4643 #ifdef MCH_WRITE_DUMP | |
4644 if (fdDump) | |
4645 { | |
4646 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options); | |
4647 fflush(fdDump); | |
4648 } | |
4649 #endif | |
4650 | |
4651 /* | |
4652 * Catch all deadly signals while running the external command, because a | |
4653 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us. | |
4654 */ | |
4655 signal(SIGINT, SIG_IGN); | |
4656 #if defined(__GNUC__) && !defined(__MINGW32__) | |
4657 signal(SIGKILL, SIG_IGN); | |
4658 #else | |
4659 signal(SIGBREAK, SIG_IGN); | |
4660 #endif | |
4661 signal(SIGILL, SIG_IGN); | |
4662 signal(SIGFPE, SIG_IGN); | |
4663 signal(SIGSEGV, SIG_IGN); | |
4664 signal(SIGTERM, SIG_IGN); | |
4665 signal(SIGABRT, SIG_IGN); | |
4666 | |
4667 if (options & SHELL_COOKED) | |
4668 settmode(TMODE_COOK); /* set to normal mode */ | |
4669 | |
4670 if (cmd == NULL) | |
4671 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4672 x = mch_system((char *)p_sh, options); |
7 | 4673 } |
4674 else | |
4675 { | |
4676 /* we use "command" or "cmd" to start the shell; slow but easy */ | |
3363 | 4677 char_u *newcmd = NULL; |
4678 char_u *cmdbase = cmd; | |
4679 long_u cmdlen; | |
3361 | 4680 |
4681 /* Skip a leading ", ( and "(. */ | |
4682 if (*cmdbase == '"' ) | |
4683 ++cmdbase; | |
4684 if (*cmdbase == '(') | |
4685 ++cmdbase; | |
4686 | |
4687 if ((STRNICMP(cmdbase, "start", 5) == 0) && vim_iswhite(cmdbase[5])) | |
4688 { | |
4689 STARTUPINFO si; | |
4690 PROCESS_INFORMATION pi; | |
4691 DWORD flags = CREATE_NEW_CONSOLE; | |
4692 char_u *p; | |
4693 | |
5627 | 4694 ZeroMemory(&si, sizeof(si)); |
3361 | 4695 si.cb = sizeof(si); |
4696 si.lpReserved = NULL; | |
4697 si.lpDesktop = NULL; | |
4698 si.lpTitle = NULL; | |
4699 si.dwFlags = 0; | |
4700 si.cbReserved2 = 0; | |
4701 si.lpReserved2 = NULL; | |
4702 | |
4703 cmdbase = skipwhite(cmdbase + 5); | |
4704 if ((STRNICMP(cmdbase, "/min", 4) == 0) | |
4705 && vim_iswhite(cmdbase[4])) | |
4706 { | |
4707 cmdbase = skipwhite(cmdbase + 4); | |
4708 si.dwFlags = STARTF_USESHOWWINDOW; | |
4709 si.wShowWindow = SW_SHOWMINNOACTIVE; | |
4710 } | |
4711 else if ((STRNICMP(cmdbase, "/b", 2) == 0) | |
4712 && vim_iswhite(cmdbase[2])) | |
4713 { | |
4714 cmdbase = skipwhite(cmdbase + 2); | |
4715 flags = CREATE_NO_WINDOW; | |
4716 si.dwFlags = STARTF_USESTDHANDLES; | |
4717 si.hStdInput = CreateFile("\\\\.\\NUL", // File name | |
3363 | 4718 GENERIC_READ, // Access flags |
3361 | 4719 0, // Share flags |
3363 | 4720 NULL, // Security att. |
4721 OPEN_EXISTING, // Open flags | |
4722 FILE_ATTRIBUTE_NORMAL, // File att. | |
4723 NULL); // Temp file | |
3361 | 4724 si.hStdOutput = si.hStdInput; |
4725 si.hStdError = si.hStdInput; | |
4726 } | |
4727 | |
4728 /* Remove a trailing ", ) and )" if they have a match | |
4729 * at the start of the command. */ | |
4730 if (cmdbase > cmd) | |
4731 { | |
4732 p = cmdbase + STRLEN(cmdbase); | |
4733 if (p > cmdbase && p[-1] == '"' && *cmd == '"') | |
4734 *--p = NUL; | |
4735 if (p > cmdbase && p[-1] == ')' | |
4736 && (*cmd =='(' || cmd[1] == '(')) | |
4737 *--p = NUL; | |
4738 } | |
4739 | |
3363 | 4740 newcmd = cmdbase; |
4741 unescape_shellxquote(cmdbase, p_sxe); | |
4742 | |
3361 | 4743 /* |
3363 | 4744 * If creating new console, arguments are passed to the |
4745 * 'cmd.exe' as-is. If it's not, arguments are not treated | |
4746 * correctly for current 'cmd.exe'. So unescape characters in | |
4747 * shellxescape except '|' for avoiding to be treated as | |
4748 * argument to them. Pass the arguments to sub-shell. | |
3361 | 4749 */ |
3363 | 4750 if (flags != CREATE_NEW_CONSOLE) |
4751 { | |
4752 char_u *subcmd; | |
3367 | 4753 char_u *cmd_shell = mch_getenv("COMSPEC"); |
4754 | |
4755 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
|
4756 cmd_shell = (char_u *)default_shell(); |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4757 |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4758 subcmd = vim_strsave_escaped_ext(cmdbase, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4759 (char_u *)"|", '^', FALSE); |
3363 | 4760 if (subcmd != NULL) |
4761 { | |
4762 /* make "cmd.exe /c arguments" */ | |
4763 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5; | |
4764 newcmd = lalloc(cmdlen, TRUE); | |
4765 if (newcmd != NULL) | |
4766 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s", | |
3367 | 4767 cmd_shell, subcmd); |
3363 | 4768 else |
4769 newcmd = cmdbase; | |
3367 | 4770 vim_free(subcmd); |
3363 | 4771 } |
4772 } | |
3361 | 4773 |
4774 /* | |
4775 * Now, start the command as a process, so that it doesn't | |
4776 * inherit our handles which causes unpleasant dangling swap | |
4777 * files if we exit before the spawned process | |
4778 */ | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4779 if (vim_create_process((char *)newcmd, FALSE, flags, &si, &pi)) |
3361 | 4780 x = 0; |
4781 else | |
4782 { | |
4783 x = -1; | |
4784 #ifdef FEAT_GUI_W32 | |
4785 EMSG(_("E371: Command not found")); | |
4786 #endif | |
4787 } | |
3363 | 4788 |
4789 if (newcmd != cmdbase) | |
4790 vim_free(newcmd); | |
4791 | |
5627 | 4792 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL) |
3361 | 4793 { |
5627 | 4794 /* Close the handle to \\.\NUL created above. */ |
3361 | 4795 CloseHandle(si.hStdInput); |
4796 } | |
4797 /* Close the handles to the subprocess, so that it goes away */ | |
4798 CloseHandle(pi.hThread); | |
4799 CloseHandle(pi.hProcess); | |
4800 } | |
4801 else | |
4802 { | |
3363 | 4803 cmdlen = ( |
7 | 4804 #ifdef FEAT_GUI_W32 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4805 (!p_stmp ? 0 : STRLEN(vimrun_path)) + |
7 | 4806 #endif |
1569 | 4807 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10); |
4808 | |
3361 | 4809 newcmd = lalloc(cmdlen, TRUE); |
4810 if (newcmd != NULL) | |
7 | 4811 { |
4812 #if defined(FEAT_GUI_W32) | |
4813 if (need_vimrun_warning) | |
4814 { | |
10400
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4815 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
|
4816 "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
|
4817 "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
|
4818 char *title = _("Vim Warning"); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4819 # ifdef FEAT_MBYTE |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4820 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
|
4821 { |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4822 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
|
4823 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
|
4824 |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4825 if (wmsg != NULL && wtitle != NULL) |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4826 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4827 vim_free(wmsg); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4828 vim_free(wtitle); |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4829 } |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4830 else |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4831 # endif |
17165aabc731
commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents:
10386
diff
changeset
|
4832 MessageBox(NULL, msg, title, MB_ICONWARNING); |
7 | 4833 need_vimrun_warning = FALSE; |
4834 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4835 if (!s_dont_use_vimrun && p_stmp) |
7 | 4836 /* Use vimrun to execute the command. It opens a console |
4837 * 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
|
4838 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s", |
7 | 4839 vimrun_path, |
4840 (msg_silent != 0 || (options & SHELL_DOOUT)) | |
4841 ? "-s " : "", | |
4842 p_sh, p_shcf, cmd); | |
4843 else | |
4844 #endif | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
4845 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", |
1569 | 4846 p_sh, p_shcf, cmd); |
7 | 4847 x = mch_system((char *)newcmd, options); |
3361 | 4848 vim_free(newcmd); |
7 | 4849 } |
4850 } | |
4851 } | |
4852 | |
4853 if (tmode == TMODE_RAW) | |
4854 settmode(TMODE_RAW); /* set to raw mode */ | |
4855 | |
4856 /* Print the return value, unless "vimrun" was used. */ | |
4857 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent | |
4858 #if defined(FEAT_GUI_W32) | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
4859 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) |
7 | 4860 #endif |
4861 ) | |
4862 { | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
4863 smsg((char_u *)_("shell returned %d"), x); |
7 | 4864 msg_putchar('\n'); |
4865 } | |
4866 #ifdef FEAT_TITLE | |
4867 resettitle(); | |
4868 #endif | |
4869 | |
4870 signal(SIGINT, SIG_DFL); | |
4871 #if defined(__GNUC__) && !defined(__MINGW32__) | |
4872 signal(SIGKILL, SIG_DFL); | |
4873 #else | |
4874 signal(SIGBREAK, SIG_DFL); | |
4875 #endif | |
4876 signal(SIGILL, SIG_DFL); | |
4877 signal(SIGFPE, SIG_DFL); | |
4878 signal(SIGSEGV, SIG_DFL); | |
4879 signal(SIGTERM, SIG_DFL); | |
4880 signal(SIGABRT, SIG_DFL); | |
4881 | |
4882 return x; | |
4883 } | |
4884 | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
4885 #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
|
4886 static HANDLE |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4887 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
|
4888 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
|
4889 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
|
4890 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
|
4891 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
|
4892 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
|
4893 DWORD dwFlagsAndAttributes) |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4894 { |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4895 HANDLE h; |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4896 # ifdef FEAT_MBYTE |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4897 WCHAR *wn = NULL; |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4898 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
|
4899 { |
10571
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4900 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
|
4901 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
|
4902 { |
b726d3ea70bc
patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents:
10418
diff
changeset
|
4903 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
|
4904 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
|
4905 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
|
4906 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
|
4907 } |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4908 } |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4909 if (wn == NULL) |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4910 # 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
|
4911 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
|
4912 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
|
4913 dwFlagsAndAttributes, NULL); |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4914 return h; |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4915 } |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4916 |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
4917 void |
8084
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
4918 mch_start_job(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
|
4919 { |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
4920 STARTUPINFO si; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
4921 PROCESS_INFORMATION pi; |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4922 HANDLE jo; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4923 SECURITY_ATTRIBUTES saAttr; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4924 channel_T *channel = NULL; |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4925 HANDLE ifd[2]; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4926 HANDLE ofd[2]; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4927 HANDLE efd[2]; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4928 |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4929 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
|
4930 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
|
4931 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
|
4932 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
|
4933 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
|
4934 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
|
4935 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
|
4936 |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4937 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
|
4938 use_null_for_err = TRUE; |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4939 |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4940 ifd[0] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4941 ifd[1] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4942 ofd[0] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4943 ofd[1] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4944 efd[0] = INVALID_HANDLE_VALUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4945 efd[1] = INVALID_HANDLE_VALUE; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
4946 |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4947 jo = CreateJobObject(NULL, NULL); |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4948 if (jo == NULL) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4949 { |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4950 job->jv_status = JOB_FAILED; |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4951 goto failed; |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4952 } |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
4953 |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
4954 ZeroMemory(&pi, sizeof(pi)); |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
4955 ZeroMemory(&si, sizeof(si)); |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
4956 si.cb = sizeof(si); |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4957 si.dwFlags |= STARTF_USESHOWWINDOW; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
4958 si.wShowWindow = SW_HIDE; |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
4959 |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4960 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4961 saAttr.bInheritHandle = TRUE; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
4962 saAttr.lpSecurityDescriptor = NULL; |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4963 |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
4964 if (use_file_for_in) |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
4965 { |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
4966 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
|
4967 |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4968 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
|
4969 FILE_SHARE_READ | FILE_SHARE_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4970 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL); |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4971 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
|
4972 { |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
4973 EMSG2(_(e_notopen), fname); |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
4974 goto failed; |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
4975 } |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4976 } |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4977 else if (!use_null_for_in && |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4978 (!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
|
4979 || !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
|
4980 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
4981 |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4982 if (use_file_for_out) |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4983 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4984 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
|
4985 |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4986 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
|
4987 FILE_SHARE_READ | FILE_SHARE_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4988 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL); |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
4989 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
|
4990 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4991 EMSG2(_(e_notopen), fname); |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4992 goto failed; |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
4993 } |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4994 } |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4995 else if (!use_null_for_out && |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
4996 (!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
|
4997 || !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
|
4998 goto failed; |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
4999 |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5000 if (use_file_for_err) |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5001 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5002 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
|
5003 |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5004 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
|
5005 FILE_SHARE_READ | FILE_SHARE_WRITE, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5006 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL); |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
5007 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
|
5008 { |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5009 EMSG2(_(e_notopen), fname); |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5010 goto failed; |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5011 } |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5012 } |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5013 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
|
5014 (!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
|
5015 || !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
|
5016 goto failed; |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
5017 |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5018 si.dwFlags |= STARTF_USESTDHANDLES; |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5019 si.hStdInput = ifd[0]; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5020 si.hStdOutput = ofd[1]; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5021 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
|
5022 |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5023 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
|
5024 { |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5025 if (options->jo_set & JO_CHANNEL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5026 { |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5027 channel = options->jo_channel; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5028 if (channel != NULL) |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5029 ++channel->ch_refcount; |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5030 } |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5031 else |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5032 channel = add_channel(); |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5033 if (channel == NULL) |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5034 goto failed; |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5035 } |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5036 |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5037 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
|
5038 CREATE_SUSPENDED | |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5039 CREATE_DEFAULT_ERROR_MODE | |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5040 CREATE_NEW_PROCESS_GROUP | |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5041 CREATE_NEW_CONSOLE, |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5042 &si, &pi)) |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5043 { |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5044 CloseHandle(jo); |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5045 job->jv_status = JOB_FAILED; |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5046 goto failed; |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5047 } |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5048 |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5049 if (!AssignProcessToJobObject(jo, pi.hProcess)) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5050 { |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5051 /* 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
|
5052 * process with TerminateProcess. */ |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5053 CloseHandle(jo); |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5054 jo = NULL; |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5055 } |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5056 ResumeThread(pi.hThread); |
8479
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
5057 CloseHandle(pi.hThread); |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5058 job->jv_proc_info = pi; |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5059 job->jv_job_object = jo; |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5060 job->jv_status = JOB_STARTED; |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5061 |
10060
cf9e550f17f6
commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5062 CloseHandle(ifd[0]); |
cf9e550f17f6
commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5063 CloseHandle(ofd[1]); |
cf9e550f17f6
commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
5064 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
|
5065 CloseHandle(efd[1]); |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5066 |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5067 job->jv_channel = channel; |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5068 if (channel != NULL) |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5069 { |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5070 channel_set_pipes(channel, |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5071 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
|
5072 ? INVALID_FD : (sock_T)ifd[1], |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5073 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
|
5074 ? INVALID_FD : (sock_T)ofd[0], |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5075 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
|
5076 ? INVALID_FD : (sock_T)efd[0]); |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5077 channel_set_job(channel, job, options); |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
5078 } |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5079 return; |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5080 |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
5081 failed: |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5082 CloseHandle(ifd[0]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5083 CloseHandle(ofd[0]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5084 CloseHandle(efd[0]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5085 CloseHandle(ifd[1]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5086 CloseHandle(ofd[1]); |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
5087 CloseHandle(efd[1]); |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
5088 channel_unref(channel); |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5089 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5090 |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5091 char * |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5092 mch_job_status(job_T *job) |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5093 { |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5094 DWORD dwExitCode = 0; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5095 |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5096 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
|
5097 || dwExitCode != STILL_ACTIVE) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5098 { |
8176
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
5099 job->jv_exitval = (int)dwExitCode; |
10386
d3f0946b4a80
commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents:
10317
diff
changeset
|
5100 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
|
5101 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5102 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
|
5103 job->jv_status = JOB_ENDED; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5104 } |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5105 return "dead"; |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5106 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5107 return "run"; |
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 |
10279
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5110 job_T * |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5111 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
|
5112 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5113 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS]; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5114 job_T *jobArray[MAXIMUM_WAIT_OBJECTS]; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5115 job_T *job = job_list; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5116 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5117 while (job != NULL) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5118 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5119 DWORD n; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5120 DWORD result; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5121 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5122 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
|
5123 && job != NULL; job = job->jv_next) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5124 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5125 if (job->jv_status == JOB_STARTED) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5126 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5127 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
|
5128 jobArray[n] = job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5129 ++n; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5130 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5131 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5132 if (n == 0) |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5133 continue; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5134 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0); |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5135 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
|
5136 { |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5137 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
|
5138 |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5139 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
|
5140 return wait_job; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5141 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5142 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5143 return NULL; |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5144 } |
c5c15c818bda
commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
5145 |
10317
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5146 static BOOL |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5147 terminate_all(HANDLE process, int code) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5148 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5149 PROCESSENTRY32 pe; |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5150 HANDLE h = INVALID_HANDLE_VALUE; |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5151 DWORD pid = GetProcessId(process); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5152 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5153 if (pid != 0) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5154 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5155 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5156 if (h != INVALID_HANDLE_VALUE) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5157 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5158 pe.dwSize = sizeof(PROCESSENTRY32); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5159 if (!Process32First(h, &pe)) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5160 goto theend; |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5161 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5162 do |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5163 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5164 if (pe.th32ParentProcessID == pid) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5165 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5166 HANDLE ph = OpenProcess( |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5167 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5168 if (ph != NULL) |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5169 { |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5170 terminate_all(ph, code); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5171 CloseHandle(ph); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5172 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5173 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5174 } while (Process32Next(h, &pe)); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5175 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5176 CloseHandle(h); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5177 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5178 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5179 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5180 theend: |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5181 return TerminateProcess(process, code); |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5182 } |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5183 |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5184 /* |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5185 * Send a (deadly) signal to "job". |
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5186 * 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
|
5187 */ |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5188 int |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5189 mch_stop_job(job_T *job, char_u *how) |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5190 { |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5191 int ret; |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5192 |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5193 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
|
5194 { |
10317
25cc0021a8d7
commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents:
10311
diff
changeset
|
5195 /* deadly signal */ |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5196 if (job->jv_job_object != NULL) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5197 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
|
5198 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
|
5199 } |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5200 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5201 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
|
5202 return FAIL; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5203 ret = GenerateConsoleCtrlEvent( |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5204 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
|
5205 job->jv_proc_info.dwProcessId) |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
5206 ? OK : FAIL; |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5207 FreeConsole(); |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5208 return ret; |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5209 } |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5210 |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5211 /* |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5212 * Clear the data related to "job". |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5213 */ |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5214 void |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5215 mch_clear_job(job_T *job) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5216 { |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5217 if (job->jv_status != JOB_FAILED) |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5218 { |
10311
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5219 if (job->jv_job_object != NULL) |
931422d27b69
commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents:
10304
diff
changeset
|
5220 CloseHandle(job->jv_job_object); |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5221 CloseHandle(job->jv_proc_info.hProcess); |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
5222 } |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5223 } |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5224 #endif |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
5225 |
7 | 5226 |
5227 #ifndef FEAT_GUI_W32 | |
5228 | |
5229 /* | |
5230 * Start termcap mode | |
5231 */ | |
5232 static void | |
5233 termcap_mode_start(void) | |
5234 { | |
5235 DWORD cmodein; | |
5236 | |
5237 if (g_fTermcapMode) | |
5238 return; | |
5239 | |
5240 SaveConsoleBuffer(&g_cbNonTermcap); | |
5241 | |
5242 if (g_cbTermcap.IsValid) | |
5243 { | |
5244 /* | |
5245 * We've been in termcap mode before. Restore certain screen | |
5246 * characteristics, including the buffer size and the window | |
5247 * size. Since we will be redrawing the screen, we don't need | |
5248 * to restore the actual contents of the buffer. | |
5249 */ | |
5250 RestoreConsoleBuffer(&g_cbTermcap, FALSE); | |
5251 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow); | |
5252 Rows = g_cbTermcap.Info.dwSize.Y; | |
5253 Columns = g_cbTermcap.Info.dwSize.X; | |
5254 } | |
5255 else | |
5256 { | |
5257 /* | |
5258 * This is our first time entering termcap mode. Clear the console | |
5259 * screen buffer, and resize the buffer to match the current window | |
5260 * size. We will use this as the size of our editing environment. | |
5261 */ | |
5262 ClearConsoleBuffer(g_attrCurrent); | |
5263 ResizeConBufAndWindow(g_hConOut, Columns, Rows); | |
5264 } | |
5265 | |
5266 #ifdef FEAT_TITLE | |
5267 resettitle(); | |
5268 #endif | |
5269 | |
5270 GetConsoleMode(g_hConIn, &cmodein); | |
5271 #ifdef FEAT_MOUSE | |
5272 if (g_fMouseActive) | |
5273 cmodein |= ENABLE_MOUSE_INPUT; | |
5274 else | |
5275 cmodein &= ~ENABLE_MOUSE_INPUT; | |
5276 #endif | |
5277 cmodein |= ENABLE_WINDOW_INPUT; | |
5278 SetConsoleMode(g_hConIn, cmodein); | |
5279 | |
5280 redraw_later_clear(); | |
5281 g_fTermcapMode = TRUE; | |
5282 } | |
5283 | |
5284 | |
5285 /* | |
5286 * End termcap mode | |
5287 */ | |
5288 static void | |
5289 termcap_mode_end(void) | |
5290 { | |
5291 DWORD cmodein; | |
5292 ConsoleBuffer *cb; | |
5293 COORD coord; | |
5294 DWORD dwDummy; | |
5295 | |
5296 if (!g_fTermcapMode) | |
5297 return; | |
5298 | |
5299 SaveConsoleBuffer(&g_cbTermcap); | |
5300 | |
5301 GetConsoleMode(g_hConIn, &cmodein); | |
5302 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT); | |
5303 SetConsoleMode(g_hConIn, cmodein); | |
5304 | |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5305 #ifdef FEAT_RESTORE_ORIG_SCREEN |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5306 cb = exiting ? &g_cbOrig : &g_cbNonTermcap; |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5307 #else |
7 | 5308 cb = &g_cbNonTermcap; |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
5309 #endif |
7 | 5310 RestoreConsoleBuffer(cb, p_rs); |
5311 SetConsoleCursorInfo(g_hConOut, &g_cci); | |
5312 | |
5313 if (p_rs || exiting) | |
5314 { | |
5315 /* | |
5316 * Clear anything that happens to be on the current line. | |
5317 */ | |
5318 coord.X = 0; | |
5319 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1)); | |
5320 FillConsoleOutputCharacter(g_hConOut, ' ', | |
5321 cb->Info.dwSize.X, coord, &dwDummy); | |
5322 /* | |
5323 * The following is just for aesthetics. If we are exiting without | |
5324 * restoring the screen, then we want to have a prompt string | |
5325 * appear at the bottom line. However, the command interpreter | |
5326 * seems to always advance the cursor one line before displaying | |
5327 * the prompt string, which causes the screen to scroll. To | |
5328 * counter this, move the cursor up one line before exiting. | |
5329 */ | |
5330 if (exiting && !p_rs) | |
5331 coord.Y--; | |
5332 /* | |
5333 * Position the cursor at the leftmost column of the desired row. | |
5334 */ | |
5335 SetConsoleCursorPosition(g_hConOut, coord); | |
5336 } | |
5337 | |
5338 g_fTermcapMode = FALSE; | |
5339 } | |
5340 #endif /* FEAT_GUI_W32 */ | |
5341 | |
5342 | |
5343 #ifdef FEAT_GUI_W32 | |
5344 void | |
5345 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
|
5346 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
|
5347 int len UNUSED) |
7 | 5348 { |
5349 /* never used */ | |
5350 } | |
5351 | |
5352 #else | |
5353 | |
5354 /* | |
5355 * clear `n' chars, starting from `coord' | |
5356 */ | |
5357 static void | |
5358 clear_chars( | |
5359 COORD coord, | |
5360 DWORD n) | |
5361 { | |
5362 DWORD dwDummy; | |
5363 | |
5364 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy); | |
5365 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy); | |
5366 } | |
5367 | |
5368 | |
5369 /* | |
5370 * Clear the screen | |
5371 */ | |
5372 static void | |
5373 clear_screen(void) | |
5374 { | |
5375 g_coord.X = g_coord.Y = 0; | |
5376 clear_chars(g_coord, Rows * Columns); | |
5377 } | |
5378 | |
5379 | |
5380 /* | |
5381 * Clear to end of display | |
5382 */ | |
5383 static void | |
5384 clear_to_end_of_display(void) | |
5385 { | |
5386 clear_chars(g_coord, (Rows - g_coord.Y - 1) | |
5387 * Columns + (Columns - g_coord.X)); | |
5388 } | |
5389 | |
5390 | |
5391 /* | |
5392 * Clear to end of line | |
5393 */ | |
5394 static void | |
5395 clear_to_end_of_line(void) | |
5396 { | |
5397 clear_chars(g_coord, Columns - g_coord.X); | |
5398 } | |
5399 | |
5400 | |
5401 /* | |
5402 * Scroll the scroll region up by `cLines' lines | |
5403 */ | |
5404 static void | |
26 | 5405 scroll(unsigned cLines) |
7 | 5406 { |
5407 COORD oldcoord = g_coord; | |
5408 | |
5409 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1); | |
5410 delete_lines(cLines); | |
5411 | |
5412 g_coord = oldcoord; | |
5413 } | |
5414 | |
5415 | |
5416 /* | |
5417 * Set the scroll region | |
5418 */ | |
5419 static void | |
5420 set_scroll_region( | |
5421 unsigned left, | |
5422 unsigned top, | |
5423 unsigned right, | |
5424 unsigned bottom) | |
5425 { | |
5426 if (left >= right | |
5427 || top >= bottom | |
5428 || right > (unsigned) Columns - 1 | |
5429 || bottom > (unsigned) Rows - 1) | |
5430 return; | |
5431 | |
5432 g_srScrollRegion.Left = left; | |
5433 g_srScrollRegion.Top = top; | |
5434 g_srScrollRegion.Right = right; | |
5435 g_srScrollRegion.Bottom = bottom; | |
5436 } | |
5437 | |
5438 | |
5439 /* | |
5440 * Insert `cLines' lines at the current cursor position | |
5441 */ | |
5442 static void | |
26 | 5443 insert_lines(unsigned cLines) |
7 | 5444 { |
5445 SMALL_RECT source; | |
5446 COORD dest; | |
5447 CHAR_INFO fill; | |
5448 | |
5449 dest.X = 0; | |
5450 dest.Y = g_coord.Y + cLines; | |
5451 | |
5452 source.Left = 0; | |
5453 source.Top = g_coord.Y; | |
5454 source.Right = g_srScrollRegion.Right; | |
5455 source.Bottom = g_srScrollRegion.Bottom - cLines; | |
5456 | |
5457 fill.Char.AsciiChar = ' '; | |
5458 fill.Attributes = g_attrCurrent; | |
5459 | |
5460 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill); | |
5461 | |
5462 /* Here we have to deal with a win32 console flake: If the scroll | |
5463 * region looks like abc and we scroll c to a and fill with d we get | |
5464 * cbd... if we scroll block c one line at a time to a, we get cdd... | |
5465 * vim expects cdd consistently... So we have to deal with that | |
5466 * here... (this also occurs scrolling the same way in the other | |
5467 * direction). */ | |
5468 | |
5469 if (source.Bottom < dest.Y) | |
5470 { | |
5471 COORD coord; | |
5472 | |
5473 coord.X = 0; | |
5474 coord.Y = source.Bottom; | |
5475 clear_chars(coord, Columns * (dest.Y - source.Bottom)); | |
5476 } | |
5477 } | |
5478 | |
5479 | |
5480 /* | |
5481 * Delete `cLines' lines at the current cursor position | |
5482 */ | |
5483 static void | |
26 | 5484 delete_lines(unsigned cLines) |
7 | 5485 { |
5486 SMALL_RECT source; | |
5487 COORD dest; | |
5488 CHAR_INFO fill; | |
5489 int nb; | |
5490 | |
5491 dest.X = 0; | |
5492 dest.Y = g_coord.Y; | |
5493 | |
5494 source.Left = 0; | |
5495 source.Top = g_coord.Y + cLines; | |
5496 source.Right = g_srScrollRegion.Right; | |
5497 source.Bottom = g_srScrollRegion.Bottom; | |
5498 | |
5499 fill.Char.AsciiChar = ' '; | |
5500 fill.Attributes = g_attrCurrent; | |
5501 | |
5502 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill); | |
5503 | |
5504 /* Here we have to deal with a win32 console flake: If the scroll | |
5505 * region looks like abc and we scroll c to a and fill with d we get | |
5506 * cbd... if we scroll block c one line at a time to a, we get cdd... | |
5507 * vim expects cdd consistently... So we have to deal with that | |
5508 * here... (this also occurs scrolling the same way in the other | |
5509 * direction). */ | |
5510 | |
5511 nb = dest.Y + (source.Bottom - source.Top) + 1; | |
5512 | |
5513 if (nb < source.Top) | |
5514 { | |
5515 COORD coord; | |
5516 | |
5517 coord.X = 0; | |
5518 coord.Y = nb; | |
5519 clear_chars(coord, Columns * (source.Top - nb)); | |
5520 } | |
5521 } | |
5522 | |
5523 | |
5524 /* | |
5525 * Set the cursor position | |
5526 */ | |
5527 static void | |
5528 gotoxy( | |
5529 unsigned x, | |
5530 unsigned y) | |
5531 { | |
5532 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows) | |
5533 return; | |
5534 | |
5535 /* external cursor coords are 1-based; internal are 0-based */ | |
5536 g_coord.X = x - 1; | |
5537 g_coord.Y = y - 1; | |
5538 SetConsoleCursorPosition(g_hConOut, g_coord); | |
5539 } | |
5540 | |
5541 | |
5542 /* | |
5543 * Set the current text attribute = (foreground | background) | |
5544 * See ../doc/os_win32.txt for the numbers. | |
5545 */ | |
5546 static void | |
26 | 5547 textattr(WORD wAttr) |
7 | 5548 { |
6710 | 5549 g_attrCurrent = wAttr & 0xff; |
7 | 5550 |
5551 SetConsoleTextAttribute(g_hConOut, wAttr); | |
5552 } | |
5553 | |
5554 | |
5555 static void | |
26 | 5556 textcolor(WORD wAttr) |
7 | 5557 { |
6710 | 5558 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f); |
7 | 5559 |
5560 SetConsoleTextAttribute(g_hConOut, g_attrCurrent); | |
5561 } | |
5562 | |
5563 | |
5564 static void | |
26 | 5565 textbackground(WORD wAttr) |
7 | 5566 { |
6710 | 5567 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4); |
7 | 5568 |
5569 SetConsoleTextAttribute(g_hConOut, g_attrCurrent); | |
5570 } | |
5571 | |
5572 | |
5573 /* | |
5574 * restore the default text attribute (whatever we started with) | |
5575 */ | |
5576 static void | |
26 | 5577 normvideo(void) |
7 | 5578 { |
5579 textattr(g_attrDefault); | |
5580 } | |
5581 | |
5582 | |
5583 static WORD g_attrPreStandout = 0; | |
5584 | |
5585 /* | |
5586 * Make the text standout, by brightening it | |
5587 */ | |
5588 static void | |
5589 standout(void) | |
5590 { | |
5591 g_attrPreStandout = g_attrCurrent; | |
5592 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY)); | |
5593 } | |
5594 | |
5595 | |
5596 /* | |
5597 * Turn off standout mode | |
5598 */ | |
5599 static void | |
26 | 5600 standend(void) |
7 | 5601 { |
5602 if (g_attrPreStandout) | |
5603 { | |
5604 textattr(g_attrPreStandout); | |
5605 g_attrPreStandout = 0; | |
5606 } | |
5607 } | |
5608 | |
5609 | |
5610 /* | |
1199 | 5611 * Set normal fg/bg color, based on T_ME. Called when t_me has been set. |
7 | 5612 */ |
5613 void | |
26 | 5614 mch_set_normal_colors(void) |
7 | 5615 { |
5616 char_u *p; | |
5617 int n; | |
5618 | |
5619 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1; | |
5620 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1; | |
5621 if (T_ME[0] == ESC && T_ME[1] == '|') | |
5622 { | |
5623 p = T_ME + 2; | |
5624 n = getdigits(&p); | |
5625 if (*p == 'm' && n > 0) | |
5626 { | |
5627 cterm_normal_fg_color = (n & 0xf) + 1; | |
5628 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1; | |
5629 } | |
5630 } | |
5631 } | |
5632 | |
5633 | |
5634 /* | |
5635 * visual bell: flash the screen | |
5636 */ | |
5637 static void | |
26 | 5638 visual_bell(void) |
7 | 5639 { |
5640 COORD coordOrigin = {0, 0}; | |
5641 WORD attrFlash = ~g_attrCurrent & 0xff; | |
5642 | |
5643 DWORD dwDummy; | |
5644 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD)); | |
5645 | |
5646 if (oldattrs == NULL) | |
5647 return; | |
5648 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns, | |
5649 coordOrigin, &dwDummy); | |
5650 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns, | |
5651 coordOrigin, &dwDummy); | |
5652 | |
5653 Sleep(15); /* wait for 15 msec */ | |
5654 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns, | |
5655 coordOrigin, &dwDummy); | |
5656 vim_free(oldattrs); | |
5657 } | |
5658 | |
5659 | |
5660 /* | |
5661 * Make the cursor visible or invisible | |
5662 */ | |
5663 static void | |
26 | 5664 cursor_visible(BOOL fVisible) |
7 | 5665 { |
5666 s_cursor_visible = fVisible; | |
5667 #ifdef MCH_CURSOR_SHAPE | |
5668 mch_update_cursor(); | |
5669 #endif | |
5670 } | |
5671 | |
5672 | |
5673 /* | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5674 * write `cbToWrite' bytes in `pchBuf' to the screen |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5675 * Returns the number of bytes actually written (at least one). |
7 | 5676 */ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5677 static DWORD |
7 | 5678 write_chars( |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5679 char_u *pchBuf, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5680 DWORD cbToWrite) |
7 | 5681 { |
5682 COORD coord = g_coord; | |
5683 DWORD written; | |
5684 | |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5685 #ifdef FEAT_MBYTE |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5686 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
|
5687 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5688 static WCHAR *unicodebuf = NULL; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5689 static int unibuflen = 0; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5690 int length; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5691 DWORD n, cchwritten, cells; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5692 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5693 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
|
5694 if (unicodebuf == NULL || length > unibuflen) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5695 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5696 vim_free(unicodebuf); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5697 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
|
5698 unibuflen = length; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5699 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5700 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
|
5701 unicodebuf, unibuflen); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5702 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5703 cells = mb_string2cells(pchBuf, cbToWrite); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5704 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5705 coord, &written); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5706 /* 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
|
5707 * 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
|
5708 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5709 coord, &cchwritten) == 0 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5710 || cchwritten == 0) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5711 cchwritten = 1; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5712 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5713 if (cchwritten == length) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5714 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5715 written = cbToWrite; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5716 g_coord.X += (SHORT)cells; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5717 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5718 else |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5719 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5720 char_u *p = pchBuf; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5721 for (n = 0; n < cchwritten; n++) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5722 mb_cptr_adv(p); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5723 written = p - pchBuf; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5724 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
|
5725 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5726 } |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5727 else |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5728 #endif |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5729 { |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5730 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5731 coord, &written); |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5732 /* 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
|
5733 * 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
|
5734 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
|
5735 coord, &written) == 0 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5736 || written == 0) |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5737 written = 1; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5738 |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5739 g_coord.X += (SHORT) written; |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
5740 } |
7 | 5741 |
5742 while (g_coord.X > g_srScrollRegion.Right) | |
5743 { | |
5744 g_coord.X -= (SHORT) Columns; | |
5745 if (g_coord.Y < g_srScrollRegion.Bottom) | |
5746 g_coord.Y++; | |
5747 } | |
5748 | |
5749 gotoxy(g_coord.X + 1, g_coord.Y + 1); | |
5750 | |
5751 return written; | |
5752 } | |
5753 | |
5754 | |
5755 /* | |
5756 * mch_write(): write the output buffer to the screen, translating ESC | |
5757 * sequences into calls to console output routines. | |
5758 */ | |
5759 void | |
5760 mch_write( | |
5761 char_u *s, | |
5762 int len) | |
5763 { | |
5764 s[len] = NUL; | |
5765 | |
5766 if (!term_console) | |
5767 { | |
5768 write(1, s, (unsigned)len); | |
5769 return; | |
5770 } | |
5771 | |
5772 /* translate ESC | sequences into faked bios calls */ | |
5773 while (len--) | |
5774 { | |
5775 /* optimization: use one single write_chars for runs of text, | |
5776 * 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
|
5777 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033"); |
7 | 5778 |
5779 if (p_wd) | |
5780 { | |
5781 WaitForChar(p_wd); | |
5782 if (prefix != 0) | |
5783 prefix = 1; | |
5784 } | |
5785 | |
5786 if (prefix != 0) | |
5787 { | |
5788 DWORD nWritten; | |
5789 | |
5790 nWritten = write_chars(s, prefix); | |
5791 #ifdef MCH_WRITE_DUMP | |
5792 if (fdDump) | |
5793 { | |
5794 fputc('>', fdDump); | |
5795 fwrite(s, sizeof(char_u), nWritten, fdDump); | |
5796 fputs("<\n", fdDump); | |
5797 } | |
5798 #endif | |
5799 len -= (nWritten - 1); | |
5800 s += nWritten; | |
5801 } | |
5802 else if (s[0] == '\n') | |
5803 { | |
5804 /* \n, newline: go to the beginning of the next line or scroll */ | |
5805 if (g_coord.Y == g_srScrollRegion.Bottom) | |
5806 { | |
5807 scroll(1); | |
5808 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1); | |
5809 } | |
5810 else | |
5811 { | |
5812 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2); | |
5813 } | |
5814 #ifdef MCH_WRITE_DUMP | |
5815 if (fdDump) | |
5816 fputs("\\n\n", fdDump); | |
5817 #endif | |
5818 s++; | |
5819 } | |
5820 else if (s[0] == '\r') | |
5821 { | |
5822 /* \r, carriage return: go to beginning of line */ | |
5823 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1); | |
5824 #ifdef MCH_WRITE_DUMP | |
5825 if (fdDump) | |
5826 fputs("\\r\n", fdDump); | |
5827 #endif | |
5828 s++; | |
5829 } | |
5830 else if (s[0] == '\b') | |
5831 { | |
5832 /* \b, backspace: move cursor one position left */ | |
5833 if (g_coord.X > g_srScrollRegion.Left) | |
5834 g_coord.X--; | |
5835 else if (g_coord.Y > g_srScrollRegion.Top) | |
5836 { | |
5837 g_coord.X = g_srScrollRegion.Right; | |
5838 g_coord.Y--; | |
5839 } | |
5840 gotoxy(g_coord.X + 1, g_coord.Y + 1); | |
5841 #ifdef MCH_WRITE_DUMP | |
5842 if (fdDump) | |
5843 fputs("\\b\n", fdDump); | |
5844 #endif | |
5845 s++; | |
5846 } | |
5847 else if (s[0] == '\a') | |
5848 { | |
5849 /* \a, bell */ | |
5850 MessageBeep(0xFFFFFFFF); | |
5851 #ifdef MCH_WRITE_DUMP | |
5852 if (fdDump) | |
5853 fputs("\\a\n", fdDump); | |
5854 #endif | |
5855 s++; | |
5856 } | |
5857 else if (s[0] == ESC && len >= 3-1 && s[1] == '|') | |
5858 { | |
5859 #ifdef MCH_WRITE_DUMP | |
24 | 5860 char_u *old_s = s; |
7 | 5861 #endif |
24 | 5862 char_u *p; |
5863 int arg1 = 0, arg2 = 0; | |
7 | 5864 |
5865 switch (s[2]) | |
5866 { | |
5867 /* one or two numeric arguments, separated by ';' */ | |
5868 | |
5869 case '0': case '1': case '2': case '3': case '4': | |
5870 case '5': case '6': case '7': case '8': case '9': | |
5871 p = s + 2; | |
5872 arg1 = getdigits(&p); /* no check for length! */ | |
5873 if (p > s + len) | |
5874 break; | |
5875 | |
5876 if (*p == ';') | |
5877 { | |
5878 ++p; | |
5879 arg2 = getdigits(&p); /* no check for length! */ | |
5880 if (p > s + len) | |
5881 break; | |
5882 | |
5883 if (*p == 'H') | |
5884 gotoxy(arg2, arg1); | |
5885 else if (*p == 'r') | |
5886 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1); | |
5887 } | |
5888 else if (*p == 'A') | |
5889 { | |
5890 /* move cursor up arg1 lines in same column */ | |
5891 gotoxy(g_coord.X + 1, | |
5892 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1); | |
5893 } | |
5894 else if (*p == 'C') | |
5895 { | |
5896 /* move cursor right arg1 columns in same line */ | |
5897 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1, | |
5898 g_coord.Y + 1); | |
5899 } | |
5900 else if (*p == 'H') | |
5901 { | |
5902 gotoxy(1, arg1); | |
5903 } | |
5904 else if (*p == 'L') | |
5905 { | |
5906 insert_lines(arg1); | |
5907 } | |
5908 else if (*p == 'm') | |
5909 { | |
5910 if (arg1 == 0) | |
5911 normvideo(); | |
5912 else | |
5913 textattr((WORD) arg1); | |
5914 } | |
5915 else if (*p == 'f') | |
5916 { | |
5917 textcolor((WORD) arg1); | |
5918 } | |
5919 else if (*p == 'b') | |
5920 { | |
5921 textbackground((WORD) arg1); | |
5922 } | |
5923 else if (*p == 'M') | |
5924 { | |
5925 delete_lines(arg1); | |
5926 } | |
5927 | |
835 | 5928 len -= (int)(p - s); |
7 | 5929 s = p + 1; |
5930 break; | |
5931 | |
5932 | |
5933 /* Three-character escape sequences */ | |
5934 | |
5935 case 'A': | |
5936 /* move cursor up one line in same column */ | |
5937 gotoxy(g_coord.X + 1, | |
5938 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1); | |
5939 goto got3; | |
5940 | |
5941 case 'B': | |
5942 visual_bell(); | |
5943 goto got3; | |
5944 | |
5945 case 'C': | |
5946 /* move cursor right one column in same line */ | |
5947 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1, | |
5948 g_coord.Y + 1); | |
5949 goto got3; | |
5950 | |
5951 case 'E': | |
5952 termcap_mode_end(); | |
5953 goto got3; | |
5954 | |
5955 case 'F': | |
5956 standout(); | |
5957 goto got3; | |
5958 | |
5959 case 'f': | |
5960 standend(); | |
5961 goto got3; | |
5962 | |
5963 case 'H': | |
5964 gotoxy(1, 1); | |
5965 goto got3; | |
5966 | |
5967 case 'j': | |
5968 clear_to_end_of_display(); | |
5969 goto got3; | |
5970 | |
5971 case 'J': | |
5972 clear_screen(); | |
5973 goto got3; | |
5974 | |
5975 case 'K': | |
5976 clear_to_end_of_line(); | |
5977 goto got3; | |
5978 | |
5979 case 'L': | |
5980 insert_lines(1); | |
5981 goto got3; | |
5982 | |
5983 case 'M': | |
5984 delete_lines(1); | |
5985 goto got3; | |
5986 | |
5987 case 'S': | |
5988 termcap_mode_start(); | |
5989 goto got3; | |
5990 | |
5991 case 'V': | |
5992 cursor_visible(TRUE); | |
5993 goto got3; | |
5994 | |
5995 case 'v': | |
5996 cursor_visible(FALSE); | |
5997 goto got3; | |
5998 | |
5999 got3: | |
6000 s += 3; | |
6001 len -= 2; | |
6002 } | |
6003 | |
6004 #ifdef MCH_WRITE_DUMP | |
6005 if (fdDump) | |
6006 { | |
6007 fputs("ESC | ", fdDump); | |
6008 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump); | |
6009 fputc('\n', fdDump); | |
6010 } | |
6011 #endif | |
6012 } | |
6013 else | |
6014 { | |
6015 /* Write a single character */ | |
6016 DWORD nWritten; | |
6017 | |
6018 nWritten = write_chars(s, 1); | |
6019 #ifdef MCH_WRITE_DUMP | |
6020 if (fdDump) | |
6021 { | |
6022 fputc('>', fdDump); | |
6023 fwrite(s, sizeof(char_u), nWritten, fdDump); | |
6024 fputs("<\n", fdDump); | |
6025 } | |
6026 #endif | |
6027 | |
6028 len -= (nWritten - 1); | |
6029 s += nWritten; | |
6030 } | |
6031 } | |
6032 | |
6033 #ifdef MCH_WRITE_DUMP | |
6034 if (fdDump) | |
6035 fflush(fdDump); | |
6036 #endif | |
6037 } | |
6038 | |
6039 #endif /* FEAT_GUI_W32 */ | |
6040 | |
6041 | |
6042 /* | |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
6043 * Delay for "msec" milliseconds. |
7 | 6044 */ |
6045 void | |
6046 mch_delay( | |
6047 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
|
6048 int ignoreinput UNUSED) |
7 | 6049 { |
6050 #ifdef FEAT_GUI_W32 | |
6051 Sleep((int)msec); /* never wait for input */ | |
14 | 6052 #else /* Console */ |
7 | 6053 if (ignoreinput) |
14 | 6054 # ifdef FEAT_MZSCHEME |
6055 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq) | |
6056 { | |
6057 int towait = p_mzq; | |
6058 | |
6059 /* if msec is large enough, wait by portions in p_mzq */ | |
6060 while (msec > 0) | |
6061 { | |
6062 mzvim_check_threads(); | |
6063 if (msec < towait) | |
6064 towait = msec; | |
6065 Sleep(towait); | |
6066 msec -= towait; | |
6067 } | |
6068 } | |
6069 else | |
6070 # endif | |
6071 Sleep((int)msec); | |
7 | 6072 else |
6073 WaitForChar(msec); | |
6074 #endif | |
6075 } | |
6076 | |
6077 | |
6078 /* | |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6079 * 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
|
6080 * This can also remove a symbolic link like Unix. |
7 | 6081 * Return 0 for success, -1 for failure. |
6082 */ | |
6083 int | |
6084 mch_remove(char_u *name) | |
6085 { | |
6086 #ifdef FEAT_MBYTE | |
6087 WCHAR *wn = NULL; | |
6088 int n; | |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6089 #endif |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6090 |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6091 /* |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6092 * 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
|
6093 * 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
|
6094 */ |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6095 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
|
6096 return mch_rmdir(name); |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
6097 |
4872
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6098 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL); |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6099 |
fa98c2b030ed
updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents:
4789
diff
changeset
|
6100 #ifdef FEAT_MBYTE |
7 | 6101 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
6102 { | |
1752 | 6103 wn = enc_to_utf16(name, NULL); |
7 | 6104 if (wn != NULL) |
6105 { | |
6106 n = DeleteFileW(wn) ? 0 : -1; | |
6107 vim_free(wn); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6108 return n; |
7 | 6109 } |
6110 } | |
6111 #endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6112 return DeleteFile((LPCSTR)name) ? 0 : -1; |
7 | 6113 } |
6114 | |
6115 | |
6116 /* | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10060
diff
changeset
|
6117 * Check for an "interrupt signal": CTRL-break or CTRL-C. |
7 | 6118 */ |
6119 void | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10060
diff
changeset
|
6120 mch_breakcheck(int force) |
7 | 6121 { |
6122 #ifndef FEAT_GUI_W32 /* never used */ | |
6123 if (g_fCtrlCPressed || g_fCBrkPressed) | |
6124 { | |
6125 g_fCtrlCPressed = g_fCBrkPressed = FALSE; | |
6126 got_int = TRUE; | |
6127 } | |
6128 #endif | |
6129 } | |
6130 | |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6131 /* 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
|
6132 #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
|
6133 |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6134 /* |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6135 * 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
|
6136 */ |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6137 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
|
6138 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
|
6139 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6140 MEMORYSTATUSEX ms; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6141 |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6142 PlatformId(); |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6143 /* 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
|
6144 * 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
|
6145 ms.dwLength = sizeof(MEMORYSTATUSEX); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6146 GlobalMemoryStatusEx(&ms); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6147 if (ms.ullAvailVirtual < ms.ullTotalPhys) |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6148 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6149 /* 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
|
6150 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
|
6151 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6152 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
|
6153 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6154 /* 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
|
6155 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
|
6156 } |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6157 /* 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
|
6158 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
|
6159 } |
7 | 6160 |
6161 #ifdef FEAT_MBYTE | |
6162 /* | |
6163 * Same code as below, but with wide functions and no comments. | |
6164 * Return 0 for success, non-zero for failure. | |
6165 */ | |
6166 int | |
6167 mch_wrename(WCHAR *wold, WCHAR *wnew) | |
6168 { | |
6169 WCHAR *p; | |
6170 int i; | |
6171 WCHAR szTempFile[_MAX_PATH + 1]; | |
6172 WCHAR szNewPath[_MAX_PATH + 1]; | |
6173 HANDLE hf; | |
6174 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6175 p = wold; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6176 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
|
6177 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
|
6178 && wold[i + 1] != 0) |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6179 p = wold + i + 1; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6180 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
|
6181 return (MoveFileW(wold, wnew) == 0); |
7 | 6182 |
6183 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL) | |
6184 return -1; | |
6185 *p = NUL; | |
6186 | |
6187 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0) | |
6188 return -2; | |
6189 | |
6190 if (!DeleteFileW(szTempFile)) | |
6191 return -3; | |
6192 | |
6193 if (!MoveFileW(wold, szTempFile)) | |
6194 return -4; | |
6195 | |
6196 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW, | |
6197 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) | |
6198 return -5; | |
6199 if (!CloseHandle(hf)) | |
6200 return -6; | |
6201 | |
6202 if (!MoveFileW(szTempFile, wnew)) | |
6203 { | |
6204 (void)MoveFileW(szTempFile, wold); | |
6205 return -7; | |
6206 } | |
6207 | |
6208 DeleteFileW(szTempFile); | |
6209 | |
6210 if (!DeleteFileW(wold)) | |
6211 return -8; | |
6212 | |
6213 return 0; | |
6214 } | |
6215 #endif | |
6216 | |
6217 | |
6218 /* | |
6219 * mch_rename() works around a bug in rename (aka MoveFile) in | |
6220 * Windows 95: rename("foo.bar", "foo.bar~") will generate a | |
6221 * file whose short file name is "FOO.BAR" (its long file name will | |
6222 * be correct: "foo.bar~"). Because a file can be accessed by | |
6223 * either its SFN or its LFN, "foo.bar" has effectively been | |
6224 * renamed to "foo.bar", which is not at all what was wanted. This | |
6225 * seems to happen only when renaming files with three-character | |
6226 * extensions by appending a suffix that does not include ".". | |
6227 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR". | |
6228 * | |
6229 * There is another problem, which isn't really a bug but isn't right either: | |
6230 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be | |
6231 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with | |
6232 * service pack 6. Doesn't seem to happen on Windows 98. | |
6233 * | |
6234 * Like rename(), returns 0 upon success, non-zero upon failure. | |
6235 * Should probably set errno appropriately when errors occur. | |
6236 */ | |
6237 int | |
6238 mch_rename( | |
6239 const char *pszOldFile, | |
6240 const char *pszNewFile) | |
6241 { | |
6242 char szTempFile[_MAX_PATH+1]; | |
6243 char szNewPath[_MAX_PATH+1]; | |
6244 char *pszFilePart; | |
6245 HANDLE hf; | |
6246 #ifdef FEAT_MBYTE | |
6247 WCHAR *wold = NULL; | |
6248 WCHAR *wnew = NULL; | |
6249 int retval = -1; | |
6250 | |
6251 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) | |
6252 { | |
1752 | 6253 wold = enc_to_utf16((char_u *)pszOldFile, NULL); |
6254 wnew = enc_to_utf16((char_u *)pszNewFile, NULL); | |
7 | 6255 if (wold != NULL && wnew != NULL) |
6256 retval = mch_wrename(wold, wnew); | |
6257 vim_free(wold); | |
6258 vim_free(wnew); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6259 return retval; |
7 | 6260 } |
6261 #endif | |
6262 | |
6263 /* | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6264 * 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
|
6265 * seventh character. |
7 | 6266 */ |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6267 pszFilePart = (char *)gettail((char_u *)pszOldFile); |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6268 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~') |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6269 return rename(pszOldFile, pszNewFile); |
7 | 6270 |
6271 /* Get base path of new file name. Undocumented feature: If pszNewFile is | |
6272 * a directory, no error is returned and pszFilePart will be NULL. */ | |
6273 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0 | |
6274 || pszFilePart == NULL) | |
6275 return -1; | |
6276 *pszFilePart = NUL; | |
6277 | |
6278 /* Get (and create) a unique temporary file name in directory of new file */ | |
6279 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0) | |
6280 return -2; | |
6281 | |
6282 /* blow the temp file away */ | |
6283 if (!DeleteFile(szTempFile)) | |
6284 return -3; | |
6285 | |
6286 /* rename old file to the temp file */ | |
6287 if (!MoveFile(pszOldFile, szTempFile)) | |
6288 return -4; | |
6289 | |
6290 /* now create an empty file called pszOldFile; this prevents the operating | |
6291 * system using pszOldFile as an alias (SFN) if we're renaming within the | |
6292 * same directory. For example, we're editing a file called | |
6293 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt | |
6294 * to filena~1.txt~ (i.e., we're making a backup while writing it), the | |
6295 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will | |
39 | 6296 * cause all sorts of problems later in buf_write(). So, we create an |
6297 * empty file called filena~1.txt and the system will have to find some | |
6298 * other SFN for filena~1.txt~, such as filena~2.txt | |
7 | 6299 */ |
6300 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW, | |
6301 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) | |
6302 return -5; | |
6303 if (!CloseHandle(hf)) | |
6304 return -6; | |
6305 | |
6306 /* rename the temp file to the new file */ | |
6307 if (!MoveFile(szTempFile, pszNewFile)) | |
6308 { | |
6309 /* Renaming failed. Rename the file back to its old name, so that it | |
6310 * looks like nothing happened. */ | |
6311 (void)MoveFile(szTempFile, pszOldFile); | |
6312 | |
6313 return -7; | |
6314 } | |
6315 | |
6316 /* Seems to be left around on Novell filesystems */ | |
6317 DeleteFile(szTempFile); | |
6318 | |
6319 /* finally, remove the empty old file */ | |
6320 if (!DeleteFile(pszOldFile)) | |
6321 return -8; | |
6322 | |
6323 return 0; /* success */ | |
6324 } | |
6325 | |
6326 /* | |
6327 * Get the default shell for the current hardware platform | |
6328 */ | |
6329 char * | |
26 | 6330 default_shell(void) |
7 | 6331 { |
6332 PlatformId(); | |
6333 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6334 return "cmd.exe"; |
7 | 6335 } |
6336 | |
6337 /* | |
6338 * mch_access() extends access() to do more detailed check on network drives. | |
6339 * Returns 0 if file "n" has access rights according to "p", -1 otherwise. | |
6340 */ | |
6341 int | |
6342 mch_access(char *n, int p) | |
6343 { | |
6344 HANDLE hFile; | |
6345 DWORD am; | |
6346 int retval = -1; /* default: fail */ | |
6347 #ifdef FEAT_MBYTE | |
6348 WCHAR *wn = NULL; | |
6349 | |
6350 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
|
6351 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
|
6352 #endif |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6353 |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6354 if (mch_isdir((char_u *)n)) |
7 | 6355 { |
6356 char TempName[_MAX_PATH + 16] = ""; | |
6357 #ifdef FEAT_MBYTE | |
6358 WCHAR TempNameW[_MAX_PATH + 16] = L""; | |
6359 #endif | |
6360 | |
6361 if (p & R_OK) | |
6362 { | |
6363 /* Read check is performed by seeing if we can do a find file on | |
6364 * the directory for any file. */ | |
6365 #ifdef FEAT_MBYTE | |
6366 if (wn != NULL) | |
6367 { | |
6368 int i; | |
6369 WIN32_FIND_DATAW d; | |
6370 | |
6371 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i) | |
6372 TempNameW[i] = wn[i]; | |
6373 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/') | |
6374 TempNameW[i++] = '\\'; | |
6375 TempNameW[i++] = '*'; | |
6376 TempNameW[i++] = 0; | |
6377 | |
6378 hFile = FindFirstFileW(TempNameW, &d); | |
6379 if (hFile == INVALID_HANDLE_VALUE) | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6380 goto getout; |
7 | 6381 else |
6382 (void)FindClose(hFile); | |
6383 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6384 else |
7 | 6385 #endif |
6386 { | |
6387 char *pch; | |
6388 WIN32_FIND_DATA d; | |
6389 | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6390 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH); |
7 | 6391 pch = TempName + STRLEN(TempName) - 1; |
6392 if (*pch != '\\' && *pch != '/') | |
6393 *++pch = '\\'; | |
6394 *++pch = '*'; | |
6395 *++pch = NUL; | |
6396 | |
6397 hFile = FindFirstFile(TempName, &d); | |
6398 if (hFile == INVALID_HANDLE_VALUE) | |
6399 goto getout; | |
6400 (void)FindClose(hFile); | |
6401 } | |
6402 } | |
6403 | |
6404 if (p & W_OK) | |
6405 { | |
6406 /* Trying to create a temporary file in the directory should catch | |
6407 * directories on read-only network shares. However, in | |
6408 * directories whose ACL allows writes but denies deletes will end | |
6409 * up keeping the temporary file :-(. */ | |
6410 #ifdef FEAT_MBYTE | |
6411 if (wn != NULL) | |
6412 { | |
6413 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
|
6414 goto getout; |
7 | 6415 else |
6416 DeleteFileW(TempNameW); | |
6417 } | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6418 else |
7 | 6419 #endif |
6420 { | |
6421 if (!GetTempFileName(n, "VIM", 0, TempName)) | |
6422 goto getout; | |
6423 mch_remove((char_u *)TempName); | |
6424 } | |
6425 } | |
6426 } | |
6427 else | |
6428 { | |
6429 /* Trying to open the file for the required access does ACL, read-only | |
6430 * network share, and file attribute checks. */ | |
6431 am = ((p & W_OK) ? GENERIC_WRITE : 0) | |
6432 | ((p & R_OK) ? GENERIC_READ : 0); | |
6433 #ifdef FEAT_MBYTE | |
6434 if (wn != NULL) | |
6435 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
|
6436 else |
7 | 6437 #endif |
6438 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL); | |
6439 if (hFile == INVALID_HANDLE_VALUE) | |
6440 goto getout; | |
6441 CloseHandle(hFile); | |
6442 } | |
6443 | |
6444 retval = 0; /* success */ | |
6445 getout: | |
6446 #ifdef FEAT_MBYTE | |
6447 vim_free(wn); | |
6448 #endif | |
6449 return retval; | |
6450 } | |
6451 | |
6452 #if defined(FEAT_MBYTE) || defined(PROTO) | |
6453 /* | |
1752 | 6454 * Version of open() that may use UTF-16 file name. |
7 | 6455 */ |
6456 int | |
6457 mch_open(char *name, int flags, int mode) | |
6458 { | |
39 | 6459 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */ |
6460 # ifndef __BORLANDC__ | |
7 | 6461 WCHAR *wn; |
6462 int f; | |
6463 | |
39 | 6464 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7 | 6465 { |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6466 wn = enc_to_utf16((char_u *)name, NULL); |
7 | 6467 if (wn != NULL) |
6468 { | |
6469 f = _wopen(wn, flags, mode); | |
6470 vim_free(wn); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6471 return f; |
7 | 6472 } |
6473 } | |
39 | 6474 # endif |
7 | 6475 |
6345 | 6476 /* open() can open a file which name is longer than _MAX_PATH bytes |
6477 * and shorter than _MAX_PATH characters successfully, but sometimes it | |
6478 * causes unexpected error in another part. We make it an error explicitly | |
6479 * here. */ | |
6480 if (strlen(name) >= _MAX_PATH) | |
6481 return -1; | |
6482 | |
7 | 6483 return open(name, flags, mode); |
6484 } | |
6485 | |
6486 /* | |
1752 | 6487 * Version of fopen() that may use UTF-16 file name. |
7 | 6488 */ |
6489 FILE * | |
6490 mch_fopen(char *name, char *mode) | |
6491 { | |
6492 WCHAR *wn, *wm; | |
6493 FILE *f = NULL; | |
6494 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6495 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
7 | 6496 { |
1686 | 6497 # if defined(DEBUG) && _MSC_VER >= 1400 |
1569 | 6498 /* Work around an annoying assertion in the Microsoft debug CRT |
6499 * when mode's text/binary setting doesn't match _get_fmode(). */ | |
6500 char newMode = mode[strlen(mode) - 1]; | |
6501 int oldMode = 0; | |
6502 | |
6503 _get_fmode(&oldMode); | |
6504 if (newMode == 't') | |
6505 _set_fmode(_O_TEXT); | |
6506 else if (newMode == 'b') | |
6507 _set_fmode(_O_BINARY); | |
6508 # endif | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
6509 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
|
6510 wm = enc_to_utf16((char_u *)mode, NULL); |
7 | 6511 if (wn != NULL && wm != NULL) |
6512 f = _wfopen(wn, wm); | |
6513 vim_free(wn); | |
6514 vim_free(wm); | |
1569 | 6515 |
1686 | 6516 # if defined(DEBUG) && _MSC_VER >= 1400 |
1569 | 6517 _set_fmode(oldMode); |
6518 # endif | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6519 return f; |
7 | 6520 } |
6521 | |
6345 | 6522 /* fopen() can open a file which name is longer than _MAX_PATH bytes |
6523 * and shorter than _MAX_PATH characters successfully, but sometimes it | |
6524 * causes unexpected error in another part. We make it an error explicitly | |
6525 * here. */ | |
6526 if (strlen(name) >= _MAX_PATH) | |
6527 return NULL; | |
6528 | |
7 | 6529 return fopen(name, mode); |
6530 } | |
6531 #endif | |
6532 | |
6533 #ifdef FEAT_MBYTE | |
6534 /* | |
6535 * SUB STREAM (aka info stream) handling: | |
6536 * | |
6537 * NTFS can have sub streams for each file. Normal contents of file is | |
6538 * stored in the main stream, and extra contents (author information and | |
6539 * title and so on) can be stored in sub stream. After Windows 2000, user | |
6540 * can access and store those informations in sub streams via explorer's | |
6541 * property menuitem in right click menu. Those informations in sub streams | |
6542 * were lost when copying only the main stream. So we have to copy sub | |
6543 * streams. | |
6544 * | |
6545 * Incomplete explanation: | |
6546 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp | |
6547 * More useful info and an example: | |
6548 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams | |
6549 */ | |
6550 | |
6551 /* | |
6552 * Copy info stream data "substream". Read from the file with BackupRead(sh) | |
6553 * and write to stream "substream" of file "to". | |
6554 * Errors are ignored. | |
6555 */ | |
6556 static void | |
6557 copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len) | |
6558 { | |
6559 HANDLE hTo; | |
6560 WCHAR *to_name; | |
6561 | |
6562 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR)); | |
6563 wcscpy(to_name, to); | |
6564 wcscat(to_name, substream); | |
6565 | |
6566 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, | |
6567 FILE_ATTRIBUTE_NORMAL, NULL); | |
6568 if (hTo != INVALID_HANDLE_VALUE) | |
6569 { | |
6570 long done; | |
6571 DWORD todo; | |
6572 DWORD readcnt, written; | |
6573 char buf[4096]; | |
6574 | |
6575 /* Copy block of bytes at a time. Abort when something goes wrong. */ | |
6576 for (done = 0; done < len; done += written) | |
6577 { | |
6578 /* (size_t) cast for Borland C 5.5 */ | |
835 | 6579 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf) |
6580 : (size_t)(len - done)); | |
7 | 6581 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt, |
6582 FALSE, FALSE, context) | |
6583 || readcnt != todo | |
6584 || !WriteFile(hTo, buf, todo, &written, NULL) | |
6585 || written != todo) | |
6586 break; | |
6587 } | |
6588 CloseHandle(hTo); | |
6589 } | |
6590 | |
6591 free(to_name); | |
6592 } | |
6593 | |
6594 /* | |
6595 * Copy info streams from file "from" to file "to". | |
6596 */ | |
6597 static void | |
6598 copy_infostreams(char_u *from, char_u *to) | |
6599 { | |
6600 WCHAR *fromw; | |
6601 WCHAR *tow; | |
6602 HANDLE sh; | |
6603 WIN32_STREAM_ID sid; | |
6604 int headersize; | |
6605 WCHAR streamname[_MAX_PATH]; | |
6606 DWORD readcount; | |
6607 void *context = NULL; | |
6608 DWORD lo, hi; | |
6609 int len; | |
6610 | |
6611 /* Convert the file names to wide characters. */ | |
1752 | 6612 fromw = enc_to_utf16(from, NULL); |
6613 tow = enc_to_utf16(to, NULL); | |
7 | 6614 if (fromw != NULL && tow != NULL) |
6615 { | |
6616 /* Open the file for reading. */ | |
6617 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL, | |
6618 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); | |
6619 if (sh != INVALID_HANDLE_VALUE) | |
6620 { | |
6621 /* Use BackupRead() to find the info streams. Repeat until we | |
6622 * have done them all.*/ | |
6623 for (;;) | |
6624 { | |
6625 /* Get the header to find the length of the stream name. If | |
6626 * the "readcount" is zero we have done all info streams. */ | |
6627 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID)); | |
835 | 6628 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId); |
7 | 6629 if (!BackupRead(sh, (LPBYTE)&sid, headersize, |
6630 &readcount, FALSE, FALSE, &context) | |
6631 || readcount == 0) | |
6632 break; | |
6633 | |
6634 /* We only deal with streams that have a name. The normal | |
6635 * file data appears to be without a name, even though docs | |
6636 * suggest it is called "::$DATA". */ | |
6637 if (sid.dwStreamNameSize > 0) | |
6638 { | |
6639 /* Read the stream name. */ | |
6640 if (!BackupRead(sh, (LPBYTE)streamname, | |
6641 sid.dwStreamNameSize, | |
6642 &readcount, FALSE, FALSE, &context)) | |
6643 break; | |
6644 | |
6645 /* Copy an info stream with a name ":anything:$DATA". | |
6646 * Skip "::$DATA", it has no stream name (examples suggest | |
6647 * it might be used for the normal file contents). | |
6648 * Note that BackupRead() counts bytes, but the name is in | |
6649 * wide characters. */ | |
6650 len = readcount / sizeof(WCHAR); | |
6651 streamname[len] = 0; | |
6652 if (len > 7 && wcsicmp(streamname + len - 6, | |
6653 L":$DATA") == 0) | |
6654 { | |
6655 streamname[len - 6] = 0; | |
6656 copy_substream(sh, &context, tow, streamname, | |
10 | 6657 (long)sid.Size.u.LowPart); |
7 | 6658 } |
6659 } | |
6660 | |
6661 /* Advance to the next stream. We might try seeking too far, | |
6662 * but BackupSeek() doesn't skip over stream borders, thus | |
6663 * that's OK. */ | |
323 | 6664 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart, |
7 | 6665 &lo, &hi, &context); |
6666 } | |
6667 | |
6668 /* Clear the context. */ | |
6669 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context); | |
6670 | |
6671 CloseHandle(sh); | |
6672 } | |
6673 } | |
6674 vim_free(fromw); | |
6675 vim_free(tow); | |
6676 } | |
6677 #endif | |
6678 | |
6679 /* | |
6680 * Copy file attributes from file "from" to file "to". | |
6681 * For Windows NT and later we copy info streams. | |
6682 * Always returns zero, errors are ignored. | |
6683 */ | |
6684 int | |
6685 mch_copy_file_attribute(char_u *from, char_u *to) | |
6686 { | |
6687 #ifdef FEAT_MBYTE | |
6688 /* File streams only work on Windows NT and later. */ | |
6689 PlatformId(); | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6690 copy_infostreams(from, to); |
7 | 6691 #endif |
6692 return 0; | |
6693 } | |
6694 | |
6695 #if defined(MYRESETSTKOFLW) || defined(PROTO) | |
6696 /* | |
6697 * Recreate a destroyed stack guard page in win32. | |
6698 * Written by Benjamin Peterson. | |
6699 */ | |
6700 | |
6701 /* These magic numbers are from the MS header files */ | |
6702 #define MIN_STACK_WINNT 2 | |
6703 | |
6704 /* | |
6705 * This function does the same thing as _resetstkoflw(), which is only | |
6706 * available in DevStudio .net and later. | |
6707 * Returns 0 for failure, 1 for success. | |
6708 */ | |
6709 int | |
6710 myresetstkoflw(void) | |
6711 { | |
6712 BYTE *pStackPtr; | |
6713 BYTE *pGuardPage; | |
6714 BYTE *pStackBase; | |
6715 BYTE *pLowestPossiblePage; | |
6716 MEMORY_BASIC_INFORMATION mbi; | |
6717 SYSTEM_INFO si; | |
6718 DWORD nPageSize; | |
6719 DWORD dummy; | |
6720 | |
6721 PlatformId(); | |
6722 | |
6723 /* We need to know the system page size. */ | |
6724 GetSystemInfo(&si); | |
6725 nPageSize = si.dwPageSize; | |
6726 | |
6727 /* ...and the current stack pointer */ | |
6728 pStackPtr = (BYTE*)_alloca(1); | |
6729 | |
6730 /* ...and the base of the stack. */ | |
6731 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0) | |
6732 return 0; | |
6733 pStackBase = (BYTE*)mbi.AllocationBase; | |
6734 | |
6735 /* ...and the page thats min_stack_req pages away from stack base; this is | |
6736 * 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
|
6737 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize; |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6738 |
7 | 6739 { |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
6740 /* 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
|
6741 * 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
|
6742 */ |
7 | 6743 BYTE *pBlock = pStackBase; |
6744 | |
406 | 6745 for (;;) |
7 | 6746 { |
6747 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0) | |
6748 return 0; | |
6749 | |
6750 pBlock += mbi.RegionSize; | |
6751 | |
6752 if (mbi.State & MEM_COMMIT) | |
6753 break; | |
6754 } | |
6755 | |
6756 /* mbi now describes the first committed block in the stack. */ | |
6757 if (mbi.Protect & PAGE_GUARD) | |
6758 return 1; | |
6759 | |
6760 /* decide where the guard page should start */ | |
6761 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage) | |
6762 pGuardPage = pLowestPossiblePage; | |
6763 else | |
6764 pGuardPage = (BYTE*)mbi.BaseAddress; | |
6765 | |
6766 /* allocate the guard page */ | |
6767 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE)) | |
6768 return 0; | |
6769 | |
6770 /* apply the guard attribute to the page */ | |
6771 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD, | |
6772 &dummy)) | |
6773 return 0; | |
6774 } | |
6775 | |
6776 return 1; | |
6777 } | |
6778 #endif | |
26 | 6779 |
6780 | |
6781 #if defined(FEAT_MBYTE) || defined(PROTO) | |
6782 /* | |
6783 * The command line arguments in UCS2 | |
6784 */ | |
344 | 6785 static int nArgsW = 0; |
26 | 6786 static LPWSTR *ArglistW = NULL; |
6787 static int global_argc = 0; | |
6788 static char **global_argv; | |
6789 | |
6790 static int used_file_argc = 0; /* last argument in global_argv[] used | |
6791 for the argument list. */ | |
6792 static int *used_file_indexes = NULL; /* indexes in global_argv[] for | |
6793 command line arguments added to | |
6794 the argument list */ | |
6795 static int used_file_count = 0; /* nr of entries in used_file_indexes */ | |
6796 static int used_file_literal = FALSE; /* take file names literally */ | |
6797 static int used_file_full_path = FALSE; /* file name was full path */ | |
819 | 6798 static int used_file_diff_mode = FALSE; /* file name was with diff mode */ |
26 | 6799 static int used_alist_count = 0; |
6800 | |
6801 | |
6802 /* | |
6803 * Get the command line arguments. Unicode version. | |
6804 * Returns argc. Zero when something fails. | |
6805 */ | |
6806 int | |
6807 get_cmd_argsW(char ***argvp) | |
6808 { | |
6809 char **argv = NULL; | |
6810 int argc = 0; | |
6811 int i; | |
6812 | |
6193 | 6813 free_cmd_argsW(); |
26 | 6814 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW); |
6815 if (ArglistW != NULL) | |
6816 { | |
6817 argv = malloc((nArgsW + 1) * sizeof(char *)); | |
6818 if (argv != NULL) | |
6819 { | |
6820 argc = nArgsW; | |
6821 argv[argc] = NULL; | |
6822 for (i = 0; i < argc; ++i) | |
6823 { | |
6824 int len; | |
6825 | |
6826 /* Convert each Unicode argument to the current codepage. */ | |
6827 WideCharToMultiByte_alloc(GetACP(), 0, | |
835 | 6828 ArglistW[i], (int)wcslen(ArglistW[i]) + 1, |
26 | 6829 (LPSTR *)&argv[i], &len, 0, 0); |
6830 if (argv[i] == NULL) | |
6831 { | |
6832 /* Out of memory, clear everything. */ | |
6833 while (i > 0) | |
6834 free(argv[--i]); | |
6835 free(argv); | |
5529 | 6836 argv = NULL; |
26 | 6837 argc = 0; |
6838 } | |
6839 } | |
6840 } | |
6841 } | |
6842 | |
6843 global_argc = argc; | |
6844 global_argv = argv; | |
6845 if (argc > 0) | |
6193 | 6846 { |
6847 if (used_file_indexes != NULL) | |
6848 free(used_file_indexes); | |
26 | 6849 used_file_indexes = malloc(argc * sizeof(int)); |
6193 | 6850 } |
26 | 6851 |
6852 if (argvp != NULL) | |
6853 *argvp = argv; | |
6854 return argc; | |
6855 } | |
6856 | |
6857 void | |
6858 free_cmd_argsW(void) | |
6859 { | |
6860 if (ArglistW != NULL) | |
6861 { | |
6862 GlobalFree(ArglistW); | |
6863 ArglistW = NULL; | |
6864 } | |
6865 } | |
6866 | |
6867 /* | |
6868 * Remember "name" is an argument that was added to the argument list. | |
6869 * This avoids that we have to re-parse the argument list when fix_arg_enc() | |
6870 * is called. | |
6871 */ | |
6872 void | |
819 | 6873 used_file_arg(char *name, int literal, int full_path, int diff_mode) |
26 | 6874 { |
6875 int i; | |
6876 | |
6877 if (used_file_indexes == NULL) | |
6878 return; | |
6879 for (i = used_file_argc + 1; i < global_argc; ++i) | |
6880 if (STRCMP(global_argv[i], name) == 0) | |
6881 { | |
6882 used_file_argc = i; | |
6883 used_file_indexes[used_file_count++] = i; | |
6884 break; | |
6885 } | |
6886 used_file_literal = literal; | |
6887 used_file_full_path = full_path; | |
819 | 6888 used_file_diff_mode = diff_mode; |
26 | 6889 } |
6890 | |
6891 /* | |
6892 * Remember the length of the argument list as it was. If it changes then we | |
6893 * leave it alone when 'encoding' is set. | |
6894 */ | |
6895 void | |
6896 set_alist_count(void) | |
6897 { | |
6898 used_alist_count = GARGCOUNT; | |
6899 } | |
6900 | |
6901 /* | |
6902 * Fix the encoding of the command line arguments. Invoked when 'encoding' | |
6903 * has been changed while starting up. Use the UCS-2 command line arguments | |
6904 * and convert them to 'encoding'. | |
6905 */ | |
6906 void | |
6907 fix_arg_enc(void) | |
6908 { | |
6909 int i; | |
6910 int idx; | |
6911 char_u *str; | |
41 | 6912 int *fnum_list; |
26 | 6913 |
6914 /* Safety checks: | |
6915 * - if argument count differs between the wide and non-wide argument | |
6916 * list, something must be wrong. | |
6917 * - the file name arguments must have been located. | |
6918 * - the length of the argument list wasn't changed by the user. | |
6919 */ | |
344 | 6920 if (global_argc != nArgsW |
26 | 6921 || ArglistW == NULL |
6922 || used_file_indexes == NULL | |
6923 || used_file_count == 0 | |
6924 || used_alist_count != GARGCOUNT) | |
6925 return; | |
6926 | |
41 | 6927 /* Remember the buffer numbers for the arguments. */ |
6928 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT); | |
6929 if (fnum_list == NULL) | |
6930 return; /* out of memory */ | |
6931 for (i = 0; i < GARGCOUNT; ++i) | |
6932 fnum_list[i] = GARGLIST[i].ae_fnum; | |
6933 | |
26 | 6934 /* Clear the argument list. Make room for the new arguments. */ |
6935 alist_clear(&global_alist); | |
6936 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL) | |
41 | 6937 return; /* out of memory */ |
26 | 6938 |
6939 for (i = 0; i < used_file_count; ++i) | |
6940 { | |
6941 idx = used_file_indexes[i]; | |
1752 | 6942 str = utf16_to_enc(ArglistW[idx], NULL); |
26 | 6943 if (str != NULL) |
41 | 6944 { |
819 | 6945 #ifdef FEAT_DIFF |
6946 /* When using diff mode may need to concatenate file name to | |
6947 * directory name. Just like it's done in main(). */ | |
6948 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0 | |
6949 && !mch_isdir(alist_name(&GARGLIST[0]))) | |
6950 { | |
6951 char_u *r; | |
6952 | |
6953 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE); | |
6954 if (r != NULL) | |
6955 { | |
6956 vim_free(str); | |
6957 str = r; | |
6958 } | |
6959 } | |
6960 #endif | |
41 | 6961 /* Re-use the old buffer by renaming it. When not using literal |
6962 * names it's done by alist_expand() below. */ | |
6963 if (used_file_literal) | |
6964 buf_set_name(fnum_list[i], str); | |
6965 | |
26 | 6966 alist_add(&global_alist, str, used_file_literal ? 2 : 0); |
41 | 6967 } |
26 | 6968 } |
6969 | |
6970 if (!used_file_literal) | |
6971 { | |
6972 /* Now expand wildcards in the arguments. */ | |
6973 /* Temporarily add '(' and ')' to 'isfname'. These are valid | |
6974 * filename characters but are excluded from 'isfname' to make | |
6975 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */ | |
6976 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)"); | |
41 | 6977 alist_expand(fnum_list, used_alist_count); |
26 | 6978 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF"); |
6979 } | |
6980 | |
6981 /* If wildcard expansion failed, we are editing the first file of the | |
6982 * arglist and there is no file name: Edit the first argument now. */ | |
6983 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL) | |
6984 { | |
6985 do_cmdline_cmd((char_u *)":rewind"); | |
6986 if (GARGCOUNT == 1 && used_file_full_path) | |
6987 (void)vim_chdirfile(alist_name(&GARGLIST[0])); | |
6988 } | |
41 | 6989 |
6990 set_alist_count(); | |
26 | 6991 } |
6992 #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
|
6993 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
6994 int |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
6995 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
|
6996 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
6997 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
|
6998 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
6999 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
|
7000 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
|
7001 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
|
7002 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7003 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
|
7004 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7005 #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
|
7006 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
|
7007 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7008 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
|
7009 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7010 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
|
7011 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
|
7012 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
|
7013 _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
|
7014 # 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
|
7015 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
|
7016 # endif |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7017 /* 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
|
7018 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
|
7019 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7020 else |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7021 #endif |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7022 { |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7023 _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
|
7024 # 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
|
7025 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
|
7026 # endif |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7027 /* 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
|
7028 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
|
7029 } |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7030 |
c96534dd2b2f
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10571
diff
changeset
|
7031 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
|
7032 } |