blob: c23b791ae7cbd47a5d699ac0ae061aadb7d5e056 [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
622 tokenPrivileges.PrivilegeCount = 1;
623 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;
1788
1789 /* A key may have one or two bytes. */
1790 typeahead[typeaheadlen] = c;
1791 if (ch2 != NUL)
1792 {
1793 typeahead[typeaheadlen + 1] = ch2;
1794 ++n;
1795 }
1796#ifdef FEAT_MBYTE
1797 /* Only convert normal characters, not special keys. Need to
1798 * convert before applying ALT, otherwise mapping <M-x> breaks
1799 * when 'tenc' is set. */
1800 if (input_conv.vc_type != CONV_NONE
1801 && (ch2 == NUL || c != K_NUL))
Bram Moolenaarffeedec2013-02-13 16:49:58 +01001802 {
1803 typeaheadlen -= unconverted;
1804 n = convert_input_safe(typeahead + typeaheadlen,
1805 n + unconverted, TYPEAHEADLEN - typeaheadlen,
1806 rest == NULL ? &rest : NULL, &restlen);
1807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808#endif
1809
1810 /* Use the ALT key to set the 8th bit of the character
1811 * when it's one byte, the 8th bit isn't set yet and not
1812 * using a double-byte encoding (would become a lead
1813 * byte). */
1814 if ((modifiers & MOD_MASK_ALT)
1815 && n == 1
1816 && (typeahead[typeaheadlen] & 0x80) == 0
1817#ifdef FEAT_MBYTE
1818 && !enc_dbcs
1819#endif
1820 )
1821 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001822#ifdef FEAT_MBYTE
1823 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
1824 typeahead + typeaheadlen);
1825#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 typeahead[typeaheadlen] |= 0x80;
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 modifiers &= ~MOD_MASK_ALT;
1829 }
1830
1831 if (modifiers != 0)
1832 {
1833 /* Prepend modifiers to the character. */
1834 mch_memmove(typeahead + typeaheadlen + 3,
1835 typeahead + typeaheadlen, n);
1836 typeahead[typeaheadlen++] = K_SPECIAL;
1837 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
1838 typeahead[typeaheadlen++] = modifiers;
1839 }
1840
1841 typeaheadlen += n;
1842
1843#ifdef MCH_WRITE_DUMP
1844 if (fdDump)
1845 fputc(c, fdDump);
1846#endif
1847 }
1848 }
1849 }
1850
1851#ifdef MCH_WRITE_DUMP
1852 if (fdDump)
1853 {
1854 fputs("]\n", fdDump);
1855 fflush(fdDump);
1856 }
1857#endif
1858
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859theend:
1860 /* Move typeahead to "buf", as much as fits. */
1861 len = 0;
1862 while (len < maxlen && typeaheadlen > 0)
1863 {
1864 buf[len++] = typeahead[0];
1865 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
1866 }
1867 return len;
1868
1869#else /* FEAT_GUI_W32 */
1870 return 0;
1871#endif /* FEAT_GUI_W32 */
1872}
1873
Bram Moolenaar82881492012-11-20 16:53:39 +01001874#ifndef PROTO
1875# ifndef __MINGW32__
1876# include <shellapi.h> /* required for FindExecutable() */
1877# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878#endif
1879
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001880/*
1881 * Return TRUE if "name" is in $PATH.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001882 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001883 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 static int
1885executable_exists(char *name)
1886{
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001887 char *dum;
1888 char fname[_MAX_PATH];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001890#ifdef FEAT_MBYTE
1891 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00001893 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001894 WCHAR fnamew[_MAX_PATH];
1895 WCHAR *dumw;
1896 long n;
1897
1898 if (p != NULL)
1899 {
1900 n = (long)SearchPathW(NULL, p, NULL, _MAX_PATH, fnamew, &dumw);
1901 vim_free(p);
1902 if (n > 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1903 {
1904 if (n == 0)
1905 return FALSE;
1906 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
1907 return FALSE;
1908 return TRUE;
1909 }
1910 /* Retry with non-wide function (for Windows 98). */
1911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001913#endif
1914 if (SearchPath(NULL, name, NULL, _MAX_PATH, fname, &dum) == 0)
1915 return FALSE;
1916 if (mch_isdir(fname))
1917 return FALSE;
1918 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919}
1920
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001921#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001922 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001923/*
1924 * Bad parameter handler.
1925 *
1926 * Certain MS CRT functions will intentionally crash when passed invalid
1927 * parameters to highlight possible security holes. Setting this function as
1928 * the bad parameter handler will prevent the crash.
1929 *
1930 * In debug builds the parameters contain CRT information that might help track
1931 * down the source of a problem, but in non-debug builds the arguments are all
1932 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
1933 * worth allowing these to make debugging of issues easier.
1934 */
1935 static void
1936bad_param_handler(const wchar_t *expression,
1937 const wchar_t *function,
1938 const wchar_t *file,
1939 unsigned int line,
1940 uintptr_t pReserved)
1941{
1942}
1943
1944# define SET_INVALID_PARAM_HANDLER \
1945 ((void)_set_invalid_parameter_handler(bad_param_handler))
1946#else
1947# define SET_INVALID_PARAM_HANDLER
1948#endif
1949
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950#ifdef FEAT_GUI_W32
1951
1952/*
1953 * GUI version of mch_init().
1954 */
1955 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001956mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957{
1958#ifndef __MINGW32__
1959 extern int _fmode;
1960#endif
1961
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001962 /* Silently handle invalid parameters to CRT functions */
1963 SET_INVALID_PARAM_HANDLER;
1964
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 /* Let critical errors result in a failure, not in a dialog box. Required
1966 * for the timestamp test to work on removed floppies. */
1967 SetErrorMode(SEM_FAILCRITICALERRORS);
1968
1969 _fmode = O_BINARY; /* we do our own CR-LF translation */
1970
1971 /* Specify window size. Is there a place to get the default from? */
1972 Rows = 25;
1973 Columns = 80;
1974
1975 /* Look for 'vimrun' */
1976 if (!gui_is_win32s())
1977 {
1978 char_u vimrun_location[_MAX_PATH + 4];
1979
1980 /* First try in same directory as gvim.exe */
1981 STRCPY(vimrun_location, exe_name);
1982 STRCPY(gettail(vimrun_location), "vimrun.exe");
1983 if (mch_getperm(vimrun_location) >= 0)
1984 {
1985 if (*skiptowhite(vimrun_location) != NUL)
1986 {
1987 /* Enclose path with white space in double quotes. */
1988 mch_memmove(vimrun_location + 1, vimrun_location,
1989 STRLEN(vimrun_location) + 1);
1990 *vimrun_location = '"';
1991 STRCPY(gettail(vimrun_location), "vimrun\" ");
1992 }
1993 else
1994 STRCPY(gettail(vimrun_location), "vimrun ");
1995
1996 vimrun_path = (char *)vim_strsave(vimrun_location);
1997 s_dont_use_vimrun = FALSE;
1998 }
1999 else if (executable_exists("vimrun.exe"))
2000 s_dont_use_vimrun = FALSE;
2001
2002 /* Don't give the warning for a missing vimrun.exe right now, but only
2003 * when vimrun was supposed to be used. Don't bother people that do
2004 * not need vimrun.exe. */
2005 if (s_dont_use_vimrun)
2006 need_vimrun_warning = TRUE;
2007 }
2008
2009 /*
2010 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2011 * Otherwise the default "findstr /n" is used.
2012 */
2013 if (!executable_exists("findstr.exe"))
2014 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2015
2016#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002017 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018#endif
2019}
2020
2021
2022#else /* FEAT_GUI_W32 */
2023
2024#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2025#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2026
2027/*
2028 * ClearConsoleBuffer()
2029 * Description:
2030 * Clears the entire contents of the console screen buffer, using the
2031 * specified attribute.
2032 * Returns:
2033 * TRUE on success
2034 */
2035 static BOOL
2036ClearConsoleBuffer(WORD wAttribute)
2037{
2038 CONSOLE_SCREEN_BUFFER_INFO csbi;
2039 COORD coord;
2040 DWORD NumCells, dummy;
2041
2042 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2043 return FALSE;
2044
2045 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2046 coord.X = 0;
2047 coord.Y = 0;
2048 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2049 coord, &dummy))
2050 {
2051 return FALSE;
2052 }
2053 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2054 coord, &dummy))
2055 {
2056 return FALSE;
2057 }
2058
2059 return TRUE;
2060}
2061
2062/*
2063 * FitConsoleWindow()
2064 * Description:
2065 * Checks if the console window will fit within given buffer dimensions.
2066 * Also, if requested, will shrink the window to fit.
2067 * Returns:
2068 * TRUE on success
2069 */
2070 static BOOL
2071FitConsoleWindow(
2072 COORD dwBufferSize,
2073 BOOL WantAdjust)
2074{
2075 CONSOLE_SCREEN_BUFFER_INFO csbi;
2076 COORD dwWindowSize;
2077 BOOL NeedAdjust = FALSE;
2078
2079 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2080 {
2081 /*
2082 * A buffer resize will fail if the current console window does
2083 * not lie completely within that buffer. To avoid this, we might
2084 * have to move and possibly shrink the window.
2085 */
2086 if (csbi.srWindow.Right >= dwBufferSize.X)
2087 {
2088 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2089 if (dwWindowSize.X > dwBufferSize.X)
2090 dwWindowSize.X = dwBufferSize.X;
2091 csbi.srWindow.Right = dwBufferSize.X - 1;
2092 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2093 NeedAdjust = TRUE;
2094 }
2095 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2096 {
2097 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2098 if (dwWindowSize.Y > dwBufferSize.Y)
2099 dwWindowSize.Y = dwBufferSize.Y;
2100 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2101 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2102 NeedAdjust = TRUE;
2103 }
2104 if (NeedAdjust && WantAdjust)
2105 {
2106 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2107 return FALSE;
2108 }
2109 return TRUE;
2110 }
2111
2112 return FALSE;
2113}
2114
2115typedef struct ConsoleBufferStruct
2116{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002117 BOOL IsValid;
2118 CONSOLE_SCREEN_BUFFER_INFO Info;
2119 PCHAR_INFO Buffer;
2120 COORD BufferSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121} ConsoleBuffer;
2122
2123/*
2124 * SaveConsoleBuffer()
2125 * Description:
2126 * Saves important information about the console buffer, including the
2127 * actual buffer contents. The saved information is suitable for later
2128 * restoration by RestoreConsoleBuffer().
2129 * Returns:
2130 * TRUE if all information was saved; FALSE otherwise
2131 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2132 */
2133 static BOOL
2134SaveConsoleBuffer(
2135 ConsoleBuffer *cb)
2136{
2137 DWORD NumCells;
2138 COORD BufferCoord;
2139 SMALL_RECT ReadRegion;
2140 WORD Y, Y_incr;
2141
2142 if (cb == NULL)
2143 return FALSE;
2144
2145 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
2146 {
2147 cb->IsValid = FALSE;
2148 return FALSE;
2149 }
2150 cb->IsValid = TRUE;
2151
2152 /*
2153 * Allocate a buffer large enough to hold the entire console screen
2154 * buffer. If this ConsoleBuffer structure has already been initialized
2155 * with a buffer of the correct size, then just use that one.
2156 */
2157 if (!cb->IsValid || cb->Buffer == NULL ||
2158 cb->BufferSize.X != cb->Info.dwSize.X ||
2159 cb->BufferSize.Y != cb->Info.dwSize.Y)
2160 {
2161 cb->BufferSize.X = cb->Info.dwSize.X;
2162 cb->BufferSize.Y = cb->Info.dwSize.Y;
2163 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01002164 vim_free(cb->Buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2166 if (cb->Buffer == NULL)
2167 return FALSE;
2168 }
2169
2170 /*
2171 * We will now copy the console screen buffer into our buffer.
2172 * ReadConsoleOutput() seems to be limited as far as how much you
2173 * can read at a time. Empirically, this number seems to be about
2174 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2175 * in chunks until it is all copied. The chunks will all have the
2176 * same horizontal characteristics, so initialize them now. The
2177 * height of each chunk will be (12000 / width).
2178 */
2179 BufferCoord.X = 0;
2180 ReadRegion.Left = 0;
2181 ReadRegion.Right = cb->Info.dwSize.X - 1;
2182 Y_incr = 12000 / cb->Info.dwSize.X;
2183 for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr)
2184 {
2185 /*
2186 * Read into position (0, Y) in our buffer.
2187 */
2188 BufferCoord.Y = Y;
2189 /*
2190 * Read the region whose top left corner is (0, Y) and whose bottom
2191 * right corner is (width - 1, Y + Y_incr - 1). This should define
2192 * a region of size width by Y_incr. Don't worry if this region is
2193 * too large for the remaining buffer; it will be cropped.
2194 */
2195 ReadRegion.Top = Y;
2196 ReadRegion.Bottom = Y + Y_incr - 1;
2197 if (!ReadConsoleOutput(g_hConOut, /* output handle */
2198 cb->Buffer, /* our buffer */
2199 cb->BufferSize, /* dimensions of our buffer */
2200 BufferCoord, /* offset in our buffer */
2201 &ReadRegion)) /* region to save */
2202 {
2203 vim_free(cb->Buffer);
2204 cb->Buffer = NULL;
2205 return FALSE;
2206 }
2207 }
2208
2209 return TRUE;
2210}
2211
2212/*
2213 * RestoreConsoleBuffer()
2214 * Description:
2215 * Restores important information about the console buffer, including the
2216 * actual buffer contents, if desired. The information to restore is in
2217 * the same format used by SaveConsoleBuffer().
2218 * Returns:
2219 * TRUE on success
2220 */
2221 static BOOL
2222RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002223 ConsoleBuffer *cb,
2224 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225{
2226 COORD BufferCoord;
2227 SMALL_RECT WriteRegion;
2228
2229 if (cb == NULL || !cb->IsValid)
2230 return FALSE;
2231
2232 /*
2233 * Before restoring the buffer contents, clear the current buffer, and
2234 * restore the cursor position and window information. Doing this now
2235 * prevents old buffer contents from "flashing" onto the screen.
2236 */
2237 if (RestoreScreen)
2238 ClearConsoleBuffer(cb->Info.wAttributes);
2239
2240 FitConsoleWindow(cb->Info.dwSize, TRUE);
2241 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2242 return FALSE;
2243 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2244 return FALSE;
2245
2246 if (!RestoreScreen)
2247 {
2248 /*
2249 * No need to restore the screen buffer contents, so we're done.
2250 */
2251 return TRUE;
2252 }
2253
2254 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2255 return FALSE;
2256 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2257 return FALSE;
2258
2259 /*
2260 * Restore the screen buffer contents.
2261 */
2262 if (cb->Buffer != NULL)
2263 {
2264 BufferCoord.X = 0;
2265 BufferCoord.Y = 0;
2266 WriteRegion.Left = 0;
2267 WriteRegion.Top = 0;
2268 WriteRegion.Right = cb->Info.dwSize.X - 1;
2269 WriteRegion.Bottom = cb->Info.dwSize.Y - 1;
2270 if (!WriteConsoleOutput(g_hConOut, /* output handle */
2271 cb->Buffer, /* our buffer */
2272 cb->BufferSize, /* dimensions of our buffer */
2273 BufferCoord, /* offset in our buffer */
2274 &WriteRegion)) /* region to restore */
2275 {
2276 return FALSE;
2277 }
2278 }
2279
2280 return TRUE;
2281}
2282
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002283#define FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284#ifdef FEAT_RESTORE_ORIG_SCREEN
2285static ConsoleBuffer g_cbOrig = { 0 };
2286#endif
2287static ConsoleBuffer g_cbNonTermcap = { 0 };
2288static ConsoleBuffer g_cbTermcap = { 0 };
2289
2290#ifdef FEAT_TITLE
2291#ifdef __BORLANDC__
2292typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2293#else
2294typedef WINBASEAPI HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
2295#endif
2296char g_szOrigTitle[256] = { 0 };
2297HWND g_hWnd = NULL; /* also used in os_mswin.c */
2298static HICON g_hOrigIconSmall = NULL;
2299static HICON g_hOrigIcon = NULL;
2300static HICON g_hVimIcon = NULL;
2301static BOOL g_fCanChangeIcon = FALSE;
2302
2303/* ICON* are not defined in VC++ 4.0 */
2304#ifndef ICON_SMALL
2305#define ICON_SMALL 0
2306#endif
2307#ifndef ICON_BIG
2308#define ICON_BIG 1
2309#endif
2310/*
2311 * GetConsoleIcon()
2312 * Description:
2313 * Attempts to retrieve the small icon and/or the big icon currently in
2314 * use by a given window.
2315 * Returns:
2316 * TRUE on success
2317 */
2318 static BOOL
2319GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002320 HWND hWnd,
2321 HICON *phIconSmall,
2322 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323{
2324 if (hWnd == NULL)
2325 return FALSE;
2326
2327 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002328 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2329 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002331 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2332 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 return TRUE;
2334}
2335
2336/*
2337 * SetConsoleIcon()
2338 * Description:
2339 * Attempts to change the small icon and/or the big icon currently in
2340 * use by a given window.
2341 * Returns:
2342 * TRUE on success
2343 */
2344 static BOOL
2345SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002346 HWND hWnd,
2347 HICON hIconSmall,
2348 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002350 HICON hPrevIconSmall;
2351 HICON hPrevIcon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352
2353 if (hWnd == NULL)
2354 return FALSE;
2355
2356 if (hIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002357 hPrevIconSmall = (HICON)SendMessage(hWnd, WM_SETICON,
2358 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 if (hIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002360 hPrevIcon = (HICON)SendMessage(hWnd, WM_SETICON,
2361 (WPARAM)ICON_BIG,(LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 return TRUE;
2363}
2364
2365/*
2366 * SaveConsoleTitleAndIcon()
2367 * Description:
2368 * Saves the current console window title in g_szOrigTitle, for later
2369 * restoration. Also, attempts to obtain a handle to the console window,
2370 * and use it to save the small and big icons currently in use by the
2371 * console window. This is not always possible on some versions of Windows;
2372 * nor is it possible when running Vim remotely using Telnet (since the
2373 * console window the user sees is owned by a remote process).
2374 */
2375 static void
2376SaveConsoleTitleAndIcon(void)
2377{
2378 GETCONSOLEWINDOWPROC GetConsoleWindowProc;
2379
2380 /* Save the original title. */
2381 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2382 return;
2383
2384 /*
2385 * Obtain a handle to the console window using GetConsoleWindow() from
2386 * KERNEL32.DLL; we need to handle in order to change the window icon.
2387 * This function only exists on NT-based Windows, starting with Windows
2388 * 2000. On older operating systems, we can't change the window icon
2389 * anyway.
2390 */
2391 if ((GetConsoleWindowProc = (GETCONSOLEWINDOWPROC)
2392 GetProcAddress(GetModuleHandle("KERNEL32.DLL"),
2393 "GetConsoleWindow")) != NULL)
2394 {
2395 g_hWnd = (*GetConsoleWindowProc)();
2396 }
2397 if (g_hWnd == NULL)
2398 return;
2399
2400 /* Save the original console window icon. */
2401 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2402 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2403 return;
2404
2405 /* Extract the first icon contained in the Vim executable. */
2406 g_hVimIcon = ExtractIcon(NULL, exe_name, 0);
2407 if (g_hVimIcon != NULL)
2408 g_fCanChangeIcon = TRUE;
2409}
2410#endif
2411
2412static int g_fWindInitCalled = FALSE;
2413static int g_fTermcapMode = FALSE;
2414static CONSOLE_CURSOR_INFO g_cci;
2415static DWORD g_cmodein = 0;
2416static DWORD g_cmodeout = 0;
2417
2418/*
2419 * non-GUI version of mch_init().
2420 */
2421 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002422mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423{
2424#ifndef FEAT_RESTORE_ORIG_SCREEN
2425 CONSOLE_SCREEN_BUFFER_INFO csbi;
2426#endif
2427#ifndef __MINGW32__
2428 extern int _fmode;
2429#endif
2430
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002431 /* Silently handle invalid parameters to CRT functions */
2432 SET_INVALID_PARAM_HANDLER;
2433
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 /* Let critical errors result in a failure, not in a dialog box. Required
2435 * for the timestamp test to work on removed floppies. */
2436 SetErrorMode(SEM_FAILCRITICALERRORS);
2437
2438 _fmode = O_BINARY; /* we do our own CR-LF translation */
2439 out_flush();
2440
2441 /* Obtain handles for the standard Console I/O devices */
2442 if (read_cmd_fd == 0)
2443 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2444 else
2445 create_conin();
2446 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2447
2448#ifdef FEAT_RESTORE_ORIG_SCREEN
2449 /* Save the initial console buffer for later restoration */
2450 SaveConsoleBuffer(&g_cbOrig);
2451 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2452#else
2453 /* Get current text attributes */
2454 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2455 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2456#endif
2457 if (cterm_normal_fg_color == 0)
2458 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2459 if (cterm_normal_bg_color == 0)
2460 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2461
2462 /* set termcap codes to current text attributes */
2463 update_tcap(g_attrCurrent);
2464
2465 GetConsoleCursorInfo(g_hConOut, &g_cci);
2466 GetConsoleMode(g_hConIn, &g_cmodein);
2467 GetConsoleMode(g_hConOut, &g_cmodeout);
2468
2469#ifdef FEAT_TITLE
2470 SaveConsoleTitleAndIcon();
2471 /*
2472 * Set both the small and big icons of the console window to Vim's icon.
2473 * Note that Vim presently only has one size of icon (32x32), but it
2474 * automatically gets scaled down to 16x16 when setting the small icon.
2475 */
2476 if (g_fCanChangeIcon)
2477 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2478#endif
2479
2480 ui_get_shellsize();
2481
2482#ifdef MCH_WRITE_DUMP
2483 fdDump = fopen("dump", "wt");
2484
2485 if (fdDump)
2486 {
2487 time_t t;
2488
2489 time(&t);
2490 fputs(ctime(&t), fdDump);
2491 fflush(fdDump);
2492 }
2493#endif
2494
2495 g_fWindInitCalled = TRUE;
2496
2497#ifdef FEAT_MOUSE
2498 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2499#endif
2500
2501#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002502 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503#endif
2504
2505 /* This will be NULL on anything but NT 4.0 */
2506 s_pfnGetConsoleKeyboardLayoutName =
2507 (PFNGCKLN) GetProcAddress(GetModuleHandle("kernel32.dll"),
2508 "GetConsoleKeyboardLayoutNameA");
2509}
2510
2511/*
2512 * non-GUI version of mch_exit().
2513 * Shut down and exit with status `r'
2514 * Careful: mch_exit() may be called before mch_init()!
2515 */
2516 void
2517mch_exit(int r)
2518{
2519 stoptermcap();
2520
2521 if (g_fWindInitCalled)
2522 settmode(TMODE_COOK);
2523
2524 ml_close_all(TRUE); /* remove all memfiles */
2525
2526 if (g_fWindInitCalled)
2527 {
2528#ifdef FEAT_TITLE
2529 mch_restore_title(3);
2530 /*
2531 * Restore both the small and big icons of the console window to
2532 * what they were at startup. Don't do this when the window is
2533 * closed, Vim would hang here.
2534 */
2535 if (g_fCanChangeIcon && !g_fForceExit)
2536 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2537#endif
2538
2539#ifdef MCH_WRITE_DUMP
2540 if (fdDump)
2541 {
2542 time_t t;
2543
2544 time(&t);
2545 fputs(ctime(&t), fdDump);
2546 fclose(fdDump);
2547 }
2548 fdDump = NULL;
2549#endif
2550 }
2551
2552 SetConsoleCursorInfo(g_hConOut, &g_cci);
2553 SetConsoleMode(g_hConIn, g_cmodein);
2554 SetConsoleMode(g_hConOut, g_cmodeout);
2555
2556#ifdef DYNAMIC_GETTEXT
2557 dyn_libintl_end();
2558#endif
2559
2560 exit(r);
2561}
2562#endif /* !FEAT_GUI_W32 */
2563
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564/*
2565 * Do we have an interactive window?
2566 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002567/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 int
2569mch_check_win(
2570 int argc,
2571 char **argv)
2572{
2573 get_exe_name();
2574
2575#ifdef FEAT_GUI_W32
2576 return OK; /* GUI always has a tty */
2577#else
2578 if (isatty(1))
2579 return OK;
2580 return FAIL;
2581#endif
2582}
2583
2584
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002585#ifdef FEAT_MBYTE
2586/*
2587 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2588 * if it already exists. When "len" is > 0, also expand short to long
2589 * filenames.
2590 * Return FAIL if wide functions are not available, OK otherwise.
2591 * NOTE: much of this is identical to fname_case(), keep in sync!
2592 */
2593 static int
2594fname_casew(
2595 WCHAR *name,
2596 int len)
2597{
2598 WCHAR szTrueName[_MAX_PATH + 2];
2599 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2600 WCHAR *ptrue, *ptruePrev;
2601 WCHAR *porig, *porigPrev;
2602 int flen;
2603 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002604 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002605 int c;
2606 int slen;
2607
2608 flen = (int)wcslen(name);
2609 if (flen > _MAX_PATH)
2610 return OK;
2611
2612 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2613
2614 /* Build the new name in szTrueName[] one component at a time. */
2615 porig = name;
2616 ptrue = szTrueName;
2617
2618 if (iswalpha(porig[0]) && porig[1] == L':')
2619 {
2620 /* copy leading drive letter */
2621 *ptrue++ = *porig++;
2622 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002623 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002624 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002625
2626 while (*porig != NUL)
2627 {
2628 /* copy \ characters */
2629 while (*porig == psepc)
2630 *ptrue++ = *porig++;
2631
2632 ptruePrev = ptrue;
2633 porigPrev = porig;
2634 while (*porig != NUL && *porig != psepc)
2635 {
2636 *ptrue++ = *porig++;
2637 }
2638 *ptrue = NUL;
2639
2640 /* To avoid a slow failure append "\*" when searching a directory,
2641 * server or network share. */
2642 wcscpy(szTrueNameTemp, szTrueName);
2643 slen = (int)wcslen(szTrueNameTemp);
2644 if (*porig == psepc && slen + 2 < _MAX_PATH)
2645 wcscpy(szTrueNameTemp + slen, L"\\*");
2646
2647 /* Skip "", "." and "..". */
2648 if (ptrue > ptruePrev
2649 && (ptruePrev[0] != L'.'
2650 || (ptruePrev[1] != NUL
2651 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2652 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2653 != INVALID_HANDLE_VALUE)
2654 {
2655 c = *porig;
2656 *porig = NUL;
2657
2658 /* Only use the match when it's the same name (ignoring case) or
2659 * expansion is allowed and there is a match with the short name
2660 * and there is enough room. */
2661 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2662 || (len > 0
2663 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2664 && (int)(ptruePrev - szTrueName)
2665 + (int)wcslen(fb.cFileName) < len)))
2666 {
2667 wcscpy(ptruePrev, fb.cFileName);
2668
2669 /* Look for exact match and prefer it if found. Must be a
2670 * long name, otherwise there would be only one match. */
2671 while (FindNextFileW(hFind, &fb))
2672 {
2673 if (*fb.cAlternateFileName != NUL
2674 && (wcscoll(porigPrev, fb.cFileName) == 0
2675 || (len > 0
2676 && (_wcsicoll(porigPrev,
2677 fb.cAlternateFileName) == 0
2678 && (int)(ptruePrev - szTrueName)
2679 + (int)wcslen(fb.cFileName) < len))))
2680 {
2681 wcscpy(ptruePrev, fb.cFileName);
2682 break;
2683 }
2684 }
2685 }
2686 FindClose(hFind);
2687 *porig = c;
2688 ptrue = ptruePrev + wcslen(ptruePrev);
2689 }
2690 else if (hFind == INVALID_HANDLE_VALUE
2691 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2692 return FAIL;
2693 }
2694
2695 wcscpy(name, szTrueName);
2696 return OK;
2697}
2698#endif
2699
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700/*
2701 * fname_case(): Set the case of the file name, if it already exists.
2702 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002703 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 */
2705 void
2706fname_case(
2707 char_u *name,
2708 int len)
2709{
2710 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002711 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 char *ptrue, *ptruePrev;
2713 char *porig, *porigPrev;
2714 int flen;
2715 WIN32_FIND_DATA fb;
2716 HANDLE hFind;
2717 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002718 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002720 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002721 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 return;
2723
2724 slash_adjust(name);
2725
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002726#ifdef FEAT_MBYTE
2727 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2728 {
2729 WCHAR *p = enc_to_utf16(name, NULL);
2730
2731 if (p != NULL)
2732 {
2733 char_u *q;
2734 WCHAR buf[_MAX_PATH + 2];
2735
2736 wcscpy(buf, p);
2737 vim_free(p);
2738
2739 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2740 {
2741 q = utf16_to_enc(buf, NULL);
2742 if (q != NULL)
2743 {
2744 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2745 vim_free(q);
2746 return;
2747 }
2748 }
2749 }
2750 /* Retry with non-wide function (for Windows 98). */
2751 }
2752#endif
2753
2754 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2755 * So we should check this after calling wide function. */
2756 if (flen > _MAX_PATH)
2757 return;
2758
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 /* Build the new name in szTrueName[] one component at a time. */
2760 porig = name;
2761 ptrue = szTrueName;
2762
2763 if (isalpha(porig[0]) && porig[1] == ':')
2764 {
2765 /* copy leading drive letter */
2766 *ptrue++ = *porig++;
2767 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002769 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770
2771 while (*porig != NUL)
2772 {
2773 /* copy \ characters */
2774 while (*porig == psepc)
2775 *ptrue++ = *porig++;
2776
2777 ptruePrev = ptrue;
2778 porigPrev = porig;
2779 while (*porig != NUL && *porig != psepc)
2780 {
2781#ifdef FEAT_MBYTE
2782 int l;
2783
2784 if (enc_dbcs)
2785 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002786 l = (*mb_ptr2len)(porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 while (--l >= 0)
2788 *ptrue++ = *porig++;
2789 }
2790 else
2791#endif
2792 *ptrue++ = *porig++;
2793 }
2794 *ptrue = NUL;
2795
Bram Moolenaar464c9252010-10-13 20:37:41 +02002796 /* To avoid a slow failure append "\*" when searching a directory,
2797 * server or network share. */
2798 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002799 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002800 if (*porig == psepc && slen + 2 < _MAX_PATH)
2801 STRCPY(szTrueNameTemp + slen, "\\*");
2802
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 /* Skip "", "." and "..". */
2804 if (ptrue > ptruePrev
2805 && (ptruePrev[0] != '.'
2806 || (ptruePrev[1] != NUL
2807 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002808 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 != INVALID_HANDLE_VALUE)
2810 {
2811 c = *porig;
2812 *porig = NUL;
2813
2814 /* Only use the match when it's the same name (ignoring case) or
2815 * expansion is allowed and there is a match with the short name
2816 * and there is enough room. */
2817 if (_stricoll(porigPrev, fb.cFileName) == 0
2818 || (len > 0
2819 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2820 && (int)(ptruePrev - szTrueName)
2821 + (int)strlen(fb.cFileName) < len)))
2822 {
2823 STRCPY(ptruePrev, fb.cFileName);
2824
2825 /* Look for exact match and prefer it if found. Must be a
2826 * long name, otherwise there would be only one match. */
2827 while (FindNextFile(hFind, &fb))
2828 {
2829 if (*fb.cAlternateFileName != NUL
2830 && (strcoll(porigPrev, fb.cFileName) == 0
2831 || (len > 0
2832 && (_stricoll(porigPrev,
2833 fb.cAlternateFileName) == 0
2834 && (int)(ptruePrev - szTrueName)
2835 + (int)strlen(fb.cFileName) < len))))
2836 {
2837 STRCPY(ptruePrev, fb.cFileName);
2838 break;
2839 }
2840 }
2841 }
2842 FindClose(hFind);
2843 *porig = c;
2844 ptrue = ptruePrev + strlen(ptruePrev);
2845 }
2846 }
2847
2848 STRCPY(name, szTrueName);
2849}
2850
2851
2852/*
2853 * Insert user name in s[len].
2854 */
2855 int
2856mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002857 char_u *s,
2858 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002860 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 DWORD cch = sizeof szUserName;
2862
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002863#ifdef FEAT_MBYTE
2864 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2865 {
2866 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2867 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2868
2869 if (GetUserNameW(wszUserName, &wcch))
2870 {
2871 char_u *p = utf16_to_enc(wszUserName, NULL);
2872
2873 if (p != NULL)
2874 {
2875 vim_strncpy(s, p, len - 1);
2876 vim_free(p);
2877 return OK;
2878 }
2879 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002880 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2881 return FAIL;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002882 /* Retry with non-wide function (for Windows 98). */
2883 }
2884#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 if (GetUserName(szUserName, &cch))
2886 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002887 vim_strncpy(s, szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 return OK;
2889 }
2890 s[0] = NUL;
2891 return FAIL;
2892}
2893
2894
2895/*
2896 * Insert host name in s[len].
2897 */
2898 void
2899mch_get_host_name(
2900 char_u *s,
2901 int len)
2902{
2903 DWORD cch = len;
2904
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002905#ifdef FEAT_MBYTE
2906 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2907 {
2908 WCHAR wszHostName[256 + 1];
2909 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2910
2911 if (GetComputerNameW(wszHostName, &wcch))
2912 {
2913 char_u *p = utf16_to_enc(wszHostName, NULL);
2914
2915 if (p != NULL)
2916 {
2917 vim_strncpy(s, p, len - 1);
2918 vim_free(p);
2919 return;
2920 }
2921 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002922 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2923 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002924 /* Retry with non-wide function (for Windows 98). */
2925 }
2926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 if (!GetComputerName(s, &cch))
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002928 vim_strncpy(s, "PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929}
2930
2931
2932/*
2933 * return process ID
2934 */
2935 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002936mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 return (long)GetCurrentProcessId();
2939}
2940
2941
2942/*
2943 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2944 * Return OK for success, FAIL for failure.
2945 */
2946 int
2947mch_dirname(
2948 char_u *buf,
2949 int len)
2950{
2951 /*
2952 * Originally this was:
2953 * return (getcwd(buf, len) != NULL ? OK : FAIL);
2954 * But the Win32s known bug list says that getcwd() doesn't work
2955 * so use the Win32 system call instead. <Negri>
2956 */
2957#ifdef FEAT_MBYTE
2958 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2959 {
2960 WCHAR wbuf[_MAX_PATH + 1];
2961
2962 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
2963 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002964 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965
2966 if (p != NULL)
2967 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002968 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 vim_free(p);
2970 return OK;
2971 }
2972 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002973 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2974 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 /* Retry with non-wide function (for Windows 98). */
2976 }
2977#endif
2978 return (GetCurrentDirectory(len, buf) != 0 ? OK : FAIL);
2979}
2980
2981/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01002982 * Get file permissions for "name".
2983 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 */
2985 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002986mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02002988 struct stat st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01002989 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990
Bram Moolenaar12b559e2013-06-12 22:41:37 +02002991 n = mch_stat(name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01002992 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993}
2994
2995
2996/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02002997 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02002998 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02002999 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 */
3001 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003002mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003004 long n = -1;
3005
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006#ifdef FEAT_MBYTE
3007 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3008 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003009 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
3011 if (p != NULL)
3012 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003013 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01003015 if (n == -1 && g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003016 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 /* Retry with non-wide function (for Windows 98). */
3018 }
3019 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003020 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021#endif
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003022 n = _chmod(name, perm);
3023 if (n == -1)
3024 return FAIL;
3025
3026 win32_set_archive(name);
3027
3028 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029}
3030
3031/*
3032 * Set hidden flag for "name".
3033 */
3034 void
3035mch_hide(char_u *name)
3036{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003037 int attrs = win32_getattrs(name);
3038 if (attrs == -1)
3039 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003041 attrs |= FILE_ATTRIBUTE_HIDDEN;
3042 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043}
3044
3045/*
3046 * return TRUE if "name" is a directory
3047 * return FALSE if "name" is not a directory or upon error
3048 */
3049 int
3050mch_isdir(char_u *name)
3051{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003052 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053
3054 if (f == -1)
3055 return FALSE; /* file does not exist at all */
3056
3057 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3058}
3059
3060/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003061 * Create directory "name".
3062 * Return 0 on success, -1 on error.
3063 */
3064 int
3065mch_mkdir(char_u *name)
3066{
3067#ifdef FEAT_MBYTE
3068 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3069 {
3070 WCHAR *p;
3071 int retval;
3072
3073 p = enc_to_utf16(name, NULL);
3074 if (p == NULL)
3075 return -1;
3076 retval = _wmkdir(p);
3077 vim_free(p);
3078 return retval;
3079 }
3080#endif
3081 return _mkdir(name);
3082}
3083
3084/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003085 * Return TRUE if file "fname" has more than one link.
3086 */
3087 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003088mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003089{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003090 BY_HANDLE_FILE_INFORMATION info;
3091
3092 return win32_fileinfo(fname, &info) == FILEINFO_OK
3093 && info.nNumberOfLinks > 1;
3094}
3095
3096/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003097 * Return TRUE if file "fname" is a symbolic link.
3098 */
3099 int
3100mch_is_symbolic_link(char_u *fname)
3101{
3102 HANDLE hFind;
3103 int res = FALSE;
3104 WIN32_FIND_DATAA findDataA;
3105 DWORD fileFlags = 0, reparseTag = 0;
3106#ifdef FEAT_MBYTE
3107 WCHAR *wn = NULL;
3108 WIN32_FIND_DATAW findDataW;
3109
3110 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3111 wn = enc_to_utf16(fname, NULL);
3112 if (wn != NULL)
3113 {
3114 hFind = FindFirstFileW(wn, &findDataW);
3115 vim_free(wn);
3116 if (hFind == INVALID_HANDLE_VALUE
3117 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3118 {
3119 /* Retry with non-wide function (for Windows 98). */
3120 hFind = FindFirstFile(fname, &findDataA);
3121 if (hFind != INVALID_HANDLE_VALUE)
3122 {
3123 fileFlags = findDataA.dwFileAttributes;
3124 reparseTag = findDataA.dwReserved0;
3125 }
3126 }
3127 else
3128 {
3129 fileFlags = findDataW.dwFileAttributes;
3130 reparseTag = findDataW.dwReserved0;
3131 }
3132 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003133 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003134#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003135 {
3136 hFind = FindFirstFile(fname, &findDataA);
3137 if (hFind != INVALID_HANDLE_VALUE)
3138 {
3139 fileFlags = findDataA.dwFileAttributes;
3140 reparseTag = findDataA.dwReserved0;
3141 }
3142 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003143
3144 if (hFind != INVALID_HANDLE_VALUE)
3145 FindClose(hFind);
3146
3147 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
3148 && reparseTag == IO_REPARSE_TAG_SYMLINK)
3149 res = TRUE;
3150
3151 return res;
3152}
3153
3154/*
3155 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3156 * link.
3157 */
3158 int
3159mch_is_linked(char_u *fname)
3160{
3161 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3162 return TRUE;
3163 return FALSE;
3164}
3165
3166/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003167 * Get the by-handle-file-information for "fname".
3168 * Returns FILEINFO_OK when OK.
3169 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3170 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3171 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3172 */
3173 int
3174win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3175{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003176 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003177 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003178#ifdef FEAT_MBYTE
3179 WCHAR *wn = NULL;
3180
3181 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003182 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003183 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003184 if (wn == NULL)
3185 res = FILEINFO_ENC_FAIL;
3186 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003187 if (wn != NULL)
3188 {
3189 hFile = CreateFileW(wn, /* file name */
3190 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003191 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003192 NULL, /* security descriptor */
3193 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003194 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003195 NULL); /* handle to template file */
3196 if (hFile == INVALID_HANDLE_VALUE
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003197 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003198 {
3199 /* Retry with non-wide function (for Windows 98). */
3200 vim_free(wn);
3201 wn = NULL;
3202 }
3203 }
3204 if (wn == NULL)
3205#endif
3206 hFile = CreateFile(fname, /* file name */
3207 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003208 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003209 NULL, /* security descriptor */
3210 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003211 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003212 NULL); /* handle to template file */
3213
3214 if (hFile != INVALID_HANDLE_VALUE)
3215 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003216 if (GetFileInformationByHandle(hFile, info) != 0)
3217 res = FILEINFO_OK;
3218 else
3219 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003220 CloseHandle(hFile);
3221 }
3222
3223#ifdef FEAT_MBYTE
3224 vim_free(wn);
3225#endif
3226 return res;
3227}
3228
3229/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003230 * get file attributes for `name'
3231 * -1 : error
3232 * else FILE_ATTRIBUTE_* defined in winnt.h
3233 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003234 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003235win32_getattrs(char_u *name)
3236{
3237 int attr;
3238#ifdef FEAT_MBYTE
3239 WCHAR *p = NULL;
3240
3241 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3242 p = enc_to_utf16(name, NULL);
3243
3244 if (p != NULL)
3245 {
3246 attr = GetFileAttributesW(p);
3247 if (attr < 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3248 {
3249 /* Retry with non-wide function (for Windows 98). */
3250 vim_free(p);
3251 p = NULL;
3252 }
3253 }
3254 if (p == NULL)
3255#endif
3256 attr = GetFileAttributes((char *)name);
3257#ifdef FEAT_MBYTE
3258 vim_free(p);
3259#endif
3260 return attr;
3261}
3262
3263/*
3264 * set file attributes for `name' to `attrs'
3265 *
3266 * return -1 for failure, 0 otherwise
3267 */
3268 static
3269 int
3270win32_setattrs(char_u *name, int attrs)
3271{
3272 int res;
3273#ifdef FEAT_MBYTE
3274 WCHAR *p = NULL;
3275
3276 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3277 p = enc_to_utf16(name, NULL);
3278
3279 if (p != NULL)
3280 {
3281 res = SetFileAttributesW(p, attrs);
3282 if (res == FALSE
3283 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3284 {
3285 /* Retry with non-wide function (for Windows 98). */
3286 vim_free(p);
3287 p = NULL;
3288 }
3289 }
3290 if (p == NULL)
3291#endif
3292 res = SetFileAttributes((char *)name, attrs);
3293#ifdef FEAT_MBYTE
3294 vim_free(p);
3295#endif
3296 return res ? 0 : -1;
3297}
3298
3299/*
3300 * Set archive flag for "name".
3301 */
3302 static
3303 int
3304win32_set_archive(char_u *name)
3305{
3306 int attrs = win32_getattrs(name);
3307 if (attrs == -1)
3308 return -1;
3309
3310 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3311 return win32_setattrs(name, attrs);
3312}
3313
3314/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 * Return TRUE if file or directory "name" is writable (not readonly).
3316 * Strange semantics of Win32: a readonly directory is writable, but you can't
3317 * delete a file. Let's say this means it is writable.
3318 */
3319 int
3320mch_writable(char_u *name)
3321{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003322 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003324 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3325 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326}
3327
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328/*
3329 * Return 1 if "name" can be executed, 0 if not.
3330 * Return -1 if unknown.
3331 */
3332 int
3333mch_can_exe(char_u *name)
3334{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003335 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003336 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003337 char_u *p;
3338
3339 if (len >= _MAX_PATH) /* safety check */
3340 return FALSE;
3341
3342 /* If there already is an extension try using the name directly. Also do
3343 * this with a Unix-shell like 'shell'. */
3344 if (vim_strchr(gettail(name), '.') != NULL
3345 || strstr((char *)gettail(p_sh), "sh") != NULL)
3346 if (executable_exists((char *)name))
3347 return TRUE;
3348
3349 /*
3350 * Loop over all extensions in $PATHEXT.
3351 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003352 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003353 p = mch_getenv("PATHEXT");
3354 if (p == NULL)
3355 p = (char_u *)".com;.exe;.bat;.cmd";
3356 while (*p)
3357 {
3358 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3359 {
3360 /* A single "." means no extension is added. */
3361 buf[len] = NUL;
3362 ++p;
3363 if (*p)
3364 ++p;
3365 }
3366 else
3367 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
3368 if (executable_exists((char *)buf))
3369 return TRUE;
3370 }
3371 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373
3374/*
3375 * Check what "name" is:
3376 * NODE_NORMAL: file or directory (or doesn't exist)
3377 * NODE_WRITABLE: writable device, socket, fifo, etc.
3378 * NODE_OTHER: non-writable things
3379 */
3380 int
3381mch_nodetype(char_u *name)
3382{
3383 HANDLE hFile;
3384 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003385#ifdef FEAT_MBYTE
3386 WCHAR *wn = NULL;
3387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388
Bram Moolenaar043545e2006-10-10 16:44:07 +00003389 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3390 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3391 * here. */
3392 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3393 return NODE_WRITABLE;
3394
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003395#ifdef FEAT_MBYTE
3396 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3397 {
3398 wn = enc_to_utf16(name, NULL);
3399 if (wn != NULL)
3400 {
3401 hFile = CreateFileW(wn, /* file name */
3402 GENERIC_WRITE, /* access mode */
3403 0, /* share mode */
3404 NULL, /* security descriptor */
3405 OPEN_EXISTING, /* creation disposition */
3406 0, /* file attributes */
3407 NULL); /* handle to template file */
3408 if (hFile == INVALID_HANDLE_VALUE
3409 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3410 {
3411 /* Retry with non-wide function (for Windows 98). */
3412 vim_free(wn);
3413 wn = NULL;
3414 }
3415 }
3416 }
3417 if (wn == NULL)
3418#endif
3419 hFile = CreateFile(name, /* file name */
3420 GENERIC_WRITE, /* access mode */
3421 0, /* share mode */
3422 NULL, /* security descriptor */
3423 OPEN_EXISTING, /* creation disposition */
3424 0, /* file attributes */
3425 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003427#ifdef FEAT_MBYTE
3428 vim_free(wn);
3429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 if (hFile == INVALID_HANDLE_VALUE)
3431 return NODE_NORMAL;
3432
3433 type = GetFileType(hFile);
3434 CloseHandle(hFile);
3435 if (type == FILE_TYPE_CHAR)
3436 return NODE_WRITABLE;
3437 if (type == FILE_TYPE_DISK)
3438 return NODE_NORMAL;
3439 return NODE_OTHER;
3440}
3441
3442#ifdef HAVE_ACL
3443struct my_acl
3444{
3445 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3446 PSID pSidOwner;
3447 PSID pSidGroup;
3448 PACL pDacl;
3449 PACL pSacl;
3450};
3451#endif
3452
3453/*
3454 * Return a pointer to the ACL of file "fname" in allocated memory.
3455 * Return NULL if the ACL is not available for whatever reason.
3456 */
3457 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003458mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459{
3460#ifndef HAVE_ACL
3461 return (vim_acl_T)NULL;
3462#else
3463 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003464 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465
3466 /* This only works on Windows NT and 2000. */
3467 if (g_PlatformId == VER_PLATFORM_WIN32_NT && advapi_lib != NULL)
3468 {
3469 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3470 if (p != NULL)
3471 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003472# ifdef FEAT_MBYTE
3473 WCHAR *wn = NULL;
3474
3475 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3476 wn = enc_to_utf16(fname, NULL);
3477 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003479 /* Try to retrieve the entire security descriptor. */
3480 err = pGetNamedSecurityInfoW(
3481 wn, // Abstract filename
3482 SE_FILE_OBJECT, // File Object
3483 OWNER_SECURITY_INFORMATION |
3484 GROUP_SECURITY_INFORMATION |
3485 DACL_SECURITY_INFORMATION |
3486 SACL_SECURITY_INFORMATION,
3487 &p->pSidOwner, // Ownership information.
3488 &p->pSidGroup, // Group membership.
3489 &p->pDacl, // Discretionary information.
3490 &p->pSacl, // For auditing purposes.
3491 &p->pSecurityDescriptor);
3492 if (err == ERROR_ACCESS_DENIED ||
3493 err == ERROR_PRIVILEGE_NOT_HELD)
3494 {
3495 /* Retrieve only DACL. */
3496 (void)pGetNamedSecurityInfoW(
3497 wn,
3498 SE_FILE_OBJECT,
3499 DACL_SECURITY_INFORMATION,
3500 NULL,
3501 NULL,
3502 &p->pDacl,
3503 NULL,
3504 &p->pSecurityDescriptor);
3505 }
3506 if (p->pSecurityDescriptor == NULL)
3507 {
3508 mch_free_acl((vim_acl_T)p);
3509 p = NULL;
3510 }
3511 vim_free(wn);
3512 }
3513 else
3514# endif
3515 {
3516 /* Try to retrieve the entire security descriptor. */
3517 err = pGetNamedSecurityInfo(
3518 (LPSTR)fname, // Abstract filename
3519 SE_FILE_OBJECT, // File Object
3520 OWNER_SECURITY_INFORMATION |
3521 GROUP_SECURITY_INFORMATION |
3522 DACL_SECURITY_INFORMATION |
3523 SACL_SECURITY_INFORMATION,
3524 &p->pSidOwner, // Ownership information.
3525 &p->pSidGroup, // Group membership.
3526 &p->pDacl, // Discretionary information.
3527 &p->pSacl, // For auditing purposes.
3528 &p->pSecurityDescriptor);
3529 if (err == ERROR_ACCESS_DENIED ||
3530 err == ERROR_PRIVILEGE_NOT_HELD)
3531 {
3532 /* Retrieve only DACL. */
3533 (void)pGetNamedSecurityInfo(
3534 (LPSTR)fname,
3535 SE_FILE_OBJECT,
3536 DACL_SECURITY_INFORMATION,
3537 NULL,
3538 NULL,
3539 &p->pDacl,
3540 NULL,
3541 &p->pSecurityDescriptor);
3542 }
3543 if (p->pSecurityDescriptor == NULL)
3544 {
3545 mch_free_acl((vim_acl_T)p);
3546 p = NULL;
3547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 }
3549 }
3550 }
3551
3552 return (vim_acl_T)p;
3553#endif
3554}
3555
Bram Moolenaar27515922013-06-29 15:36:26 +02003556#ifdef HAVE_ACL
3557/*
3558 * Check if "acl" contains inherited ACE.
3559 */
3560 static BOOL
3561is_acl_inherited(PACL acl)
3562{
3563 DWORD i;
3564 ACL_SIZE_INFORMATION acl_info;
3565 PACCESS_ALLOWED_ACE ace;
3566
3567 acl_info.AceCount = 0;
3568 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3569 for (i = 0; i < acl_info.AceCount; i++)
3570 {
3571 GetAce(acl, i, (LPVOID *)&ace);
3572 if (ace->Header.AceFlags & INHERITED_ACE)
3573 return TRUE;
3574 }
3575 return FALSE;
3576}
3577#endif
3578
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579/*
3580 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3581 * Errors are ignored.
3582 * This must only be called with "acl" equal to what mch_get_acl() returned.
3583 */
3584 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003585mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586{
3587#ifdef HAVE_ACL
3588 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003589 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
3591 if (p != NULL && advapi_lib != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003592 {
3593# ifdef FEAT_MBYTE
3594 WCHAR *wn = NULL;
3595# endif
3596
3597 /* Set security flags */
3598 if (p->pSidOwner)
3599 sec_info |= OWNER_SECURITY_INFORMATION;
3600 if (p->pSidGroup)
3601 sec_info |= GROUP_SECURITY_INFORMATION;
3602 if (p->pDacl)
3603 {
3604 sec_info |= DACL_SECURITY_INFORMATION;
3605 /* Do not inherit its parent's DACL.
3606 * If the DACL is inherited, Cygwin permissions would be changed.
3607 */
3608 if (!is_acl_inherited(p->pDacl))
3609 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3610 }
3611 if (p->pSacl)
3612 sec_info |= SACL_SECURITY_INFORMATION;
3613
3614# ifdef FEAT_MBYTE
3615 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3616 wn = enc_to_utf16(fname, NULL);
3617 if (wn != NULL)
3618 {
3619 (void)pSetNamedSecurityInfoW(
3620 wn, // Abstract filename
3621 SE_FILE_OBJECT, // File Object
3622 sec_info,
3623 p->pSidOwner, // Ownership information.
3624 p->pSidGroup, // Group membership.
3625 p->pDacl, // Discretionary information.
3626 p->pSacl // For auditing purposes.
3627 );
3628 vim_free(wn);
3629 }
3630 else
3631# endif
3632 {
3633 (void)pSetNamedSecurityInfo(
3634 (LPSTR)fname, // Abstract filename
3635 SE_FILE_OBJECT, // File Object
3636 sec_info,
3637 p->pSidOwner, // Ownership information.
3638 p->pSidGroup, // Group membership.
3639 p->pDacl, // Discretionary information.
3640 p->pSacl // For auditing purposes.
3641 );
3642 }
3643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644#endif
3645}
3646
3647 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003648mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649{
3650#ifdef HAVE_ACL
3651 struct my_acl *p = (struct my_acl *)acl;
3652
3653 if (p != NULL)
3654 {
3655 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3656 vim_free(p);
3657 }
3658#endif
3659}
3660
3661#ifndef FEAT_GUI_W32
3662
3663/*
3664 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3665 */
3666 static BOOL WINAPI
3667handler_routine(
3668 DWORD dwCtrlType)
3669{
3670 switch (dwCtrlType)
3671 {
3672 case CTRL_C_EVENT:
3673 if (ctrl_c_interrupts)
3674 g_fCtrlCPressed = TRUE;
3675 return TRUE;
3676
3677 case CTRL_BREAK_EVENT:
3678 g_fCBrkPressed = TRUE;
3679 return TRUE;
3680
3681 /* fatal events: shut down gracefully */
3682 case CTRL_CLOSE_EVENT:
3683 case CTRL_LOGOFF_EVENT:
3684 case CTRL_SHUTDOWN_EVENT:
3685 windgoto((int)Rows - 1, 0);
3686 g_fForceExit = TRUE;
3687
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003688 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 (dwCtrlType == CTRL_CLOSE_EVENT
3690 ? _("close")
3691 : dwCtrlType == CTRL_LOGOFF_EVENT
3692 ? _("logoff")
3693 : _("shutdown")));
3694#ifdef DEBUG
3695 OutputDebugString(IObuff);
3696#endif
3697
3698 preserve_exit(); /* output IObuff, preserve files and exit */
3699
3700 return TRUE; /* not reached */
3701
3702 default:
3703 return FALSE;
3704 }
3705}
3706
3707
3708/*
3709 * set the tty in (raw) ? "raw" : "cooked" mode
3710 */
3711 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003712mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713{
3714 DWORD cmodein;
3715 DWORD cmodeout;
3716 BOOL bEnableHandler;
3717
3718 GetConsoleMode(g_hConIn, &cmodein);
3719 GetConsoleMode(g_hConOut, &cmodeout);
3720 if (tmode == TMODE_RAW)
3721 {
3722 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3723 ENABLE_ECHO_INPUT);
3724#ifdef FEAT_MOUSE
3725 if (g_fMouseActive)
3726 cmodein |= ENABLE_MOUSE_INPUT;
3727#endif
3728 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3729 bEnableHandler = TRUE;
3730 }
3731 else /* cooked */
3732 {
3733 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3734 ENABLE_ECHO_INPUT);
3735 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3736 bEnableHandler = FALSE;
3737 }
3738 SetConsoleMode(g_hConIn, cmodein);
3739 SetConsoleMode(g_hConOut, cmodeout);
3740 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3741
3742#ifdef MCH_WRITE_DUMP
3743 if (fdDump)
3744 {
3745 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3746 tmode == TMODE_RAW ? "raw" :
3747 tmode == TMODE_COOK ? "cooked" : "normal",
3748 cmodein, cmodeout);
3749 fflush(fdDump);
3750 }
3751#endif
3752}
3753
3754
3755/*
3756 * Get the size of the current window in `Rows' and `Columns'
3757 * Return OK when size could be determined, FAIL otherwise.
3758 */
3759 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003760mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761{
3762 CONSOLE_SCREEN_BUFFER_INFO csbi;
3763
3764 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3765 {
3766 /*
3767 * For some reason, we are trying to get the screen dimensions
3768 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3769 * variables are really intended to mean the size of Vim screen
3770 * while in termcap mode.
3771 */
3772 Rows = g_cbTermcap.Info.dwSize.Y;
3773 Columns = g_cbTermcap.Info.dwSize.X;
3774 }
3775 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3776 {
3777 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3778 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3779 }
3780 else
3781 {
3782 Rows = 25;
3783 Columns = 80;
3784 }
3785 return OK;
3786}
3787
3788/*
3789 * Set a console window to `xSize' * `ySize'
3790 */
3791 static void
3792ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003793 HANDLE hConsole,
3794 int xSize,
3795 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796{
3797 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3798 SMALL_RECT srWindowRect; /* hold the new console size */
3799 COORD coordScreen;
3800
3801#ifdef MCH_WRITE_DUMP
3802 if (fdDump)
3803 {
3804 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3805 fflush(fdDump);
3806 }
3807#endif
3808
3809 /* get the largest size we can size the console window to */
3810 coordScreen = GetLargestConsoleWindowSize(hConsole);
3811
3812 /* define the new console window size and scroll position */
3813 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3814 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3815 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3816
3817 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3818 {
3819 int sx, sy;
3820
3821 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3822 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3823 if (sy < ySize || sx < xSize)
3824 {
3825 /*
3826 * Increasing number of lines/columns, do buffer first.
3827 * Use the maximal size in x and y direction.
3828 */
3829 if (sy < ySize)
3830 coordScreen.Y = ySize;
3831 else
3832 coordScreen.Y = sy;
3833 if (sx < xSize)
3834 coordScreen.X = xSize;
3835 else
3836 coordScreen.X = sx;
3837 SetConsoleScreenBufferSize(hConsole, coordScreen);
3838 }
3839 }
3840
3841 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3842 {
3843#ifdef MCH_WRITE_DUMP
3844 if (fdDump)
3845 {
3846 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3847 GetLastError());
3848 fflush(fdDump);
3849 }
3850#endif
3851 }
3852
3853 /* define the new console buffer size */
3854 coordScreen.X = xSize;
3855 coordScreen.Y = ySize;
3856
3857 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3858 {
3859#ifdef MCH_WRITE_DUMP
3860 if (fdDump)
3861 {
3862 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3863 GetLastError());
3864 fflush(fdDump);
3865 }
3866#endif
3867 }
3868}
3869
3870
3871/*
3872 * Set the console window to `Rows' * `Columns'
3873 */
3874 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003875mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876{
3877 COORD coordScreen;
3878
3879 /* Don't change window size while still starting up */
3880 if (suppress_winsize != 0)
3881 {
3882 suppress_winsize = 2;
3883 return;
3884 }
3885
3886 if (term_console)
3887 {
3888 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3889
3890 /* Clamp Rows and Columns to reasonable values */
3891 if (Rows > coordScreen.Y)
3892 Rows = coordScreen.Y;
3893 if (Columns > coordScreen.X)
3894 Columns = coordScreen.X;
3895
3896 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3897 }
3898}
3899
3900/*
3901 * Rows and/or Columns has changed.
3902 */
3903 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003904mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905{
3906 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3907}
3908
3909
3910/*
3911 * Called when started up, to set the winsize that was delayed.
3912 */
3913 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003914mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915{
3916 if (suppress_winsize == 2)
3917 {
3918 suppress_winsize = 0;
3919 mch_set_shellsize();
3920 shell_resized();
3921 }
3922 suppress_winsize = 0;
3923}
3924#endif /* FEAT_GUI_W32 */
3925
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003926 static BOOL
3927vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003928 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003929 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003930 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003931 STARTUPINFO *si,
3932 PROCESS_INFORMATION *pi)
3933{
3934# ifdef FEAT_MBYTE
3935 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3936 {
3937 WCHAR *wcmd = enc_to_utf16(cmd, NULL);
3938
3939 if (wcmd != NULL)
3940 {
3941 BOOL ret;
3942 ret = CreateProcessW(
3943 NULL, /* Executable name */
3944 wcmd, /* Command to execute */
3945 NULL, /* Process security attributes */
3946 NULL, /* Thread security attributes */
3947 inherit_handles, /* Inherit handles */
3948 flags, /* Creation flags */
3949 NULL, /* Environment */
3950 NULL, /* Current directory */
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003951 (LPSTARTUPINFOW)si, /* Startup information */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003952 pi); /* Process information */
3953 vim_free(wcmd);
3954 return ret;
3955 }
3956 }
3957#endif
3958 return CreateProcess(
3959 NULL, /* Executable name */
3960 cmd, /* Command to execute */
3961 NULL, /* Process security attributes */
3962 NULL, /* Thread security attributes */
3963 inherit_handles, /* Inherit handles */
3964 flags, /* Creation flags */
3965 NULL, /* Environment */
3966 NULL, /* Current directory */
3967 si, /* Startup information */
3968 pi); /* Process information */
3969}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970
3971
3972#if defined(FEAT_GUI_W32) || defined(PROTO)
3973
3974/*
3975 * Specialised version of system() for Win32 GUI mode.
3976 * This version proceeds as follows:
3977 * 1. Create a console window for use by the subprocess
3978 * 2. Run the subprocess (it gets the allocated console by default)
3979 * 3. Wait for the subprocess to terminate and get its exit code
3980 * 4. Prompt the user to press a key to close the console window
3981 */
3982 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02003983mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984{
3985 STARTUPINFO si;
3986 PROCESS_INFORMATION pi;
3987 DWORD ret = 0;
3988 HWND hwnd = GetFocus();
3989
3990 si.cb = sizeof(si);
3991 si.lpReserved = NULL;
3992 si.lpDesktop = NULL;
3993 si.lpTitle = NULL;
3994 si.dwFlags = STARTF_USESHOWWINDOW;
3995 /*
3996 * It's nicer to run a filter command in a minimized window, but in
3997 * Windows 95 this makes the command MUCH slower. We can't do it under
3998 * Win32s either as it stops the synchronous spawn workaround working.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01003999 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 */
4001 if ((options & SHELL_DOOUT) && !mch_windows95() && !gui_is_win32s())
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004002 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 else
4004 si.wShowWindow = SW_SHOWNORMAL;
4005 si.cbReserved2 = 0;
4006 si.lpReserved2 = NULL;
4007
4008 /* There is a strange error on Windows 95 when using "c:\\command.com".
4009 * When the "c:\\" is left out it works OK...? */
4010 if (mch_windows95()
4011 && (STRNICMP(cmd, "c:/command.com", 14) == 0
4012 || STRNICMP(cmd, "c:\\command.com", 14) == 0))
4013 cmd += 3;
4014
4015 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004016 vim_create_process(cmd, FALSE,
4017 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, &si, &pi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018
4019 /* Wait for the command to terminate before continuing */
4020 if (g_PlatformId != VER_PLATFORM_WIN32s)
4021 {
4022#ifdef FEAT_GUI
4023 int delay = 1;
4024
4025 /* Keep updating the window while waiting for the shell to finish. */
4026 for (;;)
4027 {
4028 MSG msg;
4029
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004030 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 {
4032 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004033 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004034 delay = 1;
4035 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 }
4037 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4038 break;
4039
4040 /* We start waiting for a very short time and then increase it, so
4041 * that we respond quickly when the process is quick, and don't
4042 * consume too much overhead when it's slow. */
4043 if (delay < 50)
4044 delay += 10;
4045 }
4046#else
4047 WaitForSingleObject(pi.hProcess, INFINITE);
4048#endif
4049
4050 /* Get the command exit code */
4051 GetExitCodeProcess(pi.hProcess, &ret);
4052 }
4053 else
4054 {
4055 /*
4056 * This ugly code is the only quick way of performing
4057 * a synchronous spawn under Win32s. Yuk.
4058 */
4059 num_windows = 0;
4060 EnumWindows(win32ssynch_cb, 0);
4061 old_num_windows = num_windows;
4062 do
4063 {
4064 Sleep(1000);
4065 num_windows = 0;
4066 EnumWindows(win32ssynch_cb, 0);
4067 } while (num_windows == old_num_windows);
4068 ret = 0;
4069 }
4070
4071 /* Close the handles to the subprocess, so that it goes away */
4072 CloseHandle(pi.hThread);
4073 CloseHandle(pi.hProcess);
4074
4075 /* Try to get input focus back. Doesn't always work though. */
4076 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4077
4078 return ret;
4079}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004080
4081/*
4082 * Thread launched by the gui to send the current buffer data to the
4083 * process. This way avoid to hang up vim totally if the children
4084 * process take a long time to process the lines.
4085 */
4086 static DWORD WINAPI
4087sub_process_writer(LPVOID param)
4088{
4089 HANDLE g_hChildStd_IN_Wr = param;
4090 linenr_T lnum = curbuf->b_op_start.lnum;
4091 DWORD len = 0;
4092 DWORD l;
4093 char_u *lp = ml_get(lnum);
4094 char_u *s;
4095 int written = 0;
4096
4097 for (;;)
4098 {
4099 l = (DWORD)STRLEN(lp + written);
4100 if (l == 0)
4101 len = 0;
4102 else if (lp[written] == NL)
4103 {
4104 /* NL -> NUL translation */
4105 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4106 }
4107 else
4108 {
4109 s = vim_strchr(lp + written, NL);
4110 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4111 s == NULL ? l : (DWORD)(s - (lp + written)),
4112 &len, NULL);
4113 }
4114 if (len == (int)l)
4115 {
4116 /* Finished a line, add a NL, unless this line should not have
4117 * one. */
4118 if (lnum != curbuf->b_op_end.lnum
4119 || !curbuf->b_p_bin
4120 || (lnum != curbuf->b_no_eol_lnum
4121 && (lnum != curbuf->b_ml.ml_line_count
4122 || curbuf->b_p_eol)))
4123 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004124 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004125 }
4126
4127 ++lnum;
4128 if (lnum > curbuf->b_op_end.lnum)
4129 break;
4130
4131 lp = ml_get(lnum);
4132 written = 0;
4133 }
4134 else if (len > 0)
4135 written += len;
4136 }
4137
4138 /* finished all the lines, close pipe */
4139 CloseHandle(g_hChildStd_IN_Wr);
4140 ExitThread(0);
4141}
4142
4143
4144# define BUFLEN 100 /* length for buffer, stolen from unix version */
4145
4146/*
4147 * This function read from the children's stdout and write the
4148 * data on screen or in the buffer accordingly.
4149 */
4150 static void
4151dump_pipe(int options,
4152 HANDLE g_hChildStd_OUT_Rd,
4153 garray_T *ga,
4154 char_u buffer[],
4155 DWORD *buffer_off)
4156{
4157 DWORD availableBytes = 0;
4158 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004159 int ret;
4160 DWORD len;
4161 DWORD toRead;
4162 int repeatCount;
4163
4164 /* we query the pipe to see if there is any data to read
4165 * to avoid to perform a blocking read */
4166 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4167 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004168 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004169 NULL, /* number of read bytes */
4170 &availableBytes, /* available bytes total */
4171 NULL); /* byteLeft */
4172
4173 repeatCount = 0;
4174 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004175 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004176 {
4177 repeatCount++;
4178 toRead =
4179# ifdef FEAT_MBYTE
4180 (DWORD)(BUFLEN - *buffer_off);
4181# else
4182 (DWORD)BUFLEN;
4183# endif
4184 toRead = availableBytes < toRead ? availableBytes : toRead;
4185 ReadFile(g_hChildStd_OUT_Rd, buffer
4186# ifdef FEAT_MBYTE
4187 + *buffer_off, toRead
4188# else
4189 , toRead
4190# endif
4191 , &len, NULL);
4192
4193 /* If we haven't read anything, there is a problem */
4194 if (len == 0)
4195 break;
4196
4197 availableBytes -= len;
4198
4199 if (options & SHELL_READ)
4200 {
4201 /* Do NUL -> NL translation, append NL separated
4202 * lines to the current buffer. */
4203 for (i = 0; i < len; ++i)
4204 {
4205 if (buffer[i] == NL)
4206 append_ga_line(ga);
4207 else if (buffer[i] == NUL)
4208 ga_append(ga, NL);
4209 else
4210 ga_append(ga, buffer[i]);
4211 }
4212 }
4213# ifdef FEAT_MBYTE
4214 else if (has_mbyte)
4215 {
4216 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004217 int c;
4218 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004219
4220 len += *buffer_off;
4221 buffer[len] = NUL;
4222
4223 /* Check if the last character in buffer[] is
4224 * incomplete, keep these bytes for the next
4225 * round. */
4226 for (p = buffer; p < buffer + len; p += l)
4227 {
4228 l = mb_cptr2len(p);
4229 if (l == 0)
4230 l = 1; /* NUL byte? */
4231 else if (MB_BYTE2LEN(*p) != l)
4232 break;
4233 }
4234 if (p == buffer) /* no complete character */
4235 {
4236 /* avoid getting stuck at an illegal byte */
4237 if (len >= 12)
4238 ++p;
4239 else
4240 {
4241 *buffer_off = len;
4242 return;
4243 }
4244 }
4245 c = *p;
4246 *p = NUL;
4247 msg_puts(buffer);
4248 if (p < buffer + len)
4249 {
4250 *p = c;
4251 *buffer_off = (DWORD)((buffer + len) - p);
4252 mch_memmove(buffer, p, *buffer_off);
4253 return;
4254 }
4255 *buffer_off = 0;
4256 }
4257# endif /* FEAT_MBYTE */
4258 else
4259 {
4260 buffer[len] = NUL;
4261 msg_puts(buffer);
4262 }
4263
4264 windgoto(msg_row, msg_col);
4265 cursor_on();
4266 out_flush();
4267 }
4268}
4269
4270/*
4271 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4272 * for communication and doesn't open any new window.
4273 */
4274 static int
4275mch_system_piped(char *cmd, int options)
4276{
4277 STARTUPINFO si;
4278 PROCESS_INFORMATION pi;
4279 DWORD ret = 0;
4280
4281 HANDLE g_hChildStd_IN_Rd = NULL;
4282 HANDLE g_hChildStd_IN_Wr = NULL;
4283 HANDLE g_hChildStd_OUT_Rd = NULL;
4284 HANDLE g_hChildStd_OUT_Wr = NULL;
4285
4286 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4287 DWORD len;
4288
4289 /* buffer used to receive keys */
4290 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4291 int ta_len = 0; /* valid bytes in ta_buf[] */
4292
4293 DWORD i;
4294 int c;
4295 int noread_cnt = 0;
4296 garray_T ga;
4297 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004298 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004299 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004300
4301 SECURITY_ATTRIBUTES saAttr;
4302
4303 /* Set the bInheritHandle flag so pipe handles are inherited. */
4304 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4305 saAttr.bInheritHandle = TRUE;
4306 saAttr.lpSecurityDescriptor = NULL;
4307
4308 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4309 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
4310 || ! pSetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
4311 /* Create a pipe for the child process's STDIN. */
4312 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4313 /* Ensure the write handle to the pipe for STDIN is not inherited. */
4314 || ! pSetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
4315 {
4316 CloseHandle(g_hChildStd_IN_Rd);
4317 CloseHandle(g_hChildStd_IN_Wr);
4318 CloseHandle(g_hChildStd_OUT_Rd);
4319 CloseHandle(g_hChildStd_OUT_Wr);
4320 MSG_PUTS(_("\nCannot create pipes\n"));
4321 }
4322
4323 si.cb = sizeof(si);
4324 si.lpReserved = NULL;
4325 si.lpDesktop = NULL;
4326 si.lpTitle = NULL;
4327 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4328
4329 /* set-up our file redirection */
4330 si.hStdError = g_hChildStd_OUT_Wr;
4331 si.hStdOutput = g_hChildStd_OUT_Wr;
4332 si.hStdInput = g_hChildStd_IN_Rd;
4333 si.wShowWindow = SW_HIDE;
4334 si.cbReserved2 = 0;
4335 si.lpReserved2 = NULL;
4336
4337 if (options & SHELL_READ)
4338 ga_init2(&ga, 1, BUFLEN);
4339
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004340 if (cmd != NULL)
4341 {
4342 p = (char *)vim_strsave((char_u *)cmd);
4343 if (p != NULL)
4344 unescape_shellxquote((char_u *)p, p_sxe);
4345 else
4346 p = cmd;
4347 }
4348
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004349 /* Now, run the command.
4350 * About "Inherit handles" being TRUE: this command can be litigious,
4351 * handle inheritance was deactivated for pending temp file, but, if we
4352 * deactivate it, the pipes don't work for some reason. */
4353 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, &si, &pi);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004354
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004355 if (p != cmd)
4356 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004357
4358 /* Close our unused side of the pipes */
4359 CloseHandle(g_hChildStd_IN_Rd);
4360 CloseHandle(g_hChildStd_OUT_Wr);
4361
4362 if (options & SHELL_WRITE)
4363 {
4364 HANDLE thread =
4365 CreateThread(NULL, /* security attributes */
4366 0, /* default stack size */
4367 sub_process_writer, /* function to be executed */
4368 g_hChildStd_IN_Wr, /* parameter */
4369 0, /* creation flag, start immediately */
4370 NULL); /* we don't care about thread id */
4371 CloseHandle(thread);
4372 g_hChildStd_IN_Wr = NULL;
4373 }
4374
4375 /* Keep updating the window while waiting for the shell to finish. */
4376 for (;;)
4377 {
4378 MSG msg;
4379
Bram Moolenaar175d0702013-12-11 18:36:33 +01004380 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004381 {
4382 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004383 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004384 }
4385
4386 /* write pipe information in the window */
4387 if ((options & (SHELL_READ|SHELL_WRITE))
4388# ifdef FEAT_GUI
4389 || gui.in_use
4390# endif
4391 )
4392 {
4393 len = 0;
4394 if (!(options & SHELL_EXPAND)
4395 && ((options &
4396 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4397 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4398# ifdef FEAT_GUI
4399 || gui.in_use
4400# endif
4401 )
4402 && (ta_len > 0 || noread_cnt > 4))
4403 {
4404 if (ta_len == 0)
4405 {
4406 /* Get extra characters when we don't have any. Reset the
4407 * counter and timer. */
4408 noread_cnt = 0;
4409# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4410 gettimeofday(&start_tv, NULL);
4411# endif
4412 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4413 }
4414 if (ta_len > 0 || len > 0)
4415 {
4416 /*
4417 * For pipes: Check for CTRL-C: send interrupt signal to
4418 * child. Check for CTRL-D: EOF, close pipe to child.
4419 */
4420 if (len == 1 && cmd != NULL)
4421 {
4422 if (ta_buf[ta_len] == Ctrl_C)
4423 {
4424 /* Learn what exit code is expected, for
4425 * now put 9 as SIGKILL */
4426 TerminateProcess(pi.hProcess, 9);
4427 }
4428 if (ta_buf[ta_len] == Ctrl_D)
4429 {
4430 CloseHandle(g_hChildStd_IN_Wr);
4431 g_hChildStd_IN_Wr = NULL;
4432 }
4433 }
4434
4435 /* replace K_BS by <BS> and K_DEL by <DEL> */
4436 for (i = ta_len; i < ta_len + len; ++i)
4437 {
4438 if (ta_buf[i] == CSI && len - i > 2)
4439 {
4440 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4441 if (c == K_DEL || c == K_KDEL || c == K_BS)
4442 {
4443 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4444 (size_t)(len - i - 2));
4445 if (c == K_DEL || c == K_KDEL)
4446 ta_buf[i] = DEL;
4447 else
4448 ta_buf[i] = Ctrl_H;
4449 len -= 2;
4450 }
4451 }
4452 else if (ta_buf[i] == '\r')
4453 ta_buf[i] = '\n';
4454# ifdef FEAT_MBYTE
4455 if (has_mbyte)
4456 i += (*mb_ptr2len_len)(ta_buf + i,
4457 ta_len + len - i) - 1;
4458# endif
4459 }
4460
4461 /*
4462 * For pipes: echo the typed characters. For a pty this
4463 * does not seem to work.
4464 */
4465 for (i = ta_len; i < ta_len + len; ++i)
4466 {
4467 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4468 msg_putchar(ta_buf[i]);
4469# ifdef FEAT_MBYTE
4470 else if (has_mbyte)
4471 {
4472 int l = (*mb_ptr2len)(ta_buf + i);
4473
4474 msg_outtrans_len(ta_buf + i, l);
4475 i += l - 1;
4476 }
4477# endif
4478 else
4479 msg_outtrans_len(ta_buf + i, 1);
4480 }
4481 windgoto(msg_row, msg_col);
4482 out_flush();
4483
4484 ta_len += len;
4485
4486 /*
4487 * Write the characters to the child, unless EOF has been
4488 * typed for pipes. Write one character at a time, to
4489 * avoid losing too much typeahead. When writing buffer
4490 * lines, drop the typed characters (only check for
4491 * CTRL-C).
4492 */
4493 if (options & SHELL_WRITE)
4494 ta_len = 0;
4495 else if (g_hChildStd_IN_Wr != NULL)
4496 {
4497 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4498 1, &len, NULL);
4499 // if we are typing in, we want to keep things reactive
4500 delay = 1;
4501 if (len > 0)
4502 {
4503 ta_len -= len;
4504 mch_memmove(ta_buf, ta_buf + len, ta_len);
4505 }
4506 }
4507 }
4508 }
4509 }
4510
4511 if (ta_len)
4512 ui_inchar_undo(ta_buf, ta_len);
4513
4514 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4515 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004516 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004517 break;
4518 }
4519
4520 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004521 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004522
4523 /* We start waiting for a very short time and then increase it, so
4524 * that we respond quickly when the process is quick, and don't
4525 * consume too much overhead when it's slow. */
4526 if (delay < 50)
4527 delay += 10;
4528 }
4529
4530 /* Close the pipe */
4531 CloseHandle(g_hChildStd_OUT_Rd);
4532 if (g_hChildStd_IN_Wr != NULL)
4533 CloseHandle(g_hChildStd_IN_Wr);
4534
4535 WaitForSingleObject(pi.hProcess, INFINITE);
4536
4537 /* Get the command exit code */
4538 GetExitCodeProcess(pi.hProcess, &ret);
4539
4540 if (options & SHELL_READ)
4541 {
4542 if (ga.ga_len > 0)
4543 {
4544 append_ga_line(&ga);
4545 /* remember that the NL was missing */
4546 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4547 }
4548 else
4549 curbuf->b_no_eol_lnum = 0;
4550 ga_clear(&ga);
4551 }
4552
4553 /* Close the handles to the subprocess, so that it goes away */
4554 CloseHandle(pi.hThread);
4555 CloseHandle(pi.hProcess);
4556
4557 return ret;
4558}
4559
4560 static int
4561mch_system(char *cmd, int options)
4562{
4563 /* if we can pipe and the shelltemp option is off */
4564 if (allowPiping && !p_stmp)
4565 return mch_system_piped(cmd, options);
4566 else
4567 return mch_system_classic(cmd, options);
4568}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569#else
4570
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004571# ifdef FEAT_MBYTE
4572 static int
4573mch_system(char *cmd, int options)
4574{
4575 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4576 {
4577 WCHAR *wcmd = enc_to_utf16(cmd, NULL);
4578 if (wcmd != NULL)
4579 {
4580 int ret = _wsystem(wcmd);
4581 vim_free(wcmd);
4582 return ret;
4583 }
4584 }
4585 return system(cmd);
4586}
4587# else
4588# define mch_system(c, o) system(c)
4589# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590
4591#endif
4592
4593/*
4594 * Either execute a command by calling the shell or start a new shell
4595 */
4596 int
4597mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004598 char_u *cmd,
4599 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600{
4601 int x = 0;
4602 int tmode = cur_tmode;
4603#ifdef FEAT_TITLE
4604 char szShellTitle[512];
4605
4606 /* Change the title to reflect that we are in a subshell. */
4607 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
4608 {
4609 if (cmd == NULL)
4610 strcat(szShellTitle, " :sh");
4611 else
4612 {
4613 strcat(szShellTitle, " - !");
4614 if ((strlen(szShellTitle) + strlen(cmd) < sizeof(szShellTitle)))
4615 strcat(szShellTitle, cmd);
4616 }
4617 mch_settitle(szShellTitle, NULL);
4618 }
4619#endif
4620
4621 out_flush();
4622
4623#ifdef MCH_WRITE_DUMP
4624 if (fdDump)
4625 {
4626 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4627 fflush(fdDump);
4628 }
4629#endif
4630
4631 /*
4632 * Catch all deadly signals while running the external command, because a
4633 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4634 */
4635 signal(SIGINT, SIG_IGN);
4636#if defined(__GNUC__) && !defined(__MINGW32__)
4637 signal(SIGKILL, SIG_IGN);
4638#else
4639 signal(SIGBREAK, SIG_IGN);
4640#endif
4641 signal(SIGILL, SIG_IGN);
4642 signal(SIGFPE, SIG_IGN);
4643 signal(SIGSEGV, SIG_IGN);
4644 signal(SIGTERM, SIG_IGN);
4645 signal(SIGABRT, SIG_IGN);
4646
4647 if (options & SHELL_COOKED)
4648 settmode(TMODE_COOK); /* set to normal mode */
4649
4650 if (cmd == NULL)
4651 {
4652 x = mch_system(p_sh, options);
4653 }
4654 else
4655 {
4656 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004657 char_u *newcmd = NULL;
4658 char_u *cmdbase = cmd;
4659 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004660
4661 /* Skip a leading ", ( and "(. */
4662 if (*cmdbase == '"' )
4663 ++cmdbase;
4664 if (*cmdbase == '(')
4665 ++cmdbase;
4666
4667 if ((STRNICMP(cmdbase, "start", 5) == 0) && vim_iswhite(cmdbase[5]))
4668 {
4669 STARTUPINFO si;
4670 PROCESS_INFORMATION pi;
4671 DWORD flags = CREATE_NEW_CONSOLE;
4672 char_u *p;
4673
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004674 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004675 si.cb = sizeof(si);
4676 si.lpReserved = NULL;
4677 si.lpDesktop = NULL;
4678 si.lpTitle = NULL;
4679 si.dwFlags = 0;
4680 si.cbReserved2 = 0;
4681 si.lpReserved2 = NULL;
4682
4683 cmdbase = skipwhite(cmdbase + 5);
4684 if ((STRNICMP(cmdbase, "/min", 4) == 0)
4685 && vim_iswhite(cmdbase[4]))
4686 {
4687 cmdbase = skipwhite(cmdbase + 4);
4688 si.dwFlags = STARTF_USESHOWWINDOW;
4689 si.wShowWindow = SW_SHOWMINNOACTIVE;
4690 }
4691 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
4692 && vim_iswhite(cmdbase[2]))
4693 {
4694 cmdbase = skipwhite(cmdbase + 2);
4695 flags = CREATE_NO_WINDOW;
4696 si.dwFlags = STARTF_USESTDHANDLES;
4697 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004698 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004699 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004700 NULL, // Security att.
4701 OPEN_EXISTING, // Open flags
4702 FILE_ATTRIBUTE_NORMAL, // File att.
4703 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004704 si.hStdOutput = si.hStdInput;
4705 si.hStdError = si.hStdInput;
4706 }
4707
4708 /* Remove a trailing ", ) and )" if they have a match
4709 * at the start of the command. */
4710 if (cmdbase > cmd)
4711 {
4712 p = cmdbase + STRLEN(cmdbase);
4713 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4714 *--p = NUL;
4715 if (p > cmdbase && p[-1] == ')'
4716 && (*cmd =='(' || cmd[1] == '('))
4717 *--p = NUL;
4718 }
4719
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004720 newcmd = cmdbase;
4721 unescape_shellxquote(cmdbase, p_sxe);
4722
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004723 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004724 * If creating new console, arguments are passed to the
4725 * 'cmd.exe' as-is. If it's not, arguments are not treated
4726 * correctly for current 'cmd.exe'. So unescape characters in
4727 * shellxescape except '|' for avoiding to be treated as
4728 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004729 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004730 if (flags != CREATE_NEW_CONSOLE)
4731 {
4732 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004733 char_u *cmd_shell = mch_getenv("COMSPEC");
4734
4735 if (cmd_shell == NULL || *cmd_shell == NUL)
4736 cmd_shell = default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004737
4738 subcmd = vim_strsave_escaped_ext(cmdbase, "|", '^', FALSE);
4739 if (subcmd != NULL)
4740 {
4741 /* make "cmd.exe /c arguments" */
4742 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004743 newcmd = lalloc(cmdlen, TRUE);
4744 if (newcmd != NULL)
4745 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004746 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004747 else
4748 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004749 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004750 }
4751 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004752
4753 /*
4754 * Now, start the command as a process, so that it doesn't
4755 * inherit our handles which causes unpleasant dangling swap
4756 * files if we exit before the spawned process
4757 */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004758 if (vim_create_process(newcmd, FALSE, flags, &si, &pi))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004759 x = 0;
4760 else
4761 {
4762 x = -1;
4763#ifdef FEAT_GUI_W32
4764 EMSG(_("E371: Command not found"));
4765#endif
4766 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004767
4768 if (newcmd != cmdbase)
4769 vim_free(newcmd);
4770
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004771 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004772 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004773 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004774 CloseHandle(si.hStdInput);
4775 }
4776 /* Close the handles to the subprocess, so that it goes away */
4777 CloseHandle(pi.hThread);
4778 CloseHandle(pi.hProcess);
4779 }
4780 else
4781 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004782 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783#ifdef FEAT_GUI_W32
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004784 (allowPiping && !p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004786 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4787
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004788 newcmd = lalloc(cmdlen, TRUE);
4789 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 {
4791#if defined(FEAT_GUI_W32)
4792 if (need_vimrun_warning)
4793 {
4794 MessageBox(NULL,
4795 _("VIMRUN.EXE not found in your $PATH.\n"
4796 "External commands will not pause after completion.\n"
4797 "See :help win32-vimrun for more information."),
4798 _("Vim Warning"),
4799 MB_ICONWARNING);
4800 need_vimrun_warning = FALSE;
4801 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004802 if (!s_dont_use_vimrun && (!allowPiping || p_stmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 /* Use vimrun to execute the command. It opens a console
4804 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004805 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 vimrun_path,
4807 (msg_silent != 0 || (options & SHELL_DOOUT))
4808 ? "-s " : "",
4809 p_sh, p_shcf, cmd);
4810 else
4811#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004812 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004813 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004815 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 }
4818 }
4819
4820 if (tmode == TMODE_RAW)
4821 settmode(TMODE_RAW); /* set to raw mode */
4822
4823 /* Print the return value, unless "vimrun" was used. */
4824 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4825#if defined(FEAT_GUI_W32)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004826 && ((options & SHELL_DOOUT) || s_dont_use_vimrun
4827 || (allowPiping && !p_stmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828#endif
4829 )
4830 {
4831 smsg(_("shell returned %d"), x);
4832 msg_putchar('\n');
4833 }
4834#ifdef FEAT_TITLE
4835 resettitle();
4836#endif
4837
4838 signal(SIGINT, SIG_DFL);
4839#if defined(__GNUC__) && !defined(__MINGW32__)
4840 signal(SIGKILL, SIG_DFL);
4841#else
4842 signal(SIGBREAK, SIG_DFL);
4843#endif
4844 signal(SIGILL, SIG_DFL);
4845 signal(SIGFPE, SIG_DFL);
4846 signal(SIGSEGV, SIG_DFL);
4847 signal(SIGTERM, SIG_DFL);
4848 signal(SIGABRT, SIG_DFL);
4849
4850 return x;
4851}
4852
4853
4854#ifndef FEAT_GUI_W32
4855
4856/*
4857 * Start termcap mode
4858 */
4859 static void
4860termcap_mode_start(void)
4861{
4862 DWORD cmodein;
4863
4864 if (g_fTermcapMode)
4865 return;
4866
4867 SaveConsoleBuffer(&g_cbNonTermcap);
4868
4869 if (g_cbTermcap.IsValid)
4870 {
4871 /*
4872 * We've been in termcap mode before. Restore certain screen
4873 * characteristics, including the buffer size and the window
4874 * size. Since we will be redrawing the screen, we don't need
4875 * to restore the actual contents of the buffer.
4876 */
4877 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
4878 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
4879 Rows = g_cbTermcap.Info.dwSize.Y;
4880 Columns = g_cbTermcap.Info.dwSize.X;
4881 }
4882 else
4883 {
4884 /*
4885 * This is our first time entering termcap mode. Clear the console
4886 * screen buffer, and resize the buffer to match the current window
4887 * size. We will use this as the size of our editing environment.
4888 */
4889 ClearConsoleBuffer(g_attrCurrent);
4890 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
4891 }
4892
4893#ifdef FEAT_TITLE
4894 resettitle();
4895#endif
4896
4897 GetConsoleMode(g_hConIn, &cmodein);
4898#ifdef FEAT_MOUSE
4899 if (g_fMouseActive)
4900 cmodein |= ENABLE_MOUSE_INPUT;
4901 else
4902 cmodein &= ~ENABLE_MOUSE_INPUT;
4903#endif
4904 cmodein |= ENABLE_WINDOW_INPUT;
4905 SetConsoleMode(g_hConIn, cmodein);
4906
4907 redraw_later_clear();
4908 g_fTermcapMode = TRUE;
4909}
4910
4911
4912/*
4913 * End termcap mode
4914 */
4915 static void
4916termcap_mode_end(void)
4917{
4918 DWORD cmodein;
4919 ConsoleBuffer *cb;
4920 COORD coord;
4921 DWORD dwDummy;
4922
4923 if (!g_fTermcapMode)
4924 return;
4925
4926 SaveConsoleBuffer(&g_cbTermcap);
4927
4928 GetConsoleMode(g_hConIn, &cmodein);
4929 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
4930 SetConsoleMode(g_hConIn, cmodein);
4931
4932#ifdef FEAT_RESTORE_ORIG_SCREEN
4933 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
4934#else
4935 cb = &g_cbNonTermcap;
4936#endif
4937 RestoreConsoleBuffer(cb, p_rs);
4938 SetConsoleCursorInfo(g_hConOut, &g_cci);
4939
4940 if (p_rs || exiting)
4941 {
4942 /*
4943 * Clear anything that happens to be on the current line.
4944 */
4945 coord.X = 0;
4946 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
4947 FillConsoleOutputCharacter(g_hConOut, ' ',
4948 cb->Info.dwSize.X, coord, &dwDummy);
4949 /*
4950 * The following is just for aesthetics. If we are exiting without
4951 * restoring the screen, then we want to have a prompt string
4952 * appear at the bottom line. However, the command interpreter
4953 * seems to always advance the cursor one line before displaying
4954 * the prompt string, which causes the screen to scroll. To
4955 * counter this, move the cursor up one line before exiting.
4956 */
4957 if (exiting && !p_rs)
4958 coord.Y--;
4959 /*
4960 * Position the cursor at the leftmost column of the desired row.
4961 */
4962 SetConsoleCursorPosition(g_hConOut, coord);
4963 }
4964
4965 g_fTermcapMode = FALSE;
4966}
4967#endif /* FEAT_GUI_W32 */
4968
4969
4970#ifdef FEAT_GUI_W32
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004971/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 void
4973mch_write(
4974 char_u *s,
4975 int len)
4976{
4977 /* never used */
4978}
4979
4980#else
4981
4982/*
4983 * clear `n' chars, starting from `coord'
4984 */
4985 static void
4986clear_chars(
4987 COORD coord,
4988 DWORD n)
4989{
4990 DWORD dwDummy;
4991
4992 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
4993 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
4994}
4995
4996
4997/*
4998 * Clear the screen
4999 */
5000 static void
5001clear_screen(void)
5002{
5003 g_coord.X = g_coord.Y = 0;
5004 clear_chars(g_coord, Rows * Columns);
5005}
5006
5007
5008/*
5009 * Clear to end of display
5010 */
5011 static void
5012clear_to_end_of_display(void)
5013{
5014 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5015 * Columns + (Columns - g_coord.X));
5016}
5017
5018
5019/*
5020 * Clear to end of line
5021 */
5022 static void
5023clear_to_end_of_line(void)
5024{
5025 clear_chars(g_coord, Columns - g_coord.X);
5026}
5027
5028
5029/*
5030 * Scroll the scroll region up by `cLines' lines
5031 */
5032 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005033scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034{
5035 COORD oldcoord = g_coord;
5036
5037 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5038 delete_lines(cLines);
5039
5040 g_coord = oldcoord;
5041}
5042
5043
5044/*
5045 * Set the scroll region
5046 */
5047 static void
5048set_scroll_region(
5049 unsigned left,
5050 unsigned top,
5051 unsigned right,
5052 unsigned bottom)
5053{
5054 if (left >= right
5055 || top >= bottom
5056 || right > (unsigned) Columns - 1
5057 || bottom > (unsigned) Rows - 1)
5058 return;
5059
5060 g_srScrollRegion.Left = left;
5061 g_srScrollRegion.Top = top;
5062 g_srScrollRegion.Right = right;
5063 g_srScrollRegion.Bottom = bottom;
5064}
5065
5066
5067/*
5068 * Insert `cLines' lines at the current cursor position
5069 */
5070 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005071insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072{
5073 SMALL_RECT source;
5074 COORD dest;
5075 CHAR_INFO fill;
5076
5077 dest.X = 0;
5078 dest.Y = g_coord.Y + cLines;
5079
5080 source.Left = 0;
5081 source.Top = g_coord.Y;
5082 source.Right = g_srScrollRegion.Right;
5083 source.Bottom = g_srScrollRegion.Bottom - cLines;
5084
5085 fill.Char.AsciiChar = ' ';
5086 fill.Attributes = g_attrCurrent;
5087
5088 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5089
5090 /* Here we have to deal with a win32 console flake: If the scroll
5091 * region looks like abc and we scroll c to a and fill with d we get
5092 * cbd... if we scroll block c one line at a time to a, we get cdd...
5093 * vim expects cdd consistently... So we have to deal with that
5094 * here... (this also occurs scrolling the same way in the other
5095 * direction). */
5096
5097 if (source.Bottom < dest.Y)
5098 {
5099 COORD coord;
5100
5101 coord.X = 0;
5102 coord.Y = source.Bottom;
5103 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5104 }
5105}
5106
5107
5108/*
5109 * Delete `cLines' lines at the current cursor position
5110 */
5111 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005112delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113{
5114 SMALL_RECT source;
5115 COORD dest;
5116 CHAR_INFO fill;
5117 int nb;
5118
5119 dest.X = 0;
5120 dest.Y = g_coord.Y;
5121
5122 source.Left = 0;
5123 source.Top = g_coord.Y + cLines;
5124 source.Right = g_srScrollRegion.Right;
5125 source.Bottom = g_srScrollRegion.Bottom;
5126
5127 fill.Char.AsciiChar = ' ';
5128 fill.Attributes = g_attrCurrent;
5129
5130 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5131
5132 /* Here we have to deal with a win32 console flake: If the scroll
5133 * region looks like abc and we scroll c to a and fill with d we get
5134 * cbd... if we scroll block c one line at a time to a, we get cdd...
5135 * vim expects cdd consistently... So we have to deal with that
5136 * here... (this also occurs scrolling the same way in the other
5137 * direction). */
5138
5139 nb = dest.Y + (source.Bottom - source.Top) + 1;
5140
5141 if (nb < source.Top)
5142 {
5143 COORD coord;
5144
5145 coord.X = 0;
5146 coord.Y = nb;
5147 clear_chars(coord, Columns * (source.Top - nb));
5148 }
5149}
5150
5151
5152/*
5153 * Set the cursor position
5154 */
5155 static void
5156gotoxy(
5157 unsigned x,
5158 unsigned y)
5159{
5160 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5161 return;
5162
5163 /* external cursor coords are 1-based; internal are 0-based */
5164 g_coord.X = x - 1;
5165 g_coord.Y = y - 1;
5166 SetConsoleCursorPosition(g_hConOut, g_coord);
5167}
5168
5169
5170/*
5171 * Set the current text attribute = (foreground | background)
5172 * See ../doc/os_win32.txt for the numbers.
5173 */
5174 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005175textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176{
5177 g_attrCurrent = wAttr;
5178
5179 SetConsoleTextAttribute(g_hConOut, wAttr);
5180}
5181
5182
5183 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005184textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185{
5186 g_attrCurrent = (g_attrCurrent & 0xf0) + wAttr;
5187
5188 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5189}
5190
5191
5192 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005193textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194{
5195 g_attrCurrent = (g_attrCurrent & 0x0f) + (wAttr << 4);
5196
5197 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5198}
5199
5200
5201/*
5202 * restore the default text attribute (whatever we started with)
5203 */
5204 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005205normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206{
5207 textattr(g_attrDefault);
5208}
5209
5210
5211static WORD g_attrPreStandout = 0;
5212
5213/*
5214 * Make the text standout, by brightening it
5215 */
5216 static void
5217standout(void)
5218{
5219 g_attrPreStandout = g_attrCurrent;
5220 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5221}
5222
5223
5224/*
5225 * Turn off standout mode
5226 */
5227 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005228standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229{
5230 if (g_attrPreStandout)
5231 {
5232 textattr(g_attrPreStandout);
5233 g_attrPreStandout = 0;
5234 }
5235}
5236
5237
5238/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005239 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 */
5241 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005242mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243{
5244 char_u *p;
5245 int n;
5246
5247 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5248 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5249 if (T_ME[0] == ESC && T_ME[1] == '|')
5250 {
5251 p = T_ME + 2;
5252 n = getdigits(&p);
5253 if (*p == 'm' && n > 0)
5254 {
5255 cterm_normal_fg_color = (n & 0xf) + 1;
5256 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5257 }
5258 }
5259}
5260
5261
5262/*
5263 * visual bell: flash the screen
5264 */
5265 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005266visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267{
5268 COORD coordOrigin = {0, 0};
5269 WORD attrFlash = ~g_attrCurrent & 0xff;
5270
5271 DWORD dwDummy;
5272 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5273
5274 if (oldattrs == NULL)
5275 return;
5276 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5277 coordOrigin, &dwDummy);
5278 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5279 coordOrigin, &dwDummy);
5280
5281 Sleep(15); /* wait for 15 msec */
5282 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5283 coordOrigin, &dwDummy);
5284 vim_free(oldattrs);
5285}
5286
5287
5288/*
5289 * Make the cursor visible or invisible
5290 */
5291 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005292cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293{
5294 s_cursor_visible = fVisible;
5295#ifdef MCH_CURSOR_SHAPE
5296 mch_update_cursor();
5297#endif
5298}
5299
5300
5301/*
5302 * write `cchToWrite' characters in `pchBuf' to the screen
5303 * Returns the number of characters actually written (at least one).
5304 */
5305 static BOOL
5306write_chars(
5307 LPCSTR pchBuf,
5308 DWORD cchToWrite)
5309{
5310 COORD coord = g_coord;
5311 DWORD written;
5312
5313 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cchToWrite,
5314 coord, &written);
5315 /* When writing fails or didn't write a single character, pretend one
5316 * character was written, otherwise we get stuck. */
5317 if (WriteConsoleOutputCharacter(g_hConOut, pchBuf, cchToWrite,
5318 coord, &written) == 0
5319 || written == 0)
5320 written = 1;
5321
5322 g_coord.X += (SHORT) written;
5323
5324 while (g_coord.X > g_srScrollRegion.Right)
5325 {
5326 g_coord.X -= (SHORT) Columns;
5327 if (g_coord.Y < g_srScrollRegion.Bottom)
5328 g_coord.Y++;
5329 }
5330
5331 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5332
5333 return written;
5334}
5335
5336
5337/*
5338 * mch_write(): write the output buffer to the screen, translating ESC
5339 * sequences into calls to console output routines.
5340 */
5341 void
5342mch_write(
5343 char_u *s,
5344 int len)
5345{
5346 s[len] = NUL;
5347
5348 if (!term_console)
5349 {
5350 write(1, s, (unsigned)len);
5351 return;
5352 }
5353
5354 /* translate ESC | sequences into faked bios calls */
5355 while (len--)
5356 {
5357 /* optimization: use one single write_chars for runs of text,
5358 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005359 DWORD prefix = (DWORD)strcspn(s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360
5361 if (p_wd)
5362 {
5363 WaitForChar(p_wd);
5364 if (prefix != 0)
5365 prefix = 1;
5366 }
5367
5368 if (prefix != 0)
5369 {
5370 DWORD nWritten;
5371
5372 nWritten = write_chars(s, prefix);
5373#ifdef MCH_WRITE_DUMP
5374 if (fdDump)
5375 {
5376 fputc('>', fdDump);
5377 fwrite(s, sizeof(char_u), nWritten, fdDump);
5378 fputs("<\n", fdDump);
5379 }
5380#endif
5381 len -= (nWritten - 1);
5382 s += nWritten;
5383 }
5384 else if (s[0] == '\n')
5385 {
5386 /* \n, newline: go to the beginning of the next line or scroll */
5387 if (g_coord.Y == g_srScrollRegion.Bottom)
5388 {
5389 scroll(1);
5390 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
5391 }
5392 else
5393 {
5394 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
5395 }
5396#ifdef MCH_WRITE_DUMP
5397 if (fdDump)
5398 fputs("\\n\n", fdDump);
5399#endif
5400 s++;
5401 }
5402 else if (s[0] == '\r')
5403 {
5404 /* \r, carriage return: go to beginning of line */
5405 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
5406#ifdef MCH_WRITE_DUMP
5407 if (fdDump)
5408 fputs("\\r\n", fdDump);
5409#endif
5410 s++;
5411 }
5412 else if (s[0] == '\b')
5413 {
5414 /* \b, backspace: move cursor one position left */
5415 if (g_coord.X > g_srScrollRegion.Left)
5416 g_coord.X--;
5417 else if (g_coord.Y > g_srScrollRegion.Top)
5418 {
5419 g_coord.X = g_srScrollRegion.Right;
5420 g_coord.Y--;
5421 }
5422 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5423#ifdef MCH_WRITE_DUMP
5424 if (fdDump)
5425 fputs("\\b\n", fdDump);
5426#endif
5427 s++;
5428 }
5429 else if (s[0] == '\a')
5430 {
5431 /* \a, bell */
5432 MessageBeep(0xFFFFFFFF);
5433#ifdef MCH_WRITE_DUMP
5434 if (fdDump)
5435 fputs("\\a\n", fdDump);
5436#endif
5437 s++;
5438 }
5439 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
5440 {
5441#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005442 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005444 char_u *p;
5445 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446
5447 switch (s[2])
5448 {
5449 /* one or two numeric arguments, separated by ';' */
5450
5451 case '0': case '1': case '2': case '3': case '4':
5452 case '5': case '6': case '7': case '8': case '9':
5453 p = s + 2;
5454 arg1 = getdigits(&p); /* no check for length! */
5455 if (p > s + len)
5456 break;
5457
5458 if (*p == ';')
5459 {
5460 ++p;
5461 arg2 = getdigits(&p); /* no check for length! */
5462 if (p > s + len)
5463 break;
5464
5465 if (*p == 'H')
5466 gotoxy(arg2, arg1);
5467 else if (*p == 'r')
5468 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
5469 }
5470 else if (*p == 'A')
5471 {
5472 /* move cursor up arg1 lines in same column */
5473 gotoxy(g_coord.X + 1,
5474 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
5475 }
5476 else if (*p == 'C')
5477 {
5478 /* move cursor right arg1 columns in same line */
5479 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
5480 g_coord.Y + 1);
5481 }
5482 else if (*p == 'H')
5483 {
5484 gotoxy(1, arg1);
5485 }
5486 else if (*p == 'L')
5487 {
5488 insert_lines(arg1);
5489 }
5490 else if (*p == 'm')
5491 {
5492 if (arg1 == 0)
5493 normvideo();
5494 else
5495 textattr((WORD) arg1);
5496 }
5497 else if (*p == 'f')
5498 {
5499 textcolor((WORD) arg1);
5500 }
5501 else if (*p == 'b')
5502 {
5503 textbackground((WORD) arg1);
5504 }
5505 else if (*p == 'M')
5506 {
5507 delete_lines(arg1);
5508 }
5509
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005510 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 s = p + 1;
5512 break;
5513
5514
5515 /* Three-character escape sequences */
5516
5517 case 'A':
5518 /* move cursor up one line in same column */
5519 gotoxy(g_coord.X + 1,
5520 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
5521 goto got3;
5522
5523 case 'B':
5524 visual_bell();
5525 goto got3;
5526
5527 case 'C':
5528 /* move cursor right one column in same line */
5529 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
5530 g_coord.Y + 1);
5531 goto got3;
5532
5533 case 'E':
5534 termcap_mode_end();
5535 goto got3;
5536
5537 case 'F':
5538 standout();
5539 goto got3;
5540
5541 case 'f':
5542 standend();
5543 goto got3;
5544
5545 case 'H':
5546 gotoxy(1, 1);
5547 goto got3;
5548
5549 case 'j':
5550 clear_to_end_of_display();
5551 goto got3;
5552
5553 case 'J':
5554 clear_screen();
5555 goto got3;
5556
5557 case 'K':
5558 clear_to_end_of_line();
5559 goto got3;
5560
5561 case 'L':
5562 insert_lines(1);
5563 goto got3;
5564
5565 case 'M':
5566 delete_lines(1);
5567 goto got3;
5568
5569 case 'S':
5570 termcap_mode_start();
5571 goto got3;
5572
5573 case 'V':
5574 cursor_visible(TRUE);
5575 goto got3;
5576
5577 case 'v':
5578 cursor_visible(FALSE);
5579 goto got3;
5580
5581 got3:
5582 s += 3;
5583 len -= 2;
5584 }
5585
5586#ifdef MCH_WRITE_DUMP
5587 if (fdDump)
5588 {
5589 fputs("ESC | ", fdDump);
5590 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
5591 fputc('\n', fdDump);
5592 }
5593#endif
5594 }
5595 else
5596 {
5597 /* Write a single character */
5598 DWORD nWritten;
5599
5600 nWritten = write_chars(s, 1);
5601#ifdef MCH_WRITE_DUMP
5602 if (fdDump)
5603 {
5604 fputc('>', fdDump);
5605 fwrite(s, sizeof(char_u), nWritten, fdDump);
5606 fputs("<\n", fdDump);
5607 }
5608#endif
5609
5610 len -= (nWritten - 1);
5611 s += nWritten;
5612 }
5613 }
5614
5615#ifdef MCH_WRITE_DUMP
5616 if (fdDump)
5617 fflush(fdDump);
5618#endif
5619}
5620
5621#endif /* FEAT_GUI_W32 */
5622
5623
5624/*
5625 * Delay for half a second.
5626 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005627/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 void
5629mch_delay(
5630 long msec,
5631 int ignoreinput)
5632{
5633#ifdef FEAT_GUI_W32
5634 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005635#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005637# ifdef FEAT_MZSCHEME
5638 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
5639 {
5640 int towait = p_mzq;
5641
5642 /* if msec is large enough, wait by portions in p_mzq */
5643 while (msec > 0)
5644 {
5645 mzvim_check_threads();
5646 if (msec < towait)
5647 towait = msec;
5648 Sleep(towait);
5649 msec -= towait;
5650 }
5651 }
5652 else
5653# endif
5654 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 else
5656 WaitForChar(msec);
5657#endif
5658}
5659
5660
5661/*
5662 * this version of remove is not scared by a readonly (backup) file
5663 * Return 0 for success, -1 for failure.
5664 */
5665 int
5666mch_remove(char_u *name)
5667{
5668#ifdef FEAT_MBYTE
5669 WCHAR *wn = NULL;
5670 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02005671#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672
Bram Moolenaar12b559e2013-06-12 22:41:37 +02005673 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
5674
5675#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5677 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005678 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 if (wn != NULL)
5680 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 n = DeleteFileW(wn) ? 0 : -1;
5682 vim_free(wn);
5683 if (n == 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5684 return n;
5685 /* Retry with non-wide function (for Windows 98). */
5686 }
5687 }
5688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 return DeleteFile(name) ? 0 : -1;
5690}
5691
5692
5693/*
5694 * check for an "interrupt signal": CTRL-break or CTRL-C
5695 */
5696 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005697mch_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698{
5699#ifndef FEAT_GUI_W32 /* never used */
5700 if (g_fCtrlCPressed || g_fCBrkPressed)
5701 {
5702 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
5703 got_int = TRUE;
5704 }
5705#endif
5706}
5707
5708
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709#ifdef FEAT_MBYTE
5710/*
5711 * Same code as below, but with wide functions and no comments.
5712 * Return 0 for success, non-zero for failure.
5713 */
5714 int
5715mch_wrename(WCHAR *wold, WCHAR *wnew)
5716{
5717 WCHAR *p;
5718 int i;
5719 WCHAR szTempFile[_MAX_PATH + 1];
5720 WCHAR szNewPath[_MAX_PATH + 1];
5721 HANDLE hf;
5722
5723 if (!mch_windows95())
5724 {
5725 p = wold;
5726 for (i = 0; wold[i] != NUL; ++i)
5727 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
5728 && wold[i + 1] != 0)
5729 p = wold + i + 1;
5730 if ((int)(wold + i - p) < 8 || p[6] != '~')
5731 return (MoveFileW(wold, wnew) == 0);
5732 }
5733
5734 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
5735 return -1;
5736 *p = NUL;
5737
5738 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
5739 return -2;
5740
5741 if (!DeleteFileW(szTempFile))
5742 return -3;
5743
5744 if (!MoveFileW(wold, szTempFile))
5745 return -4;
5746
5747 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
5748 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
5749 return -5;
5750 if (!CloseHandle(hf))
5751 return -6;
5752
5753 if (!MoveFileW(szTempFile, wnew))
5754 {
5755 (void)MoveFileW(szTempFile, wold);
5756 return -7;
5757 }
5758
5759 DeleteFileW(szTempFile);
5760
5761 if (!DeleteFileW(wold))
5762 return -8;
5763
5764 return 0;
5765}
5766#endif
5767
5768
5769/*
5770 * mch_rename() works around a bug in rename (aka MoveFile) in
5771 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
5772 * file whose short file name is "FOO.BAR" (its long file name will
5773 * be correct: "foo.bar~"). Because a file can be accessed by
5774 * either its SFN or its LFN, "foo.bar" has effectively been
5775 * renamed to "foo.bar", which is not at all what was wanted. This
5776 * seems to happen only when renaming files with three-character
5777 * extensions by appending a suffix that does not include ".".
5778 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
5779 *
5780 * There is another problem, which isn't really a bug but isn't right either:
5781 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
5782 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
5783 * service pack 6. Doesn't seem to happen on Windows 98.
5784 *
5785 * Like rename(), returns 0 upon success, non-zero upon failure.
5786 * Should probably set errno appropriately when errors occur.
5787 */
5788 int
5789mch_rename(
5790 const char *pszOldFile,
5791 const char *pszNewFile)
5792{
5793 char szTempFile[_MAX_PATH+1];
5794 char szNewPath[_MAX_PATH+1];
5795 char *pszFilePart;
5796 HANDLE hf;
5797#ifdef FEAT_MBYTE
5798 WCHAR *wold = NULL;
5799 WCHAR *wnew = NULL;
5800 int retval = -1;
5801
5802 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5803 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005804 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
5805 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 if (wold != NULL && wnew != NULL)
5807 retval = mch_wrename(wold, wnew);
5808 vim_free(wold);
5809 vim_free(wnew);
5810 if (retval == 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5811 return retval;
5812 /* Retry with non-wide function (for Windows 98). */
5813 }
5814#endif
5815
5816 /*
5817 * No need to play tricks if not running Windows 95, unless the file name
5818 * contains a "~" as the seventh character.
5819 */
5820 if (!mch_windows95())
5821 {
5822 pszFilePart = (char *)gettail((char_u *)pszOldFile);
5823 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
5824 return rename(pszOldFile, pszNewFile);
5825 }
5826
5827 /* Get base path of new file name. Undocumented feature: If pszNewFile is
5828 * a directory, no error is returned and pszFilePart will be NULL. */
5829 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
5830 || pszFilePart == NULL)
5831 return -1;
5832 *pszFilePart = NUL;
5833
5834 /* Get (and create) a unique temporary file name in directory of new file */
5835 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
5836 return -2;
5837
5838 /* blow the temp file away */
5839 if (!DeleteFile(szTempFile))
5840 return -3;
5841
5842 /* rename old file to the temp file */
5843 if (!MoveFile(pszOldFile, szTempFile))
5844 return -4;
5845
5846 /* now create an empty file called pszOldFile; this prevents the operating
5847 * system using pszOldFile as an alias (SFN) if we're renaming within the
5848 * same directory. For example, we're editing a file called
5849 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
5850 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
5851 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005852 * cause all sorts of problems later in buf_write(). So, we create an
5853 * empty file called filena~1.txt and the system will have to find some
5854 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 */
5856 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
5857 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
5858 return -5;
5859 if (!CloseHandle(hf))
5860 return -6;
5861
5862 /* rename the temp file to the new file */
5863 if (!MoveFile(szTempFile, pszNewFile))
5864 {
5865 /* Renaming failed. Rename the file back to its old name, so that it
5866 * looks like nothing happened. */
5867 (void)MoveFile(szTempFile, pszOldFile);
5868
5869 return -7;
5870 }
5871
5872 /* Seems to be left around on Novell filesystems */
5873 DeleteFile(szTempFile);
5874
5875 /* finally, remove the empty old file */
5876 if (!DeleteFile(pszOldFile))
5877 return -8;
5878
5879 return 0; /* success */
5880}
5881
5882/*
5883 * Get the default shell for the current hardware platform
5884 */
5885 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005886default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887{
5888 char* psz = NULL;
5889
5890 PlatformId();
5891
5892 if (g_PlatformId == VER_PLATFORM_WIN32_NT) /* Windows NT */
5893 psz = "cmd.exe";
5894 else if (g_PlatformId == VER_PLATFORM_WIN32_WINDOWS) /* Windows 95 */
5895 psz = "command.com";
5896
5897 return psz;
5898}
5899
5900/*
5901 * mch_access() extends access() to do more detailed check on network drives.
5902 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
5903 */
5904 int
5905mch_access(char *n, int p)
5906{
5907 HANDLE hFile;
5908 DWORD am;
5909 int retval = -1; /* default: fail */
5910#ifdef FEAT_MBYTE
5911 WCHAR *wn = NULL;
5912
5913 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005914 wn = enc_to_utf16(n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915#endif
5916
5917 if (mch_isdir(n))
5918 {
5919 char TempName[_MAX_PATH + 16] = "";
5920#ifdef FEAT_MBYTE
5921 WCHAR TempNameW[_MAX_PATH + 16] = L"";
5922#endif
5923
5924 if (p & R_OK)
5925 {
5926 /* Read check is performed by seeing if we can do a find file on
5927 * the directory for any file. */
5928#ifdef FEAT_MBYTE
5929 if (wn != NULL)
5930 {
5931 int i;
5932 WIN32_FIND_DATAW d;
5933
5934 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
5935 TempNameW[i] = wn[i];
5936 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
5937 TempNameW[i++] = '\\';
5938 TempNameW[i++] = '*';
5939 TempNameW[i++] = 0;
5940
5941 hFile = FindFirstFileW(TempNameW, &d);
5942 if (hFile == INVALID_HANDLE_VALUE)
5943 {
5944 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5945 goto getout;
5946
5947 /* Retry with non-wide function (for Windows 98). */
5948 vim_free(wn);
5949 wn = NULL;
5950 }
5951 else
5952 (void)FindClose(hFile);
5953 }
5954 if (wn == NULL)
5955#endif
5956 {
5957 char *pch;
5958 WIN32_FIND_DATA d;
5959
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00005960 vim_strncpy(TempName, n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 pch = TempName + STRLEN(TempName) - 1;
5962 if (*pch != '\\' && *pch != '/')
5963 *++pch = '\\';
5964 *++pch = '*';
5965 *++pch = NUL;
5966
5967 hFile = FindFirstFile(TempName, &d);
5968 if (hFile == INVALID_HANDLE_VALUE)
5969 goto getout;
5970 (void)FindClose(hFile);
5971 }
5972 }
5973
5974 if (p & W_OK)
5975 {
5976 /* Trying to create a temporary file in the directory should catch
5977 * directories on read-only network shares. However, in
5978 * directories whose ACL allows writes but denies deletes will end
5979 * up keeping the temporary file :-(. */
5980#ifdef FEAT_MBYTE
5981 if (wn != NULL)
5982 {
5983 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
5984 {
5985 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5986 goto getout;
5987
5988 /* Retry with non-wide function (for Windows 98). */
5989 vim_free(wn);
5990 wn = NULL;
5991 }
5992 else
5993 DeleteFileW(TempNameW);
5994 }
5995 if (wn == NULL)
5996#endif
5997 {
5998 if (!GetTempFileName(n, "VIM", 0, TempName))
5999 goto getout;
6000 mch_remove((char_u *)TempName);
6001 }
6002 }
6003 }
6004 else
6005 {
6006 /* Trying to open the file for the required access does ACL, read-only
6007 * network share, and file attribute checks. */
6008 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6009 | ((p & R_OK) ? GENERIC_READ : 0);
6010#ifdef FEAT_MBYTE
6011 if (wn != NULL)
6012 {
6013 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6014 if (hFile == INVALID_HANDLE_VALUE
6015 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
6016 {
6017 /* Retry with non-wide function (for Windows 98). */
6018 vim_free(wn);
6019 wn = NULL;
6020 }
6021 }
6022 if (wn == NULL)
6023#endif
6024 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6025 if (hFile == INVALID_HANDLE_VALUE)
6026 goto getout;
6027 CloseHandle(hFile);
6028 }
6029
6030 retval = 0; /* success */
6031getout:
6032#ifdef FEAT_MBYTE
6033 vim_free(wn);
6034#endif
6035 return retval;
6036}
6037
6038#if defined(FEAT_MBYTE) || defined(PROTO)
6039/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006040 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006041 */
6042 int
6043mch_open(char *name, int flags, int mode)
6044{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006045 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6046# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047 WCHAR *wn;
6048 int f;
6049
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006050 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006052 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053 if (wn != NULL)
6054 {
6055 f = _wopen(wn, flags, mode);
6056 vim_free(wn);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01006057 if (f >= 0 || g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 return f;
6059 /* Retry with non-wide function (for Windows 98). Can't use
6060 * GetLastError() here and it's unclear what errno gets set to if
6061 * the _wopen() fails for missing wide functions. */
6062 }
6063 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006064# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065
6066 return open(name, flags, mode);
6067}
6068
6069/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006070 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 */
6072 FILE *
6073mch_fopen(char *name, char *mode)
6074{
6075 WCHAR *wn, *wm;
6076 FILE *f = NULL;
6077
6078 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage
6079# ifdef __BORLANDC__
6080 /* Wide functions of Borland C 5.5 do not work on Windows 98. */
6081 && g_PlatformId == VER_PLATFORM_WIN32_NT
6082# endif
6083 )
6084 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006085# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006086 /* Work around an annoying assertion in the Microsoft debug CRT
6087 * when mode's text/binary setting doesn't match _get_fmode(). */
6088 char newMode = mode[strlen(mode) - 1];
6089 int oldMode = 0;
6090
6091 _get_fmode(&oldMode);
6092 if (newMode == 't')
6093 _set_fmode(_O_TEXT);
6094 else if (newMode == 'b')
6095 _set_fmode(_O_BINARY);
6096# endif
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006097 wn = enc_to_utf16(name, NULL);
6098 wm = enc_to_utf16(mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 if (wn != NULL && wm != NULL)
6100 f = _wfopen(wn, wm);
6101 vim_free(wn);
6102 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006103
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006104# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006105 _set_fmode(oldMode);
6106# endif
6107
Bram Moolenaarcd981f22014-02-11 17:06:00 +01006108 if (f != NULL || g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 return f;
6110 /* Retry with non-wide function (for Windows 98). Can't use
6111 * GetLastError() here and it's unclear what errno gets set to if
6112 * the _wfopen() fails for missing wide functions. */
6113 }
6114
6115 return fopen(name, mode);
6116}
6117#endif
6118
6119#ifdef FEAT_MBYTE
6120/*
6121 * SUB STREAM (aka info stream) handling:
6122 *
6123 * NTFS can have sub streams for each file. Normal contents of file is
6124 * stored in the main stream, and extra contents (author information and
6125 * title and so on) can be stored in sub stream. After Windows 2000, user
6126 * can access and store those informations in sub streams via explorer's
6127 * property menuitem in right click menu. Those informations in sub streams
6128 * were lost when copying only the main stream. So we have to copy sub
6129 * streams.
6130 *
6131 * Incomplete explanation:
6132 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6133 * More useful info and an example:
6134 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6135 */
6136
6137/*
6138 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6139 * and write to stream "substream" of file "to".
6140 * Errors are ignored.
6141 */
6142 static void
6143copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6144{
6145 HANDLE hTo;
6146 WCHAR *to_name;
6147
6148 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6149 wcscpy(to_name, to);
6150 wcscat(to_name, substream);
6151
6152 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6153 FILE_ATTRIBUTE_NORMAL, NULL);
6154 if (hTo != INVALID_HANDLE_VALUE)
6155 {
6156 long done;
6157 DWORD todo;
6158 DWORD readcnt, written;
6159 char buf[4096];
6160
6161 /* Copy block of bytes at a time. Abort when something goes wrong. */
6162 for (done = 0; done < len; done += written)
6163 {
6164 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006165 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6166 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6168 FALSE, FALSE, context)
6169 || readcnt != todo
6170 || !WriteFile(hTo, buf, todo, &written, NULL)
6171 || written != todo)
6172 break;
6173 }
6174 CloseHandle(hTo);
6175 }
6176
6177 free(to_name);
6178}
6179
6180/*
6181 * Copy info streams from file "from" to file "to".
6182 */
6183 static void
6184copy_infostreams(char_u *from, char_u *to)
6185{
6186 WCHAR *fromw;
6187 WCHAR *tow;
6188 HANDLE sh;
6189 WIN32_STREAM_ID sid;
6190 int headersize;
6191 WCHAR streamname[_MAX_PATH];
6192 DWORD readcount;
6193 void *context = NULL;
6194 DWORD lo, hi;
6195 int len;
6196
6197 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006198 fromw = enc_to_utf16(from, NULL);
6199 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 if (fromw != NULL && tow != NULL)
6201 {
6202 /* Open the file for reading. */
6203 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6204 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6205 if (sh != INVALID_HANDLE_VALUE)
6206 {
6207 /* Use BackupRead() to find the info streams. Repeat until we
6208 * have done them all.*/
6209 for (;;)
6210 {
6211 /* Get the header to find the length of the stream name. If
6212 * the "readcount" is zero we have done all info streams. */
6213 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006214 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6216 &readcount, FALSE, FALSE, &context)
6217 || readcount == 0)
6218 break;
6219
6220 /* We only deal with streams that have a name. The normal
6221 * file data appears to be without a name, even though docs
6222 * suggest it is called "::$DATA". */
6223 if (sid.dwStreamNameSize > 0)
6224 {
6225 /* Read the stream name. */
6226 if (!BackupRead(sh, (LPBYTE)streamname,
6227 sid.dwStreamNameSize,
6228 &readcount, FALSE, FALSE, &context))
6229 break;
6230
6231 /* Copy an info stream with a name ":anything:$DATA".
6232 * Skip "::$DATA", it has no stream name (examples suggest
6233 * it might be used for the normal file contents).
6234 * Note that BackupRead() counts bytes, but the name is in
6235 * wide characters. */
6236 len = readcount / sizeof(WCHAR);
6237 streamname[len] = 0;
6238 if (len > 7 && wcsicmp(streamname + len - 6,
6239 L":$DATA") == 0)
6240 {
6241 streamname[len - 6] = 0;
6242 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006243 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 }
6245 }
6246
6247 /* Advance to the next stream. We might try seeking too far,
6248 * but BackupSeek() doesn't skip over stream borders, thus
6249 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006250 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 &lo, &hi, &context);
6252 }
6253
6254 /* Clear the context. */
6255 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6256
6257 CloseHandle(sh);
6258 }
6259 }
6260 vim_free(fromw);
6261 vim_free(tow);
6262}
6263#endif
6264
6265/*
6266 * Copy file attributes from file "from" to file "to".
6267 * For Windows NT and later we copy info streams.
6268 * Always returns zero, errors are ignored.
6269 */
6270 int
6271mch_copy_file_attribute(char_u *from, char_u *to)
6272{
6273#ifdef FEAT_MBYTE
6274 /* File streams only work on Windows NT and later. */
6275 PlatformId();
6276 if (g_PlatformId == VER_PLATFORM_WIN32_NT)
6277 copy_infostreams(from, to);
6278#endif
6279 return 0;
6280}
6281
6282#if defined(MYRESETSTKOFLW) || defined(PROTO)
6283/*
6284 * Recreate a destroyed stack guard page in win32.
6285 * Written by Benjamin Peterson.
6286 */
6287
6288/* These magic numbers are from the MS header files */
6289#define MIN_STACK_WIN9X 17
6290#define MIN_STACK_WINNT 2
6291
6292/*
6293 * This function does the same thing as _resetstkoflw(), which is only
6294 * available in DevStudio .net and later.
6295 * Returns 0 for failure, 1 for success.
6296 */
6297 int
6298myresetstkoflw(void)
6299{
6300 BYTE *pStackPtr;
6301 BYTE *pGuardPage;
6302 BYTE *pStackBase;
6303 BYTE *pLowestPossiblePage;
6304 MEMORY_BASIC_INFORMATION mbi;
6305 SYSTEM_INFO si;
6306 DWORD nPageSize;
6307 DWORD dummy;
6308
6309 /* This code will not work on win32s. */
6310 PlatformId();
6311 if (g_PlatformId == VER_PLATFORM_WIN32s)
6312 return 0;
6313
6314 /* We need to know the system page size. */
6315 GetSystemInfo(&si);
6316 nPageSize = si.dwPageSize;
6317
6318 /* ...and the current stack pointer */
6319 pStackPtr = (BYTE*)_alloca(1);
6320
6321 /* ...and the base of the stack. */
6322 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6323 return 0;
6324 pStackBase = (BYTE*)mbi.AllocationBase;
6325
6326 /* ...and the page thats min_stack_req pages away from stack base; this is
6327 * the lowest page we could use. */
6328 pLowestPossiblePage = pStackBase + ((g_PlatformId == VER_PLATFORM_WIN32_NT)
6329 ? MIN_STACK_WINNT : MIN_STACK_WIN9X) * nPageSize;
6330
6331 /* On Win95, we want the next page down from the end of the stack. */
6332 if (g_PlatformId == VER_PLATFORM_WIN32_WINDOWS)
6333 {
6334 /* Find the page that's only 1 page down from the page that the stack
6335 * ptr is in. */
6336 pGuardPage = (BYTE*)((DWORD)nPageSize * (((DWORD)pStackPtr
6337 / (DWORD)nPageSize) - 1));
6338 if (pGuardPage < pLowestPossiblePage)
6339 return 0;
6340
6341 /* Apply the noaccess attribute to the page -- there's no guard
6342 * attribute in win95-type OSes. */
6343 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_NOACCESS, &dummy))
6344 return 0;
6345 }
6346 else
6347 {
6348 /* On NT, however, we want the first committed page in the stack Start
6349 * at the stack base and move forward through memory until we find a
6350 * committed block. */
6351 BYTE *pBlock = pStackBase;
6352
Bram Moolenaara466c992005-07-09 21:03:22 +00006353 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 {
6355 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6356 return 0;
6357
6358 pBlock += mbi.RegionSize;
6359
6360 if (mbi.State & MEM_COMMIT)
6361 break;
6362 }
6363
6364 /* mbi now describes the first committed block in the stack. */
6365 if (mbi.Protect & PAGE_GUARD)
6366 return 1;
6367
6368 /* decide where the guard page should start */
6369 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6370 pGuardPage = pLowestPossiblePage;
6371 else
6372 pGuardPage = (BYTE*)mbi.BaseAddress;
6373
6374 /* allocate the guard page */
6375 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6376 return 0;
6377
6378 /* apply the guard attribute to the page */
6379 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6380 &dummy))
6381 return 0;
6382 }
6383
6384 return 1;
6385}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006388
6389#if defined(FEAT_MBYTE) || defined(PROTO)
6390/*
6391 * The command line arguments in UCS2
6392 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006393static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006394static LPWSTR *ArglistW = NULL;
6395static int global_argc = 0;
6396static char **global_argv;
6397
6398static int used_file_argc = 0; /* last argument in global_argv[] used
6399 for the argument list. */
6400static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6401 command line arguments added to
6402 the argument list */
6403static int used_file_count = 0; /* nr of entries in used_file_indexes */
6404static int used_file_literal = FALSE; /* take file names literally */
6405static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006406static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006407static int used_alist_count = 0;
6408
6409
6410/*
6411 * Get the command line arguments. Unicode version.
6412 * Returns argc. Zero when something fails.
6413 */
6414 int
6415get_cmd_argsW(char ***argvp)
6416{
6417 char **argv = NULL;
6418 int argc = 0;
6419 int i;
6420
6421 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
6422 if (ArglistW != NULL)
6423 {
6424 argv = malloc((nArgsW + 1) * sizeof(char *));
6425 if (argv != NULL)
6426 {
6427 argc = nArgsW;
6428 argv[argc] = NULL;
6429 for (i = 0; i < argc; ++i)
6430 {
6431 int len;
6432
6433 /* Convert each Unicode argument to the current codepage. */
6434 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006435 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006436 (LPSTR *)&argv[i], &len, 0, 0);
6437 if (argv[i] == NULL)
6438 {
6439 /* Out of memory, clear everything. */
6440 while (i > 0)
6441 free(argv[--i]);
6442 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01006443 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006444 argc = 0;
6445 }
6446 }
6447 }
6448 }
6449
6450 global_argc = argc;
6451 global_argv = argv;
6452 if (argc > 0)
6453 used_file_indexes = malloc(argc * sizeof(int));
6454
6455 if (argvp != NULL)
6456 *argvp = argv;
6457 return argc;
6458}
6459
6460 void
6461free_cmd_argsW(void)
6462{
6463 if (ArglistW != NULL)
6464 {
6465 GlobalFree(ArglistW);
6466 ArglistW = NULL;
6467 }
6468}
6469
6470/*
6471 * Remember "name" is an argument that was added to the argument list.
6472 * This avoids that we have to re-parse the argument list when fix_arg_enc()
6473 * is called.
6474 */
6475 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006476used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006477{
6478 int i;
6479
6480 if (used_file_indexes == NULL)
6481 return;
6482 for (i = used_file_argc + 1; i < global_argc; ++i)
6483 if (STRCMP(global_argv[i], name) == 0)
6484 {
6485 used_file_argc = i;
6486 used_file_indexes[used_file_count++] = i;
6487 break;
6488 }
6489 used_file_literal = literal;
6490 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006491 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006492}
6493
6494/*
6495 * Remember the length of the argument list as it was. If it changes then we
6496 * leave it alone when 'encoding' is set.
6497 */
6498 void
6499set_alist_count(void)
6500{
6501 used_alist_count = GARGCOUNT;
6502}
6503
6504/*
6505 * Fix the encoding of the command line arguments. Invoked when 'encoding'
6506 * has been changed while starting up. Use the UCS-2 command line arguments
6507 * and convert them to 'encoding'.
6508 */
6509 void
6510fix_arg_enc(void)
6511{
6512 int i;
6513 int idx;
6514 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006515 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006516
6517 /* Safety checks:
6518 * - if argument count differs between the wide and non-wide argument
6519 * list, something must be wrong.
6520 * - the file name arguments must have been located.
6521 * - the length of the argument list wasn't changed by the user.
6522 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006523 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006524 || ArglistW == NULL
6525 || used_file_indexes == NULL
6526 || used_file_count == 0
6527 || used_alist_count != GARGCOUNT)
6528 return;
6529
Bram Moolenaar86b68352004-12-27 21:59:20 +00006530 /* Remember the buffer numbers for the arguments. */
6531 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
6532 if (fnum_list == NULL)
6533 return; /* out of memory */
6534 for (i = 0; i < GARGCOUNT; ++i)
6535 fnum_list[i] = GARGLIST[i].ae_fnum;
6536
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006537 /* Clear the argument list. Make room for the new arguments. */
6538 alist_clear(&global_alist);
6539 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006540 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006541
6542 for (i = 0; i < used_file_count; ++i)
6543 {
6544 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006545 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006546 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006547 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006548#ifdef FEAT_DIFF
6549 /* When using diff mode may need to concatenate file name to
6550 * directory name. Just like it's done in main(). */
6551 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
6552 && !mch_isdir(alist_name(&GARGLIST[0])))
6553 {
6554 char_u *r;
6555
6556 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
6557 if (r != NULL)
6558 {
6559 vim_free(str);
6560 str = r;
6561 }
6562 }
6563#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006564 /* Re-use the old buffer by renaming it. When not using literal
6565 * names it's done by alist_expand() below. */
6566 if (used_file_literal)
6567 buf_set_name(fnum_list[i], str);
6568
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006569 alist_add(&global_alist, str, used_file_literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00006570 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006571 }
6572
6573 if (!used_file_literal)
6574 {
6575 /* Now expand wildcards in the arguments. */
6576 /* Temporarily add '(' and ')' to 'isfname'. These are valid
6577 * filename characters but are excluded from 'isfname' to make
6578 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
6579 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00006580 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006581 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
6582 }
6583
6584 /* If wildcard expansion failed, we are editing the first file of the
6585 * arglist and there is no file name: Edit the first argument now. */
6586 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
6587 {
6588 do_cmdline_cmd((char_u *)":rewind");
6589 if (GARGCOUNT == 1 && used_file_full_path)
6590 (void)vim_chdirfile(alist_name(&GARGLIST[0]));
6591 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006592
6593 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006594}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595#endif