blob: 09e5c610ddec8029eb8ab27a74db4e5c62a206a1 [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
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001885executable_exists(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886{
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;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001908 if (path != NULL)
1909 *path = utf16_to_enc(fnamew, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001910 return TRUE;
1911 }
1912 /* Retry with non-wide function (for Windows 98). */
1913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001915#endif
1916 if (SearchPath(NULL, name, NULL, _MAX_PATH, fname, &dum) == 0)
1917 return FALSE;
1918 if (mch_isdir(fname))
1919 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001920 if (path != NULL)
1921 *path = vim_strsave(fname);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001922 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923}
1924
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001925#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001926 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001927/*
1928 * Bad parameter handler.
1929 *
1930 * Certain MS CRT functions will intentionally crash when passed invalid
1931 * parameters to highlight possible security holes. Setting this function as
1932 * the bad parameter handler will prevent the crash.
1933 *
1934 * In debug builds the parameters contain CRT information that might help track
1935 * down the source of a problem, but in non-debug builds the arguments are all
1936 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
1937 * worth allowing these to make debugging of issues easier.
1938 */
1939 static void
1940bad_param_handler(const wchar_t *expression,
1941 const wchar_t *function,
1942 const wchar_t *file,
1943 unsigned int line,
1944 uintptr_t pReserved)
1945{
1946}
1947
1948# define SET_INVALID_PARAM_HANDLER \
1949 ((void)_set_invalid_parameter_handler(bad_param_handler))
1950#else
1951# define SET_INVALID_PARAM_HANDLER
1952#endif
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954#ifdef FEAT_GUI_W32
1955
1956/*
1957 * GUI version of mch_init().
1958 */
1959 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001960mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961{
1962#ifndef __MINGW32__
1963 extern int _fmode;
1964#endif
1965
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001966 /* Silently handle invalid parameters to CRT functions */
1967 SET_INVALID_PARAM_HANDLER;
1968
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 /* Let critical errors result in a failure, not in a dialog box. Required
1970 * for the timestamp test to work on removed floppies. */
1971 SetErrorMode(SEM_FAILCRITICALERRORS);
1972
1973 _fmode = O_BINARY; /* we do our own CR-LF translation */
1974
1975 /* Specify window size. Is there a place to get the default from? */
1976 Rows = 25;
1977 Columns = 80;
1978
1979 /* Look for 'vimrun' */
1980 if (!gui_is_win32s())
1981 {
1982 char_u vimrun_location[_MAX_PATH + 4];
1983
1984 /* First try in same directory as gvim.exe */
1985 STRCPY(vimrun_location, exe_name);
1986 STRCPY(gettail(vimrun_location), "vimrun.exe");
1987 if (mch_getperm(vimrun_location) >= 0)
1988 {
1989 if (*skiptowhite(vimrun_location) != NUL)
1990 {
1991 /* Enclose path with white space in double quotes. */
1992 mch_memmove(vimrun_location + 1, vimrun_location,
1993 STRLEN(vimrun_location) + 1);
1994 *vimrun_location = '"';
1995 STRCPY(gettail(vimrun_location), "vimrun\" ");
1996 }
1997 else
1998 STRCPY(gettail(vimrun_location), "vimrun ");
1999
2000 vimrun_path = (char *)vim_strsave(vimrun_location);
2001 s_dont_use_vimrun = FALSE;
2002 }
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002003 else if (executable_exists("vimrun.exe", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 s_dont_use_vimrun = FALSE;
2005
2006 /* Don't give the warning for a missing vimrun.exe right now, but only
2007 * when vimrun was supposed to be used. Don't bother people that do
2008 * not need vimrun.exe. */
2009 if (s_dont_use_vimrun)
2010 need_vimrun_warning = TRUE;
2011 }
2012
2013 /*
2014 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2015 * Otherwise the default "findstr /n" is used.
2016 */
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002017 if (!executable_exists("findstr.exe", NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2019
2020#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002021 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022#endif
2023}
2024
2025
2026#else /* FEAT_GUI_W32 */
2027
2028#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2029#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2030
2031/*
2032 * ClearConsoleBuffer()
2033 * Description:
2034 * Clears the entire contents of the console screen buffer, using the
2035 * specified attribute.
2036 * Returns:
2037 * TRUE on success
2038 */
2039 static BOOL
2040ClearConsoleBuffer(WORD wAttribute)
2041{
2042 CONSOLE_SCREEN_BUFFER_INFO csbi;
2043 COORD coord;
2044 DWORD NumCells, dummy;
2045
2046 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2047 return FALSE;
2048
2049 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2050 coord.X = 0;
2051 coord.Y = 0;
2052 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2053 coord, &dummy))
2054 {
2055 return FALSE;
2056 }
2057 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2058 coord, &dummy))
2059 {
2060 return FALSE;
2061 }
2062
2063 return TRUE;
2064}
2065
2066/*
2067 * FitConsoleWindow()
2068 * Description:
2069 * Checks if the console window will fit within given buffer dimensions.
2070 * Also, if requested, will shrink the window to fit.
2071 * Returns:
2072 * TRUE on success
2073 */
2074 static BOOL
2075FitConsoleWindow(
2076 COORD dwBufferSize,
2077 BOOL WantAdjust)
2078{
2079 CONSOLE_SCREEN_BUFFER_INFO csbi;
2080 COORD dwWindowSize;
2081 BOOL NeedAdjust = FALSE;
2082
2083 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2084 {
2085 /*
2086 * A buffer resize will fail if the current console window does
2087 * not lie completely within that buffer. To avoid this, we might
2088 * have to move and possibly shrink the window.
2089 */
2090 if (csbi.srWindow.Right >= dwBufferSize.X)
2091 {
2092 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2093 if (dwWindowSize.X > dwBufferSize.X)
2094 dwWindowSize.X = dwBufferSize.X;
2095 csbi.srWindow.Right = dwBufferSize.X - 1;
2096 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2097 NeedAdjust = TRUE;
2098 }
2099 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2100 {
2101 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2102 if (dwWindowSize.Y > dwBufferSize.Y)
2103 dwWindowSize.Y = dwBufferSize.Y;
2104 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2105 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2106 NeedAdjust = TRUE;
2107 }
2108 if (NeedAdjust && WantAdjust)
2109 {
2110 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2111 return FALSE;
2112 }
2113 return TRUE;
2114 }
2115
2116 return FALSE;
2117}
2118
2119typedef struct ConsoleBufferStruct
2120{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002121 BOOL IsValid;
2122 CONSOLE_SCREEN_BUFFER_INFO Info;
2123 PCHAR_INFO Buffer;
2124 COORD BufferSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125} ConsoleBuffer;
2126
2127/*
2128 * SaveConsoleBuffer()
2129 * Description:
2130 * Saves important information about the console buffer, including the
2131 * actual buffer contents. The saved information is suitable for later
2132 * restoration by RestoreConsoleBuffer().
2133 * Returns:
2134 * TRUE if all information was saved; FALSE otherwise
2135 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2136 */
2137 static BOOL
2138SaveConsoleBuffer(
2139 ConsoleBuffer *cb)
2140{
2141 DWORD NumCells;
2142 COORD BufferCoord;
2143 SMALL_RECT ReadRegion;
2144 WORD Y, Y_incr;
2145
2146 if (cb == NULL)
2147 return FALSE;
2148
2149 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
2150 {
2151 cb->IsValid = FALSE;
2152 return FALSE;
2153 }
2154 cb->IsValid = TRUE;
2155
2156 /*
2157 * Allocate a buffer large enough to hold the entire console screen
2158 * buffer. If this ConsoleBuffer structure has already been initialized
2159 * with a buffer of the correct size, then just use that one.
2160 */
2161 if (!cb->IsValid || cb->Buffer == NULL ||
2162 cb->BufferSize.X != cb->Info.dwSize.X ||
2163 cb->BufferSize.Y != cb->Info.dwSize.Y)
2164 {
2165 cb->BufferSize.X = cb->Info.dwSize.X;
2166 cb->BufferSize.Y = cb->Info.dwSize.Y;
2167 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01002168 vim_free(cb->Buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2170 if (cb->Buffer == NULL)
2171 return FALSE;
2172 }
2173
2174 /*
2175 * We will now copy the console screen buffer into our buffer.
2176 * ReadConsoleOutput() seems to be limited as far as how much you
2177 * can read at a time. Empirically, this number seems to be about
2178 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2179 * in chunks until it is all copied. The chunks will all have the
2180 * same horizontal characteristics, so initialize them now. The
2181 * height of each chunk will be (12000 / width).
2182 */
2183 BufferCoord.X = 0;
2184 ReadRegion.Left = 0;
2185 ReadRegion.Right = cb->Info.dwSize.X - 1;
2186 Y_incr = 12000 / cb->Info.dwSize.X;
2187 for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr)
2188 {
2189 /*
2190 * Read into position (0, Y) in our buffer.
2191 */
2192 BufferCoord.Y = Y;
2193 /*
2194 * Read the region whose top left corner is (0, Y) and whose bottom
2195 * right corner is (width - 1, Y + Y_incr - 1). This should define
2196 * a region of size width by Y_incr. Don't worry if this region is
2197 * too large for the remaining buffer; it will be cropped.
2198 */
2199 ReadRegion.Top = Y;
2200 ReadRegion.Bottom = Y + Y_incr - 1;
2201 if (!ReadConsoleOutput(g_hConOut, /* output handle */
2202 cb->Buffer, /* our buffer */
2203 cb->BufferSize, /* dimensions of our buffer */
2204 BufferCoord, /* offset in our buffer */
2205 &ReadRegion)) /* region to save */
2206 {
2207 vim_free(cb->Buffer);
2208 cb->Buffer = NULL;
2209 return FALSE;
2210 }
2211 }
2212
2213 return TRUE;
2214}
2215
2216/*
2217 * RestoreConsoleBuffer()
2218 * Description:
2219 * Restores important information about the console buffer, including the
2220 * actual buffer contents, if desired. The information to restore is in
2221 * the same format used by SaveConsoleBuffer().
2222 * Returns:
2223 * TRUE on success
2224 */
2225 static BOOL
2226RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002227 ConsoleBuffer *cb,
2228 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229{
2230 COORD BufferCoord;
2231 SMALL_RECT WriteRegion;
2232
2233 if (cb == NULL || !cb->IsValid)
2234 return FALSE;
2235
2236 /*
2237 * Before restoring the buffer contents, clear the current buffer, and
2238 * restore the cursor position and window information. Doing this now
2239 * prevents old buffer contents from "flashing" onto the screen.
2240 */
2241 if (RestoreScreen)
2242 ClearConsoleBuffer(cb->Info.wAttributes);
2243
2244 FitConsoleWindow(cb->Info.dwSize, TRUE);
2245 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2246 return FALSE;
2247 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2248 return FALSE;
2249
2250 if (!RestoreScreen)
2251 {
2252 /*
2253 * No need to restore the screen buffer contents, so we're done.
2254 */
2255 return TRUE;
2256 }
2257
2258 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2259 return FALSE;
2260 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2261 return FALSE;
2262
2263 /*
2264 * Restore the screen buffer contents.
2265 */
2266 if (cb->Buffer != NULL)
2267 {
2268 BufferCoord.X = 0;
2269 BufferCoord.Y = 0;
2270 WriteRegion.Left = 0;
2271 WriteRegion.Top = 0;
2272 WriteRegion.Right = cb->Info.dwSize.X - 1;
2273 WriteRegion.Bottom = cb->Info.dwSize.Y - 1;
2274 if (!WriteConsoleOutput(g_hConOut, /* output handle */
2275 cb->Buffer, /* our buffer */
2276 cb->BufferSize, /* dimensions of our buffer */
2277 BufferCoord, /* offset in our buffer */
2278 &WriteRegion)) /* region to restore */
2279 {
2280 return FALSE;
2281 }
2282 }
2283
2284 return TRUE;
2285}
2286
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002287#define FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288#ifdef FEAT_RESTORE_ORIG_SCREEN
2289static ConsoleBuffer g_cbOrig = { 0 };
2290#endif
2291static ConsoleBuffer g_cbNonTermcap = { 0 };
2292static ConsoleBuffer g_cbTermcap = { 0 };
2293
2294#ifdef FEAT_TITLE
2295#ifdef __BORLANDC__
2296typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2297#else
2298typedef WINBASEAPI HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
2299#endif
2300char g_szOrigTitle[256] = { 0 };
2301HWND g_hWnd = NULL; /* also used in os_mswin.c */
2302static HICON g_hOrigIconSmall = NULL;
2303static HICON g_hOrigIcon = NULL;
2304static HICON g_hVimIcon = NULL;
2305static BOOL g_fCanChangeIcon = FALSE;
2306
2307/* ICON* are not defined in VC++ 4.0 */
2308#ifndef ICON_SMALL
2309#define ICON_SMALL 0
2310#endif
2311#ifndef ICON_BIG
2312#define ICON_BIG 1
2313#endif
2314/*
2315 * GetConsoleIcon()
2316 * Description:
2317 * Attempts to retrieve the small icon and/or the big icon currently in
2318 * use by a given window.
2319 * Returns:
2320 * TRUE on success
2321 */
2322 static BOOL
2323GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002324 HWND hWnd,
2325 HICON *phIconSmall,
2326 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327{
2328 if (hWnd == NULL)
2329 return FALSE;
2330
2331 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002332 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2333 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002335 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2336 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 return TRUE;
2338}
2339
2340/*
2341 * SetConsoleIcon()
2342 * Description:
2343 * Attempts to change the small icon and/or the big icon currently in
2344 * use by a given window.
2345 * Returns:
2346 * TRUE on success
2347 */
2348 static BOOL
2349SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002350 HWND hWnd,
2351 HICON hIconSmall,
2352 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002354 HICON hPrevIconSmall;
2355 HICON hPrevIcon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356
2357 if (hWnd == NULL)
2358 return FALSE;
2359
2360 if (hIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002361 hPrevIconSmall = (HICON)SendMessage(hWnd, WM_SETICON,
2362 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 if (hIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002364 hPrevIcon = (HICON)SendMessage(hWnd, WM_SETICON,
2365 (WPARAM)ICON_BIG,(LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 return TRUE;
2367}
2368
2369/*
2370 * SaveConsoleTitleAndIcon()
2371 * Description:
2372 * Saves the current console window title in g_szOrigTitle, for later
2373 * restoration. Also, attempts to obtain a handle to the console window,
2374 * and use it to save the small and big icons currently in use by the
2375 * console window. This is not always possible on some versions of Windows;
2376 * nor is it possible when running Vim remotely using Telnet (since the
2377 * console window the user sees is owned by a remote process).
2378 */
2379 static void
2380SaveConsoleTitleAndIcon(void)
2381{
2382 GETCONSOLEWINDOWPROC GetConsoleWindowProc;
2383
2384 /* Save the original title. */
2385 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2386 return;
2387
2388 /*
2389 * Obtain a handle to the console window using GetConsoleWindow() from
2390 * KERNEL32.DLL; we need to handle in order to change the window icon.
2391 * This function only exists on NT-based Windows, starting with Windows
2392 * 2000. On older operating systems, we can't change the window icon
2393 * anyway.
2394 */
2395 if ((GetConsoleWindowProc = (GETCONSOLEWINDOWPROC)
2396 GetProcAddress(GetModuleHandle("KERNEL32.DLL"),
2397 "GetConsoleWindow")) != NULL)
2398 {
2399 g_hWnd = (*GetConsoleWindowProc)();
2400 }
2401 if (g_hWnd == NULL)
2402 return;
2403
2404 /* Save the original console window icon. */
2405 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2406 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2407 return;
2408
2409 /* Extract the first icon contained in the Vim executable. */
2410 g_hVimIcon = ExtractIcon(NULL, exe_name, 0);
2411 if (g_hVimIcon != NULL)
2412 g_fCanChangeIcon = TRUE;
2413}
2414#endif
2415
2416static int g_fWindInitCalled = FALSE;
2417static int g_fTermcapMode = FALSE;
2418static CONSOLE_CURSOR_INFO g_cci;
2419static DWORD g_cmodein = 0;
2420static DWORD g_cmodeout = 0;
2421
2422/*
2423 * non-GUI version of mch_init().
2424 */
2425 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002426mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427{
2428#ifndef FEAT_RESTORE_ORIG_SCREEN
2429 CONSOLE_SCREEN_BUFFER_INFO csbi;
2430#endif
2431#ifndef __MINGW32__
2432 extern int _fmode;
2433#endif
2434
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002435 /* Silently handle invalid parameters to CRT functions */
2436 SET_INVALID_PARAM_HANDLER;
2437
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 /* Let critical errors result in a failure, not in a dialog box. Required
2439 * for the timestamp test to work on removed floppies. */
2440 SetErrorMode(SEM_FAILCRITICALERRORS);
2441
2442 _fmode = O_BINARY; /* we do our own CR-LF translation */
2443 out_flush();
2444
2445 /* Obtain handles for the standard Console I/O devices */
2446 if (read_cmd_fd == 0)
2447 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2448 else
2449 create_conin();
2450 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2451
2452#ifdef FEAT_RESTORE_ORIG_SCREEN
2453 /* Save the initial console buffer for later restoration */
2454 SaveConsoleBuffer(&g_cbOrig);
2455 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2456#else
2457 /* Get current text attributes */
2458 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2459 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2460#endif
2461 if (cterm_normal_fg_color == 0)
2462 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2463 if (cterm_normal_bg_color == 0)
2464 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2465
2466 /* set termcap codes to current text attributes */
2467 update_tcap(g_attrCurrent);
2468
2469 GetConsoleCursorInfo(g_hConOut, &g_cci);
2470 GetConsoleMode(g_hConIn, &g_cmodein);
2471 GetConsoleMode(g_hConOut, &g_cmodeout);
2472
2473#ifdef FEAT_TITLE
2474 SaveConsoleTitleAndIcon();
2475 /*
2476 * Set both the small and big icons of the console window to Vim's icon.
2477 * Note that Vim presently only has one size of icon (32x32), but it
2478 * automatically gets scaled down to 16x16 when setting the small icon.
2479 */
2480 if (g_fCanChangeIcon)
2481 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2482#endif
2483
2484 ui_get_shellsize();
2485
2486#ifdef MCH_WRITE_DUMP
2487 fdDump = fopen("dump", "wt");
2488
2489 if (fdDump)
2490 {
2491 time_t t;
2492
2493 time(&t);
2494 fputs(ctime(&t), fdDump);
2495 fflush(fdDump);
2496 }
2497#endif
2498
2499 g_fWindInitCalled = TRUE;
2500
2501#ifdef FEAT_MOUSE
2502 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2503#endif
2504
2505#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002506 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507#endif
2508
2509 /* This will be NULL on anything but NT 4.0 */
2510 s_pfnGetConsoleKeyboardLayoutName =
2511 (PFNGCKLN) GetProcAddress(GetModuleHandle("kernel32.dll"),
2512 "GetConsoleKeyboardLayoutNameA");
2513}
2514
2515/*
2516 * non-GUI version of mch_exit().
2517 * Shut down and exit with status `r'
2518 * Careful: mch_exit() may be called before mch_init()!
2519 */
2520 void
2521mch_exit(int r)
2522{
2523 stoptermcap();
2524
2525 if (g_fWindInitCalled)
2526 settmode(TMODE_COOK);
2527
2528 ml_close_all(TRUE); /* remove all memfiles */
2529
2530 if (g_fWindInitCalled)
2531 {
2532#ifdef FEAT_TITLE
2533 mch_restore_title(3);
2534 /*
2535 * Restore both the small and big icons of the console window to
2536 * what they were at startup. Don't do this when the window is
2537 * closed, Vim would hang here.
2538 */
2539 if (g_fCanChangeIcon && !g_fForceExit)
2540 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2541#endif
2542
2543#ifdef MCH_WRITE_DUMP
2544 if (fdDump)
2545 {
2546 time_t t;
2547
2548 time(&t);
2549 fputs(ctime(&t), fdDump);
2550 fclose(fdDump);
2551 }
2552 fdDump = NULL;
2553#endif
2554 }
2555
2556 SetConsoleCursorInfo(g_hConOut, &g_cci);
2557 SetConsoleMode(g_hConIn, g_cmodein);
2558 SetConsoleMode(g_hConOut, g_cmodeout);
2559
2560#ifdef DYNAMIC_GETTEXT
2561 dyn_libintl_end();
2562#endif
2563
2564 exit(r);
2565}
2566#endif /* !FEAT_GUI_W32 */
2567
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568/*
2569 * Do we have an interactive window?
2570 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002571/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 int
2573mch_check_win(
2574 int argc,
2575 char **argv)
2576{
2577 get_exe_name();
2578
2579#ifdef FEAT_GUI_W32
2580 return OK; /* GUI always has a tty */
2581#else
2582 if (isatty(1))
2583 return OK;
2584 return FAIL;
2585#endif
2586}
2587
2588
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002589#ifdef FEAT_MBYTE
2590/*
2591 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2592 * if it already exists. When "len" is > 0, also expand short to long
2593 * filenames.
2594 * Return FAIL if wide functions are not available, OK otherwise.
2595 * NOTE: much of this is identical to fname_case(), keep in sync!
2596 */
2597 static int
2598fname_casew(
2599 WCHAR *name,
2600 int len)
2601{
2602 WCHAR szTrueName[_MAX_PATH + 2];
2603 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2604 WCHAR *ptrue, *ptruePrev;
2605 WCHAR *porig, *porigPrev;
2606 int flen;
2607 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002608 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002609 int c;
2610 int slen;
2611
2612 flen = (int)wcslen(name);
2613 if (flen > _MAX_PATH)
2614 return OK;
2615
2616 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2617
2618 /* Build the new name in szTrueName[] one component at a time. */
2619 porig = name;
2620 ptrue = szTrueName;
2621
2622 if (iswalpha(porig[0]) && porig[1] == L':')
2623 {
2624 /* copy leading drive letter */
2625 *ptrue++ = *porig++;
2626 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002627 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002628 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002629
2630 while (*porig != NUL)
2631 {
2632 /* copy \ characters */
2633 while (*porig == psepc)
2634 *ptrue++ = *porig++;
2635
2636 ptruePrev = ptrue;
2637 porigPrev = porig;
2638 while (*porig != NUL && *porig != psepc)
2639 {
2640 *ptrue++ = *porig++;
2641 }
2642 *ptrue = NUL;
2643
2644 /* To avoid a slow failure append "\*" when searching a directory,
2645 * server or network share. */
2646 wcscpy(szTrueNameTemp, szTrueName);
2647 slen = (int)wcslen(szTrueNameTemp);
2648 if (*porig == psepc && slen + 2 < _MAX_PATH)
2649 wcscpy(szTrueNameTemp + slen, L"\\*");
2650
2651 /* Skip "", "." and "..". */
2652 if (ptrue > ptruePrev
2653 && (ptruePrev[0] != L'.'
2654 || (ptruePrev[1] != NUL
2655 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2656 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2657 != INVALID_HANDLE_VALUE)
2658 {
2659 c = *porig;
2660 *porig = NUL;
2661
2662 /* Only use the match when it's the same name (ignoring case) or
2663 * expansion is allowed and there is a match with the short name
2664 * and there is enough room. */
2665 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2666 || (len > 0
2667 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2668 && (int)(ptruePrev - szTrueName)
2669 + (int)wcslen(fb.cFileName) < len)))
2670 {
2671 wcscpy(ptruePrev, fb.cFileName);
2672
2673 /* Look for exact match and prefer it if found. Must be a
2674 * long name, otherwise there would be only one match. */
2675 while (FindNextFileW(hFind, &fb))
2676 {
2677 if (*fb.cAlternateFileName != NUL
2678 && (wcscoll(porigPrev, fb.cFileName) == 0
2679 || (len > 0
2680 && (_wcsicoll(porigPrev,
2681 fb.cAlternateFileName) == 0
2682 && (int)(ptruePrev - szTrueName)
2683 + (int)wcslen(fb.cFileName) < len))))
2684 {
2685 wcscpy(ptruePrev, fb.cFileName);
2686 break;
2687 }
2688 }
2689 }
2690 FindClose(hFind);
2691 *porig = c;
2692 ptrue = ptruePrev + wcslen(ptruePrev);
2693 }
2694 else if (hFind == INVALID_HANDLE_VALUE
2695 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2696 return FAIL;
2697 }
2698
2699 wcscpy(name, szTrueName);
2700 return OK;
2701}
2702#endif
2703
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704/*
2705 * fname_case(): Set the case of the file name, if it already exists.
2706 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002707 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 */
2709 void
2710fname_case(
2711 char_u *name,
2712 int len)
2713{
2714 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002715 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716 char *ptrue, *ptruePrev;
2717 char *porig, *porigPrev;
2718 int flen;
2719 WIN32_FIND_DATA fb;
2720 HANDLE hFind;
2721 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002722 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002724 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002725 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 return;
2727
2728 slash_adjust(name);
2729
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002730#ifdef FEAT_MBYTE
2731 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2732 {
2733 WCHAR *p = enc_to_utf16(name, NULL);
2734
2735 if (p != NULL)
2736 {
2737 char_u *q;
2738 WCHAR buf[_MAX_PATH + 2];
2739
2740 wcscpy(buf, p);
2741 vim_free(p);
2742
2743 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2744 {
2745 q = utf16_to_enc(buf, NULL);
2746 if (q != NULL)
2747 {
2748 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2749 vim_free(q);
2750 return;
2751 }
2752 }
2753 }
2754 /* Retry with non-wide function (for Windows 98). */
2755 }
2756#endif
2757
2758 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2759 * So we should check this after calling wide function. */
2760 if (flen > _MAX_PATH)
2761 return;
2762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 /* Build the new name in szTrueName[] one component at a time. */
2764 porig = name;
2765 ptrue = szTrueName;
2766
2767 if (isalpha(porig[0]) && porig[1] == ':')
2768 {
2769 /* copy leading drive letter */
2770 *ptrue++ = *porig++;
2771 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002773 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
2775 while (*porig != NUL)
2776 {
2777 /* copy \ characters */
2778 while (*porig == psepc)
2779 *ptrue++ = *porig++;
2780
2781 ptruePrev = ptrue;
2782 porigPrev = porig;
2783 while (*porig != NUL && *porig != psepc)
2784 {
2785#ifdef FEAT_MBYTE
2786 int l;
2787
2788 if (enc_dbcs)
2789 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002790 l = (*mb_ptr2len)(porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 while (--l >= 0)
2792 *ptrue++ = *porig++;
2793 }
2794 else
2795#endif
2796 *ptrue++ = *porig++;
2797 }
2798 *ptrue = NUL;
2799
Bram Moolenaar464c9252010-10-13 20:37:41 +02002800 /* To avoid a slow failure append "\*" when searching a directory,
2801 * server or network share. */
2802 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002803 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002804 if (*porig == psepc && slen + 2 < _MAX_PATH)
2805 STRCPY(szTrueNameTemp + slen, "\\*");
2806
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 /* Skip "", "." and "..". */
2808 if (ptrue > ptruePrev
2809 && (ptruePrev[0] != '.'
2810 || (ptruePrev[1] != NUL
2811 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002812 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 != INVALID_HANDLE_VALUE)
2814 {
2815 c = *porig;
2816 *porig = NUL;
2817
2818 /* Only use the match when it's the same name (ignoring case) or
2819 * expansion is allowed and there is a match with the short name
2820 * and there is enough room. */
2821 if (_stricoll(porigPrev, fb.cFileName) == 0
2822 || (len > 0
2823 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2824 && (int)(ptruePrev - szTrueName)
2825 + (int)strlen(fb.cFileName) < len)))
2826 {
2827 STRCPY(ptruePrev, fb.cFileName);
2828
2829 /* Look for exact match and prefer it if found. Must be a
2830 * long name, otherwise there would be only one match. */
2831 while (FindNextFile(hFind, &fb))
2832 {
2833 if (*fb.cAlternateFileName != NUL
2834 && (strcoll(porigPrev, fb.cFileName) == 0
2835 || (len > 0
2836 && (_stricoll(porigPrev,
2837 fb.cAlternateFileName) == 0
2838 && (int)(ptruePrev - szTrueName)
2839 + (int)strlen(fb.cFileName) < len))))
2840 {
2841 STRCPY(ptruePrev, fb.cFileName);
2842 break;
2843 }
2844 }
2845 }
2846 FindClose(hFind);
2847 *porig = c;
2848 ptrue = ptruePrev + strlen(ptruePrev);
2849 }
2850 }
2851
2852 STRCPY(name, szTrueName);
2853}
2854
2855
2856/*
2857 * Insert user name in s[len].
2858 */
2859 int
2860mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002861 char_u *s,
2862 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002864 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 DWORD cch = sizeof szUserName;
2866
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002867#ifdef FEAT_MBYTE
2868 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2869 {
2870 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2871 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2872
2873 if (GetUserNameW(wszUserName, &wcch))
2874 {
2875 char_u *p = utf16_to_enc(wszUserName, NULL);
2876
2877 if (p != NULL)
2878 {
2879 vim_strncpy(s, p, len - 1);
2880 vim_free(p);
2881 return OK;
2882 }
2883 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002884 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2885 return FAIL;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002886 /* Retry with non-wide function (for Windows 98). */
2887 }
2888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 if (GetUserName(szUserName, &cch))
2890 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002891 vim_strncpy(s, szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 return OK;
2893 }
2894 s[0] = NUL;
2895 return FAIL;
2896}
2897
2898
2899/*
2900 * Insert host name in s[len].
2901 */
2902 void
2903mch_get_host_name(
2904 char_u *s,
2905 int len)
2906{
2907 DWORD cch = len;
2908
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002909#ifdef FEAT_MBYTE
2910 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2911 {
2912 WCHAR wszHostName[256 + 1];
2913 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2914
2915 if (GetComputerNameW(wszHostName, &wcch))
2916 {
2917 char_u *p = utf16_to_enc(wszHostName, NULL);
2918
2919 if (p != NULL)
2920 {
2921 vim_strncpy(s, p, len - 1);
2922 vim_free(p);
2923 return;
2924 }
2925 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002926 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2927 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002928 /* Retry with non-wide function (for Windows 98). */
2929 }
2930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 if (!GetComputerName(s, &cch))
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002932 vim_strncpy(s, "PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933}
2934
2935
2936/*
2937 * return process ID
2938 */
2939 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002940mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941{
2942 return (long)GetCurrentProcessId();
2943}
2944
2945
2946/*
2947 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2948 * Return OK for success, FAIL for failure.
2949 */
2950 int
2951mch_dirname(
2952 char_u *buf,
2953 int len)
2954{
2955 /*
2956 * Originally this was:
2957 * return (getcwd(buf, len) != NULL ? OK : FAIL);
2958 * But the Win32s known bug list says that getcwd() doesn't work
2959 * so use the Win32 system call instead. <Negri>
2960 */
2961#ifdef FEAT_MBYTE
2962 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2963 {
2964 WCHAR wbuf[_MAX_PATH + 1];
2965
2966 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
2967 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002968 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969
2970 if (p != NULL)
2971 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00002972 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 vim_free(p);
2974 return OK;
2975 }
2976 }
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002977 else if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
2978 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 /* Retry with non-wide function (for Windows 98). */
2980 }
2981#endif
2982 return (GetCurrentDirectory(len, buf) != 0 ? OK : FAIL);
2983}
2984
2985/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01002986 * Get file permissions for "name".
2987 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 */
2989 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002990mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02002992 struct stat st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01002993 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994
Bram Moolenaar12b559e2013-06-12 22:41:37 +02002995 n = mch_stat(name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01002996 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997}
2998
2999
3000/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003001 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003002 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003003 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 */
3005 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003006mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003008 long n = -1;
3009
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010#ifdef FEAT_MBYTE
3011 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3012 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003013 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
3015 if (p != NULL)
3016 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003017 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01003019 if (n == -1 && g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003020 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 /* Retry with non-wide function (for Windows 98). */
3022 }
3023 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003024 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025#endif
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003026 n = _chmod(name, perm);
3027 if (n == -1)
3028 return FAIL;
3029
3030 win32_set_archive(name);
3031
3032 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
3035/*
3036 * Set hidden flag for "name".
3037 */
3038 void
3039mch_hide(char_u *name)
3040{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003041 int attrs = win32_getattrs(name);
3042 if (attrs == -1)
3043 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003045 attrs |= FILE_ATTRIBUTE_HIDDEN;
3046 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047}
3048
3049/*
3050 * return TRUE if "name" is a directory
3051 * return FALSE if "name" is not a directory or upon error
3052 */
3053 int
3054mch_isdir(char_u *name)
3055{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003056 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057
3058 if (f == -1)
3059 return FALSE; /* file does not exist at all */
3060
3061 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3062}
3063
3064/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003065 * Create directory "name".
3066 * Return 0 on success, -1 on error.
3067 */
3068 int
3069mch_mkdir(char_u *name)
3070{
3071#ifdef FEAT_MBYTE
3072 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3073 {
3074 WCHAR *p;
3075 int retval;
3076
3077 p = enc_to_utf16(name, NULL);
3078 if (p == NULL)
3079 return -1;
3080 retval = _wmkdir(p);
3081 vim_free(p);
3082 return retval;
3083 }
3084#endif
3085 return _mkdir(name);
3086}
3087
3088/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003089 * Return TRUE if file "fname" has more than one link.
3090 */
3091 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003092mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003093{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003094 BY_HANDLE_FILE_INFORMATION info;
3095
3096 return win32_fileinfo(fname, &info) == FILEINFO_OK
3097 && info.nNumberOfLinks > 1;
3098}
3099
3100/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003101 * Return TRUE if file "fname" is a symbolic link.
3102 */
3103 int
3104mch_is_symbolic_link(char_u *fname)
3105{
3106 HANDLE hFind;
3107 int res = FALSE;
3108 WIN32_FIND_DATAA findDataA;
3109 DWORD fileFlags = 0, reparseTag = 0;
3110#ifdef FEAT_MBYTE
3111 WCHAR *wn = NULL;
3112 WIN32_FIND_DATAW findDataW;
3113
3114 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3115 wn = enc_to_utf16(fname, NULL);
3116 if (wn != NULL)
3117 {
3118 hFind = FindFirstFileW(wn, &findDataW);
3119 vim_free(wn);
3120 if (hFind == INVALID_HANDLE_VALUE
3121 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3122 {
3123 /* Retry with non-wide function (for Windows 98). */
3124 hFind = FindFirstFile(fname, &findDataA);
3125 if (hFind != INVALID_HANDLE_VALUE)
3126 {
3127 fileFlags = findDataA.dwFileAttributes;
3128 reparseTag = findDataA.dwReserved0;
3129 }
3130 }
3131 else
3132 {
3133 fileFlags = findDataW.dwFileAttributes;
3134 reparseTag = findDataW.dwReserved0;
3135 }
3136 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003137 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003138#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003139 {
3140 hFind = FindFirstFile(fname, &findDataA);
3141 if (hFind != INVALID_HANDLE_VALUE)
3142 {
3143 fileFlags = findDataA.dwFileAttributes;
3144 reparseTag = findDataA.dwReserved0;
3145 }
3146 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003147
3148 if (hFind != INVALID_HANDLE_VALUE)
3149 FindClose(hFind);
3150
3151 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
3152 && reparseTag == IO_REPARSE_TAG_SYMLINK)
3153 res = TRUE;
3154
3155 return res;
3156}
3157
3158/*
3159 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3160 * link.
3161 */
3162 int
3163mch_is_linked(char_u *fname)
3164{
3165 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3166 return TRUE;
3167 return FALSE;
3168}
3169
3170/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003171 * Get the by-handle-file-information for "fname".
3172 * Returns FILEINFO_OK when OK.
3173 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3174 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3175 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3176 */
3177 int
3178win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3179{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003180 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003181 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003182#ifdef FEAT_MBYTE
3183 WCHAR *wn = NULL;
3184
3185 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003186 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003187 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003188 if (wn == NULL)
3189 res = FILEINFO_ENC_FAIL;
3190 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003191 if (wn != NULL)
3192 {
3193 hFile = CreateFileW(wn, /* file name */
3194 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003195 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003196 NULL, /* security descriptor */
3197 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003198 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003199 NULL); /* handle to template file */
3200 if (hFile == INVALID_HANDLE_VALUE
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003201 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003202 {
3203 /* Retry with non-wide function (for Windows 98). */
3204 vim_free(wn);
3205 wn = NULL;
3206 }
3207 }
3208 if (wn == NULL)
3209#endif
3210 hFile = CreateFile(fname, /* file name */
3211 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003212 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003213 NULL, /* security descriptor */
3214 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003215 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003216 NULL); /* handle to template file */
3217
3218 if (hFile != INVALID_HANDLE_VALUE)
3219 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003220 if (GetFileInformationByHandle(hFile, info) != 0)
3221 res = FILEINFO_OK;
3222 else
3223 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003224 CloseHandle(hFile);
3225 }
3226
3227#ifdef FEAT_MBYTE
3228 vim_free(wn);
3229#endif
3230 return res;
3231}
3232
3233/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003234 * get file attributes for `name'
3235 * -1 : error
3236 * else FILE_ATTRIBUTE_* defined in winnt.h
3237 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003238 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003239win32_getattrs(char_u *name)
3240{
3241 int attr;
3242#ifdef FEAT_MBYTE
3243 WCHAR *p = NULL;
3244
3245 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3246 p = enc_to_utf16(name, NULL);
3247
3248 if (p != NULL)
3249 {
3250 attr = GetFileAttributesW(p);
3251 if (attr < 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3252 {
3253 /* Retry with non-wide function (for Windows 98). */
3254 vim_free(p);
3255 p = NULL;
3256 }
3257 }
3258 if (p == NULL)
3259#endif
3260 attr = GetFileAttributes((char *)name);
3261#ifdef FEAT_MBYTE
3262 vim_free(p);
3263#endif
3264 return attr;
3265}
3266
3267/*
3268 * set file attributes for `name' to `attrs'
3269 *
3270 * return -1 for failure, 0 otherwise
3271 */
3272 static
3273 int
3274win32_setattrs(char_u *name, int attrs)
3275{
3276 int res;
3277#ifdef FEAT_MBYTE
3278 WCHAR *p = NULL;
3279
3280 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3281 p = enc_to_utf16(name, NULL);
3282
3283 if (p != NULL)
3284 {
3285 res = SetFileAttributesW(p, attrs);
3286 if (res == FALSE
3287 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3288 {
3289 /* Retry with non-wide function (for Windows 98). */
3290 vim_free(p);
3291 p = NULL;
3292 }
3293 }
3294 if (p == NULL)
3295#endif
3296 res = SetFileAttributes((char *)name, attrs);
3297#ifdef FEAT_MBYTE
3298 vim_free(p);
3299#endif
3300 return res ? 0 : -1;
3301}
3302
3303/*
3304 * Set archive flag for "name".
3305 */
3306 static
3307 int
3308win32_set_archive(char_u *name)
3309{
3310 int attrs = win32_getattrs(name);
3311 if (attrs == -1)
3312 return -1;
3313
3314 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3315 return win32_setattrs(name, attrs);
3316}
3317
3318/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 * Return TRUE if file or directory "name" is writable (not readonly).
3320 * Strange semantics of Win32: a readonly directory is writable, but you can't
3321 * delete a file. Let's say this means it is writable.
3322 */
3323 int
3324mch_writable(char_u *name)
3325{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003326 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003328 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3329 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330}
3331
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332/*
3333 * Return 1 if "name" can be executed, 0 if not.
3334 * Return -1 if unknown.
3335 */
3336 int
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003337mch_can_exe(char_u *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003339 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003340 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003341 char_u *p;
3342
3343 if (len >= _MAX_PATH) /* safety check */
3344 return FALSE;
3345
3346 /* If there already is an extension try using the name directly. Also do
3347 * this with a Unix-shell like 'shell'. */
3348 if (vim_strchr(gettail(name), '.') != NULL
3349 || strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003350 if (executable_exists((char *)name, path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003351 return TRUE;
3352
3353 /*
3354 * Loop over all extensions in $PATHEXT.
3355 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003356 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003357 p = mch_getenv("PATHEXT");
3358 if (p == NULL)
3359 p = (char_u *)".com;.exe;.bat;.cmd";
3360 while (*p)
3361 {
3362 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3363 {
3364 /* A single "." means no extension is added. */
3365 buf[len] = NUL;
3366 ++p;
3367 if (*p)
3368 ++p;
3369 }
3370 else
3371 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003372 if (executable_exists((char *)buf, path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003373 return TRUE;
3374 }
3375 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377
3378/*
3379 * Check what "name" is:
3380 * NODE_NORMAL: file or directory (or doesn't exist)
3381 * NODE_WRITABLE: writable device, socket, fifo, etc.
3382 * NODE_OTHER: non-writable things
3383 */
3384 int
3385mch_nodetype(char_u *name)
3386{
3387 HANDLE hFile;
3388 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003389#ifdef FEAT_MBYTE
3390 WCHAR *wn = NULL;
3391#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392
Bram Moolenaar043545e2006-10-10 16:44:07 +00003393 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3394 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3395 * here. */
3396 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3397 return NODE_WRITABLE;
3398
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003399#ifdef FEAT_MBYTE
3400 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3401 {
3402 wn = enc_to_utf16(name, NULL);
3403 if (wn != NULL)
3404 {
3405 hFile = CreateFileW(wn, /* file name */
3406 GENERIC_WRITE, /* access mode */
3407 0, /* share mode */
3408 NULL, /* security descriptor */
3409 OPEN_EXISTING, /* creation disposition */
3410 0, /* file attributes */
3411 NULL); /* handle to template file */
3412 if (hFile == INVALID_HANDLE_VALUE
3413 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
3414 {
3415 /* Retry with non-wide function (for Windows 98). */
3416 vim_free(wn);
3417 wn = NULL;
3418 }
3419 }
3420 }
3421 if (wn == NULL)
3422#endif
3423 hFile = CreateFile(name, /* file name */
3424 GENERIC_WRITE, /* access mode */
3425 0, /* share mode */
3426 NULL, /* security descriptor */
3427 OPEN_EXISTING, /* creation disposition */
3428 0, /* file attributes */
3429 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003431#ifdef FEAT_MBYTE
3432 vim_free(wn);
3433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 if (hFile == INVALID_HANDLE_VALUE)
3435 return NODE_NORMAL;
3436
3437 type = GetFileType(hFile);
3438 CloseHandle(hFile);
3439 if (type == FILE_TYPE_CHAR)
3440 return NODE_WRITABLE;
3441 if (type == FILE_TYPE_DISK)
3442 return NODE_NORMAL;
3443 return NODE_OTHER;
3444}
3445
3446#ifdef HAVE_ACL
3447struct my_acl
3448{
3449 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3450 PSID pSidOwner;
3451 PSID pSidGroup;
3452 PACL pDacl;
3453 PACL pSacl;
3454};
3455#endif
3456
3457/*
3458 * Return a pointer to the ACL of file "fname" in allocated memory.
3459 * Return NULL if the ACL is not available for whatever reason.
3460 */
3461 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003462mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463{
3464#ifndef HAVE_ACL
3465 return (vim_acl_T)NULL;
3466#else
3467 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003468 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469
3470 /* This only works on Windows NT and 2000. */
3471 if (g_PlatformId == VER_PLATFORM_WIN32_NT && advapi_lib != NULL)
3472 {
3473 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3474 if (p != NULL)
3475 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003476# ifdef FEAT_MBYTE
3477 WCHAR *wn = NULL;
3478
3479 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3480 wn = enc_to_utf16(fname, NULL);
3481 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003483 /* Try to retrieve the entire security descriptor. */
3484 err = pGetNamedSecurityInfoW(
3485 wn, // Abstract filename
3486 SE_FILE_OBJECT, // File Object
3487 OWNER_SECURITY_INFORMATION |
3488 GROUP_SECURITY_INFORMATION |
3489 DACL_SECURITY_INFORMATION |
3490 SACL_SECURITY_INFORMATION,
3491 &p->pSidOwner, // Ownership information.
3492 &p->pSidGroup, // Group membership.
3493 &p->pDacl, // Discretionary information.
3494 &p->pSacl, // For auditing purposes.
3495 &p->pSecurityDescriptor);
3496 if (err == ERROR_ACCESS_DENIED ||
3497 err == ERROR_PRIVILEGE_NOT_HELD)
3498 {
3499 /* Retrieve only DACL. */
3500 (void)pGetNamedSecurityInfoW(
3501 wn,
3502 SE_FILE_OBJECT,
3503 DACL_SECURITY_INFORMATION,
3504 NULL,
3505 NULL,
3506 &p->pDacl,
3507 NULL,
3508 &p->pSecurityDescriptor);
3509 }
3510 if (p->pSecurityDescriptor == NULL)
3511 {
3512 mch_free_acl((vim_acl_T)p);
3513 p = NULL;
3514 }
3515 vim_free(wn);
3516 }
3517 else
3518# endif
3519 {
3520 /* Try to retrieve the entire security descriptor. */
3521 err = pGetNamedSecurityInfo(
3522 (LPSTR)fname, // Abstract filename
3523 SE_FILE_OBJECT, // File Object
3524 OWNER_SECURITY_INFORMATION |
3525 GROUP_SECURITY_INFORMATION |
3526 DACL_SECURITY_INFORMATION |
3527 SACL_SECURITY_INFORMATION,
3528 &p->pSidOwner, // Ownership information.
3529 &p->pSidGroup, // Group membership.
3530 &p->pDacl, // Discretionary information.
3531 &p->pSacl, // For auditing purposes.
3532 &p->pSecurityDescriptor);
3533 if (err == ERROR_ACCESS_DENIED ||
3534 err == ERROR_PRIVILEGE_NOT_HELD)
3535 {
3536 /* Retrieve only DACL. */
3537 (void)pGetNamedSecurityInfo(
3538 (LPSTR)fname,
3539 SE_FILE_OBJECT,
3540 DACL_SECURITY_INFORMATION,
3541 NULL,
3542 NULL,
3543 &p->pDacl,
3544 NULL,
3545 &p->pSecurityDescriptor);
3546 }
3547 if (p->pSecurityDescriptor == NULL)
3548 {
3549 mch_free_acl((vim_acl_T)p);
3550 p = NULL;
3551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 }
3553 }
3554 }
3555
3556 return (vim_acl_T)p;
3557#endif
3558}
3559
Bram Moolenaar27515922013-06-29 15:36:26 +02003560#ifdef HAVE_ACL
3561/*
3562 * Check if "acl" contains inherited ACE.
3563 */
3564 static BOOL
3565is_acl_inherited(PACL acl)
3566{
3567 DWORD i;
3568 ACL_SIZE_INFORMATION acl_info;
3569 PACCESS_ALLOWED_ACE ace;
3570
3571 acl_info.AceCount = 0;
3572 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3573 for (i = 0; i < acl_info.AceCount; i++)
3574 {
3575 GetAce(acl, i, (LPVOID *)&ace);
3576 if (ace->Header.AceFlags & INHERITED_ACE)
3577 return TRUE;
3578 }
3579 return FALSE;
3580}
3581#endif
3582
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583/*
3584 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3585 * Errors are ignored.
3586 * This must only be called with "acl" equal to what mch_get_acl() returned.
3587 */
3588 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003589mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590{
3591#ifdef HAVE_ACL
3592 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003593 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594
3595 if (p != NULL && advapi_lib != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003596 {
3597# ifdef FEAT_MBYTE
3598 WCHAR *wn = NULL;
3599# endif
3600
3601 /* Set security flags */
3602 if (p->pSidOwner)
3603 sec_info |= OWNER_SECURITY_INFORMATION;
3604 if (p->pSidGroup)
3605 sec_info |= GROUP_SECURITY_INFORMATION;
3606 if (p->pDacl)
3607 {
3608 sec_info |= DACL_SECURITY_INFORMATION;
3609 /* Do not inherit its parent's DACL.
3610 * If the DACL is inherited, Cygwin permissions would be changed.
3611 */
3612 if (!is_acl_inherited(p->pDacl))
3613 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3614 }
3615 if (p->pSacl)
3616 sec_info |= SACL_SECURITY_INFORMATION;
3617
3618# ifdef FEAT_MBYTE
3619 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3620 wn = enc_to_utf16(fname, NULL);
3621 if (wn != NULL)
3622 {
3623 (void)pSetNamedSecurityInfoW(
3624 wn, // Abstract filename
3625 SE_FILE_OBJECT, // File Object
3626 sec_info,
3627 p->pSidOwner, // Ownership information.
3628 p->pSidGroup, // Group membership.
3629 p->pDacl, // Discretionary information.
3630 p->pSacl // For auditing purposes.
3631 );
3632 vim_free(wn);
3633 }
3634 else
3635# endif
3636 {
3637 (void)pSetNamedSecurityInfo(
3638 (LPSTR)fname, // Abstract filename
3639 SE_FILE_OBJECT, // File Object
3640 sec_info,
3641 p->pSidOwner, // Ownership information.
3642 p->pSidGroup, // Group membership.
3643 p->pDacl, // Discretionary information.
3644 p->pSacl // For auditing purposes.
3645 );
3646 }
3647 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648#endif
3649}
3650
3651 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003652mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653{
3654#ifdef HAVE_ACL
3655 struct my_acl *p = (struct my_acl *)acl;
3656
3657 if (p != NULL)
3658 {
3659 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3660 vim_free(p);
3661 }
3662#endif
3663}
3664
3665#ifndef FEAT_GUI_W32
3666
3667/*
3668 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3669 */
3670 static BOOL WINAPI
3671handler_routine(
3672 DWORD dwCtrlType)
3673{
3674 switch (dwCtrlType)
3675 {
3676 case CTRL_C_EVENT:
3677 if (ctrl_c_interrupts)
3678 g_fCtrlCPressed = TRUE;
3679 return TRUE;
3680
3681 case CTRL_BREAK_EVENT:
3682 g_fCBrkPressed = TRUE;
3683 return TRUE;
3684
3685 /* fatal events: shut down gracefully */
3686 case CTRL_CLOSE_EVENT:
3687 case CTRL_LOGOFF_EVENT:
3688 case CTRL_SHUTDOWN_EVENT:
3689 windgoto((int)Rows - 1, 0);
3690 g_fForceExit = TRUE;
3691
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003692 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 (dwCtrlType == CTRL_CLOSE_EVENT
3694 ? _("close")
3695 : dwCtrlType == CTRL_LOGOFF_EVENT
3696 ? _("logoff")
3697 : _("shutdown")));
3698#ifdef DEBUG
3699 OutputDebugString(IObuff);
3700#endif
3701
3702 preserve_exit(); /* output IObuff, preserve files and exit */
3703
3704 return TRUE; /* not reached */
3705
3706 default:
3707 return FALSE;
3708 }
3709}
3710
3711
3712/*
3713 * set the tty in (raw) ? "raw" : "cooked" mode
3714 */
3715 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003716mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717{
3718 DWORD cmodein;
3719 DWORD cmodeout;
3720 BOOL bEnableHandler;
3721
3722 GetConsoleMode(g_hConIn, &cmodein);
3723 GetConsoleMode(g_hConOut, &cmodeout);
3724 if (tmode == TMODE_RAW)
3725 {
3726 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3727 ENABLE_ECHO_INPUT);
3728#ifdef FEAT_MOUSE
3729 if (g_fMouseActive)
3730 cmodein |= ENABLE_MOUSE_INPUT;
3731#endif
3732 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3733 bEnableHandler = TRUE;
3734 }
3735 else /* cooked */
3736 {
3737 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3738 ENABLE_ECHO_INPUT);
3739 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3740 bEnableHandler = FALSE;
3741 }
3742 SetConsoleMode(g_hConIn, cmodein);
3743 SetConsoleMode(g_hConOut, cmodeout);
3744 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3745
3746#ifdef MCH_WRITE_DUMP
3747 if (fdDump)
3748 {
3749 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3750 tmode == TMODE_RAW ? "raw" :
3751 tmode == TMODE_COOK ? "cooked" : "normal",
3752 cmodein, cmodeout);
3753 fflush(fdDump);
3754 }
3755#endif
3756}
3757
3758
3759/*
3760 * Get the size of the current window in `Rows' and `Columns'
3761 * Return OK when size could be determined, FAIL otherwise.
3762 */
3763 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003764mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765{
3766 CONSOLE_SCREEN_BUFFER_INFO csbi;
3767
3768 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3769 {
3770 /*
3771 * For some reason, we are trying to get the screen dimensions
3772 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3773 * variables are really intended to mean the size of Vim screen
3774 * while in termcap mode.
3775 */
3776 Rows = g_cbTermcap.Info.dwSize.Y;
3777 Columns = g_cbTermcap.Info.dwSize.X;
3778 }
3779 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3780 {
3781 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3782 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3783 }
3784 else
3785 {
3786 Rows = 25;
3787 Columns = 80;
3788 }
3789 return OK;
3790}
3791
3792/*
3793 * Set a console window to `xSize' * `ySize'
3794 */
3795 static void
3796ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003797 HANDLE hConsole,
3798 int xSize,
3799 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800{
3801 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3802 SMALL_RECT srWindowRect; /* hold the new console size */
3803 COORD coordScreen;
3804
3805#ifdef MCH_WRITE_DUMP
3806 if (fdDump)
3807 {
3808 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3809 fflush(fdDump);
3810 }
3811#endif
3812
3813 /* get the largest size we can size the console window to */
3814 coordScreen = GetLargestConsoleWindowSize(hConsole);
3815
3816 /* define the new console window size and scroll position */
3817 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3818 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3819 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3820
3821 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3822 {
3823 int sx, sy;
3824
3825 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3826 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3827 if (sy < ySize || sx < xSize)
3828 {
3829 /*
3830 * Increasing number of lines/columns, do buffer first.
3831 * Use the maximal size in x and y direction.
3832 */
3833 if (sy < ySize)
3834 coordScreen.Y = ySize;
3835 else
3836 coordScreen.Y = sy;
3837 if (sx < xSize)
3838 coordScreen.X = xSize;
3839 else
3840 coordScreen.X = sx;
3841 SetConsoleScreenBufferSize(hConsole, coordScreen);
3842 }
3843 }
3844
3845 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3846 {
3847#ifdef MCH_WRITE_DUMP
3848 if (fdDump)
3849 {
3850 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3851 GetLastError());
3852 fflush(fdDump);
3853 }
3854#endif
3855 }
3856
3857 /* define the new console buffer size */
3858 coordScreen.X = xSize;
3859 coordScreen.Y = ySize;
3860
3861 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3862 {
3863#ifdef MCH_WRITE_DUMP
3864 if (fdDump)
3865 {
3866 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3867 GetLastError());
3868 fflush(fdDump);
3869 }
3870#endif
3871 }
3872}
3873
3874
3875/*
3876 * Set the console window to `Rows' * `Columns'
3877 */
3878 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003879mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
3881 COORD coordScreen;
3882
3883 /* Don't change window size while still starting up */
3884 if (suppress_winsize != 0)
3885 {
3886 suppress_winsize = 2;
3887 return;
3888 }
3889
3890 if (term_console)
3891 {
3892 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3893
3894 /* Clamp Rows and Columns to reasonable values */
3895 if (Rows > coordScreen.Y)
3896 Rows = coordScreen.Y;
3897 if (Columns > coordScreen.X)
3898 Columns = coordScreen.X;
3899
3900 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3901 }
3902}
3903
3904/*
3905 * Rows and/or Columns has changed.
3906 */
3907 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003908mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909{
3910 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3911}
3912
3913
3914/*
3915 * Called when started up, to set the winsize that was delayed.
3916 */
3917 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003918mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919{
3920 if (suppress_winsize == 2)
3921 {
3922 suppress_winsize = 0;
3923 mch_set_shellsize();
3924 shell_resized();
3925 }
3926 suppress_winsize = 0;
3927}
3928#endif /* FEAT_GUI_W32 */
3929
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003930 static BOOL
3931vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003932 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003933 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003934 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003935 STARTUPINFO *si,
3936 PROCESS_INFORMATION *pi)
3937{
3938# ifdef FEAT_MBYTE
3939 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3940 {
3941 WCHAR *wcmd = enc_to_utf16(cmd, NULL);
3942
3943 if (wcmd != NULL)
3944 {
3945 BOOL ret;
3946 ret = CreateProcessW(
3947 NULL, /* Executable name */
3948 wcmd, /* Command to execute */
3949 NULL, /* Process security attributes */
3950 NULL, /* Thread security attributes */
3951 inherit_handles, /* Inherit handles */
3952 flags, /* Creation flags */
3953 NULL, /* Environment */
3954 NULL, /* Current directory */
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003955 (LPSTARTUPINFOW)si, /* Startup information */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003956 pi); /* Process information */
3957 vim_free(wcmd);
3958 return ret;
3959 }
3960 }
3961#endif
3962 return CreateProcess(
3963 NULL, /* Executable name */
3964 cmd, /* Command to execute */
3965 NULL, /* Process security attributes */
3966 NULL, /* Thread security attributes */
3967 inherit_handles, /* Inherit handles */
3968 flags, /* Creation flags */
3969 NULL, /* Environment */
3970 NULL, /* Current directory */
3971 si, /* Startup information */
3972 pi); /* Process information */
3973}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
3975
3976#if defined(FEAT_GUI_W32) || defined(PROTO)
3977
3978/*
3979 * Specialised version of system() for Win32 GUI mode.
3980 * This version proceeds as follows:
3981 * 1. Create a console window for use by the subprocess
3982 * 2. Run the subprocess (it gets the allocated console by default)
3983 * 3. Wait for the subprocess to terminate and get its exit code
3984 * 4. Prompt the user to press a key to close the console window
3985 */
3986 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02003987mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988{
3989 STARTUPINFO si;
3990 PROCESS_INFORMATION pi;
3991 DWORD ret = 0;
3992 HWND hwnd = GetFocus();
3993
3994 si.cb = sizeof(si);
3995 si.lpReserved = NULL;
3996 si.lpDesktop = NULL;
3997 si.lpTitle = NULL;
3998 si.dwFlags = STARTF_USESHOWWINDOW;
3999 /*
4000 * It's nicer to run a filter command in a minimized window, but in
4001 * Windows 95 this makes the command MUCH slower. We can't do it under
4002 * Win32s either as it stops the synchronous spawn workaround working.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004003 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 */
4005 if ((options & SHELL_DOOUT) && !mch_windows95() && !gui_is_win32s())
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004006 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 else
4008 si.wShowWindow = SW_SHOWNORMAL;
4009 si.cbReserved2 = 0;
4010 si.lpReserved2 = NULL;
4011
4012 /* There is a strange error on Windows 95 when using "c:\\command.com".
4013 * When the "c:\\" is left out it works OK...? */
4014 if (mch_windows95()
4015 && (STRNICMP(cmd, "c:/command.com", 14) == 0
4016 || STRNICMP(cmd, "c:\\command.com", 14) == 0))
4017 cmd += 3;
4018
4019 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004020 vim_create_process(cmd, FALSE,
4021 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, &si, &pi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022
4023 /* Wait for the command to terminate before continuing */
4024 if (g_PlatformId != VER_PLATFORM_WIN32s)
4025 {
4026#ifdef FEAT_GUI
4027 int delay = 1;
4028
4029 /* Keep updating the window while waiting for the shell to finish. */
4030 for (;;)
4031 {
4032 MSG msg;
4033
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004034 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 {
4036 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004037 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004038 delay = 1;
4039 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 }
4041 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4042 break;
4043
4044 /* We start waiting for a very short time and then increase it, so
4045 * that we respond quickly when the process is quick, and don't
4046 * consume too much overhead when it's slow. */
4047 if (delay < 50)
4048 delay += 10;
4049 }
4050#else
4051 WaitForSingleObject(pi.hProcess, INFINITE);
4052#endif
4053
4054 /* Get the command exit code */
4055 GetExitCodeProcess(pi.hProcess, &ret);
4056 }
4057 else
4058 {
4059 /*
4060 * This ugly code is the only quick way of performing
4061 * a synchronous spawn under Win32s. Yuk.
4062 */
4063 num_windows = 0;
4064 EnumWindows(win32ssynch_cb, 0);
4065 old_num_windows = num_windows;
4066 do
4067 {
4068 Sleep(1000);
4069 num_windows = 0;
4070 EnumWindows(win32ssynch_cb, 0);
4071 } while (num_windows == old_num_windows);
4072 ret = 0;
4073 }
4074
4075 /* Close the handles to the subprocess, so that it goes away */
4076 CloseHandle(pi.hThread);
4077 CloseHandle(pi.hProcess);
4078
4079 /* Try to get input focus back. Doesn't always work though. */
4080 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4081
4082 return ret;
4083}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004084
4085/*
4086 * Thread launched by the gui to send the current buffer data to the
4087 * process. This way avoid to hang up vim totally if the children
4088 * process take a long time to process the lines.
4089 */
4090 static DWORD WINAPI
4091sub_process_writer(LPVOID param)
4092{
4093 HANDLE g_hChildStd_IN_Wr = param;
4094 linenr_T lnum = curbuf->b_op_start.lnum;
4095 DWORD len = 0;
4096 DWORD l;
4097 char_u *lp = ml_get(lnum);
4098 char_u *s;
4099 int written = 0;
4100
4101 for (;;)
4102 {
4103 l = (DWORD)STRLEN(lp + written);
4104 if (l == 0)
4105 len = 0;
4106 else if (lp[written] == NL)
4107 {
4108 /* NL -> NUL translation */
4109 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4110 }
4111 else
4112 {
4113 s = vim_strchr(lp + written, NL);
4114 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4115 s == NULL ? l : (DWORD)(s - (lp + written)),
4116 &len, NULL);
4117 }
4118 if (len == (int)l)
4119 {
4120 /* Finished a line, add a NL, unless this line should not have
4121 * one. */
4122 if (lnum != curbuf->b_op_end.lnum
4123 || !curbuf->b_p_bin
4124 || (lnum != curbuf->b_no_eol_lnum
4125 && (lnum != curbuf->b_ml.ml_line_count
4126 || curbuf->b_p_eol)))
4127 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004128 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004129 }
4130
4131 ++lnum;
4132 if (lnum > curbuf->b_op_end.lnum)
4133 break;
4134
4135 lp = ml_get(lnum);
4136 written = 0;
4137 }
4138 else if (len > 0)
4139 written += len;
4140 }
4141
4142 /* finished all the lines, close pipe */
4143 CloseHandle(g_hChildStd_IN_Wr);
4144 ExitThread(0);
4145}
4146
4147
4148# define BUFLEN 100 /* length for buffer, stolen from unix version */
4149
4150/*
4151 * This function read from the children's stdout and write the
4152 * data on screen or in the buffer accordingly.
4153 */
4154 static void
4155dump_pipe(int options,
4156 HANDLE g_hChildStd_OUT_Rd,
4157 garray_T *ga,
4158 char_u buffer[],
4159 DWORD *buffer_off)
4160{
4161 DWORD availableBytes = 0;
4162 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004163 int ret;
4164 DWORD len;
4165 DWORD toRead;
4166 int repeatCount;
4167
4168 /* we query the pipe to see if there is any data to read
4169 * to avoid to perform a blocking read */
4170 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4171 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004172 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004173 NULL, /* number of read bytes */
4174 &availableBytes, /* available bytes total */
4175 NULL); /* byteLeft */
4176
4177 repeatCount = 0;
4178 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004179 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004180 {
4181 repeatCount++;
4182 toRead =
4183# ifdef FEAT_MBYTE
4184 (DWORD)(BUFLEN - *buffer_off);
4185# else
4186 (DWORD)BUFLEN;
4187# endif
4188 toRead = availableBytes < toRead ? availableBytes : toRead;
4189 ReadFile(g_hChildStd_OUT_Rd, buffer
4190# ifdef FEAT_MBYTE
4191 + *buffer_off, toRead
4192# else
4193 , toRead
4194# endif
4195 , &len, NULL);
4196
4197 /* If we haven't read anything, there is a problem */
4198 if (len == 0)
4199 break;
4200
4201 availableBytes -= len;
4202
4203 if (options & SHELL_READ)
4204 {
4205 /* Do NUL -> NL translation, append NL separated
4206 * lines to the current buffer. */
4207 for (i = 0; i < len; ++i)
4208 {
4209 if (buffer[i] == NL)
4210 append_ga_line(ga);
4211 else if (buffer[i] == NUL)
4212 ga_append(ga, NL);
4213 else
4214 ga_append(ga, buffer[i]);
4215 }
4216 }
4217# ifdef FEAT_MBYTE
4218 else if (has_mbyte)
4219 {
4220 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004221 int c;
4222 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004223
4224 len += *buffer_off;
4225 buffer[len] = NUL;
4226
4227 /* Check if the last character in buffer[] is
4228 * incomplete, keep these bytes for the next
4229 * round. */
4230 for (p = buffer; p < buffer + len; p += l)
4231 {
4232 l = mb_cptr2len(p);
4233 if (l == 0)
4234 l = 1; /* NUL byte? */
4235 else if (MB_BYTE2LEN(*p) != l)
4236 break;
4237 }
4238 if (p == buffer) /* no complete character */
4239 {
4240 /* avoid getting stuck at an illegal byte */
4241 if (len >= 12)
4242 ++p;
4243 else
4244 {
4245 *buffer_off = len;
4246 return;
4247 }
4248 }
4249 c = *p;
4250 *p = NUL;
4251 msg_puts(buffer);
4252 if (p < buffer + len)
4253 {
4254 *p = c;
4255 *buffer_off = (DWORD)((buffer + len) - p);
4256 mch_memmove(buffer, p, *buffer_off);
4257 return;
4258 }
4259 *buffer_off = 0;
4260 }
4261# endif /* FEAT_MBYTE */
4262 else
4263 {
4264 buffer[len] = NUL;
4265 msg_puts(buffer);
4266 }
4267
4268 windgoto(msg_row, msg_col);
4269 cursor_on();
4270 out_flush();
4271 }
4272}
4273
4274/*
4275 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4276 * for communication and doesn't open any new window.
4277 */
4278 static int
4279mch_system_piped(char *cmd, int options)
4280{
4281 STARTUPINFO si;
4282 PROCESS_INFORMATION pi;
4283 DWORD ret = 0;
4284
4285 HANDLE g_hChildStd_IN_Rd = NULL;
4286 HANDLE g_hChildStd_IN_Wr = NULL;
4287 HANDLE g_hChildStd_OUT_Rd = NULL;
4288 HANDLE g_hChildStd_OUT_Wr = NULL;
4289
4290 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4291 DWORD len;
4292
4293 /* buffer used to receive keys */
4294 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4295 int ta_len = 0; /* valid bytes in ta_buf[] */
4296
4297 DWORD i;
4298 int c;
4299 int noread_cnt = 0;
4300 garray_T ga;
4301 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004302 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004303 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004304
4305 SECURITY_ATTRIBUTES saAttr;
4306
4307 /* Set the bInheritHandle flag so pipe handles are inherited. */
4308 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4309 saAttr.bInheritHandle = TRUE;
4310 saAttr.lpSecurityDescriptor = NULL;
4311
4312 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4313 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
4314 || ! pSetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
4315 /* Create a pipe for the child process's STDIN. */
4316 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4317 /* Ensure the write handle to the pipe for STDIN is not inherited. */
4318 || ! pSetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
4319 {
4320 CloseHandle(g_hChildStd_IN_Rd);
4321 CloseHandle(g_hChildStd_IN_Wr);
4322 CloseHandle(g_hChildStd_OUT_Rd);
4323 CloseHandle(g_hChildStd_OUT_Wr);
4324 MSG_PUTS(_("\nCannot create pipes\n"));
4325 }
4326
4327 si.cb = sizeof(si);
4328 si.lpReserved = NULL;
4329 si.lpDesktop = NULL;
4330 si.lpTitle = NULL;
4331 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4332
4333 /* set-up our file redirection */
4334 si.hStdError = g_hChildStd_OUT_Wr;
4335 si.hStdOutput = g_hChildStd_OUT_Wr;
4336 si.hStdInput = g_hChildStd_IN_Rd;
4337 si.wShowWindow = SW_HIDE;
4338 si.cbReserved2 = 0;
4339 si.lpReserved2 = NULL;
4340
4341 if (options & SHELL_READ)
4342 ga_init2(&ga, 1, BUFLEN);
4343
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004344 if (cmd != NULL)
4345 {
4346 p = (char *)vim_strsave((char_u *)cmd);
4347 if (p != NULL)
4348 unescape_shellxquote((char_u *)p, p_sxe);
4349 else
4350 p = cmd;
4351 }
4352
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004353 /* Now, run the command.
4354 * About "Inherit handles" being TRUE: this command can be litigious,
4355 * handle inheritance was deactivated for pending temp file, but, if we
4356 * deactivate it, the pipes don't work for some reason. */
4357 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, &si, &pi);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004358
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004359 if (p != cmd)
4360 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004361
4362 /* Close our unused side of the pipes */
4363 CloseHandle(g_hChildStd_IN_Rd);
4364 CloseHandle(g_hChildStd_OUT_Wr);
4365
4366 if (options & SHELL_WRITE)
4367 {
4368 HANDLE thread =
4369 CreateThread(NULL, /* security attributes */
4370 0, /* default stack size */
4371 sub_process_writer, /* function to be executed */
4372 g_hChildStd_IN_Wr, /* parameter */
4373 0, /* creation flag, start immediately */
4374 NULL); /* we don't care about thread id */
4375 CloseHandle(thread);
4376 g_hChildStd_IN_Wr = NULL;
4377 }
4378
4379 /* Keep updating the window while waiting for the shell to finish. */
4380 for (;;)
4381 {
4382 MSG msg;
4383
Bram Moolenaar175d0702013-12-11 18:36:33 +01004384 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004385 {
4386 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004387 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004388 }
4389
4390 /* write pipe information in the window */
4391 if ((options & (SHELL_READ|SHELL_WRITE))
4392# ifdef FEAT_GUI
4393 || gui.in_use
4394# endif
4395 )
4396 {
4397 len = 0;
4398 if (!(options & SHELL_EXPAND)
4399 && ((options &
4400 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4401 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4402# ifdef FEAT_GUI
4403 || gui.in_use
4404# endif
4405 )
4406 && (ta_len > 0 || noread_cnt > 4))
4407 {
4408 if (ta_len == 0)
4409 {
4410 /* Get extra characters when we don't have any. Reset the
4411 * counter and timer. */
4412 noread_cnt = 0;
4413# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4414 gettimeofday(&start_tv, NULL);
4415# endif
4416 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4417 }
4418 if (ta_len > 0 || len > 0)
4419 {
4420 /*
4421 * For pipes: Check for CTRL-C: send interrupt signal to
4422 * child. Check for CTRL-D: EOF, close pipe to child.
4423 */
4424 if (len == 1 && cmd != NULL)
4425 {
4426 if (ta_buf[ta_len] == Ctrl_C)
4427 {
4428 /* Learn what exit code is expected, for
4429 * now put 9 as SIGKILL */
4430 TerminateProcess(pi.hProcess, 9);
4431 }
4432 if (ta_buf[ta_len] == Ctrl_D)
4433 {
4434 CloseHandle(g_hChildStd_IN_Wr);
4435 g_hChildStd_IN_Wr = NULL;
4436 }
4437 }
4438
4439 /* replace K_BS by <BS> and K_DEL by <DEL> */
4440 for (i = ta_len; i < ta_len + len; ++i)
4441 {
4442 if (ta_buf[i] == CSI && len - i > 2)
4443 {
4444 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4445 if (c == K_DEL || c == K_KDEL || c == K_BS)
4446 {
4447 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4448 (size_t)(len - i - 2));
4449 if (c == K_DEL || c == K_KDEL)
4450 ta_buf[i] = DEL;
4451 else
4452 ta_buf[i] = Ctrl_H;
4453 len -= 2;
4454 }
4455 }
4456 else if (ta_buf[i] == '\r')
4457 ta_buf[i] = '\n';
4458# ifdef FEAT_MBYTE
4459 if (has_mbyte)
4460 i += (*mb_ptr2len_len)(ta_buf + i,
4461 ta_len + len - i) - 1;
4462# endif
4463 }
4464
4465 /*
4466 * For pipes: echo the typed characters. For a pty this
4467 * does not seem to work.
4468 */
4469 for (i = ta_len; i < ta_len + len; ++i)
4470 {
4471 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4472 msg_putchar(ta_buf[i]);
4473# ifdef FEAT_MBYTE
4474 else if (has_mbyte)
4475 {
4476 int l = (*mb_ptr2len)(ta_buf + i);
4477
4478 msg_outtrans_len(ta_buf + i, l);
4479 i += l - 1;
4480 }
4481# endif
4482 else
4483 msg_outtrans_len(ta_buf + i, 1);
4484 }
4485 windgoto(msg_row, msg_col);
4486 out_flush();
4487
4488 ta_len += len;
4489
4490 /*
4491 * Write the characters to the child, unless EOF has been
4492 * typed for pipes. Write one character at a time, to
4493 * avoid losing too much typeahead. When writing buffer
4494 * lines, drop the typed characters (only check for
4495 * CTRL-C).
4496 */
4497 if (options & SHELL_WRITE)
4498 ta_len = 0;
4499 else if (g_hChildStd_IN_Wr != NULL)
4500 {
4501 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4502 1, &len, NULL);
4503 // if we are typing in, we want to keep things reactive
4504 delay = 1;
4505 if (len > 0)
4506 {
4507 ta_len -= len;
4508 mch_memmove(ta_buf, ta_buf + len, ta_len);
4509 }
4510 }
4511 }
4512 }
4513 }
4514
4515 if (ta_len)
4516 ui_inchar_undo(ta_buf, ta_len);
4517
4518 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4519 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004520 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004521 break;
4522 }
4523
4524 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004525 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004526
4527 /* We start waiting for a very short time and then increase it, so
4528 * that we respond quickly when the process is quick, and don't
4529 * consume too much overhead when it's slow. */
4530 if (delay < 50)
4531 delay += 10;
4532 }
4533
4534 /* Close the pipe */
4535 CloseHandle(g_hChildStd_OUT_Rd);
4536 if (g_hChildStd_IN_Wr != NULL)
4537 CloseHandle(g_hChildStd_IN_Wr);
4538
4539 WaitForSingleObject(pi.hProcess, INFINITE);
4540
4541 /* Get the command exit code */
4542 GetExitCodeProcess(pi.hProcess, &ret);
4543
4544 if (options & SHELL_READ)
4545 {
4546 if (ga.ga_len > 0)
4547 {
4548 append_ga_line(&ga);
4549 /* remember that the NL was missing */
4550 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4551 }
4552 else
4553 curbuf->b_no_eol_lnum = 0;
4554 ga_clear(&ga);
4555 }
4556
4557 /* Close the handles to the subprocess, so that it goes away */
4558 CloseHandle(pi.hThread);
4559 CloseHandle(pi.hProcess);
4560
4561 return ret;
4562}
4563
4564 static int
4565mch_system(char *cmd, int options)
4566{
4567 /* if we can pipe and the shelltemp option is off */
4568 if (allowPiping && !p_stmp)
4569 return mch_system_piped(cmd, options);
4570 else
4571 return mch_system_classic(cmd, options);
4572}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573#else
4574
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004575# ifdef FEAT_MBYTE
4576 static int
4577mch_system(char *cmd, int options)
4578{
4579 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4580 {
4581 WCHAR *wcmd = enc_to_utf16(cmd, NULL);
4582 if (wcmd != NULL)
4583 {
4584 int ret = _wsystem(wcmd);
4585 vim_free(wcmd);
4586 return ret;
4587 }
4588 }
4589 return system(cmd);
4590}
4591# else
4592# define mch_system(c, o) system(c)
4593# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594
4595#endif
4596
4597/*
4598 * Either execute a command by calling the shell or start a new shell
4599 */
4600 int
4601mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004602 char_u *cmd,
4603 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604{
4605 int x = 0;
4606 int tmode = cur_tmode;
4607#ifdef FEAT_TITLE
4608 char szShellTitle[512];
4609
4610 /* Change the title to reflect that we are in a subshell. */
4611 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
4612 {
4613 if (cmd == NULL)
4614 strcat(szShellTitle, " :sh");
4615 else
4616 {
4617 strcat(szShellTitle, " - !");
4618 if ((strlen(szShellTitle) + strlen(cmd) < sizeof(szShellTitle)))
4619 strcat(szShellTitle, cmd);
4620 }
4621 mch_settitle(szShellTitle, NULL);
4622 }
4623#endif
4624
4625 out_flush();
4626
4627#ifdef MCH_WRITE_DUMP
4628 if (fdDump)
4629 {
4630 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4631 fflush(fdDump);
4632 }
4633#endif
4634
4635 /*
4636 * Catch all deadly signals while running the external command, because a
4637 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4638 */
4639 signal(SIGINT, SIG_IGN);
4640#if defined(__GNUC__) && !defined(__MINGW32__)
4641 signal(SIGKILL, SIG_IGN);
4642#else
4643 signal(SIGBREAK, SIG_IGN);
4644#endif
4645 signal(SIGILL, SIG_IGN);
4646 signal(SIGFPE, SIG_IGN);
4647 signal(SIGSEGV, SIG_IGN);
4648 signal(SIGTERM, SIG_IGN);
4649 signal(SIGABRT, SIG_IGN);
4650
4651 if (options & SHELL_COOKED)
4652 settmode(TMODE_COOK); /* set to normal mode */
4653
4654 if (cmd == NULL)
4655 {
4656 x = mch_system(p_sh, options);
4657 }
4658 else
4659 {
4660 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004661 char_u *newcmd = NULL;
4662 char_u *cmdbase = cmd;
4663 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004664
4665 /* Skip a leading ", ( and "(. */
4666 if (*cmdbase == '"' )
4667 ++cmdbase;
4668 if (*cmdbase == '(')
4669 ++cmdbase;
4670
4671 if ((STRNICMP(cmdbase, "start", 5) == 0) && vim_iswhite(cmdbase[5]))
4672 {
4673 STARTUPINFO si;
4674 PROCESS_INFORMATION pi;
4675 DWORD flags = CREATE_NEW_CONSOLE;
4676 char_u *p;
4677
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004678 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004679 si.cb = sizeof(si);
4680 si.lpReserved = NULL;
4681 si.lpDesktop = NULL;
4682 si.lpTitle = NULL;
4683 si.dwFlags = 0;
4684 si.cbReserved2 = 0;
4685 si.lpReserved2 = NULL;
4686
4687 cmdbase = skipwhite(cmdbase + 5);
4688 if ((STRNICMP(cmdbase, "/min", 4) == 0)
4689 && vim_iswhite(cmdbase[4]))
4690 {
4691 cmdbase = skipwhite(cmdbase + 4);
4692 si.dwFlags = STARTF_USESHOWWINDOW;
4693 si.wShowWindow = SW_SHOWMINNOACTIVE;
4694 }
4695 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
4696 && vim_iswhite(cmdbase[2]))
4697 {
4698 cmdbase = skipwhite(cmdbase + 2);
4699 flags = CREATE_NO_WINDOW;
4700 si.dwFlags = STARTF_USESTDHANDLES;
4701 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004702 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004703 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004704 NULL, // Security att.
4705 OPEN_EXISTING, // Open flags
4706 FILE_ATTRIBUTE_NORMAL, // File att.
4707 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004708 si.hStdOutput = si.hStdInput;
4709 si.hStdError = si.hStdInput;
4710 }
4711
4712 /* Remove a trailing ", ) and )" if they have a match
4713 * at the start of the command. */
4714 if (cmdbase > cmd)
4715 {
4716 p = cmdbase + STRLEN(cmdbase);
4717 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4718 *--p = NUL;
4719 if (p > cmdbase && p[-1] == ')'
4720 && (*cmd =='(' || cmd[1] == '('))
4721 *--p = NUL;
4722 }
4723
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004724 newcmd = cmdbase;
4725 unescape_shellxquote(cmdbase, p_sxe);
4726
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004727 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004728 * If creating new console, arguments are passed to the
4729 * 'cmd.exe' as-is. If it's not, arguments are not treated
4730 * correctly for current 'cmd.exe'. So unescape characters in
4731 * shellxescape except '|' for avoiding to be treated as
4732 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004733 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004734 if (flags != CREATE_NEW_CONSOLE)
4735 {
4736 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004737 char_u *cmd_shell = mch_getenv("COMSPEC");
4738
4739 if (cmd_shell == NULL || *cmd_shell == NUL)
4740 cmd_shell = default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004741
4742 subcmd = vim_strsave_escaped_ext(cmdbase, "|", '^', FALSE);
4743 if (subcmd != NULL)
4744 {
4745 /* make "cmd.exe /c arguments" */
4746 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004747 newcmd = lalloc(cmdlen, TRUE);
4748 if (newcmd != NULL)
4749 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004750 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004751 else
4752 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004753 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004754 }
4755 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004756
4757 /*
4758 * Now, start the command as a process, so that it doesn't
4759 * inherit our handles which causes unpleasant dangling swap
4760 * files if we exit before the spawned process
4761 */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004762 if (vim_create_process(newcmd, FALSE, flags, &si, &pi))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004763 x = 0;
4764 else
4765 {
4766 x = -1;
4767#ifdef FEAT_GUI_W32
4768 EMSG(_("E371: Command not found"));
4769#endif
4770 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004771
4772 if (newcmd != cmdbase)
4773 vim_free(newcmd);
4774
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004775 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004776 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004777 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004778 CloseHandle(si.hStdInput);
4779 }
4780 /* Close the handles to the subprocess, so that it goes away */
4781 CloseHandle(pi.hThread);
4782 CloseHandle(pi.hProcess);
4783 }
4784 else
4785 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004786 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787#ifdef FEAT_GUI_W32
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004788 (allowPiping && !p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004790 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4791
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004792 newcmd = lalloc(cmdlen, TRUE);
4793 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 {
4795#if defined(FEAT_GUI_W32)
4796 if (need_vimrun_warning)
4797 {
4798 MessageBox(NULL,
4799 _("VIMRUN.EXE not found in your $PATH.\n"
4800 "External commands will not pause after completion.\n"
4801 "See :help win32-vimrun for more information."),
4802 _("Vim Warning"),
4803 MB_ICONWARNING);
4804 need_vimrun_warning = FALSE;
4805 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004806 if (!s_dont_use_vimrun && (!allowPiping || p_stmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 /* Use vimrun to execute the command. It opens a console
4808 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004809 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 vimrun_path,
4811 (msg_silent != 0 || (options & SHELL_DOOUT))
4812 ? "-s " : "",
4813 p_sh, p_shcf, cmd);
4814 else
4815#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004816 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004817 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004819 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 }
4822 }
4823
4824 if (tmode == TMODE_RAW)
4825 settmode(TMODE_RAW); /* set to raw mode */
4826
4827 /* Print the return value, unless "vimrun" was used. */
4828 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4829#if defined(FEAT_GUI_W32)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004830 && ((options & SHELL_DOOUT) || s_dont_use_vimrun
4831 || (allowPiping && !p_stmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832#endif
4833 )
4834 {
4835 smsg(_("shell returned %d"), x);
4836 msg_putchar('\n');
4837 }
4838#ifdef FEAT_TITLE
4839 resettitle();
4840#endif
4841
4842 signal(SIGINT, SIG_DFL);
4843#if defined(__GNUC__) && !defined(__MINGW32__)
4844 signal(SIGKILL, SIG_DFL);
4845#else
4846 signal(SIGBREAK, SIG_DFL);
4847#endif
4848 signal(SIGILL, SIG_DFL);
4849 signal(SIGFPE, SIG_DFL);
4850 signal(SIGSEGV, SIG_DFL);
4851 signal(SIGTERM, SIG_DFL);
4852 signal(SIGABRT, SIG_DFL);
4853
4854 return x;
4855}
4856
4857
4858#ifndef FEAT_GUI_W32
4859
4860/*
4861 * Start termcap mode
4862 */
4863 static void
4864termcap_mode_start(void)
4865{
4866 DWORD cmodein;
4867
4868 if (g_fTermcapMode)
4869 return;
4870
4871 SaveConsoleBuffer(&g_cbNonTermcap);
4872
4873 if (g_cbTermcap.IsValid)
4874 {
4875 /*
4876 * We've been in termcap mode before. Restore certain screen
4877 * characteristics, including the buffer size and the window
4878 * size. Since we will be redrawing the screen, we don't need
4879 * to restore the actual contents of the buffer.
4880 */
4881 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
4882 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
4883 Rows = g_cbTermcap.Info.dwSize.Y;
4884 Columns = g_cbTermcap.Info.dwSize.X;
4885 }
4886 else
4887 {
4888 /*
4889 * This is our first time entering termcap mode. Clear the console
4890 * screen buffer, and resize the buffer to match the current window
4891 * size. We will use this as the size of our editing environment.
4892 */
4893 ClearConsoleBuffer(g_attrCurrent);
4894 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
4895 }
4896
4897#ifdef FEAT_TITLE
4898 resettitle();
4899#endif
4900
4901 GetConsoleMode(g_hConIn, &cmodein);
4902#ifdef FEAT_MOUSE
4903 if (g_fMouseActive)
4904 cmodein |= ENABLE_MOUSE_INPUT;
4905 else
4906 cmodein &= ~ENABLE_MOUSE_INPUT;
4907#endif
4908 cmodein |= ENABLE_WINDOW_INPUT;
4909 SetConsoleMode(g_hConIn, cmodein);
4910
4911 redraw_later_clear();
4912 g_fTermcapMode = TRUE;
4913}
4914
4915
4916/*
4917 * End termcap mode
4918 */
4919 static void
4920termcap_mode_end(void)
4921{
4922 DWORD cmodein;
4923 ConsoleBuffer *cb;
4924 COORD coord;
4925 DWORD dwDummy;
4926
4927 if (!g_fTermcapMode)
4928 return;
4929
4930 SaveConsoleBuffer(&g_cbTermcap);
4931
4932 GetConsoleMode(g_hConIn, &cmodein);
4933 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
4934 SetConsoleMode(g_hConIn, cmodein);
4935
4936#ifdef FEAT_RESTORE_ORIG_SCREEN
4937 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
4938#else
4939 cb = &g_cbNonTermcap;
4940#endif
4941 RestoreConsoleBuffer(cb, p_rs);
4942 SetConsoleCursorInfo(g_hConOut, &g_cci);
4943
4944 if (p_rs || exiting)
4945 {
4946 /*
4947 * Clear anything that happens to be on the current line.
4948 */
4949 coord.X = 0;
4950 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
4951 FillConsoleOutputCharacter(g_hConOut, ' ',
4952 cb->Info.dwSize.X, coord, &dwDummy);
4953 /*
4954 * The following is just for aesthetics. If we are exiting without
4955 * restoring the screen, then we want to have a prompt string
4956 * appear at the bottom line. However, the command interpreter
4957 * seems to always advance the cursor one line before displaying
4958 * the prompt string, which causes the screen to scroll. To
4959 * counter this, move the cursor up one line before exiting.
4960 */
4961 if (exiting && !p_rs)
4962 coord.Y--;
4963 /*
4964 * Position the cursor at the leftmost column of the desired row.
4965 */
4966 SetConsoleCursorPosition(g_hConOut, coord);
4967 }
4968
4969 g_fTermcapMode = FALSE;
4970}
4971#endif /* FEAT_GUI_W32 */
4972
4973
4974#ifdef FEAT_GUI_W32
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004975/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 void
4977mch_write(
4978 char_u *s,
4979 int len)
4980{
4981 /* never used */
4982}
4983
4984#else
4985
4986/*
4987 * clear `n' chars, starting from `coord'
4988 */
4989 static void
4990clear_chars(
4991 COORD coord,
4992 DWORD n)
4993{
4994 DWORD dwDummy;
4995
4996 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
4997 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
4998}
4999
5000
5001/*
5002 * Clear the screen
5003 */
5004 static void
5005clear_screen(void)
5006{
5007 g_coord.X = g_coord.Y = 0;
5008 clear_chars(g_coord, Rows * Columns);
5009}
5010
5011
5012/*
5013 * Clear to end of display
5014 */
5015 static void
5016clear_to_end_of_display(void)
5017{
5018 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5019 * Columns + (Columns - g_coord.X));
5020}
5021
5022
5023/*
5024 * Clear to end of line
5025 */
5026 static void
5027clear_to_end_of_line(void)
5028{
5029 clear_chars(g_coord, Columns - g_coord.X);
5030}
5031
5032
5033/*
5034 * Scroll the scroll region up by `cLines' lines
5035 */
5036 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005037scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038{
5039 COORD oldcoord = g_coord;
5040
5041 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5042 delete_lines(cLines);
5043
5044 g_coord = oldcoord;
5045}
5046
5047
5048/*
5049 * Set the scroll region
5050 */
5051 static void
5052set_scroll_region(
5053 unsigned left,
5054 unsigned top,
5055 unsigned right,
5056 unsigned bottom)
5057{
5058 if (left >= right
5059 || top >= bottom
5060 || right > (unsigned) Columns - 1
5061 || bottom > (unsigned) Rows - 1)
5062 return;
5063
5064 g_srScrollRegion.Left = left;
5065 g_srScrollRegion.Top = top;
5066 g_srScrollRegion.Right = right;
5067 g_srScrollRegion.Bottom = bottom;
5068}
5069
5070
5071/*
5072 * Insert `cLines' lines at the current cursor position
5073 */
5074 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005075insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076{
5077 SMALL_RECT source;
5078 COORD dest;
5079 CHAR_INFO fill;
5080
5081 dest.X = 0;
5082 dest.Y = g_coord.Y + cLines;
5083
5084 source.Left = 0;
5085 source.Top = g_coord.Y;
5086 source.Right = g_srScrollRegion.Right;
5087 source.Bottom = g_srScrollRegion.Bottom - cLines;
5088
5089 fill.Char.AsciiChar = ' ';
5090 fill.Attributes = g_attrCurrent;
5091
5092 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5093
5094 /* Here we have to deal with a win32 console flake: If the scroll
5095 * region looks like abc and we scroll c to a and fill with d we get
5096 * cbd... if we scroll block c one line at a time to a, we get cdd...
5097 * vim expects cdd consistently... So we have to deal with that
5098 * here... (this also occurs scrolling the same way in the other
5099 * direction). */
5100
5101 if (source.Bottom < dest.Y)
5102 {
5103 COORD coord;
5104
5105 coord.X = 0;
5106 coord.Y = source.Bottom;
5107 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5108 }
5109}
5110
5111
5112/*
5113 * Delete `cLines' lines at the current cursor position
5114 */
5115 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005116delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117{
5118 SMALL_RECT source;
5119 COORD dest;
5120 CHAR_INFO fill;
5121 int nb;
5122
5123 dest.X = 0;
5124 dest.Y = g_coord.Y;
5125
5126 source.Left = 0;
5127 source.Top = g_coord.Y + cLines;
5128 source.Right = g_srScrollRegion.Right;
5129 source.Bottom = g_srScrollRegion.Bottom;
5130
5131 fill.Char.AsciiChar = ' ';
5132 fill.Attributes = g_attrCurrent;
5133
5134 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5135
5136 /* Here we have to deal with a win32 console flake: If the scroll
5137 * region looks like abc and we scroll c to a and fill with d we get
5138 * cbd... if we scroll block c one line at a time to a, we get cdd...
5139 * vim expects cdd consistently... So we have to deal with that
5140 * here... (this also occurs scrolling the same way in the other
5141 * direction). */
5142
5143 nb = dest.Y + (source.Bottom - source.Top) + 1;
5144
5145 if (nb < source.Top)
5146 {
5147 COORD coord;
5148
5149 coord.X = 0;
5150 coord.Y = nb;
5151 clear_chars(coord, Columns * (source.Top - nb));
5152 }
5153}
5154
5155
5156/*
5157 * Set the cursor position
5158 */
5159 static void
5160gotoxy(
5161 unsigned x,
5162 unsigned y)
5163{
5164 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5165 return;
5166
5167 /* external cursor coords are 1-based; internal are 0-based */
5168 g_coord.X = x - 1;
5169 g_coord.Y = y - 1;
5170 SetConsoleCursorPosition(g_hConOut, g_coord);
5171}
5172
5173
5174/*
5175 * Set the current text attribute = (foreground | background)
5176 * See ../doc/os_win32.txt for the numbers.
5177 */
5178 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005179textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180{
5181 g_attrCurrent = wAttr;
5182
5183 SetConsoleTextAttribute(g_hConOut, wAttr);
5184}
5185
5186
5187 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005188textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189{
5190 g_attrCurrent = (g_attrCurrent & 0xf0) + wAttr;
5191
5192 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5193}
5194
5195
5196 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005197textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198{
5199 g_attrCurrent = (g_attrCurrent & 0x0f) + (wAttr << 4);
5200
5201 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5202}
5203
5204
5205/*
5206 * restore the default text attribute (whatever we started with)
5207 */
5208 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005209normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210{
5211 textattr(g_attrDefault);
5212}
5213
5214
5215static WORD g_attrPreStandout = 0;
5216
5217/*
5218 * Make the text standout, by brightening it
5219 */
5220 static void
5221standout(void)
5222{
5223 g_attrPreStandout = g_attrCurrent;
5224 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5225}
5226
5227
5228/*
5229 * Turn off standout mode
5230 */
5231 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005232standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233{
5234 if (g_attrPreStandout)
5235 {
5236 textattr(g_attrPreStandout);
5237 g_attrPreStandout = 0;
5238 }
5239}
5240
5241
5242/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005243 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 */
5245 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005246mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247{
5248 char_u *p;
5249 int n;
5250
5251 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5252 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5253 if (T_ME[0] == ESC && T_ME[1] == '|')
5254 {
5255 p = T_ME + 2;
5256 n = getdigits(&p);
5257 if (*p == 'm' && n > 0)
5258 {
5259 cterm_normal_fg_color = (n & 0xf) + 1;
5260 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5261 }
5262 }
5263}
5264
5265
5266/*
5267 * visual bell: flash the screen
5268 */
5269 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005270visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271{
5272 COORD coordOrigin = {0, 0};
5273 WORD attrFlash = ~g_attrCurrent & 0xff;
5274
5275 DWORD dwDummy;
5276 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5277
5278 if (oldattrs == NULL)
5279 return;
5280 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5281 coordOrigin, &dwDummy);
5282 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5283 coordOrigin, &dwDummy);
5284
5285 Sleep(15); /* wait for 15 msec */
5286 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5287 coordOrigin, &dwDummy);
5288 vim_free(oldattrs);
5289}
5290
5291
5292/*
5293 * Make the cursor visible or invisible
5294 */
5295 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005296cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297{
5298 s_cursor_visible = fVisible;
5299#ifdef MCH_CURSOR_SHAPE
5300 mch_update_cursor();
5301#endif
5302}
5303
5304
5305/*
5306 * write `cchToWrite' characters in `pchBuf' to the screen
5307 * Returns the number of characters actually written (at least one).
5308 */
5309 static BOOL
5310write_chars(
5311 LPCSTR pchBuf,
5312 DWORD cchToWrite)
5313{
5314 COORD coord = g_coord;
5315 DWORD written;
5316
5317 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cchToWrite,
5318 coord, &written);
5319 /* When writing fails or didn't write a single character, pretend one
5320 * character was written, otherwise we get stuck. */
5321 if (WriteConsoleOutputCharacter(g_hConOut, pchBuf, cchToWrite,
5322 coord, &written) == 0
5323 || written == 0)
5324 written = 1;
5325
5326 g_coord.X += (SHORT) written;
5327
5328 while (g_coord.X > g_srScrollRegion.Right)
5329 {
5330 g_coord.X -= (SHORT) Columns;
5331 if (g_coord.Y < g_srScrollRegion.Bottom)
5332 g_coord.Y++;
5333 }
5334
5335 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5336
5337 return written;
5338}
5339
5340
5341/*
5342 * mch_write(): write the output buffer to the screen, translating ESC
5343 * sequences into calls to console output routines.
5344 */
5345 void
5346mch_write(
5347 char_u *s,
5348 int len)
5349{
5350 s[len] = NUL;
5351
5352 if (!term_console)
5353 {
5354 write(1, s, (unsigned)len);
5355 return;
5356 }
5357
5358 /* translate ESC | sequences into faked bios calls */
5359 while (len--)
5360 {
5361 /* optimization: use one single write_chars for runs of text,
5362 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005363 DWORD prefix = (DWORD)strcspn(s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364
5365 if (p_wd)
5366 {
5367 WaitForChar(p_wd);
5368 if (prefix != 0)
5369 prefix = 1;
5370 }
5371
5372 if (prefix != 0)
5373 {
5374 DWORD nWritten;
5375
5376 nWritten = write_chars(s, prefix);
5377#ifdef MCH_WRITE_DUMP
5378 if (fdDump)
5379 {
5380 fputc('>', fdDump);
5381 fwrite(s, sizeof(char_u), nWritten, fdDump);
5382 fputs("<\n", fdDump);
5383 }
5384#endif
5385 len -= (nWritten - 1);
5386 s += nWritten;
5387 }
5388 else if (s[0] == '\n')
5389 {
5390 /* \n, newline: go to the beginning of the next line or scroll */
5391 if (g_coord.Y == g_srScrollRegion.Bottom)
5392 {
5393 scroll(1);
5394 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
5395 }
5396 else
5397 {
5398 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
5399 }
5400#ifdef MCH_WRITE_DUMP
5401 if (fdDump)
5402 fputs("\\n\n", fdDump);
5403#endif
5404 s++;
5405 }
5406 else if (s[0] == '\r')
5407 {
5408 /* \r, carriage return: go to beginning of line */
5409 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
5410#ifdef MCH_WRITE_DUMP
5411 if (fdDump)
5412 fputs("\\r\n", fdDump);
5413#endif
5414 s++;
5415 }
5416 else if (s[0] == '\b')
5417 {
5418 /* \b, backspace: move cursor one position left */
5419 if (g_coord.X > g_srScrollRegion.Left)
5420 g_coord.X--;
5421 else if (g_coord.Y > g_srScrollRegion.Top)
5422 {
5423 g_coord.X = g_srScrollRegion.Right;
5424 g_coord.Y--;
5425 }
5426 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5427#ifdef MCH_WRITE_DUMP
5428 if (fdDump)
5429 fputs("\\b\n", fdDump);
5430#endif
5431 s++;
5432 }
5433 else if (s[0] == '\a')
5434 {
5435 /* \a, bell */
5436 MessageBeep(0xFFFFFFFF);
5437#ifdef MCH_WRITE_DUMP
5438 if (fdDump)
5439 fputs("\\a\n", fdDump);
5440#endif
5441 s++;
5442 }
5443 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
5444 {
5445#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005446 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005448 char_u *p;
5449 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450
5451 switch (s[2])
5452 {
5453 /* one or two numeric arguments, separated by ';' */
5454
5455 case '0': case '1': case '2': case '3': case '4':
5456 case '5': case '6': case '7': case '8': case '9':
5457 p = s + 2;
5458 arg1 = getdigits(&p); /* no check for length! */
5459 if (p > s + len)
5460 break;
5461
5462 if (*p == ';')
5463 {
5464 ++p;
5465 arg2 = getdigits(&p); /* no check for length! */
5466 if (p > s + len)
5467 break;
5468
5469 if (*p == 'H')
5470 gotoxy(arg2, arg1);
5471 else if (*p == 'r')
5472 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
5473 }
5474 else if (*p == 'A')
5475 {
5476 /* move cursor up arg1 lines in same column */
5477 gotoxy(g_coord.X + 1,
5478 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
5479 }
5480 else if (*p == 'C')
5481 {
5482 /* move cursor right arg1 columns in same line */
5483 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
5484 g_coord.Y + 1);
5485 }
5486 else if (*p == 'H')
5487 {
5488 gotoxy(1, arg1);
5489 }
5490 else if (*p == 'L')
5491 {
5492 insert_lines(arg1);
5493 }
5494 else if (*p == 'm')
5495 {
5496 if (arg1 == 0)
5497 normvideo();
5498 else
5499 textattr((WORD) arg1);
5500 }
5501 else if (*p == 'f')
5502 {
5503 textcolor((WORD) arg1);
5504 }
5505 else if (*p == 'b')
5506 {
5507 textbackground((WORD) arg1);
5508 }
5509 else if (*p == 'M')
5510 {
5511 delete_lines(arg1);
5512 }
5513
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005514 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 s = p + 1;
5516 break;
5517
5518
5519 /* Three-character escape sequences */
5520
5521 case 'A':
5522 /* move cursor up one line in same column */
5523 gotoxy(g_coord.X + 1,
5524 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
5525 goto got3;
5526
5527 case 'B':
5528 visual_bell();
5529 goto got3;
5530
5531 case 'C':
5532 /* move cursor right one column in same line */
5533 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
5534 g_coord.Y + 1);
5535 goto got3;
5536
5537 case 'E':
5538 termcap_mode_end();
5539 goto got3;
5540
5541 case 'F':
5542 standout();
5543 goto got3;
5544
5545 case 'f':
5546 standend();
5547 goto got3;
5548
5549 case 'H':
5550 gotoxy(1, 1);
5551 goto got3;
5552
5553 case 'j':
5554 clear_to_end_of_display();
5555 goto got3;
5556
5557 case 'J':
5558 clear_screen();
5559 goto got3;
5560
5561 case 'K':
5562 clear_to_end_of_line();
5563 goto got3;
5564
5565 case 'L':
5566 insert_lines(1);
5567 goto got3;
5568
5569 case 'M':
5570 delete_lines(1);
5571 goto got3;
5572
5573 case 'S':
5574 termcap_mode_start();
5575 goto got3;
5576
5577 case 'V':
5578 cursor_visible(TRUE);
5579 goto got3;
5580
5581 case 'v':
5582 cursor_visible(FALSE);
5583 goto got3;
5584
5585 got3:
5586 s += 3;
5587 len -= 2;
5588 }
5589
5590#ifdef MCH_WRITE_DUMP
5591 if (fdDump)
5592 {
5593 fputs("ESC | ", fdDump);
5594 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
5595 fputc('\n', fdDump);
5596 }
5597#endif
5598 }
5599 else
5600 {
5601 /* Write a single character */
5602 DWORD nWritten;
5603
5604 nWritten = write_chars(s, 1);
5605#ifdef MCH_WRITE_DUMP
5606 if (fdDump)
5607 {
5608 fputc('>', fdDump);
5609 fwrite(s, sizeof(char_u), nWritten, fdDump);
5610 fputs("<\n", fdDump);
5611 }
5612#endif
5613
5614 len -= (nWritten - 1);
5615 s += nWritten;
5616 }
5617 }
5618
5619#ifdef MCH_WRITE_DUMP
5620 if (fdDump)
5621 fflush(fdDump);
5622#endif
5623}
5624
5625#endif /* FEAT_GUI_W32 */
5626
5627
5628/*
5629 * Delay for half a second.
5630 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005631/*ARGSUSED*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 void
5633mch_delay(
5634 long msec,
5635 int ignoreinput)
5636{
5637#ifdef FEAT_GUI_W32
5638 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005639#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005641# ifdef FEAT_MZSCHEME
5642 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
5643 {
5644 int towait = p_mzq;
5645
5646 /* if msec is large enough, wait by portions in p_mzq */
5647 while (msec > 0)
5648 {
5649 mzvim_check_threads();
5650 if (msec < towait)
5651 towait = msec;
5652 Sleep(towait);
5653 msec -= towait;
5654 }
5655 }
5656 else
5657# endif
5658 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 else
5660 WaitForChar(msec);
5661#endif
5662}
5663
5664
5665/*
5666 * this version of remove is not scared by a readonly (backup) file
5667 * Return 0 for success, -1 for failure.
5668 */
5669 int
5670mch_remove(char_u *name)
5671{
5672#ifdef FEAT_MBYTE
5673 WCHAR *wn = NULL;
5674 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02005675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676
Bram Moolenaar12b559e2013-06-12 22:41:37 +02005677 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
5678
5679#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5681 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005682 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 if (wn != NULL)
5684 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 n = DeleteFileW(wn) ? 0 : -1;
5686 vim_free(wn);
5687 if (n == 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5688 return n;
5689 /* Retry with non-wide function (for Windows 98). */
5690 }
5691 }
5692#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 return DeleteFile(name) ? 0 : -1;
5694}
5695
5696
5697/*
5698 * check for an "interrupt signal": CTRL-break or CTRL-C
5699 */
5700 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005701mch_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702{
5703#ifndef FEAT_GUI_W32 /* never used */
5704 if (g_fCtrlCPressed || g_fCBrkPressed)
5705 {
5706 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
5707 got_int = TRUE;
5708 }
5709#endif
5710}
5711
5712
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713#ifdef FEAT_MBYTE
5714/*
5715 * Same code as below, but with wide functions and no comments.
5716 * Return 0 for success, non-zero for failure.
5717 */
5718 int
5719mch_wrename(WCHAR *wold, WCHAR *wnew)
5720{
5721 WCHAR *p;
5722 int i;
5723 WCHAR szTempFile[_MAX_PATH + 1];
5724 WCHAR szNewPath[_MAX_PATH + 1];
5725 HANDLE hf;
5726
5727 if (!mch_windows95())
5728 {
5729 p = wold;
5730 for (i = 0; wold[i] != NUL; ++i)
5731 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
5732 && wold[i + 1] != 0)
5733 p = wold + i + 1;
5734 if ((int)(wold + i - p) < 8 || p[6] != '~')
5735 return (MoveFileW(wold, wnew) == 0);
5736 }
5737
5738 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
5739 return -1;
5740 *p = NUL;
5741
5742 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
5743 return -2;
5744
5745 if (!DeleteFileW(szTempFile))
5746 return -3;
5747
5748 if (!MoveFileW(wold, szTempFile))
5749 return -4;
5750
5751 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
5752 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
5753 return -5;
5754 if (!CloseHandle(hf))
5755 return -6;
5756
5757 if (!MoveFileW(szTempFile, wnew))
5758 {
5759 (void)MoveFileW(szTempFile, wold);
5760 return -7;
5761 }
5762
5763 DeleteFileW(szTempFile);
5764
5765 if (!DeleteFileW(wold))
5766 return -8;
5767
5768 return 0;
5769}
5770#endif
5771
5772
5773/*
5774 * mch_rename() works around a bug in rename (aka MoveFile) in
5775 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
5776 * file whose short file name is "FOO.BAR" (its long file name will
5777 * be correct: "foo.bar~"). Because a file can be accessed by
5778 * either its SFN or its LFN, "foo.bar" has effectively been
5779 * renamed to "foo.bar", which is not at all what was wanted. This
5780 * seems to happen only when renaming files with three-character
5781 * extensions by appending a suffix that does not include ".".
5782 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
5783 *
5784 * There is another problem, which isn't really a bug but isn't right either:
5785 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
5786 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
5787 * service pack 6. Doesn't seem to happen on Windows 98.
5788 *
5789 * Like rename(), returns 0 upon success, non-zero upon failure.
5790 * Should probably set errno appropriately when errors occur.
5791 */
5792 int
5793mch_rename(
5794 const char *pszOldFile,
5795 const char *pszNewFile)
5796{
5797 char szTempFile[_MAX_PATH+1];
5798 char szNewPath[_MAX_PATH+1];
5799 char *pszFilePart;
5800 HANDLE hf;
5801#ifdef FEAT_MBYTE
5802 WCHAR *wold = NULL;
5803 WCHAR *wnew = NULL;
5804 int retval = -1;
5805
5806 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5807 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005808 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
5809 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 if (wold != NULL && wnew != NULL)
5811 retval = mch_wrename(wold, wnew);
5812 vim_free(wold);
5813 vim_free(wnew);
5814 if (retval == 0 || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5815 return retval;
5816 /* Retry with non-wide function (for Windows 98). */
5817 }
5818#endif
5819
5820 /*
5821 * No need to play tricks if not running Windows 95, unless the file name
5822 * contains a "~" as the seventh character.
5823 */
5824 if (!mch_windows95())
5825 {
5826 pszFilePart = (char *)gettail((char_u *)pszOldFile);
5827 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
5828 return rename(pszOldFile, pszNewFile);
5829 }
5830
5831 /* Get base path of new file name. Undocumented feature: If pszNewFile is
5832 * a directory, no error is returned and pszFilePart will be NULL. */
5833 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
5834 || pszFilePart == NULL)
5835 return -1;
5836 *pszFilePart = NUL;
5837
5838 /* Get (and create) a unique temporary file name in directory of new file */
5839 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
5840 return -2;
5841
5842 /* blow the temp file away */
5843 if (!DeleteFile(szTempFile))
5844 return -3;
5845
5846 /* rename old file to the temp file */
5847 if (!MoveFile(pszOldFile, szTempFile))
5848 return -4;
5849
5850 /* now create an empty file called pszOldFile; this prevents the operating
5851 * system using pszOldFile as an alias (SFN) if we're renaming within the
5852 * same directory. For example, we're editing a file called
5853 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
5854 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
5855 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005856 * cause all sorts of problems later in buf_write(). So, we create an
5857 * empty file called filena~1.txt and the system will have to find some
5858 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 */
5860 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
5861 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
5862 return -5;
5863 if (!CloseHandle(hf))
5864 return -6;
5865
5866 /* rename the temp file to the new file */
5867 if (!MoveFile(szTempFile, pszNewFile))
5868 {
5869 /* Renaming failed. Rename the file back to its old name, so that it
5870 * looks like nothing happened. */
5871 (void)MoveFile(szTempFile, pszOldFile);
5872
5873 return -7;
5874 }
5875
5876 /* Seems to be left around on Novell filesystems */
5877 DeleteFile(szTempFile);
5878
5879 /* finally, remove the empty old file */
5880 if (!DeleteFile(pszOldFile))
5881 return -8;
5882
5883 return 0; /* success */
5884}
5885
5886/*
5887 * Get the default shell for the current hardware platform
5888 */
5889 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005890default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891{
5892 char* psz = NULL;
5893
5894 PlatformId();
5895
5896 if (g_PlatformId == VER_PLATFORM_WIN32_NT) /* Windows NT */
5897 psz = "cmd.exe";
5898 else if (g_PlatformId == VER_PLATFORM_WIN32_WINDOWS) /* Windows 95 */
5899 psz = "command.com";
5900
5901 return psz;
5902}
5903
5904/*
5905 * mch_access() extends access() to do more detailed check on network drives.
5906 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
5907 */
5908 int
5909mch_access(char *n, int p)
5910{
5911 HANDLE hFile;
5912 DWORD am;
5913 int retval = -1; /* default: fail */
5914#ifdef FEAT_MBYTE
5915 WCHAR *wn = NULL;
5916
5917 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005918 wn = enc_to_utf16(n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919#endif
5920
5921 if (mch_isdir(n))
5922 {
5923 char TempName[_MAX_PATH + 16] = "";
5924#ifdef FEAT_MBYTE
5925 WCHAR TempNameW[_MAX_PATH + 16] = L"";
5926#endif
5927
5928 if (p & R_OK)
5929 {
5930 /* Read check is performed by seeing if we can do a find file on
5931 * the directory for any file. */
5932#ifdef FEAT_MBYTE
5933 if (wn != NULL)
5934 {
5935 int i;
5936 WIN32_FIND_DATAW d;
5937
5938 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
5939 TempNameW[i] = wn[i];
5940 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
5941 TempNameW[i++] = '\\';
5942 TempNameW[i++] = '*';
5943 TempNameW[i++] = 0;
5944
5945 hFile = FindFirstFileW(TempNameW, &d);
5946 if (hFile == INVALID_HANDLE_VALUE)
5947 {
5948 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5949 goto getout;
5950
5951 /* Retry with non-wide function (for Windows 98). */
5952 vim_free(wn);
5953 wn = NULL;
5954 }
5955 else
5956 (void)FindClose(hFile);
5957 }
5958 if (wn == NULL)
5959#endif
5960 {
5961 char *pch;
5962 WIN32_FIND_DATA d;
5963
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00005964 vim_strncpy(TempName, n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 pch = TempName + STRLEN(TempName) - 1;
5966 if (*pch != '\\' && *pch != '/')
5967 *++pch = '\\';
5968 *++pch = '*';
5969 *++pch = NUL;
5970
5971 hFile = FindFirstFile(TempName, &d);
5972 if (hFile == INVALID_HANDLE_VALUE)
5973 goto getout;
5974 (void)FindClose(hFile);
5975 }
5976 }
5977
5978 if (p & W_OK)
5979 {
5980 /* Trying to create a temporary file in the directory should catch
5981 * directories on read-only network shares. However, in
5982 * directories whose ACL allows writes but denies deletes will end
5983 * up keeping the temporary file :-(. */
5984#ifdef FEAT_MBYTE
5985 if (wn != NULL)
5986 {
5987 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
5988 {
5989 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5990 goto getout;
5991
5992 /* Retry with non-wide function (for Windows 98). */
5993 vim_free(wn);
5994 wn = NULL;
5995 }
5996 else
5997 DeleteFileW(TempNameW);
5998 }
5999 if (wn == NULL)
6000#endif
6001 {
6002 if (!GetTempFileName(n, "VIM", 0, TempName))
6003 goto getout;
6004 mch_remove((char_u *)TempName);
6005 }
6006 }
6007 }
6008 else
6009 {
6010 /* Trying to open the file for the required access does ACL, read-only
6011 * network share, and file attribute checks. */
6012 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6013 | ((p & R_OK) ? GENERIC_READ : 0);
6014#ifdef FEAT_MBYTE
6015 if (wn != NULL)
6016 {
6017 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6018 if (hFile == INVALID_HANDLE_VALUE
6019 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
6020 {
6021 /* Retry with non-wide function (for Windows 98). */
6022 vim_free(wn);
6023 wn = NULL;
6024 }
6025 }
6026 if (wn == NULL)
6027#endif
6028 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6029 if (hFile == INVALID_HANDLE_VALUE)
6030 goto getout;
6031 CloseHandle(hFile);
6032 }
6033
6034 retval = 0; /* success */
6035getout:
6036#ifdef FEAT_MBYTE
6037 vim_free(wn);
6038#endif
6039 return retval;
6040}
6041
6042#if defined(FEAT_MBYTE) || defined(PROTO)
6043/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006044 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 */
6046 int
6047mch_open(char *name, int flags, int mode)
6048{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006049 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6050# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 WCHAR *wn;
6052 int f;
6053
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006054 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006056 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 if (wn != NULL)
6058 {
6059 f = _wopen(wn, flags, mode);
6060 vim_free(wn);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01006061 if (f >= 0 || g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 return f;
6063 /* Retry with non-wide function (for Windows 98). Can't use
6064 * GetLastError() here and it's unclear what errno gets set to if
6065 * the _wopen() fails for missing wide functions. */
6066 }
6067 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006068# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069
6070 return open(name, flags, mode);
6071}
6072
6073/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006074 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 */
6076 FILE *
6077mch_fopen(char *name, char *mode)
6078{
6079 WCHAR *wn, *wm;
6080 FILE *f = NULL;
6081
6082 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage
6083# ifdef __BORLANDC__
6084 /* Wide functions of Borland C 5.5 do not work on Windows 98. */
6085 && g_PlatformId == VER_PLATFORM_WIN32_NT
6086# endif
6087 )
6088 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006089# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006090 /* Work around an annoying assertion in the Microsoft debug CRT
6091 * when mode's text/binary setting doesn't match _get_fmode(). */
6092 char newMode = mode[strlen(mode) - 1];
6093 int oldMode = 0;
6094
6095 _get_fmode(&oldMode);
6096 if (newMode == 't')
6097 _set_fmode(_O_TEXT);
6098 else if (newMode == 'b')
6099 _set_fmode(_O_BINARY);
6100# endif
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006101 wn = enc_to_utf16(name, NULL);
6102 wm = enc_to_utf16(mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 if (wn != NULL && wm != NULL)
6104 f = _wfopen(wn, wm);
6105 vim_free(wn);
6106 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006107
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006108# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006109 _set_fmode(oldMode);
6110# endif
6111
Bram Moolenaarcd981f22014-02-11 17:06:00 +01006112 if (f != NULL || g_PlatformId == VER_PLATFORM_WIN32_NT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 return f;
6114 /* Retry with non-wide function (for Windows 98). Can't use
6115 * GetLastError() here and it's unclear what errno gets set to if
6116 * the _wfopen() fails for missing wide functions. */
6117 }
6118
6119 return fopen(name, mode);
6120}
6121#endif
6122
6123#ifdef FEAT_MBYTE
6124/*
6125 * SUB STREAM (aka info stream) handling:
6126 *
6127 * NTFS can have sub streams for each file. Normal contents of file is
6128 * stored in the main stream, and extra contents (author information and
6129 * title and so on) can be stored in sub stream. After Windows 2000, user
6130 * can access and store those informations in sub streams via explorer's
6131 * property menuitem in right click menu. Those informations in sub streams
6132 * were lost when copying only the main stream. So we have to copy sub
6133 * streams.
6134 *
6135 * Incomplete explanation:
6136 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6137 * More useful info and an example:
6138 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6139 */
6140
6141/*
6142 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6143 * and write to stream "substream" of file "to".
6144 * Errors are ignored.
6145 */
6146 static void
6147copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6148{
6149 HANDLE hTo;
6150 WCHAR *to_name;
6151
6152 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6153 wcscpy(to_name, to);
6154 wcscat(to_name, substream);
6155
6156 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6157 FILE_ATTRIBUTE_NORMAL, NULL);
6158 if (hTo != INVALID_HANDLE_VALUE)
6159 {
6160 long done;
6161 DWORD todo;
6162 DWORD readcnt, written;
6163 char buf[4096];
6164
6165 /* Copy block of bytes at a time. Abort when something goes wrong. */
6166 for (done = 0; done < len; done += written)
6167 {
6168 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006169 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6170 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6172 FALSE, FALSE, context)
6173 || readcnt != todo
6174 || !WriteFile(hTo, buf, todo, &written, NULL)
6175 || written != todo)
6176 break;
6177 }
6178 CloseHandle(hTo);
6179 }
6180
6181 free(to_name);
6182}
6183
6184/*
6185 * Copy info streams from file "from" to file "to".
6186 */
6187 static void
6188copy_infostreams(char_u *from, char_u *to)
6189{
6190 WCHAR *fromw;
6191 WCHAR *tow;
6192 HANDLE sh;
6193 WIN32_STREAM_ID sid;
6194 int headersize;
6195 WCHAR streamname[_MAX_PATH];
6196 DWORD readcount;
6197 void *context = NULL;
6198 DWORD lo, hi;
6199 int len;
6200
6201 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006202 fromw = enc_to_utf16(from, NULL);
6203 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 if (fromw != NULL && tow != NULL)
6205 {
6206 /* Open the file for reading. */
6207 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6208 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6209 if (sh != INVALID_HANDLE_VALUE)
6210 {
6211 /* Use BackupRead() to find the info streams. Repeat until we
6212 * have done them all.*/
6213 for (;;)
6214 {
6215 /* Get the header to find the length of the stream name. If
6216 * the "readcount" is zero we have done all info streams. */
6217 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006218 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6220 &readcount, FALSE, FALSE, &context)
6221 || readcount == 0)
6222 break;
6223
6224 /* We only deal with streams that have a name. The normal
6225 * file data appears to be without a name, even though docs
6226 * suggest it is called "::$DATA". */
6227 if (sid.dwStreamNameSize > 0)
6228 {
6229 /* Read the stream name. */
6230 if (!BackupRead(sh, (LPBYTE)streamname,
6231 sid.dwStreamNameSize,
6232 &readcount, FALSE, FALSE, &context))
6233 break;
6234
6235 /* Copy an info stream with a name ":anything:$DATA".
6236 * Skip "::$DATA", it has no stream name (examples suggest
6237 * it might be used for the normal file contents).
6238 * Note that BackupRead() counts bytes, but the name is in
6239 * wide characters. */
6240 len = readcount / sizeof(WCHAR);
6241 streamname[len] = 0;
6242 if (len > 7 && wcsicmp(streamname + len - 6,
6243 L":$DATA") == 0)
6244 {
6245 streamname[len - 6] = 0;
6246 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006247 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 }
6249 }
6250
6251 /* Advance to the next stream. We might try seeking too far,
6252 * but BackupSeek() doesn't skip over stream borders, thus
6253 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006254 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 &lo, &hi, &context);
6256 }
6257
6258 /* Clear the context. */
6259 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6260
6261 CloseHandle(sh);
6262 }
6263 }
6264 vim_free(fromw);
6265 vim_free(tow);
6266}
6267#endif
6268
6269/*
6270 * Copy file attributes from file "from" to file "to".
6271 * For Windows NT and later we copy info streams.
6272 * Always returns zero, errors are ignored.
6273 */
6274 int
6275mch_copy_file_attribute(char_u *from, char_u *to)
6276{
6277#ifdef FEAT_MBYTE
6278 /* File streams only work on Windows NT and later. */
6279 PlatformId();
6280 if (g_PlatformId == VER_PLATFORM_WIN32_NT)
6281 copy_infostreams(from, to);
6282#endif
6283 return 0;
6284}
6285
6286#if defined(MYRESETSTKOFLW) || defined(PROTO)
6287/*
6288 * Recreate a destroyed stack guard page in win32.
6289 * Written by Benjamin Peterson.
6290 */
6291
6292/* These magic numbers are from the MS header files */
6293#define MIN_STACK_WIN9X 17
6294#define MIN_STACK_WINNT 2
6295
6296/*
6297 * This function does the same thing as _resetstkoflw(), which is only
6298 * available in DevStudio .net and later.
6299 * Returns 0 for failure, 1 for success.
6300 */
6301 int
6302myresetstkoflw(void)
6303{
6304 BYTE *pStackPtr;
6305 BYTE *pGuardPage;
6306 BYTE *pStackBase;
6307 BYTE *pLowestPossiblePage;
6308 MEMORY_BASIC_INFORMATION mbi;
6309 SYSTEM_INFO si;
6310 DWORD nPageSize;
6311 DWORD dummy;
6312
6313 /* This code will not work on win32s. */
6314 PlatformId();
6315 if (g_PlatformId == VER_PLATFORM_WIN32s)
6316 return 0;
6317
6318 /* We need to know the system page size. */
6319 GetSystemInfo(&si);
6320 nPageSize = si.dwPageSize;
6321
6322 /* ...and the current stack pointer */
6323 pStackPtr = (BYTE*)_alloca(1);
6324
6325 /* ...and the base of the stack. */
6326 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6327 return 0;
6328 pStackBase = (BYTE*)mbi.AllocationBase;
6329
6330 /* ...and the page thats min_stack_req pages away from stack base; this is
6331 * the lowest page we could use. */
6332 pLowestPossiblePage = pStackBase + ((g_PlatformId == VER_PLATFORM_WIN32_NT)
6333 ? MIN_STACK_WINNT : MIN_STACK_WIN9X) * nPageSize;
6334
6335 /* On Win95, we want the next page down from the end of the stack. */
6336 if (g_PlatformId == VER_PLATFORM_WIN32_WINDOWS)
6337 {
6338 /* Find the page that's only 1 page down from the page that the stack
6339 * ptr is in. */
6340 pGuardPage = (BYTE*)((DWORD)nPageSize * (((DWORD)pStackPtr
6341 / (DWORD)nPageSize) - 1));
6342 if (pGuardPage < pLowestPossiblePage)
6343 return 0;
6344
6345 /* Apply the noaccess attribute to the page -- there's no guard
6346 * attribute in win95-type OSes. */
6347 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_NOACCESS, &dummy))
6348 return 0;
6349 }
6350 else
6351 {
6352 /* On NT, however, we want the first committed page in the stack Start
6353 * at the stack base and move forward through memory until we find a
6354 * committed block. */
6355 BYTE *pBlock = pStackBase;
6356
Bram Moolenaara466c992005-07-09 21:03:22 +00006357 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 {
6359 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6360 return 0;
6361
6362 pBlock += mbi.RegionSize;
6363
6364 if (mbi.State & MEM_COMMIT)
6365 break;
6366 }
6367
6368 /* mbi now describes the first committed block in the stack. */
6369 if (mbi.Protect & PAGE_GUARD)
6370 return 1;
6371
6372 /* decide where the guard page should start */
6373 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6374 pGuardPage = pLowestPossiblePage;
6375 else
6376 pGuardPage = (BYTE*)mbi.BaseAddress;
6377
6378 /* allocate the guard page */
6379 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6380 return 0;
6381
6382 /* apply the guard attribute to the page */
6383 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6384 &dummy))
6385 return 0;
6386 }
6387
6388 return 1;
6389}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006390#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006392
6393#if defined(FEAT_MBYTE) || defined(PROTO)
6394/*
6395 * The command line arguments in UCS2
6396 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006397static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006398static LPWSTR *ArglistW = NULL;
6399static int global_argc = 0;
6400static char **global_argv;
6401
6402static int used_file_argc = 0; /* last argument in global_argv[] used
6403 for the argument list. */
6404static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6405 command line arguments added to
6406 the argument list */
6407static int used_file_count = 0; /* nr of entries in used_file_indexes */
6408static int used_file_literal = FALSE; /* take file names literally */
6409static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006410static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006411static int used_alist_count = 0;
6412
6413
6414/*
6415 * Get the command line arguments. Unicode version.
6416 * Returns argc. Zero when something fails.
6417 */
6418 int
6419get_cmd_argsW(char ***argvp)
6420{
6421 char **argv = NULL;
6422 int argc = 0;
6423 int i;
6424
6425 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
6426 if (ArglistW != NULL)
6427 {
6428 argv = malloc((nArgsW + 1) * sizeof(char *));
6429 if (argv != NULL)
6430 {
6431 argc = nArgsW;
6432 argv[argc] = NULL;
6433 for (i = 0; i < argc; ++i)
6434 {
6435 int len;
6436
6437 /* Convert each Unicode argument to the current codepage. */
6438 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006439 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006440 (LPSTR *)&argv[i], &len, 0, 0);
6441 if (argv[i] == NULL)
6442 {
6443 /* Out of memory, clear everything. */
6444 while (i > 0)
6445 free(argv[--i]);
6446 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01006447 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006448 argc = 0;
6449 }
6450 }
6451 }
6452 }
6453
6454 global_argc = argc;
6455 global_argv = argv;
6456 if (argc > 0)
6457 used_file_indexes = malloc(argc * sizeof(int));
6458
6459 if (argvp != NULL)
6460 *argvp = argv;
6461 return argc;
6462}
6463
6464 void
6465free_cmd_argsW(void)
6466{
6467 if (ArglistW != NULL)
6468 {
6469 GlobalFree(ArglistW);
6470 ArglistW = NULL;
6471 }
6472}
6473
6474/*
6475 * Remember "name" is an argument that was added to the argument list.
6476 * This avoids that we have to re-parse the argument list when fix_arg_enc()
6477 * is called.
6478 */
6479 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006480used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006481{
6482 int i;
6483
6484 if (used_file_indexes == NULL)
6485 return;
6486 for (i = used_file_argc + 1; i < global_argc; ++i)
6487 if (STRCMP(global_argv[i], name) == 0)
6488 {
6489 used_file_argc = i;
6490 used_file_indexes[used_file_count++] = i;
6491 break;
6492 }
6493 used_file_literal = literal;
6494 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006495 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006496}
6497
6498/*
6499 * Remember the length of the argument list as it was. If it changes then we
6500 * leave it alone when 'encoding' is set.
6501 */
6502 void
6503set_alist_count(void)
6504{
6505 used_alist_count = GARGCOUNT;
6506}
6507
6508/*
6509 * Fix the encoding of the command line arguments. Invoked when 'encoding'
6510 * has been changed while starting up. Use the UCS-2 command line arguments
6511 * and convert them to 'encoding'.
6512 */
6513 void
6514fix_arg_enc(void)
6515{
6516 int i;
6517 int idx;
6518 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006519 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006520
6521 /* Safety checks:
6522 * - if argument count differs between the wide and non-wide argument
6523 * list, something must be wrong.
6524 * - the file name arguments must have been located.
6525 * - the length of the argument list wasn't changed by the user.
6526 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006527 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006528 || ArglistW == NULL
6529 || used_file_indexes == NULL
6530 || used_file_count == 0
6531 || used_alist_count != GARGCOUNT)
6532 return;
6533
Bram Moolenaar86b68352004-12-27 21:59:20 +00006534 /* Remember the buffer numbers for the arguments. */
6535 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
6536 if (fnum_list == NULL)
6537 return; /* out of memory */
6538 for (i = 0; i < GARGCOUNT; ++i)
6539 fnum_list[i] = GARGLIST[i].ae_fnum;
6540
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006541 /* Clear the argument list. Make room for the new arguments. */
6542 alist_clear(&global_alist);
6543 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006544 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006545
6546 for (i = 0; i < used_file_count; ++i)
6547 {
6548 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006549 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006550 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006551 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006552#ifdef FEAT_DIFF
6553 /* When using diff mode may need to concatenate file name to
6554 * directory name. Just like it's done in main(). */
6555 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
6556 && !mch_isdir(alist_name(&GARGLIST[0])))
6557 {
6558 char_u *r;
6559
6560 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
6561 if (r != NULL)
6562 {
6563 vim_free(str);
6564 str = r;
6565 }
6566 }
6567#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006568 /* Re-use the old buffer by renaming it. When not using literal
6569 * names it's done by alist_expand() below. */
6570 if (used_file_literal)
6571 buf_set_name(fnum_list[i], str);
6572
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006573 alist_add(&global_alist, str, used_file_literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00006574 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006575 }
6576
6577 if (!used_file_literal)
6578 {
6579 /* Now expand wildcards in the arguments. */
6580 /* Temporarily add '(' and ')' to 'isfname'. These are valid
6581 * filename characters but are excluded from 'isfname' to make
6582 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
6583 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00006584 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006585 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
6586 }
6587
6588 /* If wildcard expansion failed, we are editing the first file of the
6589 * arglist and there is no file name: Edit the first argument now. */
6590 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
6591 {
6592 do_cmdline_cmd((char_u *)":rewind");
6593 if (GARGCOUNT == 1 && used_file_full_path)
6594 (void)vim_chdirfile(alist_name(&GARGLIST[0]));
6595 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006596
6597 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006598}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599#endif