blob: 22a2abc8f92bb52209f91311d526fde6b26f0e55 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaarfb630902016-10-29 14:55:00 +020053#ifdef FEAT_JOB_CHANNEL
54# include <tlhelp32.h>
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#ifdef __MINGW32__
58# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
59# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
60# endif
61# ifndef RIGHTMOST_BUTTON_PRESSED
62# define RIGHTMOST_BUTTON_PRESSED 0x0002
63# endif
64# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
65# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
66# endif
67# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
68# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
69# endif
70# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
71# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
72# endif
73
74/*
75 * EventFlags
76 */
77# ifndef MOUSE_MOVED
78# define MOUSE_MOVED 0x0001
79# endif
80# ifndef DOUBLE_CLICK
81# define DOUBLE_CLICK 0x0002
82# endif
83#endif
84
85/* Record all output and all keyboard & mouse input */
86/* #define MCH_WRITE_DUMP */
87
88#ifdef MCH_WRITE_DUMP
89FILE* fdDump = NULL;
90#endif
91
92/*
93 * When generating prototypes for Win32 on Unix, these lines make the syntax
94 * errors disappear. They do not need to be correct.
95 */
96#ifdef PROTO
97#define WINAPI
Bram Moolenaar071d4272004-06-13 20:20:40 +000098typedef char * LPCSTR;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000099typedef char * LPWSTR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100typedef int ACCESS_MASK;
101typedef int BOOL;
102typedef int COLORREF;
103typedef int CONSOLE_CURSOR_INFO;
104typedef int COORD;
105typedef int DWORD;
106typedef int HANDLE;
Bram Moolenaaref269542016-01-19 13:22:12 +0100107typedef int LPHANDLE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108typedef int HDC;
109typedef int HFONT;
110typedef int HICON;
111typedef int HINSTANCE;
112typedef int HWND;
113typedef int INPUT_RECORD;
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200114typedef int INT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115typedef int KEY_EVENT_RECORD;
116typedef int LOGFONT;
117typedef int LPBOOL;
118typedef int LPCTSTR;
119typedef int LPDWORD;
120typedef int LPSTR;
121typedef int LPTSTR;
122typedef int LPVOID;
123typedef int MOUSE_EVENT_RECORD;
124typedef int PACL;
125typedef int PDWORD;
126typedef int PHANDLE;
127typedef int PRINTDLG;
128typedef int PSECURITY_DESCRIPTOR;
129typedef int PSID;
130typedef int SECURITY_INFORMATION;
131typedef int SHORT;
132typedef int SMALL_RECT;
133typedef int TEXTMETRIC;
134typedef int TOKEN_INFORMATION_CLASS;
135typedef int TRUSTEE;
136typedef int WORD;
137typedef int WCHAR;
138typedef void VOID;
Bram Moolenaar82881492012-11-20 16:53:39 +0100139typedef int BY_HANDLE_FILE_INFORMATION;
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200140typedef int SE_OBJECT_TYPE;
141typedef int PSNSECINFO;
142typedef int PSNSECINFOW;
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +0100143typedef int STARTUPINFO;
144typedef int PROCESS_INFORMATION;
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200145typedef int LPSECURITY_ATTRIBUTES;
146# define __stdcall /* empty */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#endif
148
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#if defined(__BORLANDC__)
150/* Strangely Borland uses a non-standard name. */
151# define wcsicmp(a, b) wcscmpi((a), (b))
152#endif
153
154#ifndef FEAT_GUI_W32
155/* Win32 Console handles for input and output */
156static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
157static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
158
159/* Win32 Screen buffer,coordinate,console I/O information */
160static SMALL_RECT g_srScrollRegion;
161static COORD g_coord; /* 0-based, but external coords are 1-based */
162
163/* The attribute of the screen when the editor was started */
164static WORD g_attrDefault = 7; /* lightgray text on black background */
165static WORD g_attrCurrent;
166
167static int g_fCBrkPressed = FALSE; /* set by ctrl-break interrupt */
168static int g_fCtrlCPressed = FALSE; /* set when ctrl-C or ctrl-break detected */
169static int g_fForceExit = FALSE; /* set when forcefully exiting */
170
171static void termcap_mode_start(void);
172static void termcap_mode_end(void);
173static void clear_chars(COORD coord, DWORD n);
174static void clear_screen(void);
175static void clear_to_end_of_display(void);
176static void clear_to_end_of_line(void);
177static void scroll(unsigned cLines);
178static void set_scroll_region(unsigned left, unsigned top,
179 unsigned right, unsigned bottom);
180static void insert_lines(unsigned cLines);
181static void delete_lines(unsigned cLines);
182static void gotoxy(unsigned x, unsigned y);
183static void normvideo(void);
184static void textattr(WORD wAttr);
185static void textcolor(WORD wAttr);
186static void textbackground(WORD wAttr);
187static void standout(void);
188static void standend(void);
189static void visual_bell(void);
190static void cursor_visible(BOOL fVisible);
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200191static DWORD write_chars(char_u *pchBuf, DWORD cbToWrite);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192static void create_conin(void);
193static int s_cursor_visible = TRUE;
194static int did_create_conin = FALSE;
195#else
196static int s_dont_use_vimrun = TRUE;
197static int need_vimrun_warning = FALSE;
198static char *vimrun_path = "vimrun ";
199#endif
200
Bram Moolenaar12b559e2013-06-12 22:41:37 +0200201static int win32_getattrs(char_u *name);
202static int win32_setattrs(char_u *name, int attrs);
203static int win32_set_archive(char_u *name);
204
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205#ifndef FEAT_GUI_W32
206static int suppress_winsize = 1; /* don't fiddle with console */
207#endif
208
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200209static char_u *exe_path = NULL;
210
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100211static BOOL win8_or_later = FALSE;
212
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100213#ifndef FEAT_GUI_W32
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100214/*
215 * Version of ReadConsoleInput() that works with IME.
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100216 * Works around problems on Windows 8.
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100217 */
218 static BOOL
219read_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100220 HANDLE hInput,
221 INPUT_RECORD *lpBuffer,
222 DWORD nLength,
223 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100224{
225 enum
226 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100227 IRSIZE = 10
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100228 };
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100229 static INPUT_RECORD s_irCache[IRSIZE];
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100230 static DWORD s_dwIndex = 0;
231 static DWORD s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100232 DWORD dwEvents;
Bram Moolenaardd415a62014-02-05 14:02:27 +0100233 int head;
234 int tail;
235 int i;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100236
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200237 if (nLength == -2)
238 return (s_dwMax > 0) ? TRUE : FALSE;
239
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100240 if (!win8_or_later)
241 {
242 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200243 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
244 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100245 }
246
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100247 if (s_dwMax == 0)
248 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100249 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200250 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
251 if (!ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents))
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100252 return FALSE;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100253 s_dwIndex = 0;
254 s_dwMax = dwEvents;
255 if (dwEvents == 0)
256 {
257 *lpEvents = 0;
258 return TRUE;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100259 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100260
261 if (s_dwMax > 1)
262 {
263 head = 0;
264 tail = s_dwMax - 1;
265 while (head != tail)
266 {
267 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
268 && s_irCache[head + 1].EventType
269 == WINDOW_BUFFER_SIZE_EVENT)
270 {
271 /* Remove duplicate event to avoid flicker. */
272 for (i = head; i < tail; ++i)
273 s_irCache[i] = s_irCache[i + 1];
274 --tail;
275 continue;
276 }
277 head++;
278 }
279 s_dwMax = tail + 1;
280 }
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100281 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100282
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100283 *lpBuffer = s_irCache[s_dwIndex];
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200284 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100285 s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100286 *lpEvents = 1;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100287 return TRUE;
288}
289
290/*
291 * Version of PeekConsoleInput() that works with IME.
292 */
293 static BOOL
294peek_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100295 HANDLE hInput,
296 INPUT_RECORD *lpBuffer,
297 DWORD nLength,
298 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100299{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100300 return read_console_input(hInput, lpBuffer, -1, lpEvents);
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100301}
302
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100303# ifdef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200304 static DWORD
305msg_wait_for_multiple_objects(
306 DWORD nCount,
307 LPHANDLE pHandles,
308 BOOL fWaitAll,
309 DWORD dwMilliseconds,
310 DWORD dwWakeMask)
311{
312 if (read_console_input(NULL, NULL, -2, NULL))
313 return WAIT_OBJECT_0;
314 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
315 dwMilliseconds, dwWakeMask);
316}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100317# endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200318
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100319# ifndef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200320 static DWORD
321wait_for_single_object(
322 HANDLE hHandle,
323 DWORD dwMilliseconds)
324{
325 if (read_console_input(NULL, NULL, -2, NULL))
326 return WAIT_OBJECT_0;
327 return WaitForSingleObject(hHandle, dwMilliseconds);
328}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100329# endif
330#endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200331
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 static void
333get_exe_name(void)
334{
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100335 /* Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
336 * as the maximum length that works (plus a NUL byte). */
337#define MAX_ENV_PATH_LEN 8192
338 char temp[MAX_ENV_PATH_LEN];
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200339 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340
341 if (exe_name == NULL)
342 {
343 /* store the name of the executable, may be used for $VIM */
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100344 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 if (*temp != NUL)
346 exe_name = FullName_save((char_u *)temp, FALSE);
347 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000348
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200349 if (exe_path == NULL && exe_name != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000350 {
Bram Moolenaar6b5ef062010-10-27 12:18:00 +0200351 exe_path = vim_strnsave(exe_name,
352 (int)(gettail_sep(exe_name) - exe_name));
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200353 if (exe_path != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000354 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200355 /* Append our starting directory to $PATH, so that when doing
356 * "!xxd" it's found in our starting directory. Needed because
357 * SearchPath() also looks there. */
358 p = mch_getenv("PATH");
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100359 if (p == NULL
360 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200361 {
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100362 if (p == NULL || *p == NUL)
363 temp[0] = NUL;
364 else
365 {
366 STRCPY(temp, p);
367 STRCAT(temp, ";");
368 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200369 STRCAT(temp, exe_path);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100370 vim_setenv((char_u *)"PATH", (char_u *)temp);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200371 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000372 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374}
375
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200376/*
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100377 * Unescape characters in "p" that appear in "escaped".
378 */
379 static void
380unescape_shellxquote(char_u *p, char_u *escaped)
381{
Bram Moolenaar4336cdf2012-02-29 13:58:47 +0100382 int l = (int)STRLEN(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100383 int n;
384
385 while (*p != NUL)
386 {
387 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
388 mch_memmove(p, p + 1, l--);
389#ifdef FEAT_MBYTE
390 n = (*mb_ptr2len)(p);
391#else
392 n = 1;
393#endif
394 p += n;
395 l -= n;
396 }
397}
398
399/*
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200400 * Load library "name".
401 */
402 HINSTANCE
403vimLoadLib(char *name)
404{
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200405 HINSTANCE dll = NULL;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200406
Bram Moolenaarfaca8402012-10-21 02:37:10 +0200407 /* NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
408 * vimLoadLib() recursively, which causes a stack overflow. */
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200409 if (exe_path == NULL)
410 get_exe_name();
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200411 if (exe_path != NULL)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200412 {
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200413 WCHAR old_dirw[MAXPATHL];
414
415 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
416 {
417 /* Change directory to where the executable is, both to make
418 * sure we find a .dll there and to avoid looking for a .dll
419 * in the current directory. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100420 SetCurrentDirectory((LPCSTR)exe_path);
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200421 dll = LoadLibrary(name);
422 SetCurrentDirectoryW(old_dirw);
423 return dll;
424 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200425 }
426 return dll;
427}
428
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100429#if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
430/*
431 * Get related information about 'funcname' which is imported by 'hInst'.
432 * If 'info' is 0, return the function address.
433 * If 'info' is 1, return the module name which the function is imported from.
434 */
435 static void *
436get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
437{
438 PBYTE pImage = (PBYTE)hInst;
439 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
440 PIMAGE_NT_HEADERS pPE;
441 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
442 PIMAGE_THUNK_DATA pIAT; /* Import Address Table */
443 PIMAGE_THUNK_DATA pINT; /* Import Name Table */
444 PIMAGE_IMPORT_BY_NAME pImpName;
445
446 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
447 return NULL;
448 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
449 if (pPE->Signature != IMAGE_NT_SIGNATURE)
450 return NULL;
451 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
452 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
453 .VirtualAddress);
454 for (; pImpDesc->FirstThunk; ++pImpDesc)
455 {
456 if (!pImpDesc->OriginalFirstThunk)
457 continue;
458 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
459 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
460 for (; pIAT->u1.Function; ++pIAT, ++pINT)
461 {
462 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
463 continue;
464 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
465 + (UINT_PTR)(pINT->u1.AddressOfData));
466 if (strcmp((char *)pImpName->Name, funcname) == 0)
467 {
468 switch (info)
469 {
470 case 0:
471 return (void *)pIAT->u1.Function;
472 case 1:
473 return (void *)(pImage + pImpDesc->Name);
474 default:
475 return NULL;
476 }
477 }
478 }
479 }
480 return NULL;
481}
482
483/*
484 * Get the module handle which 'funcname' in 'hInst' is imported from.
485 */
486 HINSTANCE
487find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
488{
489 char *modulename;
490
491 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
492 if (modulename != NULL)
493 return GetModuleHandleA(modulename);
494 return NULL;
495}
496
497/*
498 * Get the address of 'funcname' which is imported by 'hInst' DLL.
499 */
500 void *
501get_dll_import_func(HINSTANCE hInst, const char *funcname)
502{
503 return get_imported_func_info(hInst, funcname, 0);
504}
505#endif
506
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507#if defined(DYNAMIC_GETTEXT) || defined(PROTO)
508# ifndef GETTEXT_DLL
509# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100510# define GETTEXT_DLL_ALT "libintl-8.dll"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511# endif
Bram Moolenaarf6a2b082012-06-29 13:14:03 +0200512/* Dummy functions */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000513static char *null_libintl_gettext(const char *);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200514static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000515static char *null_libintl_textdomain(const char *);
516static char *null_libintl_bindtextdomain(const char *, const char *);
517static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100518static int null_libintl_putenv(const char *);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100519static int null_libintl_wputenv(const wchar_t *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200521static HINSTANCE hLibintlDLL = NULL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000522char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200523char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
524 = null_libintl_ngettext;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000525char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
526char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000528char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
529 = null_libintl_bind_textdomain_codeset;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100530int (*dyn_libintl_putenv)(const char *) = null_libintl_putenv;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100531int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
533 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100534dyn_libintl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535{
536 int i;
537 static struct
538 {
539 char *name;
540 FARPROC *ptr;
541 } libintl_entry[] =
542 {
543 {"gettext", (FARPROC*)&dyn_libintl_gettext},
Bram Moolenaaree695f72016-08-03 22:08:45 +0200544 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
546 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
547 {NULL, NULL}
548 };
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100549 HINSTANCE hmsvcrt;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550
551 /* No need to initialize twice. */
552 if (hLibintlDLL)
553 return 1;
554 /* Load gettext library (libintl.dll) */
Bram Moolenaar923e43b2016-01-28 15:07:38 +0100555 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
Bram Moolenaar938ee832016-01-24 15:36:03 +0100556#ifdef GETTEXT_DLL_ALT
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100557 if (!hLibintlDLL)
558 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT);
Bram Moolenaar938ee832016-01-24 15:36:03 +0100559#endif
560 if (!hLibintlDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200562 if (p_verbose > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200564 verbose_enter();
565 EMSG2(_(e_loadlib), GETTEXT_DLL);
566 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200568 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 }
570 for (i = 0; libintl_entry[i].name != NULL
571 && libintl_entry[i].ptr != NULL; ++i)
572 {
573 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
574 libintl_entry[i].name)) == NULL)
575 {
576 dyn_libintl_end();
577 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000578 {
579 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 EMSG2(_(e_loadfunc), libintl_entry[i].name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000581 verbose_leave();
582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 return 0;
584 }
585 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000586
587 /* The bind_textdomain_codeset() function is optional. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000588 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000589 "bind_textdomain_codeset");
590 if (dyn_libintl_bind_textdomain_codeset == NULL)
591 dyn_libintl_bind_textdomain_codeset =
592 null_libintl_bind_textdomain_codeset;
593
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100594 /* _putenv() function for the libintl.dll is optional. */
595 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
596 if (hmsvcrt != NULL)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100597 {
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100598 dyn_libintl_putenv = (void *)GetProcAddress(hmsvcrt, "_putenv");
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100599 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
600 }
601 if (dyn_libintl_putenv == NULL || dyn_libintl_putenv == _putenv)
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100602 dyn_libintl_putenv = null_libintl_putenv;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100603 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
604 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100605
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 return 1;
607}
608
609 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100610dyn_libintl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611{
612 if (hLibintlDLL)
613 FreeLibrary(hLibintlDLL);
614 hLibintlDLL = NULL;
615 dyn_libintl_gettext = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200616 dyn_libintl_ngettext = null_libintl_ngettext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 dyn_libintl_textdomain = null_libintl_textdomain;
618 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000619 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100620 dyn_libintl_putenv = null_libintl_putenv;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100621 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622}
623
624 static char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000625null_libintl_gettext(const char *msgid)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626{
627 return (char*)msgid;
628}
629
630 static char *
Bram Moolenaaree695f72016-08-03 22:08:45 +0200631null_libintl_ngettext(
632 const char *msgid,
633 const char *msgid_plural,
634 unsigned long n)
635{
Bram Moolenaarc90f2ae2016-08-04 22:00:15 +0200636 return (char *)(n == 1 ? msgid : msgid_plural);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200637}
638
Bram Moolenaaree695f72016-08-03 22:08:45 +0200639 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100640null_libintl_bindtextdomain(
641 const char *domainname UNUSED,
642 const char *dirname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643{
644 return NULL;
645}
646
647 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100648null_libintl_bind_textdomain_codeset(
649 const char *domainname UNUSED,
650 const char *codeset UNUSED)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000651{
652 return NULL;
653}
654
655 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100656null_libintl_textdomain(const char *domainname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657{
658 return NULL;
659}
660
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200661 static int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100662null_libintl_putenv(const char *envstring UNUSED)
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100663{
664 return 0;
665}
666
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200667 static int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100668null_libintl_wputenv(const wchar_t *envstring UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100669{
670 return 0;
671}
672
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673#endif /* DYNAMIC_GETTEXT */
674
675/* This symbol is not defined in older versions of the SDK or Visual C++ */
676
677#ifndef VER_PLATFORM_WIN32_WINDOWS
678# define VER_PLATFORM_WIN32_WINDOWS 1
679#endif
680
681DWORD g_PlatformId;
682
683#ifdef HAVE_ACL
Bram Moolenaar82881492012-11-20 16:53:39 +0100684# ifndef PROTO
685# include <aclapi.h>
686# endif
Bram Moolenaar27515922013-06-29 15:36:26 +0200687# ifndef PROTECTED_DACL_SECURITY_INFORMATION
688# define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
689# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690#endif
691
Bram Moolenaar27515922013-06-29 15:36:26 +0200692#ifdef HAVE_ACL
693/*
694 * Enables or disables the specified privilege.
695 */
696 static BOOL
697win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
698{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100699 BOOL bResult;
700 LUID luid;
701 HANDLE hToken;
702 TOKEN_PRIVILEGES tokenPrivileges;
Bram Moolenaar27515922013-06-29 15:36:26 +0200703
704 if (!OpenProcessToken(GetCurrentProcess(),
705 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
706 return FALSE;
707
708 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
709 {
710 CloseHandle(hToken);
711 return FALSE;
712 }
713
Bram Moolenaar45500912014-07-09 20:51:07 +0200714 tokenPrivileges.PrivilegeCount = 1;
Bram Moolenaar27515922013-06-29 15:36:26 +0200715 tokenPrivileges.Privileges[0].Luid = luid;
716 tokenPrivileges.Privileges[0].Attributes = bEnable ?
717 SE_PRIVILEGE_ENABLED : 0;
718
719 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
720 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
721
722 CloseHandle(hToken);
723
724 return bResult && GetLastError() == ERROR_SUCCESS;
725}
726#endif
727
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728/*
729 * Set g_PlatformId to VER_PLATFORM_WIN32_NT (NT) or
730 * VER_PLATFORM_WIN32_WINDOWS (Win95).
731 */
732 void
733PlatformId(void)
734{
735 static int done = FALSE;
736
737 if (!done)
738 {
739 OSVERSIONINFO ovi;
740
741 ovi.dwOSVersionInfoSize = sizeof(ovi);
742 GetVersionEx(&ovi);
743
744 g_PlatformId = ovi.dwPlatformId;
745
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100746 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
747 || ovi.dwMajorVersion > 6)
748 win8_or_later = TRUE;
749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750#ifdef HAVE_ACL
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200751 /* Enable privilege for getting or setting SACLs. */
752 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753#endif
754 done = TRUE;
755 }
756}
757
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#ifndef FEAT_GUI_W32
759
760#define SHIFT (SHIFT_PRESSED)
761#define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
762#define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
763#define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
764
765
766/* When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
767 * We map function keys to their ANSI terminal equivalents, as produced
768 * by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
769 * ANSI key with a value >= '\300' is nonstandard, but provided anyway
770 * so that the user can have access to all SHIFT-, CTRL-, and ALT-
771 * combinations of function/arrow/etc keys.
772 */
773
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000774static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775{
776 WORD wVirtKey;
777 BOOL fAnsiKey;
778 int chAlone;
779 int chShift;
780 int chCtrl;
781 int chAlt;
782} VirtKeyMap[] =
783{
784
785/* Key ANSI alone shift ctrl alt */
786 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
787
788 { VK_F1, TRUE, ';', 'T', '^', 'h', },
789 { VK_F2, TRUE, '<', 'U', '_', 'i', },
790 { VK_F3, TRUE, '=', 'V', '`', 'j', },
791 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
792 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
793 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
794 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
795 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
796 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
797 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
798 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
799 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
800
801 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
802 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
803 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, /*PgUp*/
804 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
805 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
806 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
807 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
808 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, /*PgDn*/
809 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
810 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
811
812 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, /*PrtScrn*/
813
814#if 0
815 /* Most people don't have F13-F20, but what the hell... */
816 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
817 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
818 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
819 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
820 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
821 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
822 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
823 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
824#endif
825 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, /* keyp '+' */
826 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, /* keyp '-' */
827 /* { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, keyp '/' */
828 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, /* keyp '*' */
829
830 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
831 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
832 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
833 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
834 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
835 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
836 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
837 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
838 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
839 /* Sorry, out of number space! <negri>*/
840 { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', },
841
842};
843
844
845#ifdef _MSC_VER
846// The ToAscii bug destroys several registers. Need to turn off optimization
847// or the GetConsoleKeyboardLayoutName hack will fail in non-debug versions
Bram Moolenaar7b5f8322006-03-23 22:47:08 +0000848# pragma warning(push)
849# pragma warning(disable: 4748)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850# pragma optimize("", off)
851#endif
852
853#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200854# define UChar UnicodeChar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855#else
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200856# define UChar uChar.UnicodeChar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857#endif
858
859/* The return code indicates key code size. */
860 static int
861#ifdef __BORLANDC__
862 __stdcall
863#endif
864win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000865 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866{
867 UINT uMods = pker->dwControlKeyState;
868 static int s_iIsDead = 0;
869 static WORD awAnsiCode[2];
870 static BYTE abKeystate[256];
871
872
873 if (s_iIsDead == 2)
874 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200875 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 s_iIsDead = 0;
877 return 1;
878 }
879
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200880 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 return 1;
882
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200883 vim_memset(abKeystate, 0, sizeof (abKeystate));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 /* Clear any pending dead keys */
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200886 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887
888 if (uMods & SHIFT_PRESSED)
889 abKeystate[VK_SHIFT] = 0x80;
890 if (uMods & CAPSLOCK_ON)
891 abKeystate[VK_CAPITAL] = 1;
892
893 if ((uMods & ALT_GR) == ALT_GR)
894 {
895 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
896 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
897 }
898
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200899 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
900 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901
902 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200903 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904
905 return s_iIsDead;
906}
907
908#ifdef _MSC_VER
909/* MUST switch optimization on again here, otherwise a call to
910 * decode_key_event() may crash (e.g. when hitting caps-lock) */
911# pragma optimize("", on)
Bram Moolenaar7b5f8322006-03-23 22:47:08 +0000912# pragma warning(pop)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913
914# if (_MSC_VER < 1100)
915/* MUST turn off global optimisation for this next function, or
916 * pressing ctrl-minus in insert mode crashes Vim when built with
917 * VC4.1. -- negri. */
918# pragma optimize("g", off)
919# endif
920#endif
921
922static BOOL g_fJustGotFocus = FALSE;
923
924/*
925 * Decode a KEY_EVENT into one or two keystrokes
926 */
927 static BOOL
928decode_key_event(
929 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200930 WCHAR *pch,
931 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 int *pmodifiers,
933 BOOL fDoPost)
934{
935 int i;
936 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
937
938 *pch = *pch2 = NUL;
939 g_fJustGotFocus = FALSE;
940
941 /* ignore key up events */
942 if (!pker->bKeyDown)
943 return FALSE;
944
945 /* ignore some keystrokes */
946 switch (pker->wVirtualKeyCode)
947 {
948 /* modifiers */
949 case VK_SHIFT:
950 case VK_CONTROL:
951 case VK_MENU: /* Alt key */
952 return FALSE;
953
954 default:
955 break;
956 }
957
958 /* special cases */
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200959 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 {
961 /* Ctrl-6 is Ctrl-^ */
962 if (pker->wVirtualKeyCode == '6')
963 {
964 *pch = Ctrl_HAT;
965 return TRUE;
966 }
967 /* Ctrl-2 is Ctrl-@ */
968 else if (pker->wVirtualKeyCode == '2')
969 {
970 *pch = NUL;
971 return TRUE;
972 }
973 /* Ctrl-- is Ctrl-_ */
974 else if (pker->wVirtualKeyCode == 0xBD)
975 {
976 *pch = Ctrl__;
977 return TRUE;
978 }
979 }
980
981 /* Shift-TAB */
982 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
983 {
984 *pch = K_NUL;
985 *pch2 = '\017';
986 return TRUE;
987 }
988
989 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
990 {
991 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
992 {
993 if (nModifs == 0)
994 *pch = VirtKeyMap[i].chAlone;
995 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
996 *pch = VirtKeyMap[i].chShift;
997 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
998 *pch = VirtKeyMap[i].chCtrl;
999 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
1000 *pch = VirtKeyMap[i].chAlt;
1001
1002 if (*pch != 0)
1003 {
1004 if (VirtKeyMap[i].fAnsiKey)
1005 {
1006 *pch2 = *pch;
1007 *pch = K_NUL;
1008 }
1009
1010 return TRUE;
1011 }
1012 }
1013 }
1014
1015 i = win32_kbd_patch_key(pker);
1016
1017 if (i < 0)
1018 *pch = NUL;
1019 else
1020 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001021 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022
1023 if (pmodifiers != NULL)
1024 {
1025 /* Pass on the ALT key as a modifier, but only when not combined
1026 * with CTRL (which is ALTGR). */
1027 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1028 *pmodifiers |= MOD_MASK_ALT;
1029
1030 /* Pass on SHIFT only for special keys, because we don't know when
1031 * it's already included with the character. */
1032 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1033 *pmodifiers |= MOD_MASK_SHIFT;
1034
1035 /* Pass on CTRL only for non-special keys, because we don't know
1036 * when it's already included with the character. And not when
1037 * combined with ALT (which is ALTGR). */
1038 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1039 && *pch >= 0x20 && *pch < 0x80)
1040 *pmodifiers |= MOD_MASK_CTRL;
1041 }
1042 }
1043
1044 return (*pch != NUL);
1045}
1046
1047#ifdef _MSC_VER
1048# pragma optimize("", on)
1049#endif
1050
1051#endif /* FEAT_GUI_W32 */
1052
1053
1054#ifdef FEAT_MOUSE
1055
1056/*
1057 * For the GUI the mouse handling is in gui_w32.c.
1058 */
1059# ifdef FEAT_GUI_W32
1060 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001061mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062{
1063}
1064# else
1065static int g_fMouseAvail = FALSE; /* mouse present */
1066static int g_fMouseActive = FALSE; /* mouse enabled */
1067static int g_nMouseClick = -1; /* mouse status */
1068static int g_xMouse; /* mouse x coordinate */
1069static int g_yMouse; /* mouse y coordinate */
1070
1071/*
1072 * Enable or disable mouse input
1073 */
1074 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001075mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076{
1077 DWORD cmodein;
1078
1079 if (!g_fMouseAvail)
1080 return;
1081
1082 g_fMouseActive = on;
1083 GetConsoleMode(g_hConIn, &cmodein);
1084
1085 if (g_fMouseActive)
1086 cmodein |= ENABLE_MOUSE_INPUT;
1087 else
1088 cmodein &= ~ENABLE_MOUSE_INPUT;
1089
1090 SetConsoleMode(g_hConIn, cmodein);
1091}
1092
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093/*
1094 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1095 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1096 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1097 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1098 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1099 * and we return the mouse position in g_xMouse and g_yMouse.
1100 *
1101 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1102 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1103 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1104 *
1105 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1106 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1107 *
1108 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1109 * moves, even if it stays within the same character cell. We ignore
1110 * all MOUSE_MOVED messages if the position hasn't really changed, and
1111 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1112 * we're only interested in MOUSE_DRAG).
1113 *
1114 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1115 * 2-button mouses by pressing the left & right buttons simultaneously.
1116 * In practice, it's almost impossible to click both at the same time,
1117 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1118 * in such cases, if the user is clicking quickly.
1119 */
1120 static BOOL
1121decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001122 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123{
1124 static int s_nOldButton = -1;
1125 static int s_nOldMouseClick = -1;
1126 static int s_xOldMouse = -1;
1127 static int s_yOldMouse = -1;
1128 static linenr_T s_old_topline = 0;
1129#ifdef FEAT_DIFF
1130 static int s_old_topfill = 0;
1131#endif
1132 static int s_cClicks = 1;
1133 static BOOL s_fReleased = TRUE;
1134 static DWORD s_dwLastClickTime = 0;
1135 static BOOL s_fNextIsMiddle = FALSE;
1136
1137 static DWORD cButtons = 0; /* number of buttons supported */
1138
1139 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1140 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1141 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1142 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1143
1144 int nButton;
1145
1146 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1147 cButtons = 2;
1148
1149 if (!g_fMouseAvail || !g_fMouseActive)
1150 {
1151 g_nMouseClick = -1;
1152 return FALSE;
1153 }
1154
1155 /* get a spurious MOUSE_EVENT immediately after receiving focus; ignore */
1156 if (g_fJustGotFocus)
1157 {
1158 g_fJustGotFocus = FALSE;
1159 return FALSE;
1160 }
1161
1162 /* unprocessed mouse click? */
1163 if (g_nMouseClick != -1)
1164 return TRUE;
1165
1166 nButton = -1;
1167 g_xMouse = pmer->dwMousePosition.X;
1168 g_yMouse = pmer->dwMousePosition.Y;
1169
1170 if (pmer->dwEventFlags == MOUSE_MOVED)
1171 {
1172 /* ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1173 * events even when the mouse moves only within a char cell.) */
1174 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1175 return FALSE;
1176 }
1177
1178 /* If no buttons are pressed... */
1179 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1180 {
1181 /* If the last thing returned was MOUSE_RELEASE, ignore this */
1182 if (s_fReleased)
1183 return FALSE;
1184
1185 nButton = MOUSE_RELEASE;
1186 s_fReleased = TRUE;
1187 }
1188 else /* one or more buttons pressed */
1189 {
1190 /* on a 2-button mouse, hold down left and right buttons
1191 * simultaneously to get MIDDLE. */
1192
1193 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1194 {
1195 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1196
1197 /* if either left or right button only is pressed, see if the
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001198 * next mouse event has both of them pressed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 if (dwLR == LEFT || dwLR == RIGHT)
1200 {
1201 for (;;)
1202 {
1203 /* wait a short time for next input event */
1204 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1205 != WAIT_OBJECT_0)
1206 break;
1207 else
1208 {
1209 DWORD cRecords = 0;
1210 INPUT_RECORD ir;
1211 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1212
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001213 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
1215 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1216 || !(pmer2->dwButtonState & LEFT_RIGHT))
1217 break;
1218 else
1219 {
1220 if (pmer2->dwEventFlags != MOUSE_MOVED)
1221 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001222 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
1224 return decode_mouse_event(pmer2);
1225 }
1226 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1227 s_yOldMouse == pmer2->dwMousePosition.Y)
1228 {
1229 /* throw away spurious mouse move */
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001230 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
1232 /* are there any more mouse events in queue? */
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001233 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234
1235 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1236 break;
1237 }
1238 else
1239 break;
1240 }
1241 }
1242 }
1243 }
1244 }
1245
1246 if (s_fNextIsMiddle)
1247 {
1248 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1249 ? MOUSE_DRAG : MOUSE_MIDDLE;
1250 s_fNextIsMiddle = FALSE;
1251 }
1252 else if (cButtons == 2 &&
1253 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1254 {
1255 nButton = MOUSE_MIDDLE;
1256
1257 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1258 {
1259 s_fNextIsMiddle = TRUE;
1260 nButton = MOUSE_RELEASE;
1261 }
1262 }
1263 else if ((pmer->dwButtonState & LEFT) == LEFT)
1264 nButton = MOUSE_LEFT;
1265 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1266 nButton = MOUSE_MIDDLE;
1267 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1268 nButton = MOUSE_RIGHT;
1269
1270 if (! s_fReleased && ! s_fNextIsMiddle
1271 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1272 return FALSE;
1273
1274 s_fReleased = s_fNextIsMiddle;
1275 }
1276
1277 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1278 {
1279 /* button pressed or released, without mouse moving */
1280 if (nButton != -1 && nButton != MOUSE_RELEASE)
1281 {
1282 DWORD dwCurrentTime = GetTickCount();
1283
1284 if (s_xOldMouse != g_xMouse
1285 || s_yOldMouse != g_yMouse
1286 || s_nOldButton != nButton
1287 || s_old_topline != curwin->w_topline
1288#ifdef FEAT_DIFF
1289 || s_old_topfill != curwin->w_topfill
1290#endif
1291 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1292 {
1293 s_cClicks = 1;
1294 }
1295 else if (++s_cClicks > 4)
1296 {
1297 s_cClicks = 1;
1298 }
1299
1300 s_dwLastClickTime = dwCurrentTime;
1301 }
1302 }
1303 else if (pmer->dwEventFlags == MOUSE_MOVED)
1304 {
1305 if (nButton != -1 && nButton != MOUSE_RELEASE)
1306 nButton = MOUSE_DRAG;
1307
1308 s_cClicks = 1;
1309 }
1310
1311 if (nButton == -1)
1312 return FALSE;
1313
1314 if (nButton != MOUSE_RELEASE)
1315 s_nOldButton = nButton;
1316
1317 g_nMouseClick = nButton;
1318
1319 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1320 g_nMouseClick |= MOUSE_SHIFT;
1321 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1322 g_nMouseClick |= MOUSE_CTRL;
1323 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1324 g_nMouseClick |= MOUSE_ALT;
1325
1326 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1327 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1328
1329 /* only pass on interesting (i.e., different) mouse events */
1330 if (s_xOldMouse == g_xMouse
1331 && s_yOldMouse == g_yMouse
1332 && s_nOldMouseClick == g_nMouseClick)
1333 {
1334 g_nMouseClick = -1;
1335 return FALSE;
1336 }
1337
1338 s_xOldMouse = g_xMouse;
1339 s_yOldMouse = g_yMouse;
1340 s_old_topline = curwin->w_topline;
1341#ifdef FEAT_DIFF
1342 s_old_topfill = curwin->w_topfill;
1343#endif
1344 s_nOldMouseClick = g_nMouseClick;
1345
1346 return TRUE;
1347}
1348
1349# endif /* FEAT_GUI_W32 */
1350#endif /* FEAT_MOUSE */
1351
1352
1353#ifdef MCH_CURSOR_SHAPE
1354/*
1355 * Set the shape of the cursor.
1356 * 'thickness' can be from 1 (thin) to 99 (block)
1357 */
1358 static void
1359mch_set_cursor_shape(int thickness)
1360{
1361 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1362 ConsoleCursorInfo.dwSize = thickness;
1363 ConsoleCursorInfo.bVisible = s_cursor_visible;
1364
1365 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1366 if (s_cursor_visible)
1367 SetConsoleCursorPosition(g_hConOut, g_coord);
1368}
1369
1370 void
1371mch_update_cursor(void)
1372{
1373 int idx;
1374 int thickness;
1375
1376 /*
1377 * How the cursor is drawn depends on the current mode.
1378 */
1379 idx = get_shape_idx(FALSE);
1380
1381 if (shape_table[idx].shape == SHAPE_BLOCK)
1382 thickness = 99; /* 100 doesn't work on W95 */
1383 else
1384 thickness = shape_table[idx].percentage;
1385 mch_set_cursor_shape(thickness);
1386}
1387#endif
1388
1389#ifndef FEAT_GUI_W32 /* this isn't used for the GUI */
1390/*
1391 * Handle FOCUS_EVENT.
1392 */
1393 static void
1394handle_focus_event(INPUT_RECORD ir)
1395{
1396 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1397 ui_focus_change((int)g_fJustGotFocus);
1398}
1399
1400/*
1401 * Wait until console input from keyboard or mouse is available,
1402 * or the time is up.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001403 * When "ignore_input" is TRUE even wait when input is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 * Return TRUE if something is available FALSE if not.
1405 */
1406 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001407WaitForChar(long msec, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408{
1409 DWORD dwNow = 0, dwEndTime = 0;
1410 INPUT_RECORD ir;
1411 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001412 WCHAR ch, ch2;
Bram Moolenaar4445f7e2016-04-20 20:55:56 +02001413#ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001414 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar4445f7e2016-04-20 20:55:56 +02001415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
1417 if (msec > 0)
1418 /* Wait until the specified time has elapsed. */
1419 dwEndTime = GetTickCount() + msec;
1420 else if (msec < 0)
1421 /* Wait forever. */
1422 dwEndTime = INFINITE;
1423
1424 /* We need to loop until the end of the time period, because
1425 * we might get multiple unusable mouse events in that time.
1426 */
1427 for (;;)
1428 {
Bram Moolenaarca568ae2016-02-01 21:32:58 +01001429#ifdef MESSAGE_QUEUE
1430 parse_queued_messages();
1431#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001432#ifdef FEAT_MZSCHEME
1433 mzvim_check_threads();
1434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435#ifdef FEAT_CLIENTSERVER
1436 serverProcessPendingMessages();
1437#endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001438
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 if (0
1440#ifdef FEAT_MOUSE
1441 || g_nMouseClick != -1
1442#endif
1443#ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001444 || (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445#endif
1446 )
1447 return TRUE;
1448
1449 if (msec > 0)
1450 {
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001451 /* If the specified wait time has passed, return. Beware that
1452 * GetTickCount() may wrap around (overflow). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001454 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 break;
1456 }
1457 if (msec != 0)
1458 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001459 DWORD dwWaitTime = dwEndTime - dwNow;
1460
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001461#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001462 /* Check channel while waiting for input. */
Bram Moolenaar9186a272016-02-23 19:34:01 +01001463 if (dwWaitTime > 100)
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001464 {
Bram Moolenaar9186a272016-02-23 19:34:01 +01001465 dwWaitTime = 100;
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001466 /* If there is readahead then parse_queued_messages() timed out
1467 * and we should call it again soon. */
1468 if (channel_any_readahead())
1469 dwWaitTime = 10;
1470 }
Bram Moolenaar9186a272016-02-23 19:34:01 +01001471#endif
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001472#ifdef FEAT_BEVAL_GUI
Bram Moolenaar59716a22017-03-01 20:32:44 +01001473 if (p_beval && dwWaitTime > 100)
1474 /* The 'balloonexpr' may indirectly invoke a callback while
1475 * waiting for a character, need to check often. */
1476 dwWaitTime = 100;
1477#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001478#ifdef FEAT_MZSCHEME
1479 if (mzthreads_allowed() && p_mzq > 0
1480 && (msec < 0 || (long)dwWaitTime > p_mzq))
1481 dwWaitTime = p_mzq; /* don't wait longer than 'mzquantum' */
1482#endif
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001483#ifdef FEAT_TIMERS
1484 {
1485 long due_time;
1486
1487 /* When waiting very briefly don't trigger timers. */
1488 if (dwWaitTime > 10)
1489 {
1490 /* Trigger timers and then get the time in msec until the
1491 * next one is due. Wait up to that time. */
1492 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001493 if (typebuf.tb_change_cnt != tb_change_cnt)
1494 {
1495 /* timer may have used feedkeys() */
1496 return FALSE;
1497 }
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001498 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1499 dwWaitTime = due_time;
1500 }
1501 }
1502#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503#ifdef FEAT_CLIENTSERVER
1504 /* Wait for either an event on the console input or a message in
1505 * the client-server window. */
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +02001506 if (msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001507 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508#else
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +02001509 if (wait_for_single_object(g_hConIn, dwWaitTime) != WAIT_OBJECT_0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510#endif
1511 continue;
1512 }
1513
1514 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001515 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516
1517#ifdef FEAT_MBYTE_IME
1518 if (State & CMDLINE && msg_row == Rows - 1)
1519 {
1520 CONSOLE_SCREEN_BUFFER_INFO csbi;
1521
1522 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1523 {
1524 if (csbi.dwCursorPosition.Y != msg_row)
1525 {
1526 /* The screen is now messed up, must redraw the
1527 * command line and later all the windows. */
1528 redraw_all_later(CLEAR);
1529 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
1530 redrawcmd();
1531 }
1532 }
1533 }
1534#endif
1535
1536 if (cRecords > 0)
1537 {
1538 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1539 {
1540#ifdef FEAT_MBYTE_IME
1541 /* Windows IME sends two '\n's with only one 'ENTER'. First:
1542 * wVirtualKeyCode == 13. second: wVirtualKeyCode == 0 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001543 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1545 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001546 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 continue;
1548 }
1549#endif
1550 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1551 NULL, FALSE))
1552 return TRUE;
1553 }
1554
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001555 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556
1557 if (ir.EventType == FOCUS_EVENT)
1558 handle_focus_event(ir);
1559 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1560 shell_resized();
1561#ifdef FEAT_MOUSE
1562 else if (ir.EventType == MOUSE_EVENT
1563 && decode_mouse_event(&ir.Event.MouseEvent))
1564 return TRUE;
1565#endif
1566 }
1567 else if (msec == 0)
1568 break;
1569 }
1570
1571#ifdef FEAT_CLIENTSERVER
1572 /* Something might have been received while we were waiting. */
1573 if (input_available())
1574 return TRUE;
1575#endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001576
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 return FALSE;
1578}
1579
1580#ifndef FEAT_GUI_MSWIN
1581/*
1582 * return non-zero if a character is available
1583 */
1584 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001585mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586{
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001587 return WaitForChar(0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001589
1590# if defined(FEAT_TERMINAL) || defined(PROTO)
1591/*
1592 * Check for any pending input or messages.
1593 */
1594 int
1595mch_check_messages(void)
1596{
1597 return WaitForChar(0L, TRUE);
1598}
1599# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600#endif
1601
1602/*
1603 * Create the console input. Used when reading stdin doesn't work.
1604 */
1605 static void
1606create_conin(void)
1607{
1608 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1609 FILE_SHARE_READ|FILE_SHARE_WRITE,
1610 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001611 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 did_create_conin = TRUE;
1613}
1614
1615/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001616 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001618 static WCHAR
1619tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001621 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622
1623 for (;;)
1624 {
1625 INPUT_RECORD ir;
1626 DWORD cRecords = 0;
1627
1628#ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001629 (void)WaitForChar(-1L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 if (input_available())
1631 return 0;
1632# ifdef FEAT_MOUSE
1633 if (g_nMouseClick != -1)
1634 return 0;
1635# endif
1636#endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001637 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 {
1639 if (did_create_conin)
1640 read_error_exit();
1641 create_conin();
1642 continue;
1643 }
1644
1645 if (ir.EventType == KEY_EVENT)
1646 {
1647 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1648 pmodifiers, TRUE))
1649 return ch;
1650 }
1651 else if (ir.EventType == FOCUS_EVENT)
1652 handle_focus_event(ir);
1653 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1654 shell_resized();
1655#ifdef FEAT_MOUSE
1656 else if (ir.EventType == MOUSE_EVENT)
1657 {
1658 if (decode_mouse_event(&ir.Event.MouseEvent))
1659 return 0;
1660 }
1661#endif
1662 }
1663}
1664#endif /* !FEAT_GUI_W32 */
1665
1666
1667/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001668 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 * Get one or more characters from the keyboard or the mouse.
1670 * If time == 0, do not wait for characters.
1671 * If time == n, wait a short time for characters.
1672 * If time == -1, wait forever for characters.
1673 * Returns the number of characters read into buf.
1674 */
1675 int
1676mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001677 char_u *buf UNUSED,
1678 int maxlen UNUSED,
1679 long time UNUSED,
1680 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681{
1682#ifndef FEAT_GUI_W32 /* this isn't used for the GUI */
1683
1684 int len;
1685 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686#define TYPEAHEADLEN 20
1687 static char_u typeahead[TYPEAHEADLEN]; /* previously typed bytes. */
1688 static int typeaheadlen = 0;
1689
1690 /* First use any typeahead that was kept because "buf" was too small. */
1691 if (typeaheadlen > 0)
1692 goto theend;
1693
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 if (time >= 0)
1695 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001696 if (!WaitForChar(time, FALSE)) /* no character available */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 }
1699 else /* time == -1, wait forever */
1700 {
1701 mch_set_winsize_now(); /* Allow winsize changes from now on */
1702
Bram Moolenaar3918c952005-03-15 22:34:55 +00001703 /*
1704 * If there is no character available within 2 seconds (default)
1705 * write the autoscript file to disk. Or cause the CursorHold event
1706 * to be triggered.
1707 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001708 if (!WaitForChar(p_ut, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 {
1710#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +00001711 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001713 buf[0] = K_SPECIAL;
1714 buf[1] = KS_EXTRA;
1715 buf[2] = (int)KE_CURSORHOLD;
1716 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 }
1718#endif
Bram Moolenaar702517d2005-06-27 22:34:07 +00001719 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 }
1721 }
1722
1723 /*
1724 * Try to read as many characters as there are, until the buffer is full.
1725 */
1726
1727 /* we will get at least one key. Get more if they are available. */
1728 g_fCBrkPressed = FALSE;
1729
1730#ifdef MCH_WRITE_DUMP
1731 if (fdDump)
1732 fputc('[', fdDump);
1733#endif
1734
1735 /* Keep looping until there is something in the typeahead buffer and more
1736 * to get and still room in the buffer (up to two bytes for a char and
1737 * three bytes for a modifier). */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001738 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 && typeaheadlen + 5 <= TYPEAHEADLEN)
1740 {
1741 if (typebuf_changed(tb_change_cnt))
1742 {
1743 /* "buf" may be invalid now if a client put something in the
1744 * typeahead buffer and "buf" is in the typeahead buffer. */
1745 typeaheadlen = 0;
1746 break;
1747 }
1748#ifdef FEAT_MOUSE
1749 if (g_nMouseClick != -1)
1750 {
1751# ifdef MCH_WRITE_DUMP
1752 if (fdDump)
1753 fprintf(fdDump, "{%02x @ %d, %d}",
1754 g_nMouseClick, g_xMouse, g_yMouse);
1755# endif
1756 typeahead[typeaheadlen++] = ESC + 128;
1757 typeahead[typeaheadlen++] = 'M';
1758 typeahead[typeaheadlen++] = g_nMouseClick;
1759 typeahead[typeaheadlen++] = g_xMouse + '!';
1760 typeahead[typeaheadlen++] = g_yMouse + '!';
1761 g_nMouseClick = -1;
1762 }
1763 else
1764#endif
1765 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001766 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 int modifiers = 0;
1768
1769 c = tgetch(&modifiers, &ch2);
1770
1771 if (typebuf_changed(tb_change_cnt))
1772 {
1773 /* "buf" may be invalid now if a client put something in the
1774 * typeahead buffer and "buf" is in the typeahead buffer. */
1775 typeaheadlen = 0;
1776 break;
1777 }
1778
1779 if (c == Ctrl_C && ctrl_c_interrupts)
1780 {
1781#if defined(FEAT_CLIENTSERVER)
1782 trash_input_buf();
1783#endif
1784 got_int = TRUE;
1785 }
1786
1787#ifdef FEAT_MOUSE
1788 if (g_nMouseClick == -1)
1789#endif
1790 {
1791 int n = 1;
1792
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001793#ifdef FEAT_MBYTE
1794 if (ch2 == NUL)
1795 {
1796 int i;
1797 char_u *p;
1798 WCHAR ch[2];
1799
1800 ch[0] = c;
1801 if (c >= 0xD800 && c <= 0xDBFF) /* High surrogate */
1802 {
1803 ch[1] = tgetch(&modifiers, &ch2);
1804 n++;
1805 }
1806 p = utf16_to_enc(ch, &n);
1807 if (p != NULL)
1808 {
1809 for (i = 0; i < n; i++)
1810 typeahead[typeaheadlen + i] = p[i];
1811 vim_free(p);
1812 }
1813 }
1814 else
1815#endif
1816 typeahead[typeaheadlen] = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 if (ch2 != NUL)
1818 {
Bram Moolenaara45ff6c2017-11-28 20:06:10 +01001819 typeahead[typeaheadlen + n] = 3;
1820 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
1821 n += 2;
Bram Moolenaar45500912014-07-09 20:51:07 +02001822 }
1823
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 /* Use the ALT key to set the 8th bit of the character
1825 * when it's one byte, the 8th bit isn't set yet and not
1826 * using a double-byte encoding (would become a lead
1827 * byte). */
1828 if ((modifiers & MOD_MASK_ALT)
1829 && n == 1
1830 && (typeahead[typeaheadlen] & 0x80) == 0
1831#ifdef FEAT_MBYTE
1832 && !enc_dbcs
1833#endif
1834 )
1835 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001836#ifdef FEAT_MBYTE
1837 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
1838 typeahead + typeaheadlen);
1839#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 typeahead[typeaheadlen] |= 0x80;
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 modifiers &= ~MOD_MASK_ALT;
1843 }
1844
1845 if (modifiers != 0)
1846 {
1847 /* Prepend modifiers to the character. */
1848 mch_memmove(typeahead + typeaheadlen + 3,
1849 typeahead + typeaheadlen, n);
1850 typeahead[typeaheadlen++] = K_SPECIAL;
1851 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
1852 typeahead[typeaheadlen++] = modifiers;
1853 }
1854
1855 typeaheadlen += n;
1856
1857#ifdef MCH_WRITE_DUMP
1858 if (fdDump)
1859 fputc(c, fdDump);
1860#endif
1861 }
1862 }
1863 }
1864
1865#ifdef MCH_WRITE_DUMP
1866 if (fdDump)
1867 {
1868 fputs("]\n", fdDump);
1869 fflush(fdDump);
1870 }
1871#endif
1872
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873theend:
1874 /* Move typeahead to "buf", as much as fits. */
1875 len = 0;
1876 while (len < maxlen && typeaheadlen > 0)
1877 {
1878 buf[len++] = typeahead[0];
1879 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
1880 }
1881 return len;
1882
1883#else /* FEAT_GUI_W32 */
1884 return 0;
1885#endif /* FEAT_GUI_W32 */
1886}
1887
Bram Moolenaar82881492012-11-20 16:53:39 +01001888#ifndef PROTO
1889# ifndef __MINGW32__
1890# include <shellapi.h> /* required for FindExecutable() */
1891# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892#endif
1893
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001894/*
Bram Moolenaar43663192017-03-05 14:29:12 +01001895 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
1896 * If "use_path" is FALSE: Return TRUE if "name" exists.
1897 * When returning TRUE and "path" is not NULL save the path and set "*path" to
1898 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001899 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001900 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 static int
Bram Moolenaar43663192017-03-05 14:29:12 +01001902executable_exists(char *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903{
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001904 char *dum;
1905 char fname[_MAX_PATH];
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001906 char *curpath, *newpath;
1907 long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908
Bram Moolenaar43663192017-03-05 14:29:12 +01001909 if (!use_path)
1910 {
Bram Moolenaarf7e894d2017-03-05 19:49:13 +01001911 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01001912 {
1913 if (path != NULL)
Bram Moolenaar066029e2017-03-05 15:19:32 +01001914 {
Bram Moolenaarf7e894d2017-03-05 19:49:13 +01001915 if (mch_isFullName((char_u *)name))
Bram Moolenaar066029e2017-03-05 15:19:32 +01001916 *path = vim_strsave((char_u *)name);
1917 else
1918 *path = FullName_save((char_u *)name, FALSE);
1919 }
Bram Moolenaar43663192017-03-05 14:29:12 +01001920 return TRUE;
1921 }
1922 return FALSE;
1923 }
1924
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001925#ifdef FEAT_MBYTE
1926 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001928 WCHAR *p = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001929 WCHAR fnamew[_MAX_PATH];
1930 WCHAR *dumw;
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001931 WCHAR *wcurpath, *wnewpath;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001932
1933 if (p != NULL)
1934 {
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001935 wcurpath = _wgetenv(L"PATH");
1936 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3)
1937 * sizeof(WCHAR));
1938 if (wnewpath == NULL)
1939 return FALSE;
1940 wcscpy(wnewpath, L".;");
1941 wcscat(wnewpath, wcurpath);
1942 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw);
1943 vim_free(wnewpath);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001944 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001945 if (n == 0)
1946 return FALSE;
1947 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
1948 return FALSE;
1949 if (path != NULL)
1950 *path = utf16_to_enc(fnamew, NULL);
1951 return TRUE;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001954#endif
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001955
1956 curpath = getenv("PATH");
1957 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3));
1958 if (newpath == NULL)
1959 return FALSE;
1960 STRCPY(newpath, ".;");
1961 STRCAT(newpath, curpath);
1962 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum);
1963 vim_free(newpath);
1964 if (n == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001965 return FALSE;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001966 if (mch_isdir((char_u *)fname))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001967 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001968 if (path != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001969 *path = vim_strsave((char_u *)fname);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001970 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971}
1972
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001973#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001974 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001975/*
1976 * Bad parameter handler.
1977 *
1978 * Certain MS CRT functions will intentionally crash when passed invalid
1979 * parameters to highlight possible security holes. Setting this function as
1980 * the bad parameter handler will prevent the crash.
1981 *
1982 * In debug builds the parameters contain CRT information that might help track
1983 * down the source of a problem, but in non-debug builds the arguments are all
1984 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
1985 * worth allowing these to make debugging of issues easier.
1986 */
1987 static void
1988bad_param_handler(const wchar_t *expression,
1989 const wchar_t *function,
1990 const wchar_t *file,
1991 unsigned int line,
1992 uintptr_t pReserved)
1993{
1994}
1995
1996# define SET_INVALID_PARAM_HANDLER \
1997 ((void)_set_invalid_parameter_handler(bad_param_handler))
1998#else
1999# define SET_INVALID_PARAM_HANDLER
2000#endif
2001
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002#ifdef FEAT_GUI_W32
2003
2004/*
2005 * GUI version of mch_init().
2006 */
2007 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002008mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009{
2010#ifndef __MINGW32__
2011 extern int _fmode;
2012#endif
2013
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002014 /* Silently handle invalid parameters to CRT functions */
2015 SET_INVALID_PARAM_HANDLER;
2016
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 /* Let critical errors result in a failure, not in a dialog box. Required
2018 * for the timestamp test to work on removed floppies. */
2019 SetErrorMode(SEM_FAILCRITICALERRORS);
2020
2021 _fmode = O_BINARY; /* we do our own CR-LF translation */
2022
2023 /* Specify window size. Is there a place to get the default from? */
2024 Rows = 25;
2025 Columns = 80;
2026
2027 /* Look for 'vimrun' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 {
2029 char_u vimrun_location[_MAX_PATH + 4];
2030
2031 /* First try in same directory as gvim.exe */
2032 STRCPY(vimrun_location, exe_name);
2033 STRCPY(gettail(vimrun_location), "vimrun.exe");
2034 if (mch_getperm(vimrun_location) >= 0)
2035 {
2036 if (*skiptowhite(vimrun_location) != NUL)
2037 {
2038 /* Enclose path with white space in double quotes. */
2039 mch_memmove(vimrun_location + 1, vimrun_location,
2040 STRLEN(vimrun_location) + 1);
2041 *vimrun_location = '"';
2042 STRCPY(gettail(vimrun_location), "vimrun\" ");
2043 }
2044 else
2045 STRCPY(gettail(vimrun_location), "vimrun ");
2046
2047 vimrun_path = (char *)vim_strsave(vimrun_location);
2048 s_dont_use_vimrun = FALSE;
2049 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002050 else if (executable_exists("vimrun.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 s_dont_use_vimrun = FALSE;
2052
2053 /* Don't give the warning for a missing vimrun.exe right now, but only
2054 * when vimrun was supposed to be used. Don't bother people that do
2055 * not need vimrun.exe. */
2056 if (s_dont_use_vimrun)
2057 need_vimrun_warning = TRUE;
2058 }
2059
2060 /*
2061 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2062 * Otherwise the default "findstr /n" is used.
2063 */
Bram Moolenaar43663192017-03-05 14:29:12 +01002064 if (!executable_exists("findstr.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2066
2067#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002068 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069#endif
2070}
2071
2072
2073#else /* FEAT_GUI_W32 */
2074
2075#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2076#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2077
2078/*
2079 * ClearConsoleBuffer()
2080 * Description:
2081 * Clears the entire contents of the console screen buffer, using the
2082 * specified attribute.
2083 * Returns:
2084 * TRUE on success
2085 */
2086 static BOOL
2087ClearConsoleBuffer(WORD wAttribute)
2088{
2089 CONSOLE_SCREEN_BUFFER_INFO csbi;
2090 COORD coord;
2091 DWORD NumCells, dummy;
2092
2093 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2094 return FALSE;
2095
2096 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2097 coord.X = 0;
2098 coord.Y = 0;
2099 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2100 coord, &dummy))
2101 {
2102 return FALSE;
2103 }
2104 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2105 coord, &dummy))
2106 {
2107 return FALSE;
2108 }
2109
2110 return TRUE;
2111}
2112
2113/*
2114 * FitConsoleWindow()
2115 * Description:
2116 * Checks if the console window will fit within given buffer dimensions.
2117 * Also, if requested, will shrink the window to fit.
2118 * Returns:
2119 * TRUE on success
2120 */
2121 static BOOL
2122FitConsoleWindow(
2123 COORD dwBufferSize,
2124 BOOL WantAdjust)
2125{
2126 CONSOLE_SCREEN_BUFFER_INFO csbi;
2127 COORD dwWindowSize;
2128 BOOL NeedAdjust = FALSE;
2129
2130 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2131 {
2132 /*
2133 * A buffer resize will fail if the current console window does
2134 * not lie completely within that buffer. To avoid this, we might
2135 * have to move and possibly shrink the window.
2136 */
2137 if (csbi.srWindow.Right >= dwBufferSize.X)
2138 {
2139 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2140 if (dwWindowSize.X > dwBufferSize.X)
2141 dwWindowSize.X = dwBufferSize.X;
2142 csbi.srWindow.Right = dwBufferSize.X - 1;
2143 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2144 NeedAdjust = TRUE;
2145 }
2146 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2147 {
2148 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2149 if (dwWindowSize.Y > dwBufferSize.Y)
2150 dwWindowSize.Y = dwBufferSize.Y;
2151 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2152 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2153 NeedAdjust = TRUE;
2154 }
2155 if (NeedAdjust && WantAdjust)
2156 {
2157 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2158 return FALSE;
2159 }
2160 return TRUE;
2161 }
2162
2163 return FALSE;
2164}
2165
2166typedef struct ConsoleBufferStruct
2167{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002168 BOOL IsValid;
2169 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002170 PCHAR_INFO Buffer;
2171 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002172 PSMALL_RECT Regions;
2173 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174} ConsoleBuffer;
2175
2176/*
2177 * SaveConsoleBuffer()
2178 * Description:
2179 * Saves important information about the console buffer, including the
2180 * actual buffer contents. The saved information is suitable for later
2181 * restoration by RestoreConsoleBuffer().
2182 * Returns:
2183 * TRUE if all information was saved; FALSE otherwise
2184 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2185 */
2186 static BOOL
2187SaveConsoleBuffer(
2188 ConsoleBuffer *cb)
2189{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002190 DWORD NumCells;
2191 COORD BufferCoord;
2192 SMALL_RECT ReadRegion;
2193 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002194 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002195
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 if (cb == NULL)
2197 return FALSE;
2198
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002199 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
2201 cb->IsValid = FALSE;
2202 return FALSE;
2203 }
2204 cb->IsValid = TRUE;
2205
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002206 /*
2207 * Allocate a buffer large enough to hold the entire console screen
2208 * buffer. If this ConsoleBuffer structure has already been initialized
2209 * with a buffer of the correct size, then just use that one.
2210 */
2211 if (!cb->IsValid || cb->Buffer == NULL ||
2212 cb->BufferSize.X != cb->Info.dwSize.X ||
2213 cb->BufferSize.Y != cb->Info.dwSize.Y)
2214 {
2215 cb->BufferSize.X = cb->Info.dwSize.X;
2216 cb->BufferSize.Y = cb->Info.dwSize.Y;
2217 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2218 vim_free(cb->Buffer);
2219 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2220 if (cb->Buffer == NULL)
2221 return FALSE;
2222 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
2224 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002225 * We will now copy the console screen buffer into our buffer.
2226 * ReadConsoleOutput() seems to be limited as far as how much you
2227 * can read at a time. Empirically, this number seems to be about
2228 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2229 * in chunks until it is all copied. The chunks will all have the
2230 * same horizontal characteristics, so initialize them now. The
2231 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002233 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002234 ReadRegion.Left = 0;
2235 ReadRegion.Right = cb->Info.dwSize.X - 1;
2236 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002237
2238 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2239 if (cb->Regions == NULL || numregions != cb->NumRegions)
2240 {
2241 cb->NumRegions = numregions;
2242 vim_free(cb->Regions);
2243 cb->Regions = (PSMALL_RECT)alloc(cb->NumRegions * sizeof(SMALL_RECT));
2244 if (cb->Regions == NULL)
2245 {
2246 vim_free(cb->Buffer);
2247 cb->Buffer = NULL;
2248 return FALSE;
2249 }
2250 }
2251
2252 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002254 /*
2255 * Read into position (0, Y) in our buffer.
2256 */
2257 BufferCoord.Y = Y;
2258 /*
2259 * Read the region whose top left corner is (0, Y) and whose bottom
2260 * right corner is (width - 1, Y + Y_incr - 1). This should define
2261 * a region of size width by Y_incr. Don't worry if this region is
2262 * too large for the remaining buffer; it will be cropped.
2263 */
2264 ReadRegion.Top = Y;
2265 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002266 if (!ReadConsoleOutputW(g_hConOut, /* output handle */
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002267 cb->Buffer, /* our buffer */
2268 cb->BufferSize, /* dimensions of our buffer */
2269 BufferCoord, /* offset in our buffer */
2270 &ReadRegion)) /* region to save */
2271 {
2272 vim_free(cb->Buffer);
2273 cb->Buffer = NULL;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002274 vim_free(cb->Regions);
2275 cb->Regions = NULL;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002276 return FALSE;
2277 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002278 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 }
2280
2281 return TRUE;
2282}
2283
2284/*
2285 * RestoreConsoleBuffer()
2286 * Description:
2287 * Restores important information about the console buffer, including the
2288 * actual buffer contents, if desired. The information to restore is in
2289 * the same format used by SaveConsoleBuffer().
2290 * Returns:
2291 * TRUE on success
2292 */
2293 static BOOL
2294RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002295 ConsoleBuffer *cb,
2296 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002298 COORD BufferCoord;
2299 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002300 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301
2302 if (cb == NULL || !cb->IsValid)
2303 return FALSE;
2304
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002305 /*
2306 * Before restoring the buffer contents, clear the current buffer, and
2307 * restore the cursor position and window information. Doing this now
2308 * prevents old buffer contents from "flashing" onto the screen.
2309 */
2310 if (RestoreScreen)
2311 ClearConsoleBuffer(cb->Info.wAttributes);
2312
2313 FitConsoleWindow(cb->Info.dwSize, TRUE);
2314 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2315 return FALSE;
2316 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2317 return FALSE;
2318
2319 if (!RestoreScreen)
2320 {
2321 /*
2322 * No need to restore the screen buffer contents, so we're done.
2323 */
2324 return TRUE;
2325 }
2326
2327 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2328 return FALSE;
2329 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2330 return FALSE;
2331
2332 /*
2333 * Restore the screen buffer contents.
2334 */
2335 if (cb->Buffer != NULL)
2336 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002337 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002338 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002339 BufferCoord.X = cb->Regions[i].Left;
2340 BufferCoord.Y = cb->Regions[i].Top;
2341 WriteRegion = cb->Regions[i];
2342 if (!WriteConsoleOutputW(g_hConOut, /* output handle */
2343 cb->Buffer, /* our buffer */
2344 cb->BufferSize, /* dimensions of our buffer */
2345 BufferCoord, /* offset in our buffer */
2346 &WriteRegion)) /* region to restore */
2347 {
2348 return FALSE;
2349 }
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002350 }
2351 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352
2353 return TRUE;
2354}
2355
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002356#define FEAT_RESTORE_ORIG_SCREEN
2357#ifdef FEAT_RESTORE_ORIG_SCREEN
2358static ConsoleBuffer g_cbOrig = { 0 };
2359#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360static ConsoleBuffer g_cbNonTermcap = { 0 };
2361static ConsoleBuffer g_cbTermcap = { 0 };
2362
2363#ifdef FEAT_TITLE
2364#ifdef __BORLANDC__
2365typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2366#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002367typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368#endif
2369char g_szOrigTitle[256] = { 0 };
2370HWND g_hWnd = NULL; /* also used in os_mswin.c */
2371static HICON g_hOrigIconSmall = NULL;
2372static HICON g_hOrigIcon = NULL;
2373static HICON g_hVimIcon = NULL;
2374static BOOL g_fCanChangeIcon = FALSE;
2375
2376/* ICON* are not defined in VC++ 4.0 */
2377#ifndef ICON_SMALL
2378#define ICON_SMALL 0
2379#endif
2380#ifndef ICON_BIG
2381#define ICON_BIG 1
2382#endif
2383/*
2384 * GetConsoleIcon()
2385 * Description:
2386 * Attempts to retrieve the small icon and/or the big icon currently in
2387 * use by a given window.
2388 * Returns:
2389 * TRUE on success
2390 */
2391 static BOOL
2392GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002393 HWND hWnd,
2394 HICON *phIconSmall,
2395 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396{
2397 if (hWnd == NULL)
2398 return FALSE;
2399
2400 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002401 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2402 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002404 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2405 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 return TRUE;
2407}
2408
2409/*
2410 * SetConsoleIcon()
2411 * Description:
2412 * Attempts to change the small icon and/or the big icon currently in
2413 * use by a given window.
2414 * Returns:
2415 * TRUE on success
2416 */
2417 static BOOL
2418SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002419 HWND hWnd,
2420 HICON hIconSmall,
2421 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 if (hWnd == NULL)
2424 return FALSE;
2425
2426 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002427 SendMessage(hWnd, WM_SETICON,
2428 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002430 SendMessage(hWnd, WM_SETICON,
2431 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 return TRUE;
2433}
2434
2435/*
2436 * SaveConsoleTitleAndIcon()
2437 * Description:
2438 * Saves the current console window title in g_szOrigTitle, for later
2439 * restoration. Also, attempts to obtain a handle to the console window,
2440 * and use it to save the small and big icons currently in use by the
2441 * console window. This is not always possible on some versions of Windows;
2442 * nor is it possible when running Vim remotely using Telnet (since the
2443 * console window the user sees is owned by a remote process).
2444 */
2445 static void
2446SaveConsoleTitleAndIcon(void)
2447{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 /* Save the original title. */
2449 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2450 return;
2451
2452 /*
2453 * Obtain a handle to the console window using GetConsoleWindow() from
2454 * KERNEL32.DLL; we need to handle in order to change the window icon.
2455 * This function only exists on NT-based Windows, starting with Windows
2456 * 2000. On older operating systems, we can't change the window icon
2457 * anyway.
2458 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002459 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 if (g_hWnd == NULL)
2461 return;
2462
2463 /* Save the original console window icon. */
2464 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2465 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2466 return;
2467
2468 /* Extract the first icon contained in the Vim executable. */
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002469 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002470 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 if (g_hVimIcon != NULL)
2472 g_fCanChangeIcon = TRUE;
2473}
2474#endif
2475
2476static int g_fWindInitCalled = FALSE;
2477static int g_fTermcapMode = FALSE;
2478static CONSOLE_CURSOR_INFO g_cci;
2479static DWORD g_cmodein = 0;
2480static DWORD g_cmodeout = 0;
2481
2482/*
2483 * non-GUI version of mch_init().
2484 */
2485 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002486mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002488#ifndef FEAT_RESTORE_ORIG_SCREEN
2489 CONSOLE_SCREEN_BUFFER_INFO csbi;
2490#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491#ifndef __MINGW32__
2492 extern int _fmode;
2493#endif
2494
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002495 /* Silently handle invalid parameters to CRT functions */
2496 SET_INVALID_PARAM_HANDLER;
2497
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 /* Let critical errors result in a failure, not in a dialog box. Required
2499 * for the timestamp test to work on removed floppies. */
2500 SetErrorMode(SEM_FAILCRITICALERRORS);
2501
2502 _fmode = O_BINARY; /* we do our own CR-LF translation */
2503 out_flush();
2504
2505 /* Obtain handles for the standard Console I/O devices */
2506 if (read_cmd_fd == 0)
2507 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2508 else
2509 create_conin();
2510 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2511
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002512#ifdef FEAT_RESTORE_ORIG_SCREEN
2513 /* Save the initial console buffer for later restoration */
2514 SaveConsoleBuffer(&g_cbOrig);
2515 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2516#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 /* Get current text attributes */
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002518 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2519 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2520#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 if (cterm_normal_fg_color == 0)
2522 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2523 if (cterm_normal_bg_color == 0)
2524 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2525
2526 /* set termcap codes to current text attributes */
2527 update_tcap(g_attrCurrent);
2528
2529 GetConsoleCursorInfo(g_hConOut, &g_cci);
2530 GetConsoleMode(g_hConIn, &g_cmodein);
2531 GetConsoleMode(g_hConOut, &g_cmodeout);
2532
2533#ifdef FEAT_TITLE
2534 SaveConsoleTitleAndIcon();
2535 /*
2536 * Set both the small and big icons of the console window to Vim's icon.
2537 * Note that Vim presently only has one size of icon (32x32), but it
2538 * automatically gets scaled down to 16x16 when setting the small icon.
2539 */
2540 if (g_fCanChangeIcon)
2541 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2542#endif
2543
2544 ui_get_shellsize();
2545
2546#ifdef MCH_WRITE_DUMP
2547 fdDump = fopen("dump", "wt");
2548
2549 if (fdDump)
2550 {
2551 time_t t;
2552
2553 time(&t);
2554 fputs(ctime(&t), fdDump);
2555 fflush(fdDump);
2556 }
2557#endif
2558
2559 g_fWindInitCalled = TRUE;
2560
2561#ifdef FEAT_MOUSE
2562 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2563#endif
2564
2565#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002566 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568}
2569
2570/*
2571 * non-GUI version of mch_exit().
2572 * Shut down and exit with status `r'
2573 * Careful: mch_exit() may be called before mch_init()!
2574 */
2575 void
2576mch_exit(int r)
2577{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002578 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
Bram Moolenaar955f1982017-02-05 15:10:51 +01002580 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 if (g_fWindInitCalled)
2582 settmode(TMODE_COOK);
2583
2584 ml_close_all(TRUE); /* remove all memfiles */
2585
2586 if (g_fWindInitCalled)
2587 {
2588#ifdef FEAT_TITLE
2589 mch_restore_title(3);
2590 /*
2591 * Restore both the small and big icons of the console window to
2592 * what they were at startup. Don't do this when the window is
2593 * closed, Vim would hang here.
2594 */
2595 if (g_fCanChangeIcon && !g_fForceExit)
2596 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2597#endif
2598
2599#ifdef MCH_WRITE_DUMP
2600 if (fdDump)
2601 {
2602 time_t t;
2603
2604 time(&t);
2605 fputs(ctime(&t), fdDump);
2606 fclose(fdDump);
2607 }
2608 fdDump = NULL;
2609#endif
2610 }
2611
2612 SetConsoleCursorInfo(g_hConOut, &g_cci);
2613 SetConsoleMode(g_hConIn, g_cmodein);
2614 SetConsoleMode(g_hConOut, g_cmodeout);
2615
2616#ifdef DYNAMIC_GETTEXT
2617 dyn_libintl_end();
2618#endif
2619
2620 exit(r);
2621}
2622#endif /* !FEAT_GUI_W32 */
2623
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624/*
2625 * Do we have an interactive window?
2626 */
2627 int
2628mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002629 int argc UNUSED,
2630 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631{
2632 get_exe_name();
2633
2634#ifdef FEAT_GUI_W32
2635 return OK; /* GUI always has a tty */
2636#else
2637 if (isatty(1))
2638 return OK;
2639 return FAIL;
2640#endif
2641}
2642
2643
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002644#ifdef FEAT_MBYTE
2645/*
2646 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2647 * if it already exists. When "len" is > 0, also expand short to long
2648 * filenames.
2649 * Return FAIL if wide functions are not available, OK otherwise.
2650 * NOTE: much of this is identical to fname_case(), keep in sync!
2651 */
2652 static int
2653fname_casew(
2654 WCHAR *name,
2655 int len)
2656{
2657 WCHAR szTrueName[_MAX_PATH + 2];
2658 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2659 WCHAR *ptrue, *ptruePrev;
2660 WCHAR *porig, *porigPrev;
2661 int flen;
2662 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002663 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002664 int c;
2665 int slen;
2666
2667 flen = (int)wcslen(name);
2668 if (flen > _MAX_PATH)
2669 return OK;
2670
2671 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2672
2673 /* Build the new name in szTrueName[] one component at a time. */
2674 porig = name;
2675 ptrue = szTrueName;
2676
2677 if (iswalpha(porig[0]) && porig[1] == L':')
2678 {
2679 /* copy leading drive letter */
2680 *ptrue++ = *porig++;
2681 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002682 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002683 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002684
2685 while (*porig != NUL)
2686 {
2687 /* copy \ characters */
2688 while (*porig == psepc)
2689 *ptrue++ = *porig++;
2690
2691 ptruePrev = ptrue;
2692 porigPrev = porig;
2693 while (*porig != NUL && *porig != psepc)
2694 {
2695 *ptrue++ = *porig++;
2696 }
2697 *ptrue = NUL;
2698
2699 /* To avoid a slow failure append "\*" when searching a directory,
2700 * server or network share. */
2701 wcscpy(szTrueNameTemp, szTrueName);
2702 slen = (int)wcslen(szTrueNameTemp);
2703 if (*porig == psepc && slen + 2 < _MAX_PATH)
2704 wcscpy(szTrueNameTemp + slen, L"\\*");
2705
2706 /* Skip "", "." and "..". */
2707 if (ptrue > ptruePrev
2708 && (ptruePrev[0] != L'.'
2709 || (ptruePrev[1] != NUL
2710 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2711 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2712 != INVALID_HANDLE_VALUE)
2713 {
2714 c = *porig;
2715 *porig = NUL;
2716
2717 /* Only use the match when it's the same name (ignoring case) or
2718 * expansion is allowed and there is a match with the short name
2719 * and there is enough room. */
2720 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2721 || (len > 0
2722 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2723 && (int)(ptruePrev - szTrueName)
2724 + (int)wcslen(fb.cFileName) < len)))
2725 {
2726 wcscpy(ptruePrev, fb.cFileName);
2727
2728 /* Look for exact match and prefer it if found. Must be a
2729 * long name, otherwise there would be only one match. */
2730 while (FindNextFileW(hFind, &fb))
2731 {
2732 if (*fb.cAlternateFileName != NUL
2733 && (wcscoll(porigPrev, fb.cFileName) == 0
2734 || (len > 0
2735 && (_wcsicoll(porigPrev,
2736 fb.cAlternateFileName) == 0
2737 && (int)(ptruePrev - szTrueName)
2738 + (int)wcslen(fb.cFileName) < len))))
2739 {
2740 wcscpy(ptruePrev, fb.cFileName);
2741 break;
2742 }
2743 }
2744 }
2745 FindClose(hFind);
2746 *porig = c;
2747 ptrue = ptruePrev + wcslen(ptruePrev);
2748 }
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002749 }
2750
2751 wcscpy(name, szTrueName);
2752 return OK;
2753}
2754#endif
2755
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756/*
2757 * fname_case(): Set the case of the file name, if it already exists.
2758 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002759 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 */
2761 void
2762fname_case(
2763 char_u *name,
2764 int len)
2765{
2766 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002767 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 char *ptrue, *ptruePrev;
2769 char *porig, *porigPrev;
2770 int flen;
2771 WIN32_FIND_DATA fb;
2772 HANDLE hFind;
2773 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002774 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002776 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002777 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 return;
2779
2780 slash_adjust(name);
2781
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002782#ifdef FEAT_MBYTE
2783 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2784 {
2785 WCHAR *p = enc_to_utf16(name, NULL);
2786
2787 if (p != NULL)
2788 {
2789 char_u *q;
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002790 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002791
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002792 wcsncpy(buf, p, _MAX_PATH);
2793 buf[_MAX_PATH] = L'\0';
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002794 vim_free(p);
2795
2796 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2797 {
2798 q = utf16_to_enc(buf, NULL);
2799 if (q != NULL)
2800 {
2801 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2802 vim_free(q);
2803 return;
2804 }
2805 }
2806 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002807 return;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002808 }
2809#endif
2810
2811 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2812 * So we should check this after calling wide function. */
2813 if (flen > _MAX_PATH)
2814 return;
2815
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 /* Build the new name in szTrueName[] one component at a time. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002817 porig = (char *)name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 ptrue = szTrueName;
2819
2820 if (isalpha(porig[0]) && porig[1] == ':')
2821 {
2822 /* copy leading drive letter */
2823 *ptrue++ = *porig++;
2824 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002826 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827
2828 while (*porig != NUL)
2829 {
2830 /* copy \ characters */
2831 while (*porig == psepc)
2832 *ptrue++ = *porig++;
2833
2834 ptruePrev = ptrue;
2835 porigPrev = porig;
2836 while (*porig != NUL && *porig != psepc)
2837 {
2838#ifdef FEAT_MBYTE
2839 int l;
2840
2841 if (enc_dbcs)
2842 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002843 l = (*mb_ptr2len)((char_u *)porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 while (--l >= 0)
2845 *ptrue++ = *porig++;
2846 }
2847 else
2848#endif
2849 *ptrue++ = *porig++;
2850 }
2851 *ptrue = NUL;
2852
Bram Moolenaar464c9252010-10-13 20:37:41 +02002853 /* To avoid a slow failure append "\*" when searching a directory,
2854 * server or network share. */
2855 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002856 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002857 if (*porig == psepc && slen + 2 < _MAX_PATH)
2858 STRCPY(szTrueNameTemp + slen, "\\*");
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 /* Skip "", "." and "..". */
2861 if (ptrue > ptruePrev
2862 && (ptruePrev[0] != '.'
2863 || (ptruePrev[1] != NUL
2864 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002865 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 != INVALID_HANDLE_VALUE)
2867 {
2868 c = *porig;
2869 *porig = NUL;
2870
2871 /* Only use the match when it's the same name (ignoring case) or
2872 * expansion is allowed and there is a match with the short name
2873 * and there is enough room. */
2874 if (_stricoll(porigPrev, fb.cFileName) == 0
2875 || (len > 0
2876 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2877 && (int)(ptruePrev - szTrueName)
2878 + (int)strlen(fb.cFileName) < len)))
2879 {
2880 STRCPY(ptruePrev, fb.cFileName);
2881
2882 /* Look for exact match and prefer it if found. Must be a
2883 * long name, otherwise there would be only one match. */
2884 while (FindNextFile(hFind, &fb))
2885 {
2886 if (*fb.cAlternateFileName != NUL
2887 && (strcoll(porigPrev, fb.cFileName) == 0
2888 || (len > 0
2889 && (_stricoll(porigPrev,
2890 fb.cAlternateFileName) == 0
2891 && (int)(ptruePrev - szTrueName)
2892 + (int)strlen(fb.cFileName) < len))))
2893 {
2894 STRCPY(ptruePrev, fb.cFileName);
2895 break;
2896 }
2897 }
2898 }
2899 FindClose(hFind);
2900 *porig = c;
2901 ptrue = ptruePrev + strlen(ptruePrev);
2902 }
2903 }
2904
2905 STRCPY(name, szTrueName);
2906}
2907
2908
2909/*
2910 * Insert user name in s[len].
2911 */
2912 int
2913mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002914 char_u *s,
2915 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002917 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 DWORD cch = sizeof szUserName;
2919
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002920#ifdef FEAT_MBYTE
2921 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2922 {
2923 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2924 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2925
2926 if (GetUserNameW(wszUserName, &wcch))
2927 {
2928 char_u *p = utf16_to_enc(wszUserName, NULL);
2929
2930 if (p != NULL)
2931 {
2932 vim_strncpy(s, p, len - 1);
2933 vim_free(p);
2934 return OK;
2935 }
2936 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002937 }
2938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 if (GetUserName(szUserName, &cch))
2940 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002941 vim_strncpy(s, (char_u *)szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 return OK;
2943 }
2944 s[0] = NUL;
2945 return FAIL;
2946}
2947
2948
2949/*
2950 * Insert host name in s[len].
2951 */
2952 void
2953mch_get_host_name(
2954 char_u *s,
2955 int len)
2956{
2957 DWORD cch = len;
2958
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002959#ifdef FEAT_MBYTE
2960 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2961 {
2962 WCHAR wszHostName[256 + 1];
2963 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2964
2965 if (GetComputerNameW(wszHostName, &wcch))
2966 {
2967 char_u *p = utf16_to_enc(wszHostName, NULL);
2968
2969 if (p != NULL)
2970 {
2971 vim_strncpy(s, p, len - 1);
2972 vim_free(p);
2973 return;
2974 }
2975 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002976 }
2977#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002978 if (!GetComputerName((LPSTR)s, &cch))
2979 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980}
2981
2982
2983/*
2984 * return process ID
2985 */
2986 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002987mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988{
2989 return (long)GetCurrentProcessId();
2990}
2991
2992
2993/*
2994 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2995 * Return OK for success, FAIL for failure.
2996 */
2997 int
2998mch_dirname(
2999 char_u *buf,
3000 int len)
3001{
3002 /*
3003 * Originally this was:
3004 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3005 * But the Win32s known bug list says that getcwd() doesn't work
3006 * so use the Win32 system call instead. <Negri>
3007 */
3008#ifdef FEAT_MBYTE
3009 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3010 {
3011 WCHAR wbuf[_MAX_PATH + 1];
3012
3013 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
3014 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003015 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016
3017 if (p != NULL)
3018 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003019 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 vim_free(p);
3021 return OK;
3022 }
3023 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003024 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 }
3026#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003027 return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028}
3029
3030/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003031 * Get file permissions for "name".
3032 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 */
3034 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003035mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003037 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003038 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003040 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003041 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042}
3043
3044
3045/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003046 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003047 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003048 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 */
3050 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003051mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003053 long n = -1;
3054
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055#ifdef FEAT_MBYTE
3056 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3057 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003058 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059
3060 if (p != NULL)
3061 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003062 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003064 if (n == -1)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003065 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 }
3067 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003068 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003070 n = _chmod((const char *)name, perm);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003071 if (n == -1)
3072 return FAIL;
3073
3074 win32_set_archive(name);
3075
3076 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077}
3078
3079/*
3080 * Set hidden flag for "name".
3081 */
3082 void
3083mch_hide(char_u *name)
3084{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003085 int attrs = win32_getattrs(name);
3086 if (attrs == -1)
3087 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003089 attrs |= FILE_ATTRIBUTE_HIDDEN;
3090 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091}
3092
3093/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003094 * Return TRUE if file "name" exists and is hidden.
3095 */
3096 int
3097mch_ishidden(char_u *name)
3098{
3099 int f = win32_getattrs(name);
3100
3101 if (f == -1)
3102 return FALSE; /* file does not exist at all */
3103
3104 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3105}
3106
3107/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 * return TRUE if "name" is a directory
3109 * return FALSE if "name" is not a directory or upon error
3110 */
3111 int
3112mch_isdir(char_u *name)
3113{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003114 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115
3116 if (f == -1)
3117 return FALSE; /* file does not exist at all */
3118
3119 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3120}
3121
3122/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003123 * return TRUE if "name" is a directory, NOT a symlink to a directory
3124 * return FALSE if "name" is not a directory
3125 * return FALSE for error
3126 */
3127 int
3128mch_isrealdir(char_u *name)
3129{
3130 return mch_isdir(name) && !mch_is_symbolic_link(name);
3131}
3132
3133/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003134 * Create directory "name".
3135 * Return 0 on success, -1 on error.
3136 */
3137 int
3138mch_mkdir(char_u *name)
3139{
3140#ifdef FEAT_MBYTE
3141 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3142 {
3143 WCHAR *p;
3144 int retval;
3145
3146 p = enc_to_utf16(name, NULL);
3147 if (p == NULL)
3148 return -1;
3149 retval = _wmkdir(p);
3150 vim_free(p);
3151 return retval;
3152 }
3153#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003154 return _mkdir((const char *)name);
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003155}
3156
3157/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003158 * Delete directory "name".
3159 * Return 0 on success, -1 on error.
3160 */
3161 int
3162mch_rmdir(char_u *name)
3163{
3164#ifdef FEAT_MBYTE
3165 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3166 {
3167 WCHAR *p;
3168 int retval;
3169
3170 p = enc_to_utf16(name, NULL);
3171 if (p == NULL)
3172 return -1;
3173 retval = _wrmdir(p);
3174 vim_free(p);
3175 return retval;
3176 }
3177#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003178 return _rmdir((const char *)name);
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003179}
3180
3181/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003182 * Return TRUE if file "fname" has more than one link.
3183 */
3184 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003185mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003186{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003187 BY_HANDLE_FILE_INFORMATION info;
3188
3189 return win32_fileinfo(fname, &info) == FILEINFO_OK
3190 && info.nNumberOfLinks > 1;
3191}
3192
3193/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003194 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003195 */
3196 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003197mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003198{
3199 HANDLE hFind;
3200 int res = FALSE;
3201 WIN32_FIND_DATAA findDataA;
3202 DWORD fileFlags = 0, reparseTag = 0;
3203#ifdef FEAT_MBYTE
3204 WCHAR *wn = NULL;
3205 WIN32_FIND_DATAW findDataW;
3206
3207 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003208 wn = enc_to_utf16(name, NULL);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003209 if (wn != NULL)
3210 {
3211 hFind = FindFirstFileW(wn, &findDataW);
3212 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003213 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003214 {
3215 fileFlags = findDataW.dwFileAttributes;
3216 reparseTag = findDataW.dwReserved0;
3217 }
3218 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003219 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003220#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003221 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003222 hFind = FindFirstFile((LPCSTR)name, &findDataA);
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003223 if (hFind != INVALID_HANDLE_VALUE)
3224 {
3225 fileFlags = findDataA.dwFileAttributes;
3226 reparseTag = findDataA.dwReserved0;
3227 }
3228 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003229
3230 if (hFind != INVALID_HANDLE_VALUE)
3231 FindClose(hFind);
3232
3233 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003234 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3235 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003236 res = TRUE;
3237
3238 return res;
3239}
3240
3241/*
3242 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3243 * link.
3244 */
3245 int
3246mch_is_linked(char_u *fname)
3247{
3248 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3249 return TRUE;
3250 return FALSE;
3251}
3252
3253/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003254 * Get the by-handle-file-information for "fname".
3255 * Returns FILEINFO_OK when OK.
3256 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3257 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3258 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3259 */
3260 int
3261win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3262{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003263 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003264 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003265#ifdef FEAT_MBYTE
3266 WCHAR *wn = NULL;
3267
3268 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003269 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003270 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003271 if (wn == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003272 return FILEINFO_ENC_FAIL;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003273 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003274 if (wn != NULL)
3275 {
3276 hFile = CreateFileW(wn, /* file name */
3277 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003278 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003279 NULL, /* security descriptor */
3280 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003281 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003282 NULL); /* handle to template file */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003283 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003284 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003285 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003286#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003287 hFile = CreateFile((LPCSTR)fname, /* file name */
3288 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003289 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003290 NULL, /* security descriptor */
3291 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003292 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003293 NULL); /* handle to template file */
3294
3295 if (hFile != INVALID_HANDLE_VALUE)
3296 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003297 if (GetFileInformationByHandle(hFile, info) != 0)
3298 res = FILEINFO_OK;
3299 else
3300 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003301 CloseHandle(hFile);
3302 }
3303
Bram Moolenaar03f48552006-02-28 23:52:23 +00003304 return res;
3305}
3306
3307/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003308 * get file attributes for `name'
3309 * -1 : error
3310 * else FILE_ATTRIBUTE_* defined in winnt.h
3311 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003312 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003313win32_getattrs(char_u *name)
3314{
3315 int attr;
3316#ifdef FEAT_MBYTE
3317 WCHAR *p = NULL;
3318
3319 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3320 p = enc_to_utf16(name, NULL);
3321
3322 if (p != NULL)
3323 {
3324 attr = GetFileAttributesW(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003325 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003326 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003327 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003328#endif
3329 attr = GetFileAttributes((char *)name);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003330
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003331 return attr;
3332}
3333
3334/*
3335 * set file attributes for `name' to `attrs'
3336 *
3337 * return -1 for failure, 0 otherwise
3338 */
3339 static
3340 int
3341win32_setattrs(char_u *name, int attrs)
3342{
3343 int res;
3344#ifdef FEAT_MBYTE
3345 WCHAR *p = NULL;
3346
3347 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3348 p = enc_to_utf16(name, NULL);
3349
3350 if (p != NULL)
3351 {
3352 res = SetFileAttributesW(p, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003353 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003354 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003355 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003356#endif
3357 res = SetFileAttributes((char *)name, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003358
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003359 return res ? 0 : -1;
3360}
3361
3362/*
3363 * Set archive flag for "name".
3364 */
3365 static
3366 int
3367win32_set_archive(char_u *name)
3368{
3369 int attrs = win32_getattrs(name);
3370 if (attrs == -1)
3371 return -1;
3372
3373 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3374 return win32_setattrs(name, attrs);
3375}
3376
3377/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 * Return TRUE if file or directory "name" is writable (not readonly).
3379 * Strange semantics of Win32: a readonly directory is writable, but you can't
3380 * delete a file. Let's say this means it is writable.
3381 */
3382 int
3383mch_writable(char_u *name)
3384{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003385 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003387 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3388 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389}
3390
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003392 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003393 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003394 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3395 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 */
3397 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003398mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003400 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003401 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003402 char_u *p;
3403
3404 if (len >= _MAX_PATH) /* safety check */
3405 return FALSE;
3406
3407 /* If there already is an extension try using the name directly. Also do
3408 * this with a Unix-shell like 'shell'. */
3409 if (vim_strchr(gettail(name), '.') != NULL
3410 || strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaar43663192017-03-05 14:29:12 +01003411 if (executable_exists((char *)name, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003412 return TRUE;
3413
3414 /*
3415 * Loop over all extensions in $PATHEXT.
3416 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003417 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003418 p = mch_getenv("PATHEXT");
3419 if (p == NULL)
3420 p = (char_u *)".com;.exe;.bat;.cmd";
3421 while (*p)
3422 {
3423 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3424 {
3425 /* A single "." means no extension is added. */
3426 buf[len] = NUL;
3427 ++p;
3428 if (*p)
3429 ++p;
3430 }
3431 else
3432 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
Bram Moolenaar43663192017-03-05 14:29:12 +01003433 if (executable_exists((char *)buf, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003434 return TRUE;
3435 }
3436 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438
3439/*
3440 * Check what "name" is:
3441 * NODE_NORMAL: file or directory (or doesn't exist)
3442 * NODE_WRITABLE: writable device, socket, fifo, etc.
3443 * NODE_OTHER: non-writable things
3444 */
3445 int
3446mch_nodetype(char_u *name)
3447{
3448 HANDLE hFile;
3449 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003450#ifdef FEAT_MBYTE
3451 WCHAR *wn = NULL;
3452#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453
Bram Moolenaar043545e2006-10-10 16:44:07 +00003454 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3455 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3456 * here. */
3457 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3458 return NODE_WRITABLE;
3459
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003460#ifdef FEAT_MBYTE
3461 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003462 wn = enc_to_utf16(name, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003463
3464 if (wn != NULL)
3465 {
3466 hFile = CreateFileW(wn, /* file name */
3467 GENERIC_WRITE, /* access mode */
3468 0, /* share mode */
3469 NULL, /* security descriptor */
3470 OPEN_EXISTING, /* creation disposition */
3471 0, /* file attributes */
3472 NULL); /* handle to template file */
3473 vim_free(wn);
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003474 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003475 else
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003476#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003477 hFile = CreateFile((LPCSTR)name, /* file name */
3478 GENERIC_WRITE, /* access mode */
3479 0, /* share mode */
3480 NULL, /* security descriptor */
3481 OPEN_EXISTING, /* creation disposition */
3482 0, /* file attributes */
3483 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484
3485 if (hFile == INVALID_HANDLE_VALUE)
3486 return NODE_NORMAL;
3487
3488 type = GetFileType(hFile);
3489 CloseHandle(hFile);
3490 if (type == FILE_TYPE_CHAR)
3491 return NODE_WRITABLE;
3492 if (type == FILE_TYPE_DISK)
3493 return NODE_NORMAL;
3494 return NODE_OTHER;
3495}
3496
3497#ifdef HAVE_ACL
3498struct my_acl
3499{
3500 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3501 PSID pSidOwner;
3502 PSID pSidGroup;
3503 PACL pDacl;
3504 PACL pSacl;
3505};
3506#endif
3507
3508/*
3509 * Return a pointer to the ACL of file "fname" in allocated memory.
3510 * Return NULL if the ACL is not available for whatever reason.
3511 */
3512 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003513mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514{
3515#ifndef HAVE_ACL
3516 return (vim_acl_T)NULL;
3517#else
3518 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003519 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003521 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3522 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003524# ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003525 WCHAR *wn = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003526
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003527 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3528 wn = enc_to_utf16(fname, NULL);
3529 if (wn != NULL)
3530 {
3531 /* Try to retrieve the entire security descriptor. */
3532 err = GetNamedSecurityInfoW(
3533 wn, // Abstract filename
3534 SE_FILE_OBJECT, // File Object
3535 OWNER_SECURITY_INFORMATION |
3536 GROUP_SECURITY_INFORMATION |
3537 DACL_SECURITY_INFORMATION |
3538 SACL_SECURITY_INFORMATION,
3539 &p->pSidOwner, // Ownership information.
3540 &p->pSidGroup, // Group membership.
3541 &p->pDacl, // Discretionary information.
3542 &p->pSacl, // For auditing purposes.
3543 &p->pSecurityDescriptor);
3544 if (err == ERROR_ACCESS_DENIED ||
3545 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003547 /* Retrieve only DACL. */
3548 (void)GetNamedSecurityInfoW(
3549 wn,
3550 SE_FILE_OBJECT,
3551 DACL_SECURITY_INFORMATION,
3552 NULL,
3553 NULL,
3554 &p->pDacl,
3555 NULL,
3556 &p->pSecurityDescriptor);
Bram Moolenaar27515922013-06-29 15:36:26 +02003557 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003558 if (p->pSecurityDescriptor == NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003559 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003560 mch_free_acl((vim_acl_T)p);
3561 p = NULL;
3562 }
3563 vim_free(wn);
3564 }
3565 else
3566# endif
3567 {
3568 /* Try to retrieve the entire security descriptor. */
3569 err = GetNamedSecurityInfo(
3570 (LPSTR)fname, // Abstract filename
3571 SE_FILE_OBJECT, // File Object
3572 OWNER_SECURITY_INFORMATION |
3573 GROUP_SECURITY_INFORMATION |
3574 DACL_SECURITY_INFORMATION |
3575 SACL_SECURITY_INFORMATION,
3576 &p->pSidOwner, // Ownership information.
3577 &p->pSidGroup, // Group membership.
3578 &p->pDacl, // Discretionary information.
3579 &p->pSacl, // For auditing purposes.
3580 &p->pSecurityDescriptor);
3581 if (err == ERROR_ACCESS_DENIED ||
3582 err == ERROR_PRIVILEGE_NOT_HELD)
3583 {
3584 /* Retrieve only DACL. */
3585 (void)GetNamedSecurityInfo(
3586 (LPSTR)fname,
3587 SE_FILE_OBJECT,
3588 DACL_SECURITY_INFORMATION,
3589 NULL,
3590 NULL,
3591 &p->pDacl,
3592 NULL,
3593 &p->pSecurityDescriptor);
3594 }
3595 if (p->pSecurityDescriptor == NULL)
3596 {
3597 mch_free_acl((vim_acl_T)p);
3598 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 }
3600 }
3601 }
3602
3603 return (vim_acl_T)p;
3604#endif
3605}
3606
Bram Moolenaar27515922013-06-29 15:36:26 +02003607#ifdef HAVE_ACL
3608/*
3609 * Check if "acl" contains inherited ACE.
3610 */
3611 static BOOL
3612is_acl_inherited(PACL acl)
3613{
3614 DWORD i;
3615 ACL_SIZE_INFORMATION acl_info;
3616 PACCESS_ALLOWED_ACE ace;
3617
3618 acl_info.AceCount = 0;
3619 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3620 for (i = 0; i < acl_info.AceCount; i++)
3621 {
3622 GetAce(acl, i, (LPVOID *)&ace);
3623 if (ace->Header.AceFlags & INHERITED_ACE)
3624 return TRUE;
3625 }
3626 return FALSE;
3627}
3628#endif
3629
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630/*
3631 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3632 * Errors are ignored.
3633 * This must only be called with "acl" equal to what mch_get_acl() returned.
3634 */
3635 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003636mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637{
3638#ifdef HAVE_ACL
3639 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003640 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003642 if (p != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003643 {
3644# ifdef FEAT_MBYTE
3645 WCHAR *wn = NULL;
3646# endif
3647
3648 /* Set security flags */
3649 if (p->pSidOwner)
3650 sec_info |= OWNER_SECURITY_INFORMATION;
3651 if (p->pSidGroup)
3652 sec_info |= GROUP_SECURITY_INFORMATION;
3653 if (p->pDacl)
3654 {
3655 sec_info |= DACL_SECURITY_INFORMATION;
3656 /* Do not inherit its parent's DACL.
3657 * If the DACL is inherited, Cygwin permissions would be changed.
3658 */
3659 if (!is_acl_inherited(p->pDacl))
3660 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3661 }
3662 if (p->pSacl)
3663 sec_info |= SACL_SECURITY_INFORMATION;
3664
3665# ifdef FEAT_MBYTE
3666 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3667 wn = enc_to_utf16(fname, NULL);
3668 if (wn != NULL)
3669 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003670 (void)SetNamedSecurityInfoW(
Bram Moolenaar27515922013-06-29 15:36:26 +02003671 wn, // Abstract filename
3672 SE_FILE_OBJECT, // File Object
3673 sec_info,
3674 p->pSidOwner, // Ownership information.
3675 p->pSidGroup, // Group membership.
3676 p->pDacl, // Discretionary information.
3677 p->pSacl // For auditing purposes.
3678 );
3679 vim_free(wn);
3680 }
3681 else
3682# endif
3683 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003684 (void)SetNamedSecurityInfo(
Bram Moolenaar27515922013-06-29 15:36:26 +02003685 (LPSTR)fname, // Abstract filename
3686 SE_FILE_OBJECT, // File Object
3687 sec_info,
3688 p->pSidOwner, // Ownership information.
3689 p->pSidGroup, // Group membership.
3690 p->pDacl, // Discretionary information.
3691 p->pSacl // For auditing purposes.
3692 );
3693 }
3694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695#endif
3696}
3697
3698 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003699mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700{
3701#ifdef HAVE_ACL
3702 struct my_acl *p = (struct my_acl *)acl;
3703
3704 if (p != NULL)
3705 {
3706 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3707 vim_free(p);
3708 }
3709#endif
3710}
3711
3712#ifndef FEAT_GUI_W32
3713
3714/*
3715 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3716 */
3717 static BOOL WINAPI
3718handler_routine(
3719 DWORD dwCtrlType)
3720{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003721 INPUT_RECORD ir;
3722 DWORD out;
3723
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 switch (dwCtrlType)
3725 {
3726 case CTRL_C_EVENT:
3727 if (ctrl_c_interrupts)
3728 g_fCtrlCPressed = TRUE;
3729 return TRUE;
3730
3731 case CTRL_BREAK_EVENT:
3732 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003733 ctrl_break_was_pressed = TRUE;
3734 /* ReadConsoleInput is blocking, send a key event to continue. */
3735 ir.EventType = KEY_EVENT;
3736 ir.Event.KeyEvent.bKeyDown = TRUE;
3737 ir.Event.KeyEvent.wRepeatCount = 1;
3738 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3739 ir.Event.KeyEvent.wVirtualScanCode = 0;
3740 ir.Event.KeyEvent.dwControlKeyState = 0;
3741 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3742 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 return TRUE;
3744
3745 /* fatal events: shut down gracefully */
3746 case CTRL_CLOSE_EVENT:
3747 case CTRL_LOGOFF_EVENT:
3748 case CTRL_SHUTDOWN_EVENT:
3749 windgoto((int)Rows - 1, 0);
3750 g_fForceExit = TRUE;
3751
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003752 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 (dwCtrlType == CTRL_CLOSE_EVENT
3754 ? _("close")
3755 : dwCtrlType == CTRL_LOGOFF_EVENT
3756 ? _("logoff")
3757 : _("shutdown")));
3758#ifdef DEBUG
3759 OutputDebugString(IObuff);
3760#endif
3761
3762 preserve_exit(); /* output IObuff, preserve files and exit */
3763
3764 return TRUE; /* not reached */
3765
3766 default:
3767 return FALSE;
3768 }
3769}
3770
3771
3772/*
3773 * set the tty in (raw) ? "raw" : "cooked" mode
3774 */
3775 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003776mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777{
3778 DWORD cmodein;
3779 DWORD cmodeout;
3780 BOOL bEnableHandler;
3781
3782 GetConsoleMode(g_hConIn, &cmodein);
3783 GetConsoleMode(g_hConOut, &cmodeout);
3784 if (tmode == TMODE_RAW)
3785 {
3786 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3787 ENABLE_ECHO_INPUT);
3788#ifdef FEAT_MOUSE
3789 if (g_fMouseActive)
3790 cmodein |= ENABLE_MOUSE_INPUT;
3791#endif
3792 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3793 bEnableHandler = TRUE;
3794 }
3795 else /* cooked */
3796 {
3797 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3798 ENABLE_ECHO_INPUT);
3799 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3800 bEnableHandler = FALSE;
3801 }
3802 SetConsoleMode(g_hConIn, cmodein);
3803 SetConsoleMode(g_hConOut, cmodeout);
3804 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3805
3806#ifdef MCH_WRITE_DUMP
3807 if (fdDump)
3808 {
3809 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3810 tmode == TMODE_RAW ? "raw" :
3811 tmode == TMODE_COOK ? "cooked" : "normal",
3812 cmodein, cmodeout);
3813 fflush(fdDump);
3814 }
3815#endif
3816}
3817
3818
3819/*
3820 * Get the size of the current window in `Rows' and `Columns'
3821 * Return OK when size could be determined, FAIL otherwise.
3822 */
3823 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003824mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825{
3826 CONSOLE_SCREEN_BUFFER_INFO csbi;
3827
3828 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3829 {
3830 /*
3831 * For some reason, we are trying to get the screen dimensions
3832 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3833 * variables are really intended to mean the size of Vim screen
3834 * while in termcap mode.
3835 */
3836 Rows = g_cbTermcap.Info.dwSize.Y;
3837 Columns = g_cbTermcap.Info.dwSize.X;
3838 }
3839 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3840 {
3841 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3842 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3843 }
3844 else
3845 {
3846 Rows = 25;
3847 Columns = 80;
3848 }
3849 return OK;
3850}
3851
3852/*
3853 * Set a console window to `xSize' * `ySize'
3854 */
3855 static void
3856ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003857 HANDLE hConsole,
3858 int xSize,
3859 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860{
3861 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3862 SMALL_RECT srWindowRect; /* hold the new console size */
3863 COORD coordScreen;
3864
3865#ifdef MCH_WRITE_DUMP
3866 if (fdDump)
3867 {
3868 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3869 fflush(fdDump);
3870 }
3871#endif
3872
3873 /* get the largest size we can size the console window to */
3874 coordScreen = GetLargestConsoleWindowSize(hConsole);
3875
3876 /* define the new console window size and scroll position */
3877 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3878 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3879 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3880
3881 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3882 {
3883 int sx, sy;
3884
3885 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3886 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3887 if (sy < ySize || sx < xSize)
3888 {
3889 /*
3890 * Increasing number of lines/columns, do buffer first.
3891 * Use the maximal size in x and y direction.
3892 */
3893 if (sy < ySize)
3894 coordScreen.Y = ySize;
3895 else
3896 coordScreen.Y = sy;
3897 if (sx < xSize)
3898 coordScreen.X = xSize;
3899 else
3900 coordScreen.X = sx;
3901 SetConsoleScreenBufferSize(hConsole, coordScreen);
3902 }
3903 }
3904
3905 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3906 {
3907#ifdef MCH_WRITE_DUMP
3908 if (fdDump)
3909 {
3910 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3911 GetLastError());
3912 fflush(fdDump);
3913 }
3914#endif
3915 }
3916
3917 /* define the new console buffer size */
3918 coordScreen.X = xSize;
3919 coordScreen.Y = ySize;
3920
3921 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3922 {
3923#ifdef MCH_WRITE_DUMP
3924 if (fdDump)
3925 {
3926 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3927 GetLastError());
3928 fflush(fdDump);
3929 }
3930#endif
3931 }
3932}
3933
3934
3935/*
3936 * Set the console window to `Rows' * `Columns'
3937 */
3938 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003939mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
3941 COORD coordScreen;
3942
3943 /* Don't change window size while still starting up */
3944 if (suppress_winsize != 0)
3945 {
3946 suppress_winsize = 2;
3947 return;
3948 }
3949
3950 if (term_console)
3951 {
3952 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3953
3954 /* Clamp Rows and Columns to reasonable values */
3955 if (Rows > coordScreen.Y)
3956 Rows = coordScreen.Y;
3957 if (Columns > coordScreen.X)
3958 Columns = coordScreen.X;
3959
3960 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3961 }
3962}
3963
3964/*
3965 * Rows and/or Columns has changed.
3966 */
3967 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003968mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969{
3970 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3971}
3972
3973
3974/*
3975 * Called when started up, to set the winsize that was delayed.
3976 */
3977 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003978mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979{
3980 if (suppress_winsize == 2)
3981 {
3982 suppress_winsize = 0;
3983 mch_set_shellsize();
3984 shell_resized();
3985 }
3986 suppress_winsize = 0;
3987}
3988#endif /* FEAT_GUI_W32 */
3989
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003990 static BOOL
3991vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003992 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003993 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003994 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003995 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003996 PROCESS_INFORMATION *pi,
3997 LPVOID *env,
3998 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003999{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004000#ifdef FEAT_MBYTE
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004001 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4002 {
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004003 BOOL ret;
4004 WCHAR *wcmd, *wcwd = NULL;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004005
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004006 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4007 if (wcmd == NULL)
4008 goto fallback;
4009 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004010 {
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004011 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4012 if (wcwd == NULL)
4013 {
4014 vim_free(wcmd);
4015 goto fallback;
4016 }
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004017 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004018
4019 ret = CreateProcessW(
4020 NULL, /* Executable name */
4021 wcmd, /* Command to execute */
4022 NULL, /* Process security attributes */
4023 NULL, /* Thread security attributes */
4024 inherit_handles, /* Inherit handles */
4025 flags, /* Creation flags */
4026 env, /* Environment */
4027 wcwd, /* Current directory */
4028 (LPSTARTUPINFOW)si, /* Startup information */
4029 pi); /* Process information */
4030 vim_free(wcmd);
4031 if (wcwd != NULL)
4032 vim_free(wcwd);
4033 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004034 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004035fallback:
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004036#endif
4037 return CreateProcess(
4038 NULL, /* Executable name */
4039 cmd, /* Command to execute */
4040 NULL, /* Process security attributes */
4041 NULL, /* Thread security attributes */
4042 inherit_handles, /* Inherit handles */
4043 flags, /* Creation flags */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004044 env, /* Environment */
4045 cwd, /* Current directory */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004046 si, /* Startup information */
4047 pi); /* Process information */
4048}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
4050
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004051 static HINSTANCE
4052vim_shell_execute(
4053 char *cmd,
4054 INT n_show_cmd)
4055{
4056#ifdef FEAT_MBYTE
4057 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4058 {
4059 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
4060 if (wcmd != NULL)
4061 {
4062 HINSTANCE ret;
4063 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4064 vim_free(wcmd);
4065 return ret;
4066 }
4067 }
4068#endif
4069 return ShellExecute(NULL, NULL, cmd, NULL, NULL, n_show_cmd);
4070}
4071
4072
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073#if defined(FEAT_GUI_W32) || defined(PROTO)
4074
4075/*
4076 * Specialised version of system() for Win32 GUI mode.
4077 * This version proceeds as follows:
4078 * 1. Create a console window for use by the subprocess
4079 * 2. Run the subprocess (it gets the allocated console by default)
4080 * 3. Wait for the subprocess to terminate and get its exit code
4081 * 4. Prompt the user to press a key to close the console window
4082 */
4083 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004084mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085{
4086 STARTUPINFO si;
4087 PROCESS_INFORMATION pi;
4088 DWORD ret = 0;
4089 HWND hwnd = GetFocus();
4090
4091 si.cb = sizeof(si);
4092 si.lpReserved = NULL;
4093 si.lpDesktop = NULL;
4094 si.lpTitle = NULL;
4095 si.dwFlags = STARTF_USESHOWWINDOW;
4096 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004097 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004098 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004100 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004101 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 else
4103 si.wShowWindow = SW_SHOWNORMAL;
4104 si.cbReserved2 = 0;
4105 si.lpReserved2 = NULL;
4106
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004108 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004109 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4110 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111
4112 /* Wait for the command to terminate before continuing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 {
4114#ifdef FEAT_GUI
4115 int delay = 1;
4116
4117 /* Keep updating the window while waiting for the shell to finish. */
4118 for (;;)
4119 {
4120 MSG msg;
4121
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004122 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 {
4124 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004125 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004126 delay = 1;
4127 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 }
4129 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4130 break;
4131
4132 /* We start waiting for a very short time and then increase it, so
4133 * that we respond quickly when the process is quick, and don't
4134 * consume too much overhead when it's slow. */
4135 if (delay < 50)
4136 delay += 10;
4137 }
4138#else
4139 WaitForSingleObject(pi.hProcess, INFINITE);
4140#endif
4141
4142 /* Get the command exit code */
4143 GetExitCodeProcess(pi.hProcess, &ret);
4144 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145
4146 /* Close the handles to the subprocess, so that it goes away */
4147 CloseHandle(pi.hThread);
4148 CloseHandle(pi.hProcess);
4149
4150 /* Try to get input focus back. Doesn't always work though. */
4151 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4152
4153 return ret;
4154}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004155
4156/*
4157 * Thread launched by the gui to send the current buffer data to the
4158 * process. This way avoid to hang up vim totally if the children
4159 * process take a long time to process the lines.
4160 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004161 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004162sub_process_writer(LPVOID param)
4163{
4164 HANDLE g_hChildStd_IN_Wr = param;
4165 linenr_T lnum = curbuf->b_op_start.lnum;
4166 DWORD len = 0;
4167 DWORD l;
4168 char_u *lp = ml_get(lnum);
4169 char_u *s;
4170 int written = 0;
4171
4172 for (;;)
4173 {
4174 l = (DWORD)STRLEN(lp + written);
4175 if (l == 0)
4176 len = 0;
4177 else if (lp[written] == NL)
4178 {
4179 /* NL -> NUL translation */
4180 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4181 }
4182 else
4183 {
4184 s = vim_strchr(lp + written, NL);
4185 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4186 s == NULL ? l : (DWORD)(s - (lp + written)),
4187 &len, NULL);
4188 }
4189 if (len == (int)l)
4190 {
4191 /* Finished a line, add a NL, unless this line should not have
4192 * one. */
4193 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004194 || (!curbuf->b_p_bin
4195 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004196 || (lnum != curbuf->b_no_eol_lnum
4197 && (lnum != curbuf->b_ml.ml_line_count
4198 || curbuf->b_p_eol)))
4199 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004200 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004201 }
4202
4203 ++lnum;
4204 if (lnum > curbuf->b_op_end.lnum)
4205 break;
4206
4207 lp = ml_get(lnum);
4208 written = 0;
4209 }
4210 else if (len > 0)
4211 written += len;
4212 }
4213
4214 /* finished all the lines, close pipe */
4215 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004216 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004217}
4218
4219
4220# define BUFLEN 100 /* length for buffer, stolen from unix version */
4221
4222/*
4223 * This function read from the children's stdout and write the
4224 * data on screen or in the buffer accordingly.
4225 */
4226 static void
4227dump_pipe(int options,
4228 HANDLE g_hChildStd_OUT_Rd,
4229 garray_T *ga,
4230 char_u buffer[],
4231 DWORD *buffer_off)
4232{
4233 DWORD availableBytes = 0;
4234 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004235 int ret;
4236 DWORD len;
4237 DWORD toRead;
4238 int repeatCount;
4239
4240 /* we query the pipe to see if there is any data to read
4241 * to avoid to perform a blocking read */
4242 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4243 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004244 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004245 NULL, /* number of read bytes */
4246 &availableBytes, /* available bytes total */
4247 NULL); /* byteLeft */
4248
4249 repeatCount = 0;
4250 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004251 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004252 {
4253 repeatCount++;
4254 toRead =
4255# ifdef FEAT_MBYTE
4256 (DWORD)(BUFLEN - *buffer_off);
4257# else
4258 (DWORD)BUFLEN;
4259# endif
4260 toRead = availableBytes < toRead ? availableBytes : toRead;
4261 ReadFile(g_hChildStd_OUT_Rd, buffer
4262# ifdef FEAT_MBYTE
4263 + *buffer_off, toRead
4264# else
4265 , toRead
4266# endif
4267 , &len, NULL);
4268
4269 /* If we haven't read anything, there is a problem */
4270 if (len == 0)
4271 break;
4272
4273 availableBytes -= len;
4274
4275 if (options & SHELL_READ)
4276 {
4277 /* Do NUL -> NL translation, append NL separated
4278 * lines to the current buffer. */
4279 for (i = 0; i < len; ++i)
4280 {
4281 if (buffer[i] == NL)
4282 append_ga_line(ga);
4283 else if (buffer[i] == NUL)
4284 ga_append(ga, NL);
4285 else
4286 ga_append(ga, buffer[i]);
4287 }
4288 }
4289# ifdef FEAT_MBYTE
4290 else if (has_mbyte)
4291 {
4292 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004293 int c;
4294 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004295
4296 len += *buffer_off;
4297 buffer[len] = NUL;
4298
4299 /* Check if the last character in buffer[] is
4300 * incomplete, keep these bytes for the next
4301 * round. */
4302 for (p = buffer; p < buffer + len; p += l)
4303 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004304 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004305 if (l == 0)
4306 l = 1; /* NUL byte? */
4307 else if (MB_BYTE2LEN(*p) != l)
4308 break;
4309 }
4310 if (p == buffer) /* no complete character */
4311 {
4312 /* avoid getting stuck at an illegal byte */
4313 if (len >= 12)
4314 ++p;
4315 else
4316 {
4317 *buffer_off = len;
4318 return;
4319 }
4320 }
4321 c = *p;
4322 *p = NUL;
4323 msg_puts(buffer);
4324 if (p < buffer + len)
4325 {
4326 *p = c;
4327 *buffer_off = (DWORD)((buffer + len) - p);
4328 mch_memmove(buffer, p, *buffer_off);
4329 return;
4330 }
4331 *buffer_off = 0;
4332 }
4333# endif /* FEAT_MBYTE */
4334 else
4335 {
4336 buffer[len] = NUL;
4337 msg_puts(buffer);
4338 }
4339
4340 windgoto(msg_row, msg_col);
4341 cursor_on();
4342 out_flush();
4343 }
4344}
4345
4346/*
4347 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4348 * for communication and doesn't open any new window.
4349 */
4350 static int
4351mch_system_piped(char *cmd, int options)
4352{
4353 STARTUPINFO si;
4354 PROCESS_INFORMATION pi;
4355 DWORD ret = 0;
4356
4357 HANDLE g_hChildStd_IN_Rd = NULL;
4358 HANDLE g_hChildStd_IN_Wr = NULL;
4359 HANDLE g_hChildStd_OUT_Rd = NULL;
4360 HANDLE g_hChildStd_OUT_Wr = NULL;
4361
4362 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4363 DWORD len;
4364
4365 /* buffer used to receive keys */
4366 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4367 int ta_len = 0; /* valid bytes in ta_buf[] */
4368
4369 DWORD i;
4370 int c;
4371 int noread_cnt = 0;
4372 garray_T ga;
4373 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004374 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004375 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004376
4377 SECURITY_ATTRIBUTES saAttr;
4378
4379 /* Set the bInheritHandle flag so pipe handles are inherited. */
4380 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4381 saAttr.bInheritHandle = TRUE;
4382 saAttr.lpSecurityDescriptor = NULL;
4383
4384 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4385 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004386 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004387 /* Create a pipe for the child process's STDIN. */
4388 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4389 /* Ensure the write handle to the pipe for STDIN is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004390 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004391 {
4392 CloseHandle(g_hChildStd_IN_Rd);
4393 CloseHandle(g_hChildStd_IN_Wr);
4394 CloseHandle(g_hChildStd_OUT_Rd);
4395 CloseHandle(g_hChildStd_OUT_Wr);
4396 MSG_PUTS(_("\nCannot create pipes\n"));
4397 }
4398
4399 si.cb = sizeof(si);
4400 si.lpReserved = NULL;
4401 si.lpDesktop = NULL;
4402 si.lpTitle = NULL;
4403 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4404
4405 /* set-up our file redirection */
4406 si.hStdError = g_hChildStd_OUT_Wr;
4407 si.hStdOutput = g_hChildStd_OUT_Wr;
4408 si.hStdInput = g_hChildStd_IN_Rd;
4409 si.wShowWindow = SW_HIDE;
4410 si.cbReserved2 = 0;
4411 si.lpReserved2 = NULL;
4412
4413 if (options & SHELL_READ)
4414 ga_init2(&ga, 1, BUFLEN);
4415
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004416 if (cmd != NULL)
4417 {
4418 p = (char *)vim_strsave((char_u *)cmd);
4419 if (p != NULL)
4420 unescape_shellxquote((char_u *)p, p_sxe);
4421 else
4422 p = cmd;
4423 }
4424
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004425 /* Now, run the command.
4426 * About "Inherit handles" being TRUE: this command can be litigious,
4427 * handle inheritance was deactivated for pending temp file, but, if we
4428 * deactivate it, the pipes don't work for some reason. */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004429 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4430 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004431
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004432 if (p != cmd)
4433 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004434
4435 /* Close our unused side of the pipes */
4436 CloseHandle(g_hChildStd_IN_Rd);
4437 CloseHandle(g_hChildStd_OUT_Wr);
4438
4439 if (options & SHELL_WRITE)
4440 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004441 HANDLE thread = (HANDLE)
4442 _beginthreadex(NULL, /* security attributes */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004443 0, /* default stack size */
4444 sub_process_writer, /* function to be executed */
4445 g_hChildStd_IN_Wr, /* parameter */
4446 0, /* creation flag, start immediately */
4447 NULL); /* we don't care about thread id */
4448 CloseHandle(thread);
4449 g_hChildStd_IN_Wr = NULL;
4450 }
4451
4452 /* Keep updating the window while waiting for the shell to finish. */
4453 for (;;)
4454 {
4455 MSG msg;
4456
Bram Moolenaar175d0702013-12-11 18:36:33 +01004457 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004458 {
4459 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004460 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004461 }
4462
4463 /* write pipe information in the window */
4464 if ((options & (SHELL_READ|SHELL_WRITE))
4465# ifdef FEAT_GUI
4466 || gui.in_use
4467# endif
4468 )
4469 {
4470 len = 0;
4471 if (!(options & SHELL_EXPAND)
4472 && ((options &
4473 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4474 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4475# ifdef FEAT_GUI
4476 || gui.in_use
4477# endif
4478 )
4479 && (ta_len > 0 || noread_cnt > 4))
4480 {
4481 if (ta_len == 0)
4482 {
4483 /* Get extra characters when we don't have any. Reset the
4484 * counter and timer. */
4485 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004486 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4487 }
4488 if (ta_len > 0 || len > 0)
4489 {
4490 /*
4491 * For pipes: Check for CTRL-C: send interrupt signal to
4492 * child. Check for CTRL-D: EOF, close pipe to child.
4493 */
4494 if (len == 1 && cmd != NULL)
4495 {
4496 if (ta_buf[ta_len] == Ctrl_C)
4497 {
4498 /* Learn what exit code is expected, for
4499 * now put 9 as SIGKILL */
4500 TerminateProcess(pi.hProcess, 9);
4501 }
4502 if (ta_buf[ta_len] == Ctrl_D)
4503 {
4504 CloseHandle(g_hChildStd_IN_Wr);
4505 g_hChildStd_IN_Wr = NULL;
4506 }
4507 }
4508
4509 /* replace K_BS by <BS> and K_DEL by <DEL> */
4510 for (i = ta_len; i < ta_len + len; ++i)
4511 {
4512 if (ta_buf[i] == CSI && len - i > 2)
4513 {
4514 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4515 if (c == K_DEL || c == K_KDEL || c == K_BS)
4516 {
4517 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4518 (size_t)(len - i - 2));
4519 if (c == K_DEL || c == K_KDEL)
4520 ta_buf[i] = DEL;
4521 else
4522 ta_buf[i] = Ctrl_H;
4523 len -= 2;
4524 }
4525 }
4526 else if (ta_buf[i] == '\r')
4527 ta_buf[i] = '\n';
4528# ifdef FEAT_MBYTE
4529 if (has_mbyte)
4530 i += (*mb_ptr2len_len)(ta_buf + i,
4531 ta_len + len - i) - 1;
4532# endif
4533 }
4534
4535 /*
4536 * For pipes: echo the typed characters. For a pty this
4537 * does not seem to work.
4538 */
4539 for (i = ta_len; i < ta_len + len; ++i)
4540 {
4541 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4542 msg_putchar(ta_buf[i]);
4543# ifdef FEAT_MBYTE
4544 else if (has_mbyte)
4545 {
4546 int l = (*mb_ptr2len)(ta_buf + i);
4547
4548 msg_outtrans_len(ta_buf + i, l);
4549 i += l - 1;
4550 }
4551# endif
4552 else
4553 msg_outtrans_len(ta_buf + i, 1);
4554 }
4555 windgoto(msg_row, msg_col);
4556 out_flush();
4557
4558 ta_len += len;
4559
4560 /*
4561 * Write the characters to the child, unless EOF has been
4562 * typed for pipes. Write one character at a time, to
4563 * avoid losing too much typeahead. When writing buffer
4564 * lines, drop the typed characters (only check for
4565 * CTRL-C).
4566 */
4567 if (options & SHELL_WRITE)
4568 ta_len = 0;
4569 else if (g_hChildStd_IN_Wr != NULL)
4570 {
4571 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4572 1, &len, NULL);
4573 // if we are typing in, we want to keep things reactive
4574 delay = 1;
4575 if (len > 0)
4576 {
4577 ta_len -= len;
4578 mch_memmove(ta_buf, ta_buf + len, ta_len);
4579 }
4580 }
4581 }
4582 }
4583 }
4584
4585 if (ta_len)
4586 ui_inchar_undo(ta_buf, ta_len);
4587
4588 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4589 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004590 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004591 break;
4592 }
4593
4594 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004595 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004596
4597 /* We start waiting for a very short time and then increase it, so
4598 * that we respond quickly when the process is quick, and don't
4599 * consume too much overhead when it's slow. */
4600 if (delay < 50)
4601 delay += 10;
4602 }
4603
4604 /* Close the pipe */
4605 CloseHandle(g_hChildStd_OUT_Rd);
4606 if (g_hChildStd_IN_Wr != NULL)
4607 CloseHandle(g_hChildStd_IN_Wr);
4608
4609 WaitForSingleObject(pi.hProcess, INFINITE);
4610
4611 /* Get the command exit code */
4612 GetExitCodeProcess(pi.hProcess, &ret);
4613
4614 if (options & SHELL_READ)
4615 {
4616 if (ga.ga_len > 0)
4617 {
4618 append_ga_line(&ga);
4619 /* remember that the NL was missing */
4620 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4621 }
4622 else
4623 curbuf->b_no_eol_lnum = 0;
4624 ga_clear(&ga);
4625 }
4626
4627 /* Close the handles to the subprocess, so that it goes away */
4628 CloseHandle(pi.hThread);
4629 CloseHandle(pi.hProcess);
4630
4631 return ret;
4632}
4633
4634 static int
4635mch_system(char *cmd, int options)
4636{
4637 /* if we can pipe and the shelltemp option is off */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004638 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004639 return mch_system_piped(cmd, options);
4640 else
4641 return mch_system_classic(cmd, options);
4642}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643#else
4644
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004645# ifdef FEAT_MBYTE
4646 static int
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004647mch_system(char *cmd, int options)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004648{
4649 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4650 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004651 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004652 if (wcmd != NULL)
4653 {
4654 int ret = _wsystem(wcmd);
4655 vim_free(wcmd);
4656 return ret;
4657 }
4658 }
4659 return system(cmd);
4660}
4661# else
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004662# define mch_system(c, o) system(c)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004663# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664
4665#endif
4666
4667/*
4668 * Either execute a command by calling the shell or start a new shell
4669 */
4670 int
4671mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004672 char_u *cmd,
4673 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674{
4675 int x = 0;
4676 int tmode = cur_tmode;
4677#ifdef FEAT_TITLE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004678 char szShellTitle[512];
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004679# ifdef FEAT_MBYTE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004680 int did_set_title = FALSE;
4681
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004682 /* Change the title to reflect that we are in a subshell. */
4683 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4684 {
4685 WCHAR szShellTitle[512];
4686
4687 if (GetConsoleTitleW(szShellTitle,
4688 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
4689 {
4690 if (cmd == NULL)
4691 wcscat(szShellTitle, L" :sh");
4692 else
4693 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004694 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004695
4696 if (wn != NULL)
4697 {
4698 wcscat(szShellTitle, L" - !");
4699 if ((wcslen(szShellTitle) + wcslen(wn) <
4700 sizeof(szShellTitle)/sizeof(WCHAR)))
4701 wcscat(szShellTitle, wn);
4702 SetConsoleTitleW(szShellTitle);
4703 vim_free(wn);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004704 did_set_title = TRUE;
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004705 }
4706 }
4707 }
4708 }
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004709 if (!did_set_title)
4710# endif
4711 /* Change the title to reflect that we are in a subshell. */
4712 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 {
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004714 if (cmd == NULL)
4715 strcat(szShellTitle, " :sh");
4716 else
4717 {
4718 strcat(szShellTitle, " - !");
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004719 if ((strlen(szShellTitle) + strlen((char *)cmd)
4720 < sizeof(szShellTitle)))
4721 strcat(szShellTitle, (char *)cmd);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004722 }
4723 SetConsoleTitle(szShellTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725#endif
4726
4727 out_flush();
4728
4729#ifdef MCH_WRITE_DUMP
4730 if (fdDump)
4731 {
4732 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4733 fflush(fdDump);
4734 }
4735#endif
4736
4737 /*
4738 * Catch all deadly signals while running the external command, because a
4739 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4740 */
4741 signal(SIGINT, SIG_IGN);
4742#if defined(__GNUC__) && !defined(__MINGW32__)
4743 signal(SIGKILL, SIG_IGN);
4744#else
4745 signal(SIGBREAK, SIG_IGN);
4746#endif
4747 signal(SIGILL, SIG_IGN);
4748 signal(SIGFPE, SIG_IGN);
4749 signal(SIGSEGV, SIG_IGN);
4750 signal(SIGTERM, SIG_IGN);
4751 signal(SIGABRT, SIG_IGN);
4752
4753 if (options & SHELL_COOKED)
4754 settmode(TMODE_COOK); /* set to normal mode */
4755
4756 if (cmd == NULL)
4757 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004758 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 }
4760 else
4761 {
4762 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004763 char_u *newcmd = NULL;
4764 char_u *cmdbase = cmd;
4765 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004766
4767 /* Skip a leading ", ( and "(. */
4768 if (*cmdbase == '"' )
4769 ++cmdbase;
4770 if (*cmdbase == '(')
4771 ++cmdbase;
4772
Bram Moolenaar1c465442017-03-12 20:10:05 +01004773 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004774 {
4775 STARTUPINFO si;
4776 PROCESS_INFORMATION pi;
4777 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004778 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004779 char_u *p;
4780
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004781 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004782 si.cb = sizeof(si);
4783 si.lpReserved = NULL;
4784 si.lpDesktop = NULL;
4785 si.lpTitle = NULL;
4786 si.dwFlags = 0;
4787 si.cbReserved2 = 0;
4788 si.lpReserved2 = NULL;
4789
4790 cmdbase = skipwhite(cmdbase + 5);
4791 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004792 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004793 {
4794 cmdbase = skipwhite(cmdbase + 4);
4795 si.dwFlags = STARTF_USESHOWWINDOW;
4796 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004797 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004798 }
4799 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004800 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004801 {
4802 cmdbase = skipwhite(cmdbase + 2);
4803 flags = CREATE_NO_WINDOW;
4804 si.dwFlags = STARTF_USESTDHANDLES;
4805 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004806 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004807 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004808 NULL, // Security att.
4809 OPEN_EXISTING, // Open flags
4810 FILE_ATTRIBUTE_NORMAL, // File att.
4811 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004812 si.hStdOutput = si.hStdInput;
4813 si.hStdError = si.hStdInput;
4814 }
4815
4816 /* Remove a trailing ", ) and )" if they have a match
4817 * at the start of the command. */
4818 if (cmdbase > cmd)
4819 {
4820 p = cmdbase + STRLEN(cmdbase);
4821 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4822 *--p = NUL;
4823 if (p > cmdbase && p[-1] == ')'
4824 && (*cmd =='(' || cmd[1] == '('))
4825 *--p = NUL;
4826 }
4827
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004828 newcmd = cmdbase;
4829 unescape_shellxquote(cmdbase, p_sxe);
4830
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004831 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004832 * If creating new console, arguments are passed to the
4833 * 'cmd.exe' as-is. If it's not, arguments are not treated
4834 * correctly for current 'cmd.exe'. So unescape characters in
4835 * shellxescape except '|' for avoiding to be treated as
4836 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004837 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004838 if (flags != CREATE_NEW_CONSOLE)
4839 {
4840 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004841 char_u *cmd_shell = mch_getenv("COMSPEC");
4842
4843 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004844 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004845
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004846 subcmd = vim_strsave_escaped_ext(cmdbase,
4847 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004848 if (subcmd != NULL)
4849 {
4850 /* make "cmd.exe /c arguments" */
4851 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004852 newcmd = lalloc(cmdlen, TRUE);
4853 if (newcmd != NULL)
4854 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004855 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004856 else
4857 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004858 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004859 }
4860 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004861
4862 /*
4863 * Now, start the command as a process, so that it doesn't
4864 * inherit our handles which causes unpleasant dangling swap
4865 * files if we exit before the spawned process
4866 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004867 if (vim_create_process((char *)newcmd, FALSE, flags,
4868 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004869 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004870 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4871 > (HINSTANCE)32)
4872 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004873 else
4874 {
4875 x = -1;
4876#ifdef FEAT_GUI_W32
4877 EMSG(_("E371: Command not found"));
4878#endif
4879 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004880
4881 if (newcmd != cmdbase)
4882 vim_free(newcmd);
4883
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004884 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004885 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004886 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004887 CloseHandle(si.hStdInput);
4888 }
4889 /* Close the handles to the subprocess, so that it goes away */
4890 CloseHandle(pi.hThread);
4891 CloseHandle(pi.hProcess);
4892 }
4893 else
4894 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004895 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896#ifdef FEAT_GUI_W32
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004897 (!p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004899 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4900
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004901 newcmd = lalloc(cmdlen, TRUE);
4902 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 {
4904#if defined(FEAT_GUI_W32)
4905 if (need_vimrun_warning)
4906 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004907 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4908 "External commands will not pause after completion.\n"
4909 "See :help win32-vimrun for more information.");
4910 char *title = _("Vim Warning");
4911# ifdef FEAT_MBYTE
4912 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4913 {
4914 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4915 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
4916
4917 if (wmsg != NULL && wtitle != NULL)
4918 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4919 vim_free(wmsg);
4920 vim_free(wtitle);
4921 }
4922 else
4923# endif
4924 MessageBox(NULL, msg, title, MB_ICONWARNING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 need_vimrun_warning = FALSE;
4926 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004927 if (!s_dont_use_vimrun && p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 /* Use vimrun to execute the command. It opens a console
4929 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004930 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 vimrun_path,
4932 (msg_silent != 0 || (options & SHELL_DOOUT))
4933 ? "-s " : "",
4934 p_sh, p_shcf, cmd);
4935 else
4936#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004937 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004938 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004940 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 }
4943 }
4944
4945 if (tmode == TMODE_RAW)
4946 settmode(TMODE_RAW); /* set to raw mode */
4947
4948 /* Print the return value, unless "vimrun" was used. */
4949 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4950#if defined(FEAT_GUI_W32)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004951 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952#endif
4953 )
4954 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004955 smsg((char_u *)_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 msg_putchar('\n');
4957 }
4958#ifdef FEAT_TITLE
4959 resettitle();
4960#endif
4961
4962 signal(SIGINT, SIG_DFL);
4963#if defined(__GNUC__) && !defined(__MINGW32__)
4964 signal(SIGKILL, SIG_DFL);
4965#else
4966 signal(SIGBREAK, SIG_DFL);
4967#endif
4968 signal(SIGILL, SIG_DFL);
4969 signal(SIGFPE, SIG_DFL);
4970 signal(SIGSEGV, SIG_DFL);
4971 signal(SIGTERM, SIG_DFL);
4972 signal(SIGABRT, SIG_DFL);
4973
4974 return x;
4975}
4976
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004977#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004978 static HANDLE
4979job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004980 char_u *fname,
4981 DWORD dwDesiredAccess,
4982 DWORD dwShareMode,
4983 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
4984 DWORD dwCreationDisposition,
4985 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004986{
4987 HANDLE h;
4988# ifdef FEAT_MBYTE
4989 WCHAR *wn = NULL;
4990 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4991 {
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004992 wn = enc_to_utf16(fname, NULL);
4993 if (wn != NULL)
4994 {
4995 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
4996 lpSecurityAttributes, dwCreationDisposition,
4997 dwFlagsAndAttributes, NULL);
4998 vim_free(wn);
4999 }
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005000 }
5001 if (wn == NULL)
5002# endif
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005003 h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode,
5004 lpSecurityAttributes, dwCreationDisposition,
5005 dwFlagsAndAttributes, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005006 return h;
5007}
5008
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005009/*
5010 * Turn the dictionary "env" into a NUL separated list that can be used as the
5011 * environment argument of vim_create_process().
5012 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005013 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005014win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005015{
5016 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005017 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005018 LPVOID base = GetEnvironmentStringsW();
5019
5020 /* for last \0 */
5021 if (ga_grow(gap, 1) == FAIL)
5022 return;
5023
5024 if (base)
5025 {
5026 WCHAR *p = (WCHAR*) base;
5027
5028 /* for last \0 */
5029 if (ga_grow(gap, 1) == FAIL)
5030 return;
5031
5032 while (*p != 0 || *(p + 1) != 0)
5033 {
5034 if (ga_grow(gap, 1) == OK)
5035 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5036 p++;
5037 }
5038 FreeEnvironmentStrings(base);
5039 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5040 }
5041
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005042 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005043 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005044 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005045 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005046 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005047 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005048 typval_T *item = &dict_lookup(hi)->di_tv;
5049 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
5050 WCHAR *wval = enc_to_utf16(get_tv_string(item), NULL);
5051 --todo;
5052 if (wkey != NULL && wval != NULL)
5053 {
5054 size_t n;
5055 size_t lkey = wcslen(wkey);
5056 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005057
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005058 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5059 continue;
5060 for (n = 0; n < lkey; n++)
5061 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5062 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5063 for (n = 0; n < lval; n++)
5064 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5065 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5066 }
5067 if (wkey != NULL) vim_free(wkey);
5068 if (wval != NULL) vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005069 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005070 }
5071 }
5072
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005073# ifdef FEAT_CLIENTSERVER
5074 if (is_terminal)
5075 {
5076 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
5077 size_t lval = STRLEN(servername);
5078 size_t n;
5079
5080 if (ga_grow(gap, (int)(14 + lval + 2)) == OK)
5081 {
5082 for (n = 0; n < 15; n++)
5083 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5084 (WCHAR)"VIM_SERVERNAME="[n];
5085 for (n = 0; n < lval; n++)
5086 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5087 (WCHAR)servername[n];
5088 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5089 }
5090 }
5091# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005092}
5093
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005094 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005095mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005096{
5097 STARTUPINFO si;
5098 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005099 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005100 SECURITY_ATTRIBUTES saAttr;
5101 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005102 HANDLE ifd[2];
5103 HANDLE ofd[2];
5104 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005105 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005106
5107 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5108 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5109 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5110 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5111 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5112 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5113 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5114
5115 if (use_out_for_err && use_null_for_out)
5116 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005117
5118 ifd[0] = INVALID_HANDLE_VALUE;
5119 ifd[1] = INVALID_HANDLE_VALUE;
5120 ofd[0] = INVALID_HANDLE_VALUE;
5121 ofd[1] = INVALID_HANDLE_VALUE;
5122 efd[0] = INVALID_HANDLE_VALUE;
5123 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005124 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005125
Bram Moolenaar14207f42016-10-27 21:13:10 +02005126 jo = CreateJobObject(NULL, NULL);
5127 if (jo == NULL)
5128 {
5129 job->jv_status = JOB_FAILED;
5130 goto failed;
5131 }
5132
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005133 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005134 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005135
Bram Moolenaar76467df2016-02-12 19:30:26 +01005136 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005137 ZeroMemory(&si, sizeof(si));
5138 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005139 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005140 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005141
Bram Moolenaard8070362016-02-15 21:56:54 +01005142 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5143 saAttr.bInheritHandle = TRUE;
5144 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005145
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005146 if (use_file_for_in)
5147 {
5148 char_u *fname = options->jo_io_name[PART_IN];
5149
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005150 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5151 FILE_SHARE_READ | FILE_SHARE_WRITE,
5152 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5153 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005154 {
5155 EMSG2(_(e_notopen), fname);
5156 goto failed;
5157 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005158 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005159 else if (!use_null_for_in &&
5160 (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005161 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005162 goto failed;
5163
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005164 if (use_file_for_out)
5165 {
5166 char_u *fname = options->jo_io_name[PART_OUT];
5167
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005168 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5169 FILE_SHARE_READ | FILE_SHARE_WRITE,
5170 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5171 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005172 {
5173 EMSG2(_(e_notopen), fname);
5174 goto failed;
5175 }
5176 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005177 else if (!use_null_for_out &&
5178 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005179 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005180 goto failed;
5181
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005182 if (use_file_for_err)
5183 {
5184 char_u *fname = options->jo_io_name[PART_ERR];
5185
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005186 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5187 FILE_SHARE_READ | FILE_SHARE_WRITE,
5188 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5189 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005190 {
5191 EMSG2(_(e_notopen), fname);
5192 goto failed;
5193 }
5194 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005195 else if (!use_out_for_err && !use_null_for_err &&
5196 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005197 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005198 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005199
Bram Moolenaard8070362016-02-15 21:56:54 +01005200 si.dwFlags |= STARTF_USESTDHANDLES;
5201 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005202 si.hStdOutput = ofd[1];
5203 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5204
5205 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5206 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005207 if (options->jo_set & JO_CHANNEL)
5208 {
5209 channel = options->jo_channel;
5210 if (channel != NULL)
5211 ++channel->ch_refcount;
5212 }
5213 else
5214 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005215 if (channel == NULL)
5216 goto failed;
5217 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005218
5219 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005220 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005221 CREATE_DEFAULT_ERROR_MODE |
5222 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005223 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005224 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005225 &si, &pi,
5226 ga.ga_data,
5227 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005228 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005229 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005230 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005231 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005232 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005233
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005234 ga_clear(&ga);
5235
Bram Moolenaar14207f42016-10-27 21:13:10 +02005236 if (!AssignProcessToJobObject(jo, pi.hProcess))
5237 {
5238 /* if failing, switch the way to terminate
5239 * process with TerminateProcess. */
5240 CloseHandle(jo);
5241 jo = NULL;
5242 }
5243 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005244 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005245 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005246 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005247 job->jv_status = JOB_STARTED;
5248
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005249 CloseHandle(ifd[0]);
5250 CloseHandle(ofd[1]);
5251 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005252 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005253
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005254 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005255 if (channel != NULL)
5256 {
5257 channel_set_pipes(channel,
5258 use_file_for_in || use_null_for_in
5259 ? INVALID_FD : (sock_T)ifd[1],
5260 use_file_for_out || use_null_for_out
5261 ? INVALID_FD : (sock_T)ofd[0],
5262 use_out_for_err || use_file_for_err || use_null_for_err
5263 ? INVALID_FD : (sock_T)efd[0]);
5264 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005265 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005266 return;
5267
5268failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005269 CloseHandle(ifd[0]);
5270 CloseHandle(ofd[0]);
5271 CloseHandle(efd[0]);
5272 CloseHandle(ifd[1]);
5273 CloseHandle(ofd[1]);
5274 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005275 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005276 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005277}
5278
5279 char *
5280mch_job_status(job_T *job)
5281{
5282 DWORD dwExitCode = 0;
5283
Bram Moolenaar76467df2016-02-12 19:30:26 +01005284 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5285 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005286 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005287 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005288 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005289 {
5290 ch_log(job->jv_channel, "Job ended");
5291 job->jv_status = JOB_ENDED;
5292 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005293 return "dead";
5294 }
5295 return "run";
5296}
5297
Bram Moolenaar97792de2016-10-15 18:36:49 +02005298 job_T *
5299mch_detect_ended_job(job_T *job_list)
5300{
5301 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5302 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5303 job_T *job = job_list;
5304
5305 while (job != NULL)
5306 {
5307 DWORD n;
5308 DWORD result;
5309
5310 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5311 && job != NULL; job = job->jv_next)
5312 {
5313 if (job->jv_status == JOB_STARTED)
5314 {
5315 jobHandles[n] = job->jv_proc_info.hProcess;
5316 jobArray[n] = job;
5317 ++n;
5318 }
5319 }
5320 if (n == 0)
5321 continue;
5322 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5323 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5324 {
5325 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5326
5327 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5328 return wait_job;
5329 }
5330 }
5331 return NULL;
5332}
5333
Bram Moolenaarfb630902016-10-29 14:55:00 +02005334 static BOOL
5335terminate_all(HANDLE process, int code)
5336{
5337 PROCESSENTRY32 pe;
5338 HANDLE h = INVALID_HANDLE_VALUE;
5339 DWORD pid = GetProcessId(process);
5340
5341 if (pid != 0)
5342 {
5343 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5344 if (h != INVALID_HANDLE_VALUE)
5345 {
5346 pe.dwSize = sizeof(PROCESSENTRY32);
5347 if (!Process32First(h, &pe))
5348 goto theend;
5349
5350 do
5351 {
5352 if (pe.th32ParentProcessID == pid)
5353 {
5354 HANDLE ph = OpenProcess(
5355 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5356 if (ph != NULL)
5357 {
5358 terminate_all(ph, code);
5359 CloseHandle(ph);
5360 }
5361 }
5362 } while (Process32Next(h, &pe));
5363
5364 CloseHandle(h);
5365 }
5366 }
5367
5368theend:
5369 return TerminateProcess(process, code);
5370}
5371
5372/*
5373 * Send a (deadly) signal to "job".
5374 * Return FAIL if it didn't work.
5375 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005376 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005377mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005378{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005379 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005380
Bram Moolenaar923d9262016-02-25 20:56:01 +01005381 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005382 {
Bram Moolenaarfb630902016-10-29 14:55:00 +02005383 /* deadly signal */
Bram Moolenaar14207f42016-10-27 21:13:10 +02005384 if (job->jv_job_object != NULL)
5385 return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL;
Bram Moolenaarfb630902016-10-29 14:55:00 +02005386 return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005387 }
5388
5389 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5390 return FAIL;
5391 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005392 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5393 job->jv_proc_info.dwProcessId)
5394 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005395 FreeConsole();
5396 return ret;
5397}
5398
5399/*
5400 * Clear the data related to "job".
5401 */
5402 void
5403mch_clear_job(job_T *job)
5404{
5405 if (job->jv_status != JOB_FAILED)
5406 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005407 if (job->jv_job_object != NULL)
5408 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005409 CloseHandle(job->jv_proc_info.hProcess);
5410 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005411}
5412#endif
5413
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414
5415#ifndef FEAT_GUI_W32
5416
5417/*
5418 * Start termcap mode
5419 */
5420 static void
5421termcap_mode_start(void)
5422{
5423 DWORD cmodein;
5424
5425 if (g_fTermcapMode)
5426 return;
5427
5428 SaveConsoleBuffer(&g_cbNonTermcap);
5429
5430 if (g_cbTermcap.IsValid)
5431 {
5432 /*
5433 * We've been in termcap mode before. Restore certain screen
5434 * characteristics, including the buffer size and the window
5435 * size. Since we will be redrawing the screen, we don't need
5436 * to restore the actual contents of the buffer.
5437 */
5438 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
5439 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5440 Rows = g_cbTermcap.Info.dwSize.Y;
5441 Columns = g_cbTermcap.Info.dwSize.X;
5442 }
5443 else
5444 {
5445 /*
5446 * This is our first time entering termcap mode. Clear the console
5447 * screen buffer, and resize the buffer to match the current window
5448 * size. We will use this as the size of our editing environment.
5449 */
5450 ClearConsoleBuffer(g_attrCurrent);
5451 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5452 }
5453
5454#ifdef FEAT_TITLE
5455 resettitle();
5456#endif
5457
5458 GetConsoleMode(g_hConIn, &cmodein);
5459#ifdef FEAT_MOUSE
5460 if (g_fMouseActive)
5461 cmodein |= ENABLE_MOUSE_INPUT;
5462 else
5463 cmodein &= ~ENABLE_MOUSE_INPUT;
5464#endif
5465 cmodein |= ENABLE_WINDOW_INPUT;
5466 SetConsoleMode(g_hConIn, cmodein);
5467
5468 redraw_later_clear();
5469 g_fTermcapMode = TRUE;
5470}
5471
5472
5473/*
5474 * End termcap mode
5475 */
5476 static void
5477termcap_mode_end(void)
5478{
5479 DWORD cmodein;
5480 ConsoleBuffer *cb;
5481 COORD coord;
5482 DWORD dwDummy;
5483
5484 if (!g_fTermcapMode)
5485 return;
5486
5487 SaveConsoleBuffer(&g_cbTermcap);
5488
5489 GetConsoleMode(g_hConIn, &cmodein);
5490 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5491 SetConsoleMode(g_hConIn, cmodein);
5492
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005493#ifdef FEAT_RESTORE_ORIG_SCREEN
5494 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
5495#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 cb = &g_cbNonTermcap;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005497#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 RestoreConsoleBuffer(cb, p_rs);
5499 SetConsoleCursorInfo(g_hConOut, &g_cci);
5500
5501 if (p_rs || exiting)
5502 {
5503 /*
5504 * Clear anything that happens to be on the current line.
5505 */
5506 coord.X = 0;
5507 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5508 FillConsoleOutputCharacter(g_hConOut, ' ',
5509 cb->Info.dwSize.X, coord, &dwDummy);
5510 /*
5511 * The following is just for aesthetics. If we are exiting without
5512 * restoring the screen, then we want to have a prompt string
5513 * appear at the bottom line. However, the command interpreter
5514 * seems to always advance the cursor one line before displaying
5515 * the prompt string, which causes the screen to scroll. To
5516 * counter this, move the cursor up one line before exiting.
5517 */
5518 if (exiting && !p_rs)
5519 coord.Y--;
5520 /*
5521 * Position the cursor at the leftmost column of the desired row.
5522 */
5523 SetConsoleCursorPosition(g_hConOut, coord);
5524 }
5525
5526 g_fTermcapMode = FALSE;
5527}
5528#endif /* FEAT_GUI_W32 */
5529
5530
5531#ifdef FEAT_GUI_W32
5532 void
5533mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005534 char_u *s UNUSED,
5535 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536{
5537 /* never used */
5538}
5539
5540#else
5541
5542/*
5543 * clear `n' chars, starting from `coord'
5544 */
5545 static void
5546clear_chars(
5547 COORD coord,
5548 DWORD n)
5549{
5550 DWORD dwDummy;
5551
5552 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5553 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
5554}
5555
5556
5557/*
5558 * Clear the screen
5559 */
5560 static void
5561clear_screen(void)
5562{
5563 g_coord.X = g_coord.Y = 0;
5564 clear_chars(g_coord, Rows * Columns);
5565}
5566
5567
5568/*
5569 * Clear to end of display
5570 */
5571 static void
5572clear_to_end_of_display(void)
5573{
5574 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5575 * Columns + (Columns - g_coord.X));
5576}
5577
5578
5579/*
5580 * Clear to end of line
5581 */
5582 static void
5583clear_to_end_of_line(void)
5584{
5585 clear_chars(g_coord, Columns - g_coord.X);
5586}
5587
5588
5589/*
5590 * Scroll the scroll region up by `cLines' lines
5591 */
5592 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005593scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594{
5595 COORD oldcoord = g_coord;
5596
5597 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5598 delete_lines(cLines);
5599
5600 g_coord = oldcoord;
5601}
5602
5603
5604/*
5605 * Set the scroll region
5606 */
5607 static void
5608set_scroll_region(
5609 unsigned left,
5610 unsigned top,
5611 unsigned right,
5612 unsigned bottom)
5613{
5614 if (left >= right
5615 || top >= bottom
5616 || right > (unsigned) Columns - 1
5617 || bottom > (unsigned) Rows - 1)
5618 return;
5619
5620 g_srScrollRegion.Left = left;
5621 g_srScrollRegion.Top = top;
5622 g_srScrollRegion.Right = right;
5623 g_srScrollRegion.Bottom = bottom;
5624}
5625
5626
5627/*
5628 * Insert `cLines' lines at the current cursor position
5629 */
5630 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005631insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632{
5633 SMALL_RECT source;
5634 COORD dest;
5635 CHAR_INFO fill;
5636
5637 dest.X = 0;
5638 dest.Y = g_coord.Y + cLines;
5639
5640 source.Left = 0;
5641 source.Top = g_coord.Y;
5642 source.Right = g_srScrollRegion.Right;
5643 source.Bottom = g_srScrollRegion.Bottom - cLines;
5644
5645 fill.Char.AsciiChar = ' ';
5646 fill.Attributes = g_attrCurrent;
5647
5648 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5649
5650 /* Here we have to deal with a win32 console flake: If the scroll
5651 * region looks like abc and we scroll c to a and fill with d we get
5652 * cbd... if we scroll block c one line at a time to a, we get cdd...
5653 * vim expects cdd consistently... So we have to deal with that
5654 * here... (this also occurs scrolling the same way in the other
5655 * direction). */
5656
5657 if (source.Bottom < dest.Y)
5658 {
5659 COORD coord;
5660
5661 coord.X = 0;
5662 coord.Y = source.Bottom;
5663 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5664 }
5665}
5666
5667
5668/*
5669 * Delete `cLines' lines at the current cursor position
5670 */
5671 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005672delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673{
5674 SMALL_RECT source;
5675 COORD dest;
5676 CHAR_INFO fill;
5677 int nb;
5678
5679 dest.X = 0;
5680 dest.Y = g_coord.Y;
5681
5682 source.Left = 0;
5683 source.Top = g_coord.Y + cLines;
5684 source.Right = g_srScrollRegion.Right;
5685 source.Bottom = g_srScrollRegion.Bottom;
5686
5687 fill.Char.AsciiChar = ' ';
5688 fill.Attributes = g_attrCurrent;
5689
5690 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5691
5692 /* Here we have to deal with a win32 console flake: If the scroll
5693 * region looks like abc and we scroll c to a and fill with d we get
5694 * cbd... if we scroll block c one line at a time to a, we get cdd...
5695 * vim expects cdd consistently... So we have to deal with that
5696 * here... (this also occurs scrolling the same way in the other
5697 * direction). */
5698
5699 nb = dest.Y + (source.Bottom - source.Top) + 1;
5700
5701 if (nb < source.Top)
5702 {
5703 COORD coord;
5704
5705 coord.X = 0;
5706 coord.Y = nb;
5707 clear_chars(coord, Columns * (source.Top - nb));
5708 }
5709}
5710
5711
5712/*
5713 * Set the cursor position
5714 */
5715 static void
5716gotoxy(
5717 unsigned x,
5718 unsigned y)
5719{
5720 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5721 return;
5722
5723 /* external cursor coords are 1-based; internal are 0-based */
5724 g_coord.X = x - 1;
5725 g_coord.Y = y - 1;
5726 SetConsoleCursorPosition(g_hConOut, g_coord);
5727}
5728
5729
5730/*
5731 * Set the current text attribute = (foreground | background)
5732 * See ../doc/os_win32.txt for the numbers.
5733 */
5734 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005735textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005737 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738
5739 SetConsoleTextAttribute(g_hConOut, wAttr);
5740}
5741
5742
5743 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005744textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005746 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747
5748 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5749}
5750
5751
5752 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005753textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005755 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756
5757 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5758}
5759
5760
5761/*
5762 * restore the default text attribute (whatever we started with)
5763 */
5764 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005765normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766{
5767 textattr(g_attrDefault);
5768}
5769
5770
5771static WORD g_attrPreStandout = 0;
5772
5773/*
5774 * Make the text standout, by brightening it
5775 */
5776 static void
5777standout(void)
5778{
5779 g_attrPreStandout = g_attrCurrent;
5780 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5781}
5782
5783
5784/*
5785 * Turn off standout mode
5786 */
5787 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005788standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789{
5790 if (g_attrPreStandout)
5791 {
5792 textattr(g_attrPreStandout);
5793 g_attrPreStandout = 0;
5794 }
5795}
5796
5797
5798/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005799 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800 */
5801 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005802mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803{
5804 char_u *p;
5805 int n;
5806
5807 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5808 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5809 if (T_ME[0] == ESC && T_ME[1] == '|')
5810 {
5811 p = T_ME + 2;
5812 n = getdigits(&p);
5813 if (*p == 'm' && n > 0)
5814 {
5815 cterm_normal_fg_color = (n & 0xf) + 1;
5816 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5817 }
5818 }
5819}
5820
5821
5822/*
5823 * visual bell: flash the screen
5824 */
5825 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005826visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827{
5828 COORD coordOrigin = {0, 0};
5829 WORD attrFlash = ~g_attrCurrent & 0xff;
5830
5831 DWORD dwDummy;
5832 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5833
5834 if (oldattrs == NULL)
5835 return;
5836 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5837 coordOrigin, &dwDummy);
5838 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5839 coordOrigin, &dwDummy);
5840
5841 Sleep(15); /* wait for 15 msec */
5842 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5843 coordOrigin, &dwDummy);
5844 vim_free(oldattrs);
5845}
5846
5847
5848/*
5849 * Make the cursor visible or invisible
5850 */
5851 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005852cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853{
5854 s_cursor_visible = fVisible;
5855#ifdef MCH_CURSOR_SHAPE
5856 mch_update_cursor();
5857#endif
5858}
5859
5860
5861/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005862 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005863 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005865 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005867 char_u *pchBuf,
5868 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869{
5870 COORD coord = g_coord;
5871 DWORD written;
5872
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005873#ifdef FEAT_MBYTE
5874 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5875 {
5876 static WCHAR *unicodebuf = NULL;
5877 static int unibuflen = 0;
5878 int length;
5879 DWORD n, cchwritten, cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005881 length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0);
5882 if (unicodebuf == NULL || length > unibuflen)
5883 {
5884 vim_free(unicodebuf);
5885 unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE);
5886 unibuflen = length;
5887 }
5888 MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite,
5889 unicodebuf, unibuflen);
5890
5891 cells = mb_string2cells(pchBuf, cbToWrite);
5892 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
5893 coord, &written);
5894 /* When writing fails or didn't write a single character, pretend one
5895 * character was written, otherwise we get stuck. */
5896 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length,
5897 coord, &cchwritten) == 0
5898 || cchwritten == 0)
5899 cchwritten = 1;
5900
5901 if (cchwritten == length)
5902 {
5903 written = cbToWrite;
5904 g_coord.X += (SHORT)cells;
5905 }
5906 else
5907 {
5908 char_u *p = pchBuf;
5909 for (n = 0; n < cchwritten; n++)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005910 MB_CPTR_ADV(p);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005911 written = p - pchBuf;
5912 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
5913 }
5914 }
5915 else
5916#endif
5917 {
5918 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite,
5919 coord, &written);
5920 /* When writing fails or didn't write a single character, pretend one
5921 * character was written, otherwise we get stuck. */
5922 if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite,
5923 coord, &written) == 0
5924 || written == 0)
5925 written = 1;
5926
5927 g_coord.X += (SHORT) written;
5928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929
5930 while (g_coord.X > g_srScrollRegion.Right)
5931 {
5932 g_coord.X -= (SHORT) Columns;
5933 if (g_coord.Y < g_srScrollRegion.Bottom)
5934 g_coord.Y++;
5935 }
5936
5937 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5938
5939 return written;
5940}
5941
5942
5943/*
5944 * mch_write(): write the output buffer to the screen, translating ESC
5945 * sequences into calls to console output routines.
5946 */
5947 void
5948mch_write(
5949 char_u *s,
5950 int len)
5951{
5952 s[len] = NUL;
5953
5954 if (!term_console)
5955 {
5956 write(1, s, (unsigned)len);
5957 return;
5958 }
5959
5960 /* translate ESC | sequences into faked bios calls */
5961 while (len--)
5962 {
5963 /* optimization: use one single write_chars for runs of text,
5964 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005965 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966
5967 if (p_wd)
5968 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005969 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 if (prefix != 0)
5971 prefix = 1;
5972 }
5973
5974 if (prefix != 0)
5975 {
5976 DWORD nWritten;
5977
5978 nWritten = write_chars(s, prefix);
5979#ifdef MCH_WRITE_DUMP
5980 if (fdDump)
5981 {
5982 fputc('>', fdDump);
5983 fwrite(s, sizeof(char_u), nWritten, fdDump);
5984 fputs("<\n", fdDump);
5985 }
5986#endif
5987 len -= (nWritten - 1);
5988 s += nWritten;
5989 }
5990 else if (s[0] == '\n')
5991 {
5992 /* \n, newline: go to the beginning of the next line or scroll */
5993 if (g_coord.Y == g_srScrollRegion.Bottom)
5994 {
5995 scroll(1);
5996 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
5997 }
5998 else
5999 {
6000 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6001 }
6002#ifdef MCH_WRITE_DUMP
6003 if (fdDump)
6004 fputs("\\n\n", fdDump);
6005#endif
6006 s++;
6007 }
6008 else if (s[0] == '\r')
6009 {
6010 /* \r, carriage return: go to beginning of line */
6011 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
6012#ifdef MCH_WRITE_DUMP
6013 if (fdDump)
6014 fputs("\\r\n", fdDump);
6015#endif
6016 s++;
6017 }
6018 else if (s[0] == '\b')
6019 {
6020 /* \b, backspace: move cursor one position left */
6021 if (g_coord.X > g_srScrollRegion.Left)
6022 g_coord.X--;
6023 else if (g_coord.Y > g_srScrollRegion.Top)
6024 {
6025 g_coord.X = g_srScrollRegion.Right;
6026 g_coord.Y--;
6027 }
6028 gotoxy(g_coord.X + 1, g_coord.Y + 1);
6029#ifdef MCH_WRITE_DUMP
6030 if (fdDump)
6031 fputs("\\b\n", fdDump);
6032#endif
6033 s++;
6034 }
6035 else if (s[0] == '\a')
6036 {
6037 /* \a, bell */
6038 MessageBeep(0xFFFFFFFF);
6039#ifdef MCH_WRITE_DUMP
6040 if (fdDump)
6041 fputs("\\a\n", fdDump);
6042#endif
6043 s++;
6044 }
6045 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6046 {
6047#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006048 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006050 char_u *p;
6051 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052
6053 switch (s[2])
6054 {
6055 /* one or two numeric arguments, separated by ';' */
6056
6057 case '0': case '1': case '2': case '3': case '4':
6058 case '5': case '6': case '7': case '8': case '9':
6059 p = s + 2;
6060 arg1 = getdigits(&p); /* no check for length! */
6061 if (p > s + len)
6062 break;
6063
6064 if (*p == ';')
6065 {
6066 ++p;
6067 arg2 = getdigits(&p); /* no check for length! */
6068 if (p > s + len)
6069 break;
6070
6071 if (*p == 'H')
6072 gotoxy(arg2, arg1);
6073 else if (*p == 'r')
6074 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6075 }
6076 else if (*p == 'A')
6077 {
6078 /* move cursor up arg1 lines in same column */
6079 gotoxy(g_coord.X + 1,
6080 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6081 }
6082 else if (*p == 'C')
6083 {
6084 /* move cursor right arg1 columns in same line */
6085 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6086 g_coord.Y + 1);
6087 }
6088 else if (*p == 'H')
6089 {
6090 gotoxy(1, arg1);
6091 }
6092 else if (*p == 'L')
6093 {
6094 insert_lines(arg1);
6095 }
6096 else if (*p == 'm')
6097 {
6098 if (arg1 == 0)
6099 normvideo();
6100 else
6101 textattr((WORD) arg1);
6102 }
6103 else if (*p == 'f')
6104 {
6105 textcolor((WORD) arg1);
6106 }
6107 else if (*p == 'b')
6108 {
6109 textbackground((WORD) arg1);
6110 }
6111 else if (*p == 'M')
6112 {
6113 delete_lines(arg1);
6114 }
6115
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006116 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 s = p + 1;
6118 break;
6119
6120
6121 /* Three-character escape sequences */
6122
6123 case 'A':
6124 /* move cursor up one line in same column */
6125 gotoxy(g_coord.X + 1,
6126 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6127 goto got3;
6128
6129 case 'B':
6130 visual_bell();
6131 goto got3;
6132
6133 case 'C':
6134 /* move cursor right one column in same line */
6135 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6136 g_coord.Y + 1);
6137 goto got3;
6138
6139 case 'E':
6140 termcap_mode_end();
6141 goto got3;
6142
6143 case 'F':
6144 standout();
6145 goto got3;
6146
6147 case 'f':
6148 standend();
6149 goto got3;
6150
6151 case 'H':
6152 gotoxy(1, 1);
6153 goto got3;
6154
6155 case 'j':
6156 clear_to_end_of_display();
6157 goto got3;
6158
6159 case 'J':
6160 clear_screen();
6161 goto got3;
6162
6163 case 'K':
6164 clear_to_end_of_line();
6165 goto got3;
6166
6167 case 'L':
6168 insert_lines(1);
6169 goto got3;
6170
6171 case 'M':
6172 delete_lines(1);
6173 goto got3;
6174
6175 case 'S':
6176 termcap_mode_start();
6177 goto got3;
6178
6179 case 'V':
6180 cursor_visible(TRUE);
6181 goto got3;
6182
6183 case 'v':
6184 cursor_visible(FALSE);
6185 goto got3;
6186
6187 got3:
6188 s += 3;
6189 len -= 2;
6190 }
6191
6192#ifdef MCH_WRITE_DUMP
6193 if (fdDump)
6194 {
6195 fputs("ESC | ", fdDump);
6196 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6197 fputc('\n', fdDump);
6198 }
6199#endif
6200 }
6201 else
6202 {
6203 /* Write a single character */
6204 DWORD nWritten;
6205
6206 nWritten = write_chars(s, 1);
6207#ifdef MCH_WRITE_DUMP
6208 if (fdDump)
6209 {
6210 fputc('>', fdDump);
6211 fwrite(s, sizeof(char_u), nWritten, fdDump);
6212 fputs("<\n", fdDump);
6213 }
6214#endif
6215
6216 len -= (nWritten - 1);
6217 s += nWritten;
6218 }
6219 }
6220
6221#ifdef MCH_WRITE_DUMP
6222 if (fdDump)
6223 fflush(fdDump);
6224#endif
6225}
6226
6227#endif /* FEAT_GUI_W32 */
6228
6229
6230/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006231 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 */
6233 void
6234mch_delay(
6235 long msec,
Bram Moolenaar1266d672017-02-01 13:43:36 +01006236 int ignoreinput UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237{
6238#ifdef FEAT_GUI_W32
6239 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006240#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006242# ifdef FEAT_MZSCHEME
6243 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6244 {
6245 int towait = p_mzq;
6246
6247 /* if msec is large enough, wait by portions in p_mzq */
6248 while (msec > 0)
6249 {
6250 mzvim_check_threads();
6251 if (msec < towait)
6252 towait = msec;
6253 Sleep(towait);
6254 msec -= towait;
6255 }
6256 }
6257 else
6258# endif
6259 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006261 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262#endif
6263}
6264
6265
6266/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006267 * This version of remove is not scared by a readonly (backup) file.
6268 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269 * Return 0 for success, -1 for failure.
6270 */
6271 int
6272mch_remove(char_u *name)
6273{
6274#ifdef FEAT_MBYTE
6275 WCHAR *wn = NULL;
6276 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006277#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278
Bram Moolenaar203258c2016-01-17 22:15:16 +01006279 /*
6280 * On Windows, deleting a directory's symbolic link is done by
6281 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6282 */
6283 if (mch_isdir(name) && mch_is_symbolic_link(name))
6284 return mch_rmdir(name);
6285
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006286 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6287
6288#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6290 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006291 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 if (wn != NULL)
6293 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 n = DeleteFileW(wn) ? 0 : -1;
6295 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006296 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297 }
6298 }
6299#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006300 return DeleteFile((LPCSTR)name) ? 0 : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301}
6302
6303
6304/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006305 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 */
6307 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006308mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309{
6310#ifndef FEAT_GUI_W32 /* never used */
6311 if (g_fCtrlCPressed || g_fCBrkPressed)
6312 {
Bram Moolenaar9698ad72017-08-12 14:52:15 +02006313 ctrl_break_was_pressed = g_fCBrkPressed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6315 got_int = TRUE;
6316 }
6317#endif
6318}
6319
Bram Moolenaaree273972016-01-02 21:11:51 +01006320/* physical RAM to leave for the OS */
6321#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006322
6323/*
6324 * How much main memory in KiB that can be used by VIM.
6325 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006326 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006327mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006328{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006329 MEMORYSTATUSEX ms;
6330
Bram Moolenaaree273972016-01-02 21:11:51 +01006331 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006332 /* Need to use GlobalMemoryStatusEx() when there is more memory than
6333 * what fits in 32 bits. But it's not always available. */
6334 ms.dwLength = sizeof(MEMORYSTATUSEX);
6335 GlobalMemoryStatusEx(&ms);
6336 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006337 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006338 /* Process address space fits in physical RAM, use all of it. */
6339 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006340 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006341 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006342 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006343 /* Catch old NT box or perverse hardware setup. */
6344 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006345 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006346 /* Use physical RAM less reserve for OS + data. */
6347 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006348}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350#ifdef FEAT_MBYTE
6351/*
6352 * Same code as below, but with wide functions and no comments.
6353 * Return 0 for success, non-zero for failure.
6354 */
6355 int
6356mch_wrename(WCHAR *wold, WCHAR *wnew)
6357{
6358 WCHAR *p;
6359 int i;
6360 WCHAR szTempFile[_MAX_PATH + 1];
6361 WCHAR szNewPath[_MAX_PATH + 1];
6362 HANDLE hf;
6363
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006364 p = wold;
6365 for (i = 0; wold[i] != NUL; ++i)
6366 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6367 && wold[i + 1] != 0)
6368 p = wold + i + 1;
6369 if ((int)(wold + i - p) < 8 || p[6] != '~')
6370 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371
6372 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
6373 return -1;
6374 *p = NUL;
6375
6376 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
6377 return -2;
6378
6379 if (!DeleteFileW(szTempFile))
6380 return -3;
6381
6382 if (!MoveFileW(wold, szTempFile))
6383 return -4;
6384
6385 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6386 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6387 return -5;
6388 if (!CloseHandle(hf))
6389 return -6;
6390
6391 if (!MoveFileW(szTempFile, wnew))
6392 {
6393 (void)MoveFileW(szTempFile, wold);
6394 return -7;
6395 }
6396
6397 DeleteFileW(szTempFile);
6398
6399 if (!DeleteFileW(wold))
6400 return -8;
6401
6402 return 0;
6403}
6404#endif
6405
6406
6407/*
6408 * mch_rename() works around a bug in rename (aka MoveFile) in
6409 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6410 * file whose short file name is "FOO.BAR" (its long file name will
6411 * be correct: "foo.bar~"). Because a file can be accessed by
6412 * either its SFN or its LFN, "foo.bar" has effectively been
6413 * renamed to "foo.bar", which is not at all what was wanted. This
6414 * seems to happen only when renaming files with three-character
6415 * extensions by appending a suffix that does not include ".".
6416 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6417 *
6418 * There is another problem, which isn't really a bug but isn't right either:
6419 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6420 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6421 * service pack 6. Doesn't seem to happen on Windows 98.
6422 *
6423 * Like rename(), returns 0 upon success, non-zero upon failure.
6424 * Should probably set errno appropriately when errors occur.
6425 */
6426 int
6427mch_rename(
6428 const char *pszOldFile,
6429 const char *pszNewFile)
6430{
6431 char szTempFile[_MAX_PATH+1];
6432 char szNewPath[_MAX_PATH+1];
6433 char *pszFilePart;
6434 HANDLE hf;
6435#ifdef FEAT_MBYTE
6436 WCHAR *wold = NULL;
6437 WCHAR *wnew = NULL;
6438 int retval = -1;
6439
6440 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6441 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006442 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6443 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 if (wold != NULL && wnew != NULL)
6445 retval = mch_wrename(wold, wnew);
6446 vim_free(wold);
6447 vim_free(wnew);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006448 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 }
6450#endif
6451
6452 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006453 * No need to play tricks unless the file name contains a "~" as the
6454 * seventh character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006456 pszFilePart = (char *)gettail((char_u *)pszOldFile);
6457 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
6458 return rename(pszOldFile, pszNewFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459
6460 /* Get base path of new file name. Undocumented feature: If pszNewFile is
6461 * a directory, no error is returned and pszFilePart will be NULL. */
6462 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
6463 || pszFilePart == NULL)
6464 return -1;
6465 *pszFilePart = NUL;
6466
6467 /* Get (and create) a unique temporary file name in directory of new file */
6468 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
6469 return -2;
6470
6471 /* blow the temp file away */
6472 if (!DeleteFile(szTempFile))
6473 return -3;
6474
6475 /* rename old file to the temp file */
6476 if (!MoveFile(pszOldFile, szTempFile))
6477 return -4;
6478
6479 /* now create an empty file called pszOldFile; this prevents the operating
6480 * system using pszOldFile as an alias (SFN) if we're renaming within the
6481 * same directory. For example, we're editing a file called
6482 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6483 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
6484 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006485 * cause all sorts of problems later in buf_write(). So, we create an
6486 * empty file called filena~1.txt and the system will have to find some
6487 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 */
6489 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6490 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6491 return -5;
6492 if (!CloseHandle(hf))
6493 return -6;
6494
6495 /* rename the temp file to the new file */
6496 if (!MoveFile(szTempFile, pszNewFile))
6497 {
6498 /* Renaming failed. Rename the file back to its old name, so that it
6499 * looks like nothing happened. */
6500 (void)MoveFile(szTempFile, pszOldFile);
6501
6502 return -7;
6503 }
6504
6505 /* Seems to be left around on Novell filesystems */
6506 DeleteFile(szTempFile);
6507
6508 /* finally, remove the empty old file */
6509 if (!DeleteFile(pszOldFile))
6510 return -8;
6511
6512 return 0; /* success */
6513}
6514
6515/*
6516 * Get the default shell for the current hardware platform
6517 */
6518 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006519default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 PlatformId();
6522
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006523 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524}
6525
6526/*
6527 * mch_access() extends access() to do more detailed check on network drives.
6528 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6529 */
6530 int
6531mch_access(char *n, int p)
6532{
6533 HANDLE hFile;
6534 DWORD am;
6535 int retval = -1; /* default: fail */
6536#ifdef FEAT_MBYTE
6537 WCHAR *wn = NULL;
6538
6539 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006540 wn = enc_to_utf16((char_u *)n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541#endif
6542
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006543 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544 {
6545 char TempName[_MAX_PATH + 16] = "";
6546#ifdef FEAT_MBYTE
6547 WCHAR TempNameW[_MAX_PATH + 16] = L"";
6548#endif
6549
6550 if (p & R_OK)
6551 {
6552 /* Read check is performed by seeing if we can do a find file on
6553 * the directory for any file. */
6554#ifdef FEAT_MBYTE
6555 if (wn != NULL)
6556 {
6557 int i;
6558 WIN32_FIND_DATAW d;
6559
6560 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
6561 TempNameW[i] = wn[i];
6562 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
6563 TempNameW[i++] = '\\';
6564 TempNameW[i++] = '*';
6565 TempNameW[i++] = 0;
6566
6567 hFile = FindFirstFileW(TempNameW, &d);
6568 if (hFile == INVALID_HANDLE_VALUE)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006569 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570 else
6571 (void)FindClose(hFile);
6572 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006573 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574#endif
6575 {
6576 char *pch;
6577 WIN32_FIND_DATA d;
6578
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006579 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 pch = TempName + STRLEN(TempName) - 1;
6581 if (*pch != '\\' && *pch != '/')
6582 *++pch = '\\';
6583 *++pch = '*';
6584 *++pch = NUL;
6585
6586 hFile = FindFirstFile(TempName, &d);
6587 if (hFile == INVALID_HANDLE_VALUE)
6588 goto getout;
6589 (void)FindClose(hFile);
6590 }
6591 }
6592
6593 if (p & W_OK)
6594 {
6595 /* Trying to create a temporary file in the directory should catch
6596 * directories on read-only network shares. However, in
6597 * directories whose ACL allows writes but denies deletes will end
6598 * up keeping the temporary file :-(. */
6599#ifdef FEAT_MBYTE
6600 if (wn != NULL)
6601 {
6602 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006603 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 else
6605 DeleteFileW(TempNameW);
6606 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006607 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608#endif
6609 {
6610 if (!GetTempFileName(n, "VIM", 0, TempName))
6611 goto getout;
6612 mch_remove((char_u *)TempName);
6613 }
6614 }
6615 }
6616 else
6617 {
6618 /* Trying to open the file for the required access does ACL, read-only
6619 * network share, and file attribute checks. */
6620 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6621 | ((p & R_OK) ? GENERIC_READ : 0);
6622#ifdef FEAT_MBYTE
6623 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006625 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626#endif
6627 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6628 if (hFile == INVALID_HANDLE_VALUE)
6629 goto getout;
6630 CloseHandle(hFile);
6631 }
6632
6633 retval = 0; /* success */
6634getout:
6635#ifdef FEAT_MBYTE
6636 vim_free(wn);
6637#endif
6638 return retval;
6639}
6640
6641#if defined(FEAT_MBYTE) || defined(PROTO)
6642/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006643 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644 */
6645 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02006646mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006648 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6649# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006650 WCHAR *wn;
6651 int f;
6652
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006653 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006655 wn = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656 if (wn != NULL)
6657 {
6658 f = _wopen(wn, flags, mode);
6659 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006660 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 }
6662 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006663# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006664
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006665 /* open() can open a file which name is longer than _MAX_PATH bytes
6666 * and shorter than _MAX_PATH characters successfully, but sometimes it
6667 * causes unexpected error in another part. We make it an error explicitly
6668 * here. */
6669 if (strlen(name) >= _MAX_PATH)
6670 return -1;
6671
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 return open(name, flags, mode);
6673}
6674
6675/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006676 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677 */
6678 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02006679mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006680{
6681 WCHAR *wn, *wm;
6682 FILE *f = NULL;
6683
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006684 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006686# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006687 /* Work around an annoying assertion in the Microsoft debug CRT
6688 * when mode's text/binary setting doesn't match _get_fmode(). */
6689 char newMode = mode[strlen(mode) - 1];
6690 int oldMode = 0;
6691
6692 _get_fmode(&oldMode);
6693 if (newMode == 't')
6694 _set_fmode(_O_TEXT);
6695 else if (newMode == 'b')
6696 _set_fmode(_O_BINARY);
6697# endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006698 wn = enc_to_utf16((char_u *)name, NULL);
6699 wm = enc_to_utf16((char_u *)mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006700 if (wn != NULL && wm != NULL)
6701 f = _wfopen(wn, wm);
6702 vim_free(wn);
6703 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006704
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006705# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006706 _set_fmode(oldMode);
6707# endif
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006708 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709 }
6710
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006711 /* fopen() can open a file which name is longer than _MAX_PATH bytes
6712 * and shorter than _MAX_PATH characters successfully, but sometimes it
6713 * causes unexpected error in another part. We make it an error explicitly
6714 * here. */
6715 if (strlen(name) >= _MAX_PATH)
6716 return NULL;
6717
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 return fopen(name, mode);
6719}
6720#endif
6721
6722#ifdef FEAT_MBYTE
6723/*
6724 * SUB STREAM (aka info stream) handling:
6725 *
6726 * NTFS can have sub streams for each file. Normal contents of file is
6727 * stored in the main stream, and extra contents (author information and
6728 * title and so on) can be stored in sub stream. After Windows 2000, user
6729 * can access and store those informations in sub streams via explorer's
6730 * property menuitem in right click menu. Those informations in sub streams
6731 * were lost when copying only the main stream. So we have to copy sub
6732 * streams.
6733 *
6734 * Incomplete explanation:
6735 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6736 * More useful info and an example:
6737 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6738 */
6739
6740/*
6741 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6742 * and write to stream "substream" of file "to".
6743 * Errors are ignored.
6744 */
6745 static void
6746copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6747{
6748 HANDLE hTo;
6749 WCHAR *to_name;
6750
6751 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6752 wcscpy(to_name, to);
6753 wcscat(to_name, substream);
6754
6755 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6756 FILE_ATTRIBUTE_NORMAL, NULL);
6757 if (hTo != INVALID_HANDLE_VALUE)
6758 {
6759 long done;
6760 DWORD todo;
6761 DWORD readcnt, written;
6762 char buf[4096];
6763
6764 /* Copy block of bytes at a time. Abort when something goes wrong. */
6765 for (done = 0; done < len; done += written)
6766 {
6767 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006768 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6769 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6771 FALSE, FALSE, context)
6772 || readcnt != todo
6773 || !WriteFile(hTo, buf, todo, &written, NULL)
6774 || written != todo)
6775 break;
6776 }
6777 CloseHandle(hTo);
6778 }
6779
6780 free(to_name);
6781}
6782
6783/*
6784 * Copy info streams from file "from" to file "to".
6785 */
6786 static void
6787copy_infostreams(char_u *from, char_u *to)
6788{
6789 WCHAR *fromw;
6790 WCHAR *tow;
6791 HANDLE sh;
6792 WIN32_STREAM_ID sid;
6793 int headersize;
6794 WCHAR streamname[_MAX_PATH];
6795 DWORD readcount;
6796 void *context = NULL;
6797 DWORD lo, hi;
6798 int len;
6799
6800 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006801 fromw = enc_to_utf16(from, NULL);
6802 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803 if (fromw != NULL && tow != NULL)
6804 {
6805 /* Open the file for reading. */
6806 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6807 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6808 if (sh != INVALID_HANDLE_VALUE)
6809 {
6810 /* Use BackupRead() to find the info streams. Repeat until we
6811 * have done them all.*/
6812 for (;;)
6813 {
6814 /* Get the header to find the length of the stream name. If
6815 * the "readcount" is zero we have done all info streams. */
6816 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006817 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6819 &readcount, FALSE, FALSE, &context)
6820 || readcount == 0)
6821 break;
6822
6823 /* We only deal with streams that have a name. The normal
6824 * file data appears to be without a name, even though docs
6825 * suggest it is called "::$DATA". */
6826 if (sid.dwStreamNameSize > 0)
6827 {
6828 /* Read the stream name. */
6829 if (!BackupRead(sh, (LPBYTE)streamname,
6830 sid.dwStreamNameSize,
6831 &readcount, FALSE, FALSE, &context))
6832 break;
6833
6834 /* Copy an info stream with a name ":anything:$DATA".
6835 * Skip "::$DATA", it has no stream name (examples suggest
6836 * it might be used for the normal file contents).
6837 * Note that BackupRead() counts bytes, but the name is in
6838 * wide characters. */
6839 len = readcount / sizeof(WCHAR);
6840 streamname[len] = 0;
6841 if (len > 7 && wcsicmp(streamname + len - 6,
6842 L":$DATA") == 0)
6843 {
6844 streamname[len - 6] = 0;
6845 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006846 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847 }
6848 }
6849
6850 /* Advance to the next stream. We might try seeking too far,
6851 * but BackupSeek() doesn't skip over stream borders, thus
6852 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006853 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 &lo, &hi, &context);
6855 }
6856
6857 /* Clear the context. */
6858 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6859
6860 CloseHandle(sh);
6861 }
6862 }
6863 vim_free(fromw);
6864 vim_free(tow);
6865}
6866#endif
6867
6868/*
6869 * Copy file attributes from file "from" to file "to".
6870 * For Windows NT and later we copy info streams.
6871 * Always returns zero, errors are ignored.
6872 */
6873 int
6874mch_copy_file_attribute(char_u *from, char_u *to)
6875{
6876#ifdef FEAT_MBYTE
6877 /* File streams only work on Windows NT and later. */
6878 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006879 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880#endif
6881 return 0;
6882}
6883
6884#if defined(MYRESETSTKOFLW) || defined(PROTO)
6885/*
6886 * Recreate a destroyed stack guard page in win32.
6887 * Written by Benjamin Peterson.
6888 */
6889
6890/* These magic numbers are from the MS header files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891#define MIN_STACK_WINNT 2
6892
6893/*
6894 * This function does the same thing as _resetstkoflw(), which is only
6895 * available in DevStudio .net and later.
6896 * Returns 0 for failure, 1 for success.
6897 */
6898 int
6899myresetstkoflw(void)
6900{
6901 BYTE *pStackPtr;
6902 BYTE *pGuardPage;
6903 BYTE *pStackBase;
6904 BYTE *pLowestPossiblePage;
6905 MEMORY_BASIC_INFORMATION mbi;
6906 SYSTEM_INFO si;
6907 DWORD nPageSize;
6908 DWORD dummy;
6909
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006911
6912 /* We need to know the system page size. */
6913 GetSystemInfo(&si);
6914 nPageSize = si.dwPageSize;
6915
6916 /* ...and the current stack pointer */
6917 pStackPtr = (BYTE*)_alloca(1);
6918
6919 /* ...and the base of the stack. */
6920 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6921 return 0;
6922 pStackBase = (BYTE*)mbi.AllocationBase;
6923
6924 /* ...and the page thats min_stack_req pages away from stack base; this is
6925 * the lowest page we could use. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006926 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006929 /* We want the first committed page in the stack Start at the stack
6930 * base and move forward through memory until we find a committed block.
6931 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 BYTE *pBlock = pStackBase;
6933
Bram Moolenaara466c992005-07-09 21:03:22 +00006934 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 {
6936 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6937 return 0;
6938
6939 pBlock += mbi.RegionSize;
6940
6941 if (mbi.State & MEM_COMMIT)
6942 break;
6943 }
6944
6945 /* mbi now describes the first committed block in the stack. */
6946 if (mbi.Protect & PAGE_GUARD)
6947 return 1;
6948
6949 /* decide where the guard page should start */
6950 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6951 pGuardPage = pLowestPossiblePage;
6952 else
6953 pGuardPage = (BYTE*)mbi.BaseAddress;
6954
6955 /* allocate the guard page */
6956 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6957 return 0;
6958
6959 /* apply the guard attribute to the page */
6960 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6961 &dummy))
6962 return 0;
6963 }
6964
6965 return 1;
6966}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006967#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006969
6970#if defined(FEAT_MBYTE) || defined(PROTO)
6971/*
6972 * The command line arguments in UCS2
6973 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006974static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006975static LPWSTR *ArglistW = NULL;
6976static int global_argc = 0;
6977static char **global_argv;
6978
6979static int used_file_argc = 0; /* last argument in global_argv[] used
6980 for the argument list. */
6981static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6982 command line arguments added to
6983 the argument list */
6984static int used_file_count = 0; /* nr of entries in used_file_indexes */
6985static int used_file_literal = FALSE; /* take file names literally */
6986static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006987static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006988static int used_alist_count = 0;
6989
6990
6991/*
6992 * Get the command line arguments. Unicode version.
6993 * Returns argc. Zero when something fails.
6994 */
6995 int
6996get_cmd_argsW(char ***argvp)
6997{
6998 char **argv = NULL;
6999 int argc = 0;
7000 int i;
7001
Bram Moolenaar14993322014-09-09 12:25:33 +02007002 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007003 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7004 if (ArglistW != NULL)
7005 {
7006 argv = malloc((nArgsW + 1) * sizeof(char *));
7007 if (argv != NULL)
7008 {
7009 argc = nArgsW;
7010 argv[argc] = NULL;
7011 for (i = 0; i < argc; ++i)
7012 {
7013 int len;
7014
7015 /* Convert each Unicode argument to the current codepage. */
7016 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007017 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007018 (LPSTR *)&argv[i], &len, 0, 0);
7019 if (argv[i] == NULL)
7020 {
7021 /* Out of memory, clear everything. */
7022 while (i > 0)
7023 free(argv[--i]);
7024 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007025 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007026 argc = 0;
7027 }
7028 }
7029 }
7030 }
7031
7032 global_argc = argc;
7033 global_argv = argv;
7034 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007035 {
7036 if (used_file_indexes != NULL)
7037 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007038 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007039 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007040
7041 if (argvp != NULL)
7042 *argvp = argv;
7043 return argc;
7044}
7045
7046 void
7047free_cmd_argsW(void)
7048{
7049 if (ArglistW != NULL)
7050 {
7051 GlobalFree(ArglistW);
7052 ArglistW = NULL;
7053 }
7054}
7055
7056/*
7057 * Remember "name" is an argument that was added to the argument list.
7058 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7059 * is called.
7060 */
7061 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007062used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007063{
7064 int i;
7065
7066 if (used_file_indexes == NULL)
7067 return;
7068 for (i = used_file_argc + 1; i < global_argc; ++i)
7069 if (STRCMP(global_argv[i], name) == 0)
7070 {
7071 used_file_argc = i;
7072 used_file_indexes[used_file_count++] = i;
7073 break;
7074 }
7075 used_file_literal = literal;
7076 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007077 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007078}
7079
7080/*
7081 * Remember the length of the argument list as it was. If it changes then we
7082 * leave it alone when 'encoding' is set.
7083 */
7084 void
7085set_alist_count(void)
7086{
7087 used_alist_count = GARGCOUNT;
7088}
7089
7090/*
7091 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7092 * has been changed while starting up. Use the UCS-2 command line arguments
7093 * and convert them to 'encoding'.
7094 */
7095 void
7096fix_arg_enc(void)
7097{
7098 int i;
7099 int idx;
7100 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007101 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007102
7103 /* Safety checks:
7104 * - if argument count differs between the wide and non-wide argument
7105 * list, something must be wrong.
7106 * - the file name arguments must have been located.
7107 * - the length of the argument list wasn't changed by the user.
7108 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007109 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007110 || ArglistW == NULL
7111 || used_file_indexes == NULL
7112 || used_file_count == 0
7113 || used_alist_count != GARGCOUNT)
7114 return;
7115
Bram Moolenaar86b68352004-12-27 21:59:20 +00007116 /* Remember the buffer numbers for the arguments. */
7117 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
7118 if (fnum_list == NULL)
7119 return; /* out of memory */
7120 for (i = 0; i < GARGCOUNT; ++i)
7121 fnum_list[i] = GARGLIST[i].ae_fnum;
7122
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007123 /* Clear the argument list. Make room for the new arguments. */
7124 alist_clear(&global_alist);
7125 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007126 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007127
7128 for (i = 0; i < used_file_count; ++i)
7129 {
7130 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007131 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007132 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007133 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007134 int literal = used_file_literal;
7135
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007136#ifdef FEAT_DIFF
7137 /* When using diff mode may need to concatenate file name to
7138 * directory name. Just like it's done in main(). */
7139 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7140 && !mch_isdir(alist_name(&GARGLIST[0])))
7141 {
7142 char_u *r;
7143
7144 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7145 if (r != NULL)
7146 {
7147 vim_free(str);
7148 str = r;
7149 }
7150 }
7151#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00007152 /* Re-use the old buffer by renaming it. When not using literal
7153 * names it's done by alist_expand() below. */
7154 if (used_file_literal)
7155 buf_set_name(fnum_list[i], str);
7156
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007157 /* Check backtick literal. backtick literal is already expanded in
7158 * main.c, so this part add str as literal. */
7159 if (literal == FALSE)
7160 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007161 size_t len = STRLEN(str);
7162
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007163 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7164 literal = TRUE;
7165 }
7166 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007167 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007168 }
7169
7170 if (!used_file_literal)
7171 {
7172 /* Now expand wildcards in the arguments. */
7173 /* Temporarily add '(' and ')' to 'isfname'. These are valid
7174 * filename characters but are excluded from 'isfname' to make
7175 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
7176 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007177 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007178 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
7179 }
7180
7181 /* If wildcard expansion failed, we are editing the first file of the
7182 * arglist and there is no file name: Edit the first argument now. */
7183 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7184 {
7185 do_cmdline_cmd((char_u *)":rewind");
7186 if (GARGCOUNT == 1 && used_file_full_path)
7187 (void)vim_chdirfile(alist_name(&GARGLIST[0]));
7188 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007189
7190 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007191}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007192#endif
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007193
7194 int
7195mch_setenv(char *var, char *value, int x)
7196{
7197 char_u *envbuf;
7198
7199 envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2));
7200 if (envbuf == NULL)
7201 return -1;
7202
7203 sprintf((char *)envbuf, "%s=%s", var, value);
7204
7205#ifdef FEAT_MBYTE
7206 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7207 {
7208 WCHAR *p = enc_to_utf16(envbuf, NULL);
7209
7210 vim_free(envbuf);
7211 if (p == NULL)
7212 return -1;
7213 _wputenv(p);
7214# ifdef libintl_wputenv
7215 libintl_wputenv(p);
7216# endif
7217 /* Unlike Un*x systems, we can free the string for _wputenv(). */
7218 vim_free(p);
7219 }
7220 else
7221#endif
7222 {
7223 _putenv((char *)envbuf);
7224# ifdef libintl_putenv
7225 libintl_putenv((char *)envbuf);
7226# endif
7227 /* Unlike Un*x systems, we can free the string for _putenv(). */
7228 vim_free(envbuf);
7229 }
7230
7231 return 0;
7232}