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