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