blob: 0c896efc374b9ff60f50496edf7062f62d512eef [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 Moolenaar071d4272004-06-13 20:20:40 +00001909
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001910#ifdef FEAT_MBYTE
1911 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001913 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001914 WCHAR fnamew[_MAX_PATH];
1915 WCHAR *dumw;
1916 long n;
1917
1918 if (p != NULL)
1919 {
1920 n = (long)SearchPathW(NULL, p, NULL, _MAX_PATH, fnamew, &dumw);
1921 vim_free(p);
1922 if (n > 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1923 {
1924 if (n == 0)
1925 return FALSE;
1926 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
1927 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001928 if (path != NULL)
1929 *path = utf16_to_enc(fnamew, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001930 return TRUE;
1931 }
1932 /* Retry with non-wide function (for Windows 98). */
1933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001935#endif
1936 if (SearchPath(NULL, name, NULL, _MAX_PATH, fname, &dum) == 0)
1937 return FALSE;
1938 if (mch_isdir(fname))
1939 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001940 if (path != NULL)
1941 *path = vim_strsave(fname);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001942 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943}
1944
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001945#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001946 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001947/*
1948 * Bad parameter handler.
1949 *
1950 * Certain MS CRT functions will intentionally crash when passed invalid
1951 * parameters to highlight possible security holes. Setting this function as
1952 * the bad parameter handler will prevent the crash.
1953 *
1954 * In debug builds the parameters contain CRT information that might help track
1955 * down the source of a problem, but in non-debug builds the arguments are all
1956 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
1957 * worth allowing these to make debugging of issues easier.
1958 */
1959 static void
1960bad_param_handler(const wchar_t *expression,
1961 const wchar_t *function,
1962 const wchar_t *file,
1963 unsigned int line,
1964 uintptr_t pReserved)
1965{
1966}
1967
1968# define SET_INVALID_PARAM_HANDLER \
1969 ((void)_set_invalid_parameter_handler(bad_param_handler))
1970#else
1971# define SET_INVALID_PARAM_HANDLER
1972#endif
1973
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974#ifdef FEAT_GUI_W32
1975
1976/*
1977 * GUI version of mch_init().
1978 */
1979 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001980mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981{
1982#ifndef __MINGW32__
1983 extern int _fmode;
1984#endif
1985
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001986 /* Silently handle invalid parameters to CRT functions */
1987 SET_INVALID_PARAM_HANDLER;
1988
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 /* Let critical errors result in a failure, not in a dialog box. Required
1990 * for the timestamp test to work on removed floppies. */
1991 SetErrorMode(SEM_FAILCRITICALERRORS);
1992
1993 _fmode = O_BINARY; /* we do our own CR-LF translation */
1994
1995 /* Specify window size. Is there a place to get the default from? */
1996 Rows = 25;
1997 Columns = 80;
1998
1999 /* Look for 'vimrun' */
2000 if (!gui_is_win32s())
2001 {
2002 char_u vimrun_location[_MAX_PATH + 4];
2003
2004 /* First try in same directory as gvim.exe */
2005 STRCPY(vimrun_location, exe_name);
2006 STRCPY(gettail(vimrun_location), "vimrun.exe");
2007 if (mch_getperm(vimrun_location) >= 0)
2008 {
2009 if (*skiptowhite(vimrun_location) != NUL)
2010 {
2011 /* Enclose path with white space in double quotes. */
2012 mch_memmove(vimrun_location + 1, vimrun_location,
2013 STRLEN(vimrun_location) + 1);
2014 *vimrun_location = '"';
2015 STRCPY(gettail(vimrun_location), "vimrun\" ");
2016 }
2017 else
2018 STRCPY(gettail(vimrun_location), "vimrun ");
2019
2020 vimrun_path = (char *)vim_strsave(vimrun_location);
2021 s_dont_use_vimrun = FALSE;
2022 }
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002023 else if (executable_exists("vimrun.exe", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 s_dont_use_vimrun = FALSE;
2025
2026 /* Don't give the warning for a missing vimrun.exe right now, but only
2027 * when vimrun was supposed to be used. Don't bother people that do
2028 * not need vimrun.exe. */
2029 if (s_dont_use_vimrun)
2030 need_vimrun_warning = TRUE;
2031 }
2032
2033 /*
2034 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2035 * Otherwise the default "findstr /n" is used.
2036 */
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002037 if (!executable_exists("findstr.exe", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2039
2040#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002041 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042#endif
2043}
2044
2045
2046#else /* FEAT_GUI_W32 */
2047
2048#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2049#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2050
2051/*
2052 * ClearConsoleBuffer()
2053 * Description:
2054 * Clears the entire contents of the console screen buffer, using the
2055 * specified attribute.
2056 * Returns:
2057 * TRUE on success
2058 */
2059 static BOOL
2060ClearConsoleBuffer(WORD wAttribute)
2061{
2062 CONSOLE_SCREEN_BUFFER_INFO csbi;
2063 COORD coord;
2064 DWORD NumCells, dummy;
2065
2066 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2067 return FALSE;
2068
2069 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2070 coord.X = 0;
2071 coord.Y = 0;
2072 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2073 coord, &dummy))
2074 {
2075 return FALSE;
2076 }
2077 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2078 coord, &dummy))
2079 {
2080 return FALSE;
2081 }
2082
2083 return TRUE;
2084}
2085
2086/*
2087 * FitConsoleWindow()
2088 * Description:
2089 * Checks if the console window will fit within given buffer dimensions.
2090 * Also, if requested, will shrink the window to fit.
2091 * Returns:
2092 * TRUE on success
2093 */
2094 static BOOL
2095FitConsoleWindow(
2096 COORD dwBufferSize,
2097 BOOL WantAdjust)
2098{
2099 CONSOLE_SCREEN_BUFFER_INFO csbi;
2100 COORD dwWindowSize;
2101 BOOL NeedAdjust = FALSE;
2102
2103 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2104 {
2105 /*
2106 * A buffer resize will fail if the current console window does
2107 * not lie completely within that buffer. To avoid this, we might
2108 * have to move and possibly shrink the window.
2109 */
2110 if (csbi.srWindow.Right >= dwBufferSize.X)
2111 {
2112 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2113 if (dwWindowSize.X > dwBufferSize.X)
2114 dwWindowSize.X = dwBufferSize.X;
2115 csbi.srWindow.Right = dwBufferSize.X - 1;
2116 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2117 NeedAdjust = TRUE;
2118 }
2119 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2120 {
2121 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2122 if (dwWindowSize.Y > dwBufferSize.Y)
2123 dwWindowSize.Y = dwBufferSize.Y;
2124 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2125 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2126 NeedAdjust = TRUE;
2127 }
2128 if (NeedAdjust && WantAdjust)
2129 {
2130 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2131 return FALSE;
2132 }
2133 return TRUE;
2134 }
2135
2136 return FALSE;
2137}
2138
2139typedef struct ConsoleBufferStruct
2140{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002141 BOOL IsValid;
2142 CONSOLE_SCREEN_BUFFER_INFO Info;
2143 PCHAR_INFO Buffer;
2144 COORD BufferSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145} ConsoleBuffer;
2146
2147/*
2148 * SaveConsoleBuffer()
2149 * Description:
2150 * Saves important information about the console buffer, including the
2151 * actual buffer contents. The saved information is suitable for later
2152 * restoration by RestoreConsoleBuffer().
2153 * Returns:
2154 * TRUE if all information was saved; FALSE otherwise
2155 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2156 */
2157 static BOOL
2158SaveConsoleBuffer(
2159 ConsoleBuffer *cb)
2160{
2161 DWORD NumCells;
2162 COORD BufferCoord;
2163 SMALL_RECT ReadRegion;
2164 WORD Y, Y_incr;
2165
2166 if (cb == NULL)
2167 return FALSE;
2168
2169 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
2170 {
2171 cb->IsValid = FALSE;
2172 return FALSE;
2173 }
2174 cb->IsValid = TRUE;
2175
2176 /*
2177 * Allocate a buffer large enough to hold the entire console screen
2178 * buffer. If this ConsoleBuffer structure has already been initialized
2179 * with a buffer of the correct size, then just use that one.
2180 */
2181 if (!cb->IsValid || cb->Buffer == NULL ||
2182 cb->BufferSize.X != cb->Info.dwSize.X ||
2183 cb->BufferSize.Y != cb->Info.dwSize.Y)
2184 {
2185 cb->BufferSize.X = cb->Info.dwSize.X;
2186 cb->BufferSize.Y = cb->Info.dwSize.Y;
2187 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01002188 vim_free(cb->Buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2190 if (cb->Buffer == NULL)
2191 return FALSE;
2192 }
2193
2194 /*
2195 * We will now copy the console screen buffer into our buffer.
2196 * ReadConsoleOutput() seems to be limited as far as how much you
2197 * can read at a time. Empirically, this number seems to be about
2198 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2199 * in chunks until it is all copied. The chunks will all have the
2200 * same horizontal characteristics, so initialize them now. The
2201 * height of each chunk will be (12000 / width).
2202 */
2203 BufferCoord.X = 0;
2204 ReadRegion.Left = 0;
2205 ReadRegion.Right = cb->Info.dwSize.X - 1;
2206 Y_incr = 12000 / cb->Info.dwSize.X;
2207 for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr)
2208 {
2209 /*
2210 * Read into position (0, Y) in our buffer.
2211 */
2212 BufferCoord.Y = Y;
2213 /*
2214 * Read the region whose top left corner is (0, Y) and whose bottom
2215 * right corner is (width - 1, Y + Y_incr - 1). This should define
2216 * a region of size width by Y_incr. Don't worry if this region is
2217 * too large for the remaining buffer; it will be cropped.
2218 */
2219 ReadRegion.Top = Y;
2220 ReadRegion.Bottom = Y + Y_incr - 1;
2221 if (!ReadConsoleOutput(g_hConOut, /* output handle */
2222 cb->Buffer, /* our buffer */
2223 cb->BufferSize, /* dimensions of our buffer */
2224 BufferCoord, /* offset in our buffer */
2225 &ReadRegion)) /* region to save */
2226 {
2227 vim_free(cb->Buffer);
2228 cb->Buffer = NULL;
2229 return FALSE;
2230 }
2231 }
2232
2233 return TRUE;
2234}
2235
2236/*
2237 * RestoreConsoleBuffer()
2238 * Description:
2239 * Restores important information about the console buffer, including the
2240 * actual buffer contents, if desired. The information to restore is in
2241 * the same format used by SaveConsoleBuffer().
2242 * Returns:
2243 * TRUE on success
2244 */
2245 static BOOL
2246RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002247 ConsoleBuffer *cb,
2248 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249{
2250 COORD BufferCoord;
2251 SMALL_RECT WriteRegion;
2252
2253 if (cb == NULL || !cb->IsValid)
2254 return FALSE;
2255
2256 /*
2257 * Before restoring the buffer contents, clear the current buffer, and
2258 * restore the cursor position and window information. Doing this now
2259 * prevents old buffer contents from "flashing" onto the screen.
2260 */
2261 if (RestoreScreen)
2262 ClearConsoleBuffer(cb->Info.wAttributes);
2263
2264 FitConsoleWindow(cb->Info.dwSize, TRUE);
2265 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2266 return FALSE;
2267 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2268 return FALSE;
2269
2270 if (!RestoreScreen)
2271 {
2272 /*
2273 * No need to restore the screen buffer contents, so we're done.
2274 */
2275 return TRUE;
2276 }
2277
2278 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2279 return FALSE;
2280 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2281 return FALSE;
2282
2283 /*
2284 * Restore the screen buffer contents.
2285 */
2286 if (cb->Buffer != NULL)
2287 {
2288 BufferCoord.X = 0;
2289 BufferCoord.Y = 0;
2290 WriteRegion.Left = 0;
2291 WriteRegion.Top = 0;
2292 WriteRegion.Right = cb->Info.dwSize.X - 1;
2293 WriteRegion.Bottom = cb->Info.dwSize.Y - 1;
2294 if (!WriteConsoleOutput(g_hConOut, /* output handle */
2295 cb->Buffer, /* our buffer */
2296 cb->BufferSize, /* dimensions of our buffer */
2297 BufferCoord, /* offset in our buffer */
2298 &WriteRegion)) /* region to restore */
2299 {
2300 return FALSE;
2301 }
2302 }
2303
2304 return TRUE;
2305}
2306
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002307#define FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308#ifdef FEAT_RESTORE_ORIG_SCREEN
2309static ConsoleBuffer g_cbOrig = { 0 };
2310#endif
2311static ConsoleBuffer g_cbNonTermcap = { 0 };
2312static ConsoleBuffer g_cbTermcap = { 0 };
2313
2314#ifdef FEAT_TITLE
2315#ifdef __BORLANDC__
2316typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2317#else
2318typedef WINBASEAPI HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
2319#endif
2320char g_szOrigTitle[256] = { 0 };
2321HWND g_hWnd = NULL; /* also used in os_mswin.c */
2322static HICON g_hOrigIconSmall = NULL;
2323static HICON g_hOrigIcon = NULL;
2324static HICON g_hVimIcon = NULL;
2325static BOOL g_fCanChangeIcon = FALSE;
2326
2327/* ICON* are not defined in VC++ 4.0 */
2328#ifndef ICON_SMALL
2329#define ICON_SMALL 0
2330#endif
2331#ifndef ICON_BIG
2332#define ICON_BIG 1
2333#endif
2334/*
2335 * GetConsoleIcon()
2336 * Description:
2337 * Attempts to retrieve the small icon and/or the big icon currently in
2338 * use by a given window.
2339 * Returns:
2340 * TRUE on success
2341 */
2342 static BOOL
2343GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002344 HWND hWnd,
2345 HICON *phIconSmall,
2346 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347{
2348 if (hWnd == NULL)
2349 return FALSE;
2350
2351 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002352 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2353 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002355 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2356 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 return TRUE;
2358}
2359
2360/*
2361 * SetConsoleIcon()
2362 * Description:
2363 * Attempts to change the small icon and/or the big icon currently in
2364 * use by a given window.
2365 * Returns:
2366 * TRUE on success
2367 */
2368 static BOOL
2369SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002370 HWND hWnd,
2371 HICON hIconSmall,
2372 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002374 HICON hPrevIconSmall;
2375 HICON hPrevIcon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
2377 if (hWnd == NULL)
2378 return FALSE;
2379
2380 if (hIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002381 hPrevIconSmall = (HICON)SendMessage(hWnd, WM_SETICON,
2382 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 if (hIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002384 hPrevIcon = (HICON)SendMessage(hWnd, WM_SETICON,
2385 (WPARAM)ICON_BIG,(LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 return TRUE;
2387}
2388
2389/*
2390 * SaveConsoleTitleAndIcon()
2391 * Description:
2392 * Saves the current console window title in g_szOrigTitle, for later
2393 * restoration. Also, attempts to obtain a handle to the console window,
2394 * and use it to save the small and big icons currently in use by the
2395 * console window. This is not always possible on some versions of Windows;
2396 * nor is it possible when running Vim remotely using Telnet (since the
2397 * console window the user sees is owned by a remote process).
2398 */
2399 static void
2400SaveConsoleTitleAndIcon(void)
2401{
2402 GETCONSOLEWINDOWPROC GetConsoleWindowProc;
2403
2404 /* Save the original title. */
2405 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2406 return;
2407
2408 /*
2409 * Obtain a handle to the console window using GetConsoleWindow() from
2410 * KERNEL32.DLL; we need to handle in order to change the window icon.
2411 * This function only exists on NT-based Windows, starting with Windows
2412 * 2000. On older operating systems, we can't change the window icon
2413 * anyway.
2414 */
2415 if ((GetConsoleWindowProc = (GETCONSOLEWINDOWPROC)
2416 GetProcAddress(GetModuleHandle("KERNEL32.DLL"),
2417 "GetConsoleWindow")) != NULL)
2418 {
2419 g_hWnd = (*GetConsoleWindowProc)();
2420 }
2421 if (g_hWnd == NULL)
2422 return;
2423
2424 /* Save the original console window icon. */
2425 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2426 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2427 return;
2428
2429 /* Extract the first icon contained in the Vim executable. */
2430 g_hVimIcon = ExtractIcon(NULL, exe_name, 0);
2431 if (g_hVimIcon != NULL)
2432 g_fCanChangeIcon = TRUE;
2433}
2434#endif
2435
2436static int g_fWindInitCalled = FALSE;
2437static int g_fTermcapMode = FALSE;
2438static CONSOLE_CURSOR_INFO g_cci;
2439static DWORD g_cmodein = 0;
2440static DWORD g_cmodeout = 0;
2441
2442/*
2443 * non-GUI version of mch_init().
2444 */
2445 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002446mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447{
2448#ifndef FEAT_RESTORE_ORIG_SCREEN
2449 CONSOLE_SCREEN_BUFFER_INFO csbi;
2450#endif
2451#ifndef __MINGW32__
2452 extern int _fmode;
2453#endif
2454
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002455 /* Silently handle invalid parameters to CRT functions */
2456 SET_INVALID_PARAM_HANDLER;
2457
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 /* Let critical errors result in a failure, not in a dialog box. Required
2459 * for the timestamp test to work on removed floppies. */
2460 SetErrorMode(SEM_FAILCRITICALERRORS);
2461
2462 _fmode = O_BINARY; /* we do our own CR-LF translation */
2463 out_flush();
2464
2465 /* Obtain handles for the standard Console I/O devices */
2466 if (read_cmd_fd == 0)
2467 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2468 else
2469 create_conin();
2470 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2471
2472#ifdef FEAT_RESTORE_ORIG_SCREEN
2473 /* Save the initial console buffer for later restoration */
2474 SaveConsoleBuffer(&g_cbOrig);
2475 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2476#else
2477 /* Get current text attributes */
2478 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2479 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2480#endif
2481 if (cterm_normal_fg_color == 0)
2482 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2483 if (cterm_normal_bg_color == 0)
2484 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2485
2486 /* set termcap codes to current text attributes */
2487 update_tcap(g_attrCurrent);
2488
2489 GetConsoleCursorInfo(g_hConOut, &g_cci);
2490 GetConsoleMode(g_hConIn, &g_cmodein);
2491 GetConsoleMode(g_hConOut, &g_cmodeout);
2492
2493#ifdef FEAT_TITLE
2494 SaveConsoleTitleAndIcon();
2495 /*
2496 * Set both the small and big icons of the console window to Vim's icon.
2497 * Note that Vim presently only has one size of icon (32x32), but it
2498 * automatically gets scaled down to 16x16 when setting the small icon.
2499 */
2500 if (g_fCanChangeIcon)
2501 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2502#endif
2503
2504 ui_get_shellsize();
2505
2506#ifdef MCH_WRITE_DUMP
2507 fdDump = fopen("dump", "wt");
2508
2509 if (fdDump)
2510 {
2511 time_t t;
2512
2513 time(&t);
2514 fputs(ctime(&t), fdDump);
2515 fflush(fdDump);
2516 }
2517#endif
2518
2519 g_fWindInitCalled = TRUE;
2520
2521#ifdef FEAT_MOUSE
2522 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2523#endif
2524
2525#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002526 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527#endif
2528
2529 /* This will be NULL on anything but NT 4.0 */
2530 s_pfnGetConsoleKeyboardLayoutName =
2531 (PFNGCKLN) GetProcAddress(GetModuleHandle("kernel32.dll"),
2532 "GetConsoleKeyboardLayoutNameA");
2533}
2534
2535/*
2536 * non-GUI version of mch_exit().
2537 * Shut down and exit with status `r'
2538 * Careful: mch_exit() may be called before mch_init()!
2539 */
2540 void
2541mch_exit(int r)
2542{
2543 stoptermcap();
2544
2545 if (g_fWindInitCalled)
2546 settmode(TMODE_COOK);
2547
2548 ml_close_all(TRUE); /* remove all memfiles */
2549
2550 if (g_fWindInitCalled)
2551 {
2552#ifdef FEAT_TITLE
2553 mch_restore_title(3);
2554 /*
2555 * Restore both the small and big icons of the console window to
2556 * what they were at startup. Don't do this when the window is
2557 * closed, Vim would hang here.
2558 */
2559 if (g_fCanChangeIcon && !g_fForceExit)
2560 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2561#endif
2562
2563#ifdef MCH_WRITE_DUMP
2564 if (fdDump)
2565 {
2566 time_t t;
2567
2568 time(&t);
2569 fputs(ctime(&t), fdDump);
2570 fclose(fdDump);
2571 }
2572 fdDump = NULL;
2573#endif
2574 }
2575
2576 SetConsoleCursorInfo(g_hConOut, &g_cci);
2577 SetConsoleMode(g_hConIn, g_cmodein);
2578 SetConsoleMode(g_hConOut, g_cmodeout);
2579
2580#ifdef DYNAMIC_GETTEXT
2581 dyn_libintl_end();
2582#endif
2583
2584 exit(r);
2585}
2586#endif /* !FEAT_GUI_W32 */
2587
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588/*
2589 * Do we have an interactive window?
2590 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002591/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 int
2593mch_check_win(
2594 int argc,
2595 char **argv)
2596{
2597 get_exe_name();
2598
2599#ifdef FEAT_GUI_W32
2600 return OK; /* GUI always has a tty */
2601#else
2602 if (isatty(1))
2603 return OK;
2604 return FAIL;
2605#endif
2606}
2607
2608
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002609#ifdef FEAT_MBYTE
2610/*
2611 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2612 * if it already exists. When "len" is > 0, also expand short to long
2613 * filenames.
2614 * Return FAIL if wide functions are not available, OK otherwise.
2615 * NOTE: much of this is identical to fname_case(), keep in sync!
2616 */
2617 static int
2618fname_casew(
2619 WCHAR *name,
2620 int len)
2621{
2622 WCHAR szTrueName[_MAX_PATH + 2];
2623 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2624 WCHAR *ptrue, *ptruePrev;
2625 WCHAR *porig, *porigPrev;
2626 int flen;
2627 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002628 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002629 int c;
2630 int slen;
2631
2632 flen = (int)wcslen(name);
2633 if (flen > _MAX_PATH)
2634 return OK;
2635
2636 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2637
2638 /* Build the new name in szTrueName[] one component at a time. */
2639 porig = name;
2640 ptrue = szTrueName;
2641
2642 if (iswalpha(porig[0]) && porig[1] == L':')
2643 {
2644 /* copy leading drive letter */
2645 *ptrue++ = *porig++;
2646 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002647 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002648 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002649
2650 while (*porig != NUL)
2651 {
2652 /* copy \ characters */
2653 while (*porig == psepc)
2654 *ptrue++ = *porig++;
2655
2656 ptruePrev = ptrue;
2657 porigPrev = porig;
2658 while (*porig != NUL && *porig != psepc)
2659 {
2660 *ptrue++ = *porig++;
2661 }
2662 *ptrue = NUL;
2663
2664 /* To avoid a slow failure append "\*" when searching a directory,
2665 * server or network share. */
2666 wcscpy(szTrueNameTemp, szTrueName);
2667 slen = (int)wcslen(szTrueNameTemp);
2668 if (*porig == psepc && slen + 2 < _MAX_PATH)
2669 wcscpy(szTrueNameTemp + slen, L"\\*");
2670
2671 /* Skip "", "." and "..". */
2672 if (ptrue > ptruePrev
2673 && (ptruePrev[0] != L'.'
2674 || (ptruePrev[1] != NUL
2675 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2676 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2677 != INVALID_HANDLE_VALUE)
2678 {
2679 c = *porig;
2680 *porig = NUL;
2681
2682 /* Only use the match when it's the same name (ignoring case) or
2683 * expansion is allowed and there is a match with the short name
2684 * and there is enough room. */
2685 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2686 || (len > 0
2687 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2688 && (int)(ptruePrev - szTrueName)
2689 + (int)wcslen(fb.cFileName) < len)))
2690 {
2691 wcscpy(ptruePrev, fb.cFileName);
2692
2693 /* Look for exact match and prefer it if found. Must be a
2694 * long name, otherwise there would be only one match. */
2695 while (FindNextFileW(hFind, &fb))
2696 {
2697 if (*fb.cAlternateFileName != NUL
2698 && (wcscoll(porigPrev, fb.cFileName) == 0
2699 || (len > 0
2700 && (_wcsicoll(porigPrev,
2701 fb.cAlternateFileName) == 0
2702 && (int)(ptruePrev - szTrueName)
2703 + (int)wcslen(fb.cFileName) < len))))
2704 {
2705 wcscpy(ptruePrev, fb.cFileName);
2706 break;
2707 }
2708 }
2709 }
2710 FindClose(hFind);
2711 *porig = c;
2712 ptrue = ptruePrev + wcslen(ptruePrev);
2713 }
2714 else if (hFind == INVALID_HANDLE_VALUE
2715 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2716 return FAIL;
2717 }
2718
2719 wcscpy(name, szTrueName);
2720 return OK;
2721}
2722#endif
2723
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724/*
2725 * fname_case(): Set the case of the file name, if it already exists.
2726 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002727 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 */
2729 void
2730fname_case(
2731 char_u *name,
2732 int len)
2733{
2734 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002735 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 char *ptrue, *ptruePrev;
2737 char *porig, *porigPrev;
2738 int flen;
2739 WIN32_FIND_DATA fb;
2740 HANDLE hFind;
2741 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002742 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002744 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002745 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 return;
2747
2748 slash_adjust(name);
2749
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002750#ifdef FEAT_MBYTE
2751 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2752 {
2753 WCHAR *p = enc_to_utf16(name, NULL);
2754
2755 if (p != NULL)
2756 {
2757 char_u *q;
2758 WCHAR buf[_MAX_PATH + 2];
2759
2760 wcscpy(buf, p);
2761 vim_free(p);
2762
2763 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2764 {
2765 q = utf16_to_enc(buf, NULL);
2766 if (q != NULL)
2767 {
2768 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2769 vim_free(q);
2770 return;
2771 }
2772 }
2773 }
2774 /* Retry with non-wide function (for Windows 98). */
2775 }
2776#endif
2777
2778 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2779 * So we should check this after calling wide function. */
2780 if (flen > _MAX_PATH)
2781 return;
2782
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 /* Build the new name in szTrueName[] one component at a time. */
2784 porig = name;
2785 ptrue = szTrueName;
2786
2787 if (isalpha(porig[0]) && porig[1] == ':')
2788 {
2789 /* copy leading drive letter */
2790 *ptrue++ = *porig++;
2791 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002793 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794
2795 while (*porig != NUL)
2796 {
2797 /* copy \ characters */
2798 while (*porig == psepc)
2799 *ptrue++ = *porig++;
2800
2801 ptruePrev = ptrue;
2802 porigPrev = porig;
2803 while (*porig != NUL && *porig != psepc)
2804 {
2805#ifdef FEAT_MBYTE
2806 int l;
2807
2808 if (enc_dbcs)
2809 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002810 l = (*mb_ptr2len)(porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 while (--l >= 0)
2812 *ptrue++ = *porig++;
2813 }
2814 else
2815#endif
2816 *ptrue++ = *porig++;
2817 }
2818 *ptrue = NUL;
2819
Bram Moolenaar464c9252010-10-13 20:37:41 +02002820 /* To avoid a slow failure append "\*" when searching a directory,
2821 * server or network share. */
2822 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002823 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002824 if (*porig == psepc && slen + 2 < _MAX_PATH)
2825 STRCPY(szTrueNameTemp + slen, "\\*");
2826
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 /* Skip "", "." and "..". */
2828 if (ptrue > ptruePrev
2829 && (ptruePrev[0] != '.'
2830 || (ptruePrev[1] != NUL
2831 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002832 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 != INVALID_HANDLE_VALUE)
2834 {
2835 c = *porig;
2836 *porig = NUL;
2837
2838 /* Only use the match when it's the same name (ignoring case) or
2839 * expansion is allowed and there is a match with the short name
2840 * and there is enough room. */
2841 if (_stricoll(porigPrev, fb.cFileName) == 0
2842 || (len > 0
2843 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2844 && (int)(ptruePrev - szTrueName)
2845 + (int)strlen(fb.cFileName) < len)))
2846 {
2847 STRCPY(ptruePrev, fb.cFileName);
2848
2849 /* Look for exact match and prefer it if found. Must be a
2850 * long name, otherwise there would be only one match. */
2851 while (FindNextFile(hFind, &fb))
2852 {
2853 if (*fb.cAlternateFileName != NUL
2854 && (strcoll(porigPrev, fb.cFileName) == 0
2855 || (len > 0
2856 && (_stricoll(porigPrev,
2857 fb.cAlternateFileName) == 0
2858 && (int)(ptruePrev - szTrueName)
2859 + (int)strlen(fb.cFileName) < len))))
2860 {
2861 STRCPY(ptruePrev, fb.cFileName);
2862 break;
2863 }
2864 }
2865 }
2866 FindClose(hFind);
2867 *porig = c;
2868 ptrue = ptruePrev + strlen(ptruePrev);
2869 }
2870 }
2871
2872 STRCPY(name, szTrueName);
2873}
2874
2875
2876/*
2877 * Insert user name in s[len].
2878 */
2879 int
2880mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002881 char_u *s,
2882 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002884 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 DWORD cch = sizeof szUserName;
2886
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002887#ifdef FEAT_MBYTE
2888 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2889 {
2890 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2891 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2892
2893 if (GetUserNameW(wszUserName, &wcch))
2894 {
2895 char_u *p = utf16_to_enc(wszUserName, NULL);
2896
2897 if (p != NULL)
2898 {
2899 vim_strncpy(s, p, len - 1);
2900 vim_free(p);
2901 return OK;
2902 }
2903 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002904 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2905 return FAIL;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002906 /* Retry with non-wide function (for Windows 98). */
2907 }
2908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 if (GetUserName(szUserName, &cch))
2910 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002911 vim_strncpy(s, szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 return OK;
2913 }
2914 s[0] = NUL;
2915 return FAIL;
2916}
2917
2918
2919/*
2920 * Insert host name in s[len].
2921 */
2922 void
2923mch_get_host_name(
2924 char_u *s,
2925 int len)
2926{
2927 DWORD cch = len;
2928
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002929#ifdef FEAT_MBYTE
2930 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2931 {
2932 WCHAR wszHostName[256 + 1];
2933 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2934
2935 if (GetComputerNameW(wszHostName, &wcch))
2936 {
2937 char_u *p = utf16_to_enc(wszHostName, NULL);
2938
2939 if (p != NULL)
2940 {
2941 vim_strncpy(s, p, len - 1);
2942 vim_free(p);
2943 return;
2944 }
2945 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002946 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2947 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002948 /* Retry with non-wide function (for Windows 98). */
2949 }
2950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 if (!GetComputerName(s, &cch))
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002952 vim_strncpy(s, "PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953}
2954
2955
2956/*
2957 * return process ID
2958 */
2959 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002960mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961{
2962 return (long)GetCurrentProcessId();
2963}
2964
2965
2966/*
2967 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2968 * Return OK for success, FAIL for failure.
2969 */
2970 int
2971mch_dirname(
2972 char_u *buf,
2973 int len)
2974{
2975 /*
2976 * Originally this was:
2977 * return (getcwd(buf, len) != NULL ? OK : FAIL);
2978 * But the Win32s known bug list says that getcwd() doesn't work
2979 * so use the Win32 system call instead. <Negri>
2980 */
2981#ifdef FEAT_MBYTE
2982 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2983 {
2984 WCHAR wbuf[_MAX_PATH + 1];
2985
2986 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
2987 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002988 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989
2990 if (p != NULL)
2991 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002992 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 vim_free(p);
2994 return OK;
2995 }
2996 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002997 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2998 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 /* Retry with non-wide function (for Windows 98). */
3000 }
3001#endif
3002 return (GetCurrentDirectory(len, buf) != 0 ? OK : FAIL);
3003}
3004
3005/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003006 * Get file permissions for "name".
3007 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 */
3009 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003010mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003012 struct stat st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003013 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003015 n = mch_stat(name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003016 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017}
3018
3019
3020/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003021 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003022 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003023 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 */
3025 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003026mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003028 long n = -1;
3029
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030#ifdef FEAT_MBYTE
3031 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3032 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003033 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034
3035 if (p != NULL)
3036 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003037 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01003039 if (n == -1 && g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003040 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 /* Retry with non-wide function (for Windows 98). */
3042 }
3043 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003044 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045#endif
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003046 n = _chmod(name, perm);
3047 if (n == -1)
3048 return FAIL;
3049
3050 win32_set_archive(name);
3051
3052 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053}
3054
3055/*
3056 * Set hidden flag for "name".
3057 */
3058 void
3059mch_hide(char_u *name)
3060{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003061 int attrs = win32_getattrs(name);
3062 if (attrs == -1)
3063 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003065 attrs |= FILE_ATTRIBUTE_HIDDEN;
3066 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067}
3068
3069/*
3070 * return TRUE if "name" is a directory
3071 * return FALSE if "name" is not a directory or upon error
3072 */
3073 int
3074mch_isdir(char_u *name)
3075{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003076 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077
3078 if (f == -1)
3079 return FALSE; /* file does not exist at all */
3080
3081 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3082}
3083
3084/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003085 * Create directory "name".
3086 * Return 0 on success, -1 on error.
3087 */
3088 int
3089mch_mkdir(char_u *name)
3090{
3091#ifdef FEAT_MBYTE
3092 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3093 {
3094 WCHAR *p;
3095 int retval;
3096
3097 p = enc_to_utf16(name, NULL);
3098 if (p == NULL)
3099 return -1;
3100 retval = _wmkdir(p);
3101 vim_free(p);
3102 return retval;
3103 }
3104#endif
3105 return _mkdir(name);
3106}
3107
3108/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003109 * Return TRUE if file "fname" has more than one link.
3110 */
3111 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003112mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003113{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003114 BY_HANDLE_FILE_INFORMATION info;
3115
3116 return win32_fileinfo(fname, &info) == FILEINFO_OK
3117 && info.nNumberOfLinks > 1;
3118}
3119
3120/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003121 * Return TRUE if file "fname" is a symbolic link.
3122 */
3123 int
3124mch_is_symbolic_link(char_u *fname)
3125{
3126 HANDLE hFind;
3127 int res = FALSE;
3128 WIN32_FIND_DATAA findDataA;
3129 DWORD fileFlags = 0, reparseTag = 0;
3130#ifdef FEAT_MBYTE
3131 WCHAR *wn = NULL;
3132 WIN32_FIND_DATAW findDataW;
3133
3134 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3135 wn = enc_to_utf16(fname, NULL);
3136 if (wn != NULL)
3137 {
3138 hFind = FindFirstFileW(wn, &findDataW);
3139 vim_free(wn);
3140 if (hFind == INVALID_HANDLE_VALUE
3141 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3142 {
3143 /* Retry with non-wide function (for Windows 98). */
3144 hFind = FindFirstFile(fname, &findDataA);
3145 if (hFind != INVALID_HANDLE_VALUE)
3146 {
3147 fileFlags = findDataA.dwFileAttributes;
3148 reparseTag = findDataA.dwReserved0;
3149 }
3150 }
3151 else
3152 {
3153 fileFlags = findDataW.dwFileAttributes;
3154 reparseTag = findDataW.dwReserved0;
3155 }
3156 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003157 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003158#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003159 {
3160 hFind = FindFirstFile(fname, &findDataA);
3161 if (hFind != INVALID_HANDLE_VALUE)
3162 {
3163 fileFlags = findDataA.dwFileAttributes;
3164 reparseTag = findDataA.dwReserved0;
3165 }
3166 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003167
3168 if (hFind != INVALID_HANDLE_VALUE)
3169 FindClose(hFind);
3170
3171 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
3172 && reparseTag == IO_REPARSE_TAG_SYMLINK)
3173 res = TRUE;
3174
3175 return res;
3176}
3177
3178/*
3179 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3180 * link.
3181 */
3182 int
3183mch_is_linked(char_u *fname)
3184{
3185 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3186 return TRUE;
3187 return FALSE;
3188}
3189
3190/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003191 * Get the by-handle-file-information for "fname".
3192 * Returns FILEINFO_OK when OK.
3193 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3194 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3195 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3196 */
3197 int
3198win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3199{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003200 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003201 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003202#ifdef FEAT_MBYTE
3203 WCHAR *wn = NULL;
3204
3205 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003206 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003207 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003208 if (wn == NULL)
3209 res = FILEINFO_ENC_FAIL;
3210 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003211 if (wn != NULL)
3212 {
3213 hFile = CreateFileW(wn, /* file name */
3214 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003215 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003216 NULL, /* security descriptor */
3217 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003218 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003219 NULL); /* handle to template file */
3220 if (hFile == INVALID_HANDLE_VALUE
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003221 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003222 {
3223 /* Retry with non-wide function (for Windows 98). */
3224 vim_free(wn);
3225 wn = NULL;
3226 }
3227 }
3228 if (wn == NULL)
3229#endif
3230 hFile = CreateFile(fname, /* file name */
3231 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003232 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003233 NULL, /* security descriptor */
3234 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003235 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003236 NULL); /* handle to template file */
3237
3238 if (hFile != INVALID_HANDLE_VALUE)
3239 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003240 if (GetFileInformationByHandle(hFile, info) != 0)
3241 res = FILEINFO_OK;
3242 else
3243 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003244 CloseHandle(hFile);
3245 }
3246
3247#ifdef FEAT_MBYTE
3248 vim_free(wn);
3249#endif
3250 return res;
3251}
3252
3253/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003254 * get file attributes for `name'
3255 * -1 : error
3256 * else FILE_ATTRIBUTE_* defined in winnt.h
3257 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003258 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003259win32_getattrs(char_u *name)
3260{
3261 int attr;
3262#ifdef FEAT_MBYTE
3263 WCHAR *p = NULL;
3264
3265 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3266 p = enc_to_utf16(name, NULL);
3267
3268 if (p != NULL)
3269 {
3270 attr = GetFileAttributesW(p);
3271 if (attr < 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3272 {
3273 /* Retry with non-wide function (for Windows 98). */
3274 vim_free(p);
3275 p = NULL;
3276 }
3277 }
3278 if (p == NULL)
3279#endif
3280 attr = GetFileAttributes((char *)name);
3281#ifdef FEAT_MBYTE
3282 vim_free(p);
3283#endif
3284 return attr;
3285}
3286
3287/*
3288 * set file attributes for `name' to `attrs'
3289 *
3290 * return -1 for failure, 0 otherwise
3291 */
3292 static
3293 int
3294win32_setattrs(char_u *name, int attrs)
3295{
3296 int res;
3297#ifdef FEAT_MBYTE
3298 WCHAR *p = NULL;
3299
3300 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3301 p = enc_to_utf16(name, NULL);
3302
3303 if (p != NULL)
3304 {
3305 res = SetFileAttributesW(p, attrs);
3306 if (res == FALSE
3307 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3308 {
3309 /* Retry with non-wide function (for Windows 98). */
3310 vim_free(p);
3311 p = NULL;
3312 }
3313 }
3314 if (p == NULL)
3315#endif
3316 res = SetFileAttributes((char *)name, attrs);
3317#ifdef FEAT_MBYTE
3318 vim_free(p);
3319#endif
3320 return res ? 0 : -1;
3321}
3322
3323/*
3324 * Set archive flag for "name".
3325 */
3326 static
3327 int
3328win32_set_archive(char_u *name)
3329{
3330 int attrs = win32_getattrs(name);
3331 if (attrs == -1)
3332 return -1;
3333
3334 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3335 return win32_setattrs(name, attrs);
3336}
3337
3338/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 * Return TRUE if file or directory "name" is writable (not readonly).
3340 * Strange semantics of Win32: a readonly directory is writable, but you can't
3341 * delete a file. Let's say this means it is writable.
3342 */
3343 int
3344mch_writable(char_u *name)
3345{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003346 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003348 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3349 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350}
3351
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352/*
3353 * Return 1 if "name" can be executed, 0 if not.
3354 * Return -1 if unknown.
3355 */
3356 int
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003357mch_can_exe(char_u *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003359 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003360 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003361 char_u *p;
3362
3363 if (len >= _MAX_PATH) /* safety check */
3364 return FALSE;
3365
3366 /* If there already is an extension try using the name directly. Also do
3367 * this with a Unix-shell like 'shell'. */
3368 if (vim_strchr(gettail(name), '.') != NULL
3369 || strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003370 if (executable_exists((char *)name, path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003371 return TRUE;
3372
3373 /*
3374 * Loop over all extensions in $PATHEXT.
3375 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003376 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003377 p = mch_getenv("PATHEXT");
3378 if (p == NULL)
3379 p = (char_u *)".com;.exe;.bat;.cmd";
3380 while (*p)
3381 {
3382 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3383 {
3384 /* A single "." means no extension is added. */
3385 buf[len] = NUL;
3386 ++p;
3387 if (*p)
3388 ++p;
3389 }
3390 else
3391 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003392 if (executable_exists((char *)buf, path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003393 return TRUE;
3394 }
3395 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397
3398/*
3399 * Check what "name" is:
3400 * NODE_NORMAL: file or directory (or doesn't exist)
3401 * NODE_WRITABLE: writable device, socket, fifo, etc.
3402 * NODE_OTHER: non-writable things
3403 */
3404 int
3405mch_nodetype(char_u *name)
3406{
3407 HANDLE hFile;
3408 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003409#ifdef FEAT_MBYTE
3410 WCHAR *wn = NULL;
3411#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412
Bram Moolenaar043545e2006-10-10 16:44:07 +00003413 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3414 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3415 * here. */
3416 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3417 return NODE_WRITABLE;
3418
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003419#ifdef FEAT_MBYTE
3420 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3421 {
3422 wn = enc_to_utf16(name, NULL);
3423 if (wn != NULL)
3424 {
3425 hFile = CreateFileW(wn, /* file name */
3426 GENERIC_WRITE, /* access mode */
3427 0, /* share mode */
3428 NULL, /* security descriptor */
3429 OPEN_EXISTING, /* creation disposition */
3430 0, /* file attributes */
3431 NULL); /* handle to template file */
3432 if (hFile == INVALID_HANDLE_VALUE
3433 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3434 {
3435 /* Retry with non-wide function (for Windows 98). */
3436 vim_free(wn);
3437 wn = NULL;
3438 }
3439 }
3440 }
3441 if (wn == NULL)
3442#endif
3443 hFile = CreateFile(name, /* file name */
3444 GENERIC_WRITE, /* access mode */
3445 0, /* share mode */
3446 NULL, /* security descriptor */
3447 OPEN_EXISTING, /* creation disposition */
3448 0, /* file attributes */
3449 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003451#ifdef FEAT_MBYTE
3452 vim_free(wn);
3453#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 if (hFile == INVALID_HANDLE_VALUE)
3455 return NODE_NORMAL;
3456
3457 type = GetFileType(hFile);
3458 CloseHandle(hFile);
3459 if (type == FILE_TYPE_CHAR)
3460 return NODE_WRITABLE;
3461 if (type == FILE_TYPE_DISK)
3462 return NODE_NORMAL;
3463 return NODE_OTHER;
3464}
3465
3466#ifdef HAVE_ACL
3467struct my_acl
3468{
3469 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3470 PSID pSidOwner;
3471 PSID pSidGroup;
3472 PACL pDacl;
3473 PACL pSacl;
3474};
3475#endif
3476
3477/*
3478 * Return a pointer to the ACL of file "fname" in allocated memory.
3479 * Return NULL if the ACL is not available for whatever reason.
3480 */
3481 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003482mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483{
3484#ifndef HAVE_ACL
3485 return (vim_acl_T)NULL;
3486#else
3487 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003488 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489
3490 /* This only works on Windows NT and 2000. */
3491 if (g_PlatformId == VER_PLATFORM_WIN32_NT && advapi_lib != NULL)
3492 {
3493 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3494 if (p != NULL)
3495 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003496# ifdef FEAT_MBYTE
3497 WCHAR *wn = NULL;
3498
3499 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3500 wn = enc_to_utf16(fname, NULL);
3501 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003503 /* Try to retrieve the entire security descriptor. */
3504 err = pGetNamedSecurityInfoW(
3505 wn, // Abstract filename
3506 SE_FILE_OBJECT, // File Object
3507 OWNER_SECURITY_INFORMATION |
3508 GROUP_SECURITY_INFORMATION |
3509 DACL_SECURITY_INFORMATION |
3510 SACL_SECURITY_INFORMATION,
3511 &p->pSidOwner, // Ownership information.
3512 &p->pSidGroup, // Group membership.
3513 &p->pDacl, // Discretionary information.
3514 &p->pSacl, // For auditing purposes.
3515 &p->pSecurityDescriptor);
3516 if (err == ERROR_ACCESS_DENIED ||
3517 err == ERROR_PRIVILEGE_NOT_HELD)
3518 {
3519 /* Retrieve only DACL. */
3520 (void)pGetNamedSecurityInfoW(
3521 wn,
3522 SE_FILE_OBJECT,
3523 DACL_SECURITY_INFORMATION,
3524 NULL,
3525 NULL,
3526 &p->pDacl,
3527 NULL,
3528 &p->pSecurityDescriptor);
3529 }
3530 if (p->pSecurityDescriptor == NULL)
3531 {
3532 mch_free_acl((vim_acl_T)p);
3533 p = NULL;
3534 }
3535 vim_free(wn);
3536 }
3537 else
3538# endif
3539 {
3540 /* Try to retrieve the entire security descriptor. */
3541 err = pGetNamedSecurityInfo(
3542 (LPSTR)fname, // Abstract filename
3543 SE_FILE_OBJECT, // File Object
3544 OWNER_SECURITY_INFORMATION |
3545 GROUP_SECURITY_INFORMATION |
3546 DACL_SECURITY_INFORMATION |
3547 SACL_SECURITY_INFORMATION,
3548 &p->pSidOwner, // Ownership information.
3549 &p->pSidGroup, // Group membership.
3550 &p->pDacl, // Discretionary information.
3551 &p->pSacl, // For auditing purposes.
3552 &p->pSecurityDescriptor);
3553 if (err == ERROR_ACCESS_DENIED ||
3554 err == ERROR_PRIVILEGE_NOT_HELD)
3555 {
3556 /* Retrieve only DACL. */
3557 (void)pGetNamedSecurityInfo(
3558 (LPSTR)fname,
3559 SE_FILE_OBJECT,
3560 DACL_SECURITY_INFORMATION,
3561 NULL,
3562 NULL,
3563 &p->pDacl,
3564 NULL,
3565 &p->pSecurityDescriptor);
3566 }
3567 if (p->pSecurityDescriptor == NULL)
3568 {
3569 mch_free_acl((vim_acl_T)p);
3570 p = NULL;
3571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 }
3573 }
3574 }
3575
3576 return (vim_acl_T)p;
3577#endif
3578}
3579
Bram Moolenaar27515922013-06-29 15:36:26 +02003580#ifdef HAVE_ACL
3581/*
3582 * Check if "acl" contains inherited ACE.
3583 */
3584 static BOOL
3585is_acl_inherited(PACL acl)
3586{
3587 DWORD i;
3588 ACL_SIZE_INFORMATION acl_info;
3589 PACCESS_ALLOWED_ACE ace;
3590
3591 acl_info.AceCount = 0;
3592 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3593 for (i = 0; i < acl_info.AceCount; i++)
3594 {
3595 GetAce(acl, i, (LPVOID *)&ace);
3596 if (ace->Header.AceFlags & INHERITED_ACE)
3597 return TRUE;
3598 }
3599 return FALSE;
3600}
3601#endif
3602
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603/*
3604 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3605 * Errors are ignored.
3606 * This must only be called with "acl" equal to what mch_get_acl() returned.
3607 */
3608 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003609mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610{
3611#ifdef HAVE_ACL
3612 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003613 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614
3615 if (p != NULL && advapi_lib != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003616 {
3617# ifdef FEAT_MBYTE
3618 WCHAR *wn = NULL;
3619# endif
3620
3621 /* Set security flags */
3622 if (p->pSidOwner)
3623 sec_info |= OWNER_SECURITY_INFORMATION;
3624 if (p->pSidGroup)
3625 sec_info |= GROUP_SECURITY_INFORMATION;
3626 if (p->pDacl)
3627 {
3628 sec_info |= DACL_SECURITY_INFORMATION;
3629 /* Do not inherit its parent's DACL.
3630 * If the DACL is inherited, Cygwin permissions would be changed.
3631 */
3632 if (!is_acl_inherited(p->pDacl))
3633 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3634 }
3635 if (p->pSacl)
3636 sec_info |= SACL_SECURITY_INFORMATION;
3637
3638# ifdef FEAT_MBYTE
3639 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3640 wn = enc_to_utf16(fname, NULL);
3641 if (wn != NULL)
3642 {
3643 (void)pSetNamedSecurityInfoW(
3644 wn, // Abstract filename
3645 SE_FILE_OBJECT, // File Object
3646 sec_info,
3647 p->pSidOwner, // Ownership information.
3648 p->pSidGroup, // Group membership.
3649 p->pDacl, // Discretionary information.
3650 p->pSacl // For auditing purposes.
3651 );
3652 vim_free(wn);
3653 }
3654 else
3655# endif
3656 {
3657 (void)pSetNamedSecurityInfo(
3658 (LPSTR)fname, // Abstract filename
3659 SE_FILE_OBJECT, // File Object
3660 sec_info,
3661 p->pSidOwner, // Ownership information.
3662 p->pSidGroup, // Group membership.
3663 p->pDacl, // Discretionary information.
3664 p->pSacl // For auditing purposes.
3665 );
3666 }
3667 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668#endif
3669}
3670
3671 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003672mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673{
3674#ifdef HAVE_ACL
3675 struct my_acl *p = (struct my_acl *)acl;
3676
3677 if (p != NULL)
3678 {
3679 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3680 vim_free(p);
3681 }
3682#endif
3683}
3684
3685#ifndef FEAT_GUI_W32
3686
3687/*
3688 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3689 */
3690 static BOOL WINAPI
3691handler_routine(
3692 DWORD dwCtrlType)
3693{
3694 switch (dwCtrlType)
3695 {
3696 case CTRL_C_EVENT:
3697 if (ctrl_c_interrupts)
3698 g_fCtrlCPressed = TRUE;
3699 return TRUE;
3700
3701 case CTRL_BREAK_EVENT:
3702 g_fCBrkPressed = TRUE;
3703 return TRUE;
3704
3705 /* fatal events: shut down gracefully */
3706 case CTRL_CLOSE_EVENT:
3707 case CTRL_LOGOFF_EVENT:
3708 case CTRL_SHUTDOWN_EVENT:
3709 windgoto((int)Rows - 1, 0);
3710 g_fForceExit = TRUE;
3711
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003712 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 (dwCtrlType == CTRL_CLOSE_EVENT
3714 ? _("close")
3715 : dwCtrlType == CTRL_LOGOFF_EVENT
3716 ? _("logoff")
3717 : _("shutdown")));
3718#ifdef DEBUG
3719 OutputDebugString(IObuff);
3720#endif
3721
3722 preserve_exit(); /* output IObuff, preserve files and exit */
3723
3724 return TRUE; /* not reached */
3725
3726 default:
3727 return FALSE;
3728 }
3729}
3730
3731
3732/*
3733 * set the tty in (raw) ? "raw" : "cooked" mode
3734 */
3735 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003736mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737{
3738 DWORD cmodein;
3739 DWORD cmodeout;
3740 BOOL bEnableHandler;
3741
3742 GetConsoleMode(g_hConIn, &cmodein);
3743 GetConsoleMode(g_hConOut, &cmodeout);
3744 if (tmode == TMODE_RAW)
3745 {
3746 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3747 ENABLE_ECHO_INPUT);
3748#ifdef FEAT_MOUSE
3749 if (g_fMouseActive)
3750 cmodein |= ENABLE_MOUSE_INPUT;
3751#endif
3752 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3753 bEnableHandler = TRUE;
3754 }
3755 else /* cooked */
3756 {
3757 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3758 ENABLE_ECHO_INPUT);
3759 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3760 bEnableHandler = FALSE;
3761 }
3762 SetConsoleMode(g_hConIn, cmodein);
3763 SetConsoleMode(g_hConOut, cmodeout);
3764 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3765
3766#ifdef MCH_WRITE_DUMP
3767 if (fdDump)
3768 {
3769 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3770 tmode == TMODE_RAW ? "raw" :
3771 tmode == TMODE_COOK ? "cooked" : "normal",
3772 cmodein, cmodeout);
3773 fflush(fdDump);
3774 }
3775#endif
3776}
3777
3778
3779/*
3780 * Get the size of the current window in `Rows' and `Columns'
3781 * Return OK when size could be determined, FAIL otherwise.
3782 */
3783 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003784mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785{
3786 CONSOLE_SCREEN_BUFFER_INFO csbi;
3787
3788 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3789 {
3790 /*
3791 * For some reason, we are trying to get the screen dimensions
3792 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3793 * variables are really intended to mean the size of Vim screen
3794 * while in termcap mode.
3795 */
3796 Rows = g_cbTermcap.Info.dwSize.Y;
3797 Columns = g_cbTermcap.Info.dwSize.X;
3798 }
3799 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3800 {
3801 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3802 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3803 }
3804 else
3805 {
3806 Rows = 25;
3807 Columns = 80;
3808 }
3809 return OK;
3810}
3811
3812/*
3813 * Set a console window to `xSize' * `ySize'
3814 */
3815 static void
3816ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003817 HANDLE hConsole,
3818 int xSize,
3819 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820{
3821 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3822 SMALL_RECT srWindowRect; /* hold the new console size */
3823 COORD coordScreen;
3824
3825#ifdef MCH_WRITE_DUMP
3826 if (fdDump)
3827 {
3828 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3829 fflush(fdDump);
3830 }
3831#endif
3832
3833 /* get the largest size we can size the console window to */
3834 coordScreen = GetLargestConsoleWindowSize(hConsole);
3835
3836 /* define the new console window size and scroll position */
3837 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3838 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3839 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3840
3841 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3842 {
3843 int sx, sy;
3844
3845 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3846 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3847 if (sy < ySize || sx < xSize)
3848 {
3849 /*
3850 * Increasing number of lines/columns, do buffer first.
3851 * Use the maximal size in x and y direction.
3852 */
3853 if (sy < ySize)
3854 coordScreen.Y = ySize;
3855 else
3856 coordScreen.Y = sy;
3857 if (sx < xSize)
3858 coordScreen.X = xSize;
3859 else
3860 coordScreen.X = sx;
3861 SetConsoleScreenBufferSize(hConsole, coordScreen);
3862 }
3863 }
3864
3865 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3866 {
3867#ifdef MCH_WRITE_DUMP
3868 if (fdDump)
3869 {
3870 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3871 GetLastError());
3872 fflush(fdDump);
3873 }
3874#endif
3875 }
3876
3877 /* define the new console buffer size */
3878 coordScreen.X = xSize;
3879 coordScreen.Y = ySize;
3880
3881 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3882 {
3883#ifdef MCH_WRITE_DUMP
3884 if (fdDump)
3885 {
3886 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3887 GetLastError());
3888 fflush(fdDump);
3889 }
3890#endif
3891 }
3892}
3893
3894
3895/*
3896 * Set the console window to `Rows' * `Columns'
3897 */
3898 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003899mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900{
3901 COORD coordScreen;
3902
3903 /* Don't change window size while still starting up */
3904 if (suppress_winsize != 0)
3905 {
3906 suppress_winsize = 2;
3907 return;
3908 }
3909
3910 if (term_console)
3911 {
3912 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3913
3914 /* Clamp Rows and Columns to reasonable values */
3915 if (Rows > coordScreen.Y)
3916 Rows = coordScreen.Y;
3917 if (Columns > coordScreen.X)
3918 Columns = coordScreen.X;
3919
3920 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3921 }
3922}
3923
3924/*
3925 * Rows and/or Columns has changed.
3926 */
3927 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003928mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929{
3930 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3931}
3932
3933
3934/*
3935 * Called when started up, to set the winsize that was delayed.
3936 */
3937 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003938mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939{
3940 if (suppress_winsize == 2)
3941 {
3942 suppress_winsize = 0;
3943 mch_set_shellsize();
3944 shell_resized();
3945 }
3946 suppress_winsize = 0;
3947}
3948#endif /* FEAT_GUI_W32 */
3949
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003950 static BOOL
3951vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003952 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003953 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003954 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003955 STARTUPINFO *si,
3956 PROCESS_INFORMATION *pi)
3957{
3958# ifdef FEAT_MBYTE
3959 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3960 {
3961 WCHAR *wcmd = enc_to_utf16(cmd, NULL);
3962
3963 if (wcmd != NULL)
3964 {
3965 BOOL ret;
3966 ret = CreateProcessW(
3967 NULL, /* Executable name */
3968 wcmd, /* Command to execute */
3969 NULL, /* Process security attributes */
3970 NULL, /* Thread security attributes */
3971 inherit_handles, /* Inherit handles */
3972 flags, /* Creation flags */
3973 NULL, /* Environment */
3974 NULL, /* Current directory */
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003975 (LPSTARTUPINFOW)si, /* Startup information */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003976 pi); /* Process information */
3977 vim_free(wcmd);
3978 return ret;
3979 }
3980 }
3981#endif
3982 return CreateProcess(
3983 NULL, /* Executable name */
3984 cmd, /* Command to execute */
3985 NULL, /* Process security attributes */
3986 NULL, /* Thread security attributes */
3987 inherit_handles, /* Inherit handles */
3988 flags, /* Creation flags */
3989 NULL, /* Environment */
3990 NULL, /* Current directory */
3991 si, /* Startup information */
3992 pi); /* Process information */
3993}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995
3996#if defined(FEAT_GUI_W32) || defined(PROTO)
3997
3998/*
3999 * Specialised version of system() for Win32 GUI mode.
4000 * This version proceeds as follows:
4001 * 1. Create a console window for use by the subprocess
4002 * 2. Run the subprocess (it gets the allocated console by default)
4003 * 3. Wait for the subprocess to terminate and get its exit code
4004 * 4. Prompt the user to press a key to close the console window
4005 */
4006 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004007mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008{
4009 STARTUPINFO si;
4010 PROCESS_INFORMATION pi;
4011 DWORD ret = 0;
4012 HWND hwnd = GetFocus();
4013
4014 si.cb = sizeof(si);
4015 si.lpReserved = NULL;
4016 si.lpDesktop = NULL;
4017 si.lpTitle = NULL;
4018 si.dwFlags = STARTF_USESHOWWINDOW;
4019 /*
4020 * It's nicer to run a filter command in a minimized window, but in
4021 * Windows 95 this makes the command MUCH slower. We can't do it under
4022 * Win32s either as it stops the synchronous spawn workaround working.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004023 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 */
4025 if ((options & SHELL_DOOUT) && !mch_windows95() && !gui_is_win32s())
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004026 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 else
4028 si.wShowWindow = SW_SHOWNORMAL;
4029 si.cbReserved2 = 0;
4030 si.lpReserved2 = NULL;
4031
4032 /* There is a strange error on Windows 95 when using "c:\\command.com".
4033 * When the "c:\\" is left out it works OK...? */
4034 if (mch_windows95()
4035 && (STRNICMP(cmd, "c:/command.com", 14) == 0
4036 || STRNICMP(cmd, "c:\\command.com", 14) == 0))
4037 cmd += 3;
4038
4039 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004040 vim_create_process(cmd, FALSE,
4041 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, &si, &pi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
4043 /* Wait for the command to terminate before continuing */
4044 if (g_PlatformId != VER_PLATFORM_WIN32s)
4045 {
4046#ifdef FEAT_GUI
4047 int delay = 1;
4048
4049 /* Keep updating the window while waiting for the shell to finish. */
4050 for (;;)
4051 {
4052 MSG msg;
4053
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004054 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 {
4056 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004057 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004058 delay = 1;
4059 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4062 break;
4063
4064 /* We start waiting for a very short time and then increase it, so
4065 * that we respond quickly when the process is quick, and don't
4066 * consume too much overhead when it's slow. */
4067 if (delay < 50)
4068 delay += 10;
4069 }
4070#else
4071 WaitForSingleObject(pi.hProcess, INFINITE);
4072#endif
4073
4074 /* Get the command exit code */
4075 GetExitCodeProcess(pi.hProcess, &ret);
4076 }
4077 else
4078 {
4079 /*
4080 * This ugly code is the only quick way of performing
4081 * a synchronous spawn under Win32s. Yuk.
4082 */
4083 num_windows = 0;
4084 EnumWindows(win32ssynch_cb, 0);
4085 old_num_windows = num_windows;
4086 do
4087 {
4088 Sleep(1000);
4089 num_windows = 0;
4090 EnumWindows(win32ssynch_cb, 0);
4091 } while (num_windows == old_num_windows);
4092 ret = 0;
4093 }
4094
4095 /* Close the handles to the subprocess, so that it goes away */
4096 CloseHandle(pi.hThread);
4097 CloseHandle(pi.hProcess);
4098
4099 /* Try to get input focus back. Doesn't always work though. */
4100 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4101
4102 return ret;
4103}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004104
4105/*
4106 * Thread launched by the gui to send the current buffer data to the
4107 * process. This way avoid to hang up vim totally if the children
4108 * process take a long time to process the lines.
4109 */
4110 static DWORD WINAPI
4111sub_process_writer(LPVOID param)
4112{
4113 HANDLE g_hChildStd_IN_Wr = param;
4114 linenr_T lnum = curbuf->b_op_start.lnum;
4115 DWORD len = 0;
4116 DWORD l;
4117 char_u *lp = ml_get(lnum);
4118 char_u *s;
4119 int written = 0;
4120
4121 for (;;)
4122 {
4123 l = (DWORD)STRLEN(lp + written);
4124 if (l == 0)
4125 len = 0;
4126 else if (lp[written] == NL)
4127 {
4128 /* NL -> NUL translation */
4129 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4130 }
4131 else
4132 {
4133 s = vim_strchr(lp + written, NL);
4134 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4135 s == NULL ? l : (DWORD)(s - (lp + written)),
4136 &len, NULL);
4137 }
4138 if (len == (int)l)
4139 {
4140 /* Finished a line, add a NL, unless this line should not have
4141 * one. */
4142 if (lnum != curbuf->b_op_end.lnum
4143 || !curbuf->b_p_bin
4144 || (lnum != curbuf->b_no_eol_lnum
4145 && (lnum != curbuf->b_ml.ml_line_count
4146 || curbuf->b_p_eol)))
4147 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004148 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004149 }
4150
4151 ++lnum;
4152 if (lnum > curbuf->b_op_end.lnum)
4153 break;
4154
4155 lp = ml_get(lnum);
4156 written = 0;
4157 }
4158 else if (len > 0)
4159 written += len;
4160 }
4161
4162 /* finished all the lines, close pipe */
4163 CloseHandle(g_hChildStd_IN_Wr);
4164 ExitThread(0);
4165}
4166
4167
4168# define BUFLEN 100 /* length for buffer, stolen from unix version */
4169
4170/*
4171 * This function read from the children's stdout and write the
4172 * data on screen or in the buffer accordingly.
4173 */
4174 static void
4175dump_pipe(int options,
4176 HANDLE g_hChildStd_OUT_Rd,
4177 garray_T *ga,
4178 char_u buffer[],
4179 DWORD *buffer_off)
4180{
4181 DWORD availableBytes = 0;
4182 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004183 int ret;
4184 DWORD len;
4185 DWORD toRead;
4186 int repeatCount;
4187
4188 /* we query the pipe to see if there is any data to read
4189 * to avoid to perform a blocking read */
4190 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4191 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004192 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004193 NULL, /* number of read bytes */
4194 &availableBytes, /* available bytes total */
4195 NULL); /* byteLeft */
4196
4197 repeatCount = 0;
4198 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004199 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004200 {
4201 repeatCount++;
4202 toRead =
4203# ifdef FEAT_MBYTE
4204 (DWORD)(BUFLEN - *buffer_off);
4205# else
4206 (DWORD)BUFLEN;
4207# endif
4208 toRead = availableBytes < toRead ? availableBytes : toRead;
4209 ReadFile(g_hChildStd_OUT_Rd, buffer
4210# ifdef FEAT_MBYTE
4211 + *buffer_off, toRead
4212# else
4213 , toRead
4214# endif
4215 , &len, NULL);
4216
4217 /* If we haven't read anything, there is a problem */
4218 if (len == 0)
4219 break;
4220
4221 availableBytes -= len;
4222
4223 if (options & SHELL_READ)
4224 {
4225 /* Do NUL -> NL translation, append NL separated
4226 * lines to the current buffer. */
4227 for (i = 0; i < len; ++i)
4228 {
4229 if (buffer[i] == NL)
4230 append_ga_line(ga);
4231 else if (buffer[i] == NUL)
4232 ga_append(ga, NL);
4233 else
4234 ga_append(ga, buffer[i]);
4235 }
4236 }
4237# ifdef FEAT_MBYTE
4238 else if (has_mbyte)
4239 {
4240 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004241 int c;
4242 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004243
4244 len += *buffer_off;
4245 buffer[len] = NUL;
4246
4247 /* Check if the last character in buffer[] is
4248 * incomplete, keep these bytes for the next
4249 * round. */
4250 for (p = buffer; p < buffer + len; p += l)
4251 {
4252 l = mb_cptr2len(p);
4253 if (l == 0)
4254 l = 1; /* NUL byte? */
4255 else if (MB_BYTE2LEN(*p) != l)
4256 break;
4257 }
4258 if (p == buffer) /* no complete character */
4259 {
4260 /* avoid getting stuck at an illegal byte */
4261 if (len >= 12)
4262 ++p;
4263 else
4264 {
4265 *buffer_off = len;
4266 return;
4267 }
4268 }
4269 c = *p;
4270 *p = NUL;
4271 msg_puts(buffer);
4272 if (p < buffer + len)
4273 {
4274 *p = c;
4275 *buffer_off = (DWORD)((buffer + len) - p);
4276 mch_memmove(buffer, p, *buffer_off);
4277 return;
4278 }
4279 *buffer_off = 0;
4280 }
4281# endif /* FEAT_MBYTE */
4282 else
4283 {
4284 buffer[len] = NUL;
4285 msg_puts(buffer);
4286 }
4287
4288 windgoto(msg_row, msg_col);
4289 cursor_on();
4290 out_flush();
4291 }
4292}
4293
4294/*
4295 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4296 * for communication and doesn't open any new window.
4297 */
4298 static int
4299mch_system_piped(char *cmd, int options)
4300{
4301 STARTUPINFO si;
4302 PROCESS_INFORMATION pi;
4303 DWORD ret = 0;
4304
4305 HANDLE g_hChildStd_IN_Rd = NULL;
4306 HANDLE g_hChildStd_IN_Wr = NULL;
4307 HANDLE g_hChildStd_OUT_Rd = NULL;
4308 HANDLE g_hChildStd_OUT_Wr = NULL;
4309
4310 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4311 DWORD len;
4312
4313 /* buffer used to receive keys */
4314 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4315 int ta_len = 0; /* valid bytes in ta_buf[] */
4316
4317 DWORD i;
4318 int c;
4319 int noread_cnt = 0;
4320 garray_T ga;
4321 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004322 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004323 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004324
4325 SECURITY_ATTRIBUTES saAttr;
4326
4327 /* Set the bInheritHandle flag so pipe handles are inherited. */
4328 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4329 saAttr.bInheritHandle = TRUE;
4330 saAttr.lpSecurityDescriptor = NULL;
4331
4332 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4333 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
4334 || ! pSetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
4335 /* Create a pipe for the child process's STDIN. */
4336 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4337 /* Ensure the write handle to the pipe for STDIN is not inherited. */
4338 || ! pSetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
4339 {
4340 CloseHandle(g_hChildStd_IN_Rd);
4341 CloseHandle(g_hChildStd_IN_Wr);
4342 CloseHandle(g_hChildStd_OUT_Rd);
4343 CloseHandle(g_hChildStd_OUT_Wr);
4344 MSG_PUTS(_("\nCannot create pipes\n"));
4345 }
4346
4347 si.cb = sizeof(si);
4348 si.lpReserved = NULL;
4349 si.lpDesktop = NULL;
4350 si.lpTitle = NULL;
4351 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4352
4353 /* set-up our file redirection */
4354 si.hStdError = g_hChildStd_OUT_Wr;
4355 si.hStdOutput = g_hChildStd_OUT_Wr;
4356 si.hStdInput = g_hChildStd_IN_Rd;
4357 si.wShowWindow = SW_HIDE;
4358 si.cbReserved2 = 0;
4359 si.lpReserved2 = NULL;
4360
4361 if (options & SHELL_READ)
4362 ga_init2(&ga, 1, BUFLEN);
4363
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004364 if (cmd != NULL)
4365 {
4366 p = (char *)vim_strsave((char_u *)cmd);
4367 if (p != NULL)
4368 unescape_shellxquote((char_u *)p, p_sxe);
4369 else
4370 p = cmd;
4371 }
4372
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004373 /* Now, run the command.
4374 * About "Inherit handles" being TRUE: this command can be litigious,
4375 * handle inheritance was deactivated for pending temp file, but, if we
4376 * deactivate it, the pipes don't work for some reason. */
4377 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, &si, &pi);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004378
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004379 if (p != cmd)
4380 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004381
4382 /* Close our unused side of the pipes */
4383 CloseHandle(g_hChildStd_IN_Rd);
4384 CloseHandle(g_hChildStd_OUT_Wr);
4385
4386 if (options & SHELL_WRITE)
4387 {
4388 HANDLE thread =
4389 CreateThread(NULL, /* security attributes */
4390 0, /* default stack size */
4391 sub_process_writer, /* function to be executed */
4392 g_hChildStd_IN_Wr, /* parameter */
4393 0, /* creation flag, start immediately */
4394 NULL); /* we don't care about thread id */
4395 CloseHandle(thread);
4396 g_hChildStd_IN_Wr = NULL;
4397 }
4398
4399 /* Keep updating the window while waiting for the shell to finish. */
4400 for (;;)
4401 {
4402 MSG msg;
4403
Bram Moolenaar175d0702013-12-11 18:36:33 +01004404 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004405 {
4406 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004407 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004408 }
4409
4410 /* write pipe information in the window */
4411 if ((options & (SHELL_READ|SHELL_WRITE))
4412# ifdef FEAT_GUI
4413 || gui.in_use
4414# endif
4415 )
4416 {
4417 len = 0;
4418 if (!(options & SHELL_EXPAND)
4419 && ((options &
4420 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4421 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4422# ifdef FEAT_GUI
4423 || gui.in_use
4424# endif
4425 )
4426 && (ta_len > 0 || noread_cnt > 4))
4427 {
4428 if (ta_len == 0)
4429 {
4430 /* Get extra characters when we don't have any. Reset the
4431 * counter and timer. */
4432 noread_cnt = 0;
4433# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4434 gettimeofday(&start_tv, NULL);
4435# endif
4436 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4437 }
4438 if (ta_len > 0 || len > 0)
4439 {
4440 /*
4441 * For pipes: Check for CTRL-C: send interrupt signal to
4442 * child. Check for CTRL-D: EOF, close pipe to child.
4443 */
4444 if (len == 1 && cmd != NULL)
4445 {
4446 if (ta_buf[ta_len] == Ctrl_C)
4447 {
4448 /* Learn what exit code is expected, for
4449 * now put 9 as SIGKILL */
4450 TerminateProcess(pi.hProcess, 9);
4451 }
4452 if (ta_buf[ta_len] == Ctrl_D)
4453 {
4454 CloseHandle(g_hChildStd_IN_Wr);
4455 g_hChildStd_IN_Wr = NULL;
4456 }
4457 }
4458
4459 /* replace K_BS by <BS> and K_DEL by <DEL> */
4460 for (i = ta_len; i < ta_len + len; ++i)
4461 {
4462 if (ta_buf[i] == CSI && len - i > 2)
4463 {
4464 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4465 if (c == K_DEL || c == K_KDEL || c == K_BS)
4466 {
4467 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4468 (size_t)(len - i - 2));
4469 if (c == K_DEL || c == K_KDEL)
4470 ta_buf[i] = DEL;
4471 else
4472 ta_buf[i] = Ctrl_H;
4473 len -= 2;
4474 }
4475 }
4476 else if (ta_buf[i] == '\r')
4477 ta_buf[i] = '\n';
4478# ifdef FEAT_MBYTE
4479 if (has_mbyte)
4480 i += (*mb_ptr2len_len)(ta_buf + i,
4481 ta_len + len - i) - 1;
4482# endif
4483 }
4484
4485 /*
4486 * For pipes: echo the typed characters. For a pty this
4487 * does not seem to work.
4488 */
4489 for (i = ta_len; i < ta_len + len; ++i)
4490 {
4491 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4492 msg_putchar(ta_buf[i]);
4493# ifdef FEAT_MBYTE
4494 else if (has_mbyte)
4495 {
4496 int l = (*mb_ptr2len)(ta_buf + i);
4497
4498 msg_outtrans_len(ta_buf + i, l);
4499 i += l - 1;
4500 }
4501# endif
4502 else
4503 msg_outtrans_len(ta_buf + i, 1);
4504 }
4505 windgoto(msg_row, msg_col);
4506 out_flush();
4507
4508 ta_len += len;
4509
4510 /*
4511 * Write the characters to the child, unless EOF has been
4512 * typed for pipes. Write one character at a time, to
4513 * avoid losing too much typeahead. When writing buffer
4514 * lines, drop the typed characters (only check for
4515 * CTRL-C).
4516 */
4517 if (options & SHELL_WRITE)
4518 ta_len = 0;
4519 else if (g_hChildStd_IN_Wr != NULL)
4520 {
4521 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4522 1, &len, NULL);
4523 // if we are typing in, we want to keep things reactive
4524 delay = 1;
4525 if (len > 0)
4526 {
4527 ta_len -= len;
4528 mch_memmove(ta_buf, ta_buf + len, ta_len);
4529 }
4530 }
4531 }
4532 }
4533 }
4534
4535 if (ta_len)
4536 ui_inchar_undo(ta_buf, ta_len);
4537
4538 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4539 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004540 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004541 break;
4542 }
4543
4544 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004545 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004546
4547 /* We start waiting for a very short time and then increase it, so
4548 * that we respond quickly when the process is quick, and don't
4549 * consume too much overhead when it's slow. */
4550 if (delay < 50)
4551 delay += 10;
4552 }
4553
4554 /* Close the pipe */
4555 CloseHandle(g_hChildStd_OUT_Rd);
4556 if (g_hChildStd_IN_Wr != NULL)
4557 CloseHandle(g_hChildStd_IN_Wr);
4558
4559 WaitForSingleObject(pi.hProcess, INFINITE);
4560
4561 /* Get the command exit code */
4562 GetExitCodeProcess(pi.hProcess, &ret);
4563
4564 if (options & SHELL_READ)
4565 {
4566 if (ga.ga_len > 0)
4567 {
4568 append_ga_line(&ga);
4569 /* remember that the NL was missing */
4570 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4571 }
4572 else
4573 curbuf->b_no_eol_lnum = 0;
4574 ga_clear(&ga);
4575 }
4576
4577 /* Close the handles to the subprocess, so that it goes away */
4578 CloseHandle(pi.hThread);
4579 CloseHandle(pi.hProcess);
4580
4581 return ret;
4582}
4583
4584 static int
4585mch_system(char *cmd, int options)
4586{
4587 /* if we can pipe and the shelltemp option is off */
4588 if (allowPiping && !p_stmp)
4589 return mch_system_piped(cmd, options);
4590 else
4591 return mch_system_classic(cmd, options);
4592}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593#else
4594
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004595# ifdef FEAT_MBYTE
4596 static int
4597mch_system(char *cmd, int options)
4598{
4599 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4600 {
4601 WCHAR *wcmd = enc_to_utf16(cmd, NULL);
4602 if (wcmd != NULL)
4603 {
4604 int ret = _wsystem(wcmd);
4605 vim_free(wcmd);
4606 return ret;
4607 }
4608 }
4609 return system(cmd);
4610}
4611# else
4612# define mch_system(c, o) system(c)
4613# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614
4615#endif
4616
4617/*
4618 * Either execute a command by calling the shell or start a new shell
4619 */
4620 int
4621mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004622 char_u *cmd,
4623 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624{
4625 int x = 0;
4626 int tmode = cur_tmode;
4627#ifdef FEAT_TITLE
4628 char szShellTitle[512];
4629
4630 /* Change the title to reflect that we are in a subshell. */
4631 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
4632 {
4633 if (cmd == NULL)
4634 strcat(szShellTitle, " :sh");
4635 else
4636 {
4637 strcat(szShellTitle, " - !");
4638 if ((strlen(szShellTitle) + strlen(cmd) < sizeof(szShellTitle)))
4639 strcat(szShellTitle, cmd);
4640 }
4641 mch_settitle(szShellTitle, NULL);
4642 }
4643#endif
4644
4645 out_flush();
4646
4647#ifdef MCH_WRITE_DUMP
4648 if (fdDump)
4649 {
4650 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4651 fflush(fdDump);
4652 }
4653#endif
4654
4655 /*
4656 * Catch all deadly signals while running the external command, because a
4657 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4658 */
4659 signal(SIGINT, SIG_IGN);
4660#if defined(__GNUC__) && !defined(__MINGW32__)
4661 signal(SIGKILL, SIG_IGN);
4662#else
4663 signal(SIGBREAK, SIG_IGN);
4664#endif
4665 signal(SIGILL, SIG_IGN);
4666 signal(SIGFPE, SIG_IGN);
4667 signal(SIGSEGV, SIG_IGN);
4668 signal(SIGTERM, SIG_IGN);
4669 signal(SIGABRT, SIG_IGN);
4670
4671 if (options & SHELL_COOKED)
4672 settmode(TMODE_COOK); /* set to normal mode */
4673
4674 if (cmd == NULL)
4675 {
4676 x = mch_system(p_sh, options);
4677 }
4678 else
4679 {
4680 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004681 char_u *newcmd = NULL;
4682 char_u *cmdbase = cmd;
4683 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004684
4685 /* Skip a leading ", ( and "(. */
4686 if (*cmdbase == '"' )
4687 ++cmdbase;
4688 if (*cmdbase == '(')
4689 ++cmdbase;
4690
4691 if ((STRNICMP(cmdbase, "start", 5) == 0) && vim_iswhite(cmdbase[5]))
4692 {
4693 STARTUPINFO si;
4694 PROCESS_INFORMATION pi;
4695 DWORD flags = CREATE_NEW_CONSOLE;
4696 char_u *p;
4697
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004698 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004699 si.cb = sizeof(si);
4700 si.lpReserved = NULL;
4701 si.lpDesktop = NULL;
4702 si.lpTitle = NULL;
4703 si.dwFlags = 0;
4704 si.cbReserved2 = 0;
4705 si.lpReserved2 = NULL;
4706
4707 cmdbase = skipwhite(cmdbase + 5);
4708 if ((STRNICMP(cmdbase, "/min", 4) == 0)
4709 && vim_iswhite(cmdbase[4]))
4710 {
4711 cmdbase = skipwhite(cmdbase + 4);
4712 si.dwFlags = STARTF_USESHOWWINDOW;
4713 si.wShowWindow = SW_SHOWMINNOACTIVE;
4714 }
4715 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
4716 && vim_iswhite(cmdbase[2]))
4717 {
4718 cmdbase = skipwhite(cmdbase + 2);
4719 flags = CREATE_NO_WINDOW;
4720 si.dwFlags = STARTF_USESTDHANDLES;
4721 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004722 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004723 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004724 NULL, // Security att.
4725 OPEN_EXISTING, // Open flags
4726 FILE_ATTRIBUTE_NORMAL, // File att.
4727 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004728 si.hStdOutput = si.hStdInput;
4729 si.hStdError = si.hStdInput;
4730 }
4731
4732 /* Remove a trailing ", ) and )" if they have a match
4733 * at the start of the command. */
4734 if (cmdbase > cmd)
4735 {
4736 p = cmdbase + STRLEN(cmdbase);
4737 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4738 *--p = NUL;
4739 if (p > cmdbase && p[-1] == ')'
4740 && (*cmd =='(' || cmd[1] == '('))
4741 *--p = NUL;
4742 }
4743
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004744 newcmd = cmdbase;
4745 unescape_shellxquote(cmdbase, p_sxe);
4746
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004747 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004748 * If creating new console, arguments are passed to the
4749 * 'cmd.exe' as-is. If it's not, arguments are not treated
4750 * correctly for current 'cmd.exe'. So unescape characters in
4751 * shellxescape except '|' for avoiding to be treated as
4752 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004753 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004754 if (flags != CREATE_NEW_CONSOLE)
4755 {
4756 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004757 char_u *cmd_shell = mch_getenv("COMSPEC");
4758
4759 if (cmd_shell == NULL || *cmd_shell == NUL)
4760 cmd_shell = default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004761
4762 subcmd = vim_strsave_escaped_ext(cmdbase, "|", '^', FALSE);
4763 if (subcmd != NULL)
4764 {
4765 /* make "cmd.exe /c arguments" */
4766 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004767 newcmd = lalloc(cmdlen, TRUE);
4768 if (newcmd != NULL)
4769 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004770 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004771 else
4772 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004773 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004774 }
4775 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004776
4777 /*
4778 * Now, start the command as a process, so that it doesn't
4779 * inherit our handles which causes unpleasant dangling swap
4780 * files if we exit before the spawned process
4781 */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004782 if (vim_create_process(newcmd, FALSE, flags, &si, &pi))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004783 x = 0;
4784 else
4785 {
4786 x = -1;
4787#ifdef FEAT_GUI_W32
4788 EMSG(_("E371: Command not found"));
4789#endif
4790 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004791
4792 if (newcmd != cmdbase)
4793 vim_free(newcmd);
4794
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004795 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004796 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004797 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004798 CloseHandle(si.hStdInput);
4799 }
4800 /* Close the handles to the subprocess, so that it goes away */
4801 CloseHandle(pi.hThread);
4802 CloseHandle(pi.hProcess);
4803 }
4804 else
4805 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004806 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807#ifdef FEAT_GUI_W32
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004808 (allowPiping && !p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004810 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4811
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004812 newcmd = lalloc(cmdlen, TRUE);
4813 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 {
4815#if defined(FEAT_GUI_W32)
4816 if (need_vimrun_warning)
4817 {
4818 MessageBox(NULL,
4819 _("VIMRUN.EXE not found in your $PATH.\n"
4820 "External commands will not pause after completion.\n"
4821 "See :help win32-vimrun for more information."),
4822 _("Vim Warning"),
4823 MB_ICONWARNING);
4824 need_vimrun_warning = FALSE;
4825 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004826 if (!s_dont_use_vimrun && (!allowPiping || p_stmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 /* Use vimrun to execute the command. It opens a console
4828 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004829 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 vimrun_path,
4831 (msg_silent != 0 || (options & SHELL_DOOUT))
4832 ? "-s " : "",
4833 p_sh, p_shcf, cmd);
4834 else
4835#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004836 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004837 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004839 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 }
4842 }
4843
4844 if (tmode == TMODE_RAW)
4845 settmode(TMODE_RAW); /* set to raw mode */
4846
4847 /* Print the return value, unless "vimrun" was used. */
4848 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4849#if defined(FEAT_GUI_W32)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004850 && ((options & SHELL_DOOUT) || s_dont_use_vimrun
4851 || (allowPiping && !p_stmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852#endif
4853 )
4854 {
4855 smsg(_("shell returned %d"), x);
4856 msg_putchar('\n');
4857 }
4858#ifdef FEAT_TITLE
4859 resettitle();
4860#endif
4861
4862 signal(SIGINT, SIG_DFL);
4863#if defined(__GNUC__) && !defined(__MINGW32__)
4864 signal(SIGKILL, SIG_DFL);
4865#else
4866 signal(SIGBREAK, SIG_DFL);
4867#endif
4868 signal(SIGILL, SIG_DFL);
4869 signal(SIGFPE, SIG_DFL);
4870 signal(SIGSEGV, SIG_DFL);
4871 signal(SIGTERM, SIG_DFL);
4872 signal(SIGABRT, SIG_DFL);
4873
4874 return x;
4875}
4876
4877
4878#ifndef FEAT_GUI_W32
4879
4880/*
4881 * Start termcap mode
4882 */
4883 static void
4884termcap_mode_start(void)
4885{
4886 DWORD cmodein;
4887
4888 if (g_fTermcapMode)
4889 return;
4890
4891 SaveConsoleBuffer(&g_cbNonTermcap);
4892
4893 if (g_cbTermcap.IsValid)
4894 {
4895 /*
4896 * We've been in termcap mode before. Restore certain screen
4897 * characteristics, including the buffer size and the window
4898 * size. Since we will be redrawing the screen, we don't need
4899 * to restore the actual contents of the buffer.
4900 */
4901 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
4902 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
4903 Rows = g_cbTermcap.Info.dwSize.Y;
4904 Columns = g_cbTermcap.Info.dwSize.X;
4905 }
4906 else
4907 {
4908 /*
4909 * This is our first time entering termcap mode. Clear the console
4910 * screen buffer, and resize the buffer to match the current window
4911 * size. We will use this as the size of our editing environment.
4912 */
4913 ClearConsoleBuffer(g_attrCurrent);
4914 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
4915 }
4916
4917#ifdef FEAT_TITLE
4918 resettitle();
4919#endif
4920
4921 GetConsoleMode(g_hConIn, &cmodein);
4922#ifdef FEAT_MOUSE
4923 if (g_fMouseActive)
4924 cmodein |= ENABLE_MOUSE_INPUT;
4925 else
4926 cmodein &= ~ENABLE_MOUSE_INPUT;
4927#endif
4928 cmodein |= ENABLE_WINDOW_INPUT;
4929 SetConsoleMode(g_hConIn, cmodein);
4930
4931 redraw_later_clear();
4932 g_fTermcapMode = TRUE;
4933}
4934
4935
4936/*
4937 * End termcap mode
4938 */
4939 static void
4940termcap_mode_end(void)
4941{
4942 DWORD cmodein;
4943 ConsoleBuffer *cb;
4944 COORD coord;
4945 DWORD dwDummy;
4946
4947 if (!g_fTermcapMode)
4948 return;
4949
4950 SaveConsoleBuffer(&g_cbTermcap);
4951
4952 GetConsoleMode(g_hConIn, &cmodein);
4953 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
4954 SetConsoleMode(g_hConIn, cmodein);
4955
4956#ifdef FEAT_RESTORE_ORIG_SCREEN
4957 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
4958#else
4959 cb = &g_cbNonTermcap;
4960#endif
4961 RestoreConsoleBuffer(cb, p_rs);
4962 SetConsoleCursorInfo(g_hConOut, &g_cci);
4963
4964 if (p_rs || exiting)
4965 {
4966 /*
4967 * Clear anything that happens to be on the current line.
4968 */
4969 coord.X = 0;
4970 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
4971 FillConsoleOutputCharacter(g_hConOut, ' ',
4972 cb->Info.dwSize.X, coord, &dwDummy);
4973 /*
4974 * The following is just for aesthetics. If we are exiting without
4975 * restoring the screen, then we want to have a prompt string
4976 * appear at the bottom line. However, the command interpreter
4977 * seems to always advance the cursor one line before displaying
4978 * the prompt string, which causes the screen to scroll. To
4979 * counter this, move the cursor up one line before exiting.
4980 */
4981 if (exiting && !p_rs)
4982 coord.Y--;
4983 /*
4984 * Position the cursor at the leftmost column of the desired row.
4985 */
4986 SetConsoleCursorPosition(g_hConOut, coord);
4987 }
4988
4989 g_fTermcapMode = FALSE;
4990}
4991#endif /* FEAT_GUI_W32 */
4992
4993
4994#ifdef FEAT_GUI_W32
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004995/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 void
4997mch_write(
4998 char_u *s,
4999 int len)
5000{
5001 /* never used */
5002}
5003
5004#else
5005
5006/*
5007 * clear `n' chars, starting from `coord'
5008 */
5009 static void
5010clear_chars(
5011 COORD coord,
5012 DWORD n)
5013{
5014 DWORD dwDummy;
5015
5016 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5017 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
5018}
5019
5020
5021/*
5022 * Clear the screen
5023 */
5024 static void
5025clear_screen(void)
5026{
5027 g_coord.X = g_coord.Y = 0;
5028 clear_chars(g_coord, Rows * Columns);
5029}
5030
5031
5032/*
5033 * Clear to end of display
5034 */
5035 static void
5036clear_to_end_of_display(void)
5037{
5038 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5039 * Columns + (Columns - g_coord.X));
5040}
5041
5042
5043/*
5044 * Clear to end of line
5045 */
5046 static void
5047clear_to_end_of_line(void)
5048{
5049 clear_chars(g_coord, Columns - g_coord.X);
5050}
5051
5052
5053/*
5054 * Scroll the scroll region up by `cLines' lines
5055 */
5056 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005057scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058{
5059 COORD oldcoord = g_coord;
5060
5061 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5062 delete_lines(cLines);
5063
5064 g_coord = oldcoord;
5065}
5066
5067
5068/*
5069 * Set the scroll region
5070 */
5071 static void
5072set_scroll_region(
5073 unsigned left,
5074 unsigned top,
5075 unsigned right,
5076 unsigned bottom)
5077{
5078 if (left >= right
5079 || top >= bottom
5080 || right > (unsigned) Columns - 1
5081 || bottom > (unsigned) Rows - 1)
5082 return;
5083
5084 g_srScrollRegion.Left = left;
5085 g_srScrollRegion.Top = top;
5086 g_srScrollRegion.Right = right;
5087 g_srScrollRegion.Bottom = bottom;
5088}
5089
5090
5091/*
5092 * Insert `cLines' lines at the current cursor position
5093 */
5094 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005095insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096{
5097 SMALL_RECT source;
5098 COORD dest;
5099 CHAR_INFO fill;
5100
5101 dest.X = 0;
5102 dest.Y = g_coord.Y + cLines;
5103
5104 source.Left = 0;
5105 source.Top = g_coord.Y;
5106 source.Right = g_srScrollRegion.Right;
5107 source.Bottom = g_srScrollRegion.Bottom - cLines;
5108
5109 fill.Char.AsciiChar = ' ';
5110 fill.Attributes = g_attrCurrent;
5111
5112 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5113
5114 /* Here we have to deal with a win32 console flake: If the scroll
5115 * region looks like abc and we scroll c to a and fill with d we get
5116 * cbd... if we scroll block c one line at a time to a, we get cdd...
5117 * vim expects cdd consistently... So we have to deal with that
5118 * here... (this also occurs scrolling the same way in the other
5119 * direction). */
5120
5121 if (source.Bottom < dest.Y)
5122 {
5123 COORD coord;
5124
5125 coord.X = 0;
5126 coord.Y = source.Bottom;
5127 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5128 }
5129}
5130
5131
5132/*
5133 * Delete `cLines' lines at the current cursor position
5134 */
5135 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005136delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137{
5138 SMALL_RECT source;
5139 COORD dest;
5140 CHAR_INFO fill;
5141 int nb;
5142
5143 dest.X = 0;
5144 dest.Y = g_coord.Y;
5145
5146 source.Left = 0;
5147 source.Top = g_coord.Y + cLines;
5148 source.Right = g_srScrollRegion.Right;
5149 source.Bottom = g_srScrollRegion.Bottom;
5150
5151 fill.Char.AsciiChar = ' ';
5152 fill.Attributes = g_attrCurrent;
5153
5154 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5155
5156 /* Here we have to deal with a win32 console flake: If the scroll
5157 * region looks like abc and we scroll c to a and fill with d we get
5158 * cbd... if we scroll block c one line at a time to a, we get cdd...
5159 * vim expects cdd consistently... So we have to deal with that
5160 * here... (this also occurs scrolling the same way in the other
5161 * direction). */
5162
5163 nb = dest.Y + (source.Bottom - source.Top) + 1;
5164
5165 if (nb < source.Top)
5166 {
5167 COORD coord;
5168
5169 coord.X = 0;
5170 coord.Y = nb;
5171 clear_chars(coord, Columns * (source.Top - nb));
5172 }
5173}
5174
5175
5176/*
5177 * Set the cursor position
5178 */
5179 static void
5180gotoxy(
5181 unsigned x,
5182 unsigned y)
5183{
5184 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5185 return;
5186
5187 /* external cursor coords are 1-based; internal are 0-based */
5188 g_coord.X = x - 1;
5189 g_coord.Y = y - 1;
5190 SetConsoleCursorPosition(g_hConOut, g_coord);
5191}
5192
5193
5194/*
5195 * Set the current text attribute = (foreground | background)
5196 * See ../doc/os_win32.txt for the numbers.
5197 */
5198 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005199textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200{
5201 g_attrCurrent = wAttr;
5202
5203 SetConsoleTextAttribute(g_hConOut, wAttr);
5204}
5205
5206
5207 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005208textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209{
5210 g_attrCurrent = (g_attrCurrent & 0xf0) + wAttr;
5211
5212 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5213}
5214
5215
5216 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005217textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218{
5219 g_attrCurrent = (g_attrCurrent & 0x0f) + (wAttr << 4);
5220
5221 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5222}
5223
5224
5225/*
5226 * restore the default text attribute (whatever we started with)
5227 */
5228 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005229normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230{
5231 textattr(g_attrDefault);
5232}
5233
5234
5235static WORD g_attrPreStandout = 0;
5236
5237/*
5238 * Make the text standout, by brightening it
5239 */
5240 static void
5241standout(void)
5242{
5243 g_attrPreStandout = g_attrCurrent;
5244 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5245}
5246
5247
5248/*
5249 * Turn off standout mode
5250 */
5251 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005252standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253{
5254 if (g_attrPreStandout)
5255 {
5256 textattr(g_attrPreStandout);
5257 g_attrPreStandout = 0;
5258 }
5259}
5260
5261
5262/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005263 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 */
5265 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005266mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267{
5268 char_u *p;
5269 int n;
5270
5271 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5272 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5273 if (T_ME[0] == ESC && T_ME[1] == '|')
5274 {
5275 p = T_ME + 2;
5276 n = getdigits(&p);
5277 if (*p == 'm' && n > 0)
5278 {
5279 cterm_normal_fg_color = (n & 0xf) + 1;
5280 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5281 }
5282 }
5283}
5284
5285
5286/*
5287 * visual bell: flash the screen
5288 */
5289 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005290visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291{
5292 COORD coordOrigin = {0, 0};
5293 WORD attrFlash = ~g_attrCurrent & 0xff;
5294
5295 DWORD dwDummy;
5296 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5297
5298 if (oldattrs == NULL)
5299 return;
5300 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5301 coordOrigin, &dwDummy);
5302 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5303 coordOrigin, &dwDummy);
5304
5305 Sleep(15); /* wait for 15 msec */
5306 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5307 coordOrigin, &dwDummy);
5308 vim_free(oldattrs);
5309}
5310
5311
5312/*
5313 * Make the cursor visible or invisible
5314 */
5315 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005316cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317{
5318 s_cursor_visible = fVisible;
5319#ifdef MCH_CURSOR_SHAPE
5320 mch_update_cursor();
5321#endif
5322}
5323
5324
5325/*
5326 * write `cchToWrite' characters in `pchBuf' to the screen
5327 * Returns the number of characters actually written (at least one).
5328 */
5329 static BOOL
5330write_chars(
5331 LPCSTR pchBuf,
5332 DWORD cchToWrite)
5333{
5334 COORD coord = g_coord;
5335 DWORD written;
5336
5337 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cchToWrite,
5338 coord, &written);
5339 /* When writing fails or didn't write a single character, pretend one
5340 * character was written, otherwise we get stuck. */
5341 if (WriteConsoleOutputCharacter(g_hConOut, pchBuf, cchToWrite,
5342 coord, &written) == 0
5343 || written == 0)
5344 written = 1;
5345
5346 g_coord.X += (SHORT) written;
5347
5348 while (g_coord.X > g_srScrollRegion.Right)
5349 {
5350 g_coord.X -= (SHORT) Columns;
5351 if (g_coord.Y < g_srScrollRegion.Bottom)
5352 g_coord.Y++;
5353 }
5354
5355 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5356
5357 return written;
5358}
5359
5360
5361/*
5362 * mch_write(): write the output buffer to the screen, translating ESC
5363 * sequences into calls to console output routines.
5364 */
5365 void
5366mch_write(
5367 char_u *s,
5368 int len)
5369{
5370 s[len] = NUL;
5371
5372 if (!term_console)
5373 {
5374 write(1, s, (unsigned)len);
5375 return;
5376 }
5377
5378 /* translate ESC | sequences into faked bios calls */
5379 while (len--)
5380 {
5381 /* optimization: use one single write_chars for runs of text,
5382 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005383 DWORD prefix = (DWORD)strcspn(s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384
5385 if (p_wd)
5386 {
5387 WaitForChar(p_wd);
5388 if (prefix != 0)
5389 prefix = 1;
5390 }
5391
5392 if (prefix != 0)
5393 {
5394 DWORD nWritten;
5395
5396 nWritten = write_chars(s, prefix);
5397#ifdef MCH_WRITE_DUMP
5398 if (fdDump)
5399 {
5400 fputc('>', fdDump);
5401 fwrite(s, sizeof(char_u), nWritten, fdDump);
5402 fputs("<\n", fdDump);
5403 }
5404#endif
5405 len -= (nWritten - 1);
5406 s += nWritten;
5407 }
5408 else if (s[0] == '\n')
5409 {
5410 /* \n, newline: go to the beginning of the next line or scroll */
5411 if (g_coord.Y == g_srScrollRegion.Bottom)
5412 {
5413 scroll(1);
5414 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
5415 }
5416 else
5417 {
5418 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
5419 }
5420#ifdef MCH_WRITE_DUMP
5421 if (fdDump)
5422 fputs("\\n\n", fdDump);
5423#endif
5424 s++;
5425 }
5426 else if (s[0] == '\r')
5427 {
5428 /* \r, carriage return: go to beginning of line */
5429 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
5430#ifdef MCH_WRITE_DUMP
5431 if (fdDump)
5432 fputs("\\r\n", fdDump);
5433#endif
5434 s++;
5435 }
5436 else if (s[0] == '\b')
5437 {
5438 /* \b, backspace: move cursor one position left */
5439 if (g_coord.X > g_srScrollRegion.Left)
5440 g_coord.X--;
5441 else if (g_coord.Y > g_srScrollRegion.Top)
5442 {
5443 g_coord.X = g_srScrollRegion.Right;
5444 g_coord.Y--;
5445 }
5446 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5447#ifdef MCH_WRITE_DUMP
5448 if (fdDump)
5449 fputs("\\b\n", fdDump);
5450#endif
5451 s++;
5452 }
5453 else if (s[0] == '\a')
5454 {
5455 /* \a, bell */
5456 MessageBeep(0xFFFFFFFF);
5457#ifdef MCH_WRITE_DUMP
5458 if (fdDump)
5459 fputs("\\a\n", fdDump);
5460#endif
5461 s++;
5462 }
5463 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
5464 {
5465#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005466 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005468 char_u *p;
5469 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
5471 switch (s[2])
5472 {
5473 /* one or two numeric arguments, separated by ';' */
5474
5475 case '0': case '1': case '2': case '3': case '4':
5476 case '5': case '6': case '7': case '8': case '9':
5477 p = s + 2;
5478 arg1 = getdigits(&p); /* no check for length! */
5479 if (p > s + len)
5480 break;
5481
5482 if (*p == ';')
5483 {
5484 ++p;
5485 arg2 = getdigits(&p); /* no check for length! */
5486 if (p > s + len)
5487 break;
5488
5489 if (*p == 'H')
5490 gotoxy(arg2, arg1);
5491 else if (*p == 'r')
5492 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
5493 }
5494 else if (*p == 'A')
5495 {
5496 /* move cursor up arg1 lines in same column */
5497 gotoxy(g_coord.X + 1,
5498 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
5499 }
5500 else if (*p == 'C')
5501 {
5502 /* move cursor right arg1 columns in same line */
5503 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
5504 g_coord.Y + 1);
5505 }
5506 else if (*p == 'H')
5507 {
5508 gotoxy(1, arg1);
5509 }
5510 else if (*p == 'L')
5511 {
5512 insert_lines(arg1);
5513 }
5514 else if (*p == 'm')
5515 {
5516 if (arg1 == 0)
5517 normvideo();
5518 else
5519 textattr((WORD) arg1);
5520 }
5521 else if (*p == 'f')
5522 {
5523 textcolor((WORD) arg1);
5524 }
5525 else if (*p == 'b')
5526 {
5527 textbackground((WORD) arg1);
5528 }
5529 else if (*p == 'M')
5530 {
5531 delete_lines(arg1);
5532 }
5533
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005534 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 s = p + 1;
5536 break;
5537
5538
5539 /* Three-character escape sequences */
5540
5541 case 'A':
5542 /* move cursor up one line in same column */
5543 gotoxy(g_coord.X + 1,
5544 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
5545 goto got3;
5546
5547 case 'B':
5548 visual_bell();
5549 goto got3;
5550
5551 case 'C':
5552 /* move cursor right one column in same line */
5553 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
5554 g_coord.Y + 1);
5555 goto got3;
5556
5557 case 'E':
5558 termcap_mode_end();
5559 goto got3;
5560
5561 case 'F':
5562 standout();
5563 goto got3;
5564
5565 case 'f':
5566 standend();
5567 goto got3;
5568
5569 case 'H':
5570 gotoxy(1, 1);
5571 goto got3;
5572
5573 case 'j':
5574 clear_to_end_of_display();
5575 goto got3;
5576
5577 case 'J':
5578 clear_screen();
5579 goto got3;
5580
5581 case 'K':
5582 clear_to_end_of_line();
5583 goto got3;
5584
5585 case 'L':
5586 insert_lines(1);
5587 goto got3;
5588
5589 case 'M':
5590 delete_lines(1);
5591 goto got3;
5592
5593 case 'S':
5594 termcap_mode_start();
5595 goto got3;
5596
5597 case 'V':
5598 cursor_visible(TRUE);
5599 goto got3;
5600
5601 case 'v':
5602 cursor_visible(FALSE);
5603 goto got3;
5604
5605 got3:
5606 s += 3;
5607 len -= 2;
5608 }
5609
5610#ifdef MCH_WRITE_DUMP
5611 if (fdDump)
5612 {
5613 fputs("ESC | ", fdDump);
5614 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
5615 fputc('\n', fdDump);
5616 }
5617#endif
5618 }
5619 else
5620 {
5621 /* Write a single character */
5622 DWORD nWritten;
5623
5624 nWritten = write_chars(s, 1);
5625#ifdef MCH_WRITE_DUMP
5626 if (fdDump)
5627 {
5628 fputc('>', fdDump);
5629 fwrite(s, sizeof(char_u), nWritten, fdDump);
5630 fputs("<\n", fdDump);
5631 }
5632#endif
5633
5634 len -= (nWritten - 1);
5635 s += nWritten;
5636 }
5637 }
5638
5639#ifdef MCH_WRITE_DUMP
5640 if (fdDump)
5641 fflush(fdDump);
5642#endif
5643}
5644
5645#endif /* FEAT_GUI_W32 */
5646
5647
5648/*
5649 * Delay for half a second.
5650 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005651/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 void
5653mch_delay(
5654 long msec,
5655 int ignoreinput)
5656{
5657#ifdef FEAT_GUI_W32
5658 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005659#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005661# ifdef FEAT_MZSCHEME
5662 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
5663 {
5664 int towait = p_mzq;
5665
5666 /* if msec is large enough, wait by portions in p_mzq */
5667 while (msec > 0)
5668 {
5669 mzvim_check_threads();
5670 if (msec < towait)
5671 towait = msec;
5672 Sleep(towait);
5673 msec -= towait;
5674 }
5675 }
5676 else
5677# endif
5678 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 else
5680 WaitForChar(msec);
5681#endif
5682}
5683
5684
5685/*
5686 * this version of remove is not scared by a readonly (backup) file
5687 * Return 0 for success, -1 for failure.
5688 */
5689 int
5690mch_remove(char_u *name)
5691{
5692#ifdef FEAT_MBYTE
5693 WCHAR *wn = NULL;
5694 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02005695#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696
Bram Moolenaar12b559e2013-06-12 22:41:37 +02005697 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
5698
5699#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5701 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005702 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 if (wn != NULL)
5704 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 n = DeleteFileW(wn) ? 0 : -1;
5706 vim_free(wn);
5707 if (n == 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5708 return n;
5709 /* Retry with non-wide function (for Windows 98). */
5710 }
5711 }
5712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 return DeleteFile(name) ? 0 : -1;
5714}
5715
5716
5717/*
5718 * check for an "interrupt signal": CTRL-break or CTRL-C
5719 */
5720 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005721mch_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722{
5723#ifndef FEAT_GUI_W32 /* never used */
5724 if (g_fCtrlCPressed || g_fCBrkPressed)
5725 {
5726 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
5727 got_int = TRUE;
5728 }
5729#endif
5730}
5731
5732
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733#ifdef FEAT_MBYTE
5734/*
5735 * Same code as below, but with wide functions and no comments.
5736 * Return 0 for success, non-zero for failure.
5737 */
5738 int
5739mch_wrename(WCHAR *wold, WCHAR *wnew)
5740{
5741 WCHAR *p;
5742 int i;
5743 WCHAR szTempFile[_MAX_PATH + 1];
5744 WCHAR szNewPath[_MAX_PATH + 1];
5745 HANDLE hf;
5746
5747 if (!mch_windows95())
5748 {
5749 p = wold;
5750 for (i = 0; wold[i] != NUL; ++i)
5751 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
5752 && wold[i + 1] != 0)
5753 p = wold + i + 1;
5754 if ((int)(wold + i - p) < 8 || p[6] != '~')
5755 return (MoveFileW(wold, wnew) == 0);
5756 }
5757
5758 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
5759 return -1;
5760 *p = NUL;
5761
5762 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
5763 return -2;
5764
5765 if (!DeleteFileW(szTempFile))
5766 return -3;
5767
5768 if (!MoveFileW(wold, szTempFile))
5769 return -4;
5770
5771 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
5772 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
5773 return -5;
5774 if (!CloseHandle(hf))
5775 return -6;
5776
5777 if (!MoveFileW(szTempFile, wnew))
5778 {
5779 (void)MoveFileW(szTempFile, wold);
5780 return -7;
5781 }
5782
5783 DeleteFileW(szTempFile);
5784
5785 if (!DeleteFileW(wold))
5786 return -8;
5787
5788 return 0;
5789}
5790#endif
5791
5792
5793/*
5794 * mch_rename() works around a bug in rename (aka MoveFile) in
5795 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
5796 * file whose short file name is "FOO.BAR" (its long file name will
5797 * be correct: "foo.bar~"). Because a file can be accessed by
5798 * either its SFN or its LFN, "foo.bar" has effectively been
5799 * renamed to "foo.bar", which is not at all what was wanted. This
5800 * seems to happen only when renaming files with three-character
5801 * extensions by appending a suffix that does not include ".".
5802 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
5803 *
5804 * There is another problem, which isn't really a bug but isn't right either:
5805 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
5806 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
5807 * service pack 6. Doesn't seem to happen on Windows 98.
5808 *
5809 * Like rename(), returns 0 upon success, non-zero upon failure.
5810 * Should probably set errno appropriately when errors occur.
5811 */
5812 int
5813mch_rename(
5814 const char *pszOldFile,
5815 const char *pszNewFile)
5816{
5817 char szTempFile[_MAX_PATH+1];
5818 char szNewPath[_MAX_PATH+1];
5819 char *pszFilePart;
5820 HANDLE hf;
5821#ifdef FEAT_MBYTE
5822 WCHAR *wold = NULL;
5823 WCHAR *wnew = NULL;
5824 int retval = -1;
5825
5826 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5827 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005828 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
5829 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 if (wold != NULL && wnew != NULL)
5831 retval = mch_wrename(wold, wnew);
5832 vim_free(wold);
5833 vim_free(wnew);
5834 if (retval == 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5835 return retval;
5836 /* Retry with non-wide function (for Windows 98). */
5837 }
5838#endif
5839
5840 /*
5841 * No need to play tricks if not running Windows 95, unless the file name
5842 * contains a "~" as the seventh character.
5843 */
5844 if (!mch_windows95())
5845 {
5846 pszFilePart = (char *)gettail((char_u *)pszOldFile);
5847 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
5848 return rename(pszOldFile, pszNewFile);
5849 }
5850
5851 /* Get base path of new file name. Undocumented feature: If pszNewFile is
5852 * a directory, no error is returned and pszFilePart will be NULL. */
5853 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
5854 || pszFilePart == NULL)
5855 return -1;
5856 *pszFilePart = NUL;
5857
5858 /* Get (and create) a unique temporary file name in directory of new file */
5859 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
5860 return -2;
5861
5862 /* blow the temp file away */
5863 if (!DeleteFile(szTempFile))
5864 return -3;
5865
5866 /* rename old file to the temp file */
5867 if (!MoveFile(pszOldFile, szTempFile))
5868 return -4;
5869
5870 /* now create an empty file called pszOldFile; this prevents the operating
5871 * system using pszOldFile as an alias (SFN) if we're renaming within the
5872 * same directory. For example, we're editing a file called
5873 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
5874 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
5875 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005876 * cause all sorts of problems later in buf_write(). So, we create an
5877 * empty file called filena~1.txt and the system will have to find some
5878 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 */
5880 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
5881 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
5882 return -5;
5883 if (!CloseHandle(hf))
5884 return -6;
5885
5886 /* rename the temp file to the new file */
5887 if (!MoveFile(szTempFile, pszNewFile))
5888 {
5889 /* Renaming failed. Rename the file back to its old name, so that it
5890 * looks like nothing happened. */
5891 (void)MoveFile(szTempFile, pszOldFile);
5892
5893 return -7;
5894 }
5895
5896 /* Seems to be left around on Novell filesystems */
5897 DeleteFile(szTempFile);
5898
5899 /* finally, remove the empty old file */
5900 if (!DeleteFile(pszOldFile))
5901 return -8;
5902
5903 return 0; /* success */
5904}
5905
5906/*
5907 * Get the default shell for the current hardware platform
5908 */
5909 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005910default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911{
5912 char* psz = NULL;
5913
5914 PlatformId();
5915
5916 if (g_PlatformId == VER_PLATFORM_WIN32_NT) /* Windows NT */
5917 psz = "cmd.exe";
5918 else if (g_PlatformId == VER_PLATFORM_WIN32_WINDOWS) /* Windows 95 */
5919 psz = "command.com";
5920
5921 return psz;
5922}
5923
5924/*
5925 * mch_access() extends access() to do more detailed check on network drives.
5926 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
5927 */
5928 int
5929mch_access(char *n, int p)
5930{
5931 HANDLE hFile;
5932 DWORD am;
5933 int retval = -1; /* default: fail */
5934#ifdef FEAT_MBYTE
5935 WCHAR *wn = NULL;
5936
5937 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005938 wn = enc_to_utf16(n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939#endif
5940
5941 if (mch_isdir(n))
5942 {
5943 char TempName[_MAX_PATH + 16] = "";
5944#ifdef FEAT_MBYTE
5945 WCHAR TempNameW[_MAX_PATH + 16] = L"";
5946#endif
5947
5948 if (p & R_OK)
5949 {
5950 /* Read check is performed by seeing if we can do a find file on
5951 * the directory for any file. */
5952#ifdef FEAT_MBYTE
5953 if (wn != NULL)
5954 {
5955 int i;
5956 WIN32_FIND_DATAW d;
5957
5958 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
5959 TempNameW[i] = wn[i];
5960 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
5961 TempNameW[i++] = '\\';
5962 TempNameW[i++] = '*';
5963 TempNameW[i++] = 0;
5964
5965 hFile = FindFirstFileW(TempNameW, &d);
5966 if (hFile == INVALID_HANDLE_VALUE)
5967 {
5968 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5969 goto getout;
5970
5971 /* Retry with non-wide function (for Windows 98). */
5972 vim_free(wn);
5973 wn = NULL;
5974 }
5975 else
5976 (void)FindClose(hFile);
5977 }
5978 if (wn == NULL)
5979#endif
5980 {
5981 char *pch;
5982 WIN32_FIND_DATA d;
5983
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00005984 vim_strncpy(TempName, n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 pch = TempName + STRLEN(TempName) - 1;
5986 if (*pch != '\\' && *pch != '/')
5987 *++pch = '\\';
5988 *++pch = '*';
5989 *++pch = NUL;
5990
5991 hFile = FindFirstFile(TempName, &d);
5992 if (hFile == INVALID_HANDLE_VALUE)
5993 goto getout;
5994 (void)FindClose(hFile);
5995 }
5996 }
5997
5998 if (p & W_OK)
5999 {
6000 /* Trying to create a temporary file in the directory should catch
6001 * directories on read-only network shares. However, in
6002 * directories whose ACL allows writes but denies deletes will end
6003 * up keeping the temporary file :-(. */
6004#ifdef FEAT_MBYTE
6005 if (wn != NULL)
6006 {
6007 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
6008 {
6009 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
6010 goto getout;
6011
6012 /* Retry with non-wide function (for Windows 98). */
6013 vim_free(wn);
6014 wn = NULL;
6015 }
6016 else
6017 DeleteFileW(TempNameW);
6018 }
6019 if (wn == NULL)
6020#endif
6021 {
6022 if (!GetTempFileName(n, "VIM", 0, TempName))
6023 goto getout;
6024 mch_remove((char_u *)TempName);
6025 }
6026 }
6027 }
6028 else
6029 {
6030 /* Trying to open the file for the required access does ACL, read-only
6031 * network share, and file attribute checks. */
6032 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6033 | ((p & R_OK) ? GENERIC_READ : 0);
6034#ifdef FEAT_MBYTE
6035 if (wn != NULL)
6036 {
6037 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6038 if (hFile == INVALID_HANDLE_VALUE
6039 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
6040 {
6041 /* Retry with non-wide function (for Windows 98). */
6042 vim_free(wn);
6043 wn = NULL;
6044 }
6045 }
6046 if (wn == NULL)
6047#endif
6048 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6049 if (hFile == INVALID_HANDLE_VALUE)
6050 goto getout;
6051 CloseHandle(hFile);
6052 }
6053
6054 retval = 0; /* success */
6055getout:
6056#ifdef FEAT_MBYTE
6057 vim_free(wn);
6058#endif
6059 return retval;
6060}
6061
6062#if defined(FEAT_MBYTE) || defined(PROTO)
6063/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006064 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 */
6066 int
6067mch_open(char *name, int flags, int mode)
6068{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006069 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6070# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 WCHAR *wn;
6072 int f;
6073
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006074 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006076 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 if (wn != NULL)
6078 {
6079 f = _wopen(wn, flags, mode);
6080 vim_free(wn);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01006081 if (f >= 0 || g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 return f;
6083 /* Retry with non-wide function (for Windows 98). Can't use
6084 * GetLastError() here and it's unclear what errno gets set to if
6085 * the _wopen() fails for missing wide functions. */
6086 }
6087 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089
6090 return open(name, flags, mode);
6091}
6092
6093/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006094 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095 */
6096 FILE *
6097mch_fopen(char *name, char *mode)
6098{
6099 WCHAR *wn, *wm;
6100 FILE *f = NULL;
6101
6102 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage
6103# ifdef __BORLANDC__
6104 /* Wide functions of Borland C 5.5 do not work on Windows 98. */
6105 && g_PlatformId == VER_PLATFORM_WIN32_NT
6106# endif
6107 )
6108 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006109# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006110 /* Work around an annoying assertion in the Microsoft debug CRT
6111 * when mode's text/binary setting doesn't match _get_fmode(). */
6112 char newMode = mode[strlen(mode) - 1];
6113 int oldMode = 0;
6114
6115 _get_fmode(&oldMode);
6116 if (newMode == 't')
6117 _set_fmode(_O_TEXT);
6118 else if (newMode == 'b')
6119 _set_fmode(_O_BINARY);
6120# endif
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006121 wn = enc_to_utf16(name, NULL);
6122 wm = enc_to_utf16(mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 if (wn != NULL && wm != NULL)
6124 f = _wfopen(wn, wm);
6125 vim_free(wn);
6126 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006127
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006128# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006129 _set_fmode(oldMode);
6130# endif
6131
Bram Moolenaarcd981f22014-02-11 17:06:00 +01006132 if (f != NULL || g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 return f;
6134 /* Retry with non-wide function (for Windows 98). Can't use
6135 * GetLastError() here and it's unclear what errno gets set to if
6136 * the _wfopen() fails for missing wide functions. */
6137 }
6138
6139 return fopen(name, mode);
6140}
6141#endif
6142
6143#ifdef FEAT_MBYTE
6144/*
6145 * SUB STREAM (aka info stream) handling:
6146 *
6147 * NTFS can have sub streams for each file. Normal contents of file is
6148 * stored in the main stream, and extra contents (author information and
6149 * title and so on) can be stored in sub stream. After Windows 2000, user
6150 * can access and store those informations in sub streams via explorer's
6151 * property menuitem in right click menu. Those informations in sub streams
6152 * were lost when copying only the main stream. So we have to copy sub
6153 * streams.
6154 *
6155 * Incomplete explanation:
6156 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6157 * More useful info and an example:
6158 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6159 */
6160
6161/*
6162 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6163 * and write to stream "substream" of file "to".
6164 * Errors are ignored.
6165 */
6166 static void
6167copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6168{
6169 HANDLE hTo;
6170 WCHAR *to_name;
6171
6172 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6173 wcscpy(to_name, to);
6174 wcscat(to_name, substream);
6175
6176 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6177 FILE_ATTRIBUTE_NORMAL, NULL);
6178 if (hTo != INVALID_HANDLE_VALUE)
6179 {
6180 long done;
6181 DWORD todo;
6182 DWORD readcnt, written;
6183 char buf[4096];
6184
6185 /* Copy block of bytes at a time. Abort when something goes wrong. */
6186 for (done = 0; done < len; done += written)
6187 {
6188 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006189 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6190 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6192 FALSE, FALSE, context)
6193 || readcnt != todo
6194 || !WriteFile(hTo, buf, todo, &written, NULL)
6195 || written != todo)
6196 break;
6197 }
6198 CloseHandle(hTo);
6199 }
6200
6201 free(to_name);
6202}
6203
6204/*
6205 * Copy info streams from file "from" to file "to".
6206 */
6207 static void
6208copy_infostreams(char_u *from, char_u *to)
6209{
6210 WCHAR *fromw;
6211 WCHAR *tow;
6212 HANDLE sh;
6213 WIN32_STREAM_ID sid;
6214 int headersize;
6215 WCHAR streamname[_MAX_PATH];
6216 DWORD readcount;
6217 void *context = NULL;
6218 DWORD lo, hi;
6219 int len;
6220
6221 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006222 fromw = enc_to_utf16(from, NULL);
6223 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 if (fromw != NULL && tow != NULL)
6225 {
6226 /* Open the file for reading. */
6227 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6228 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6229 if (sh != INVALID_HANDLE_VALUE)
6230 {
6231 /* Use BackupRead() to find the info streams. Repeat until we
6232 * have done them all.*/
6233 for (;;)
6234 {
6235 /* Get the header to find the length of the stream name. If
6236 * the "readcount" is zero we have done all info streams. */
6237 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006238 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6240 &readcount, FALSE, FALSE, &context)
6241 || readcount == 0)
6242 break;
6243
6244 /* We only deal with streams that have a name. The normal
6245 * file data appears to be without a name, even though docs
6246 * suggest it is called "::$DATA". */
6247 if (sid.dwStreamNameSize > 0)
6248 {
6249 /* Read the stream name. */
6250 if (!BackupRead(sh, (LPBYTE)streamname,
6251 sid.dwStreamNameSize,
6252 &readcount, FALSE, FALSE, &context))
6253 break;
6254
6255 /* Copy an info stream with a name ":anything:$DATA".
6256 * Skip "::$DATA", it has no stream name (examples suggest
6257 * it might be used for the normal file contents).
6258 * Note that BackupRead() counts bytes, but the name is in
6259 * wide characters. */
6260 len = readcount / sizeof(WCHAR);
6261 streamname[len] = 0;
6262 if (len > 7 && wcsicmp(streamname + len - 6,
6263 L":$DATA") == 0)
6264 {
6265 streamname[len - 6] = 0;
6266 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006267 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 }
6269 }
6270
6271 /* Advance to the next stream. We might try seeking too far,
6272 * but BackupSeek() doesn't skip over stream borders, thus
6273 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006274 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 &lo, &hi, &context);
6276 }
6277
6278 /* Clear the context. */
6279 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6280
6281 CloseHandle(sh);
6282 }
6283 }
6284 vim_free(fromw);
6285 vim_free(tow);
6286}
6287#endif
6288
6289/*
6290 * Copy file attributes from file "from" to file "to".
6291 * For Windows NT and later we copy info streams.
6292 * Always returns zero, errors are ignored.
6293 */
6294 int
6295mch_copy_file_attribute(char_u *from, char_u *to)
6296{
6297#ifdef FEAT_MBYTE
6298 /* File streams only work on Windows NT and later. */
6299 PlatformId();
6300 if (g_PlatformId == VER_PLATFORM_WIN32_NT)
6301 copy_infostreams(from, to);
6302#endif
6303 return 0;
6304}
6305
6306#if defined(MYRESETSTKOFLW) || defined(PROTO)
6307/*
6308 * Recreate a destroyed stack guard page in win32.
6309 * Written by Benjamin Peterson.
6310 */
6311
6312/* These magic numbers are from the MS header files */
6313#define MIN_STACK_WIN9X 17
6314#define MIN_STACK_WINNT 2
6315
6316/*
6317 * This function does the same thing as _resetstkoflw(), which is only
6318 * available in DevStudio .net and later.
6319 * Returns 0 for failure, 1 for success.
6320 */
6321 int
6322myresetstkoflw(void)
6323{
6324 BYTE *pStackPtr;
6325 BYTE *pGuardPage;
6326 BYTE *pStackBase;
6327 BYTE *pLowestPossiblePage;
6328 MEMORY_BASIC_INFORMATION mbi;
6329 SYSTEM_INFO si;
6330 DWORD nPageSize;
6331 DWORD dummy;
6332
6333 /* This code will not work on win32s. */
6334 PlatformId();
6335 if (g_PlatformId == VER_PLATFORM_WIN32s)
6336 return 0;
6337
6338 /* We need to know the system page size. */
6339 GetSystemInfo(&si);
6340 nPageSize = si.dwPageSize;
6341
6342 /* ...and the current stack pointer */
6343 pStackPtr = (BYTE*)_alloca(1);
6344
6345 /* ...and the base of the stack. */
6346 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6347 return 0;
6348 pStackBase = (BYTE*)mbi.AllocationBase;
6349
6350 /* ...and the page thats min_stack_req pages away from stack base; this is
6351 * the lowest page we could use. */
6352 pLowestPossiblePage = pStackBase + ((g_PlatformId == VER_PLATFORM_WIN32_NT)
6353 ? MIN_STACK_WINNT : MIN_STACK_WIN9X) * nPageSize;
6354
6355 /* On Win95, we want the next page down from the end of the stack. */
6356 if (g_PlatformId == VER_PLATFORM_WIN32_WINDOWS)
6357 {
6358 /* Find the page that's only 1 page down from the page that the stack
6359 * ptr is in. */
6360 pGuardPage = (BYTE*)((DWORD)nPageSize * (((DWORD)pStackPtr
6361 / (DWORD)nPageSize) - 1));
6362 if (pGuardPage < pLowestPossiblePage)
6363 return 0;
6364
6365 /* Apply the noaccess attribute to the page -- there's no guard
6366 * attribute in win95-type OSes. */
6367 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_NOACCESS, &dummy))
6368 return 0;
6369 }
6370 else
6371 {
6372 /* On NT, however, we want the first committed page in the stack Start
6373 * at the stack base and move forward through memory until we find a
6374 * committed block. */
6375 BYTE *pBlock = pStackBase;
6376
Bram Moolenaara466c992005-07-09 21:03:22 +00006377 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 {
6379 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6380 return 0;
6381
6382 pBlock += mbi.RegionSize;
6383
6384 if (mbi.State & MEM_COMMIT)
6385 break;
6386 }
6387
6388 /* mbi now describes the first committed block in the stack. */
6389 if (mbi.Protect & PAGE_GUARD)
6390 return 1;
6391
6392 /* decide where the guard page should start */
6393 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6394 pGuardPage = pLowestPossiblePage;
6395 else
6396 pGuardPage = (BYTE*)mbi.BaseAddress;
6397
6398 /* allocate the guard page */
6399 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6400 return 0;
6401
6402 /* apply the guard attribute to the page */
6403 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6404 &dummy))
6405 return 0;
6406 }
6407
6408 return 1;
6409}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006410#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006412
6413#if defined(FEAT_MBYTE) || defined(PROTO)
6414/*
6415 * The command line arguments in UCS2
6416 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006417static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006418static LPWSTR *ArglistW = NULL;
6419static int global_argc = 0;
6420static char **global_argv;
6421
6422static int used_file_argc = 0; /* last argument in global_argv[] used
6423 for the argument list. */
6424static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6425 command line arguments added to
6426 the argument list */
6427static int used_file_count = 0; /* nr of entries in used_file_indexes */
6428static int used_file_literal = FALSE; /* take file names literally */
6429static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006430static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006431static int used_alist_count = 0;
6432
6433
6434/*
6435 * Get the command line arguments. Unicode version.
6436 * Returns argc. Zero when something fails.
6437 */
6438 int
6439get_cmd_argsW(char ***argvp)
6440{
6441 char **argv = NULL;
6442 int argc = 0;
6443 int i;
6444
6445 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
6446 if (ArglistW != NULL)
6447 {
6448 argv = malloc((nArgsW + 1) * sizeof(char *));
6449 if (argv != NULL)
6450 {
6451 argc = nArgsW;
6452 argv[argc] = NULL;
6453 for (i = 0; i < argc; ++i)
6454 {
6455 int len;
6456
6457 /* Convert each Unicode argument to the current codepage. */
6458 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006459 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006460 (LPSTR *)&argv[i], &len, 0, 0);
6461 if (argv[i] == NULL)
6462 {
6463 /* Out of memory, clear everything. */
6464 while (i > 0)
6465 free(argv[--i]);
6466 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01006467 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006468 argc = 0;
6469 }
6470 }
6471 }
6472 }
6473
6474 global_argc = argc;
6475 global_argv = argv;
6476 if (argc > 0)
6477 used_file_indexes = malloc(argc * sizeof(int));
6478
6479 if (argvp != NULL)
6480 *argvp = argv;
6481 return argc;
6482}
6483
6484 void
6485free_cmd_argsW(void)
6486{
6487 if (ArglistW != NULL)
6488 {
6489 GlobalFree(ArglistW);
6490 ArglistW = NULL;
6491 }
6492}
6493
6494/*
6495 * Remember "name" is an argument that was added to the argument list.
6496 * This avoids that we have to re-parse the argument list when fix_arg_enc()
6497 * is called.
6498 */
6499 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006500used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006501{
6502 int i;
6503
6504 if (used_file_indexes == NULL)
6505 return;
6506 for (i = used_file_argc + 1; i < global_argc; ++i)
6507 if (STRCMP(global_argv[i], name) == 0)
6508 {
6509 used_file_argc = i;
6510 used_file_indexes[used_file_count++] = i;
6511 break;
6512 }
6513 used_file_literal = literal;
6514 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006515 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006516}
6517
6518/*
6519 * Remember the length of the argument list as it was. If it changes then we
6520 * leave it alone when 'encoding' is set.
6521 */
6522 void
6523set_alist_count(void)
6524{
6525 used_alist_count = GARGCOUNT;
6526}
6527
6528/*
6529 * Fix the encoding of the command line arguments. Invoked when 'encoding'
6530 * has been changed while starting up. Use the UCS-2 command line arguments
6531 * and convert them to 'encoding'.
6532 */
6533 void
6534fix_arg_enc(void)
6535{
6536 int i;
6537 int idx;
6538 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006539 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006540
6541 /* Safety checks:
6542 * - if argument count differs between the wide and non-wide argument
6543 * list, something must be wrong.
6544 * - the file name arguments must have been located.
6545 * - the length of the argument list wasn't changed by the user.
6546 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006547 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006548 || ArglistW == NULL
6549 || used_file_indexes == NULL
6550 || used_file_count == 0
6551 || used_alist_count != GARGCOUNT)
6552 return;
6553
Bram Moolenaar86b68352004-12-27 21:59:20 +00006554 /* Remember the buffer numbers for the arguments. */
6555 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
6556 if (fnum_list == NULL)
6557 return; /* out of memory */
6558 for (i = 0; i < GARGCOUNT; ++i)
6559 fnum_list[i] = GARGLIST[i].ae_fnum;
6560
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006561 /* Clear the argument list. Make room for the new arguments. */
6562 alist_clear(&global_alist);
6563 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006564 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006565
6566 for (i = 0; i < used_file_count; ++i)
6567 {
6568 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006569 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006570 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006571 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006572#ifdef FEAT_DIFF
6573 /* When using diff mode may need to concatenate file name to
6574 * directory name. Just like it's done in main(). */
6575 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
6576 && !mch_isdir(alist_name(&GARGLIST[0])))
6577 {
6578 char_u *r;
6579
6580 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
6581 if (r != NULL)
6582 {
6583 vim_free(str);
6584 str = r;
6585 }
6586 }
6587#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006588 /* Re-use the old buffer by renaming it. When not using literal
6589 * names it's done by alist_expand() below. */
6590 if (used_file_literal)
6591 buf_set_name(fnum_list[i], str);
6592
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006593 alist_add(&global_alist, str, used_file_literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00006594 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006595 }
6596
6597 if (!used_file_literal)
6598 {
6599 /* Now expand wildcards in the arguments. */
6600 /* Temporarily add '(' and ')' to 'isfname'. These are valid
6601 * filename characters but are excluded from 'isfname' to make
6602 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
6603 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00006604 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006605 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
6606 }
6607
6608 /* If wildcard expansion failed, we are editing the first file of the
6609 * arglist and there is no file name: Edit the first argument now. */
6610 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
6611 {
6612 do_cmdline_cmd((char_u *)":rewind");
6613 if (GARGCOUNT == 1 && used_file_full_path)
6614 (void)vim_chdirfile(alist_name(&GARGLIST[0]));
6615 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006616
6617 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006618}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619#endif