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