blob: a42df6f29f14a45347f74a57942a74c7f2aa33b5 [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 Moolenaarfeeb4d02017-12-05 15:14:46 +01001819 if (c == K_NUL && (ch2 & 0xff00) != 0)
1820 {
1821 /* fAnsiKey with modifier keys */
1822 typeahead[typeaheadlen + n] = (char_u)ch2;
1823 n++;
1824 }
1825 else
1826 {
1827 typeahead[typeaheadlen + n] = 3;
1828 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
1829 n += 2;
1830 }
Bram Moolenaar45500912014-07-09 20:51:07 +02001831 }
1832
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 /* Use the ALT key to set the 8th bit of the character
1834 * when it's one byte, the 8th bit isn't set yet and not
1835 * using a double-byte encoding (would become a lead
1836 * byte). */
1837 if ((modifiers & MOD_MASK_ALT)
1838 && n == 1
1839 && (typeahead[typeaheadlen] & 0x80) == 0
1840#ifdef FEAT_MBYTE
1841 && !enc_dbcs
1842#endif
1843 )
1844 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001845#ifdef FEAT_MBYTE
1846 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
1847 typeahead + typeaheadlen);
1848#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 typeahead[typeaheadlen] |= 0x80;
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 modifiers &= ~MOD_MASK_ALT;
1852 }
1853
1854 if (modifiers != 0)
1855 {
1856 /* Prepend modifiers to the character. */
1857 mch_memmove(typeahead + typeaheadlen + 3,
1858 typeahead + typeaheadlen, n);
1859 typeahead[typeaheadlen++] = K_SPECIAL;
1860 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
1861 typeahead[typeaheadlen++] = modifiers;
1862 }
1863
1864 typeaheadlen += n;
1865
1866#ifdef MCH_WRITE_DUMP
1867 if (fdDump)
1868 fputc(c, fdDump);
1869#endif
1870 }
1871 }
1872 }
1873
1874#ifdef MCH_WRITE_DUMP
1875 if (fdDump)
1876 {
1877 fputs("]\n", fdDump);
1878 fflush(fdDump);
1879 }
1880#endif
1881
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882theend:
1883 /* Move typeahead to "buf", as much as fits. */
1884 len = 0;
1885 while (len < maxlen && typeaheadlen > 0)
1886 {
1887 buf[len++] = typeahead[0];
1888 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
1889 }
1890 return len;
1891
1892#else /* FEAT_GUI_W32 */
1893 return 0;
1894#endif /* FEAT_GUI_W32 */
1895}
1896
Bram Moolenaar82881492012-11-20 16:53:39 +01001897#ifndef PROTO
1898# ifndef __MINGW32__
1899# include <shellapi.h> /* required for FindExecutable() */
1900# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901#endif
1902
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001903/*
Bram Moolenaar43663192017-03-05 14:29:12 +01001904 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
1905 * If "use_path" is FALSE: Return TRUE if "name" exists.
1906 * When returning TRUE and "path" is not NULL save the path and set "*path" to
1907 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001908 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 static int
Bram Moolenaar43663192017-03-05 14:29:12 +01001911executable_exists(char *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912{
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001913 char *dum;
1914 char fname[_MAX_PATH];
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001915 char *curpath, *newpath;
1916 long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917
Bram Moolenaar43663192017-03-05 14:29:12 +01001918 if (!use_path)
1919 {
Bram Moolenaarf7e894d2017-03-05 19:49:13 +01001920 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01001921 {
1922 if (path != NULL)
Bram Moolenaar066029e2017-03-05 15:19:32 +01001923 {
Bram Moolenaarf7e894d2017-03-05 19:49:13 +01001924 if (mch_isFullName((char_u *)name))
Bram Moolenaar066029e2017-03-05 15:19:32 +01001925 *path = vim_strsave((char_u *)name);
1926 else
1927 *path = FullName_save((char_u *)name, FALSE);
1928 }
Bram Moolenaar43663192017-03-05 14:29:12 +01001929 return TRUE;
1930 }
1931 return FALSE;
1932 }
1933
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001934#ifdef FEAT_MBYTE
1935 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001937 WCHAR *p = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001938 WCHAR fnamew[_MAX_PATH];
1939 WCHAR *dumw;
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001940 WCHAR *wcurpath, *wnewpath;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001941
1942 if (p != NULL)
1943 {
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001944 wcurpath = _wgetenv(L"PATH");
1945 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3)
1946 * sizeof(WCHAR));
1947 if (wnewpath == NULL)
1948 return FALSE;
1949 wcscpy(wnewpath, L".;");
1950 wcscat(wnewpath, wcurpath);
1951 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw);
1952 vim_free(wnewpath);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001953 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001954 if (n == 0)
1955 return FALSE;
1956 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
1957 return FALSE;
1958 if (path != NULL)
1959 *path = utf16_to_enc(fnamew, NULL);
1960 return TRUE;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001963#endif
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001964
1965 curpath = getenv("PATH");
1966 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3));
1967 if (newpath == NULL)
1968 return FALSE;
1969 STRCPY(newpath, ".;");
1970 STRCAT(newpath, curpath);
1971 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum);
1972 vim_free(newpath);
1973 if (n == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001974 return FALSE;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001975 if (mch_isdir((char_u *)fname))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001976 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001977 if (path != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001978 *path = vim_strsave((char_u *)fname);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001979 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980}
1981
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001982#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001983 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001984/*
1985 * Bad parameter handler.
1986 *
1987 * Certain MS CRT functions will intentionally crash when passed invalid
1988 * parameters to highlight possible security holes. Setting this function as
1989 * the bad parameter handler will prevent the crash.
1990 *
1991 * In debug builds the parameters contain CRT information that might help track
1992 * down the source of a problem, but in non-debug builds the arguments are all
1993 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
1994 * worth allowing these to make debugging of issues easier.
1995 */
1996 static void
1997bad_param_handler(const wchar_t *expression,
1998 const wchar_t *function,
1999 const wchar_t *file,
2000 unsigned int line,
2001 uintptr_t pReserved)
2002{
2003}
2004
2005# define SET_INVALID_PARAM_HANDLER \
2006 ((void)_set_invalid_parameter_handler(bad_param_handler))
2007#else
2008# define SET_INVALID_PARAM_HANDLER
2009#endif
2010
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011#ifdef FEAT_GUI_W32
2012
2013/*
2014 * GUI version of mch_init().
2015 */
2016 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002017mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018{
2019#ifndef __MINGW32__
2020 extern int _fmode;
2021#endif
2022
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002023 /* Silently handle invalid parameters to CRT functions */
2024 SET_INVALID_PARAM_HANDLER;
2025
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 /* Let critical errors result in a failure, not in a dialog box. Required
2027 * for the timestamp test to work on removed floppies. */
2028 SetErrorMode(SEM_FAILCRITICALERRORS);
2029
2030 _fmode = O_BINARY; /* we do our own CR-LF translation */
2031
2032 /* Specify window size. Is there a place to get the default from? */
2033 Rows = 25;
2034 Columns = 80;
2035
2036 /* Look for 'vimrun' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 {
2038 char_u vimrun_location[_MAX_PATH + 4];
2039
2040 /* First try in same directory as gvim.exe */
2041 STRCPY(vimrun_location, exe_name);
2042 STRCPY(gettail(vimrun_location), "vimrun.exe");
2043 if (mch_getperm(vimrun_location) >= 0)
2044 {
2045 if (*skiptowhite(vimrun_location) != NUL)
2046 {
2047 /* Enclose path with white space in double quotes. */
2048 mch_memmove(vimrun_location + 1, vimrun_location,
2049 STRLEN(vimrun_location) + 1);
2050 *vimrun_location = '"';
2051 STRCPY(gettail(vimrun_location), "vimrun\" ");
2052 }
2053 else
2054 STRCPY(gettail(vimrun_location), "vimrun ");
2055
2056 vimrun_path = (char *)vim_strsave(vimrun_location);
2057 s_dont_use_vimrun = FALSE;
2058 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002059 else if (executable_exists("vimrun.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 s_dont_use_vimrun = FALSE;
2061
2062 /* Don't give the warning for a missing vimrun.exe right now, but only
2063 * when vimrun was supposed to be used. Don't bother people that do
2064 * not need vimrun.exe. */
2065 if (s_dont_use_vimrun)
2066 need_vimrun_warning = TRUE;
2067 }
2068
2069 /*
2070 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2071 * Otherwise the default "findstr /n" is used.
2072 */
Bram Moolenaar43663192017-03-05 14:29:12 +01002073 if (!executable_exists("findstr.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2075
2076#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002077 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078#endif
2079}
2080
2081
2082#else /* FEAT_GUI_W32 */
2083
2084#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2085#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2086
2087/*
2088 * ClearConsoleBuffer()
2089 * Description:
2090 * Clears the entire contents of the console screen buffer, using the
2091 * specified attribute.
2092 * Returns:
2093 * TRUE on success
2094 */
2095 static BOOL
2096ClearConsoleBuffer(WORD wAttribute)
2097{
2098 CONSOLE_SCREEN_BUFFER_INFO csbi;
2099 COORD coord;
2100 DWORD NumCells, dummy;
2101
2102 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2103 return FALSE;
2104
2105 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2106 coord.X = 0;
2107 coord.Y = 0;
2108 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2109 coord, &dummy))
2110 {
2111 return FALSE;
2112 }
2113 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2114 coord, &dummy))
2115 {
2116 return FALSE;
2117 }
2118
2119 return TRUE;
2120}
2121
2122/*
2123 * FitConsoleWindow()
2124 * Description:
2125 * Checks if the console window will fit within given buffer dimensions.
2126 * Also, if requested, will shrink the window to fit.
2127 * Returns:
2128 * TRUE on success
2129 */
2130 static BOOL
2131FitConsoleWindow(
2132 COORD dwBufferSize,
2133 BOOL WantAdjust)
2134{
2135 CONSOLE_SCREEN_BUFFER_INFO csbi;
2136 COORD dwWindowSize;
2137 BOOL NeedAdjust = FALSE;
2138
2139 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2140 {
2141 /*
2142 * A buffer resize will fail if the current console window does
2143 * not lie completely within that buffer. To avoid this, we might
2144 * have to move and possibly shrink the window.
2145 */
2146 if (csbi.srWindow.Right >= dwBufferSize.X)
2147 {
2148 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2149 if (dwWindowSize.X > dwBufferSize.X)
2150 dwWindowSize.X = dwBufferSize.X;
2151 csbi.srWindow.Right = dwBufferSize.X - 1;
2152 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2153 NeedAdjust = TRUE;
2154 }
2155 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2156 {
2157 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2158 if (dwWindowSize.Y > dwBufferSize.Y)
2159 dwWindowSize.Y = dwBufferSize.Y;
2160 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2161 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2162 NeedAdjust = TRUE;
2163 }
2164 if (NeedAdjust && WantAdjust)
2165 {
2166 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2167 return FALSE;
2168 }
2169 return TRUE;
2170 }
2171
2172 return FALSE;
2173}
2174
2175typedef struct ConsoleBufferStruct
2176{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002177 BOOL IsValid;
2178 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002179 PCHAR_INFO Buffer;
2180 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002181 PSMALL_RECT Regions;
2182 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183} ConsoleBuffer;
2184
2185/*
2186 * SaveConsoleBuffer()
2187 * Description:
2188 * Saves important information about the console buffer, including the
2189 * actual buffer contents. The saved information is suitable for later
2190 * restoration by RestoreConsoleBuffer().
2191 * Returns:
2192 * TRUE if all information was saved; FALSE otherwise
2193 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2194 */
2195 static BOOL
2196SaveConsoleBuffer(
2197 ConsoleBuffer *cb)
2198{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002199 DWORD NumCells;
2200 COORD BufferCoord;
2201 SMALL_RECT ReadRegion;
2202 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002203 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002204
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 if (cb == NULL)
2206 return FALSE;
2207
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002208 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 {
2210 cb->IsValid = FALSE;
2211 return FALSE;
2212 }
2213 cb->IsValid = TRUE;
2214
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002215 /*
2216 * Allocate a buffer large enough to hold the entire console screen
2217 * buffer. If this ConsoleBuffer structure has already been initialized
2218 * with a buffer of the correct size, then just use that one.
2219 */
2220 if (!cb->IsValid || cb->Buffer == NULL ||
2221 cb->BufferSize.X != cb->Info.dwSize.X ||
2222 cb->BufferSize.Y != cb->Info.dwSize.Y)
2223 {
2224 cb->BufferSize.X = cb->Info.dwSize.X;
2225 cb->BufferSize.Y = cb->Info.dwSize.Y;
2226 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2227 vim_free(cb->Buffer);
2228 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2229 if (cb->Buffer == NULL)
2230 return FALSE;
2231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232
2233 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002234 * We will now copy the console screen buffer into our buffer.
2235 * ReadConsoleOutput() seems to be limited as far as how much you
2236 * can read at a time. Empirically, this number seems to be about
2237 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2238 * in chunks until it is all copied. The chunks will all have the
2239 * same horizontal characteristics, so initialize them now. The
2240 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002242 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002243 ReadRegion.Left = 0;
2244 ReadRegion.Right = cb->Info.dwSize.X - 1;
2245 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002246
2247 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2248 if (cb->Regions == NULL || numregions != cb->NumRegions)
2249 {
2250 cb->NumRegions = numregions;
2251 vim_free(cb->Regions);
2252 cb->Regions = (PSMALL_RECT)alloc(cb->NumRegions * sizeof(SMALL_RECT));
2253 if (cb->Regions == NULL)
2254 {
2255 vim_free(cb->Buffer);
2256 cb->Buffer = NULL;
2257 return FALSE;
2258 }
2259 }
2260
2261 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002263 /*
2264 * Read into position (0, Y) in our buffer.
2265 */
2266 BufferCoord.Y = Y;
2267 /*
2268 * Read the region whose top left corner is (0, Y) and whose bottom
2269 * right corner is (width - 1, Y + Y_incr - 1). This should define
2270 * a region of size width by Y_incr. Don't worry if this region is
2271 * too large for the remaining buffer; it will be cropped.
2272 */
2273 ReadRegion.Top = Y;
2274 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002275 if (!ReadConsoleOutputW(g_hConOut, /* output handle */
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002276 cb->Buffer, /* our buffer */
2277 cb->BufferSize, /* dimensions of our buffer */
2278 BufferCoord, /* offset in our buffer */
2279 &ReadRegion)) /* region to save */
2280 {
2281 vim_free(cb->Buffer);
2282 cb->Buffer = NULL;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002283 vim_free(cb->Regions);
2284 cb->Regions = NULL;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002285 return FALSE;
2286 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002287 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 }
2289
2290 return TRUE;
2291}
2292
2293/*
2294 * RestoreConsoleBuffer()
2295 * Description:
2296 * Restores important information about the console buffer, including the
2297 * actual buffer contents, if desired. The information to restore is in
2298 * the same format used by SaveConsoleBuffer().
2299 * Returns:
2300 * TRUE on success
2301 */
2302 static BOOL
2303RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002304 ConsoleBuffer *cb,
2305 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002307 COORD BufferCoord;
2308 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002309 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310
2311 if (cb == NULL || !cb->IsValid)
2312 return FALSE;
2313
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002314 /*
2315 * Before restoring the buffer contents, clear the current buffer, and
2316 * restore the cursor position and window information. Doing this now
2317 * prevents old buffer contents from "flashing" onto the screen.
2318 */
2319 if (RestoreScreen)
2320 ClearConsoleBuffer(cb->Info.wAttributes);
2321
2322 FitConsoleWindow(cb->Info.dwSize, TRUE);
2323 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2324 return FALSE;
2325 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2326 return FALSE;
2327
2328 if (!RestoreScreen)
2329 {
2330 /*
2331 * No need to restore the screen buffer contents, so we're done.
2332 */
2333 return TRUE;
2334 }
2335
2336 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2337 return FALSE;
2338 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2339 return FALSE;
2340
2341 /*
2342 * Restore the screen buffer contents.
2343 */
2344 if (cb->Buffer != NULL)
2345 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002346 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002347 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002348 BufferCoord.X = cb->Regions[i].Left;
2349 BufferCoord.Y = cb->Regions[i].Top;
2350 WriteRegion = cb->Regions[i];
2351 if (!WriteConsoleOutputW(g_hConOut, /* output handle */
2352 cb->Buffer, /* our buffer */
2353 cb->BufferSize, /* dimensions of our buffer */
2354 BufferCoord, /* offset in our buffer */
2355 &WriteRegion)) /* region to restore */
2356 {
2357 return FALSE;
2358 }
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002359 }
2360 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361
2362 return TRUE;
2363}
2364
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002365#define FEAT_RESTORE_ORIG_SCREEN
2366#ifdef FEAT_RESTORE_ORIG_SCREEN
2367static ConsoleBuffer g_cbOrig = { 0 };
2368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369static ConsoleBuffer g_cbNonTermcap = { 0 };
2370static ConsoleBuffer g_cbTermcap = { 0 };
2371
2372#ifdef FEAT_TITLE
2373#ifdef __BORLANDC__
2374typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2375#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002376typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377#endif
2378char g_szOrigTitle[256] = { 0 };
2379HWND g_hWnd = NULL; /* also used in os_mswin.c */
2380static HICON g_hOrigIconSmall = NULL;
2381static HICON g_hOrigIcon = NULL;
2382static HICON g_hVimIcon = NULL;
2383static BOOL g_fCanChangeIcon = FALSE;
2384
2385/* ICON* are not defined in VC++ 4.0 */
2386#ifndef ICON_SMALL
2387#define ICON_SMALL 0
2388#endif
2389#ifndef ICON_BIG
2390#define ICON_BIG 1
2391#endif
2392/*
2393 * GetConsoleIcon()
2394 * Description:
2395 * Attempts to retrieve the small icon and/or the big icon currently in
2396 * use by a given window.
2397 * Returns:
2398 * TRUE on success
2399 */
2400 static BOOL
2401GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002402 HWND hWnd,
2403 HICON *phIconSmall,
2404 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
2406 if (hWnd == NULL)
2407 return FALSE;
2408
2409 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002410 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2411 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002413 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2414 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 return TRUE;
2416}
2417
2418/*
2419 * SetConsoleIcon()
2420 * Description:
2421 * Attempts to change the small icon and/or the big icon currently in
2422 * use by a given window.
2423 * Returns:
2424 * TRUE on success
2425 */
2426 static BOOL
2427SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002428 HWND hWnd,
2429 HICON hIconSmall,
2430 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 if (hWnd == NULL)
2433 return FALSE;
2434
2435 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002436 SendMessage(hWnd, WM_SETICON,
2437 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002439 SendMessage(hWnd, WM_SETICON,
2440 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 return TRUE;
2442}
2443
2444/*
2445 * SaveConsoleTitleAndIcon()
2446 * Description:
2447 * Saves the current console window title in g_szOrigTitle, for later
2448 * restoration. Also, attempts to obtain a handle to the console window,
2449 * and use it to save the small and big icons currently in use by the
2450 * console window. This is not always possible on some versions of Windows;
2451 * nor is it possible when running Vim remotely using Telnet (since the
2452 * console window the user sees is owned by a remote process).
2453 */
2454 static void
2455SaveConsoleTitleAndIcon(void)
2456{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 /* Save the original title. */
2458 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2459 return;
2460
2461 /*
2462 * Obtain a handle to the console window using GetConsoleWindow() from
2463 * KERNEL32.DLL; we need to handle in order to change the window icon.
2464 * This function only exists on NT-based Windows, starting with Windows
2465 * 2000. On older operating systems, we can't change the window icon
2466 * anyway.
2467 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002468 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 if (g_hWnd == NULL)
2470 return;
2471
2472 /* Save the original console window icon. */
2473 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2474 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2475 return;
2476
2477 /* Extract the first icon contained in the Vim executable. */
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002478 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002479 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 if (g_hVimIcon != NULL)
2481 g_fCanChangeIcon = TRUE;
2482}
2483#endif
2484
2485static int g_fWindInitCalled = FALSE;
2486static int g_fTermcapMode = FALSE;
2487static CONSOLE_CURSOR_INFO g_cci;
2488static DWORD g_cmodein = 0;
2489static DWORD g_cmodeout = 0;
2490
2491/*
2492 * non-GUI version of mch_init().
2493 */
2494 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002495mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002497#ifndef FEAT_RESTORE_ORIG_SCREEN
2498 CONSOLE_SCREEN_BUFFER_INFO csbi;
2499#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500#ifndef __MINGW32__
2501 extern int _fmode;
2502#endif
2503
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002504 /* Silently handle invalid parameters to CRT functions */
2505 SET_INVALID_PARAM_HANDLER;
2506
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 /* Let critical errors result in a failure, not in a dialog box. Required
2508 * for the timestamp test to work on removed floppies. */
2509 SetErrorMode(SEM_FAILCRITICALERRORS);
2510
2511 _fmode = O_BINARY; /* we do our own CR-LF translation */
2512 out_flush();
2513
2514 /* Obtain handles for the standard Console I/O devices */
2515 if (read_cmd_fd == 0)
2516 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2517 else
2518 create_conin();
2519 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2520
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002521#ifdef FEAT_RESTORE_ORIG_SCREEN
2522 /* Save the initial console buffer for later restoration */
2523 SaveConsoleBuffer(&g_cbOrig);
2524 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2525#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 /* Get current text attributes */
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002527 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2528 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2529#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 if (cterm_normal_fg_color == 0)
2531 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2532 if (cterm_normal_bg_color == 0)
2533 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2534
2535 /* set termcap codes to current text attributes */
2536 update_tcap(g_attrCurrent);
2537
2538 GetConsoleCursorInfo(g_hConOut, &g_cci);
2539 GetConsoleMode(g_hConIn, &g_cmodein);
2540 GetConsoleMode(g_hConOut, &g_cmodeout);
2541
2542#ifdef FEAT_TITLE
2543 SaveConsoleTitleAndIcon();
2544 /*
2545 * Set both the small and big icons of the console window to Vim's icon.
2546 * Note that Vim presently only has one size of icon (32x32), but it
2547 * automatically gets scaled down to 16x16 when setting the small icon.
2548 */
2549 if (g_fCanChangeIcon)
2550 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2551#endif
2552
2553 ui_get_shellsize();
2554
2555#ifdef MCH_WRITE_DUMP
2556 fdDump = fopen("dump", "wt");
2557
2558 if (fdDump)
2559 {
2560 time_t t;
2561
2562 time(&t);
2563 fputs(ctime(&t), fdDump);
2564 fflush(fdDump);
2565 }
2566#endif
2567
2568 g_fWindInitCalled = TRUE;
2569
2570#ifdef FEAT_MOUSE
2571 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2572#endif
2573
2574#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002575 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577}
2578
2579/*
2580 * non-GUI version of mch_exit().
2581 * Shut down and exit with status `r'
2582 * Careful: mch_exit() may be called before mch_init()!
2583 */
2584 void
2585mch_exit(int r)
2586{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002587 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588
Bram Moolenaar955f1982017-02-05 15:10:51 +01002589 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 if (g_fWindInitCalled)
2591 settmode(TMODE_COOK);
2592
2593 ml_close_all(TRUE); /* remove all memfiles */
2594
2595 if (g_fWindInitCalled)
2596 {
2597#ifdef FEAT_TITLE
2598 mch_restore_title(3);
2599 /*
2600 * Restore both the small and big icons of the console window to
2601 * what they were at startup. Don't do this when the window is
2602 * closed, Vim would hang here.
2603 */
2604 if (g_fCanChangeIcon && !g_fForceExit)
2605 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2606#endif
2607
2608#ifdef MCH_WRITE_DUMP
2609 if (fdDump)
2610 {
2611 time_t t;
2612
2613 time(&t);
2614 fputs(ctime(&t), fdDump);
2615 fclose(fdDump);
2616 }
2617 fdDump = NULL;
2618#endif
2619 }
2620
2621 SetConsoleCursorInfo(g_hConOut, &g_cci);
2622 SetConsoleMode(g_hConIn, g_cmodein);
2623 SetConsoleMode(g_hConOut, g_cmodeout);
2624
2625#ifdef DYNAMIC_GETTEXT
2626 dyn_libintl_end();
2627#endif
2628
2629 exit(r);
2630}
2631#endif /* !FEAT_GUI_W32 */
2632
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633/*
2634 * Do we have an interactive window?
2635 */
2636 int
2637mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002638 int argc UNUSED,
2639 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641 get_exe_name();
2642
2643#ifdef FEAT_GUI_W32
2644 return OK; /* GUI always has a tty */
2645#else
2646 if (isatty(1))
2647 return OK;
2648 return FAIL;
2649#endif
2650}
2651
2652
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002653#ifdef FEAT_MBYTE
2654/*
2655 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2656 * if it already exists. When "len" is > 0, also expand short to long
2657 * filenames.
2658 * Return FAIL if wide functions are not available, OK otherwise.
2659 * NOTE: much of this is identical to fname_case(), keep in sync!
2660 */
2661 static int
2662fname_casew(
2663 WCHAR *name,
2664 int len)
2665{
2666 WCHAR szTrueName[_MAX_PATH + 2];
2667 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2668 WCHAR *ptrue, *ptruePrev;
2669 WCHAR *porig, *porigPrev;
2670 int flen;
2671 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002672 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002673 int c;
2674 int slen;
2675
2676 flen = (int)wcslen(name);
2677 if (flen > _MAX_PATH)
2678 return OK;
2679
2680 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2681
2682 /* Build the new name in szTrueName[] one component at a time. */
2683 porig = name;
2684 ptrue = szTrueName;
2685
2686 if (iswalpha(porig[0]) && porig[1] == L':')
2687 {
2688 /* copy leading drive letter */
2689 *ptrue++ = *porig++;
2690 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002691 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002692 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002693
2694 while (*porig != NUL)
2695 {
2696 /* copy \ characters */
2697 while (*porig == psepc)
2698 *ptrue++ = *porig++;
2699
2700 ptruePrev = ptrue;
2701 porigPrev = porig;
2702 while (*porig != NUL && *porig != psepc)
2703 {
2704 *ptrue++ = *porig++;
2705 }
2706 *ptrue = NUL;
2707
2708 /* To avoid a slow failure append "\*" when searching a directory,
2709 * server or network share. */
2710 wcscpy(szTrueNameTemp, szTrueName);
2711 slen = (int)wcslen(szTrueNameTemp);
2712 if (*porig == psepc && slen + 2 < _MAX_PATH)
2713 wcscpy(szTrueNameTemp + slen, L"\\*");
2714
2715 /* Skip "", "." and "..". */
2716 if (ptrue > ptruePrev
2717 && (ptruePrev[0] != L'.'
2718 || (ptruePrev[1] != NUL
2719 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2720 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2721 != INVALID_HANDLE_VALUE)
2722 {
2723 c = *porig;
2724 *porig = NUL;
2725
2726 /* Only use the match when it's the same name (ignoring case) or
2727 * expansion is allowed and there is a match with the short name
2728 * and there is enough room. */
2729 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2730 || (len > 0
2731 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2732 && (int)(ptruePrev - szTrueName)
2733 + (int)wcslen(fb.cFileName) < len)))
2734 {
2735 wcscpy(ptruePrev, fb.cFileName);
2736
2737 /* Look for exact match and prefer it if found. Must be a
2738 * long name, otherwise there would be only one match. */
2739 while (FindNextFileW(hFind, &fb))
2740 {
2741 if (*fb.cAlternateFileName != NUL
2742 && (wcscoll(porigPrev, fb.cFileName) == 0
2743 || (len > 0
2744 && (_wcsicoll(porigPrev,
2745 fb.cAlternateFileName) == 0
2746 && (int)(ptruePrev - szTrueName)
2747 + (int)wcslen(fb.cFileName) < len))))
2748 {
2749 wcscpy(ptruePrev, fb.cFileName);
2750 break;
2751 }
2752 }
2753 }
2754 FindClose(hFind);
2755 *porig = c;
2756 ptrue = ptruePrev + wcslen(ptruePrev);
2757 }
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002758 }
2759
2760 wcscpy(name, szTrueName);
2761 return OK;
2762}
2763#endif
2764
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765/*
2766 * fname_case(): Set the case of the file name, if it already exists.
2767 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002768 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 */
2770 void
2771fname_case(
2772 char_u *name,
2773 int len)
2774{
2775 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002776 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 char *ptrue, *ptruePrev;
2778 char *porig, *porigPrev;
2779 int flen;
2780 WIN32_FIND_DATA fb;
2781 HANDLE hFind;
2782 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002783 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002785 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002786 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 return;
2788
2789 slash_adjust(name);
2790
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002791#ifdef FEAT_MBYTE
2792 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2793 {
2794 WCHAR *p = enc_to_utf16(name, NULL);
2795
2796 if (p != NULL)
2797 {
2798 char_u *q;
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002799 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002800
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002801 wcsncpy(buf, p, _MAX_PATH);
2802 buf[_MAX_PATH] = L'\0';
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002803 vim_free(p);
2804
2805 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2806 {
2807 q = utf16_to_enc(buf, NULL);
2808 if (q != NULL)
2809 {
2810 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2811 vim_free(q);
2812 return;
2813 }
2814 }
2815 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002816 return;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002817 }
2818#endif
2819
2820 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2821 * So we should check this after calling wide function. */
2822 if (flen > _MAX_PATH)
2823 return;
2824
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 /* Build the new name in szTrueName[] one component at a time. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002826 porig = (char *)name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 ptrue = szTrueName;
2828
2829 if (isalpha(porig[0]) && porig[1] == ':')
2830 {
2831 /* copy leading drive letter */
2832 *ptrue++ = *porig++;
2833 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002835 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836
2837 while (*porig != NUL)
2838 {
2839 /* copy \ characters */
2840 while (*porig == psepc)
2841 *ptrue++ = *porig++;
2842
2843 ptruePrev = ptrue;
2844 porigPrev = porig;
2845 while (*porig != NUL && *porig != psepc)
2846 {
2847#ifdef FEAT_MBYTE
2848 int l;
2849
2850 if (enc_dbcs)
2851 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002852 l = (*mb_ptr2len)((char_u *)porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 while (--l >= 0)
2854 *ptrue++ = *porig++;
2855 }
2856 else
2857#endif
2858 *ptrue++ = *porig++;
2859 }
2860 *ptrue = NUL;
2861
Bram Moolenaar464c9252010-10-13 20:37:41 +02002862 /* To avoid a slow failure append "\*" when searching a directory,
2863 * server or network share. */
2864 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002865 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002866 if (*porig == psepc && slen + 2 < _MAX_PATH)
2867 STRCPY(szTrueNameTemp + slen, "\\*");
2868
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 /* Skip "", "." and "..". */
2870 if (ptrue > ptruePrev
2871 && (ptruePrev[0] != '.'
2872 || (ptruePrev[1] != NUL
2873 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002874 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 != INVALID_HANDLE_VALUE)
2876 {
2877 c = *porig;
2878 *porig = NUL;
2879
2880 /* Only use the match when it's the same name (ignoring case) or
2881 * expansion is allowed and there is a match with the short name
2882 * and there is enough room. */
2883 if (_stricoll(porigPrev, fb.cFileName) == 0
2884 || (len > 0
2885 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2886 && (int)(ptruePrev - szTrueName)
2887 + (int)strlen(fb.cFileName) < len)))
2888 {
2889 STRCPY(ptruePrev, fb.cFileName);
2890
2891 /* Look for exact match and prefer it if found. Must be a
2892 * long name, otherwise there would be only one match. */
2893 while (FindNextFile(hFind, &fb))
2894 {
2895 if (*fb.cAlternateFileName != NUL
2896 && (strcoll(porigPrev, fb.cFileName) == 0
2897 || (len > 0
2898 && (_stricoll(porigPrev,
2899 fb.cAlternateFileName) == 0
2900 && (int)(ptruePrev - szTrueName)
2901 + (int)strlen(fb.cFileName) < len))))
2902 {
2903 STRCPY(ptruePrev, fb.cFileName);
2904 break;
2905 }
2906 }
2907 }
2908 FindClose(hFind);
2909 *porig = c;
2910 ptrue = ptruePrev + strlen(ptruePrev);
2911 }
2912 }
2913
2914 STRCPY(name, szTrueName);
2915}
2916
2917
2918/*
2919 * Insert user name in s[len].
2920 */
2921 int
2922mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002923 char_u *s,
2924 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002926 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 DWORD cch = sizeof szUserName;
2928
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002929#ifdef FEAT_MBYTE
2930 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2931 {
2932 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2933 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2934
2935 if (GetUserNameW(wszUserName, &wcch))
2936 {
2937 char_u *p = utf16_to_enc(wszUserName, NULL);
2938
2939 if (p != NULL)
2940 {
2941 vim_strncpy(s, p, len - 1);
2942 vim_free(p);
2943 return OK;
2944 }
2945 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002946 }
2947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 if (GetUserName(szUserName, &cch))
2949 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002950 vim_strncpy(s, (char_u *)szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 return OK;
2952 }
2953 s[0] = NUL;
2954 return FAIL;
2955}
2956
2957
2958/*
2959 * Insert host name in s[len].
2960 */
2961 void
2962mch_get_host_name(
2963 char_u *s,
2964 int len)
2965{
2966 DWORD cch = len;
2967
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002968#ifdef FEAT_MBYTE
2969 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2970 {
2971 WCHAR wszHostName[256 + 1];
2972 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2973
2974 if (GetComputerNameW(wszHostName, &wcch))
2975 {
2976 char_u *p = utf16_to_enc(wszHostName, NULL);
2977
2978 if (p != NULL)
2979 {
2980 vim_strncpy(s, p, len - 1);
2981 vim_free(p);
2982 return;
2983 }
2984 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002985 }
2986#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002987 if (!GetComputerName((LPSTR)s, &cch))
2988 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989}
2990
2991
2992/*
2993 * return process ID
2994 */
2995 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002996mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
2998 return (long)GetCurrentProcessId();
2999}
3000
3001
3002/*
3003 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3004 * Return OK for success, FAIL for failure.
3005 */
3006 int
3007mch_dirname(
3008 char_u *buf,
3009 int len)
3010{
3011 /*
3012 * Originally this was:
3013 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3014 * But the Win32s known bug list says that getcwd() doesn't work
3015 * so use the Win32 system call instead. <Negri>
3016 */
3017#ifdef FEAT_MBYTE
3018 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3019 {
3020 WCHAR wbuf[_MAX_PATH + 1];
3021
3022 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
3023 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003024 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025
3026 if (p != NULL)
3027 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003028 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 vim_free(p);
3030 return OK;
3031 }
3032 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003033 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 }
3035#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003036 return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037}
3038
3039/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003040 * Get file permissions for "name".
3041 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 */
3043 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003044mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003046 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003047 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003049 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003050 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051}
3052
3053
3054/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003055 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003056 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003057 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 */
3059 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003060mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003062 long n = -1;
3063
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064#ifdef FEAT_MBYTE
3065 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3066 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003067 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068
3069 if (p != NULL)
3070 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003071 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003073 if (n == -1)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003074 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 }
3076 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003077 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003079 n = _chmod((const char *)name, perm);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003080 if (n == -1)
3081 return FAIL;
3082
3083 win32_set_archive(name);
3084
3085 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086}
3087
3088/*
3089 * Set hidden flag for "name".
3090 */
3091 void
3092mch_hide(char_u *name)
3093{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003094 int attrs = win32_getattrs(name);
3095 if (attrs == -1)
3096 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003098 attrs |= FILE_ATTRIBUTE_HIDDEN;
3099 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100}
3101
3102/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003103 * Return TRUE if file "name" exists and is hidden.
3104 */
3105 int
3106mch_ishidden(char_u *name)
3107{
3108 int f = win32_getattrs(name);
3109
3110 if (f == -1)
3111 return FALSE; /* file does not exist at all */
3112
3113 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3114}
3115
3116/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 * return TRUE if "name" is a directory
3118 * return FALSE if "name" is not a directory or upon error
3119 */
3120 int
3121mch_isdir(char_u *name)
3122{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003123 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124
3125 if (f == -1)
3126 return FALSE; /* file does not exist at all */
3127
3128 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3129}
3130
3131/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003132 * return TRUE if "name" is a directory, NOT a symlink to a directory
3133 * return FALSE if "name" is not a directory
3134 * return FALSE for error
3135 */
3136 int
3137mch_isrealdir(char_u *name)
3138{
3139 return mch_isdir(name) && !mch_is_symbolic_link(name);
3140}
3141
3142/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003143 * Create directory "name".
3144 * Return 0 on success, -1 on error.
3145 */
3146 int
3147mch_mkdir(char_u *name)
3148{
3149#ifdef FEAT_MBYTE
3150 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3151 {
3152 WCHAR *p;
3153 int retval;
3154
3155 p = enc_to_utf16(name, NULL);
3156 if (p == NULL)
3157 return -1;
3158 retval = _wmkdir(p);
3159 vim_free(p);
3160 return retval;
3161 }
3162#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003163 return _mkdir((const char *)name);
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003164}
3165
3166/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003167 * Delete directory "name".
3168 * Return 0 on success, -1 on error.
3169 */
3170 int
3171mch_rmdir(char_u *name)
3172{
3173#ifdef FEAT_MBYTE
3174 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3175 {
3176 WCHAR *p;
3177 int retval;
3178
3179 p = enc_to_utf16(name, NULL);
3180 if (p == NULL)
3181 return -1;
3182 retval = _wrmdir(p);
3183 vim_free(p);
3184 return retval;
3185 }
3186#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003187 return _rmdir((const char *)name);
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003188}
3189
3190/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003191 * Return TRUE if file "fname" has more than one link.
3192 */
3193 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003194mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003195{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003196 BY_HANDLE_FILE_INFORMATION info;
3197
3198 return win32_fileinfo(fname, &info) == FILEINFO_OK
3199 && info.nNumberOfLinks > 1;
3200}
3201
3202/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003203 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003204 */
3205 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003206mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003207{
3208 HANDLE hFind;
3209 int res = FALSE;
3210 WIN32_FIND_DATAA findDataA;
3211 DWORD fileFlags = 0, reparseTag = 0;
3212#ifdef FEAT_MBYTE
3213 WCHAR *wn = NULL;
3214 WIN32_FIND_DATAW findDataW;
3215
3216 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003217 wn = enc_to_utf16(name, NULL);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003218 if (wn != NULL)
3219 {
3220 hFind = FindFirstFileW(wn, &findDataW);
3221 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003222 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003223 {
3224 fileFlags = findDataW.dwFileAttributes;
3225 reparseTag = findDataW.dwReserved0;
3226 }
3227 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003228 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003229#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003230 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003231 hFind = FindFirstFile((LPCSTR)name, &findDataA);
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003232 if (hFind != INVALID_HANDLE_VALUE)
3233 {
3234 fileFlags = findDataA.dwFileAttributes;
3235 reparseTag = findDataA.dwReserved0;
3236 }
3237 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003238
3239 if (hFind != INVALID_HANDLE_VALUE)
3240 FindClose(hFind);
3241
3242 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003243 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3244 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003245 res = TRUE;
3246
3247 return res;
3248}
3249
3250/*
3251 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3252 * link.
3253 */
3254 int
3255mch_is_linked(char_u *fname)
3256{
3257 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3258 return TRUE;
3259 return FALSE;
3260}
3261
3262/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003263 * Get the by-handle-file-information for "fname".
3264 * Returns FILEINFO_OK when OK.
3265 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3266 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3267 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3268 */
3269 int
3270win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3271{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003272 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003273 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003274#ifdef FEAT_MBYTE
3275 WCHAR *wn = NULL;
3276
3277 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003278 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003279 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003280 if (wn == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003281 return FILEINFO_ENC_FAIL;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003282 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003283 if (wn != NULL)
3284 {
3285 hFile = CreateFileW(wn, /* file name */
3286 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003287 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003288 NULL, /* security descriptor */
3289 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003290 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003291 NULL); /* handle to template file */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003292 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003293 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003294 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003295#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003296 hFile = CreateFile((LPCSTR)fname, /* file name */
3297 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003298 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003299 NULL, /* security descriptor */
3300 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003301 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003302 NULL); /* handle to template file */
3303
3304 if (hFile != INVALID_HANDLE_VALUE)
3305 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003306 if (GetFileInformationByHandle(hFile, info) != 0)
3307 res = FILEINFO_OK;
3308 else
3309 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003310 CloseHandle(hFile);
3311 }
3312
Bram Moolenaar03f48552006-02-28 23:52:23 +00003313 return res;
3314}
3315
3316/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003317 * get file attributes for `name'
3318 * -1 : error
3319 * else FILE_ATTRIBUTE_* defined in winnt.h
3320 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003321 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003322win32_getattrs(char_u *name)
3323{
3324 int attr;
3325#ifdef FEAT_MBYTE
3326 WCHAR *p = NULL;
3327
3328 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3329 p = enc_to_utf16(name, NULL);
3330
3331 if (p != NULL)
3332 {
3333 attr = GetFileAttributesW(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003334 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003335 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003336 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003337#endif
3338 attr = GetFileAttributes((char *)name);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003339
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003340 return attr;
3341}
3342
3343/*
3344 * set file attributes for `name' to `attrs'
3345 *
3346 * return -1 for failure, 0 otherwise
3347 */
3348 static
3349 int
3350win32_setattrs(char_u *name, int attrs)
3351{
3352 int res;
3353#ifdef FEAT_MBYTE
3354 WCHAR *p = NULL;
3355
3356 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3357 p = enc_to_utf16(name, NULL);
3358
3359 if (p != NULL)
3360 {
3361 res = SetFileAttributesW(p, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003362 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003363 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003364 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003365#endif
3366 res = SetFileAttributes((char *)name, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003367
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003368 return res ? 0 : -1;
3369}
3370
3371/*
3372 * Set archive flag for "name".
3373 */
3374 static
3375 int
3376win32_set_archive(char_u *name)
3377{
3378 int attrs = win32_getattrs(name);
3379 if (attrs == -1)
3380 return -1;
3381
3382 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3383 return win32_setattrs(name, attrs);
3384}
3385
3386/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 * Return TRUE if file or directory "name" is writable (not readonly).
3388 * Strange semantics of Win32: a readonly directory is writable, but you can't
3389 * delete a file. Let's say this means it is writable.
3390 */
3391 int
3392mch_writable(char_u *name)
3393{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003394 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003396 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3397 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398}
3399
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003401 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003402 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003403 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3404 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 */
3406 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003407mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003409 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003410 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003411 char_u *p;
3412
3413 if (len >= _MAX_PATH) /* safety check */
3414 return FALSE;
3415
3416 /* If there already is an extension try using the name directly. Also do
3417 * this with a Unix-shell like 'shell'. */
3418 if (vim_strchr(gettail(name), '.') != NULL
3419 || strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaar43663192017-03-05 14:29:12 +01003420 if (executable_exists((char *)name, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003421 return TRUE;
3422
3423 /*
3424 * Loop over all extensions in $PATHEXT.
3425 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003426 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003427 p = mch_getenv("PATHEXT");
3428 if (p == NULL)
3429 p = (char_u *)".com;.exe;.bat;.cmd";
3430 while (*p)
3431 {
3432 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3433 {
3434 /* A single "." means no extension is added. */
3435 buf[len] = NUL;
3436 ++p;
3437 if (*p)
3438 ++p;
3439 }
3440 else
3441 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
Bram Moolenaar43663192017-03-05 14:29:12 +01003442 if (executable_exists((char *)buf, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003443 return TRUE;
3444 }
3445 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447
3448/*
3449 * Check what "name" is:
3450 * NODE_NORMAL: file or directory (or doesn't exist)
3451 * NODE_WRITABLE: writable device, socket, fifo, etc.
3452 * NODE_OTHER: non-writable things
3453 */
3454 int
3455mch_nodetype(char_u *name)
3456{
3457 HANDLE hFile;
3458 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003459#ifdef FEAT_MBYTE
3460 WCHAR *wn = NULL;
3461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462
Bram Moolenaar043545e2006-10-10 16:44:07 +00003463 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3464 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3465 * here. */
3466 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3467 return NODE_WRITABLE;
3468
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003469#ifdef FEAT_MBYTE
3470 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003471 wn = enc_to_utf16(name, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003472
3473 if (wn != NULL)
3474 {
3475 hFile = CreateFileW(wn, /* file name */
3476 GENERIC_WRITE, /* access mode */
3477 0, /* share mode */
3478 NULL, /* security descriptor */
3479 OPEN_EXISTING, /* creation disposition */
3480 0, /* file attributes */
3481 NULL); /* handle to template file */
3482 vim_free(wn);
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003483 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003484 else
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003485#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003486 hFile = CreateFile((LPCSTR)name, /* file name */
3487 GENERIC_WRITE, /* access mode */
3488 0, /* share mode */
3489 NULL, /* security descriptor */
3490 OPEN_EXISTING, /* creation disposition */
3491 0, /* file attributes */
3492 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493
3494 if (hFile == INVALID_HANDLE_VALUE)
3495 return NODE_NORMAL;
3496
3497 type = GetFileType(hFile);
3498 CloseHandle(hFile);
3499 if (type == FILE_TYPE_CHAR)
3500 return NODE_WRITABLE;
3501 if (type == FILE_TYPE_DISK)
3502 return NODE_NORMAL;
3503 return NODE_OTHER;
3504}
3505
3506#ifdef HAVE_ACL
3507struct my_acl
3508{
3509 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3510 PSID pSidOwner;
3511 PSID pSidGroup;
3512 PACL pDacl;
3513 PACL pSacl;
3514};
3515#endif
3516
3517/*
3518 * Return a pointer to the ACL of file "fname" in allocated memory.
3519 * Return NULL if the ACL is not available for whatever reason.
3520 */
3521 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003522mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523{
3524#ifndef HAVE_ACL
3525 return (vim_acl_T)NULL;
3526#else
3527 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003528 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003530 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3531 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003533# ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003534 WCHAR *wn = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003535
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003536 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3537 wn = enc_to_utf16(fname, NULL);
3538 if (wn != NULL)
3539 {
3540 /* Try to retrieve the entire security descriptor. */
3541 err = GetNamedSecurityInfoW(
3542 wn, // Abstract filename
3543 SE_FILE_OBJECT, // File Object
3544 OWNER_SECURITY_INFORMATION |
3545 GROUP_SECURITY_INFORMATION |
3546 DACL_SECURITY_INFORMATION |
3547 SACL_SECURITY_INFORMATION,
3548 &p->pSidOwner, // Ownership information.
3549 &p->pSidGroup, // Group membership.
3550 &p->pDacl, // Discretionary information.
3551 &p->pSacl, // For auditing purposes.
3552 &p->pSecurityDescriptor);
3553 if (err == ERROR_ACCESS_DENIED ||
3554 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003556 /* Retrieve only DACL. */
3557 (void)GetNamedSecurityInfoW(
3558 wn,
3559 SE_FILE_OBJECT,
3560 DACL_SECURITY_INFORMATION,
3561 NULL,
3562 NULL,
3563 &p->pDacl,
3564 NULL,
3565 &p->pSecurityDescriptor);
Bram Moolenaar27515922013-06-29 15:36:26 +02003566 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003567 if (p->pSecurityDescriptor == NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003568 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003569 mch_free_acl((vim_acl_T)p);
3570 p = NULL;
3571 }
3572 vim_free(wn);
3573 }
3574 else
3575# endif
3576 {
3577 /* Try to retrieve the entire security descriptor. */
3578 err = GetNamedSecurityInfo(
3579 (LPSTR)fname, // Abstract filename
3580 SE_FILE_OBJECT, // File Object
3581 OWNER_SECURITY_INFORMATION |
3582 GROUP_SECURITY_INFORMATION |
3583 DACL_SECURITY_INFORMATION |
3584 SACL_SECURITY_INFORMATION,
3585 &p->pSidOwner, // Ownership information.
3586 &p->pSidGroup, // Group membership.
3587 &p->pDacl, // Discretionary information.
3588 &p->pSacl, // For auditing purposes.
3589 &p->pSecurityDescriptor);
3590 if (err == ERROR_ACCESS_DENIED ||
3591 err == ERROR_PRIVILEGE_NOT_HELD)
3592 {
3593 /* Retrieve only DACL. */
3594 (void)GetNamedSecurityInfo(
3595 (LPSTR)fname,
3596 SE_FILE_OBJECT,
3597 DACL_SECURITY_INFORMATION,
3598 NULL,
3599 NULL,
3600 &p->pDacl,
3601 NULL,
3602 &p->pSecurityDescriptor);
3603 }
3604 if (p->pSecurityDescriptor == NULL)
3605 {
3606 mch_free_acl((vim_acl_T)p);
3607 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 }
3609 }
3610 }
3611
3612 return (vim_acl_T)p;
3613#endif
3614}
3615
Bram Moolenaar27515922013-06-29 15:36:26 +02003616#ifdef HAVE_ACL
3617/*
3618 * Check if "acl" contains inherited ACE.
3619 */
3620 static BOOL
3621is_acl_inherited(PACL acl)
3622{
3623 DWORD i;
3624 ACL_SIZE_INFORMATION acl_info;
3625 PACCESS_ALLOWED_ACE ace;
3626
3627 acl_info.AceCount = 0;
3628 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3629 for (i = 0; i < acl_info.AceCount; i++)
3630 {
3631 GetAce(acl, i, (LPVOID *)&ace);
3632 if (ace->Header.AceFlags & INHERITED_ACE)
3633 return TRUE;
3634 }
3635 return FALSE;
3636}
3637#endif
3638
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639/*
3640 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3641 * Errors are ignored.
3642 * This must only be called with "acl" equal to what mch_get_acl() returned.
3643 */
3644 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003645mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646{
3647#ifdef HAVE_ACL
3648 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003649 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003651 if (p != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003652 {
3653# ifdef FEAT_MBYTE
3654 WCHAR *wn = NULL;
3655# endif
3656
3657 /* Set security flags */
3658 if (p->pSidOwner)
3659 sec_info |= OWNER_SECURITY_INFORMATION;
3660 if (p->pSidGroup)
3661 sec_info |= GROUP_SECURITY_INFORMATION;
3662 if (p->pDacl)
3663 {
3664 sec_info |= DACL_SECURITY_INFORMATION;
3665 /* Do not inherit its parent's DACL.
3666 * If the DACL is inherited, Cygwin permissions would be changed.
3667 */
3668 if (!is_acl_inherited(p->pDacl))
3669 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3670 }
3671 if (p->pSacl)
3672 sec_info |= SACL_SECURITY_INFORMATION;
3673
3674# ifdef FEAT_MBYTE
3675 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3676 wn = enc_to_utf16(fname, NULL);
3677 if (wn != NULL)
3678 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003679 (void)SetNamedSecurityInfoW(
Bram Moolenaar27515922013-06-29 15:36:26 +02003680 wn, // Abstract filename
3681 SE_FILE_OBJECT, // File Object
3682 sec_info,
3683 p->pSidOwner, // Ownership information.
3684 p->pSidGroup, // Group membership.
3685 p->pDacl, // Discretionary information.
3686 p->pSacl // For auditing purposes.
3687 );
3688 vim_free(wn);
3689 }
3690 else
3691# endif
3692 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003693 (void)SetNamedSecurityInfo(
Bram Moolenaar27515922013-06-29 15:36:26 +02003694 (LPSTR)fname, // Abstract filename
3695 SE_FILE_OBJECT, // File Object
3696 sec_info,
3697 p->pSidOwner, // Ownership information.
3698 p->pSidGroup, // Group membership.
3699 p->pDacl, // Discretionary information.
3700 p->pSacl // For auditing purposes.
3701 );
3702 }
3703 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704#endif
3705}
3706
3707 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003708mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709{
3710#ifdef HAVE_ACL
3711 struct my_acl *p = (struct my_acl *)acl;
3712
3713 if (p != NULL)
3714 {
3715 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3716 vim_free(p);
3717 }
3718#endif
3719}
3720
3721#ifndef FEAT_GUI_W32
3722
3723/*
3724 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3725 */
3726 static BOOL WINAPI
3727handler_routine(
3728 DWORD dwCtrlType)
3729{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003730 INPUT_RECORD ir;
3731 DWORD out;
3732
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 switch (dwCtrlType)
3734 {
3735 case CTRL_C_EVENT:
3736 if (ctrl_c_interrupts)
3737 g_fCtrlCPressed = TRUE;
3738 return TRUE;
3739
3740 case CTRL_BREAK_EVENT:
3741 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003742 ctrl_break_was_pressed = TRUE;
3743 /* ReadConsoleInput is blocking, send a key event to continue. */
3744 ir.EventType = KEY_EVENT;
3745 ir.Event.KeyEvent.bKeyDown = TRUE;
3746 ir.Event.KeyEvent.wRepeatCount = 1;
3747 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3748 ir.Event.KeyEvent.wVirtualScanCode = 0;
3749 ir.Event.KeyEvent.dwControlKeyState = 0;
3750 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3751 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 return TRUE;
3753
3754 /* fatal events: shut down gracefully */
3755 case CTRL_CLOSE_EVENT:
3756 case CTRL_LOGOFF_EVENT:
3757 case CTRL_SHUTDOWN_EVENT:
3758 windgoto((int)Rows - 1, 0);
3759 g_fForceExit = TRUE;
3760
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003761 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 (dwCtrlType == CTRL_CLOSE_EVENT
3763 ? _("close")
3764 : dwCtrlType == CTRL_LOGOFF_EVENT
3765 ? _("logoff")
3766 : _("shutdown")));
3767#ifdef DEBUG
3768 OutputDebugString(IObuff);
3769#endif
3770
3771 preserve_exit(); /* output IObuff, preserve files and exit */
3772
3773 return TRUE; /* not reached */
3774
3775 default:
3776 return FALSE;
3777 }
3778}
3779
3780
3781/*
3782 * set the tty in (raw) ? "raw" : "cooked" mode
3783 */
3784 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003785mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786{
3787 DWORD cmodein;
3788 DWORD cmodeout;
3789 BOOL bEnableHandler;
3790
3791 GetConsoleMode(g_hConIn, &cmodein);
3792 GetConsoleMode(g_hConOut, &cmodeout);
3793 if (tmode == TMODE_RAW)
3794 {
3795 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3796 ENABLE_ECHO_INPUT);
3797#ifdef FEAT_MOUSE
3798 if (g_fMouseActive)
3799 cmodein |= ENABLE_MOUSE_INPUT;
3800#endif
3801 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3802 bEnableHandler = TRUE;
3803 }
3804 else /* cooked */
3805 {
3806 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3807 ENABLE_ECHO_INPUT);
3808 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3809 bEnableHandler = FALSE;
3810 }
3811 SetConsoleMode(g_hConIn, cmodein);
3812 SetConsoleMode(g_hConOut, cmodeout);
3813 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3814
3815#ifdef MCH_WRITE_DUMP
3816 if (fdDump)
3817 {
3818 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3819 tmode == TMODE_RAW ? "raw" :
3820 tmode == TMODE_COOK ? "cooked" : "normal",
3821 cmodein, cmodeout);
3822 fflush(fdDump);
3823 }
3824#endif
3825}
3826
3827
3828/*
3829 * Get the size of the current window in `Rows' and `Columns'
3830 * Return OK when size could be determined, FAIL otherwise.
3831 */
3832 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003833mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834{
3835 CONSOLE_SCREEN_BUFFER_INFO csbi;
3836
3837 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3838 {
3839 /*
3840 * For some reason, we are trying to get the screen dimensions
3841 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3842 * variables are really intended to mean the size of Vim screen
3843 * while in termcap mode.
3844 */
3845 Rows = g_cbTermcap.Info.dwSize.Y;
3846 Columns = g_cbTermcap.Info.dwSize.X;
3847 }
3848 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3849 {
3850 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3851 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3852 }
3853 else
3854 {
3855 Rows = 25;
3856 Columns = 80;
3857 }
3858 return OK;
3859}
3860
3861/*
3862 * Set a console window to `xSize' * `ySize'
3863 */
3864 static void
3865ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003866 HANDLE hConsole,
3867 int xSize,
3868 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869{
3870 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3871 SMALL_RECT srWindowRect; /* hold the new console size */
3872 COORD coordScreen;
3873
3874#ifdef MCH_WRITE_DUMP
3875 if (fdDump)
3876 {
3877 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3878 fflush(fdDump);
3879 }
3880#endif
3881
3882 /* get the largest size we can size the console window to */
3883 coordScreen = GetLargestConsoleWindowSize(hConsole);
3884
3885 /* define the new console window size and scroll position */
3886 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3887 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3888 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3889
3890 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3891 {
3892 int sx, sy;
3893
3894 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3895 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3896 if (sy < ySize || sx < xSize)
3897 {
3898 /*
3899 * Increasing number of lines/columns, do buffer first.
3900 * Use the maximal size in x and y direction.
3901 */
3902 if (sy < ySize)
3903 coordScreen.Y = ySize;
3904 else
3905 coordScreen.Y = sy;
3906 if (sx < xSize)
3907 coordScreen.X = xSize;
3908 else
3909 coordScreen.X = sx;
3910 SetConsoleScreenBufferSize(hConsole, coordScreen);
3911 }
3912 }
3913
3914 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3915 {
3916#ifdef MCH_WRITE_DUMP
3917 if (fdDump)
3918 {
3919 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3920 GetLastError());
3921 fflush(fdDump);
3922 }
3923#endif
3924 }
3925
3926 /* define the new console buffer size */
3927 coordScreen.X = xSize;
3928 coordScreen.Y = ySize;
3929
3930 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3931 {
3932#ifdef MCH_WRITE_DUMP
3933 if (fdDump)
3934 {
3935 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3936 GetLastError());
3937 fflush(fdDump);
3938 }
3939#endif
3940 }
3941}
3942
3943
3944/*
3945 * Set the console window to `Rows' * `Columns'
3946 */
3947 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003948mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949{
3950 COORD coordScreen;
3951
3952 /* Don't change window size while still starting up */
3953 if (suppress_winsize != 0)
3954 {
3955 suppress_winsize = 2;
3956 return;
3957 }
3958
3959 if (term_console)
3960 {
3961 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3962
3963 /* Clamp Rows and Columns to reasonable values */
3964 if (Rows > coordScreen.Y)
3965 Rows = coordScreen.Y;
3966 if (Columns > coordScreen.X)
3967 Columns = coordScreen.X;
3968
3969 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3970 }
3971}
3972
3973/*
3974 * Rows and/or Columns has changed.
3975 */
3976 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003977mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978{
3979 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3980}
3981
3982
3983/*
3984 * Called when started up, to set the winsize that was delayed.
3985 */
3986 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003987mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988{
3989 if (suppress_winsize == 2)
3990 {
3991 suppress_winsize = 0;
3992 mch_set_shellsize();
3993 shell_resized();
3994 }
3995 suppress_winsize = 0;
3996}
3997#endif /* FEAT_GUI_W32 */
3998
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003999 static BOOL
4000vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01004001 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004002 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01004003 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004004 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004005 PROCESS_INFORMATION *pi,
4006 LPVOID *env,
4007 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004008{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004009#ifdef FEAT_MBYTE
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004010 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4011 {
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004012 BOOL ret;
4013 WCHAR *wcmd, *wcwd = NULL;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004014
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004015 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4016 if (wcmd == NULL)
4017 goto fallback;
4018 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004019 {
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004020 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4021 if (wcwd == NULL)
4022 {
4023 vim_free(wcmd);
4024 goto fallback;
4025 }
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004026 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004027
4028 ret = CreateProcessW(
4029 NULL, /* Executable name */
4030 wcmd, /* Command to execute */
4031 NULL, /* Process security attributes */
4032 NULL, /* Thread security attributes */
4033 inherit_handles, /* Inherit handles */
4034 flags, /* Creation flags */
4035 env, /* Environment */
4036 wcwd, /* Current directory */
4037 (LPSTARTUPINFOW)si, /* Startup information */
4038 pi); /* Process information */
4039 vim_free(wcmd);
4040 if (wcwd != NULL)
4041 vim_free(wcwd);
4042 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004043 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004044fallback:
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004045#endif
4046 return CreateProcess(
4047 NULL, /* Executable name */
4048 cmd, /* Command to execute */
4049 NULL, /* Process security attributes */
4050 NULL, /* Thread security attributes */
4051 inherit_handles, /* Inherit handles */
4052 flags, /* Creation flags */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004053 env, /* Environment */
4054 cwd, /* Current directory */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004055 si, /* Startup information */
4056 pi); /* Process information */
4057}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058
4059
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004060 static HINSTANCE
4061vim_shell_execute(
4062 char *cmd,
4063 INT n_show_cmd)
4064{
4065#ifdef FEAT_MBYTE
4066 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4067 {
4068 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
4069 if (wcmd != NULL)
4070 {
4071 HINSTANCE ret;
4072 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4073 vim_free(wcmd);
4074 return ret;
4075 }
4076 }
4077#endif
4078 return ShellExecute(NULL, NULL, cmd, NULL, NULL, n_show_cmd);
4079}
4080
4081
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082#if defined(FEAT_GUI_W32) || defined(PROTO)
4083
4084/*
4085 * Specialised version of system() for Win32 GUI mode.
4086 * This version proceeds as follows:
4087 * 1. Create a console window for use by the subprocess
4088 * 2. Run the subprocess (it gets the allocated console by default)
4089 * 3. Wait for the subprocess to terminate and get its exit code
4090 * 4. Prompt the user to press a key to close the console window
4091 */
4092 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004093mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094{
4095 STARTUPINFO si;
4096 PROCESS_INFORMATION pi;
4097 DWORD ret = 0;
4098 HWND hwnd = GetFocus();
4099
4100 si.cb = sizeof(si);
4101 si.lpReserved = NULL;
4102 si.lpDesktop = NULL;
4103 si.lpTitle = NULL;
4104 si.dwFlags = STARTF_USESHOWWINDOW;
4105 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004106 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004107 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004109 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004110 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 else
4112 si.wShowWindow = SW_SHOWNORMAL;
4113 si.cbReserved2 = 0;
4114 si.lpReserved2 = NULL;
4115
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004117 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004118 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4119 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120
4121 /* Wait for the command to terminate before continuing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 {
4123#ifdef FEAT_GUI
4124 int delay = 1;
4125
4126 /* Keep updating the window while waiting for the shell to finish. */
4127 for (;;)
4128 {
4129 MSG msg;
4130
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004131 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 {
4133 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004134 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004135 delay = 1;
4136 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 }
4138 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4139 break;
4140
4141 /* We start waiting for a very short time and then increase it, so
4142 * that we respond quickly when the process is quick, and don't
4143 * consume too much overhead when it's slow. */
4144 if (delay < 50)
4145 delay += 10;
4146 }
4147#else
4148 WaitForSingleObject(pi.hProcess, INFINITE);
4149#endif
4150
4151 /* Get the command exit code */
4152 GetExitCodeProcess(pi.hProcess, &ret);
4153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154
4155 /* Close the handles to the subprocess, so that it goes away */
4156 CloseHandle(pi.hThread);
4157 CloseHandle(pi.hProcess);
4158
4159 /* Try to get input focus back. Doesn't always work though. */
4160 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4161
4162 return ret;
4163}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004164
4165/*
4166 * Thread launched by the gui to send the current buffer data to the
4167 * process. This way avoid to hang up vim totally if the children
4168 * process take a long time to process the lines.
4169 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004170 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004171sub_process_writer(LPVOID param)
4172{
4173 HANDLE g_hChildStd_IN_Wr = param;
4174 linenr_T lnum = curbuf->b_op_start.lnum;
4175 DWORD len = 0;
4176 DWORD l;
4177 char_u *lp = ml_get(lnum);
4178 char_u *s;
4179 int written = 0;
4180
4181 for (;;)
4182 {
4183 l = (DWORD)STRLEN(lp + written);
4184 if (l == 0)
4185 len = 0;
4186 else if (lp[written] == NL)
4187 {
4188 /* NL -> NUL translation */
4189 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4190 }
4191 else
4192 {
4193 s = vim_strchr(lp + written, NL);
4194 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4195 s == NULL ? l : (DWORD)(s - (lp + written)),
4196 &len, NULL);
4197 }
4198 if (len == (int)l)
4199 {
4200 /* Finished a line, add a NL, unless this line should not have
4201 * one. */
4202 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004203 || (!curbuf->b_p_bin
4204 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004205 || (lnum != curbuf->b_no_eol_lnum
4206 && (lnum != curbuf->b_ml.ml_line_count
4207 || curbuf->b_p_eol)))
4208 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004209 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004210 }
4211
4212 ++lnum;
4213 if (lnum > curbuf->b_op_end.lnum)
4214 break;
4215
4216 lp = ml_get(lnum);
4217 written = 0;
4218 }
4219 else if (len > 0)
4220 written += len;
4221 }
4222
4223 /* finished all the lines, close pipe */
4224 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004225 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004226}
4227
4228
4229# define BUFLEN 100 /* length for buffer, stolen from unix version */
4230
4231/*
4232 * This function read from the children's stdout and write the
4233 * data on screen or in the buffer accordingly.
4234 */
4235 static void
4236dump_pipe(int options,
4237 HANDLE g_hChildStd_OUT_Rd,
4238 garray_T *ga,
4239 char_u buffer[],
4240 DWORD *buffer_off)
4241{
4242 DWORD availableBytes = 0;
4243 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004244 int ret;
4245 DWORD len;
4246 DWORD toRead;
4247 int repeatCount;
4248
4249 /* we query the pipe to see if there is any data to read
4250 * to avoid to perform a blocking read */
4251 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4252 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004253 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004254 NULL, /* number of read bytes */
4255 &availableBytes, /* available bytes total */
4256 NULL); /* byteLeft */
4257
4258 repeatCount = 0;
4259 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004260 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004261 {
4262 repeatCount++;
4263 toRead =
4264# ifdef FEAT_MBYTE
4265 (DWORD)(BUFLEN - *buffer_off);
4266# else
4267 (DWORD)BUFLEN;
4268# endif
4269 toRead = availableBytes < toRead ? availableBytes : toRead;
4270 ReadFile(g_hChildStd_OUT_Rd, buffer
4271# ifdef FEAT_MBYTE
4272 + *buffer_off, toRead
4273# else
4274 , toRead
4275# endif
4276 , &len, NULL);
4277
4278 /* If we haven't read anything, there is a problem */
4279 if (len == 0)
4280 break;
4281
4282 availableBytes -= len;
4283
4284 if (options & SHELL_READ)
4285 {
4286 /* Do NUL -> NL translation, append NL separated
4287 * lines to the current buffer. */
4288 for (i = 0; i < len; ++i)
4289 {
4290 if (buffer[i] == NL)
4291 append_ga_line(ga);
4292 else if (buffer[i] == NUL)
4293 ga_append(ga, NL);
4294 else
4295 ga_append(ga, buffer[i]);
4296 }
4297 }
4298# ifdef FEAT_MBYTE
4299 else if (has_mbyte)
4300 {
4301 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004302 int c;
4303 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004304
4305 len += *buffer_off;
4306 buffer[len] = NUL;
4307
4308 /* Check if the last character in buffer[] is
4309 * incomplete, keep these bytes for the next
4310 * round. */
4311 for (p = buffer; p < buffer + len; p += l)
4312 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004313 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004314 if (l == 0)
4315 l = 1; /* NUL byte? */
4316 else if (MB_BYTE2LEN(*p) != l)
4317 break;
4318 }
4319 if (p == buffer) /* no complete character */
4320 {
4321 /* avoid getting stuck at an illegal byte */
4322 if (len >= 12)
4323 ++p;
4324 else
4325 {
4326 *buffer_off = len;
4327 return;
4328 }
4329 }
4330 c = *p;
4331 *p = NUL;
4332 msg_puts(buffer);
4333 if (p < buffer + len)
4334 {
4335 *p = c;
4336 *buffer_off = (DWORD)((buffer + len) - p);
4337 mch_memmove(buffer, p, *buffer_off);
4338 return;
4339 }
4340 *buffer_off = 0;
4341 }
4342# endif /* FEAT_MBYTE */
4343 else
4344 {
4345 buffer[len] = NUL;
4346 msg_puts(buffer);
4347 }
4348
4349 windgoto(msg_row, msg_col);
4350 cursor_on();
4351 out_flush();
4352 }
4353}
4354
4355/*
4356 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4357 * for communication and doesn't open any new window.
4358 */
4359 static int
4360mch_system_piped(char *cmd, int options)
4361{
4362 STARTUPINFO si;
4363 PROCESS_INFORMATION pi;
4364 DWORD ret = 0;
4365
4366 HANDLE g_hChildStd_IN_Rd = NULL;
4367 HANDLE g_hChildStd_IN_Wr = NULL;
4368 HANDLE g_hChildStd_OUT_Rd = NULL;
4369 HANDLE g_hChildStd_OUT_Wr = NULL;
4370
4371 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4372 DWORD len;
4373
4374 /* buffer used to receive keys */
4375 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4376 int ta_len = 0; /* valid bytes in ta_buf[] */
4377
4378 DWORD i;
4379 int c;
4380 int noread_cnt = 0;
4381 garray_T ga;
4382 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004383 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004384 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004385
4386 SECURITY_ATTRIBUTES saAttr;
4387
4388 /* Set the bInheritHandle flag so pipe handles are inherited. */
4389 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4390 saAttr.bInheritHandle = TRUE;
4391 saAttr.lpSecurityDescriptor = NULL;
4392
4393 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4394 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004395 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004396 /* Create a pipe for the child process's STDIN. */
4397 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4398 /* Ensure the write handle to the pipe for STDIN is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004399 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004400 {
4401 CloseHandle(g_hChildStd_IN_Rd);
4402 CloseHandle(g_hChildStd_IN_Wr);
4403 CloseHandle(g_hChildStd_OUT_Rd);
4404 CloseHandle(g_hChildStd_OUT_Wr);
4405 MSG_PUTS(_("\nCannot create pipes\n"));
4406 }
4407
4408 si.cb = sizeof(si);
4409 si.lpReserved = NULL;
4410 si.lpDesktop = NULL;
4411 si.lpTitle = NULL;
4412 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4413
4414 /* set-up our file redirection */
4415 si.hStdError = g_hChildStd_OUT_Wr;
4416 si.hStdOutput = g_hChildStd_OUT_Wr;
4417 si.hStdInput = g_hChildStd_IN_Rd;
4418 si.wShowWindow = SW_HIDE;
4419 si.cbReserved2 = 0;
4420 si.lpReserved2 = NULL;
4421
4422 if (options & SHELL_READ)
4423 ga_init2(&ga, 1, BUFLEN);
4424
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004425 if (cmd != NULL)
4426 {
4427 p = (char *)vim_strsave((char_u *)cmd);
4428 if (p != NULL)
4429 unescape_shellxquote((char_u *)p, p_sxe);
4430 else
4431 p = cmd;
4432 }
4433
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004434 /* Now, run the command.
4435 * About "Inherit handles" being TRUE: this command can be litigious,
4436 * handle inheritance was deactivated for pending temp file, but, if we
4437 * deactivate it, the pipes don't work for some reason. */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004438 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4439 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004440
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004441 if (p != cmd)
4442 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004443
4444 /* Close our unused side of the pipes */
4445 CloseHandle(g_hChildStd_IN_Rd);
4446 CloseHandle(g_hChildStd_OUT_Wr);
4447
4448 if (options & SHELL_WRITE)
4449 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004450 HANDLE thread = (HANDLE)
4451 _beginthreadex(NULL, /* security attributes */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004452 0, /* default stack size */
4453 sub_process_writer, /* function to be executed */
4454 g_hChildStd_IN_Wr, /* parameter */
4455 0, /* creation flag, start immediately */
4456 NULL); /* we don't care about thread id */
4457 CloseHandle(thread);
4458 g_hChildStd_IN_Wr = NULL;
4459 }
4460
4461 /* Keep updating the window while waiting for the shell to finish. */
4462 for (;;)
4463 {
4464 MSG msg;
4465
Bram Moolenaar175d0702013-12-11 18:36:33 +01004466 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004467 {
4468 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004469 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004470 }
4471
4472 /* write pipe information in the window */
4473 if ((options & (SHELL_READ|SHELL_WRITE))
4474# ifdef FEAT_GUI
4475 || gui.in_use
4476# endif
4477 )
4478 {
4479 len = 0;
4480 if (!(options & SHELL_EXPAND)
4481 && ((options &
4482 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4483 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4484# ifdef FEAT_GUI
4485 || gui.in_use
4486# endif
4487 )
4488 && (ta_len > 0 || noread_cnt > 4))
4489 {
4490 if (ta_len == 0)
4491 {
4492 /* Get extra characters when we don't have any. Reset the
4493 * counter and timer. */
4494 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004495 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4496 }
4497 if (ta_len > 0 || len > 0)
4498 {
4499 /*
4500 * For pipes: Check for CTRL-C: send interrupt signal to
4501 * child. Check for CTRL-D: EOF, close pipe to child.
4502 */
4503 if (len == 1 && cmd != NULL)
4504 {
4505 if (ta_buf[ta_len] == Ctrl_C)
4506 {
4507 /* Learn what exit code is expected, for
4508 * now put 9 as SIGKILL */
4509 TerminateProcess(pi.hProcess, 9);
4510 }
4511 if (ta_buf[ta_len] == Ctrl_D)
4512 {
4513 CloseHandle(g_hChildStd_IN_Wr);
4514 g_hChildStd_IN_Wr = NULL;
4515 }
4516 }
4517
4518 /* replace K_BS by <BS> and K_DEL by <DEL> */
4519 for (i = ta_len; i < ta_len + len; ++i)
4520 {
4521 if (ta_buf[i] == CSI && len - i > 2)
4522 {
4523 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4524 if (c == K_DEL || c == K_KDEL || c == K_BS)
4525 {
4526 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4527 (size_t)(len - i - 2));
4528 if (c == K_DEL || c == K_KDEL)
4529 ta_buf[i] = DEL;
4530 else
4531 ta_buf[i] = Ctrl_H;
4532 len -= 2;
4533 }
4534 }
4535 else if (ta_buf[i] == '\r')
4536 ta_buf[i] = '\n';
4537# ifdef FEAT_MBYTE
4538 if (has_mbyte)
4539 i += (*mb_ptr2len_len)(ta_buf + i,
4540 ta_len + len - i) - 1;
4541# endif
4542 }
4543
4544 /*
4545 * For pipes: echo the typed characters. For a pty this
4546 * does not seem to work.
4547 */
4548 for (i = ta_len; i < ta_len + len; ++i)
4549 {
4550 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4551 msg_putchar(ta_buf[i]);
4552# ifdef FEAT_MBYTE
4553 else if (has_mbyte)
4554 {
4555 int l = (*mb_ptr2len)(ta_buf + i);
4556
4557 msg_outtrans_len(ta_buf + i, l);
4558 i += l - 1;
4559 }
4560# endif
4561 else
4562 msg_outtrans_len(ta_buf + i, 1);
4563 }
4564 windgoto(msg_row, msg_col);
4565 out_flush();
4566
4567 ta_len += len;
4568
4569 /*
4570 * Write the characters to the child, unless EOF has been
4571 * typed for pipes. Write one character at a time, to
4572 * avoid losing too much typeahead. When writing buffer
4573 * lines, drop the typed characters (only check for
4574 * CTRL-C).
4575 */
4576 if (options & SHELL_WRITE)
4577 ta_len = 0;
4578 else if (g_hChildStd_IN_Wr != NULL)
4579 {
4580 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4581 1, &len, NULL);
4582 // if we are typing in, we want to keep things reactive
4583 delay = 1;
4584 if (len > 0)
4585 {
4586 ta_len -= len;
4587 mch_memmove(ta_buf, ta_buf + len, ta_len);
4588 }
4589 }
4590 }
4591 }
4592 }
4593
4594 if (ta_len)
4595 ui_inchar_undo(ta_buf, ta_len);
4596
4597 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4598 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004599 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004600 break;
4601 }
4602
4603 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004604 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004605
4606 /* We start waiting for a very short time and then increase it, so
4607 * that we respond quickly when the process is quick, and don't
4608 * consume too much overhead when it's slow. */
4609 if (delay < 50)
4610 delay += 10;
4611 }
4612
4613 /* Close the pipe */
4614 CloseHandle(g_hChildStd_OUT_Rd);
4615 if (g_hChildStd_IN_Wr != NULL)
4616 CloseHandle(g_hChildStd_IN_Wr);
4617
4618 WaitForSingleObject(pi.hProcess, INFINITE);
4619
4620 /* Get the command exit code */
4621 GetExitCodeProcess(pi.hProcess, &ret);
4622
4623 if (options & SHELL_READ)
4624 {
4625 if (ga.ga_len > 0)
4626 {
4627 append_ga_line(&ga);
4628 /* remember that the NL was missing */
4629 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4630 }
4631 else
4632 curbuf->b_no_eol_lnum = 0;
4633 ga_clear(&ga);
4634 }
4635
4636 /* Close the handles to the subprocess, so that it goes away */
4637 CloseHandle(pi.hThread);
4638 CloseHandle(pi.hProcess);
4639
4640 return ret;
4641}
4642
4643 static int
4644mch_system(char *cmd, int options)
4645{
4646 /* if we can pipe and the shelltemp option is off */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004647 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004648 return mch_system_piped(cmd, options);
4649 else
4650 return mch_system_classic(cmd, options);
4651}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652#else
4653
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004654# ifdef FEAT_MBYTE
4655 static int
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004656mch_system(char *cmd, int options)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004657{
4658 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4659 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004660 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004661 if (wcmd != NULL)
4662 {
4663 int ret = _wsystem(wcmd);
4664 vim_free(wcmd);
4665 return ret;
4666 }
4667 }
4668 return system(cmd);
4669}
4670# else
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004671# define mch_system(c, o) system(c)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004672# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673
4674#endif
4675
4676/*
4677 * Either execute a command by calling the shell or start a new shell
4678 */
4679 int
4680mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004681 char_u *cmd,
4682 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683{
4684 int x = 0;
4685 int tmode = cur_tmode;
4686#ifdef FEAT_TITLE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004687 char szShellTitle[512];
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004688# ifdef FEAT_MBYTE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004689 int did_set_title = FALSE;
4690
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004691 /* Change the title to reflect that we are in a subshell. */
4692 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4693 {
4694 WCHAR szShellTitle[512];
4695
4696 if (GetConsoleTitleW(szShellTitle,
4697 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
4698 {
4699 if (cmd == NULL)
4700 wcscat(szShellTitle, L" :sh");
4701 else
4702 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004703 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004704
4705 if (wn != NULL)
4706 {
4707 wcscat(szShellTitle, L" - !");
4708 if ((wcslen(szShellTitle) + wcslen(wn) <
4709 sizeof(szShellTitle)/sizeof(WCHAR)))
4710 wcscat(szShellTitle, wn);
4711 SetConsoleTitleW(szShellTitle);
4712 vim_free(wn);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004713 did_set_title = TRUE;
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004714 }
4715 }
4716 }
4717 }
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004718 if (!did_set_title)
4719# endif
4720 /* Change the title to reflect that we are in a subshell. */
4721 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 {
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004723 if (cmd == NULL)
4724 strcat(szShellTitle, " :sh");
4725 else
4726 {
4727 strcat(szShellTitle, " - !");
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004728 if ((strlen(szShellTitle) + strlen((char *)cmd)
4729 < sizeof(szShellTitle)))
4730 strcat(szShellTitle, (char *)cmd);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004731 }
4732 SetConsoleTitle(szShellTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734#endif
4735
4736 out_flush();
4737
4738#ifdef MCH_WRITE_DUMP
4739 if (fdDump)
4740 {
4741 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4742 fflush(fdDump);
4743 }
4744#endif
4745
4746 /*
4747 * Catch all deadly signals while running the external command, because a
4748 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4749 */
4750 signal(SIGINT, SIG_IGN);
4751#if defined(__GNUC__) && !defined(__MINGW32__)
4752 signal(SIGKILL, SIG_IGN);
4753#else
4754 signal(SIGBREAK, SIG_IGN);
4755#endif
4756 signal(SIGILL, SIG_IGN);
4757 signal(SIGFPE, SIG_IGN);
4758 signal(SIGSEGV, SIG_IGN);
4759 signal(SIGTERM, SIG_IGN);
4760 signal(SIGABRT, SIG_IGN);
4761
4762 if (options & SHELL_COOKED)
4763 settmode(TMODE_COOK); /* set to normal mode */
4764
4765 if (cmd == NULL)
4766 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004767 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 }
4769 else
4770 {
4771 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004772 char_u *newcmd = NULL;
4773 char_u *cmdbase = cmd;
4774 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004775
4776 /* Skip a leading ", ( and "(. */
4777 if (*cmdbase == '"' )
4778 ++cmdbase;
4779 if (*cmdbase == '(')
4780 ++cmdbase;
4781
Bram Moolenaar1c465442017-03-12 20:10:05 +01004782 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004783 {
4784 STARTUPINFO si;
4785 PROCESS_INFORMATION pi;
4786 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004787 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004788 char_u *p;
4789
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004790 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004791 si.cb = sizeof(si);
4792 si.lpReserved = NULL;
4793 si.lpDesktop = NULL;
4794 si.lpTitle = NULL;
4795 si.dwFlags = 0;
4796 si.cbReserved2 = 0;
4797 si.lpReserved2 = NULL;
4798
4799 cmdbase = skipwhite(cmdbase + 5);
4800 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004801 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004802 {
4803 cmdbase = skipwhite(cmdbase + 4);
4804 si.dwFlags = STARTF_USESHOWWINDOW;
4805 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004806 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004807 }
4808 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004809 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004810 {
4811 cmdbase = skipwhite(cmdbase + 2);
4812 flags = CREATE_NO_WINDOW;
4813 si.dwFlags = STARTF_USESTDHANDLES;
4814 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004815 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004816 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004817 NULL, // Security att.
4818 OPEN_EXISTING, // Open flags
4819 FILE_ATTRIBUTE_NORMAL, // File att.
4820 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004821 si.hStdOutput = si.hStdInput;
4822 si.hStdError = si.hStdInput;
4823 }
4824
4825 /* Remove a trailing ", ) and )" if they have a match
4826 * at the start of the command. */
4827 if (cmdbase > cmd)
4828 {
4829 p = cmdbase + STRLEN(cmdbase);
4830 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4831 *--p = NUL;
4832 if (p > cmdbase && p[-1] == ')'
4833 && (*cmd =='(' || cmd[1] == '('))
4834 *--p = NUL;
4835 }
4836
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004837 newcmd = cmdbase;
4838 unescape_shellxquote(cmdbase, p_sxe);
4839
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004840 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004841 * If creating new console, arguments are passed to the
4842 * 'cmd.exe' as-is. If it's not, arguments are not treated
4843 * correctly for current 'cmd.exe'. So unescape characters in
4844 * shellxescape except '|' for avoiding to be treated as
4845 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004846 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004847 if (flags != CREATE_NEW_CONSOLE)
4848 {
4849 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004850 char_u *cmd_shell = mch_getenv("COMSPEC");
4851
4852 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004853 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004854
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004855 subcmd = vim_strsave_escaped_ext(cmdbase,
4856 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004857 if (subcmd != NULL)
4858 {
4859 /* make "cmd.exe /c arguments" */
4860 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004861 newcmd = lalloc(cmdlen, TRUE);
4862 if (newcmd != NULL)
4863 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004864 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004865 else
4866 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004867 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004868 }
4869 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004870
4871 /*
4872 * Now, start the command as a process, so that it doesn't
4873 * inherit our handles which causes unpleasant dangling swap
4874 * files if we exit before the spawned process
4875 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004876 if (vim_create_process((char *)newcmd, FALSE, flags,
4877 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004878 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004879 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4880 > (HINSTANCE)32)
4881 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004882 else
4883 {
4884 x = -1;
4885#ifdef FEAT_GUI_W32
4886 EMSG(_("E371: Command not found"));
4887#endif
4888 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004889
4890 if (newcmd != cmdbase)
4891 vim_free(newcmd);
4892
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004893 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004894 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004895 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004896 CloseHandle(si.hStdInput);
4897 }
4898 /* Close the handles to the subprocess, so that it goes away */
4899 CloseHandle(pi.hThread);
4900 CloseHandle(pi.hProcess);
4901 }
4902 else
4903 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004904 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905#ifdef FEAT_GUI_W32
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004906 (!p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004908 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4909
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004910 newcmd = lalloc(cmdlen, TRUE);
4911 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 {
4913#if defined(FEAT_GUI_W32)
4914 if (need_vimrun_warning)
4915 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004916 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4917 "External commands will not pause after completion.\n"
4918 "See :help win32-vimrun for more information.");
4919 char *title = _("Vim Warning");
4920# ifdef FEAT_MBYTE
4921 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4922 {
4923 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4924 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
4925
4926 if (wmsg != NULL && wtitle != NULL)
4927 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4928 vim_free(wmsg);
4929 vim_free(wtitle);
4930 }
4931 else
4932# endif
4933 MessageBox(NULL, msg, title, MB_ICONWARNING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 need_vimrun_warning = FALSE;
4935 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004936 if (!s_dont_use_vimrun && p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 /* Use vimrun to execute the command. It opens a console
4938 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004939 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 vimrun_path,
4941 (msg_silent != 0 || (options & SHELL_DOOUT))
4942 ? "-s " : "",
4943 p_sh, p_shcf, cmd);
4944 else
4945#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004946 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004947 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004949 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 }
4952 }
4953
4954 if (tmode == TMODE_RAW)
4955 settmode(TMODE_RAW); /* set to raw mode */
4956
4957 /* Print the return value, unless "vimrun" was used. */
4958 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4959#if defined(FEAT_GUI_W32)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004960 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961#endif
4962 )
4963 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004964 smsg((char_u *)_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 msg_putchar('\n');
4966 }
4967#ifdef FEAT_TITLE
4968 resettitle();
4969#endif
4970
4971 signal(SIGINT, SIG_DFL);
4972#if defined(__GNUC__) && !defined(__MINGW32__)
4973 signal(SIGKILL, SIG_DFL);
4974#else
4975 signal(SIGBREAK, SIG_DFL);
4976#endif
4977 signal(SIGILL, SIG_DFL);
4978 signal(SIGFPE, SIG_DFL);
4979 signal(SIGSEGV, SIG_DFL);
4980 signal(SIGTERM, SIG_DFL);
4981 signal(SIGABRT, SIG_DFL);
4982
4983 return x;
4984}
4985
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004986#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004987 static HANDLE
4988job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004989 char_u *fname,
4990 DWORD dwDesiredAccess,
4991 DWORD dwShareMode,
4992 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
4993 DWORD dwCreationDisposition,
4994 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004995{
4996 HANDLE h;
4997# ifdef FEAT_MBYTE
4998 WCHAR *wn = NULL;
4999 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5000 {
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005001 wn = enc_to_utf16(fname, NULL);
5002 if (wn != NULL)
5003 {
5004 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5005 lpSecurityAttributes, dwCreationDisposition,
5006 dwFlagsAndAttributes, NULL);
5007 vim_free(wn);
5008 }
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005009 }
5010 if (wn == NULL)
5011# endif
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005012 h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode,
5013 lpSecurityAttributes, dwCreationDisposition,
5014 dwFlagsAndAttributes, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005015 return h;
5016}
5017
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005018/*
5019 * Turn the dictionary "env" into a NUL separated list that can be used as the
5020 * environment argument of vim_create_process().
5021 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005022 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005023win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005024{
5025 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005026 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005027 LPVOID base = GetEnvironmentStringsW();
5028
5029 /* for last \0 */
5030 if (ga_grow(gap, 1) == FAIL)
5031 return;
5032
5033 if (base)
5034 {
5035 WCHAR *p = (WCHAR*) base;
5036
5037 /* for last \0 */
5038 if (ga_grow(gap, 1) == FAIL)
5039 return;
5040
5041 while (*p != 0 || *(p + 1) != 0)
5042 {
5043 if (ga_grow(gap, 1) == OK)
5044 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5045 p++;
5046 }
5047 FreeEnvironmentStrings(base);
5048 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5049 }
5050
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005051 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005052 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005053 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005054 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005055 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005056 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005057 typval_T *item = &dict_lookup(hi)->di_tv;
5058 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
5059 WCHAR *wval = enc_to_utf16(get_tv_string(item), NULL);
5060 --todo;
5061 if (wkey != NULL && wval != NULL)
5062 {
5063 size_t n;
5064 size_t lkey = wcslen(wkey);
5065 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005066
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005067 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5068 continue;
5069 for (n = 0; n < lkey; n++)
5070 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5071 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5072 for (n = 0; n < lval; n++)
5073 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5074 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5075 }
5076 if (wkey != NULL) vim_free(wkey);
5077 if (wval != NULL) vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005078 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005079 }
5080 }
5081
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005082# ifdef FEAT_CLIENTSERVER
5083 if (is_terminal)
5084 {
5085 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
5086 size_t lval = STRLEN(servername);
5087 size_t n;
5088
5089 if (ga_grow(gap, (int)(14 + lval + 2)) == OK)
5090 {
5091 for (n = 0; n < 15; n++)
5092 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5093 (WCHAR)"VIM_SERVERNAME="[n];
5094 for (n = 0; n < lval; n++)
5095 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5096 (WCHAR)servername[n];
5097 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5098 }
5099 }
5100# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005101}
5102
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005103 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005104mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005105{
5106 STARTUPINFO si;
5107 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005108 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005109 SECURITY_ATTRIBUTES saAttr;
5110 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005111 HANDLE ifd[2];
5112 HANDLE ofd[2];
5113 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005114 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005115
5116 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5117 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5118 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5119 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5120 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5121 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5122 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5123
5124 if (use_out_for_err && use_null_for_out)
5125 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005126
5127 ifd[0] = INVALID_HANDLE_VALUE;
5128 ifd[1] = INVALID_HANDLE_VALUE;
5129 ofd[0] = INVALID_HANDLE_VALUE;
5130 ofd[1] = INVALID_HANDLE_VALUE;
5131 efd[0] = INVALID_HANDLE_VALUE;
5132 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005133 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005134
Bram Moolenaar14207f42016-10-27 21:13:10 +02005135 jo = CreateJobObject(NULL, NULL);
5136 if (jo == NULL)
5137 {
5138 job->jv_status = JOB_FAILED;
5139 goto failed;
5140 }
5141
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005142 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005143 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005144
Bram Moolenaar76467df2016-02-12 19:30:26 +01005145 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005146 ZeroMemory(&si, sizeof(si));
5147 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005148 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005149 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005150
Bram Moolenaard8070362016-02-15 21:56:54 +01005151 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5152 saAttr.bInheritHandle = TRUE;
5153 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005154
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005155 if (use_file_for_in)
5156 {
5157 char_u *fname = options->jo_io_name[PART_IN];
5158
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005159 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5160 FILE_SHARE_READ | FILE_SHARE_WRITE,
5161 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5162 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005163 {
5164 EMSG2(_(e_notopen), fname);
5165 goto failed;
5166 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005167 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005168 else if (!use_null_for_in &&
5169 (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005170 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005171 goto failed;
5172
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005173 if (use_file_for_out)
5174 {
5175 char_u *fname = options->jo_io_name[PART_OUT];
5176
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005177 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5178 FILE_SHARE_READ | FILE_SHARE_WRITE,
5179 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5180 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005181 {
5182 EMSG2(_(e_notopen), fname);
5183 goto failed;
5184 }
5185 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005186 else if (!use_null_for_out &&
5187 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005188 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005189 goto failed;
5190
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005191 if (use_file_for_err)
5192 {
5193 char_u *fname = options->jo_io_name[PART_ERR];
5194
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005195 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5196 FILE_SHARE_READ | FILE_SHARE_WRITE,
5197 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5198 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005199 {
5200 EMSG2(_(e_notopen), fname);
5201 goto failed;
5202 }
5203 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005204 else if (!use_out_for_err && !use_null_for_err &&
5205 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005206 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005207 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005208
Bram Moolenaard8070362016-02-15 21:56:54 +01005209 si.dwFlags |= STARTF_USESTDHANDLES;
5210 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005211 si.hStdOutput = ofd[1];
5212 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5213
5214 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5215 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005216 if (options->jo_set & JO_CHANNEL)
5217 {
5218 channel = options->jo_channel;
5219 if (channel != NULL)
5220 ++channel->ch_refcount;
5221 }
5222 else
5223 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005224 if (channel == NULL)
5225 goto failed;
5226 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005227
5228 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005229 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005230 CREATE_DEFAULT_ERROR_MODE |
5231 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005232 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005233 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005234 &si, &pi,
5235 ga.ga_data,
5236 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005237 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005238 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005239 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005240 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005241 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005242
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005243 ga_clear(&ga);
5244
Bram Moolenaar14207f42016-10-27 21:13:10 +02005245 if (!AssignProcessToJobObject(jo, pi.hProcess))
5246 {
5247 /* if failing, switch the way to terminate
5248 * process with TerminateProcess. */
5249 CloseHandle(jo);
5250 jo = NULL;
5251 }
5252 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005253 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005254 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005255 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005256 job->jv_status = JOB_STARTED;
5257
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005258 CloseHandle(ifd[0]);
5259 CloseHandle(ofd[1]);
5260 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005261 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005262
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005263 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005264 if (channel != NULL)
5265 {
5266 channel_set_pipes(channel,
5267 use_file_for_in || use_null_for_in
5268 ? INVALID_FD : (sock_T)ifd[1],
5269 use_file_for_out || use_null_for_out
5270 ? INVALID_FD : (sock_T)ofd[0],
5271 use_out_for_err || use_file_for_err || use_null_for_err
5272 ? INVALID_FD : (sock_T)efd[0]);
5273 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005274 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005275 return;
5276
5277failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005278 CloseHandle(ifd[0]);
5279 CloseHandle(ofd[0]);
5280 CloseHandle(efd[0]);
5281 CloseHandle(ifd[1]);
5282 CloseHandle(ofd[1]);
5283 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005284 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005285 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005286}
5287
5288 char *
5289mch_job_status(job_T *job)
5290{
5291 DWORD dwExitCode = 0;
5292
Bram Moolenaar76467df2016-02-12 19:30:26 +01005293 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5294 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005295 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005296 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005297 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005298 {
5299 ch_log(job->jv_channel, "Job ended");
5300 job->jv_status = JOB_ENDED;
5301 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005302 return "dead";
5303 }
5304 return "run";
5305}
5306
Bram Moolenaar97792de2016-10-15 18:36:49 +02005307 job_T *
5308mch_detect_ended_job(job_T *job_list)
5309{
5310 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5311 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5312 job_T *job = job_list;
5313
5314 while (job != NULL)
5315 {
5316 DWORD n;
5317 DWORD result;
5318
5319 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5320 && job != NULL; job = job->jv_next)
5321 {
5322 if (job->jv_status == JOB_STARTED)
5323 {
5324 jobHandles[n] = job->jv_proc_info.hProcess;
5325 jobArray[n] = job;
5326 ++n;
5327 }
5328 }
5329 if (n == 0)
5330 continue;
5331 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5332 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5333 {
5334 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5335
5336 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5337 return wait_job;
5338 }
5339 }
5340 return NULL;
5341}
5342
Bram Moolenaarfb630902016-10-29 14:55:00 +02005343 static BOOL
5344terminate_all(HANDLE process, int code)
5345{
5346 PROCESSENTRY32 pe;
5347 HANDLE h = INVALID_HANDLE_VALUE;
5348 DWORD pid = GetProcessId(process);
5349
5350 if (pid != 0)
5351 {
5352 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5353 if (h != INVALID_HANDLE_VALUE)
5354 {
5355 pe.dwSize = sizeof(PROCESSENTRY32);
5356 if (!Process32First(h, &pe))
5357 goto theend;
5358
5359 do
5360 {
5361 if (pe.th32ParentProcessID == pid)
5362 {
5363 HANDLE ph = OpenProcess(
5364 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5365 if (ph != NULL)
5366 {
5367 terminate_all(ph, code);
5368 CloseHandle(ph);
5369 }
5370 }
5371 } while (Process32Next(h, &pe));
5372
5373 CloseHandle(h);
5374 }
5375 }
5376
5377theend:
5378 return TerminateProcess(process, code);
5379}
5380
5381/*
5382 * Send a (deadly) signal to "job".
5383 * Return FAIL if it didn't work.
5384 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005385 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005386mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005387{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005388 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005389
Bram Moolenaar923d9262016-02-25 20:56:01 +01005390 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005391 {
Bram Moolenaarfb630902016-10-29 14:55:00 +02005392 /* deadly signal */
Bram Moolenaar14207f42016-10-27 21:13:10 +02005393 if (job->jv_job_object != NULL)
5394 return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL;
Bram Moolenaarfb630902016-10-29 14:55:00 +02005395 return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005396 }
5397
5398 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5399 return FAIL;
5400 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005401 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5402 job->jv_proc_info.dwProcessId)
5403 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005404 FreeConsole();
5405 return ret;
5406}
5407
5408/*
5409 * Clear the data related to "job".
5410 */
5411 void
5412mch_clear_job(job_T *job)
5413{
5414 if (job->jv_status != JOB_FAILED)
5415 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005416 if (job->jv_job_object != NULL)
5417 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005418 CloseHandle(job->jv_proc_info.hProcess);
5419 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005420}
5421#endif
5422
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423
5424#ifndef FEAT_GUI_W32
5425
5426/*
5427 * Start termcap mode
5428 */
5429 static void
5430termcap_mode_start(void)
5431{
5432 DWORD cmodein;
5433
5434 if (g_fTermcapMode)
5435 return;
5436
5437 SaveConsoleBuffer(&g_cbNonTermcap);
5438
5439 if (g_cbTermcap.IsValid)
5440 {
5441 /*
5442 * We've been in termcap mode before. Restore certain screen
5443 * characteristics, including the buffer size and the window
5444 * size. Since we will be redrawing the screen, we don't need
5445 * to restore the actual contents of the buffer.
5446 */
5447 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
5448 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5449 Rows = g_cbTermcap.Info.dwSize.Y;
5450 Columns = g_cbTermcap.Info.dwSize.X;
5451 }
5452 else
5453 {
5454 /*
5455 * This is our first time entering termcap mode. Clear the console
5456 * screen buffer, and resize the buffer to match the current window
5457 * size. We will use this as the size of our editing environment.
5458 */
5459 ClearConsoleBuffer(g_attrCurrent);
5460 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5461 }
5462
5463#ifdef FEAT_TITLE
5464 resettitle();
5465#endif
5466
5467 GetConsoleMode(g_hConIn, &cmodein);
5468#ifdef FEAT_MOUSE
5469 if (g_fMouseActive)
5470 cmodein |= ENABLE_MOUSE_INPUT;
5471 else
5472 cmodein &= ~ENABLE_MOUSE_INPUT;
5473#endif
5474 cmodein |= ENABLE_WINDOW_INPUT;
5475 SetConsoleMode(g_hConIn, cmodein);
5476
5477 redraw_later_clear();
5478 g_fTermcapMode = TRUE;
5479}
5480
5481
5482/*
5483 * End termcap mode
5484 */
5485 static void
5486termcap_mode_end(void)
5487{
5488 DWORD cmodein;
5489 ConsoleBuffer *cb;
5490 COORD coord;
5491 DWORD dwDummy;
5492
5493 if (!g_fTermcapMode)
5494 return;
5495
5496 SaveConsoleBuffer(&g_cbTermcap);
5497
5498 GetConsoleMode(g_hConIn, &cmodein);
5499 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5500 SetConsoleMode(g_hConIn, cmodein);
5501
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005502#ifdef FEAT_RESTORE_ORIG_SCREEN
5503 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
5504#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 cb = &g_cbNonTermcap;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005506#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 RestoreConsoleBuffer(cb, p_rs);
5508 SetConsoleCursorInfo(g_hConOut, &g_cci);
5509
5510 if (p_rs || exiting)
5511 {
5512 /*
5513 * Clear anything that happens to be on the current line.
5514 */
5515 coord.X = 0;
5516 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5517 FillConsoleOutputCharacter(g_hConOut, ' ',
5518 cb->Info.dwSize.X, coord, &dwDummy);
5519 /*
5520 * The following is just for aesthetics. If we are exiting without
5521 * restoring the screen, then we want to have a prompt string
5522 * appear at the bottom line. However, the command interpreter
5523 * seems to always advance the cursor one line before displaying
5524 * the prompt string, which causes the screen to scroll. To
5525 * counter this, move the cursor up one line before exiting.
5526 */
5527 if (exiting && !p_rs)
5528 coord.Y--;
5529 /*
5530 * Position the cursor at the leftmost column of the desired row.
5531 */
5532 SetConsoleCursorPosition(g_hConOut, coord);
5533 }
5534
5535 g_fTermcapMode = FALSE;
5536}
5537#endif /* FEAT_GUI_W32 */
5538
5539
5540#ifdef FEAT_GUI_W32
5541 void
5542mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005543 char_u *s UNUSED,
5544 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545{
5546 /* never used */
5547}
5548
5549#else
5550
5551/*
5552 * clear `n' chars, starting from `coord'
5553 */
5554 static void
5555clear_chars(
5556 COORD coord,
5557 DWORD n)
5558{
5559 DWORD dwDummy;
5560
5561 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5562 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
5563}
5564
5565
5566/*
5567 * Clear the screen
5568 */
5569 static void
5570clear_screen(void)
5571{
5572 g_coord.X = g_coord.Y = 0;
5573 clear_chars(g_coord, Rows * Columns);
5574}
5575
5576
5577/*
5578 * Clear to end of display
5579 */
5580 static void
5581clear_to_end_of_display(void)
5582{
5583 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5584 * Columns + (Columns - g_coord.X));
5585}
5586
5587
5588/*
5589 * Clear to end of line
5590 */
5591 static void
5592clear_to_end_of_line(void)
5593{
5594 clear_chars(g_coord, Columns - g_coord.X);
5595}
5596
5597
5598/*
5599 * Scroll the scroll region up by `cLines' lines
5600 */
5601 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005602scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603{
5604 COORD oldcoord = g_coord;
5605
5606 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5607 delete_lines(cLines);
5608
5609 g_coord = oldcoord;
5610}
5611
5612
5613/*
5614 * Set the scroll region
5615 */
5616 static void
5617set_scroll_region(
5618 unsigned left,
5619 unsigned top,
5620 unsigned right,
5621 unsigned bottom)
5622{
5623 if (left >= right
5624 || top >= bottom
5625 || right > (unsigned) Columns - 1
5626 || bottom > (unsigned) Rows - 1)
5627 return;
5628
5629 g_srScrollRegion.Left = left;
5630 g_srScrollRegion.Top = top;
5631 g_srScrollRegion.Right = right;
5632 g_srScrollRegion.Bottom = bottom;
5633}
5634
5635
5636/*
5637 * Insert `cLines' lines at the current cursor position
5638 */
5639 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005640insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641{
5642 SMALL_RECT source;
5643 COORD dest;
5644 CHAR_INFO fill;
5645
5646 dest.X = 0;
5647 dest.Y = g_coord.Y + cLines;
5648
5649 source.Left = 0;
5650 source.Top = g_coord.Y;
5651 source.Right = g_srScrollRegion.Right;
5652 source.Bottom = g_srScrollRegion.Bottom - cLines;
5653
5654 fill.Char.AsciiChar = ' ';
5655 fill.Attributes = g_attrCurrent;
5656
5657 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5658
5659 /* Here we have to deal with a win32 console flake: If the scroll
5660 * region looks like abc and we scroll c to a and fill with d we get
5661 * cbd... if we scroll block c one line at a time to a, we get cdd...
5662 * vim expects cdd consistently... So we have to deal with that
5663 * here... (this also occurs scrolling the same way in the other
5664 * direction). */
5665
5666 if (source.Bottom < dest.Y)
5667 {
5668 COORD coord;
5669
5670 coord.X = 0;
5671 coord.Y = source.Bottom;
5672 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5673 }
5674}
5675
5676
5677/*
5678 * Delete `cLines' lines at the current cursor position
5679 */
5680 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005681delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682{
5683 SMALL_RECT source;
5684 COORD dest;
5685 CHAR_INFO fill;
5686 int nb;
5687
5688 dest.X = 0;
5689 dest.Y = g_coord.Y;
5690
5691 source.Left = 0;
5692 source.Top = g_coord.Y + cLines;
5693 source.Right = g_srScrollRegion.Right;
5694 source.Bottom = g_srScrollRegion.Bottom;
5695
5696 fill.Char.AsciiChar = ' ';
5697 fill.Attributes = g_attrCurrent;
5698
5699 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5700
5701 /* Here we have to deal with a win32 console flake: If the scroll
5702 * region looks like abc and we scroll c to a and fill with d we get
5703 * cbd... if we scroll block c one line at a time to a, we get cdd...
5704 * vim expects cdd consistently... So we have to deal with that
5705 * here... (this also occurs scrolling the same way in the other
5706 * direction). */
5707
5708 nb = dest.Y + (source.Bottom - source.Top) + 1;
5709
5710 if (nb < source.Top)
5711 {
5712 COORD coord;
5713
5714 coord.X = 0;
5715 coord.Y = nb;
5716 clear_chars(coord, Columns * (source.Top - nb));
5717 }
5718}
5719
5720
5721/*
5722 * Set the cursor position
5723 */
5724 static void
5725gotoxy(
5726 unsigned x,
5727 unsigned y)
5728{
5729 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5730 return;
5731
5732 /* external cursor coords are 1-based; internal are 0-based */
5733 g_coord.X = x - 1;
5734 g_coord.Y = y - 1;
5735 SetConsoleCursorPosition(g_hConOut, g_coord);
5736}
5737
5738
5739/*
5740 * Set the current text attribute = (foreground | background)
5741 * See ../doc/os_win32.txt for the numbers.
5742 */
5743 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005744textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005746 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747
5748 SetConsoleTextAttribute(g_hConOut, wAttr);
5749}
5750
5751
5752 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005753textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005755 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756
5757 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5758}
5759
5760
5761 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005762textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005764 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765
5766 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5767}
5768
5769
5770/*
5771 * restore the default text attribute (whatever we started with)
5772 */
5773 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005774normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775{
5776 textattr(g_attrDefault);
5777}
5778
5779
5780static WORD g_attrPreStandout = 0;
5781
5782/*
5783 * Make the text standout, by brightening it
5784 */
5785 static void
5786standout(void)
5787{
5788 g_attrPreStandout = g_attrCurrent;
5789 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5790}
5791
5792
5793/*
5794 * Turn off standout mode
5795 */
5796 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005797standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798{
5799 if (g_attrPreStandout)
5800 {
5801 textattr(g_attrPreStandout);
5802 g_attrPreStandout = 0;
5803 }
5804}
5805
5806
5807/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005808 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 */
5810 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005811mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812{
5813 char_u *p;
5814 int n;
5815
5816 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5817 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5818 if (T_ME[0] == ESC && T_ME[1] == '|')
5819 {
5820 p = T_ME + 2;
5821 n = getdigits(&p);
5822 if (*p == 'm' && n > 0)
5823 {
5824 cterm_normal_fg_color = (n & 0xf) + 1;
5825 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5826 }
5827 }
5828}
5829
5830
5831/*
5832 * visual bell: flash the screen
5833 */
5834 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005835visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836{
5837 COORD coordOrigin = {0, 0};
5838 WORD attrFlash = ~g_attrCurrent & 0xff;
5839
5840 DWORD dwDummy;
5841 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5842
5843 if (oldattrs == NULL)
5844 return;
5845 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5846 coordOrigin, &dwDummy);
5847 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5848 coordOrigin, &dwDummy);
5849
5850 Sleep(15); /* wait for 15 msec */
5851 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5852 coordOrigin, &dwDummy);
5853 vim_free(oldattrs);
5854}
5855
5856
5857/*
5858 * Make the cursor visible or invisible
5859 */
5860 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005861cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862{
5863 s_cursor_visible = fVisible;
5864#ifdef MCH_CURSOR_SHAPE
5865 mch_update_cursor();
5866#endif
5867}
5868
5869
5870/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005871 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005872 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005874 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005876 char_u *pchBuf,
5877 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878{
5879 COORD coord = g_coord;
5880 DWORD written;
5881
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005882#ifdef FEAT_MBYTE
5883 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5884 {
5885 static WCHAR *unicodebuf = NULL;
5886 static int unibuflen = 0;
5887 int length;
5888 DWORD n, cchwritten, cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005890 length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0);
5891 if (unicodebuf == NULL || length > unibuflen)
5892 {
5893 vim_free(unicodebuf);
5894 unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE);
5895 unibuflen = length;
5896 }
5897 MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite,
5898 unicodebuf, unibuflen);
5899
5900 cells = mb_string2cells(pchBuf, cbToWrite);
5901 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
5902 coord, &written);
5903 /* When writing fails or didn't write a single character, pretend one
5904 * character was written, otherwise we get stuck. */
5905 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length,
5906 coord, &cchwritten) == 0
5907 || cchwritten == 0)
5908 cchwritten = 1;
5909
5910 if (cchwritten == length)
5911 {
5912 written = cbToWrite;
5913 g_coord.X += (SHORT)cells;
5914 }
5915 else
5916 {
5917 char_u *p = pchBuf;
5918 for (n = 0; n < cchwritten; n++)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005919 MB_CPTR_ADV(p);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005920 written = p - pchBuf;
5921 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
5922 }
5923 }
5924 else
5925#endif
5926 {
5927 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite,
5928 coord, &written);
5929 /* When writing fails or didn't write a single character, pretend one
5930 * character was written, otherwise we get stuck. */
5931 if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite,
5932 coord, &written) == 0
5933 || written == 0)
5934 written = 1;
5935
5936 g_coord.X += (SHORT) written;
5937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938
5939 while (g_coord.X > g_srScrollRegion.Right)
5940 {
5941 g_coord.X -= (SHORT) Columns;
5942 if (g_coord.Y < g_srScrollRegion.Bottom)
5943 g_coord.Y++;
5944 }
5945
5946 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5947
5948 return written;
5949}
5950
5951
5952/*
5953 * mch_write(): write the output buffer to the screen, translating ESC
5954 * sequences into calls to console output routines.
5955 */
5956 void
5957mch_write(
5958 char_u *s,
5959 int len)
5960{
5961 s[len] = NUL;
5962
5963 if (!term_console)
5964 {
5965 write(1, s, (unsigned)len);
5966 return;
5967 }
5968
5969 /* translate ESC | sequences into faked bios calls */
5970 while (len--)
5971 {
5972 /* optimization: use one single write_chars for runs of text,
5973 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005974 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975
5976 if (p_wd)
5977 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005978 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 if (prefix != 0)
5980 prefix = 1;
5981 }
5982
5983 if (prefix != 0)
5984 {
5985 DWORD nWritten;
5986
5987 nWritten = write_chars(s, prefix);
5988#ifdef MCH_WRITE_DUMP
5989 if (fdDump)
5990 {
5991 fputc('>', fdDump);
5992 fwrite(s, sizeof(char_u), nWritten, fdDump);
5993 fputs("<\n", fdDump);
5994 }
5995#endif
5996 len -= (nWritten - 1);
5997 s += nWritten;
5998 }
5999 else if (s[0] == '\n')
6000 {
6001 /* \n, newline: go to the beginning of the next line or scroll */
6002 if (g_coord.Y == g_srScrollRegion.Bottom)
6003 {
6004 scroll(1);
6005 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6006 }
6007 else
6008 {
6009 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6010 }
6011#ifdef MCH_WRITE_DUMP
6012 if (fdDump)
6013 fputs("\\n\n", fdDump);
6014#endif
6015 s++;
6016 }
6017 else if (s[0] == '\r')
6018 {
6019 /* \r, carriage return: go to beginning of line */
6020 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
6021#ifdef MCH_WRITE_DUMP
6022 if (fdDump)
6023 fputs("\\r\n", fdDump);
6024#endif
6025 s++;
6026 }
6027 else if (s[0] == '\b')
6028 {
6029 /* \b, backspace: move cursor one position left */
6030 if (g_coord.X > g_srScrollRegion.Left)
6031 g_coord.X--;
6032 else if (g_coord.Y > g_srScrollRegion.Top)
6033 {
6034 g_coord.X = g_srScrollRegion.Right;
6035 g_coord.Y--;
6036 }
6037 gotoxy(g_coord.X + 1, g_coord.Y + 1);
6038#ifdef MCH_WRITE_DUMP
6039 if (fdDump)
6040 fputs("\\b\n", fdDump);
6041#endif
6042 s++;
6043 }
6044 else if (s[0] == '\a')
6045 {
6046 /* \a, bell */
6047 MessageBeep(0xFFFFFFFF);
6048#ifdef MCH_WRITE_DUMP
6049 if (fdDump)
6050 fputs("\\a\n", fdDump);
6051#endif
6052 s++;
6053 }
6054 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6055 {
6056#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006057 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006059 char_u *p;
6060 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061
6062 switch (s[2])
6063 {
6064 /* one or two numeric arguments, separated by ';' */
6065
6066 case '0': case '1': case '2': case '3': case '4':
6067 case '5': case '6': case '7': case '8': case '9':
6068 p = s + 2;
6069 arg1 = getdigits(&p); /* no check for length! */
6070 if (p > s + len)
6071 break;
6072
6073 if (*p == ';')
6074 {
6075 ++p;
6076 arg2 = getdigits(&p); /* no check for length! */
6077 if (p > s + len)
6078 break;
6079
6080 if (*p == 'H')
6081 gotoxy(arg2, arg1);
6082 else if (*p == 'r')
6083 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6084 }
6085 else if (*p == 'A')
6086 {
6087 /* move cursor up arg1 lines in same column */
6088 gotoxy(g_coord.X + 1,
6089 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6090 }
6091 else if (*p == 'C')
6092 {
6093 /* move cursor right arg1 columns in same line */
6094 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6095 g_coord.Y + 1);
6096 }
6097 else if (*p == 'H')
6098 {
6099 gotoxy(1, arg1);
6100 }
6101 else if (*p == 'L')
6102 {
6103 insert_lines(arg1);
6104 }
6105 else if (*p == 'm')
6106 {
6107 if (arg1 == 0)
6108 normvideo();
6109 else
6110 textattr((WORD) arg1);
6111 }
6112 else if (*p == 'f')
6113 {
6114 textcolor((WORD) arg1);
6115 }
6116 else if (*p == 'b')
6117 {
6118 textbackground((WORD) arg1);
6119 }
6120 else if (*p == 'M')
6121 {
6122 delete_lines(arg1);
6123 }
6124
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006125 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126 s = p + 1;
6127 break;
6128
6129
6130 /* Three-character escape sequences */
6131
6132 case 'A':
6133 /* move cursor up one line in same column */
6134 gotoxy(g_coord.X + 1,
6135 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6136 goto got3;
6137
6138 case 'B':
6139 visual_bell();
6140 goto got3;
6141
6142 case 'C':
6143 /* move cursor right one column in same line */
6144 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6145 g_coord.Y + 1);
6146 goto got3;
6147
6148 case 'E':
6149 termcap_mode_end();
6150 goto got3;
6151
6152 case 'F':
6153 standout();
6154 goto got3;
6155
6156 case 'f':
6157 standend();
6158 goto got3;
6159
6160 case 'H':
6161 gotoxy(1, 1);
6162 goto got3;
6163
6164 case 'j':
6165 clear_to_end_of_display();
6166 goto got3;
6167
6168 case 'J':
6169 clear_screen();
6170 goto got3;
6171
6172 case 'K':
6173 clear_to_end_of_line();
6174 goto got3;
6175
6176 case 'L':
6177 insert_lines(1);
6178 goto got3;
6179
6180 case 'M':
6181 delete_lines(1);
6182 goto got3;
6183
6184 case 'S':
6185 termcap_mode_start();
6186 goto got3;
6187
6188 case 'V':
6189 cursor_visible(TRUE);
6190 goto got3;
6191
6192 case 'v':
6193 cursor_visible(FALSE);
6194 goto got3;
6195
6196 got3:
6197 s += 3;
6198 len -= 2;
6199 }
6200
6201#ifdef MCH_WRITE_DUMP
6202 if (fdDump)
6203 {
6204 fputs("ESC | ", fdDump);
6205 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6206 fputc('\n', fdDump);
6207 }
6208#endif
6209 }
6210 else
6211 {
6212 /* Write a single character */
6213 DWORD nWritten;
6214
6215 nWritten = write_chars(s, 1);
6216#ifdef MCH_WRITE_DUMP
6217 if (fdDump)
6218 {
6219 fputc('>', fdDump);
6220 fwrite(s, sizeof(char_u), nWritten, fdDump);
6221 fputs("<\n", fdDump);
6222 }
6223#endif
6224
6225 len -= (nWritten - 1);
6226 s += nWritten;
6227 }
6228 }
6229
6230#ifdef MCH_WRITE_DUMP
6231 if (fdDump)
6232 fflush(fdDump);
6233#endif
6234}
6235
6236#endif /* FEAT_GUI_W32 */
6237
6238
6239/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006240 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 */
6242 void
6243mch_delay(
6244 long msec,
Bram Moolenaar1266d672017-02-01 13:43:36 +01006245 int ignoreinput UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246{
6247#ifdef FEAT_GUI_W32
6248 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006249#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006251# ifdef FEAT_MZSCHEME
6252 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6253 {
6254 int towait = p_mzq;
6255
6256 /* if msec is large enough, wait by portions in p_mzq */
6257 while (msec > 0)
6258 {
6259 mzvim_check_threads();
6260 if (msec < towait)
6261 towait = msec;
6262 Sleep(towait);
6263 msec -= towait;
6264 }
6265 }
6266 else
6267# endif
6268 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006270 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271#endif
6272}
6273
6274
6275/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006276 * This version of remove is not scared by a readonly (backup) file.
6277 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 * Return 0 for success, -1 for failure.
6279 */
6280 int
6281mch_remove(char_u *name)
6282{
6283#ifdef FEAT_MBYTE
6284 WCHAR *wn = NULL;
6285 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287
Bram Moolenaar203258c2016-01-17 22:15:16 +01006288 /*
6289 * On Windows, deleting a directory's symbolic link is done by
6290 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6291 */
6292 if (mch_isdir(name) && mch_is_symbolic_link(name))
6293 return mch_rmdir(name);
6294
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006295 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6296
6297#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6299 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006300 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 if (wn != NULL)
6302 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 n = DeleteFileW(wn) ? 0 : -1;
6304 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006305 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 }
6307 }
6308#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006309 return DeleteFile((LPCSTR)name) ? 0 : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310}
6311
6312
6313/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006314 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 */
6316 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006317mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318{
6319#ifndef FEAT_GUI_W32 /* never used */
6320 if (g_fCtrlCPressed || g_fCBrkPressed)
6321 {
Bram Moolenaar9698ad72017-08-12 14:52:15 +02006322 ctrl_break_was_pressed = g_fCBrkPressed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6324 got_int = TRUE;
6325 }
6326#endif
6327}
6328
Bram Moolenaaree273972016-01-02 21:11:51 +01006329/* physical RAM to leave for the OS */
6330#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006331
6332/*
6333 * How much main memory in KiB that can be used by VIM.
6334 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006335 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006336mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006337{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006338 MEMORYSTATUSEX ms;
6339
Bram Moolenaaree273972016-01-02 21:11:51 +01006340 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006341 /* Need to use GlobalMemoryStatusEx() when there is more memory than
6342 * what fits in 32 bits. But it's not always available. */
6343 ms.dwLength = sizeof(MEMORYSTATUSEX);
6344 GlobalMemoryStatusEx(&ms);
6345 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006346 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006347 /* Process address space fits in physical RAM, use all of it. */
6348 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006349 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006350 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006351 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006352 /* Catch old NT box or perverse hardware setup. */
6353 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006354 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006355 /* Use physical RAM less reserve for OS + data. */
6356 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006357}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359#ifdef FEAT_MBYTE
6360/*
6361 * Same code as below, but with wide functions and no comments.
6362 * Return 0 for success, non-zero for failure.
6363 */
6364 int
6365mch_wrename(WCHAR *wold, WCHAR *wnew)
6366{
6367 WCHAR *p;
6368 int i;
6369 WCHAR szTempFile[_MAX_PATH + 1];
6370 WCHAR szNewPath[_MAX_PATH + 1];
6371 HANDLE hf;
6372
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006373 p = wold;
6374 for (i = 0; wold[i] != NUL; ++i)
6375 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6376 && wold[i + 1] != 0)
6377 p = wold + i + 1;
6378 if ((int)(wold + i - p) < 8 || p[6] != '~')
6379 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380
6381 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
6382 return -1;
6383 *p = NUL;
6384
6385 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
6386 return -2;
6387
6388 if (!DeleteFileW(szTempFile))
6389 return -3;
6390
6391 if (!MoveFileW(wold, szTempFile))
6392 return -4;
6393
6394 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6395 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6396 return -5;
6397 if (!CloseHandle(hf))
6398 return -6;
6399
6400 if (!MoveFileW(szTempFile, wnew))
6401 {
6402 (void)MoveFileW(szTempFile, wold);
6403 return -7;
6404 }
6405
6406 DeleteFileW(szTempFile);
6407
6408 if (!DeleteFileW(wold))
6409 return -8;
6410
6411 return 0;
6412}
6413#endif
6414
6415
6416/*
6417 * mch_rename() works around a bug in rename (aka MoveFile) in
6418 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6419 * file whose short file name is "FOO.BAR" (its long file name will
6420 * be correct: "foo.bar~"). Because a file can be accessed by
6421 * either its SFN or its LFN, "foo.bar" has effectively been
6422 * renamed to "foo.bar", which is not at all what was wanted. This
6423 * seems to happen only when renaming files with three-character
6424 * extensions by appending a suffix that does not include ".".
6425 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6426 *
6427 * There is another problem, which isn't really a bug but isn't right either:
6428 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6429 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6430 * service pack 6. Doesn't seem to happen on Windows 98.
6431 *
6432 * Like rename(), returns 0 upon success, non-zero upon failure.
6433 * Should probably set errno appropriately when errors occur.
6434 */
6435 int
6436mch_rename(
6437 const char *pszOldFile,
6438 const char *pszNewFile)
6439{
6440 char szTempFile[_MAX_PATH+1];
6441 char szNewPath[_MAX_PATH+1];
6442 char *pszFilePart;
6443 HANDLE hf;
6444#ifdef FEAT_MBYTE
6445 WCHAR *wold = NULL;
6446 WCHAR *wnew = NULL;
6447 int retval = -1;
6448
6449 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6450 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006451 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6452 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 if (wold != NULL && wnew != NULL)
6454 retval = mch_wrename(wold, wnew);
6455 vim_free(wold);
6456 vim_free(wnew);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006457 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 }
6459#endif
6460
6461 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006462 * No need to play tricks unless the file name contains a "~" as the
6463 * seventh character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006465 pszFilePart = (char *)gettail((char_u *)pszOldFile);
6466 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
6467 return rename(pszOldFile, pszNewFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468
6469 /* Get base path of new file name. Undocumented feature: If pszNewFile is
6470 * a directory, no error is returned and pszFilePart will be NULL. */
6471 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
6472 || pszFilePart == NULL)
6473 return -1;
6474 *pszFilePart = NUL;
6475
6476 /* Get (and create) a unique temporary file name in directory of new file */
6477 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
6478 return -2;
6479
6480 /* blow the temp file away */
6481 if (!DeleteFile(szTempFile))
6482 return -3;
6483
6484 /* rename old file to the temp file */
6485 if (!MoveFile(pszOldFile, szTempFile))
6486 return -4;
6487
6488 /* now create an empty file called pszOldFile; this prevents the operating
6489 * system using pszOldFile as an alias (SFN) if we're renaming within the
6490 * same directory. For example, we're editing a file called
6491 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6492 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
6493 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006494 * cause all sorts of problems later in buf_write(). So, we create an
6495 * empty file called filena~1.txt and the system will have to find some
6496 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 */
6498 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6499 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6500 return -5;
6501 if (!CloseHandle(hf))
6502 return -6;
6503
6504 /* rename the temp file to the new file */
6505 if (!MoveFile(szTempFile, pszNewFile))
6506 {
6507 /* Renaming failed. Rename the file back to its old name, so that it
6508 * looks like nothing happened. */
6509 (void)MoveFile(szTempFile, pszOldFile);
6510
6511 return -7;
6512 }
6513
6514 /* Seems to be left around on Novell filesystems */
6515 DeleteFile(szTempFile);
6516
6517 /* finally, remove the empty old file */
6518 if (!DeleteFile(pszOldFile))
6519 return -8;
6520
6521 return 0; /* success */
6522}
6523
6524/*
6525 * Get the default shell for the current hardware platform
6526 */
6527 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006528default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 PlatformId();
6531
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006532 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533}
6534
6535/*
6536 * mch_access() extends access() to do more detailed check on network drives.
6537 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6538 */
6539 int
6540mch_access(char *n, int p)
6541{
6542 HANDLE hFile;
6543 DWORD am;
6544 int retval = -1; /* default: fail */
6545#ifdef FEAT_MBYTE
6546 WCHAR *wn = NULL;
6547
6548 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006549 wn = enc_to_utf16((char_u *)n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006550#endif
6551
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006552 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 {
6554 char TempName[_MAX_PATH + 16] = "";
6555#ifdef FEAT_MBYTE
6556 WCHAR TempNameW[_MAX_PATH + 16] = L"";
6557#endif
6558
6559 if (p & R_OK)
6560 {
6561 /* Read check is performed by seeing if we can do a find file on
6562 * the directory for any file. */
6563#ifdef FEAT_MBYTE
6564 if (wn != NULL)
6565 {
6566 int i;
6567 WIN32_FIND_DATAW d;
6568
6569 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
6570 TempNameW[i] = wn[i];
6571 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
6572 TempNameW[i++] = '\\';
6573 TempNameW[i++] = '*';
6574 TempNameW[i++] = 0;
6575
6576 hFile = FindFirstFileW(TempNameW, &d);
6577 if (hFile == INVALID_HANDLE_VALUE)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006578 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 else
6580 (void)FindClose(hFile);
6581 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006582 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583#endif
6584 {
6585 char *pch;
6586 WIN32_FIND_DATA d;
6587
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006588 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 pch = TempName + STRLEN(TempName) - 1;
6590 if (*pch != '\\' && *pch != '/')
6591 *++pch = '\\';
6592 *++pch = '*';
6593 *++pch = NUL;
6594
6595 hFile = FindFirstFile(TempName, &d);
6596 if (hFile == INVALID_HANDLE_VALUE)
6597 goto getout;
6598 (void)FindClose(hFile);
6599 }
6600 }
6601
6602 if (p & W_OK)
6603 {
6604 /* Trying to create a temporary file in the directory should catch
6605 * directories on read-only network shares. However, in
6606 * directories whose ACL allows writes but denies deletes will end
6607 * up keeping the temporary file :-(. */
6608#ifdef FEAT_MBYTE
6609 if (wn != NULL)
6610 {
6611 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006612 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 else
6614 DeleteFileW(TempNameW);
6615 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006616 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617#endif
6618 {
6619 if (!GetTempFileName(n, "VIM", 0, TempName))
6620 goto getout;
6621 mch_remove((char_u *)TempName);
6622 }
6623 }
6624 }
6625 else
6626 {
6627 /* Trying to open the file for the required access does ACL, read-only
6628 * network share, and file attribute checks. */
6629 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6630 | ((p & R_OK) ? GENERIC_READ : 0);
6631#ifdef FEAT_MBYTE
6632 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006634 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635#endif
6636 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6637 if (hFile == INVALID_HANDLE_VALUE)
6638 goto getout;
6639 CloseHandle(hFile);
6640 }
6641
6642 retval = 0; /* success */
6643getout:
6644#ifdef FEAT_MBYTE
6645 vim_free(wn);
6646#endif
6647 return retval;
6648}
6649
6650#if defined(FEAT_MBYTE) || defined(PROTO)
6651/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006652 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653 */
6654 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02006655mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006657 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6658# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006659 WCHAR *wn;
6660 int f;
6661
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006662 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006664 wn = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 if (wn != NULL)
6666 {
6667 f = _wopen(wn, flags, mode);
6668 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006669 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 }
6671 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006672# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006674 /* open() can open a file which name is longer than _MAX_PATH bytes
6675 * and shorter than _MAX_PATH characters successfully, but sometimes it
6676 * causes unexpected error in another part. We make it an error explicitly
6677 * here. */
6678 if (strlen(name) >= _MAX_PATH)
6679 return -1;
6680
Bram Moolenaar071d4272004-06-13 20:20:40 +00006681 return open(name, flags, mode);
6682}
6683
6684/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006685 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 */
6687 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02006688mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689{
6690 WCHAR *wn, *wm;
6691 FILE *f = NULL;
6692
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006693 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006695# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006696 /* Work around an annoying assertion in the Microsoft debug CRT
6697 * when mode's text/binary setting doesn't match _get_fmode(). */
6698 char newMode = mode[strlen(mode) - 1];
6699 int oldMode = 0;
6700
6701 _get_fmode(&oldMode);
6702 if (newMode == 't')
6703 _set_fmode(_O_TEXT);
6704 else if (newMode == 'b')
6705 _set_fmode(_O_BINARY);
6706# endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006707 wn = enc_to_utf16((char_u *)name, NULL);
6708 wm = enc_to_utf16((char_u *)mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709 if (wn != NULL && wm != NULL)
6710 f = _wfopen(wn, wm);
6711 vim_free(wn);
6712 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006713
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006714# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006715 _set_fmode(oldMode);
6716# endif
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006717 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 }
6719
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006720 /* fopen() can open a file which name is longer than _MAX_PATH bytes
6721 * and shorter than _MAX_PATH characters successfully, but sometimes it
6722 * causes unexpected error in another part. We make it an error explicitly
6723 * here. */
6724 if (strlen(name) >= _MAX_PATH)
6725 return NULL;
6726
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 return fopen(name, mode);
6728}
6729#endif
6730
6731#ifdef FEAT_MBYTE
6732/*
6733 * SUB STREAM (aka info stream) handling:
6734 *
6735 * NTFS can have sub streams for each file. Normal contents of file is
6736 * stored in the main stream, and extra contents (author information and
6737 * title and so on) can be stored in sub stream. After Windows 2000, user
6738 * can access and store those informations in sub streams via explorer's
6739 * property menuitem in right click menu. Those informations in sub streams
6740 * were lost when copying only the main stream. So we have to copy sub
6741 * streams.
6742 *
6743 * Incomplete explanation:
6744 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6745 * More useful info and an example:
6746 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6747 */
6748
6749/*
6750 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6751 * and write to stream "substream" of file "to".
6752 * Errors are ignored.
6753 */
6754 static void
6755copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6756{
6757 HANDLE hTo;
6758 WCHAR *to_name;
6759
6760 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6761 wcscpy(to_name, to);
6762 wcscat(to_name, substream);
6763
6764 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6765 FILE_ATTRIBUTE_NORMAL, NULL);
6766 if (hTo != INVALID_HANDLE_VALUE)
6767 {
6768 long done;
6769 DWORD todo;
6770 DWORD readcnt, written;
6771 char buf[4096];
6772
6773 /* Copy block of bytes at a time. Abort when something goes wrong. */
6774 for (done = 0; done < len; done += written)
6775 {
6776 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006777 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6778 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6780 FALSE, FALSE, context)
6781 || readcnt != todo
6782 || !WriteFile(hTo, buf, todo, &written, NULL)
6783 || written != todo)
6784 break;
6785 }
6786 CloseHandle(hTo);
6787 }
6788
6789 free(to_name);
6790}
6791
6792/*
6793 * Copy info streams from file "from" to file "to".
6794 */
6795 static void
6796copy_infostreams(char_u *from, char_u *to)
6797{
6798 WCHAR *fromw;
6799 WCHAR *tow;
6800 HANDLE sh;
6801 WIN32_STREAM_ID sid;
6802 int headersize;
6803 WCHAR streamname[_MAX_PATH];
6804 DWORD readcount;
6805 void *context = NULL;
6806 DWORD lo, hi;
6807 int len;
6808
6809 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006810 fromw = enc_to_utf16(from, NULL);
6811 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 if (fromw != NULL && tow != NULL)
6813 {
6814 /* Open the file for reading. */
6815 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6816 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6817 if (sh != INVALID_HANDLE_VALUE)
6818 {
6819 /* Use BackupRead() to find the info streams. Repeat until we
6820 * have done them all.*/
6821 for (;;)
6822 {
6823 /* Get the header to find the length of the stream name. If
6824 * the "readcount" is zero we have done all info streams. */
6825 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006826 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6828 &readcount, FALSE, FALSE, &context)
6829 || readcount == 0)
6830 break;
6831
6832 /* We only deal with streams that have a name. The normal
6833 * file data appears to be without a name, even though docs
6834 * suggest it is called "::$DATA". */
6835 if (sid.dwStreamNameSize > 0)
6836 {
6837 /* Read the stream name. */
6838 if (!BackupRead(sh, (LPBYTE)streamname,
6839 sid.dwStreamNameSize,
6840 &readcount, FALSE, FALSE, &context))
6841 break;
6842
6843 /* Copy an info stream with a name ":anything:$DATA".
6844 * Skip "::$DATA", it has no stream name (examples suggest
6845 * it might be used for the normal file contents).
6846 * Note that BackupRead() counts bytes, but the name is in
6847 * wide characters. */
6848 len = readcount / sizeof(WCHAR);
6849 streamname[len] = 0;
6850 if (len > 7 && wcsicmp(streamname + len - 6,
6851 L":$DATA") == 0)
6852 {
6853 streamname[len - 6] = 0;
6854 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006855 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 }
6857 }
6858
6859 /* Advance to the next stream. We might try seeking too far,
6860 * but BackupSeek() doesn't skip over stream borders, thus
6861 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006862 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 &lo, &hi, &context);
6864 }
6865
6866 /* Clear the context. */
6867 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6868
6869 CloseHandle(sh);
6870 }
6871 }
6872 vim_free(fromw);
6873 vim_free(tow);
6874}
6875#endif
6876
6877/*
6878 * Copy file attributes from file "from" to file "to".
6879 * For Windows NT and later we copy info streams.
6880 * Always returns zero, errors are ignored.
6881 */
6882 int
6883mch_copy_file_attribute(char_u *from, char_u *to)
6884{
6885#ifdef FEAT_MBYTE
6886 /* File streams only work on Windows NT and later. */
6887 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006888 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889#endif
6890 return 0;
6891}
6892
6893#if defined(MYRESETSTKOFLW) || defined(PROTO)
6894/*
6895 * Recreate a destroyed stack guard page in win32.
6896 * Written by Benjamin Peterson.
6897 */
6898
6899/* These magic numbers are from the MS header files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900#define MIN_STACK_WINNT 2
6901
6902/*
6903 * This function does the same thing as _resetstkoflw(), which is only
6904 * available in DevStudio .net and later.
6905 * Returns 0 for failure, 1 for success.
6906 */
6907 int
6908myresetstkoflw(void)
6909{
6910 BYTE *pStackPtr;
6911 BYTE *pGuardPage;
6912 BYTE *pStackBase;
6913 BYTE *pLowestPossiblePage;
6914 MEMORY_BASIC_INFORMATION mbi;
6915 SYSTEM_INFO si;
6916 DWORD nPageSize;
6917 DWORD dummy;
6918
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920
6921 /* We need to know the system page size. */
6922 GetSystemInfo(&si);
6923 nPageSize = si.dwPageSize;
6924
6925 /* ...and the current stack pointer */
6926 pStackPtr = (BYTE*)_alloca(1);
6927
6928 /* ...and the base of the stack. */
6929 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6930 return 0;
6931 pStackBase = (BYTE*)mbi.AllocationBase;
6932
6933 /* ...and the page thats min_stack_req pages away from stack base; this is
6934 * the lowest page we could use. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006935 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006938 /* We want the first committed page in the stack Start at the stack
6939 * base and move forward through memory until we find a committed block.
6940 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 BYTE *pBlock = pStackBase;
6942
Bram Moolenaara466c992005-07-09 21:03:22 +00006943 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944 {
6945 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6946 return 0;
6947
6948 pBlock += mbi.RegionSize;
6949
6950 if (mbi.State & MEM_COMMIT)
6951 break;
6952 }
6953
6954 /* mbi now describes the first committed block in the stack. */
6955 if (mbi.Protect & PAGE_GUARD)
6956 return 1;
6957
6958 /* decide where the guard page should start */
6959 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6960 pGuardPage = pLowestPossiblePage;
6961 else
6962 pGuardPage = (BYTE*)mbi.BaseAddress;
6963
6964 /* allocate the guard page */
6965 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6966 return 0;
6967
6968 /* apply the guard attribute to the page */
6969 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6970 &dummy))
6971 return 0;
6972 }
6973
6974 return 1;
6975}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006976#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006978
6979#if defined(FEAT_MBYTE) || defined(PROTO)
6980/*
6981 * The command line arguments in UCS2
6982 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006983static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006984static LPWSTR *ArglistW = NULL;
6985static int global_argc = 0;
6986static char **global_argv;
6987
6988static int used_file_argc = 0; /* last argument in global_argv[] used
6989 for the argument list. */
6990static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6991 command line arguments added to
6992 the argument list */
6993static int used_file_count = 0; /* nr of entries in used_file_indexes */
6994static int used_file_literal = FALSE; /* take file names literally */
6995static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006996static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006997static int used_alist_count = 0;
6998
6999
7000/*
7001 * Get the command line arguments. Unicode version.
7002 * Returns argc. Zero when something fails.
7003 */
7004 int
7005get_cmd_argsW(char ***argvp)
7006{
7007 char **argv = NULL;
7008 int argc = 0;
7009 int i;
7010
Bram Moolenaar14993322014-09-09 12:25:33 +02007011 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007012 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7013 if (ArglistW != NULL)
7014 {
7015 argv = malloc((nArgsW + 1) * sizeof(char *));
7016 if (argv != NULL)
7017 {
7018 argc = nArgsW;
7019 argv[argc] = NULL;
7020 for (i = 0; i < argc; ++i)
7021 {
7022 int len;
7023
7024 /* Convert each Unicode argument to the current codepage. */
7025 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007026 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007027 (LPSTR *)&argv[i], &len, 0, 0);
7028 if (argv[i] == NULL)
7029 {
7030 /* Out of memory, clear everything. */
7031 while (i > 0)
7032 free(argv[--i]);
7033 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007034 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007035 argc = 0;
7036 }
7037 }
7038 }
7039 }
7040
7041 global_argc = argc;
7042 global_argv = argv;
7043 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007044 {
7045 if (used_file_indexes != NULL)
7046 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007047 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007048 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007049
7050 if (argvp != NULL)
7051 *argvp = argv;
7052 return argc;
7053}
7054
7055 void
7056free_cmd_argsW(void)
7057{
7058 if (ArglistW != NULL)
7059 {
7060 GlobalFree(ArglistW);
7061 ArglistW = NULL;
7062 }
7063}
7064
7065/*
7066 * Remember "name" is an argument that was added to the argument list.
7067 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7068 * is called.
7069 */
7070 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007071used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007072{
7073 int i;
7074
7075 if (used_file_indexes == NULL)
7076 return;
7077 for (i = used_file_argc + 1; i < global_argc; ++i)
7078 if (STRCMP(global_argv[i], name) == 0)
7079 {
7080 used_file_argc = i;
7081 used_file_indexes[used_file_count++] = i;
7082 break;
7083 }
7084 used_file_literal = literal;
7085 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007086 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007087}
7088
7089/*
7090 * Remember the length of the argument list as it was. If it changes then we
7091 * leave it alone when 'encoding' is set.
7092 */
7093 void
7094set_alist_count(void)
7095{
7096 used_alist_count = GARGCOUNT;
7097}
7098
7099/*
7100 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7101 * has been changed while starting up. Use the UCS-2 command line arguments
7102 * and convert them to 'encoding'.
7103 */
7104 void
7105fix_arg_enc(void)
7106{
7107 int i;
7108 int idx;
7109 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007110 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007111
7112 /* Safety checks:
7113 * - if argument count differs between the wide and non-wide argument
7114 * list, something must be wrong.
7115 * - the file name arguments must have been located.
7116 * - the length of the argument list wasn't changed by the user.
7117 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007118 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007119 || ArglistW == NULL
7120 || used_file_indexes == NULL
7121 || used_file_count == 0
7122 || used_alist_count != GARGCOUNT)
7123 return;
7124
Bram Moolenaar86b68352004-12-27 21:59:20 +00007125 /* Remember the buffer numbers for the arguments. */
7126 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
7127 if (fnum_list == NULL)
7128 return; /* out of memory */
7129 for (i = 0; i < GARGCOUNT; ++i)
7130 fnum_list[i] = GARGLIST[i].ae_fnum;
7131
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007132 /* Clear the argument list. Make room for the new arguments. */
7133 alist_clear(&global_alist);
7134 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007135 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007136
7137 for (i = 0; i < used_file_count; ++i)
7138 {
7139 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007140 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007141 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007142 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007143 int literal = used_file_literal;
7144
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007145#ifdef FEAT_DIFF
7146 /* When using diff mode may need to concatenate file name to
7147 * directory name. Just like it's done in main(). */
7148 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7149 && !mch_isdir(alist_name(&GARGLIST[0])))
7150 {
7151 char_u *r;
7152
7153 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7154 if (r != NULL)
7155 {
7156 vim_free(str);
7157 str = r;
7158 }
7159 }
7160#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00007161 /* Re-use the old buffer by renaming it. When not using literal
7162 * names it's done by alist_expand() below. */
7163 if (used_file_literal)
7164 buf_set_name(fnum_list[i], str);
7165
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007166 /* Check backtick literal. backtick literal is already expanded in
7167 * main.c, so this part add str as literal. */
7168 if (literal == FALSE)
7169 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007170 size_t len = STRLEN(str);
7171
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007172 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7173 literal = TRUE;
7174 }
7175 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007176 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007177 }
7178
7179 if (!used_file_literal)
7180 {
7181 /* Now expand wildcards in the arguments. */
7182 /* Temporarily add '(' and ')' to 'isfname'. These are valid
7183 * filename characters but are excluded from 'isfname' to make
7184 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
7185 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007186 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007187 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
7188 }
7189
7190 /* If wildcard expansion failed, we are editing the first file of the
7191 * arglist and there is no file name: Edit the first argument now. */
7192 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7193 {
7194 do_cmdline_cmd((char_u *)":rewind");
7195 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007196 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007197 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007198
7199 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007200}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201#endif
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007202
7203 int
7204mch_setenv(char *var, char *value, int x)
7205{
7206 char_u *envbuf;
7207
7208 envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2));
7209 if (envbuf == NULL)
7210 return -1;
7211
7212 sprintf((char *)envbuf, "%s=%s", var, value);
7213
7214#ifdef FEAT_MBYTE
7215 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7216 {
7217 WCHAR *p = enc_to_utf16(envbuf, NULL);
7218
7219 vim_free(envbuf);
7220 if (p == NULL)
7221 return -1;
7222 _wputenv(p);
7223# ifdef libintl_wputenv
7224 libintl_wputenv(p);
7225# endif
7226 /* Unlike Un*x systems, we can free the string for _wputenv(). */
7227 vim_free(p);
7228 }
7229 else
7230#endif
7231 {
7232 _putenv((char *)envbuf);
7233# ifdef libintl_putenv
7234 libintl_putenv((char *)envbuf);
7235# endif
7236 /* Unlike Un*x systems, we can free the string for _putenv(). */
7237 vim_free(envbuf);
7238 }
7239
7240 return 0;
7241}